@fluid-topics/ft-filter 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.
@@ -16,7 +16,7 @@ import { FtCheckbox } from "@fluid-topics/ft-checkbox";
16
16
  import { FtRadio, } from "@fluid-topics/ft-radio";
17
17
  import { levelStyles } from "./ft-filter-level.styles";
18
18
  import { withI18n } from "@fluid-topics/ft-i18n";
19
- class FtFilterLevel extends withI18n(withAriaNotification(FtLitElement)) {
19
+ export class FtFilterLevel extends withI18n(withAriaNotification(FtLitElement)) {
20
20
  constructor() {
21
21
  super(...arguments);
22
22
  this.filterId = "";
@@ -273,4 +273,3 @@ __decorate([
273
273
  __decorate([
274
274
  state()
275
275
  ], FtFilterLevel.prototype, "filteredOptions", void 0);
276
- export { FtFilterLevel };
@@ -7,7 +7,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
7
7
  import { FtLitElement, jsonProperty } from "@fluid-topics/ft-wc-utils";
8
8
  import { property, query } from "lit/decorators.js";
9
9
  import { html } from "lit";
10
- class FtFilterOption extends FtLitElement {
10
+ export class FtFilterOption extends FtLitElement {
11
11
  constructor() {
12
12
  super(...arguments);
13
13
  this.label = "";
@@ -51,4 +51,3 @@ __decorate([
51
51
  __decorate([
52
52
  query(".ft-filter-option--slot")
53
53
  ], FtFilterOption.prototype, "slotElement", void 0);
54
- export { FtFilterOption };
@@ -17,7 +17,7 @@ export class FtFilterChangeEvent extends CustomEvent {
17
17
  super("change", { detail: selectedValues });
18
18
  }
19
19
  }
20
- class FtFilter extends FtLitElement {
20
+ export class FtFilter extends FtLitElement {
21
21
  constructor() {
22
22
  super(...arguments);
23
23
  this.id = "";
@@ -374,4 +374,3 @@ __decorate([
374
374
  __decorate([
375
375
  state()
376
376
  ], FtFilter.prototype, "slideOut", void 0);
377
- export { FtFilter };