@fluid-topics/ft-button 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.
@@ -13,7 +13,7 @@ import { html } from "lit";
13
13
  import { classMap } from "lit/directives/class-map.js";
14
14
  import { property, query } from "lit/decorators.js";
15
15
  import { ifDefined } from "lit/directives/if-defined.js";
16
- class FtBaseButton extends toFtFormComponent(FtLitElement) {
16
+ export class FtBaseButton extends toFtFormComponent(FtLitElement) {
17
17
  get buttonClasses() {
18
18
  return {};
19
19
  }
@@ -210,4 +210,3 @@ __decorate([
210
210
  __decorate([
211
211
  query("[part=tooltip]")
212
212
  ], FtBaseButton.prototype, "tooltip", void 0);
213
- export { FtBaseButton };
@@ -9,7 +9,7 @@ import { safariEllipsisFix } from "@fluid-topics/ft-wc-utils";
9
9
  import { classicStyles } from "./ft-button.styles";
10
10
  import { FtBaseButton } from "./ft-base-button";
11
11
  import { FtTypography, FtTypographyVariants } from "@fluid-topics/ft-typography";
12
- class FtButton extends FtBaseButton {
12
+ export class FtButton extends FtBaseButton {
13
13
  constructor() {
14
14
  super(...arguments);
15
15
  this.primary = false;
@@ -53,4 +53,3 @@ __decorate([
53
53
  __decorate([
54
54
  property({ type: Boolean })
55
55
  ], FtButton.prototype, "round", void 0);
56
- export { FtButton };