@fluid-topics/ft-collapsible 0.3.71 → 1.0.0-alpha.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.
@@ -1,2 +1 @@
1
1
  export declare const styles: import("lit").CSSResult;
2
- //# sourceMappingURL=ft-collapsible.css.d.ts.map
@@ -25,4 +25,3 @@ export const styles = css `
25
25
  transition: opacity 300ms;
26
26
  }
27
27
  `;
28
- //# sourceMappingURL=ft-collapsible.css.js.map
@@ -20,7 +20,7 @@ export declare class FtCollapsible extends FtLitElement implements FtCollapsible
20
20
  dense: boolean;
21
21
  round: boolean;
22
22
  tooltipPosition: Position;
23
- iconVariant: FtIconVariants;
23
+ iconVariant?: FtIconVariants;
24
24
  openIcon: string;
25
25
  closedIcon: string;
26
26
  trailingIcon: boolean;
@@ -36,4 +36,3 @@ export declare class FtCollapsible extends FtLitElement implements FtCollapsible
36
36
  protected update(changedProperties: PropertyValues): void;
37
37
  private onContentClick;
38
38
  }
39
- //# sourceMappingURL=ft-collapsible.d.ts.map
@@ -10,8 +10,7 @@ import { classMap } from "lit/directives/class-map.js";
10
10
  import { Debouncer, FtLitElement, jsonProperty } from "@fluid-topics/ft-wc-utils";
11
11
  import { FtButton } from "@fluid-topics/ft-button";
12
12
  import { styles } from "./ft-collapsible.css";
13
- import { FtIconVariants } from "@fluid-topics/ft-icon/build/ft-icon.properties";
14
- export class FtCollapsible extends FtLitElement {
13
+ class FtCollapsible extends FtLitElement {
15
14
  constructor() {
16
15
  super(...arguments);
17
16
  this.open = false;
@@ -23,7 +22,6 @@ export class FtCollapsible extends FtLitElement {
23
22
  this.dense = false;
24
23
  this.round = false;
25
24
  this.tooltipPosition = "right";
26
- this.iconVariant = FtIconVariants.fluid_topics;
27
25
  this.openIcon = "THIN_ARROW";
28
26
  this.closedIcon = "THIN_ARROW_RIGHT";
29
27
  this.trailingIcon = false;
@@ -171,4 +169,4 @@ __decorate([
171
169
  __decorate([
172
170
  state()
173
171
  ], FtCollapsible.prototype, "animationInProgress", void 0);
174
- //# sourceMappingURL=ft-collapsible.js.map
172
+ export { FtCollapsible };