@fluid-topics/ft-filter 1.3.62 → 1.4.1
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-filter-level.js +6 -5
- package/build/ft-filter.light.js +888 -421
- package/build/ft-filter.min.js +987 -520
- package/package.json +10 -10
package/build/ft-filter-level.js
CHANGED
|
@@ -4,16 +4,16 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
4
4
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
5
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
6
|
};
|
|
7
|
-
import { html, nothing } from "lit";
|
|
8
|
-
import { property, query, state } from "lit/decorators.js";
|
|
7
|
+
import { html, nothing, } from "lit";
|
|
8
|
+
import { property, query, state, } from "lit/decorators.js";
|
|
9
9
|
import { repeat } from "lit/directives/repeat.js";
|
|
10
|
-
import { Debouncer, flatDeep, FtLitElement, hasChanged, numberProperty, withAriaNotification } from "@fluid-topics/ft-wc-utils";
|
|
10
|
+
import { Debouncer, flatDeep, FtLitElement, hasChanged, numberProperty, withAriaNotification, } from "@fluid-topics/ft-wc-utils";
|
|
11
11
|
import { FtButton } from "@fluid-topics/ft-button";
|
|
12
|
-
import { FtTypography, FtTypographyVariants } from "@fluid-topics/ft-typography";
|
|
12
|
+
import { FtTypography, FtTypographyVariants, } from "@fluid-topics/ft-typography";
|
|
13
13
|
import { FtRipple } from "@fluid-topics/ft-ripple";
|
|
14
14
|
import { FtIcon } from "@fluid-topics/ft-icon";
|
|
15
15
|
import { FtCheckbox } from "@fluid-topics/ft-checkbox";
|
|
16
|
-
import { FtRadio } from "@fluid-topics/ft-radio";
|
|
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
19
|
class FtFilterLevel extends withI18n(withAriaNotification(FtLitElement)) {
|
|
@@ -158,6 +158,7 @@ class FtFilterLevel extends withI18n(withAriaNotification(FtLitElement)) {
|
|
|
158
158
|
return html `
|
|
159
159
|
<ft-checkbox name="${this.filterId}"
|
|
160
160
|
part="multivalued-option option"
|
|
161
|
+
.exportpartsPrefixes=${["multivalued-option", "option"]}
|
|
161
162
|
data-value="${option.value}"
|
|
162
163
|
.checked=${option.selected}
|
|
163
164
|
.disabled=${this.disabled}
|