@fluid-topics/ft-filter 0.3.71 → 1.0.0-alpha.0

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,5 +13,4 @@ export declare const FtFilterLevelCssVariables: {
13
13
  lineHeight: import("@fluid-topics/ft-wc-utils").FtCssVariable;
14
14
  textTransform: import("@fluid-topics/ft-wc-utils").FtCssVariable;
15
15
  };
16
- export declare const styles: import("lit").CSSResult;
17
- //# sourceMappingURL=ft-filter-level.css.d.ts.map
16
+ export declare const levelStyles: import("lit").CSSResult;
@@ -18,7 +18,7 @@ export const FtFilterLevelCssVariables = {
18
18
  textTransform: FtCssVariableFactory.external(FtTypographyBody2CssVariables.textTransform, "Body2 typography"),
19
19
  };
20
20
  // language=CSS
21
- export const styles = css `
21
+ export const levelStyles = css `
22
22
  .ft-filter-level--container {
23
23
  display: flex;
24
24
  flex-direction: column;
@@ -85,4 +85,3 @@ export const styles = css `
85
85
  color: ${FtFilterLevelCssVariables.colorOnSurfaceMedium};
86
86
  }
87
87
  `;
88
- //# sourceMappingURL=ft-filter-level.css.js.map
@@ -29,4 +29,3 @@ export declare class FtFilterLevel extends FtLitElement {
29
29
  private optionsChanged;
30
30
  private displayLevel;
31
31
  }
32
- //# sourceMappingURL=ft-filter-level.d.ts.map
@@ -15,8 +15,8 @@ import { FtRipple } from "@fluid-topics/ft-ripple";
15
15
  import { FtIcon } from "@fluid-topics/ft-icon";
16
16
  import { FtCheckbox } from "@fluid-topics/ft-checkbox";
17
17
  import { FtRadio } from "@fluid-topics/ft-radio";
18
- import { styles } from "./ft-filter-level.css";
19
- export class FtFilterLevel extends FtLitElement {
18
+ import { levelStyles } from "./ft-filter-level.css";
19
+ class FtFilterLevel extends FtLitElement {
20
20
  constructor() {
21
21
  super(...arguments);
22
22
  this.id = "";
@@ -60,7 +60,7 @@ export class FtFilterLevel extends FtLitElement {
60
60
  @keyup=${this.goBackOnKeyPress}
61
61
  @click=${this.goBackOnClick}>
62
62
  <ft-ripple></ft-ripple>
63
- <ft-icon variant="material">chevron_left</ft-icon>
63
+ <ft-icon>thin_arrow_left</ft-icon>
64
64
  <ft-typography variant="body2">${this.parent.label}</ft-typography>
65
65
  </div>
66
66
  `}
@@ -75,7 +75,7 @@ export class FtFilterLevel extends FtLitElement {
75
75
  <div class="ft-filter-level--option" part="options">
76
76
  ${this.multivalued ? this.buildMultiValuedOption(option) : this.buildMonoValuedOption(option)}
77
77
  ${this.preventNavigation || option.selected || ((_a = option.subOptions) !== null && _a !== void 0 ? _a : []).length === 0 ? nothing : html `
78
- <ft-button icon="chevron_right"
78
+ <ft-button icon="thin_arrow_right"
79
79
  part="controls navigate-hierarchy"
80
80
  label="${option.label}"
81
81
  ?disabled=${this.disabled}
@@ -88,7 +88,7 @@ export class FtFilterLevel extends FtLitElement {
88
88
  ${limitedOptions.length < options.length ? html `
89
89
  <ft-button
90
90
  class="ft-filter-level--display-more"
91
- icon="expand_more"
91
+ icon="thin_arrow"
92
92
  dense trailingIcon
93
93
  part="controls display-more"
94
94
  @click=${this.displayMore}>
@@ -161,7 +161,7 @@ FtFilterLevel.elementDefinitions = {
161
161
  "ft-radio": FtRadio,
162
162
  };
163
163
  // language=CSS
164
- FtFilterLevel.styles = styles;
164
+ FtFilterLevel.styles = levelStyles;
165
165
  __decorate([
166
166
  property({ type: String })
167
167
  ], FtFilterLevel.prototype, "id", void 0);
@@ -201,4 +201,4 @@ __decorate([
201
201
  __decorate([
202
202
  state()
203
203
  ], FtFilterLevel.prototype, "displayedPages", void 0);
204
- //# sourceMappingURL=ft-filter-level.js.map
204
+ export { FtFilterLevel };
@@ -13,4 +13,3 @@ export declare class FtFilterOption extends FtLitElement implements FtFilterOpti
13
13
  private updateSubOptionsFromSlot;
14
14
  protected updated(changedProperties: PropertyValues): void;
15
15
  }
16
- //# sourceMappingURL=ft-filter-option.d.ts.map
@@ -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
- export class FtFilterOption extends FtLitElement {
10
+ class FtFilterOption extends FtLitElement {
11
11
  constructor() {
12
12
  super(...arguments);
13
13
  this.label = "";
@@ -51,4 +51,4 @@ __decorate([
51
51
  __decorate([
52
52
  query(".ft-filter-option--slot")
53
53
  ], FtFilterOption.prototype, "slotElement", void 0);
54
- //# sourceMappingURL=ft-filter-option.js.map
54
+ export { FtFilterOption };
@@ -6,4 +6,3 @@ export interface FtFilterOptionProperties {
6
6
  subOptions?: Array<FtFilterOptionProperties>;
7
7
  renderOption?: TemplateResult | null;
8
8
  }
9
- //# sourceMappingURL=ft-filter-option.properties.d.ts.map
@@ -1,2 +1 @@
1
1
  export {};
2
- //# sourceMappingURL=ft-filter-option.properties.js.map
@@ -8,4 +8,3 @@ export declare const FtFilterCssVariables: {
8
8
  transitionTimingFunction: import("@fluid-topics/ft-wc-utils").FtCssVariable;
9
9
  };
10
10
  export declare const styles: import("lit").CSSResult[];
11
- //# sourceMappingURL=ft-filter.css.d.ts.map
@@ -128,4 +128,3 @@ export const styles = [
128
128
  }
129
129
  `
130
130
  ];
131
- //# sourceMappingURL=ft-filter.css.js.map
@@ -51,4 +51,3 @@ export declare class FtFilter extends FtLitElement implements FtFilterProperties
51
51
  private onFilterChange;
52
52
  private updateScroll;
53
53
  }
54
- //# sourceMappingURL=ft-filter.d.ts.map
@@ -18,7 +18,7 @@ export class FtFilterChangeEvent extends CustomEvent {
18
18
  super("change", { detail: selectedValues });
19
19
  }
20
20
  }
21
- export class FtFilter extends FtLitElement {
21
+ class FtFilter extends FtLitElement {
22
22
  constructor() {
23
23
  super(...arguments);
24
24
  this.id = "";
@@ -319,4 +319,4 @@ __decorate([
319
319
  __decorate([
320
320
  state()
321
321
  ], FtFilter.prototype, "slideOut", void 0);
322
- //# sourceMappingURL=ft-filter.js.map
322
+ export { FtFilter };