@fluid-topics/ft-filter 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.
@@ -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 };
@@ -2458,6 +2458,8 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
2458
2458
  `;var vr=class extends Pe{get typographyVariant(){return fe.body2}};vr.elementDefinitions={...Pe.elementDefinitions,"ft-or-ftds-typography":se};vr.styles=mf;var Za=v(T());var yf=v(U()),H=v(T());var gf=yf.css`
2459
2459
  * {
2460
2460
  box-sizing: border-box;
2461
+ display: inline-flex;
2462
+ align-items: center;
2461
2463
  --input-size: calc(${H.radio.circleSize} + 2 * (${H.radio.focusOutlineOffset} + ${H.radio.focusOutlineWidth}));
2462
2464
  --input-margin: calc(-1 * ${H.radio.focusOutlineOffset} - ${H.radio.focusOutlineWidth});
2463
2465
  }
@@ -2465,9 +2467,6 @@ svg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {
2465
2467
  .ft-radio {
2466
2468
  box-sizing: border-box;
2467
2469
  color: ${H.radio.color};
2468
-
2469
- display: inline-flex;
2470
- align-items: center;
2471
2470
  gap: ${H.radio.horizontalGap};
2472
2471
  }
2473
2472