@fluid-topics/ft-reader-toc 0.3.12 → 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.
@@ -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
@@ -0,0 +1,5 @@
1
+ export const DEFAULT_LABELS = {
2
+ expand: "Expand {0}",
3
+ collapse: "Collapse {0}",
4
+ };
5
+ //# sourceMappingURL=ft-reader-toc.properties.js.map
package/build/index.d.ts CHANGED
@@ -1,2 +1,4 @@
1
+ export * from "./ft-reader-toc.css";
2
+ export * from "./ft-reader-toc.properties";
1
3
  export * from "./ft-reader-toc";
2
4
  //# sourceMappingURL=index.d.ts.map
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.12",
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.12",
23
- "@fluid-topics/ft-reader-context": "0.3.12",
24
- "@fluid-topics/ft-size-watcher": "0.3.12",
25
- "@fluid-topics/ft-typography": "0.3.12",
26
- "@fluid-topics/ft-wc-utils": "0.3.12",
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": "126fc60c5ec4b89c3897901d1a92ee9b17286686"
29
+ "gitHead": "84b5fc920bc5d2bdb646b5da8815ad51caaf228e"
30
30
  }