@fluid-topics/ft-chip-choice 2.0.14 → 2.0.16
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-chip-choice-option.js +1 -2
- package/build/ft-chip-choice.js +1 -2
- package/build/ft-chip-choice.light.js +216 -216
- package/build/ft-chip-choice.min.js +279 -279
- package/package.json +5 -5
|
@@ -14,7 +14,7 @@ export class FtChipChoiceOptionChangeEvent extends CustomEvent {
|
|
|
14
14
|
super("ft-chip-choice-option-change", { detail: { value: value, selected: selected }, bubbles: true, composed: true });
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
-
class FtChipChoiceOption extends FtLitElement {
|
|
17
|
+
export class FtChipChoiceOption extends FtLitElement {
|
|
18
18
|
constructor() {
|
|
19
19
|
super(...arguments);
|
|
20
20
|
this.name = "";
|
|
@@ -86,4 +86,3 @@ __decorate([
|
|
|
86
86
|
__decorate([
|
|
87
87
|
query("ft-chip")
|
|
88
88
|
], FtChipChoiceOption.prototype, "chip", void 0);
|
|
89
|
-
export { FtChipChoiceOption };
|
package/build/ft-chip-choice.js
CHANGED
|
@@ -13,7 +13,7 @@ export class FtChipChoiceChangeEvent extends CustomEvent {
|
|
|
13
13
|
super("change", { detail: { value } });
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
class FtChipChoice extends FtLitElement {
|
|
16
|
+
export class FtChipChoice extends FtLitElement {
|
|
17
17
|
constructor() {
|
|
18
18
|
super(...arguments);
|
|
19
19
|
this.name = "";
|
|
@@ -86,4 +86,3 @@ __decorate([
|
|
|
86
86
|
__decorate([
|
|
87
87
|
state()
|
|
88
88
|
], FtChipChoice.prototype, "selectedOptions", void 0);
|
|
89
|
-
export { FtChipChoice };
|