@fluid-topics/ft-reader-toc 0.3.11 → 0.3.13
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-reader-toc.css.d.ts +11 -0
- package/build/ft-reader-toc.css.js +48 -0
- package/build/ft-reader-toc.d.ts +4 -22
- package/build/ft-reader-toc.js +16 -56
- package/build/ft-reader-toc.light.js +472 -473
- package/build/ft-reader-toc.min.js +483 -484
- package/build/ft-reader-toc.properties.d.ts +15 -0
- package/build/ft-reader-toc.properties.js +5 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +2 -0
- package/package.json +7 -7
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ParametrizedLabels } from "@fluid-topics/ft-wc-utils";
|
|
2
|
+
import { FtIconVariants } from "@fluid-topics/ft-icon/build/ft-icon.properties";
|
|
3
|
+
export interface FtReaderTocProperties {
|
|
4
|
+
expanded?: boolean;
|
|
5
|
+
iconVariant?: FtIconVariants;
|
|
6
|
+
collapseIcon?: string;
|
|
7
|
+
expandIcon?: string;
|
|
8
|
+
autoCollapse?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export interface FtReaderTocLabels extends ParametrizedLabels {
|
|
11
|
+
expand?: string;
|
|
12
|
+
collapse?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare const DEFAULT_LABELS: FtReaderTocLabels;
|
|
15
|
+
//# sourceMappingURL=ft-reader-toc.properties.d.ts.map
|
package/build/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { customElement } from "@fluid-topics/ft-wc-utils";
|
|
2
2
|
import { FtReaderToc } from "./ft-reader-toc";
|
|
3
|
+
export * from "./ft-reader-toc.css";
|
|
4
|
+
export * from "./ft-reader-toc.properties";
|
|
3
5
|
export * from "./ft-reader-toc";
|
|
4
6
|
customElement("ft-reader-toc")(FtReaderToc);
|
|
5
7
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-reader-toc",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.13",
|
|
4
4
|
"description": "Main table of content for integrated reader",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-icon": "0.3.
|
|
23
|
-
"@fluid-topics/ft-reader-context": "0.3.
|
|
24
|
-
"@fluid-topics/ft-size-watcher": "0.3.
|
|
25
|
-
"@fluid-topics/ft-typography": "0.3.
|
|
26
|
-
"@fluid-topics/ft-wc-utils": "0.3.
|
|
22
|
+
"@fluid-topics/ft-icon": "0.3.13",
|
|
23
|
+
"@fluid-topics/ft-reader-context": "0.3.13",
|
|
24
|
+
"@fluid-topics/ft-size-watcher": "0.3.13",
|
|
25
|
+
"@fluid-topics/ft-typography": "0.3.13",
|
|
26
|
+
"@fluid-topics/ft-wc-utils": "0.3.13",
|
|
27
27
|
"lit": "2.2.8"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "84b5fc920bc5d2bdb646b5da8815ad51caaf228e"
|
|
30
30
|
}
|