@fluid-topics/ft-switch 0.2.0 → 0.2.3
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-switch.d.ts +2 -0
- package/build/ft-switch.inline-styles.js +115 -115
- package/build/ft-switch.js +6 -0
- package/build/ft-switch.light.js +1 -1
- package/build/ft-switch.min.js +109 -109
- package/package.json +7 -7
package/build/ft-switch.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare class FtSwitch extends FtLitElement implements FtSwitchProperties
|
|
|
12
12
|
private slottedContent?;
|
|
13
13
|
private selectedOption?;
|
|
14
14
|
private options;
|
|
15
|
+
private ftSwitchDiv;
|
|
15
16
|
protected updated(props: PropertyValues<any>): void;
|
|
16
17
|
static get styles(): import("lit").CSSResult;
|
|
17
18
|
protected render(): import("lit-html").TemplateResult<1>;
|
|
@@ -20,6 +21,7 @@ export declare class FtSwitch extends FtLitElement implements FtSwitchProperties
|
|
|
20
21
|
private onSlotchange;
|
|
21
22
|
private registerOption;
|
|
22
23
|
private onOptionChange;
|
|
24
|
+
focus(): void;
|
|
23
25
|
private updateOptions;
|
|
24
26
|
}
|
|
25
27
|
//# sourceMappingURL=ft-switch.d.ts.map
|