Property | Type | Default | Description |
---|---|---|---|
properties |
Array<PropertyValue> | undefined |
A list of configurable properties of a custom element. |
cssProperties |
Array<PropertyValue> | undefined |
A list of configurable CSS Custom Properties of a custom properties. |
customElement |
string | undefined |
Name of custom element. It will be used for querying all custom elements. All properties will be applied to all custom elements found in the demo. |
interface PropertyValueOptions {
label: string;
value: string;
}
interface PropertyValue {
name: string;
value: unknown;
options?: PropertyValueOptions[];
type?: string;
}
None
None
None