@fluid-topics/ft-select 0.1.17 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/ft-select.d.ts +3 -3
- package/build/ft-select.inline-styles.js +609 -0
- package/build/ft-select.js +134 -144
- package/build/ft-select.light.js +404 -465
- package/build/ft-select.min.js +439 -497
- package/build/index.d.ts +2 -0
- package/build/index.js +6 -0
- package/build/inline-styles.d.ts +2 -0
- package/build/inline-styles.js +5 -0
- package/package.json +8 -8
package/build/ft-select.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare class FtSelectOption extends FtLitElement implements FtSelectOpti
|
|
|
10
10
|
label: string;
|
|
11
11
|
value: any;
|
|
12
12
|
selected: boolean;
|
|
13
|
-
protected
|
|
13
|
+
protected render(): import("lit-html").TemplateResult<1>;
|
|
14
14
|
protected updated(changedProperties: PropertyValues): void;
|
|
15
15
|
}
|
|
16
16
|
export interface FtSelectProperties {
|
|
@@ -37,7 +37,7 @@ export declare const FtSelectCssVariables: {
|
|
|
37
37
|
};
|
|
38
38
|
export declare class FtSelect extends FtLitElement implements FtSelectProperties {
|
|
39
39
|
static elementDefinitions: ElementDefinitionsMap;
|
|
40
|
-
|
|
40
|
+
static styles: import("lit").CSSResult[];
|
|
41
41
|
label: string;
|
|
42
42
|
helper: string;
|
|
43
43
|
outlined: boolean;
|
|
@@ -53,7 +53,7 @@ export declare class FtSelect extends FtLitElement implements FtSelectProperties
|
|
|
53
53
|
private selectedOptionElement?;
|
|
54
54
|
private lastOption?;
|
|
55
55
|
private optionsSlot?;
|
|
56
|
-
protected
|
|
56
|
+
protected render(): import("lit-html").TemplateResult<1>;
|
|
57
57
|
private renderOption;
|
|
58
58
|
protected updated(props: PropertyValues): void;
|
|
59
59
|
protected contentAvailableCallback(props: PropertyValues): void;
|