@fluid-topics/ft-checkbox 2.0.15 → 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.
@@ -15,7 +15,7 @@ export class FtCheckboxChangeEvent extends CustomEvent {
15
15
  super("change", { detail: checked });
16
16
  }
17
17
  }
18
- class FtBaseCheckbox extends FtLitElement {
18
+ export class FtBaseCheckbox extends FtLitElement {
19
19
  constructor() {
20
20
  super(...arguments);
21
21
  this.name = "";
@@ -171,4 +171,3 @@ __decorate([
171
171
  __decorate([
172
172
  query("input")
173
173
  ], FtBaseCheckbox.prototype, "input", void 0);
174
- export { FtBaseCheckbox };
@@ -1,10 +1,9 @@
1
1
  import { FtBaseCheckbox, } from "./ft-base-checkbox";
2
2
  import { FtTypographyVariants } from "@fluid-topics/ft-typography";
3
3
  import { styles } from "./ft-checkbox.styles";
4
- class FtCheckbox extends FtBaseCheckbox {
4
+ export class FtCheckbox extends FtBaseCheckbox {
5
5
  get typographyVariant() {
6
6
  return FtTypographyVariants.body2;
7
7
  }
8
8
  }
9
9
  FtCheckbox.styles = styles;
10
- export { FtCheckbox };