@fluid-topics/ft-select 1.2.28 → 1.2.30
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 +2 -2
- package/build/ft-select.light.js +83 -83
- package/build/ft-select.min.js +171 -201
- package/package.json +7 -7
package/build/ft-select.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare class FtSelectOption extends FtLitElement implements FtSelectOpti
|
|
|
6
6
|
label: string;
|
|
7
7
|
value: any;
|
|
8
8
|
selected: boolean;
|
|
9
|
-
protected render(): import("lit").TemplateResult<1>;
|
|
9
|
+
protected render(): import("lit-html").TemplateResult<1>;
|
|
10
10
|
protected update(changedProperties: PropertyValues): void;
|
|
11
11
|
}
|
|
12
12
|
export declare class FtSelect extends FtLitElement implements FtSelectProperties {
|
|
@@ -31,7 +31,7 @@ export declare class FtSelect extends FtLitElement implements FtSelectProperties
|
|
|
31
31
|
private selectedOptionElement?;
|
|
32
32
|
private lastOption?;
|
|
33
33
|
private optionsSlot?;
|
|
34
|
-
protected render(): import("lit").TemplateResult<1>;
|
|
34
|
+
protected render(): import("lit-html").TemplateResult<1>;
|
|
35
35
|
private renderOption;
|
|
36
36
|
protected update(props: PropertyValues): void;
|
|
37
37
|
protected contentAvailableCallback(props: PropertyValues): void;
|