@fluid-topics/ft-switch 2.0.15 → 2.0.17
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-option.js +1 -2
- package/build/ft-switch.js +1 -2
- package/build/ft-switch.min.js +132 -132
- package/package.json +7 -7
|
@@ -23,7 +23,7 @@ export class SwitchOptionChange extends CustomEvent {
|
|
|
23
23
|
super("option-change", { detail: selected, bubbles: true, composed: true });
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
class FtSwitchOption extends FtLitElement {
|
|
26
|
+
export class FtSwitchOption extends FtLitElement {
|
|
27
27
|
constructor() {
|
|
28
28
|
super(...arguments);
|
|
29
29
|
this.value = "";
|
|
@@ -154,4 +154,3 @@ __decorate([
|
|
|
154
154
|
__decorate([
|
|
155
155
|
state()
|
|
156
156
|
], FtSwitchOption.prototype, "isFocused", void 0);
|
|
157
|
-
export { FtSwitchOption };
|
package/build/ft-switch.js
CHANGED
|
@@ -16,7 +16,7 @@ export class FtSwitchChange extends CustomEvent {
|
|
|
16
16
|
super("change", { detail: value });
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
|
-
class FtSwitch extends FtLitElement {
|
|
19
|
+
export class FtSwitch extends FtLitElement {
|
|
20
20
|
constructor() {
|
|
21
21
|
super(...arguments);
|
|
22
22
|
this.dense = false;
|
|
@@ -195,4 +195,3 @@ __decorate([
|
|
|
195
195
|
__decorate([
|
|
196
196
|
query(".ft-switch")
|
|
197
197
|
], FtSwitch.prototype, "ftSwitchDiv", void 0);
|
|
198
|
-
export { FtSwitch };
|