@fluid-topics/ft-select 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-select-option.js +1 -2
- package/build/ft-select.js +1 -2
- package/build/ft-select.min.js +120 -120
- package/package.json +7 -7
|
@@ -11,7 +11,7 @@ import { html, LitElement, } from "lit";
|
|
|
11
11
|
import { classMap } from "lit/directives/class-map.js";
|
|
12
12
|
import { property, query, } from "lit/decorators.js";
|
|
13
13
|
import { styles } from "./ft-select-option.styles";
|
|
14
|
-
class FtSelectOption extends FtLitElement {
|
|
14
|
+
export class FtSelectOption extends FtLitElement {
|
|
15
15
|
constructor() {
|
|
16
16
|
super(...arguments);
|
|
17
17
|
this.label = "";
|
|
@@ -71,4 +71,3 @@ __decorate([
|
|
|
71
71
|
__decorate([
|
|
72
72
|
query("slot")
|
|
73
73
|
], FtSelectOption.prototype, "slotElement", void 0);
|
|
74
|
-
export { FtSelectOption };
|
package/build/ft-select.js
CHANGED
|
@@ -18,7 +18,7 @@ import { FtIcon, FtIcons, } from "@fluid-topics/ft-icon";
|
|
|
18
18
|
import { FtSelectCssVariables, styles, } from "./ft-select.styles";
|
|
19
19
|
import { FtSelectOption } from "./ft-select-option";
|
|
20
20
|
export { FtSelectOption };
|
|
21
|
-
class FtSelect extends FtLitElement {
|
|
21
|
+
export class FtSelect extends FtLitElement {
|
|
22
22
|
constructor() {
|
|
23
23
|
super(...arguments);
|
|
24
24
|
this.label = "";
|
|
@@ -358,4 +358,3 @@ __decorate([
|
|
|
358
358
|
__decorate([
|
|
359
359
|
query("slot:not([name])")
|
|
360
360
|
], FtSelect.prototype, "optionsSlot", void 0);
|
|
361
|
-
export { FtSelect };
|