@kubex/zinc 1.0.113 → 1.0.114

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.
Files changed (95) hide show
  1. package/.github/workflows/eleventy_build.yml +5 -5
  2. package/.github/workflows/js_build_and_deploy.yaml +1 -1
  3. package/dist/custom-elements.json +2636 -421
  4. package/dist/vscode.html-custom-data.json +96 -16
  5. package/dist/web-types.json +268 -31
  6. package/dist/zn.d.ts +517 -340
  7. package/dist/zn.min.css +1 -1
  8. package/dist/zn.min.js +942 -863
  9. package/docs/eleventy.config.cjs +4 -2
  10. package/docs/pages/components/header.md +13 -0
  11. package/docs/pages/components/inline-edit.md +20 -0
  12. package/docs/pages/components/item.md +12 -1
  13. package/docs/pages/components/page.md +149 -0
  14. package/docs/pages/components/progress-bar.md +16 -0
  15. package/docs/pages/components/select.md +25 -0
  16. package/docs/pages/components/split-pane.md +6 -7
  17. package/docs/pages/components/tabs.md +59 -9
  18. package/package.json +8 -5
  19. package/scripts/build.js +40 -19
  20. package/scss/_global-spacing.scss +12 -1
  21. package/scss/_root.scss +34 -2
  22. package/scss/shared/layout.scss +15 -2
  23. package/scss/themes/_light.scss +1 -1
  24. package/src/components/absolute-container/absolute-container.component.ts +9 -25
  25. package/src/components/animated-button/animated-button.test.ts +8 -8
  26. package/src/components/button/button.component.ts +3 -1
  27. package/src/components/button/button.scss +5 -0
  28. package/src/components/button-menu/button-menu.component.ts +36 -21
  29. package/src/components/button-menu/button-menu.test.ts +55 -1
  30. package/src/components/chart/chart.component.ts +7 -7
  31. package/src/components/collapsible/collapsible.component.ts +7 -14
  32. package/src/components/cols/cols.scss +1 -1
  33. package/src/components/content-block/content-block.component.ts +11 -33
  34. package/src/components/data-select/data-select.component.ts +7 -11
  35. package/src/components/data-table/data-table.component.ts +10 -14
  36. package/src/components/editor/modules/toolbar/toolbar.component.ts +5 -9
  37. package/src/components/expanding-action/expanding-action.component.ts +37 -43
  38. package/src/components/form-group/form-group.component.ts +8 -3
  39. package/src/components/header/header.component.ts +6 -5
  40. package/src/components/header/header.scss +31 -25
  41. package/src/components/inline-edit/inline-edit.component.ts +13 -1
  42. package/src/components/inline-edit/inline-edit.test.ts +50 -0
  43. package/src/components/input/input.test.ts +77 -0
  44. package/src/components/input-group/input-group.test.ts +2 -10
  45. package/src/components/item/item.component.ts +12 -6
  46. package/src/components/item/item.scss +1 -1
  47. package/src/components/item/item.test.ts +8 -0
  48. package/src/components/navbar/navbar.component.ts +222 -48
  49. package/src/components/navbar/navbar.scss +134 -21
  50. package/src/components/navbar/navbar.test.ts +114 -9
  51. package/src/components/option/option.scss +5 -7
  52. package/src/components/option/option.test.ts +30 -0
  53. package/src/components/page/index.ts +13 -0
  54. package/src/components/page/page.component.ts +406 -0
  55. package/src/components/page/page.scss +325 -0
  56. package/src/components/page/page.test.ts +397 -0
  57. package/src/components/page-nav/page-nav.scss +7 -5
  58. package/src/components/pane/pane.component.ts +2 -2
  59. package/src/components/pane/pane.scss +0 -1
  60. package/src/components/pane/pane.test.ts +31 -0
  61. package/src/components/panel/panel.scss +1 -0
  62. package/src/components/progress-bar/progress-bar.component.ts +5 -2
  63. package/src/components/progress-bar/progress-bar.scss +17 -1
  64. package/src/components/progress-bar/progress-bar.test.ts +12 -0
  65. package/src/components/scroll-container/scroll-container.component.ts +22 -21
  66. package/src/components/select/select.component.ts +240 -38
  67. package/src/components/select/select.scss +15 -0
  68. package/src/components/select/select.test.ts +477 -0
  69. package/src/components/settings-container/settings-container.component.ts +15 -19
  70. package/src/components/settings-container/settings-container.scss +8 -8
  71. package/src/components/sidebar/sidebar.component.ts +11 -11
  72. package/src/components/simple-chart/simple-chart.component.ts +6 -7
  73. package/src/components/sp/sp.scss +46 -15
  74. package/src/components/sp/sp.test.ts +15 -0
  75. package/src/components/split-pane/split-pane.component.ts +153 -26
  76. package/src/components/split-pane/split-pane.scss +89 -13
  77. package/src/components/split-pane/split-pane.test.ts +187 -0
  78. package/src/components/style/style.component.ts +8 -0
  79. package/src/components/tab/index.ts +13 -0
  80. package/src/components/tab/tab.component.ts +25 -0
  81. package/src/components/tab/tab.scss +7 -0
  82. package/src/components/table/table.component.ts +7 -2
  83. package/src/components/tabs/tabs.component.ts +75 -70
  84. package/src/components/tabs/tabs.scss +1 -1
  85. package/src/components/textarea/textarea.component.ts +5 -8
  86. package/src/components/translation-group/translation-group.component.ts +15 -14
  87. package/src/components/translations/translations.component.ts +18 -17
  88. package/src/components/translations/translations.scss +1 -0
  89. package/src/components/translations/translations.test.ts +3 -2
  90. package/src/internal/form.ts +234 -0
  91. package/src/internal/theme.ts +26 -46
  92. package/src/internal/zinc-element.ts +12 -7
  93. package/src/utilities/form.ts +1 -0
  94. package/src/wc.scss +1 -1
  95. package/src/zinc.ts +3 -0
@@ -17,21 +17,9 @@
17
17
  }
18
18
  ],
19
19
  "members": [
20
- {
21
- "kind": "field",
22
- "name": "domObserver",
23
- "type": {
24
- "text": "MutationObserver"
25
- },
26
- "privacy": "private"
27
- },
28
20
  {
29
21
  "kind": "method",
30
22
  "name": "resize"
31
- },
32
- {
33
- "kind": "method",
34
- "name": "observerDom"
35
23
  }
36
24
  ],
37
25
  "superclass": {
@@ -59,6 +47,79 @@
59
47
  }
60
48
  ]
61
49
  },
50
+ {
51
+ "kind": "javascript-module",
52
+ "path": "components/action-bar/action-bar.js",
53
+ "declarations": [
54
+ {
55
+ "kind": "class",
56
+ "description": "",
57
+ "name": "ZnActionBar",
58
+ "cssProperties": [
59
+ {
60
+ "description": "An example CSS custom property.",
61
+ "name": "--example"
62
+ }
63
+ ],
64
+ "cssParts": [
65
+ {
66
+ "description": "The component's base wrapper.",
67
+ "name": "base"
68
+ }
69
+ ],
70
+ "slots": [
71
+ {
72
+ "description": "The default slot.",
73
+ "name": ""
74
+ },
75
+ {
76
+ "description": "An example slot.",
77
+ "name": "example"
78
+ }
79
+ ],
80
+ "members": [
81
+ {
82
+ "kind": "field",
83
+ "name": "localize",
84
+ "privacy": "private",
85
+ "readonly": true,
86
+ "default": "new LocalizeController(this)"
87
+ }
88
+ ],
89
+ "events": [
90
+ {
91
+ "description": "Emitted as an example.",
92
+ "name": "zn-event-name"
93
+ }
94
+ ],
95
+ "superclass": {
96
+ "name": "ZincElement",
97
+ "module": "/src/internal/zinc-element"
98
+ },
99
+ "summary": "Short summary of the component's intended use.",
100
+ "tagNameWithoutPrefix": "action-bar",
101
+ "tagName": "zn-action-bar",
102
+ "customElement": true,
103
+ "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
104
+ "documentation": "https://zinc.style/components/action-bar",
105
+ "status": "experimental",
106
+ "since": "1.0",
107
+ "dependencies": [
108
+ "zn-example"
109
+ ]
110
+ }
111
+ ],
112
+ "exports": [
113
+ {
114
+ "kind": "js",
115
+ "name": "default",
116
+ "declaration": {
117
+ "name": "ZnActionBar",
118
+ "module": "components/action-bar/action-bar.js"
119
+ }
120
+ }
121
+ ]
122
+ },
62
123
  {
63
124
  "kind": "javascript-module",
64
125
  "path": "components/alert/alert.js",
@@ -217,79 +278,6 @@
217
278
  }
218
279
  ]
219
280
  },
220
- {
221
- "kind": "javascript-module",
222
- "path": "components/action-bar/action-bar.js",
223
- "declarations": [
224
- {
225
- "kind": "class",
226
- "description": "",
227
- "name": "ZnActionBar",
228
- "cssProperties": [
229
- {
230
- "description": "An example CSS custom property.",
231
- "name": "--example"
232
- }
233
- ],
234
- "cssParts": [
235
- {
236
- "description": "The component's base wrapper.",
237
- "name": "base"
238
- }
239
- ],
240
- "slots": [
241
- {
242
- "description": "The default slot.",
243
- "name": ""
244
- },
245
- {
246
- "description": "An example slot.",
247
- "name": "example"
248
- }
249
- ],
250
- "members": [
251
- {
252
- "kind": "field",
253
- "name": "localize",
254
- "privacy": "private",
255
- "readonly": true,
256
- "default": "new LocalizeController(this)"
257
- }
258
- ],
259
- "events": [
260
- {
261
- "description": "Emitted as an example.",
262
- "name": "zn-event-name"
263
- }
264
- ],
265
- "superclass": {
266
- "name": "ZincElement",
267
- "module": "/src/internal/zinc-element"
268
- },
269
- "summary": "Short summary of the component's intended use.",
270
- "tagNameWithoutPrefix": "action-bar",
271
- "tagName": "zn-action-bar",
272
- "customElement": true,
273
- "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/action-bar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
274
- "documentation": "https://zinc.style/components/action-bar",
275
- "status": "experimental",
276
- "since": "1.0",
277
- "dependencies": [
278
- "zn-example"
279
- ]
280
- }
281
- ],
282
- "exports": [
283
- {
284
- "kind": "js",
285
- "name": "default",
286
- "declaration": {
287
- "name": "ZnActionBar",
288
- "module": "components/action-bar/action-bar.js"
289
- }
290
- }
291
- ]
292
- },
293
281
  {
294
282
  "kind": "javascript-module",
295
283
  "path": "components/animated-button/animated-button.js",
@@ -1336,6 +1324,15 @@
1336
1324
  "default": "false",
1337
1325
  "attribute": "square"
1338
1326
  },
1327
+ {
1328
+ "kind": "field",
1329
+ "name": "panelBackground",
1330
+ "type": {
1331
+ "text": "boolean"
1332
+ },
1333
+ "default": "false",
1334
+ "attribute": "panel-bg"
1335
+ },
1339
1336
  {
1340
1337
  "kind": "field",
1341
1338
  "name": "dropdownCloser",
@@ -1744,6 +1741,14 @@
1744
1741
  "default": "false",
1745
1742
  "fieldName": "square"
1746
1743
  },
1744
+ {
1745
+ "name": "panel-bg",
1746
+ "type": {
1747
+ "text": "boolean"
1748
+ },
1749
+ "default": "false",
1750
+ "fieldName": "panelBackground"
1751
+ },
1747
1752
  {
1748
1753
  "name": "dropdown-closer",
1749
1754
  "type": {
@@ -2264,20 +2269,23 @@
2264
2269
  },
2265
2270
  {
2266
2271
  "kind": "field",
2267
- "name": "resizeObserver",
2272
+ "name": "_resizeRafId",
2268
2273
  "type": {
2269
- "text": "ResizeObserver | null"
2274
+ "text": "number"
2270
2275
  },
2271
2276
  "privacy": "private",
2272
- "default": "null"
2277
+ "default": "0"
2273
2278
  },
2274
2279
  {
2275
- "kind": "method",
2276
- "name": "watchContainerMaxWidth"
2280
+ "kind": "field",
2281
+ "name": "resizeObserver",
2282
+ "privacy": "private",
2283
+ "readonly": true,
2284
+ "default": "new ResizeController(this, { target: null, callback: () => { if (this._resizeRafId) return; this._resizeRafId = requestAnimationFrame(() => { this._resizeRafId = 0; this.containerWidth = this.offsetWidth; }); }, })"
2277
2285
  },
2278
2286
  {
2279
- "kind": "field",
2280
- "name": "handleResize"
2287
+ "kind": "method",
2288
+ "name": "watchContainerMaxWidth"
2281
2289
  },
2282
2290
  {
2283
2291
  "kind": "method",
@@ -2307,6 +2315,19 @@
2307
2315
  }
2308
2316
  ]
2309
2317
  },
2318
+ {
2319
+ "kind": "method",
2320
+ "name": "getButtonLabel",
2321
+ "privacy": "private",
2322
+ "parameters": [
2323
+ {
2324
+ "name": "button",
2325
+ "type": {
2326
+ "text": "ZnButton"
2327
+ }
2328
+ }
2329
+ ]
2330
+ },
2310
2331
  {
2311
2332
  "kind": "method",
2312
2333
  "name": "addButton",
@@ -2605,19 +2626,18 @@
2605
2626
  },
2606
2627
  {
2607
2628
  "kind": "field",
2608
- "name": "resizeObserver",
2629
+ "name": "liveTimer",
2609
2630
  "type": {
2610
- "text": "ResizeObserver | undefined"
2631
+ "text": "number | undefined"
2611
2632
  },
2612
2633
  "privacy": "private"
2613
2634
  },
2614
2635
  {
2615
2636
  "kind": "field",
2616
- "name": "liveTimer",
2617
- "type": {
2618
- "text": "number | undefined"
2619
- },
2620
- "privacy": "private"
2637
+ "name": "resizeObserver",
2638
+ "privacy": "private",
2639
+ "readonly": true,
2640
+ "default": "new ResizeController(this, { target: null, skipInitial: true, callback: () => this.chart?.resize(), })"
2621
2641
  },
2622
2642
  {
2623
2643
  "kind": "method",
@@ -4334,10 +4354,9 @@
4334
4354
  {
4335
4355
  "kind": "field",
4336
4356
  "name": "observer",
4337
- "type": {
4338
- "text": "MutationObserver"
4339
- },
4340
- "privacy": "private"
4357
+ "privacy": "private",
4358
+ "readonly": true,
4359
+ "default": "new MutationController(this, { target: null, config: {childList: true, subtree: true}, callback: () => this.recalculateNumberOfItems(), })"
4341
4360
  },
4342
4361
  {
4343
4362
  "kind": "field",
@@ -5159,10 +5178,9 @@
5159
5178
  {
5160
5179
  "kind": "field",
5161
5180
  "name": "_footerObserver",
5162
- "type": {
5163
- "text": "MutationObserver | undefined"
5164
- },
5165
- "privacy": "private"
5181
+ "privacy": "private",
5182
+ "readonly": true,
5183
+ "default": "new MutationController(this, { target: null, config: {subtree: true, childList: true, attributes: true, attributeFilter: ['href', 'download', 'caption']}, callback: () => this._debouncedReplace(), })"
5166
5184
  },
5167
5185
  {
5168
5186
  "kind": "field",
@@ -5843,10 +5861,9 @@
5843
5861
  {
5844
5862
  "kind": "field",
5845
5863
  "name": "selectObserver",
5846
- "type": {
5847
- "text": "MutationObserver | undefined"
5848
- },
5849
- "privacy": "private"
5864
+ "privacy": "private",
5865
+ "readonly": true,
5866
+ "default": "new MutationController(this, { target: null, config: {attributes: true, attributeFilter: ['disabled']}, callback: () => this._syncDisabledState(), })"
5850
5867
  },
5851
5868
  {
5852
5869
  "kind": "field",
@@ -6524,10 +6541,9 @@
6524
6541
  {
6525
6542
  "kind": "field",
6526
6543
  "name": "resizeObserver",
6527
- "type": {
6528
- "text": "ResizeObserver"
6529
- },
6530
- "privacy": "private"
6544
+ "privacy": "private",
6545
+ "readonly": true,
6546
+ "default": "new ResizeController(this, { target: null, callback: () => { if (this.tableContainer) { this.tableContainer.scrollIntoView({behavior: 'smooth', block: 'nearest'}); } }, })"
6531
6547
  },
6532
6548
  {
6533
6549
  "kind": "field",
@@ -10628,19 +10644,26 @@
10628
10644
  },
10629
10645
  {
10630
10646
  "kind": "field",
10631
- "name": "_countObserver",
10647
+ "name": "_metaObserved",
10632
10648
  "type": {
10633
- "text": "MutationObserver | undefined"
10649
+ "text": "boolean"
10634
10650
  },
10635
- "privacy": "private"
10651
+ "privacy": "private",
10652
+ "default": "false"
10653
+ },
10654
+ {
10655
+ "kind": "field",
10656
+ "name": "_countObserver",
10657
+ "privacy": "private",
10658
+ "readonly": true,
10659
+ "default": "new MutationController(this, { target: null, config: {subtree: true, attributes: true, attributeFilter: ['content'], childList: true}, callback: () => { const appContent = deepQuerySelectorAll('app-content', this, '')[0]; const metaCount = appContent?.shadowRoot?.querySelector('meta[name=\"count\"]'); if (!metaCount) return; const count = metaCount.getAttribute('content'); const notification = this.shadowRoot?.querySelector('.expanding-action__dropdown zn-button'); if (count && notification) { notification.setAttribute('notification', count); } }, })"
10636
10660
  },
10637
10661
  {
10638
10662
  "kind": "field",
10639
10663
  "name": "_colorObserver",
10640
- "type": {
10641
- "text": "MutationObserver | undefined"
10642
- },
10643
- "privacy": "private"
10664
+ "privacy": "private",
10665
+ "readonly": true,
10666
+ "default": "new MutationController(this, { target: null, config: {subtree: true, attributes: true, attributeFilter: ['content'], childList: true}, callback: () => { const appContent = deepQuerySelectorAll('app-content', this, '')[0]; const metaColor = appContent?.shadowRoot?.querySelector('meta[name=\"color\"]'); if (!metaColor) return; const color = metaColor.getAttribute('content'); if (color) { this.color = color; } }, })"
10644
10667
  },
10645
10668
  {
10646
10669
  "kind": "method",
@@ -11876,6 +11899,15 @@
11876
11899
  "default": "''",
11877
11900
  "description": "The form groups help text. If you need to display HTML, use the `help-text` slot instead.",
11878
11901
  "attribute": "help-text"
11902
+ },
11903
+ {
11904
+ "kind": "field",
11905
+ "name": "forceCols",
11906
+ "type": {
11907
+ "text": "boolean"
11908
+ },
11909
+ "default": "false",
11910
+ "attribute": "cols"
11879
11911
  }
11880
11912
  ],
11881
11913
  "attributes": [
@@ -11905,6 +11937,14 @@
11905
11937
  "default": "''",
11906
11938
  "description": "The form groups help text. If you need to display HTML, use the `help-text` slot instead.",
11907
11939
  "fieldName": "helpText"
11940
+ },
11941
+ {
11942
+ "name": "cols",
11943
+ "type": {
11944
+ "text": "boolean"
11945
+ },
11946
+ "default": "false",
11947
+ "fieldName": "forceCols"
11908
11948
  }
11909
11949
  ],
11910
11950
  "superclass": {
@@ -12060,6 +12100,15 @@
12060
12100
  },
12061
12101
  "attribute": "previous-target"
12062
12102
  },
12103
+ {
12104
+ "kind": "field",
12105
+ "name": "hideBreadcrumb",
12106
+ "type": {
12107
+ "text": "boolean"
12108
+ },
12109
+ "default": "false",
12110
+ "attribute": "hide-breadcrumb"
12111
+ },
12063
12112
  {
12064
12113
  "kind": "field",
12065
12114
  "name": "navbar",
@@ -12166,6 +12215,14 @@
12166
12215
  "text": "string"
12167
12216
  },
12168
12217
  "fieldName": "previousTarget"
12218
+ },
12219
+ {
12220
+ "name": "hide-breadcrumb",
12221
+ "type": {
12222
+ "text": "boolean"
12223
+ },
12224
+ "default": "false",
12225
+ "fieldName": "hideBreadcrumb"
12169
12226
  }
12170
12227
  ],
12171
12228
  "superclass": {
@@ -13667,6 +13724,15 @@
13667
13724
  "description": "Enables search/filtering on select inputs.",
13668
13725
  "attribute": "search"
13669
13726
  },
13727
+ {
13728
+ "kind": "field",
13729
+ "name": "freeText",
13730
+ "type": {
13731
+ "text": "boolean"
13732
+ },
13733
+ "description": "Allows entering values that aren't in the options list on select inputs (\"free text\"). Setting this implies\n`input-type=\"select\"` (unless a data `provider` is used) and forwards the behavior to the inner `<zn-select>`.",
13734
+ "attribute": "free-text"
13735
+ },
13670
13736
  {
13671
13737
  "kind": "field",
13672
13738
  "name": "helpText",
@@ -14086,6 +14152,14 @@
14086
14152
  "description": "Enables search/filtering on select inputs.",
14087
14153
  "fieldName": "search"
14088
14154
  },
14155
+ {
14156
+ "name": "free-text",
14157
+ "type": {
14158
+ "text": "boolean"
14159
+ },
14160
+ "description": "Allows entering values that aren't in the options list on select inputs (\"free text\"). Setting this implies\n`input-type=\"select\"` (unless a data `provider` is used) and forwards the behavior to the inner `<zn-select>`.",
14161
+ "fieldName": "freeText"
14162
+ },
14089
14163
  {
14090
14164
  "name": "help-text",
14091
14165
  "type": {
@@ -15683,6 +15757,14 @@
15683
15757
  },
15684
15758
  "attribute": "no-padding"
15685
15759
  },
15760
+ {
15761
+ "kind": "field",
15762
+ "name": "flush",
15763
+ "type": {
15764
+ "text": "boolean"
15765
+ },
15766
+ "attribute": "flush"
15767
+ },
15686
15768
  {
15687
15769
  "kind": "field",
15688
15770
  "name": "alignEnd",
@@ -15799,6 +15881,13 @@
15799
15881
  },
15800
15882
  "fieldName": "noPadding"
15801
15883
  },
15884
+ {
15885
+ "name": "flush",
15886
+ "type": {
15887
+ "text": "boolean"
15888
+ },
15889
+ "fieldName": "flush"
15890
+ },
15802
15891
  {
15803
15892
  "name": "align-end",
15804
15893
  "type": {
@@ -18065,8 +18154,12 @@
18065
18154
  "name": ""
18066
18155
  },
18067
18156
  {
18068
- "description": "An example slot.",
18069
- "name": "example"
18157
+ "description": "Expanding action panels rendered alongside the navbar items.",
18158
+ "name": "expand"
18159
+ },
18160
+ {
18161
+ "description": "Content rendered below the navbar row (e.g. chips, filters).",
18162
+ "name": "bottom"
18070
18163
  }
18071
18164
  ],
18072
18165
  "members": [
@@ -18252,9 +18345,10 @@
18252
18345
  "kind": "field",
18253
18346
  "name": "_expanding",
18254
18347
  "type": {
18255
- "text": "NodeListOf<Element>"
18348
+ "text": "Element[]"
18256
18349
  },
18257
- "privacy": "private"
18350
+ "privacy": "private",
18351
+ "default": "[]"
18258
18352
  },
18259
18353
  {
18260
18354
  "kind": "field",
@@ -18267,12 +18361,10 @@
18267
18361
  },
18268
18362
  {
18269
18363
  "kind": "field",
18270
- "name": "resizeObserver",
18271
- "type": {
18272
- "text": "ResizeObserver | null"
18273
- },
18364
+ "name": "_itemsObserver",
18274
18365
  "privacy": "private",
18275
- "default": "null"
18366
+ "readonly": true,
18367
+ "default": "new MutationController(this, { target: null, config: {childList: true}, callback: () => this._updateVisibility(), })"
18276
18368
  },
18277
18369
  {
18278
18370
  "kind": "field",
@@ -18301,6 +18393,13 @@
18301
18393
  "privacy": "private",
18302
18394
  "default": "null"
18303
18395
  },
18396
+ {
18397
+ "kind": "field",
18398
+ "name": "_cloneSources",
18399
+ "privacy": "private",
18400
+ "readonly": true,
18401
+ "default": "new WeakMap<HTMLElement, HTMLElement>()"
18402
+ },
18304
18403
  {
18305
18404
  "kind": "field",
18306
18405
  "name": "_navItemsGap",
@@ -18330,13 +18429,22 @@
18330
18429
  },
18331
18430
  {
18332
18431
  "kind": "field",
18333
- "name": "_itemsObserver",
18432
+ "name": "_resizeFrame",
18334
18433
  "type": {
18335
- "text": "MutationObserver | null"
18434
+ "text": "number | null"
18336
18435
  },
18337
18436
  "privacy": "private",
18338
18437
  "default": "null"
18339
18438
  },
18439
+ {
18440
+ "kind": "field",
18441
+ "name": "_resizeController",
18442
+ "type": {
18443
+ "text": "ResizeController"
18444
+ },
18445
+ "privacy": "private",
18446
+ "default": "new ResizeController(this, { callback: () => this._scheduleResize(), })"
18447
+ },
18340
18448
  {
18341
18449
  "kind": "field",
18342
18450
  "name": "_store",
@@ -18357,15 +18465,163 @@
18357
18465
  }
18358
18466
  ]
18359
18467
  },
18468
+ {
18469
+ "kind": "method",
18470
+ "name": "addExpandingAction",
18471
+ "parameters": [
18472
+ {
18473
+ "name": "action",
18474
+ "type": {
18475
+ "text": "Element"
18476
+ }
18477
+ }
18478
+ ]
18479
+ },
18480
+ {
18481
+ "kind": "field",
18482
+ "name": "_expandingActionObserver",
18483
+ "privacy": "private",
18484
+ "readonly": true,
18485
+ "default": "new MutationController(this, { target: null, config: {attributes: true, attributeFilter: ['open', 'method', 'basis']}, callback: () => this._scheduleResize(), })"
18486
+ },
18487
+ {
18488
+ "kind": "field",
18489
+ "name": "_scheduleResize",
18490
+ "privacy": "private"
18491
+ },
18492
+ {
18493
+ "kind": "method",
18494
+ "name": "_observeExpandingAction",
18495
+ "privacy": "private",
18496
+ "parameters": [
18497
+ {
18498
+ "name": "action",
18499
+ "type": {
18500
+ "text": "Element"
18501
+ }
18502
+ }
18503
+ ]
18504
+ },
18505
+ {
18506
+ "kind": "method",
18507
+ "name": "_adoptNewLightItems",
18508
+ "privacy": "private",
18509
+ "parameters": [
18510
+ {
18511
+ "name": "mutations",
18512
+ "type": {
18513
+ "text": "MutationRecord[]"
18514
+ }
18515
+ }
18516
+ ]
18517
+ },
18360
18518
  {
18361
18519
  "kind": "field",
18362
18520
  "name": "_updateVisibility",
18363
18521
  "privacy": "private"
18364
18522
  },
18523
+ {
18524
+ "kind": "method",
18525
+ "name": "itemCount",
18526
+ "return": {
18527
+ "type": {
18528
+ "text": "number"
18529
+ }
18530
+ }
18531
+ },
18532
+ {
18533
+ "kind": "method",
18534
+ "name": "_resolveAvailableWidth",
18535
+ "privacy": "private",
18536
+ "return": {
18537
+ "type": {
18538
+ "text": "number"
18539
+ }
18540
+ }
18541
+ },
18542
+ {
18543
+ "kind": "method",
18544
+ "name": "_measureTotalItemWidth",
18545
+ "privacy": "private",
18546
+ "return": {
18547
+ "type": {
18548
+ "text": "number"
18549
+ }
18550
+ }
18551
+ },
18552
+ {
18553
+ "kind": "method",
18554
+ "name": "_getItemWidth",
18555
+ "privacy": "private",
18556
+ "return": {
18557
+ "type": {
18558
+ "text": "number"
18559
+ }
18560
+ },
18561
+ "parameters": [
18562
+ {
18563
+ "name": "item",
18564
+ "type": {
18565
+ "text": "HTMLElement"
18566
+ }
18567
+ }
18568
+ ]
18569
+ },
18570
+ {
18571
+ "kind": "method",
18572
+ "name": "_getHorizontalSpacing",
18573
+ "privacy": "private",
18574
+ "return": {
18575
+ "type": {
18576
+ "text": "number"
18577
+ }
18578
+ },
18579
+ "parameters": [
18580
+ {
18581
+ "name": "element",
18582
+ "type": {
18583
+ "text": "HTMLElement"
18584
+ }
18585
+ }
18586
+ ]
18587
+ },
18588
+ {
18589
+ "kind": "method",
18590
+ "name": "_getMoreItemWidth",
18591
+ "privacy": "private",
18592
+ "return": {
18593
+ "type": {
18594
+ "text": "number"
18595
+ }
18596
+ }
18597
+ },
18598
+ {
18599
+ "kind": "method",
18600
+ "name": "_getExpandableWidth",
18601
+ "privacy": "private",
18602
+ "return": {
18603
+ "type": {
18604
+ "text": "number"
18605
+ }
18606
+ },
18607
+ "parameters": [
18608
+ {
18609
+ "name": "containerWidth",
18610
+ "type": {
18611
+ "text": "number"
18612
+ }
18613
+ }
18614
+ ]
18615
+ },
18365
18616
  {
18366
18617
  "kind": "field",
18367
18618
  "name": "handleResize"
18368
18619
  },
18620
+ {
18621
+ "kind": "field",
18622
+ "name": "_syncExtendedActive",
18623
+ "privacy": "private"
18624
+ },
18369
18625
  {
18370
18626
  "kind": "method",
18371
18627
  "name": "addItem",
@@ -18557,7 +18813,7 @@
18557
18813
  "tagNameWithoutPrefix": "navbar",
18558
18814
  "tagName": "zn-navbar",
18559
18815
  "customElement": true,
18560
- "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/navbar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-dropdown\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
18816
+ "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/navbar\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-dropdown\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot expand - Expanding action panels rendered alongside the navbar items.\n * @slot bottom - Content rendered below the navbar row (e.g. chips, filters).\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
18561
18817
  "documentation": "https://zinc.style/components/navbar",
18562
18818
  "status": "experimental",
18563
18819
  "since": "1.0",
@@ -18928,313 +19184,1820 @@
18928
19184
  "kind": "field",
18929
19185
  "name": "multiple",
18930
19186
  "type": {
18931
- "text": "boolean"
19187
+ "text": "boolean"
19188
+ },
19189
+ "privacy": "public",
19190
+ "default": "false"
19191
+ },
19192
+ {
19193
+ "kind": "field",
19194
+ "name": "defaultSlot",
19195
+ "type": {
19196
+ "text": "HTMLSlotElement"
19197
+ }
19198
+ },
19199
+ {
19200
+ "kind": "field",
19201
+ "name": "current",
19202
+ "type": {
19203
+ "text": "boolean"
19204
+ },
19205
+ "default": "false"
19206
+ },
19207
+ {
19208
+ "kind": "field",
19209
+ "name": "hasHover",
19210
+ "type": {
19211
+ "text": "boolean"
19212
+ },
19213
+ "default": "false"
19214
+ },
19215
+ {
19216
+ "kind": "field",
19217
+ "name": "value",
19218
+ "type": {
19219
+ "text": "string"
19220
+ },
19221
+ "default": "''",
19222
+ "description": "The option's value. When selected, the containing form control will receive this value. The value must be unique\nfrom other options in the same group. Values may contain spaces when using JSON array syntax on the parent select.",
19223
+ "attribute": "value",
19224
+ "reflects": true
19225
+ },
19226
+ {
19227
+ "kind": "field",
19228
+ "name": "disabled",
19229
+ "type": {
19230
+ "text": "boolean"
19231
+ },
19232
+ "default": "false",
19233
+ "description": "Draws the option in a disabled state, preventing selection.",
19234
+ "attribute": "disabled",
19235
+ "reflects": true
19236
+ },
19237
+ {
19238
+ "kind": "field",
19239
+ "name": "selected",
19240
+ "type": {
19241
+ "text": "boolean"
19242
+ },
19243
+ "default": "false",
19244
+ "attribute": "selected",
19245
+ "reflects": true
19246
+ },
19247
+ {
19248
+ "kind": "method",
19249
+ "name": "handleDefaultSlotChange",
19250
+ "privacy": "private"
19251
+ },
19252
+ {
19253
+ "kind": "method",
19254
+ "name": "handleMouseEnter",
19255
+ "privacy": "private"
19256
+ },
19257
+ {
19258
+ "kind": "method",
19259
+ "name": "handleMouseLeave",
19260
+ "privacy": "private"
19261
+ },
19262
+ {
19263
+ "kind": "method",
19264
+ "name": "handleDisabledChange"
19265
+ },
19266
+ {
19267
+ "kind": "method",
19268
+ "name": "handleSelectedChange"
19269
+ },
19270
+ {
19271
+ "kind": "method",
19272
+ "name": "getTextLabel",
19273
+ "description": "Returns a plain text label based on the option's content."
19274
+ }
19275
+ ],
19276
+ "attributes": [
19277
+ {
19278
+ "name": "value",
19279
+ "type": {
19280
+ "text": "string"
19281
+ },
19282
+ "default": "''",
19283
+ "description": "The option's value. When selected, the containing form control will receive this value. The value must be unique\nfrom other options in the same group. Values may contain spaces when using JSON array syntax on the parent select.",
19284
+ "fieldName": "value"
19285
+ },
19286
+ {
19287
+ "name": "disabled",
19288
+ "type": {
19289
+ "text": "boolean"
19290
+ },
19291
+ "default": "false",
19292
+ "description": "Draws the option in a disabled state, preventing selection.",
19293
+ "fieldName": "disabled"
19294
+ },
19295
+ {
19296
+ "name": "selected",
19297
+ "type": {
19298
+ "text": "boolean"
19299
+ },
19300
+ "default": "false",
19301
+ "fieldName": "selected"
19302
+ }
19303
+ ],
19304
+ "superclass": {
19305
+ "name": "ZincElement",
19306
+ "module": "/src/internal/zinc-element"
19307
+ },
19308
+ "summary": "Short summary of the component's intended use.",
19309
+ "tagNameWithoutPrefix": "option",
19310
+ "tagName": "zn-option",
19311
+ "customElement": true,
19312
+ "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/option\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-icon\n *\n * @slot - The option's label.\n * @slot prefix - Used to prepend an icon or similar element to the menu item.\n * @slot suffix - Used to append an icon or similar element to the menu item.\n *\n * @csspart checked-option-icon - The checked option icon, an `<zn-icon>` element.\n * @csspart base - The component's base wrapper.\n * @csspart label - The option's label.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart suffix - The container that wraps the suffix.\n */",
19313
+ "documentation": "https://zinc.style/components/option",
19314
+ "status": "experimental",
19315
+ "since": "1.0",
19316
+ "dependencies": [
19317
+ "zn-icon"
19318
+ ]
19319
+ }
19320
+ ],
19321
+ "exports": [
19322
+ {
19323
+ "kind": "js",
19324
+ "name": "default",
19325
+ "declaration": {
19326
+ "name": "ZnOption",
19327
+ "module": "components/option/option.js"
19328
+ }
19329
+ }
19330
+ ]
19331
+ },
19332
+ {
19333
+ "kind": "javascript-module",
19334
+ "path": "components/order-table/order-table.js",
19335
+ "declarations": [
19336
+ {
19337
+ "kind": "class",
19338
+ "description": "",
19339
+ "name": "ZnOrderTable",
19340
+ "cssProperties": [
19341
+ {
19342
+ "description": "An example CSS custom property.",
19343
+ "name": "--example"
19344
+ }
19345
+ ],
19346
+ "cssParts": [
19347
+ {
19348
+ "description": "The component's base wrapper.",
19349
+ "name": "base"
19350
+ }
19351
+ ],
19352
+ "slots": [
19353
+ {
19354
+ "description": "The default slot.",
19355
+ "name": ""
19356
+ },
19357
+ {
19358
+ "description": "An example slot.",
19359
+ "name": "example"
19360
+ }
19361
+ ],
19362
+ "members": [
19363
+ {
19364
+ "kind": "field",
19365
+ "name": "data",
19366
+ "type": {
19367
+ "text": "OrderTableData"
19368
+ },
19369
+ "attribute": "data",
19370
+ "reflects": true
19371
+ },
19372
+ {
19373
+ "kind": "field",
19374
+ "name": "isMobile",
19375
+ "type": {
19376
+ "text": "boolean"
19377
+ },
19378
+ "privacy": "private",
19379
+ "default": "false"
19380
+ },
19381
+ {
19382
+ "kind": "field",
19383
+ "name": "modifiedData",
19384
+ "type": {
19385
+ "text": "OrderTableData"
19386
+ },
19387
+ "privacy": "private"
19388
+ },
19389
+ {
19390
+ "kind": "field",
19391
+ "name": "resizeEventHandler"
19392
+ },
19393
+ {
19394
+ "kind": "method",
19395
+ "name": "getHeaders"
19396
+ },
19397
+ {
19398
+ "kind": "method",
19399
+ "name": "getRows"
19400
+ },
19401
+ {
19402
+ "kind": "method",
19403
+ "name": "getCaption",
19404
+ "parameters": [
19405
+ {
19406
+ "name": "item",
19407
+ "type": {
19408
+ "text": "any"
19409
+ }
19410
+ }
19411
+ ]
19412
+ },
19413
+ {
19414
+ "kind": "method",
19415
+ "name": "getSubItems",
19416
+ "parameters": [
19417
+ {
19418
+ "name": "item",
19419
+ "type": {
19420
+ "text": "any"
19421
+ }
19422
+ }
19423
+ ]
19424
+ },
19425
+ {
19426
+ "kind": "method",
19427
+ "name": "getSummary"
19428
+ },
19429
+ {
19430
+ "kind": "method",
19431
+ "name": "getMobileRows",
19432
+ "privacy": "private"
19433
+ },
19434
+ {
19435
+ "kind": "method",
19436
+ "name": "getMobileSubItems",
19437
+ "parameters": [
19438
+ {
19439
+ "name": "item",
19440
+ "type": {
19441
+ "text": "any"
19442
+ }
19443
+ }
19444
+ ]
19445
+ },
19446
+ {
19447
+ "kind": "method",
19448
+ "name": "getMobileCaption",
19449
+ "parameters": [
19450
+ {
19451
+ "name": "item",
19452
+ "type": {
19453
+ "text": "any"
19454
+ }
19455
+ },
19456
+ {
19457
+ "name": "extra",
19458
+ "type": {
19459
+ "text": "any"
19460
+ }
19461
+ }
19462
+ ]
19463
+ }
19464
+ ],
19465
+ "events": [
19466
+ {
19467
+ "description": "Emitted as an example.",
19468
+ "name": "zn-event-name"
19469
+ }
19470
+ ],
19471
+ "attributes": [
19472
+ {
19473
+ "name": "data",
19474
+ "type": {
19475
+ "text": "OrderTableData"
19476
+ },
19477
+ "fieldName": "data"
19478
+ }
19479
+ ],
19480
+ "superclass": {
19481
+ "name": "ZincElement",
19482
+ "module": "/src/internal/zinc-element"
19483
+ },
19484
+ "summary": "Short summary of the component's intended use.",
19485
+ "tagNameWithoutPrefix": "order-table",
19486
+ "tagName": "zn-order-table",
19487
+ "customElement": true,
19488
+ "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/order-table\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
19489
+ "documentation": "https://zinc.style/components/order-table",
19490
+ "status": "experimental",
19491
+ "since": "1.0",
19492
+ "dependencies": [
19493
+ "zn-example"
19494
+ ]
19495
+ }
19496
+ ],
19497
+ "exports": [
19498
+ {
19499
+ "kind": "js",
19500
+ "name": "default",
19501
+ "declaration": {
19502
+ "name": "ZnOrderTable",
19503
+ "module": "components/order-table/order-table.js"
19504
+ }
19505
+ }
19506
+ ]
19507
+ },
19508
+ {
19509
+ "kind": "javascript-module",
19510
+ "path": "components/page/page.js",
19511
+ "declarations": [
19512
+ {
19513
+ "kind": "class",
19514
+ "description": "",
19515
+ "name": "ZnPage",
19516
+ "slots": [
19517
+ {
19518
+ "description": "Page content. Use zn-tab for named tabs and header-action/header-actions for header actions.",
19519
+ "name": "",
19520
+ "inheritedFrom": {
19521
+ "name": "ZnTabs",
19522
+ "module": "src/components/tabs/tabs.component.ts"
19523
+ }
19524
+ },
19525
+ {
19526
+ "description": "Content rendered below the navbar row (e.g. chips, filters). Forwarded to the navbar's bottom slot.",
19527
+ "name": "bottom"
19528
+ },
19529
+ {
19530
+ "description": "An example slot.",
19531
+ "name": "example",
19532
+ "inheritedFrom": {
19533
+ "name": "ZnTabs",
19534
+ "module": "src/components/tabs/tabs.component.ts"
19535
+ }
19536
+ }
19537
+ ],
19538
+ "members": [
19539
+ {
19540
+ "kind": "field",
19541
+ "name": "dependencies",
19542
+ "type": {
19543
+ "text": "object"
19544
+ },
19545
+ "static": true,
19546
+ "default": "{ 'zn-button': ZnButton, 'zn-copy-button': ZnCopyButton, 'zn-expanding-action': ZnExpandingAction, 'zn-icon': ZnIcon, 'zn-navbar': ZnNavbar, 'zn-tab': ZnTab }"
19547
+ },
19548
+ {
19549
+ "kind": "field",
19550
+ "name": "pageSlotController",
19551
+ "privacy": "private",
19552
+ "readonly": true,
19553
+ "default": "new HasSlotController(this, 'breadcrumb', 'actions', 'caption')"
19554
+ },
19555
+ {
19556
+ "kind": "field",
19557
+ "name": "caption",
19558
+ "type": {
19559
+ "text": "string"
19560
+ },
19561
+ "attribute": "caption",
19562
+ "inheritedFrom": {
19563
+ "name": "ZnTabs",
19564
+ "module": "components/tabs/tabs.js"
19565
+ }
19566
+ },
19567
+ {
19568
+ "kind": "field",
19569
+ "name": "entityId",
19570
+ "type": {
19571
+ "text": "string"
19572
+ },
19573
+ "attribute": "entity-id"
19574
+ },
19575
+ {
19576
+ "kind": "field",
19577
+ "name": "entityIdShow",
19578
+ "type": {
19579
+ "text": "boolean"
19580
+ },
19581
+ "attribute": "entity-id-show"
19582
+ },
19583
+ {
19584
+ "kind": "field",
19585
+ "name": "fullLocation",
19586
+ "type": {
19587
+ "text": "string"
19588
+ },
19589
+ "attribute": "full-location"
19590
+ },
19591
+ {
19592
+ "kind": "field",
19593
+ "name": "modal",
19594
+ "type": {
19595
+ "text": "boolean"
19596
+ },
19597
+ "default": "false",
19598
+ "attribute": "modal",
19599
+ "reflects": true
19600
+ },
19601
+ {
19602
+ "kind": "field",
19603
+ "name": "nested",
19604
+ "type": {
19605
+ "text": "boolean"
19606
+ },
19607
+ "default": "false",
19608
+ "attribute": "nested",
19609
+ "reflects": true
19610
+ },
19611
+ {
19612
+ "kind": "field",
19613
+ "name": "primary",
19614
+ "type": {
19615
+ "text": "boolean"
19616
+ },
19617
+ "default": "false",
19618
+ "attribute": "primary",
19619
+ "reflects": true
19620
+ },
19621
+ {
19622
+ "kind": "field",
19623
+ "name": "previousPath",
19624
+ "type": {
19625
+ "text": "string"
19626
+ },
19627
+ "attribute": "previous-path"
19628
+ },
19629
+ {
19630
+ "kind": "field",
19631
+ "name": "previousTarget",
19632
+ "type": {
19633
+ "text": "string"
19634
+ },
19635
+ "attribute": "previous-target"
19636
+ },
19637
+ {
19638
+ "kind": "field",
19639
+ "name": "summary",
19640
+ "type": {
19641
+ "text": "string"
19642
+ },
19643
+ "attribute": "summary"
19644
+ },
19645
+ {
19646
+ "kind": "field",
19647
+ "name": "scrolled",
19648
+ "type": {
19649
+ "text": "boolean"
19650
+ },
19651
+ "privacy": "private",
19652
+ "default": "false"
19653
+ },
19654
+ {
19655
+ "kind": "field",
19656
+ "name": "tabDefinitions",
19657
+ "type": {
19658
+ "text": "TabDefinition[]"
19659
+ },
19660
+ "privacy": "private",
19661
+ "default": "[]"
19662
+ },
19663
+ {
19664
+ "kind": "field",
19665
+ "name": "hasExpandingActions",
19666
+ "type": {
19667
+ "text": "boolean"
19668
+ },
19669
+ "privacy": "private",
19670
+ "default": "false"
19671
+ },
19672
+ {
19673
+ "kind": "field",
19674
+ "name": "actionObserver",
19675
+ "type": {
19676
+ "text": "MutationObserver | null"
19677
+ },
19678
+ "privacy": "private",
19679
+ "default": "null"
19680
+ },
19681
+ {
19682
+ "kind": "field",
19683
+ "name": "tabObserver",
19684
+ "type": {
19685
+ "text": "MutationObserver | null"
19686
+ },
19687
+ "privacy": "private",
19688
+ "default": "null"
19689
+ },
19690
+ {
19691
+ "kind": "field",
19692
+ "name": "handleAltPress",
19693
+ "privacy": "private"
19694
+ },
19695
+ {
19696
+ "kind": "field",
19697
+ "name": "handleAltUp",
19698
+ "privacy": "private"
19699
+ },
19700
+ {
19701
+ "kind": "field",
19702
+ "name": "_registerTabs",
19703
+ "inheritedFrom": {
19704
+ "name": "ZnTabs",
19705
+ "module": "components/tabs/tabs.js"
19706
+ }
19707
+ },
19708
+ {
19709
+ "kind": "method",
19710
+ "name": "getOwnExpandingActions",
19711
+ "privacy": "private"
19712
+ },
19713
+ {
19714
+ "kind": "method",
19715
+ "name": "getNavbar",
19716
+ "privacy": "private"
19717
+ },
19718
+ {
19719
+ "kind": "method",
19720
+ "name": "refreshExpandingActionsState",
19721
+ "privacy": "private"
19722
+ },
19723
+ {
19724
+ "kind": "method",
19725
+ "name": "syncExpandingActionsToNavbar",
19726
+ "privacy": "private"
19727
+ },
19728
+ {
19729
+ "kind": "method",
19730
+ "name": "prepareTabs",
19731
+ "privacy": "private"
19732
+ },
19733
+ {
19734
+ "kind": "method",
19735
+ "name": "parsePriority",
19736
+ "privacy": "private",
19737
+ "return": {
19738
+ "type": {
19739
+ "text": "number | null"
19740
+ }
19741
+ },
19742
+ "parameters": [
19743
+ {
19744
+ "name": "value",
19745
+ "type": {
19746
+ "text": "string | null"
19747
+ }
19748
+ }
19749
+ ]
19750
+ },
19751
+ {
19752
+ "kind": "method",
19753
+ "name": "compareTabs",
19754
+ "privacy": "private",
19755
+ "return": {
19756
+ "type": {
19757
+ "text": "number"
19758
+ }
19759
+ },
19760
+ "parameters": [
19761
+ {
19762
+ "name": "a",
19763
+ "type": {
19764
+ "text": "TabDefinition"
19765
+ }
19766
+ },
19767
+ {
19768
+ "name": "b",
19769
+ "type": {
19770
+ "text": "TabDefinition"
19771
+ }
19772
+ }
19773
+ ]
19774
+ },
19775
+ {
19776
+ "kind": "method",
19777
+ "name": "captionToId",
19778
+ "privacy": "private",
19779
+ "return": {
19780
+ "type": {
19781
+ "text": "string"
19782
+ }
19783
+ },
19784
+ "parameters": [
19785
+ {
19786
+ "name": "caption",
19787
+ "type": {
19788
+ "text": "string"
19789
+ }
19790
+ }
19791
+ ]
19792
+ },
19793
+ {
19794
+ "kind": "method",
19795
+ "name": "uniqueId",
19796
+ "privacy": "private",
19797
+ "return": {
19798
+ "type": {
19799
+ "text": "string"
19800
+ }
19801
+ },
19802
+ "parameters": [
19803
+ {
19804
+ "name": "id",
19805
+ "type": {
19806
+ "text": "string"
19807
+ }
19808
+ },
19809
+ {
19810
+ "name": "usedIds",
19811
+ "type": {
19812
+ "text": "Set<string>"
19813
+ }
19814
+ }
19815
+ ]
19816
+ },
19817
+ {
19818
+ "kind": "method",
19819
+ "name": "handlePageScroll",
19820
+ "privacy": "private",
19821
+ "parameters": [
19822
+ {
19823
+ "name": "event",
19824
+ "type": {
19825
+ "text": "Event"
19826
+ }
19827
+ }
19828
+ ]
19829
+ },
19830
+ {
19831
+ "kind": "method",
19832
+ "name": "handleNavigationSelect",
19833
+ "privacy": "private",
19834
+ "parameters": [
19835
+ {
19836
+ "name": "event",
19837
+ "type": {
19838
+ "text": "ZnSelectEvent"
19839
+ }
19840
+ }
19841
+ ]
19842
+ },
19843
+ {
19844
+ "kind": "method",
19845
+ "name": "activateTab",
19846
+ "privacy": "private",
19847
+ "parameters": [
19848
+ {
19849
+ "name": "tabId",
19850
+ "type": {
19851
+ "text": "string"
19852
+ }
19853
+ },
19854
+ {
19855
+ "name": "store",
19856
+ "type": {
19857
+ "text": "boolean"
19858
+ }
19859
+ }
19860
+ ]
19861
+ },
19862
+ {
19863
+ "kind": "method",
19864
+ "name": "activateInitialPageTab",
19865
+ "privacy": "private"
19866
+ },
19867
+ {
19868
+ "kind": "method",
19869
+ "name": "registerPagePanels",
19870
+ "privacy": "private"
19871
+ },
19872
+ {
19873
+ "kind": "method",
19874
+ "name": "registerPageNavigationTabs",
19875
+ "privacy": "private"
19876
+ },
19877
+ {
19878
+ "kind": "method",
19879
+ "name": "syncNavigationActive",
19880
+ "privacy": "private",
19881
+ "parameters": [
19882
+ {
19883
+ "name": "activeItem",
19884
+ "type": {
19885
+ "text": "HTMLElement"
19886
+ }
19887
+ }
19888
+ ]
19889
+ },
19890
+ {
19891
+ "kind": "field",
19892
+ "name": "masterId",
19893
+ "type": {
19894
+ "text": "string"
19895
+ },
19896
+ "attribute": "master-id",
19897
+ "reflects": true,
19898
+ "inheritedFrom": {
19899
+ "name": "ZnTabs",
19900
+ "module": "components/tabs/tabs.js"
19901
+ }
19902
+ },
19903
+ {
19904
+ "kind": "field",
19905
+ "name": "defaultUri",
19906
+ "type": {
19907
+ "text": "string"
19908
+ },
19909
+ "default": "''",
19910
+ "attribute": "default-uri",
19911
+ "reflects": true,
19912
+ "inheritedFrom": {
19913
+ "name": "ZnTabs",
19914
+ "module": "components/tabs/tabs.js"
19915
+ }
19916
+ },
19917
+ {
19918
+ "kind": "field",
19919
+ "name": "_current",
19920
+ "type": {
19921
+ "text": "string"
19922
+ },
19923
+ "default": "''",
19924
+ "attribute": "active",
19925
+ "reflects": true,
19926
+ "inheritedFrom": {
19927
+ "name": "ZnTabs",
19928
+ "module": "components/tabs/tabs.js"
19929
+ }
19930
+ },
19931
+ {
19932
+ "kind": "field",
19933
+ "name": "_split",
19934
+ "type": {
19935
+ "text": "number"
19936
+ },
19937
+ "attribute": "split",
19938
+ "reflects": true,
19939
+ "inheritedFrom": {
19940
+ "name": "ZnTabs",
19941
+ "module": "components/tabs/tabs.js"
19942
+ }
19943
+ },
19944
+ {
19945
+ "kind": "field",
19946
+ "name": "_splitMin",
19947
+ "type": {
19948
+ "text": "number"
19949
+ },
19950
+ "default": "60",
19951
+ "attribute": "split-min",
19952
+ "reflects": true,
19953
+ "inheritedFrom": {
19954
+ "name": "ZnTabs",
19955
+ "module": "components/tabs/tabs.js"
19956
+ }
19957
+ },
19958
+ {
19959
+ "kind": "field",
19960
+ "name": "_splitMinSecondary",
19961
+ "type": {
19962
+ "text": "number"
19963
+ },
19964
+ "attribute": "split-min-secondary",
19965
+ "reflects": true,
19966
+ "inheritedFrom": {
19967
+ "name": "ZnTabs",
19968
+ "module": "components/tabs/tabs.js"
19969
+ }
19970
+ },
19971
+ {
19972
+ "kind": "field",
19973
+ "name": "_splitMax",
19974
+ "type": {
19975
+ "text": "number"
19976
+ },
19977
+ "attribute": "split-max",
19978
+ "reflects": true,
19979
+ "inheritedFrom": {
19980
+ "name": "ZnTabs",
19981
+ "module": "components/tabs/tabs.js"
19982
+ }
19983
+ },
19984
+ {
19985
+ "kind": "field",
19986
+ "name": "primaryCaption",
19987
+ "type": {
19988
+ "text": "string"
19989
+ },
19990
+ "default": "'Navigation'",
19991
+ "attribute": "primary-caption",
19992
+ "reflects": true,
19993
+ "inheritedFrom": {
19994
+ "name": "ZnTabs",
19995
+ "module": "components/tabs/tabs.js"
19996
+ }
19997
+ },
19998
+ {
19999
+ "kind": "field",
20000
+ "name": "secondaryCaption",
20001
+ "type": {
20002
+ "text": "string"
20003
+ },
20004
+ "default": "'Content'",
20005
+ "attribute": "secondary-caption",
20006
+ "reflects": true,
20007
+ "inheritedFrom": {
20008
+ "name": "ZnTabs",
20009
+ "module": "components/tabs/tabs.js"
20010
+ }
20011
+ },
20012
+ {
20013
+ "kind": "field",
20014
+ "name": "noPrefetch",
20015
+ "type": {
20016
+ "text": "boolean"
20017
+ },
20018
+ "default": "false",
20019
+ "attribute": "no-prefetch",
20020
+ "reflects": true,
20021
+ "inheritedFrom": {
20022
+ "name": "ZnTabs",
20023
+ "module": "components/tabs/tabs.js"
20024
+ }
20025
+ },
20026
+ {
20027
+ "kind": "field",
20028
+ "name": "noCache",
20029
+ "type": {
20030
+ "text": "boolean"
20031
+ },
20032
+ "default": "false",
20033
+ "attribute": "no-cache",
20034
+ "reflects": true,
20035
+ "inheritedFrom": {
20036
+ "name": "ZnTabs",
20037
+ "module": "components/tabs/tabs.js"
20038
+ }
20039
+ },
20040
+ {
20041
+ "kind": "field",
20042
+ "name": "localStorage",
20043
+ "type": {
20044
+ "text": "boolean"
20045
+ },
20046
+ "attribute": "local-storage",
20047
+ "reflects": true,
20048
+ "inheritedFrom": {
20049
+ "name": "ZnTabs",
20050
+ "module": "components/tabs/tabs.js"
20051
+ }
20052
+ },
20053
+ {
20054
+ "kind": "field",
20055
+ "name": "storeKey",
20056
+ "type": {
20057
+ "text": "string"
20058
+ },
20059
+ "attribute": "store-key",
20060
+ "inheritedFrom": {
20061
+ "name": "ZnTabs",
20062
+ "module": "components/tabs/tabs.js"
20063
+ }
20064
+ },
20065
+ {
20066
+ "kind": "field",
20067
+ "name": "storeTtl",
20068
+ "type": {
20069
+ "text": "number"
20070
+ },
20071
+ "default": "0",
20072
+ "attribute": "store-ttl",
20073
+ "reflects": true,
20074
+ "inheritedFrom": {
20075
+ "name": "ZnTabs",
20076
+ "module": "components/tabs/tabs.js"
20077
+ }
20078
+ },
20079
+ {
20080
+ "kind": "field",
20081
+ "name": "padded",
20082
+ "type": {
20083
+ "text": "boolean"
20084
+ },
20085
+ "default": "false",
20086
+ "attribute": "padded",
20087
+ "reflects": true,
20088
+ "inheritedFrom": {
20089
+ "name": "ZnTabs",
20090
+ "module": "components/tabs/tabs.js"
20091
+ }
20092
+ },
20093
+ {
20094
+ "kind": "field",
20095
+ "name": "fetchStyle",
20096
+ "type": {
20097
+ "text": "string"
20098
+ },
20099
+ "default": "\"\"",
20100
+ "attribute": "fetch-style",
20101
+ "reflects": true,
20102
+ "inheritedFrom": {
20103
+ "name": "ZnTabs",
20104
+ "module": "components/tabs/tabs.js"
20105
+ }
20106
+ },
20107
+ {
20108
+ "kind": "field",
20109
+ "name": "fullWidth",
20110
+ "type": {
20111
+ "text": "boolean"
20112
+ },
20113
+ "default": "false",
20114
+ "attribute": "full-width",
20115
+ "reflects": true,
20116
+ "inheritedFrom": {
20117
+ "name": "ZnTabs",
20118
+ "module": "components/tabs/tabs.js"
20119
+ }
20120
+ },
20121
+ {
20122
+ "kind": "field",
20123
+ "name": "paddedRight",
20124
+ "type": {
20125
+ "text": "boolean"
20126
+ },
20127
+ "default": "false",
20128
+ "attribute": "padded-right",
20129
+ "reflects": true,
20130
+ "inheritedFrom": {
20131
+ "name": "ZnTabs",
20132
+ "module": "components/tabs/tabs.js"
20133
+ }
20134
+ },
20135
+ {
20136
+ "kind": "field",
20137
+ "name": "monitor",
20138
+ "type": {
20139
+ "text": "string"
20140
+ },
20141
+ "attribute": "monitor",
20142
+ "inheritedFrom": {
20143
+ "name": "ZnTabs",
20144
+ "module": "components/tabs/tabs.js"
20145
+ }
20146
+ },
20147
+ {
20148
+ "kind": "field",
20149
+ "name": "description",
20150
+ "type": {
20151
+ "text": "string"
20152
+ },
20153
+ "attribute": "description",
20154
+ "inheritedFrom": {
20155
+ "name": "ZnTabs",
20156
+ "module": "components/tabs/tabs.js"
20157
+ }
20158
+ },
20159
+ {
20160
+ "kind": "field",
20161
+ "name": "preload",
20162
+ "type": {
20163
+ "text": "boolean"
20164
+ },
20165
+ "privacy": "protected",
20166
+ "default": "true",
20167
+ "inheritedFrom": {
20168
+ "name": "ZnTabs",
20169
+ "module": "components/tabs/tabs.js"
20170
+ }
20171
+ },
20172
+ {
20173
+ "kind": "field",
20174
+ "name": "_store",
20175
+ "type": {
20176
+ "text": "Store"
20177
+ },
20178
+ "privacy": "protected",
20179
+ "inheritedFrom": {
20180
+ "name": "ZnTabs",
20181
+ "module": "components/tabs/tabs.js"
20182
+ }
20183
+ },
20184
+ {
20185
+ "kind": "field",
20186
+ "name": "_activeClicks",
20187
+ "type": {
20188
+ "text": "number"
20189
+ },
20190
+ "privacy": "protected",
20191
+ "default": "0",
20192
+ "inheritedFrom": {
20193
+ "name": "ZnTabs",
20194
+ "module": "components/tabs/tabs.js"
20195
+ }
20196
+ },
20197
+ {
20198
+ "kind": "field",
20199
+ "name": "_panel",
20200
+ "type": {
20201
+ "text": "Element | null | undefined"
20202
+ },
20203
+ "privacy": "private",
20204
+ "inheritedFrom": {
20205
+ "name": "ZnTabs",
20206
+ "module": "components/tabs/tabs.js"
20207
+ }
20208
+ },
20209
+ {
20210
+ "kind": "field",
20211
+ "name": "_panels",
20212
+ "type": {
20213
+ "text": "Map<string, Element[]>"
20214
+ },
20215
+ "privacy": "private",
20216
+ "default": "new Map<string, Element[]>()",
20217
+ "inheritedFrom": {
20218
+ "name": "ZnTabs",
20219
+ "module": "components/tabs/tabs.js"
20220
+ }
20221
+ },
20222
+ {
20223
+ "kind": "field",
20224
+ "name": "_activeTab",
20225
+ "type": {
20226
+ "text": "Element | null"
20227
+ },
20228
+ "privacy": "private",
20229
+ "default": "null",
20230
+ "inheritedFrom": {
20231
+ "name": "ZnTabs",
20232
+ "module": "components/tabs/tabs.js"
20233
+ }
20234
+ },
20235
+ {
20236
+ "kind": "field",
20237
+ "name": "_tabs",
20238
+ "type": {
20239
+ "text": "HTMLElement[]"
20240
+ },
20241
+ "privacy": "private",
20242
+ "default": "[]",
20243
+ "inheritedFrom": {
20244
+ "name": "ZnTabs",
20245
+ "module": "components/tabs/tabs.js"
20246
+ }
20247
+ },
20248
+ {
20249
+ "kind": "field",
20250
+ "name": "_actions",
20251
+ "type": {
20252
+ "text": "HTMLElement[]"
20253
+ },
20254
+ "privacy": "private",
20255
+ "default": "[]",
20256
+ "inheritedFrom": {
20257
+ "name": "ZnTabs",
20258
+ "module": "components/tabs/tabs.js"
20259
+ }
20260
+ },
20261
+ {
20262
+ "kind": "field",
20263
+ "name": "_knownUri",
20264
+ "type": {
20265
+ "text": "Map<string, string>"
20266
+ },
20267
+ "privacy": "private",
20268
+ "default": "new Map<string, string>()",
20269
+ "inheritedFrom": {
20270
+ "name": "ZnTabs",
20271
+ "module": "components/tabs/tabs.js"
20272
+ }
20273
+ },
20274
+ {
20275
+ "kind": "field",
20276
+ "name": "hasSlotController",
20277
+ "privacy": "private",
20278
+ "readonly": true,
20279
+ "default": "new HasSlotController(this, '[default]', 'bottom', 'right', 'left', 'top', 'actions')",
20280
+ "inheritedFrom": {
20281
+ "name": "ZnTabs",
20282
+ "module": "components/tabs/tabs.js"
20283
+ }
20284
+ },
20285
+ {
20286
+ "kind": "field",
20287
+ "name": "_domObserver",
20288
+ "privacy": "private",
20289
+ "readonly": true,
20290
+ "default": "new MutationController(this, { target: null, config: { childList: true, subtree: true }, callback: mutations => { mutations.forEach(mutation => { if (mutation.type !== 'childList') return; if (mutation.addedNodes.length > 0) { this._registerTabs(); } if (mutation.removedNodes.length > 0) { mutation.removedNodes.forEach(node => { const id = node instanceof HTMLElement ? node.id : ''; if (id) this.removeTabAndPanel(id); }); } }); }, })",
20291
+ "inheritedFrom": {
20292
+ "name": "ZnTabs",
20293
+ "module": "components/tabs/tabs.js"
20294
+ }
20295
+ },
20296
+ {
20297
+ "kind": "field",
20298
+ "name": "_monitorObserver",
20299
+ "privacy": "private",
20300
+ "readonly": true,
20301
+ "default": "new MutationController(this, { target: null, config: { childList: true, subtree: true }, callback: mutations => { mutations.forEach(mutation => { if (mutation.type !== 'childList') return; mutation.addedNodes.forEach(node => { if (node instanceof HTMLElement && node.id === this.monitor) { this.reRegisterTabs(); const storedValue = this._store.get(this.storeKey); if (storedValue !== null) { this._prepareTab(storedValue); this.setActiveTab(storedValue, false, false); } } }); }); }, })",
20302
+ "inheritedFrom": {
20303
+ "name": "ZnTabs",
20304
+ "module": "components/tabs/tabs.js"
20305
+ }
20306
+ },
20307
+ {
20308
+ "kind": "method",
20309
+ "name": "monitorDom",
20310
+ "inheritedFrom": {
20311
+ "name": "ZnTabs",
20312
+ "module": "components/tabs/tabs.js"
20313
+ }
20314
+ },
20315
+ {
20316
+ "kind": "method",
20317
+ "name": "_addPanel",
20318
+ "parameters": [
20319
+ {
20320
+ "name": "panel",
20321
+ "type": {
20322
+ "text": "HTMLElement"
20323
+ }
20324
+ }
20325
+ ],
20326
+ "inheritedFrom": {
20327
+ "name": "ZnTabs",
20328
+ "module": "components/tabs/tabs.js"
20329
+ }
20330
+ },
20331
+ {
20332
+ "kind": "method",
20333
+ "name": "_addTab",
20334
+ "parameters": [
20335
+ {
20336
+ "name": "tab",
20337
+ "type": {
20338
+ "text": "HTMLElement"
20339
+ }
20340
+ }
20341
+ ],
20342
+ "inheritedFrom": {
20343
+ "name": "ZnTabs",
20344
+ "module": "components/tabs/tabs.js"
20345
+ }
20346
+ },
20347
+ {
20348
+ "kind": "field",
20349
+ "name": "reRegisterTabs",
20350
+ "inheritedFrom": {
20351
+ "name": "ZnTabs",
20352
+ "module": "components/tabs/tabs.js"
20353
+ }
20354
+ },
20355
+ {
20356
+ "kind": "method",
20357
+ "name": "switchTab",
20358
+ "parameters": [
20359
+ {
20360
+ "name": "inc",
20361
+ "type": {
20362
+ "text": "number"
20363
+ }
20364
+ }
20365
+ ],
20366
+ "inheritedFrom": {
20367
+ "name": "ZnTabs",
20368
+ "module": "components/tabs/tabs.js"
20369
+ }
20370
+ },
20371
+ {
20372
+ "kind": "method",
20373
+ "name": "nextTab",
20374
+ "inheritedFrom": {
20375
+ "name": "ZnTabs",
20376
+ "module": "components/tabs/tabs.js"
20377
+ }
20378
+ },
20379
+ {
20380
+ "kind": "method",
20381
+ "name": "previousTab",
20382
+ "inheritedFrom": {
20383
+ "name": "ZnTabs",
20384
+ "module": "components/tabs/tabs.js"
20385
+ }
20386
+ },
20387
+ {
20388
+ "kind": "method",
20389
+ "name": "_prepareTab",
20390
+ "parameters": [
20391
+ {
20392
+ "name": "tabId",
20393
+ "type": {
20394
+ "text": "string"
20395
+ }
20396
+ }
20397
+ ],
20398
+ "inheritedFrom": {
20399
+ "name": "ZnTabs",
20400
+ "module": "components/tabs/tabs.js"
20401
+ }
20402
+ },
20403
+ {
20404
+ "kind": "method",
20405
+ "name": "_uriToId",
20406
+ "return": {
20407
+ "type": {
20408
+ "text": "string"
20409
+ }
20410
+ },
20411
+ "parameters": [
20412
+ {
20413
+ "name": "tabUri",
20414
+ "type": {
20415
+ "text": "string"
20416
+ }
20417
+ }
20418
+ ],
20419
+ "inheritedFrom": {
20420
+ "name": "ZnTabs",
20421
+ "module": "components/tabs/tabs.js"
20422
+ }
20423
+ },
20424
+ {
20425
+ "kind": "method",
20426
+ "name": "_createUriPanel",
20427
+ "return": {
20428
+ "type": {
20429
+ "text": "HTMLDivElement"
20430
+ }
20431
+ },
20432
+ "parameters": [
20433
+ {
20434
+ "name": "tabEle",
20435
+ "type": {
20436
+ "text": "Element"
20437
+ }
20438
+ },
20439
+ {
20440
+ "name": "tabUri",
20441
+ "type": {
20442
+ "text": "string"
20443
+ }
20444
+ },
20445
+ {
20446
+ "name": "tabId",
20447
+ "type": {
20448
+ "text": "string"
20449
+ }
20450
+ }
20451
+ ],
20452
+ "inheritedFrom": {
20453
+ "name": "ZnTabs",
20454
+ "module": "components/tabs/tabs.js"
20455
+ }
20456
+ },
20457
+ {
20458
+ "kind": "method",
20459
+ "name": "_handleClick",
20460
+ "parameters": [
20461
+ {
20462
+ "name": "event",
20463
+ "type": {
20464
+ "text": "PointerEvent"
20465
+ }
20466
+ }
20467
+ ],
20468
+ "inheritedFrom": {
20469
+ "name": "ZnTabs",
20470
+ "module": "components/tabs/tabs.js"
20471
+ }
20472
+ },
20473
+ {
20474
+ "kind": "method",
20475
+ "name": "fetchUriTab",
20476
+ "parameters": [
20477
+ {
20478
+ "name": "target",
20479
+ "type": {
20480
+ "text": "HTMLElement"
20481
+ }
20482
+ }
20483
+ ],
20484
+ "inheritedFrom": {
20485
+ "name": "ZnTabs",
20486
+ "module": "components/tabs/tabs.js"
20487
+ }
20488
+ },
20489
+ {
20490
+ "kind": "method",
20491
+ "name": "clickTab",
20492
+ "parameters": [
20493
+ {
20494
+ "name": "target",
20495
+ "type": {
20496
+ "text": "HTMLElement"
20497
+ }
20498
+ },
20499
+ {
20500
+ "name": "refresh",
20501
+ "type": {
20502
+ "text": "boolean"
20503
+ }
20504
+ }
20505
+ ],
20506
+ "inheritedFrom": {
20507
+ "name": "ZnTabs",
20508
+ "module": "components/tabs/tabs.js"
20509
+ }
20510
+ },
20511
+ {
20512
+ "kind": "method",
20513
+ "name": "getRefTab",
20514
+ "parameters": [
20515
+ {
20516
+ "name": "target",
20517
+ "type": {
20518
+ "text": "HTMLElement"
20519
+ }
20520
+ }
20521
+ ],
20522
+ "inheritedFrom": {
20523
+ "name": "ZnTabs",
20524
+ "module": "components/tabs/tabs.js"
20525
+ }
20526
+ },
20527
+ {
20528
+ "kind": "method",
20529
+ "name": "setActiveTab",
20530
+ "parameters": [
20531
+ {
20532
+ "name": "tabName",
20533
+ "type": {
20534
+ "text": "string"
20535
+ }
20536
+ },
20537
+ {
20538
+ "name": "store",
20539
+ "type": {
20540
+ "text": "boolean"
20541
+ }
20542
+ },
20543
+ {
20544
+ "name": "refresh",
20545
+ "type": {
20546
+ "text": "boolean"
20547
+ }
20548
+ },
20549
+ {
20550
+ "name": "refTab",
20551
+ "default": "null",
20552
+ "type": {
20553
+ "text": "string | null"
20554
+ }
20555
+ }
20556
+ ],
20557
+ "inheritedFrom": {
20558
+ "name": "ZnTabs",
20559
+ "module": "components/tabs/tabs.js"
20560
+ }
20561
+ },
20562
+ {
20563
+ "kind": "method",
20564
+ "name": "_setTabEleActive",
20565
+ "parameters": [
20566
+ {
20567
+ "name": "ele",
20568
+ "type": {
20569
+ "text": "Element"
20570
+ }
20571
+ },
20572
+ {
20573
+ "name": "active",
20574
+ "type": {
20575
+ "text": "boolean"
20576
+ }
20577
+ }
20578
+ ],
20579
+ "inheritedFrom": {
20580
+ "name": "ZnTabs",
20581
+ "module": "components/tabs/tabs.js"
20582
+ }
20583
+ },
20584
+ {
20585
+ "kind": "method",
20586
+ "name": "selectTab",
20587
+ "return": {
20588
+ "type": {
20589
+ "text": "boolean"
20590
+ }
20591
+ },
20592
+ "parameters": [
20593
+ {
20594
+ "name": "tabName",
20595
+ "type": {
20596
+ "text": "string"
20597
+ }
20598
+ },
20599
+ {
20600
+ "name": "refresh",
20601
+ "type": {
20602
+ "text": "boolean"
20603
+ }
20604
+ }
20605
+ ],
20606
+ "inheritedFrom": {
20607
+ "name": "ZnTabs",
20608
+ "module": "components/tabs/tabs.js"
20609
+ }
20610
+ },
20611
+ {
20612
+ "kind": "method",
20613
+ "name": "getActiveTab",
20614
+ "return": {
20615
+ "type": {
20616
+ "text": "Element[]"
20617
+ }
20618
+ },
20619
+ "inheritedFrom": {
20620
+ "name": "ZnTabs",
20621
+ "module": "components/tabs/tabs.js"
20622
+ }
20623
+ },
20624
+ {
20625
+ "kind": "method",
20626
+ "name": "observerDom",
20627
+ "inheritedFrom": {
20628
+ "name": "ZnTabs",
20629
+ "module": "components/tabs/tabs.js"
20630
+ }
20631
+ },
20632
+ {
20633
+ "kind": "method",
20634
+ "name": "removeTabAndPanel",
20635
+ "parameters": [
20636
+ {
20637
+ "name": "tabId",
20638
+ "type": {
20639
+ "text": "string"
20640
+ }
20641
+ }
20642
+ ],
20643
+ "inheritedFrom": {
20644
+ "name": "ZnTabs",
20645
+ "module": "components/tabs/tabs.js"
20646
+ }
20647
+ }
20648
+ ],
20649
+ "attributes": [
20650
+ {
20651
+ "name": "caption",
20652
+ "type": {
20653
+ "text": "string"
20654
+ },
20655
+ "fieldName": "caption",
20656
+ "inheritedFrom": {
20657
+ "name": "ZnTabs",
20658
+ "module": "src/components/tabs/tabs.component.ts"
20659
+ }
20660
+ },
20661
+ {
20662
+ "name": "entity-id",
20663
+ "type": {
20664
+ "text": "string"
20665
+ },
20666
+ "fieldName": "entityId"
20667
+ },
20668
+ {
20669
+ "name": "entity-id-show",
20670
+ "type": {
20671
+ "text": "boolean"
20672
+ },
20673
+ "fieldName": "entityIdShow"
20674
+ },
20675
+ {
20676
+ "name": "full-location",
20677
+ "type": {
20678
+ "text": "string"
20679
+ },
20680
+ "fieldName": "fullLocation"
20681
+ },
20682
+ {
20683
+ "name": "modal",
20684
+ "type": {
20685
+ "text": "boolean"
20686
+ },
20687
+ "default": "false",
20688
+ "fieldName": "modal"
20689
+ },
20690
+ {
20691
+ "name": "nested",
20692
+ "type": {
20693
+ "text": "boolean"
20694
+ },
20695
+ "default": "false",
20696
+ "fieldName": "nested"
20697
+ },
20698
+ {
20699
+ "name": "primary",
20700
+ "type": {
20701
+ "text": "boolean"
20702
+ },
20703
+ "default": "false",
20704
+ "fieldName": "primary"
20705
+ },
20706
+ {
20707
+ "name": "previous-path",
20708
+ "type": {
20709
+ "text": "string"
20710
+ },
20711
+ "fieldName": "previousPath"
20712
+ },
20713
+ {
20714
+ "name": "previous-target",
20715
+ "type": {
20716
+ "text": "string"
20717
+ },
20718
+ "fieldName": "previousTarget"
20719
+ },
20720
+ {
20721
+ "name": "summary",
20722
+ "type": {
20723
+ "text": "string"
20724
+ },
20725
+ "fieldName": "summary"
20726
+ },
20727
+ {
20728
+ "name": "master-id",
20729
+ "type": {
20730
+ "text": "string"
20731
+ },
20732
+ "fieldName": "masterId",
20733
+ "inheritedFrom": {
20734
+ "name": "ZnTabs",
20735
+ "module": "src/components/tabs/tabs.component.ts"
20736
+ }
20737
+ },
20738
+ {
20739
+ "name": "default-uri",
20740
+ "type": {
20741
+ "text": "string"
20742
+ },
20743
+ "default": "''",
20744
+ "fieldName": "defaultUri",
20745
+ "inheritedFrom": {
20746
+ "name": "ZnTabs",
20747
+ "module": "src/components/tabs/tabs.component.ts"
20748
+ }
20749
+ },
20750
+ {
20751
+ "name": "active",
20752
+ "type": {
20753
+ "text": "string"
20754
+ },
20755
+ "default": "''",
20756
+ "fieldName": "_current",
20757
+ "inheritedFrom": {
20758
+ "name": "ZnTabs",
20759
+ "module": "src/components/tabs/tabs.component.ts"
20760
+ }
20761
+ },
20762
+ {
20763
+ "name": "split",
20764
+ "type": {
20765
+ "text": "number"
20766
+ },
20767
+ "fieldName": "_split",
20768
+ "inheritedFrom": {
20769
+ "name": "ZnTabs",
20770
+ "module": "src/components/tabs/tabs.component.ts"
20771
+ }
20772
+ },
20773
+ {
20774
+ "name": "split-min",
20775
+ "type": {
20776
+ "text": "number"
20777
+ },
20778
+ "default": "60",
20779
+ "fieldName": "_splitMin",
20780
+ "inheritedFrom": {
20781
+ "name": "ZnTabs",
20782
+ "module": "src/components/tabs/tabs.component.ts"
20783
+ }
20784
+ },
20785
+ {
20786
+ "name": "split-min-secondary",
20787
+ "type": {
20788
+ "text": "number"
20789
+ },
20790
+ "fieldName": "_splitMinSecondary",
20791
+ "inheritedFrom": {
20792
+ "name": "ZnTabs",
20793
+ "module": "src/components/tabs/tabs.component.ts"
20794
+ }
20795
+ },
20796
+ {
20797
+ "name": "split-max",
20798
+ "type": {
20799
+ "text": "number"
20800
+ },
20801
+ "fieldName": "_splitMax",
20802
+ "inheritedFrom": {
20803
+ "name": "ZnTabs",
20804
+ "module": "src/components/tabs/tabs.component.ts"
20805
+ }
20806
+ },
20807
+ {
20808
+ "name": "primary-caption",
20809
+ "type": {
20810
+ "text": "string"
20811
+ },
20812
+ "default": "'Navigation'",
20813
+ "fieldName": "primaryCaption",
20814
+ "inheritedFrom": {
20815
+ "name": "ZnTabs",
20816
+ "module": "src/components/tabs/tabs.component.ts"
20817
+ }
20818
+ },
20819
+ {
20820
+ "name": "secondary-caption",
20821
+ "type": {
20822
+ "text": "string"
18932
20823
  },
18933
- "privacy": "public",
18934
- "default": "false"
20824
+ "default": "'Content'",
20825
+ "fieldName": "secondaryCaption",
20826
+ "inheritedFrom": {
20827
+ "name": "ZnTabs",
20828
+ "module": "src/components/tabs/tabs.component.ts"
20829
+ }
18935
20830
  },
18936
20831
  {
18937
- "kind": "field",
18938
- "name": "defaultSlot",
20832
+ "name": "no-prefetch",
18939
20833
  "type": {
18940
- "text": "HTMLSlotElement"
20834
+ "text": "boolean"
20835
+ },
20836
+ "default": "false",
20837
+ "fieldName": "noPrefetch",
20838
+ "inheritedFrom": {
20839
+ "name": "ZnTabs",
20840
+ "module": "src/components/tabs/tabs.component.ts"
18941
20841
  }
18942
20842
  },
18943
20843
  {
18944
- "kind": "field",
18945
- "name": "current",
20844
+ "name": "no-cache",
18946
20845
  "type": {
18947
20846
  "text": "boolean"
18948
20847
  },
18949
- "default": "false"
20848
+ "default": "false",
20849
+ "fieldName": "noCache",
20850
+ "inheritedFrom": {
20851
+ "name": "ZnTabs",
20852
+ "module": "src/components/tabs/tabs.component.ts"
20853
+ }
18950
20854
  },
18951
20855
  {
18952
- "kind": "field",
18953
- "name": "hasHover",
20856
+ "name": "local-storage",
18954
20857
  "type": {
18955
20858
  "text": "boolean"
18956
20859
  },
18957
- "default": "false"
20860
+ "fieldName": "localStorage",
20861
+ "inheritedFrom": {
20862
+ "name": "ZnTabs",
20863
+ "module": "src/components/tabs/tabs.component.ts"
20864
+ }
18958
20865
  },
18959
20866
  {
18960
- "kind": "field",
18961
- "name": "value",
20867
+ "name": "store-key",
18962
20868
  "type": {
18963
20869
  "text": "string"
18964
20870
  },
18965
- "default": "''",
18966
- "description": "The option's value. When selected, the containing form control will receive this value. The value must be unique\nfrom other options in the same group. Values may contain spaces when using JSON array syntax on the parent select.",
18967
- "attribute": "value",
18968
- "reflects": true
20871
+ "fieldName": "storeKey",
20872
+ "inheritedFrom": {
20873
+ "name": "ZnTabs",
20874
+ "module": "src/components/tabs/tabs.component.ts"
20875
+ }
18969
20876
  },
18970
20877
  {
18971
- "kind": "field",
18972
- "name": "disabled",
20878
+ "name": "store-ttl",
18973
20879
  "type": {
18974
- "text": "boolean"
20880
+ "text": "number"
18975
20881
  },
18976
- "default": "false",
18977
- "description": "Draws the option in a disabled state, preventing selection.",
18978
- "attribute": "disabled",
18979
- "reflects": true
20882
+ "default": "0",
20883
+ "fieldName": "storeTtl",
20884
+ "inheritedFrom": {
20885
+ "name": "ZnTabs",
20886
+ "module": "src/components/tabs/tabs.component.ts"
20887
+ }
18980
20888
  },
18981
20889
  {
18982
- "kind": "field",
18983
- "name": "selected",
20890
+ "name": "padded",
18984
20891
  "type": {
18985
20892
  "text": "boolean"
18986
20893
  },
18987
20894
  "default": "false",
18988
- "attribute": "selected",
18989
- "reflects": true
18990
- },
18991
- {
18992
- "kind": "method",
18993
- "name": "handleDefaultSlotChange",
18994
- "privacy": "private"
18995
- },
18996
- {
18997
- "kind": "method",
18998
- "name": "handleMouseEnter",
18999
- "privacy": "private"
19000
- },
19001
- {
19002
- "kind": "method",
19003
- "name": "handleMouseLeave",
19004
- "privacy": "private"
19005
- },
19006
- {
19007
- "kind": "method",
19008
- "name": "handleDisabledChange"
19009
- },
19010
- {
19011
- "kind": "method",
19012
- "name": "handleSelectedChange"
20895
+ "fieldName": "padded",
20896
+ "inheritedFrom": {
20897
+ "name": "ZnTabs",
20898
+ "module": "src/components/tabs/tabs.component.ts"
20899
+ }
19013
20900
  },
19014
20901
  {
19015
- "kind": "method",
19016
- "name": "getTextLabel",
19017
- "description": "Returns a plain text label based on the option's content."
19018
- }
19019
- ],
19020
- "attributes": [
19021
- {
19022
- "name": "value",
20902
+ "name": "fetch-style",
19023
20903
  "type": {
19024
20904
  "text": "string"
19025
20905
  },
19026
- "default": "''",
19027
- "description": "The option's value. When selected, the containing form control will receive this value. The value must be unique\nfrom other options in the same group. Values may contain spaces when using JSON array syntax on the parent select.",
19028
- "fieldName": "value"
20906
+ "default": "\"\"",
20907
+ "fieldName": "fetchStyle",
20908
+ "inheritedFrom": {
20909
+ "name": "ZnTabs",
20910
+ "module": "src/components/tabs/tabs.component.ts"
20911
+ }
19029
20912
  },
19030
20913
  {
19031
- "name": "disabled",
20914
+ "name": "full-width",
19032
20915
  "type": {
19033
20916
  "text": "boolean"
19034
20917
  },
19035
20918
  "default": "false",
19036
- "description": "Draws the option in a disabled state, preventing selection.",
19037
- "fieldName": "disabled"
20919
+ "fieldName": "fullWidth",
20920
+ "inheritedFrom": {
20921
+ "name": "ZnTabs",
20922
+ "module": "src/components/tabs/tabs.component.ts"
20923
+ }
19038
20924
  },
19039
20925
  {
19040
- "name": "selected",
20926
+ "name": "padded-right",
19041
20927
  "type": {
19042
20928
  "text": "boolean"
19043
20929
  },
19044
20930
  "default": "false",
19045
- "fieldName": "selected"
20931
+ "fieldName": "paddedRight",
20932
+ "inheritedFrom": {
20933
+ "name": "ZnTabs",
20934
+ "module": "src/components/tabs/tabs.component.ts"
20935
+ }
20936
+ },
20937
+ {
20938
+ "name": "monitor",
20939
+ "type": {
20940
+ "text": "string"
20941
+ },
20942
+ "fieldName": "monitor",
20943
+ "inheritedFrom": {
20944
+ "name": "ZnTabs",
20945
+ "module": "src/components/tabs/tabs.component.ts"
20946
+ }
20947
+ },
20948
+ {
20949
+ "name": "description",
20950
+ "type": {
20951
+ "text": "string"
20952
+ },
20953
+ "fieldName": "description",
20954
+ "inheritedFrom": {
20955
+ "name": "ZnTabs",
20956
+ "module": "src/components/tabs/tabs.component.ts"
20957
+ }
19046
20958
  }
19047
20959
  ],
19048
20960
  "superclass": {
19049
- "name": "ZincElement",
19050
- "module": "/src/internal/zinc-element"
20961
+ "name": "ZnTabs",
20962
+ "module": "/src/components/tabs"
19051
20963
  },
19052
- "summary": "Short summary of the component's intended use.",
19053
- "tagNameWithoutPrefix": "option",
19054
- "tagName": "zn-option",
20964
+ "summary": "Combines a page header with tab navigation and tab panels.",
20965
+ "tagNameWithoutPrefix": "page",
20966
+ "tagName": "zn-page",
19055
20967
  "customElement": true,
19056
- "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/option\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-icon\n *\n * @slot - The option's label.\n * @slot prefix - Used to prepend an icon or similar element to the menu item.\n * @slot suffix - Used to append an icon or similar element to the menu item.\n *\n * @csspart checked-option-icon - The checked option icon, an `<zn-icon>` element.\n * @csspart base - The component's base wrapper.\n * @csspart label - The option's label.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart suffix - The container that wraps the suffix.\n */",
19057
- "documentation": "https://zinc.style/components/option",
20968
+ "jsDoc": "/**\n * @summary Combines a page header with tab navigation and tab panels.\n * @documentation https://zinc.style/components/page\n * @status experimental\n * @since 1.0\n *\n * @slot - Page content. Use zn-tab for named tabs and header-action/header-actions for header actions.\n * @slot bottom - Content rendered below the navbar row (e.g. chips, filters). Forwarded to the navbar's bottom slot.\n */",
20969
+ "documentation": "https://zinc.style/components/page",
19058
20970
  "status": "experimental",
19059
20971
  "since": "1.0",
19060
- "dependencies": [
19061
- "zn-icon"
19062
- ]
19063
- }
19064
- ],
19065
- "exports": [
19066
- {
19067
- "kind": "js",
19068
- "name": "default",
19069
- "declaration": {
19070
- "name": "ZnOption",
19071
- "module": "components/option/option.js"
19072
- }
19073
- }
19074
- ]
19075
- },
19076
- {
19077
- "kind": "javascript-module",
19078
- "path": "components/order-table/order-table.js",
19079
- "declarations": [
19080
- {
19081
- "kind": "class",
19082
- "description": "",
19083
- "name": "ZnOrderTable",
19084
- "cssProperties": [
19085
- {
19086
- "description": "An example CSS custom property.",
19087
- "name": "--example"
19088
- }
19089
- ],
19090
20972
  "cssParts": [
19091
20973
  {
19092
20974
  "description": "The component's base wrapper.",
19093
- "name": "base"
19094
- }
19095
- ],
19096
- "slots": [
19097
- {
19098
- "description": "The default slot.",
19099
- "name": ""
19100
- },
19101
- {
19102
- "description": "An example slot.",
19103
- "name": "example"
20975
+ "name": "base",
20976
+ "inheritedFrom": {
20977
+ "name": "ZnTabs",
20978
+ "module": "src/components/tabs/tabs.component.ts"
20979
+ }
19104
20980
  }
19105
20981
  ],
19106
- "members": [
19107
- {
19108
- "kind": "field",
19109
- "name": "data",
19110
- "type": {
19111
- "text": "OrderTableData"
19112
- },
19113
- "attribute": "data",
19114
- "reflects": true
19115
- },
19116
- {
19117
- "kind": "field",
19118
- "name": "isMobile",
19119
- "type": {
19120
- "text": "boolean"
19121
- },
19122
- "privacy": "private",
19123
- "default": "false"
19124
- },
19125
- {
19126
- "kind": "field",
19127
- "name": "modifiedData",
19128
- "type": {
19129
- "text": "OrderTableData"
19130
- },
19131
- "privacy": "private"
19132
- },
19133
- {
19134
- "kind": "field",
19135
- "name": "resizeEventHandler"
19136
- },
19137
- {
19138
- "kind": "method",
19139
- "name": "getHeaders"
19140
- },
19141
- {
19142
- "kind": "method",
19143
- "name": "getRows"
19144
- },
19145
- {
19146
- "kind": "method",
19147
- "name": "getCaption",
19148
- "parameters": [
19149
- {
19150
- "name": "item",
19151
- "type": {
19152
- "text": "any"
19153
- }
19154
- }
19155
- ]
19156
- },
19157
- {
19158
- "kind": "method",
19159
- "name": "getSubItems",
19160
- "parameters": [
19161
- {
19162
- "name": "item",
19163
- "type": {
19164
- "text": "any"
19165
- }
19166
- }
19167
- ]
19168
- },
19169
- {
19170
- "kind": "method",
19171
- "name": "getSummary"
19172
- },
19173
- {
19174
- "kind": "method",
19175
- "name": "getMobileRows",
19176
- "privacy": "private"
19177
- },
19178
- {
19179
- "kind": "method",
19180
- "name": "getMobileSubItems",
19181
- "parameters": [
19182
- {
19183
- "name": "item",
19184
- "type": {
19185
- "text": "any"
19186
- }
19187
- }
19188
- ]
19189
- },
20982
+ "cssProperties": [
19190
20983
  {
19191
- "kind": "method",
19192
- "name": "getMobileCaption",
19193
- "parameters": [
19194
- {
19195
- "name": "item",
19196
- "type": {
19197
- "text": "any"
19198
- }
19199
- },
19200
- {
19201
- "name": "extra",
19202
- "type": {
19203
- "text": "any"
19204
- }
19205
- }
19206
- ]
20984
+ "description": "An example CSS custom property.",
20985
+ "name": "--example",
20986
+ "inheritedFrom": {
20987
+ "name": "ZnTabs",
20988
+ "module": "src/components/tabs/tabs.component.ts"
20989
+ }
19207
20990
  }
19208
20991
  ],
19209
20992
  "events": [
19210
20993
  {
19211
20994
  "description": "Emitted as an example.",
19212
- "name": "zn-event-name"
19213
- }
19214
- ],
19215
- "attributes": [
19216
- {
19217
- "name": "data",
19218
- "type": {
19219
- "text": "OrderTableData"
19220
- },
19221
- "fieldName": "data"
20995
+ "name": "zn-event-name",
20996
+ "inheritedFrom": {
20997
+ "name": "ZnTabs",
20998
+ "module": "src/components/tabs/tabs.component.ts"
20999
+ }
19222
21000
  }
19223
- ],
19224
- "superclass": {
19225
- "name": "ZincElement",
19226
- "module": "/src/internal/zinc-element"
19227
- },
19228
- "summary": "Short summary of the component's intended use.",
19229
- "tagNameWithoutPrefix": "order-table",
19230
- "tagName": "zn-order-table",
19231
- "customElement": true,
19232
- "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://zinc.style/components/order-table\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-example\n *\n * @event zn-event-name - Emitted as an example.\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
19233
- "documentation": "https://zinc.style/components/order-table",
19234
- "status": "experimental",
19235
- "since": "1.0",
19236
- "dependencies": [
19237
- "zn-example"
19238
21001
  ]
19239
21002
  }
19240
21003
  ],
@@ -19243,8 +21006,8 @@
19243
21006
  "kind": "js",
19244
21007
  "name": "default",
19245
21008
  "declaration": {
19246
- "name": "ZnOrderTable",
19247
- "module": "components/order-table/order-table.js"
21009
+ "name": "ZnPage",
21010
+ "module": "components/page/page.js"
19248
21011
  }
19249
21012
  }
19250
21013
  ]
@@ -19444,6 +21207,19 @@
19444
21207
  "module": "components/tabs/tabs.js"
19445
21208
  }
19446
21209
  },
21210
+ {
21211
+ "kind": "field",
21212
+ "name": "_splitMinSecondary",
21213
+ "type": {
21214
+ "text": "number"
21215
+ },
21216
+ "attribute": "split-min-secondary",
21217
+ "reflects": true,
21218
+ "inheritedFrom": {
21219
+ "name": "ZnTabs",
21220
+ "module": "components/tabs/tabs.js"
21221
+ }
21222
+ },
19447
21223
  {
19448
21224
  "kind": "field",
19449
21225
  "name": "_splitMax",
@@ -19770,6 +21546,28 @@
19770
21546
  "module": "components/tabs/tabs.js"
19771
21547
  }
19772
21548
  },
21549
+ {
21550
+ "kind": "field",
21551
+ "name": "_domObserver",
21552
+ "privacy": "private",
21553
+ "readonly": true,
21554
+ "default": "new MutationController(this, { target: null, config: { childList: true, subtree: true }, callback: mutations => { mutations.forEach(mutation => { if (mutation.type !== 'childList') return; if (mutation.addedNodes.length > 0) { this._registerTabs(); } if (mutation.removedNodes.length > 0) { mutation.removedNodes.forEach(node => { const id = node instanceof HTMLElement ? node.id : ''; if (id) this.removeTabAndPanel(id); }); } }); }, })",
21555
+ "inheritedFrom": {
21556
+ "name": "ZnTabs",
21557
+ "module": "components/tabs/tabs.js"
21558
+ }
21559
+ },
21560
+ {
21561
+ "kind": "field",
21562
+ "name": "_monitorObserver",
21563
+ "privacy": "private",
21564
+ "readonly": true,
21565
+ "default": "new MutationController(this, { target: null, config: { childList: true, subtree: true }, callback: mutations => { mutations.forEach(mutation => { if (mutation.type !== 'childList') return; mutation.addedNodes.forEach(node => { if (node instanceof HTMLElement && node.id === this.monitor) { this.reRegisterTabs(); const storedValue = this._store.get(this.storeKey); if (storedValue !== null) { this._prepareTab(storedValue); this.setActiveTab(storedValue, false, false); } } }); }); }, })",
21566
+ "inheritedFrom": {
21567
+ "name": "ZnTabs",
21568
+ "module": "components/tabs/tabs.js"
21569
+ }
21570
+ },
19773
21571
  {
19774
21572
  "kind": "method",
19775
21573
  "name": "monitorDom",
@@ -20139,6 +21937,17 @@
20139
21937
  "module": "src/components/tabs/tabs.component.ts"
20140
21938
  }
20141
21939
  },
21940
+ {
21941
+ "name": "split-min-secondary",
21942
+ "type": {
21943
+ "text": "number"
21944
+ },
21945
+ "fieldName": "_splitMinSecondary",
21946
+ "inheritedFrom": {
21947
+ "name": "ZnTabs",
21948
+ "module": "src/components/tabs/tabs.component.ts"
21949
+ }
21950
+ },
20142
21951
  {
20143
21952
  "name": "split-max",
20144
21953
  "type": {
@@ -20517,9 +22326,10 @@
20517
22326
  "kind": "field",
20518
22327
  "name": "_header",
20519
22328
  "type": {
20520
- "text": "HTMLElement"
22329
+ "text": "HTMLElement | null"
20521
22330
  },
20522
- "privacy": "protected"
22331
+ "privacy": "protected",
22332
+ "default": "null"
20523
22333
  }
20524
22334
  ],
20525
22335
  "events": [
@@ -22038,7 +23848,7 @@
22038
23848
  },
22039
23849
  {
22040
23850
  "description": "The color of the progress bar fill.",
22041
- "name": "--zn-primary"
23851
+ "name": "--zn-progress-bar-color"
22042
23852
  },
22043
23853
  {
22044
23854
  "description": "The color of the caption text.",
@@ -22097,6 +23907,16 @@
22097
23907
  "attribute": "caption",
22098
23908
  "reflects": true
22099
23909
  },
23910
+ {
23911
+ "kind": "field",
23912
+ "name": "color",
23913
+ "type": {
23914
+ "text": "ProgressBarColor"
23915
+ },
23916
+ "default": "'current'",
23917
+ "attribute": "color",
23918
+ "reflects": true
23919
+ },
22100
23920
  {
22101
23921
  "kind": "field",
22102
23922
  "name": "description",
@@ -22133,6 +23953,14 @@
22133
23953
  },
22134
23954
  "fieldName": "caption"
22135
23955
  },
23956
+ {
23957
+ "name": "color",
23958
+ "type": {
23959
+ "text": "ProgressBarColor"
23960
+ },
23961
+ "default": "'current'",
23962
+ "fieldName": "color"
23963
+ },
22136
23964
  {
22137
23965
  "name": "description",
22138
23966
  "type": {
@@ -22163,7 +23991,7 @@
22163
23991
  "tagNameWithoutPrefix": "progress-bar",
22164
23992
  "tagName": "zn-progress-bar",
22165
23993
  "customElement": true,
22166
- "jsDoc": "/**\n * @summary Progress bars provide visual feedback about the completion status of a task or process.\n * @documentation https://zinc.style/components/progress-bar\n * @status experimental\n * @since 1.0\n *\n * @csspart header - The header container that contains the caption and progress text.\n * @csspart caption - The caption text element.\n * @csspart progress - The progress percentage text element.\n * @csspart bar - The SVG element containing the progress bar.\n * @csspart track - The background track of the progress bar.\n * @csspart fill - The filled portion of the progress bar indicating progress.\n * @csspart footer - The footer container that contains the description.\n * @csspart info - The description text element.\n *\n * @cssproperty --zn-border-color - The color of the progress bar background track.\n * @cssproperty --zn-primary - The color of the progress bar fill.\n * @cssproperty --zn-text-heading - The color of the caption text.\n * @cssproperty --zn-text - The color of the progress percentage and description text.\n * @cssproperty --zn-spacing-x-small - The spacing between header/footer and the progress bar.\n */",
23994
+ "jsDoc": "/**\n * @summary Progress bars provide visual feedback about the completion status of a task or process.\n * @documentation https://zinc.style/components/progress-bar\n * @status experimental\n * @since 1.0\n *\n * @csspart header - The header container that contains the caption and progress text.\n * @csspart caption - The caption text element.\n * @csspart progress - The progress percentage text element.\n * @csspart bar - The SVG element containing the progress bar.\n * @csspart track - The background track of the progress bar.\n * @csspart fill - The filled portion of the progress bar indicating progress.\n * @csspart footer - The footer container that contains the description.\n * @csspart info - The description text element.\n *\n * @cssproperty --zn-border-color - The color of the progress bar background track.\n * @cssproperty --zn-progress-bar-color - The color of the progress bar fill.\n * @cssproperty --zn-text-heading - The color of the caption text.\n * @cssproperty --zn-text - The color of the progress percentage and description text.\n * @cssproperty --zn-spacing-x-small - The spacing between header/footer and the progress bar.\n */",
22167
23995
  "documentation": "https://zinc.style/components/progress-bar",
22168
23996
  "status": "experimental",
22169
23997
  "since": "1.0"
@@ -24652,10 +26480,16 @@
24652
26480
  {
24653
26481
  "kind": "field",
24654
26482
  "name": "_footerResizeObserver",
24655
- "type": {
24656
- "text": "ResizeObserver | undefined"
24657
- },
24658
- "privacy": "private"
26483
+ "privacy": "private",
26484
+ "readonly": true,
26485
+ "default": "new ResizeController(this, { target: null, callback: () => { this.style.setProperty('--zn-scroll-footer-height', `${this.footer?.clientHeight ?? 0}px`); }, })"
26486
+ },
26487
+ {
26488
+ "kind": "field",
26489
+ "name": "_domObserver",
26490
+ "privacy": "private",
26491
+ "readonly": true,
26492
+ "default": "new MutationController(this, { target: null, config: {childList: true, subtree: true}, callback: () => { setTimeout(() => this.scrollEnd(), 100); if (this.footer) { this.style.setProperty('--zn-scroll-footer-height', `${this.footer.clientHeight}px`); this._footerResizeObserver.observe(this.footer); } }, })"
24659
26493
  }
24660
26494
  ],
24661
26495
  "events": [
@@ -25132,6 +26966,17 @@
25132
26966
  "attribute": "search",
25133
26967
  "reflects": true
25134
26968
  },
26969
+ {
26970
+ "kind": "field",
26971
+ "name": "freeText",
26972
+ "type": {
26973
+ "text": "boolean"
26974
+ },
26975
+ "default": "false",
26976
+ "description": "Allows the user to enter values that are not in the options list (\"free text\"). Implies the editable,\nfiltering input behavior of `search`. A typed value that doesn't match an existing option is committed\nby pressing Enter, clicking the \"Add\" row, or blurring the field, and becomes a selected option — a tag\nwhen `multiple` is enabled. The committed value is both the option's value and its label.",
26977
+ "attribute": "free-text",
26978
+ "reflects": true
26979
+ },
25135
26980
  {
25136
26981
  "kind": "field",
25137
26982
  "name": "label",
@@ -25433,6 +27278,13 @@
25433
27278
  "description": "Whether the component is in remote-search mode (search + dataUri both set)",
25434
27279
  "readonly": true
25435
27280
  },
27281
+ {
27282
+ "kind": "field",
27283
+ "name": "_isTypeable",
27284
+ "privacy": "private",
27285
+ "description": "Whether the display input is editable and filters options (search or free-text).",
27286
+ "readonly": true
27287
+ },
25436
27288
  {
25437
27289
  "kind": "method",
25438
27290
  "name": "handleSearchInput",
@@ -25451,6 +27303,80 @@
25451
27303
  "privacy": "private",
25452
27304
  "description": "Clears the search query and shows all options"
25453
27305
  },
27306
+ {
27307
+ "kind": "method",
27308
+ "name": "commitFreeText",
27309
+ "privacy": "private",
27310
+ "return": {
27311
+ "type": {
27312
+ "text": "boolean"
27313
+ }
27314
+ },
27315
+ "parameters": [
27316
+ {
27317
+ "name": "refocus",
27318
+ "default": "true"
27319
+ }
27320
+ ],
27321
+ "description": "Commits the current typed text as a selected value when `free-text` is enabled. A selected `<zn-option>`\n(value = label = trimmed text) is created in the light DOM so the value flows through the existing\ntag/value/selection machinery and appears as a deselectable row in the listbox. Returns `true` when\nsomething was committed, `false` when there was nothing to commit."
27322
+ },
27323
+ {
27324
+ "kind": "field",
27325
+ "name": "_freeTextAddValue",
27326
+ "type": {
27327
+ "text": "string | null"
27328
+ },
27329
+ "privacy": "private",
27330
+ "description": "The trimmed pending text to offer as a free-text \"Add\" row, or `null` when no Add row should be shown\n(free-text disabled, dropdown closed, input empty, or the text exactly matches an existing option).",
27331
+ "readonly": true
27332
+ },
27333
+ {
27334
+ "kind": "method",
27335
+ "name": "handleAddOptionMouseDown",
27336
+ "privacy": "private",
27337
+ "parameters": [
27338
+ {
27339
+ "name": "event",
27340
+ "type": {
27341
+ "text": "MouseEvent"
27342
+ }
27343
+ }
27344
+ ],
27345
+ "description": "Commits the typed value when the \"Add\" row is pressed, keeping focus on the input."
27346
+ },
27347
+ {
27348
+ "kind": "method",
27349
+ "name": "_materialiseFreeTextValues",
27350
+ "privacy": "private",
27351
+ "parameters": [
27352
+ {
27353
+ "name": "values",
27354
+ "type": {
27355
+ "text": "string[]"
27356
+ }
27357
+ }
27358
+ ],
27359
+ "description": "In free-text mode, creates a hidden `<zn-option>` for any value that has no matching option, so values\nset via the `value`/`defaultValue` attribute (e.g. previously-saved custom entries) render as tags or\nthe display value on load. No-op when free-text is disabled."
27360
+ },
27361
+ {
27362
+ "kind": "method",
27363
+ "name": "_createFreeTextOption",
27364
+ "privacy": "private",
27365
+ "return": {
27366
+ "type": {
27367
+ "text": "ZnOption"
27368
+ }
27369
+ },
27370
+ "parameters": [
27371
+ {
27372
+ "name": "value",
27373
+ "type": {
27374
+ "text": "string"
27375
+ }
27376
+ }
27377
+ ],
27378
+ "description": "Creates a free-text-marked `<zn-option>` in the light DOM (value = label) and returns it. The option is\na normal, visible, selectable row so the user can deselect a custom value from the dropdown like any\nother option; the `data-free-text` marker lets us drop it from the DOM once it's no longer selected."
27379
+ },
25454
27380
  {
25455
27381
  "kind": "method",
25456
27382
  "name": "handleOptionClick",
@@ -25982,6 +27908,15 @@
25982
27908
  "description": "Enables search/filter functionality. When enabled, the user can type into the select to filter the visible options.",
25983
27909
  "fieldName": "search"
25984
27910
  },
27911
+ {
27912
+ "name": "free-text",
27913
+ "type": {
27914
+ "text": "boolean"
27915
+ },
27916
+ "default": "false",
27917
+ "description": "Allows the user to enter values that are not in the options list (\"free text\"). Implies the editable,\nfiltering input behavior of `search`. A typed value that doesn't match an existing option is committed\nby pressing Enter, clicking the \"Add\" row, or blurring the field, and becomes a selected option — a tag\nwhen `multiple` is enabled. The committed value is both the option's value and its label.",
27918
+ "fieldName": "freeText"
27919
+ },
25985
27920
  {
25986
27921
  "name": "label",
25987
27922
  "type": {
@@ -26245,11 +28180,9 @@
26245
28180
  {
26246
28181
  "kind": "field",
26247
28182
  "name": "_mutationObserver",
26248
- "type": {
26249
- "text": "MutationObserver | null"
26250
- },
26251
28183
  "privacy": "private",
26252
- "default": "null"
28184
+ "readonly": true,
28185
+ "default": "new MutationController(this, { target: null, config: {childList: true, subtree: true, attributes: true}, callback: mutations => { for (const mutation of mutations) { if (mutation.type === 'attributes' && mutation.attributeName === 'hidden') { continue; } this.scheduleUpdateFilters(); break; } }, })"
26253
28186
  },
26254
28187
  {
26255
28188
  "kind": "field",
@@ -26466,8 +28399,10 @@
26466
28399
  "attribute": "wide"
26467
28400
  },
26468
28401
  {
26469
- "kind": "method",
26470
- "name": "observerDom"
28402
+ "kind": "field",
28403
+ "name": "domObserver",
28404
+ "privacy": "private",
28405
+ "default": "new MutationController(this, { target: null, config: {childList: true, subtree: true}, callback: () => { setTimeout(() => this.scrollBottom(), 10); }, })"
26471
28406
  },
26472
28407
  {
26473
28408
  "kind": "method",
@@ -26602,10 +28537,9 @@
26602
28537
  {
26603
28538
  "kind": "field",
26604
28539
  "name": "resizeObserver",
26605
- "type": {
26606
- "text": "ResizeObserver | undefined"
26607
- },
26608
- "privacy": "private"
28540
+ "privacy": "private",
28541
+ "readonly": true,
28542
+ "default": "new ResizeController(this, { target: null, skipInitial: true, callback: () => this.chart?.resize(), })"
26609
28543
  }
26610
28544
  ],
26611
28545
  "attributes": [
@@ -27774,6 +29708,11 @@
27774
29708
  "privacy": "private",
27775
29709
  "default": "0"
27776
29710
  },
29711
+ {
29712
+ "kind": "field",
29713
+ "name": "focusChangeHandler",
29714
+ "privacy": "private"
29715
+ },
27777
29716
  {
27778
29717
  "kind": "field",
27779
29718
  "name": "primaryFull",
@@ -27782,6 +29721,24 @@
27782
29721
  },
27783
29722
  "privacy": "private"
27784
29723
  },
29724
+ {
29725
+ "kind": "field",
29726
+ "name": "resizeObserver",
29727
+ "type": {
29728
+ "text": "ResizeObserver | null"
29729
+ },
29730
+ "privacy": "private",
29731
+ "default": "null"
29732
+ },
29733
+ {
29734
+ "kind": "field",
29735
+ "name": "parentIsNarrow",
29736
+ "type": {
29737
+ "text": "boolean"
29738
+ },
29739
+ "privacy": "private",
29740
+ "default": "false"
29741
+ },
27785
29742
  {
27786
29743
  "kind": "field",
27787
29744
  "name": "calculatePixels",
@@ -27812,6 +29769,15 @@
27812
29769
  "attribute": "min-size",
27813
29770
  "reflects": true
27814
29771
  },
29772
+ {
29773
+ "kind": "field",
29774
+ "name": "minimumSecondaryPaneSize",
29775
+ "type": {
29776
+ "text": "number"
29777
+ },
29778
+ "attribute": "min-secondary-size",
29779
+ "reflects": true
29780
+ },
27815
29781
  {
27816
29782
  "kind": "field",
27817
29783
  "name": "maximumPaneSize",
@@ -27911,6 +29877,36 @@
27911
29877
  "attribute": "padded-right",
27912
29878
  "reflects": true
27913
29879
  },
29880
+ {
29881
+ "kind": "field",
29882
+ "name": "gap",
29883
+ "type": {
29884
+ "text": "boolean"
29885
+ },
29886
+ "default": "false",
29887
+ "attribute": "gap",
29888
+ "reflects": true
29889
+ },
29890
+ {
29891
+ "kind": "field",
29892
+ "name": "hide",
29893
+ "type": {
29894
+ "text": "'primary' | 'secondary' | ''"
29895
+ },
29896
+ "default": "''",
29897
+ "attribute": "hide",
29898
+ "reflects": true
29899
+ },
29900
+ {
29901
+ "kind": "field",
29902
+ "name": "mergedNavigation",
29903
+ "type": {
29904
+ "text": "boolean"
29905
+ },
29906
+ "default": "false",
29907
+ "attribute": "merged-navigation",
29908
+ "reflects": true
29909
+ },
27914
29910
  {
27915
29911
  "kind": "field",
27916
29912
  "name": "localStorage",
@@ -27938,6 +29934,11 @@
27938
29934
  },
27939
29935
  "privacy": "protected"
27940
29936
  },
29937
+ {
29938
+ "kind": "method",
29939
+ "name": "refreshNarrowState",
29940
+ "privacy": "private"
29941
+ },
27941
29942
  {
27942
29943
  "kind": "method",
27943
29944
  "name": "applyStoredSize"
@@ -27968,30 +29969,88 @@
27968
29969
  },
27969
29970
  {
27970
29971
  "kind": "method",
27971
- "name": "_togglePane",
29972
+ "name": "_setFocusPane",
27972
29973
  "parameters": [
27973
29974
  {
27974
- "name": "e",
29975
+ "name": "idx",
27975
29976
  "type": {
27976
- "text": "any"
29977
+ "text": "number"
27977
29978
  }
27978
29979
  }
27979
29980
  ]
27980
29981
  },
27981
29982
  {
27982
29983
  "kind": "method",
27983
- "name": "_setFocusPane",
29984
+ "name": "getDirectNestedSplitPanes",
29985
+ "privacy": "private"
29986
+ },
29987
+ {
29988
+ "kind": "method",
29989
+ "name": "updateNestedNavigationMerging",
29990
+ "privacy": "private"
29991
+ },
29992
+ {
29993
+ "kind": "method",
29994
+ "name": "getPaneIndexForNestedSplitPane",
29995
+ "privacy": "private",
27984
29996
  "parameters": [
27985
29997
  {
27986
- "name": "idx",
29998
+ "name": "child",
29999
+ "type": {
30000
+ "text": "ZnSplitPane"
30001
+ }
30002
+ }
30003
+ ]
30004
+ },
30005
+ {
30006
+ "kind": "method",
30007
+ "name": "getNestedNavigationItems",
30008
+ "privacy": "private",
30009
+ "return": {
30010
+ "type": {
30011
+ "text": "NavigationItem[]"
30012
+ }
30013
+ },
30014
+ "parameters": [
30015
+ {
30016
+ "name": "parentIdx",
27987
30017
  "type": {
27988
30018
  "text": "number"
27989
30019
  }
27990
30020
  }
27991
30021
  ]
30022
+ },
30023
+ {
30024
+ "kind": "method",
30025
+ "name": "getDirectNestedSplitPanesForPane",
30026
+ "privacy": "private",
30027
+ "parameters": [
30028
+ {
30029
+ "name": "parentIdx",
30030
+ "type": {
30031
+ "text": "number"
30032
+ }
30033
+ }
30034
+ ]
30035
+ },
30036
+ {
30037
+ "kind": "method",
30038
+ "name": "getNavigationItems",
30039
+ "privacy": "private",
30040
+ "return": {
30041
+ "type": {
30042
+ "text": "NavigationItem[]"
30043
+ }
30044
+ }
27992
30045
  }
27993
30046
  ],
27994
30047
  "events": [
30048
+ {
30049
+ "name": "zn-split-pane-focus-change",
30050
+ "type": {
30051
+ "text": "CustomEvent"
30052
+ }
30053
+ },
27995
30054
  {
27996
30055
  "description": "Emitted as an example.",
27997
30056
  "name": "zn-event-name"
@@ -28022,6 +30081,13 @@
28022
30081
  "default": "10",
28023
30082
  "fieldName": "minimumPaneSize"
28024
30083
  },
30084
+ {
30085
+ "name": "min-secondary-size",
30086
+ "type": {
30087
+ "text": "number"
30088
+ },
30089
+ "fieldName": "minimumSecondaryPaneSize"
30090
+ },
28025
30091
  {
28026
30092
  "name": "max-size",
28027
30093
  "type": {
@@ -28101,6 +30167,30 @@
28101
30167
  "default": "false",
28102
30168
  "fieldName": "paddedRight"
28103
30169
  },
30170
+ {
30171
+ "name": "gap",
30172
+ "type": {
30173
+ "text": "boolean"
30174
+ },
30175
+ "default": "false",
30176
+ "fieldName": "gap"
30177
+ },
30178
+ {
30179
+ "name": "hide",
30180
+ "type": {
30181
+ "text": "'primary' | 'secondary' | ''"
30182
+ },
30183
+ "default": "''",
30184
+ "fieldName": "hide"
30185
+ },
30186
+ {
30187
+ "name": "merged-navigation",
30188
+ "type": {
30189
+ "text": "boolean"
30190
+ },
30191
+ "default": "false",
30192
+ "fieldName": "mergedNavigation"
30193
+ },
28104
30194
  {
28105
30195
  "name": "local-storage",
28106
30196
  "type": {
@@ -28746,6 +30836,15 @@
28746
30836
  "default": "''",
28747
30837
  "attribute": "margin"
28748
30838
  },
30839
+ {
30840
+ "kind": "field",
30841
+ "name": "gutter",
30842
+ "type": {
30843
+ "text": "boolean"
30844
+ },
30845
+ "default": "false",
30846
+ "attribute": "gutter"
30847
+ },
28749
30848
  {
28750
30849
  "kind": "field",
28751
30850
  "name": "autoMargin",
@@ -28877,6 +30976,14 @@
28877
30976
  "default": "''",
28878
30977
  "fieldName": "margin"
28879
30978
  },
30979
+ {
30980
+ "name": "gutter",
30981
+ "type": {
30982
+ "text": "boolean"
30983
+ },
30984
+ "default": "false",
30985
+ "fieldName": "gutter"
30986
+ },
28880
30987
  {
28881
30988
  "name": "a-margin",
28882
30989
  "type": {
@@ -28906,6 +31013,94 @@
28906
31013
  }
28907
31014
  ]
28908
31015
  },
31016
+ {
31017
+ "kind": "javascript-module",
31018
+ "path": "components/tab/tab.js",
31019
+ "declarations": [
31020
+ {
31021
+ "kind": "class",
31022
+ "description": "",
31023
+ "name": "ZnTab",
31024
+ "slots": [
31025
+ {
31026
+ "description": "The tab panel content.",
31027
+ "name": ""
31028
+ }
31029
+ ],
31030
+ "members": [
31031
+ {
31032
+ "kind": "field",
31033
+ "name": "caption",
31034
+ "type": {
31035
+ "text": "string"
31036
+ },
31037
+ "attribute": "caption"
31038
+ },
31039
+ {
31040
+ "kind": "field",
31041
+ "name": "priority",
31042
+ "type": {
31043
+ "text": "number"
31044
+ },
31045
+ "attribute": "priority"
31046
+ },
31047
+ {
31048
+ "kind": "field",
31049
+ "name": "uri",
31050
+ "type": {
31051
+ "text": "string"
31052
+ },
31053
+ "attribute": "uri"
31054
+ }
31055
+ ],
31056
+ "attributes": [
31057
+ {
31058
+ "name": "caption",
31059
+ "type": {
31060
+ "text": "string"
31061
+ },
31062
+ "fieldName": "caption"
31063
+ },
31064
+ {
31065
+ "name": "priority",
31066
+ "type": {
31067
+ "text": "number"
31068
+ },
31069
+ "fieldName": "priority"
31070
+ },
31071
+ {
31072
+ "name": "uri",
31073
+ "type": {
31074
+ "text": "string"
31075
+ },
31076
+ "fieldName": "uri"
31077
+ }
31078
+ ],
31079
+ "superclass": {
31080
+ "name": "ZincElement",
31081
+ "module": "/src/internal/zinc-element"
31082
+ },
31083
+ "summary": "Defines a tab panel for use inside zn-page.",
31084
+ "tagNameWithoutPrefix": "tab",
31085
+ "tagName": "zn-tab",
31086
+ "customElement": true,
31087
+ "jsDoc": "/**\n * @summary Defines a tab panel for use inside zn-page.\n * @documentation https://zinc.style/components/tab\n * @status experimental\n * @since 1.0\n *\n * @slot - The tab panel content.\n */",
31088
+ "documentation": "https://zinc.style/components/tab",
31089
+ "status": "experimental",
31090
+ "since": "1.0"
31091
+ }
31092
+ ],
31093
+ "exports": [
31094
+ {
31095
+ "kind": "js",
31096
+ "name": "default",
31097
+ "declaration": {
31098
+ "name": "ZnTab",
31099
+ "module": "components/tab/tab.js"
31100
+ }
31101
+ }
31102
+ ]
31103
+ },
28909
31104
  {
28910
31105
  "kind": "javascript-module",
28911
31106
  "path": "components/table/table.js",
@@ -29031,6 +31226,13 @@
29031
31226
  "privacy": "private",
29032
31227
  "default": "[]"
29033
31228
  },
31229
+ {
31230
+ "kind": "field",
31231
+ "name": "resizeObserver",
31232
+ "privacy": "private",
31233
+ "readonly": true,
31234
+ "default": "new ResizeController(this, { target: null, callback: () => this.resizing(), })"
31235
+ },
29034
31236
  {
29035
31237
  "kind": "method",
29036
31238
  "name": "resizing"
@@ -29242,6 +31444,15 @@
29242
31444
  "attribute": "split-min",
29243
31445
  "reflects": true
29244
31446
  },
31447
+ {
31448
+ "kind": "field",
31449
+ "name": "_splitMinSecondary",
31450
+ "type": {
31451
+ "text": "number"
31452
+ },
31453
+ "attribute": "split-min-secondary",
31454
+ "reflects": true
31455
+ },
29245
31456
  {
29246
31457
  "kind": "field",
29247
31458
  "name": "_splitMax",
@@ -29468,6 +31679,20 @@
29468
31679
  "readonly": true,
29469
31680
  "default": "new HasSlotController(this, '[default]', 'bottom', 'right', 'left', 'top', 'actions')"
29470
31681
  },
31682
+ {
31683
+ "kind": "field",
31684
+ "name": "_domObserver",
31685
+ "privacy": "private",
31686
+ "readonly": true,
31687
+ "default": "new MutationController(this, { target: null, config: { childList: true, subtree: true }, callback: mutations => { mutations.forEach(mutation => { if (mutation.type !== 'childList') return; if (mutation.addedNodes.length > 0) { this._registerTabs(); } if (mutation.removedNodes.length > 0) { mutation.removedNodes.forEach(node => { const id = node instanceof HTMLElement ? node.id : ''; if (id) this.removeTabAndPanel(id); }); } }); }, })"
31688
+ },
31689
+ {
31690
+ "kind": "field",
31691
+ "name": "_monitorObserver",
31692
+ "privacy": "private",
31693
+ "readonly": true,
31694
+ "default": "new MutationController(this, { target: null, config: { childList: true, subtree: true }, callback: mutations => { mutations.forEach(mutation => { if (mutation.type !== 'childList') return; mutation.addedNodes.forEach(node => { if (node instanceof HTMLElement && node.id === this.monitor) { this.reRegisterTabs(); const storedValue = this._store.get(this.storeKey); if (storedValue !== null) { this._prepareTab(storedValue); this.setActiveTab(storedValue, false, false); } } }); }); }, })"
31695
+ },
29471
31696
  {
29472
31697
  "kind": "method",
29473
31698
  "name": "monitorDom"
@@ -29779,6 +32004,13 @@
29779
32004
  "default": "60",
29780
32005
  "fieldName": "_splitMin"
29781
32006
  },
32007
+ {
32008
+ "name": "split-min-secondary",
32009
+ "type": {
32010
+ "text": "number"
32011
+ },
32012
+ "fieldName": "_splitMinSecondary"
32013
+ },
29782
32014
  {
29783
32015
  "name": "split-max",
29784
32016
  "type": {
@@ -29992,10 +32224,9 @@
29992
32224
  {
29993
32225
  "kind": "field",
29994
32226
  "name": "resizeObserver",
29995
- "type": {
29996
- "text": "ResizeObserver"
29997
- },
29998
- "privacy": "private"
32227
+ "privacy": "private",
32228
+ "readonly": true,
32229
+ "default": "new ResizeController(this, { target: null, callback: () => this.setTextareaHeight(), })"
29999
32230
  },
30000
32231
  {
30001
32232
  "kind": "field",
@@ -32128,14 +34359,6 @@
32128
34359
  "privacy": "private",
32129
34360
  "default": "-1"
32130
34361
  },
32131
- {
32132
- "kind": "field",
32133
- "name": "_resizeObserver",
32134
- "type": {
32135
- "text": "ResizeObserver | undefined"
32136
- },
32137
- "privacy": "private"
32138
- },
32139
34362
  {
32140
34363
  "kind": "field",
32141
34364
  "name": "_lastObservedWidth",
@@ -32744,14 +34967,6 @@
32744
34967
  "privacy": "private",
32745
34968
  "default": "-1"
32746
34969
  },
32747
- {
32748
- "kind": "field",
32749
- "name": "_resizeObserver",
32750
- "type": {
32751
- "text": "ResizeObserver | undefined"
32752
- },
32753
- "privacy": "private"
32754
- },
32755
34970
  {
32756
34971
  "kind": "field",
32757
34972
  "name": "_lastObservedWidth",
@@ -33279,7 +35494,7 @@
33279
35494
  "package": {
33280
35495
  "name": "@kubex/zinc",
33281
35496
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
33282
- "version": "1.0.113",
35497
+ "version": "1.0.114",
33283
35498
  "author": "",
33284
35499
  "license": "MIT"
33285
35500
  }