@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.
- package/build/ft-collapsible.css.d.ts +0 -1
- package/build/ft-collapsible.css.js +0 -1
- package/build/ft-collapsible.d.ts +1 -2
- package/build/ft-collapsible.js +2 -4
- package/build/ft-collapsible.light.js +142 -142
- package/build/ft-collapsible.min.js +177 -187
- package/build/ft-collapsible.properties.d.ts +0 -1
- package/build/ft-collapsible.properties.js +0 -1
- package/build/index.d.ts +0 -1
- package/build/index.js +0 -1
- package/package.json +5 -5
|
@@ -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
|
|
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
|
package/build/ft-collapsible.js
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
172
|
+
export { FtCollapsible };
|