@kubex/zinc 1.0.113 → 1.0.115

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 (101) 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 +2422 -190
  4. package/dist/vscode.html-custom-data.json +86 -5
  5. package/dist/web-types.json +251 -9
  6. package/dist/zn.d.ts +518 -340
  7. package/dist/zn.min.css +1 -1
  8. package/dist/zn.min.js +960 -882
  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/mixins/_spacing-mixins.scss +1 -1
  23. package/scss/shared/layout.scss +15 -2
  24. package/scss/themes/_light.scss +1 -1
  25. package/src/components/absolute-container/absolute-container.component.ts +9 -25
  26. package/src/components/animated-button/animated-button.test.ts +8 -8
  27. package/src/components/button/button.component.ts +3 -1
  28. package/src/components/button/button.scss +5 -0
  29. package/src/components/button-menu/button-menu.component.ts +36 -21
  30. package/src/components/button-menu/button-menu.test.ts +55 -1
  31. package/src/components/chart/chart.component.ts +7 -7
  32. package/src/components/collapsible/collapsible.component.ts +7 -14
  33. package/src/components/cols/cols.scss +1 -1
  34. package/src/components/content-block/content-block.component.ts +11 -33
  35. package/src/components/data-select/data-select.component.ts +7 -11
  36. package/src/components/data-select/data-select.scss +1 -0
  37. package/src/components/data-table/data-table.component.ts +10 -14
  38. package/src/components/dialog/dialog.scss +4 -0
  39. package/src/components/editor/modules/toolbar/toolbar.component.ts +5 -9
  40. package/src/components/expanding-action/expanding-action.component.ts +37 -43
  41. package/src/components/form-group/form-group.component.ts +32 -27
  42. package/src/components/form-group/form-group.scss +1 -0
  43. package/src/components/header/header.component.ts +6 -5
  44. package/src/components/header/header.scss +28 -26
  45. package/src/components/inline-edit/inline-edit.component.ts +13 -1
  46. package/src/components/inline-edit/inline-edit.test.ts +50 -0
  47. package/src/components/input/input.test.ts +77 -0
  48. package/src/components/input-group/input-group.test.ts +2 -10
  49. package/src/components/item/item.component.ts +12 -6
  50. package/src/components/item/item.scss +1 -1
  51. package/src/components/item/item.test.ts +8 -0
  52. package/src/components/navbar/navbar.component.ts +222 -48
  53. package/src/components/navbar/navbar.scss +134 -21
  54. package/src/components/navbar/navbar.test.ts +114 -9
  55. package/src/components/option/option.scss +5 -7
  56. package/src/components/option/option.test.ts +30 -0
  57. package/src/components/page/index.ts +13 -0
  58. package/src/components/page/page.component.ts +406 -0
  59. package/src/components/page/page.scss +325 -0
  60. package/src/components/page/page.test.ts +397 -0
  61. package/src/components/page-nav/page-nav.scss +7 -5
  62. package/src/components/pane/pane.component.ts +2 -2
  63. package/src/components/pane/pane.scss +0 -1
  64. package/src/components/pane/pane.test.ts +31 -0
  65. package/src/components/panel/panel.scss +5 -16
  66. package/src/components/progress-bar/progress-bar.component.ts +5 -2
  67. package/src/components/progress-bar/progress-bar.scss +17 -1
  68. package/src/components/progress-bar/progress-bar.test.ts +12 -0
  69. package/src/components/scroll-container/scroll-container.component.ts +22 -21
  70. package/src/components/select/select.component.ts +243 -39
  71. package/src/components/select/select.scss +36 -5
  72. package/src/components/select/select.test.ts +533 -0
  73. package/src/components/settings-container/settings-container.component.ts +15 -19
  74. package/src/components/settings-container/settings-container.scss +8 -8
  75. package/src/components/sidebar/sidebar.component.ts +11 -11
  76. package/src/components/simple-chart/simple-chart.component.ts +6 -7
  77. package/src/components/sp/sp.scss +46 -15
  78. package/src/components/sp/sp.test.ts +15 -0
  79. package/src/components/split-pane/split-pane.component.ts +153 -26
  80. package/src/components/split-pane/split-pane.scss +89 -13
  81. package/src/components/split-pane/split-pane.test.ts +187 -0
  82. package/src/components/style/style.component.ts +8 -0
  83. package/src/components/tab/index.ts +13 -0
  84. package/src/components/tab/tab.component.ts +25 -0
  85. package/src/components/tab/tab.scss +7 -0
  86. package/src/components/table/table.component.ts +7 -2
  87. package/src/components/table/table.scss +1 -0
  88. package/src/components/tabs/tabs.component.ts +75 -70
  89. package/src/components/tabs/tabs.scss +1 -1
  90. package/src/components/textarea/textarea.component.ts +5 -8
  91. package/src/components/tile/tile.scss +2 -2
  92. package/src/components/translation-group/translation-group.component.ts +15 -14
  93. package/src/components/translations/translations.component.ts +18 -17
  94. package/src/components/translations/translations.scss +1 -0
  95. package/src/components/translations/translations.test.ts +3 -2
  96. package/src/internal/form.ts +234 -0
  97. package/src/internal/theme.ts +26 -46
  98. package/src/internal/zinc-element.ts +12 -7
  99. package/src/utilities/form.ts +1 -0
  100. package/src/wc.scss +1 -1
  101. package/src/zinc.ts +3 -0
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
3
3
  "name": "@kubex/zinc",
4
- "version": "1.0.113",
4
+ "version": "1.0.115",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -314,6 +314,10 @@
314
314
  "name": "square",
315
315
  "value": { "type": "boolean", "default": "false" }
316
316
  },
317
+ {
318
+ "name": "panel-bg",
319
+ "value": { "type": "boolean", "default": "false" }
320
+ },
317
321
  {
318
322
  "name": "dropdown-closer",
319
323
  "value": { "type": "boolean", "default": "false" }
@@ -447,6 +451,7 @@
447
451
  { "name": "disabled", "type": "boolean" },
448
452
  { "name": "grow", "type": "boolean" },
449
453
  { "name": "square", "type": "boolean" },
454
+ { "name": "panelBackground", "type": "boolean" },
450
455
  { "name": "dropdownCloser", "type": "boolean" },
451
456
  { "name": "notification", "type": "number" },
452
457
  { "name": "mutedNotifications", "type": "boolean" },
@@ -598,8 +603,7 @@
598
603
  },
599
604
  { "name": "iconSize", "type": "number" },
600
605
  { "name": "noGap", "type": "boolean" },
601
- { "name": "noPadding", "type": "boolean" },
602
- { "name": "handleResize" }
606
+ { "name": "noPadding", "type": "boolean" }
603
607
  ],
604
608
  "events": []
605
609
  }
@@ -3264,6 +3268,14 @@
3264
3268
  "name": "help-text",
3265
3269
  "description": "The form groups help text. If you need to display HTML, use the `help-text` slot instead.",
3266
3270
  "value": { "type": "string", "default": "''" }
3271
+ },
3272
+ {
3273
+ "name": "cols",
3274
+ "value": { "type": "boolean", "default": "false" }
3275
+ },
3276
+ {
3277
+ "name": "layout",
3278
+ "value": { "type": "string", "default": "\"1,2\"" }
3267
3279
  }
3268
3280
  ],
3269
3281
  "slots": [{ "name": "", "description": "The default slot." }],
@@ -3284,7 +3296,9 @@
3284
3296
  "name": "helpText",
3285
3297
  "description": "The form groups help text. If you need to display HTML, use the `help-text` slot instead.",
3286
3298
  "type": "string"
3287
- }
3299
+ },
3300
+ { "name": "forceCols", "type": "boolean" },
3301
+ { "name": "layout", "type": "string" }
3288
3302
  ],
3289
3303
  "events": []
3290
3304
  }
@@ -3310,7 +3324,11 @@
3310
3324
  },
3311
3325
  { "name": "full-width", "value": { "type": "boolean" } },
3312
3326
  { "name": "previous-path", "value": { "type": "string" } },
3313
- { "name": "previous-target", "value": { "type": "string" } }
3327
+ { "name": "previous-target", "value": { "type": "string" } },
3328
+ {
3329
+ "name": "hide-breadcrumb",
3330
+ "value": { "type": "boolean", "default": "false" }
3331
+ }
3314
3332
  ],
3315
3333
  "slots": [
3316
3334
  { "name": "", "description": "The default slot." },
@@ -3332,6 +3350,7 @@
3332
3350
  { "name": "fullWidth", "type": "boolean" },
3333
3351
  { "name": "previousPath", "type": "string" },
3334
3352
  { "name": "previousTarget", "type": "string" },
3353
+ { "name": "hideBreadcrumb", "type": "boolean" },
3335
3354
  { "name": "handleAltPress" },
3336
3355
  { "name": "handleAltUp" }
3337
3356
  ],
@@ -3637,6 +3656,11 @@
3637
3656
  "description": "Enables search/filtering on select inputs.",
3638
3657
  "value": { "type": "boolean" }
3639
3658
  },
3659
+ {
3660
+ "name": "free-text",
3661
+ "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>`.",
3662
+ "value": { "type": "boolean" }
3663
+ },
3640
3664
  {
3641
3665
  "name": "help-text",
3642
3666
  "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead. *",
@@ -3708,6 +3732,11 @@
3708
3732
  "description": "Enables search/filtering on select inputs.",
3709
3733
  "type": "boolean"
3710
3734
  },
3735
+ {
3736
+ "name": "freeText",
3737
+ "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>`.",
3738
+ "type": "boolean"
3739
+ },
3711
3740
  {
3712
3741
  "name": "helpText",
3713
3742
  "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead. *",
@@ -4297,6 +4326,7 @@
4297
4326
  { "name": "inline", "value": { "type": "boolean" } },
4298
4327
  { "name": "grid", "value": { "type": "boolean" } },
4299
4328
  { "name": "no-padding", "value": { "type": "boolean" } },
4329
+ { "name": "flush", "value": { "type": "boolean" } },
4300
4330
  { "name": "align-end", "value": { "type": "boolean" } },
4301
4331
  { "name": "align-center", "value": { "type": "boolean" } }
4302
4332
  ],
@@ -4324,6 +4354,7 @@
4324
4354
  { "name": "inline", "type": "boolean" },
4325
4355
  { "name": "grid", "type": "boolean" },
4326
4356
  { "name": "noPadding", "type": "boolean" },
4357
+ { "name": "flush", "type": "boolean" },
4327
4358
  { "name": "alignEnd", "type": "boolean" },
4328
4359
  { "name": "alignCenter", "type": "boolean" }
4329
4360
  ],
@@ -4915,7 +4946,7 @@
4915
4946
  },
4916
4947
  {
4917
4948
  "name": "zn-navbar",
4918
- "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
4949
+ "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **expand** - Expanding action panels rendered alongside the navbar items.\n- **bottom** - Content rendered below the navbar row (e.g. chips, filters).\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
4919
4950
  "doc-url": "",
4920
4951
  "attributes": [
4921
4952
  {
@@ -4959,7 +4990,14 @@
4959
4990
  ],
4960
4991
  "slots": [
4961
4992
  { "name": "", "description": "The default slot." },
4962
- { "name": "example", "description": "An example slot." }
4993
+ {
4994
+ "name": "expand",
4995
+ "description": "Expanding action panels rendered alongside the navbar items."
4996
+ },
4997
+ {
4998
+ "name": "bottom",
4999
+ "description": "Content rendered below the navbar row (e.g. chips, filters)."
5000
+ }
4963
5001
  ],
4964
5002
  "events": [
4965
5003
  { "name": "zn-event-name", "description": "Emitted as an example." }
@@ -5147,6 +5185,144 @@
5147
5185
  ]
5148
5186
  }
5149
5187
  },
5188
+ {
5189
+ "name": "zn-page",
5190
+ "description": "Combines a page header with tab navigation and tab panels.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - Page content. Use zn-tab for named tabs and header-action/header-actions for header actions.\n- **bottom** - Content rendered below the navbar row (e.g. chips, filters). Forwarded to the navbar's bottom slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
5191
+ "doc-url": "",
5192
+ "attributes": [
5193
+ { "name": "caption", "value": { "type": "string" } },
5194
+ { "name": "entity-id", "value": { "type": "string" } },
5195
+ { "name": "entity-id-show", "value": { "type": "boolean" } },
5196
+ { "name": "full-location", "value": { "type": "string" } },
5197
+ {
5198
+ "name": "modal",
5199
+ "value": { "type": "boolean", "default": "false" }
5200
+ },
5201
+ {
5202
+ "name": "nested",
5203
+ "value": { "type": "boolean", "default": "false" }
5204
+ },
5205
+ {
5206
+ "name": "primary",
5207
+ "value": { "type": "boolean", "default": "false" }
5208
+ },
5209
+ { "name": "previous-path", "value": { "type": "string" } },
5210
+ { "name": "previous-target", "value": { "type": "string" } },
5211
+ { "name": "summary", "value": { "type": "string" } },
5212
+ { "name": "master-id", "value": { "type": "string" } },
5213
+ {
5214
+ "name": "default-uri",
5215
+ "value": { "type": "string", "default": "''" }
5216
+ },
5217
+ {
5218
+ "name": "active",
5219
+ "value": { "type": "string", "default": "''" }
5220
+ },
5221
+ { "name": "split", "value": { "type": "number" } },
5222
+ {
5223
+ "name": "split-min",
5224
+ "value": { "type": "number", "default": "60" }
5225
+ },
5226
+ { "name": "split-min-secondary", "value": { "type": "number" } },
5227
+ { "name": "split-max", "value": { "type": "number" } },
5228
+ {
5229
+ "name": "primary-caption",
5230
+ "value": { "type": "string", "default": "'Navigation'" }
5231
+ },
5232
+ {
5233
+ "name": "secondary-caption",
5234
+ "value": { "type": "string", "default": "'Content'" }
5235
+ },
5236
+ {
5237
+ "name": "no-prefetch",
5238
+ "value": { "type": "boolean", "default": "false" }
5239
+ },
5240
+ {
5241
+ "name": "no-cache",
5242
+ "value": { "type": "boolean", "default": "false" }
5243
+ },
5244
+ { "name": "local-storage", "value": { "type": "boolean" } },
5245
+ { "name": "store-key", "value": { "type": "string" } },
5246
+ {
5247
+ "name": "store-ttl",
5248
+ "value": { "type": "number", "default": "0" }
5249
+ },
5250
+ {
5251
+ "name": "padded",
5252
+ "value": { "type": "boolean", "default": "false" }
5253
+ },
5254
+ {
5255
+ "name": "fetch-style",
5256
+ "value": { "type": "string", "default": "\"\"" }
5257
+ },
5258
+ {
5259
+ "name": "full-width",
5260
+ "value": { "type": "boolean", "default": "false" }
5261
+ },
5262
+ {
5263
+ "name": "padded-right",
5264
+ "value": { "type": "boolean", "default": "false" }
5265
+ },
5266
+ { "name": "monitor", "value": { "type": "string" } },
5267
+ { "name": "description", "value": { "type": "string" } }
5268
+ ],
5269
+ "slots": [
5270
+ {
5271
+ "name": "",
5272
+ "description": "Page content. Use zn-tab for named tabs and header-action/header-actions for header actions."
5273
+ },
5274
+ {
5275
+ "name": "bottom",
5276
+ "description": "Content rendered below the navbar row (e.g. chips, filters). Forwarded to the navbar's bottom slot."
5277
+ },
5278
+ { "name": "example", "description": "An example slot." }
5279
+ ],
5280
+ "events": [
5281
+ { "name": "zn-event-name", "description": "Emitted as an example." }
5282
+ ],
5283
+ "js": {
5284
+ "properties": [
5285
+ { "name": "caption", "type": "string" },
5286
+ { "name": "entityId", "type": "string" },
5287
+ { "name": "entityIdShow", "type": "boolean" },
5288
+ { "name": "fullLocation", "type": "string" },
5289
+ { "name": "modal", "type": "boolean" },
5290
+ { "name": "nested", "type": "boolean" },
5291
+ { "name": "primary", "type": "boolean" },
5292
+ { "name": "previousPath", "type": "string" },
5293
+ { "name": "previousTarget", "type": "string" },
5294
+ { "name": "summary", "type": "string" },
5295
+ { "name": "_registerTabs" },
5296
+ { "name": "masterId", "type": "string" },
5297
+ { "name": "defaultUri", "type": "string" },
5298
+ { "name": "_current", "type": "string" },
5299
+ { "name": "_split", "type": "number" },
5300
+ { "name": "_splitMin", "type": "number" },
5301
+ { "name": "_splitMinSecondary", "type": "number" },
5302
+ { "name": "_splitMax", "type": "number" },
5303
+ { "name": "primaryCaption", "type": "string" },
5304
+ { "name": "secondaryCaption", "type": "string" },
5305
+ { "name": "noPrefetch", "type": "boolean" },
5306
+ { "name": "noCache", "type": "boolean" },
5307
+ { "name": "localStorage", "type": "boolean" },
5308
+ { "name": "storeKey", "type": "string" },
5309
+ { "name": "storeTtl", "type": "number" },
5310
+ { "name": "padded", "type": "boolean" },
5311
+ { "name": "fetchStyle", "type": "string" },
5312
+ { "name": "fullWidth", "type": "boolean" },
5313
+ { "name": "paddedRight", "type": "boolean" },
5314
+ { "name": "monitor", "type": "string" },
5315
+ { "name": "description", "type": "string" },
5316
+ { "name": "reRegisterTabs" }
5317
+ ],
5318
+ "events": [
5319
+ {
5320
+ "name": "zn-event-name",
5321
+ "description": "Emitted as an example."
5322
+ }
5323
+ ]
5324
+ }
5325
+ },
5150
5326
  {
5151
5327
  "name": "zn-page-nav",
5152
5328
  "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
@@ -5167,6 +5343,7 @@
5167
5343
  "name": "split-min",
5168
5344
  "value": { "type": "number", "default": "60" }
5169
5345
  },
5346
+ { "name": "split-min-secondary", "value": { "type": "number" } },
5170
5347
  { "name": "split-max", "value": { "type": "number" } },
5171
5348
  {
5172
5349
  "name": "primary-caption",
@@ -5226,6 +5403,7 @@
5226
5403
  { "name": "_current", "type": "string" },
5227
5404
  { "name": "_split", "type": "number" },
5228
5405
  { "name": "_splitMin", "type": "number" },
5406
+ { "name": "_splitMinSecondary", "type": "number" },
5229
5407
  { "name": "_splitMax", "type": "number" },
5230
5408
  { "name": "primaryCaption", "type": "string" },
5231
5409
  { "name": "secondaryCaption", "type": "string" },
@@ -5790,10 +5968,14 @@
5790
5968
  },
5791
5969
  {
5792
5970
  "name": "zn-progress-bar",
5793
- "description": "Progress bars provide visual feedback about the completion status of a task or process.\n---\n\n\n### **CSS Properties:**\n - **--zn-border-color** - The color of the progress bar background track. _(default: undefined)_\n- **--zn-primary** - The color of the progress bar fill. _(default: undefined)_\n- **--zn-text-heading** - The color of the caption text. _(default: undefined)_\n- **--zn-text** - The color of the progress percentage and description text. _(default: undefined)_\n- **--zn-spacing-x-small** - The spacing between header/footer and the progress bar. _(default: undefined)_\n\n### **CSS Parts:**\n - **header** - The header container that contains the caption and progress text.\n- **caption** - The caption text element.\n- **progress** - The progress percentage text element.\n- **bar** - The SVG element containing the progress bar.\n- **track** - The background track of the progress bar.\n- **fill** - The filled portion of the progress bar indicating progress.\n- **footer** - The footer container that contains the description.\n- **info** - The description text element.",
5971
+ "description": "Progress bars provide visual feedback about the completion status of a task or process.\n---\n\n\n### **CSS Properties:**\n - **--zn-border-color** - The color of the progress bar background track. _(default: undefined)_\n- **--zn-progress-bar-color** - The color of the progress bar fill. _(default: undefined)_\n- **--zn-text-heading** - The color of the caption text. _(default: undefined)_\n- **--zn-text** - The color of the progress percentage and description text. _(default: undefined)_\n- **--zn-spacing-x-small** - The spacing between header/footer and the progress bar. _(default: undefined)_\n\n### **CSS Parts:**\n - **header** - The header container that contains the caption and progress text.\n- **caption** - The caption text element.\n- **progress** - The progress percentage text element.\n- **bar** - The SVG element containing the progress bar.\n- **track** - The background track of the progress bar.\n- **fill** - The filled portion of the progress bar indicating progress.\n- **footer** - The footer container that contains the description.\n- **info** - The description text element.",
5794
5972
  "doc-url": "",
5795
5973
  "attributes": [
5796
5974
  { "name": "caption", "value": { "type": "string | undefined" } },
5975
+ {
5976
+ "name": "color",
5977
+ "value": { "type": "ProgressBarColor", "default": "'current'" }
5978
+ },
5797
5979
  {
5798
5980
  "name": "description",
5799
5981
  "value": { "type": "string | undefined" }
@@ -5808,6 +5990,7 @@
5808
5990
  "js": {
5809
5991
  "properties": [
5810
5992
  { "name": "caption", "type": "string | undefined" },
5993
+ { "name": "color", "type": "ProgressBarColor" },
5811
5994
  { "name": "description", "type": "string | undefined" },
5812
5995
  { "name": "value", "type": "number | undefined" },
5813
5996
  { "name": "showProgress", "type": "boolean | undefined" }
@@ -6437,6 +6620,11 @@
6437
6620
  "description": "Enables search/filter functionality. When enabled, the user can type into the select to filter the visible options.",
6438
6621
  "value": { "type": "boolean", "default": "false" }
6439
6622
  },
6623
+ {
6624
+ "name": "free-text",
6625
+ "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.",
6626
+ "value": { "type": "boolean", "default": "false" }
6627
+ },
6440
6628
  {
6441
6629
  "name": "label",
6442
6630
  "description": "The select's label. If you need to display HTML, use the `label` slot instead.",
@@ -6696,6 +6884,11 @@
6696
6884
  "description": "Enables search/filter functionality. When enabled, the user can type into the select to filter the visible options.",
6697
6885
  "type": "boolean"
6698
6886
  },
6887
+ {
6888
+ "name": "freeText",
6889
+ "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.",
6890
+ "type": "boolean"
6891
+ },
6699
6892
  {
6700
6893
  "name": "label",
6701
6894
  "description": "The select's label. If you need to display HTML, use the `label` slot instead.",
@@ -7251,7 +7444,7 @@
7251
7444
  },
7252
7445
  {
7253
7446
  "name": "zn-split-pane",
7254
- "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
7447
+ "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-split-pane-focus-change**\n- **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
7255
7448
  "doc-url": "",
7256
7449
  "attributes": [
7257
7450
  {
@@ -7266,6 +7459,7 @@
7266
7459
  "name": "min-size",
7267
7460
  "value": { "type": "number", "default": "10" }
7268
7461
  },
7462
+ { "name": "min-secondary-size", "value": { "type": "number" } },
7269
7463
  { "name": "max-size", "value": { "type": "number" } },
7270
7464
  {
7271
7465
  "name": "initial-size",
@@ -7303,6 +7497,21 @@
7303
7497
  "name": "padded-right",
7304
7498
  "value": { "type": "boolean", "default": "false" }
7305
7499
  },
7500
+ {
7501
+ "name": "gap",
7502
+ "value": { "type": "boolean", "default": "false" }
7503
+ },
7504
+ {
7505
+ "name": "hide",
7506
+ "value": {
7507
+ "type": "'primary' | 'secondary' | ''",
7508
+ "default": "''"
7509
+ }
7510
+ },
7511
+ {
7512
+ "name": "merged-navigation",
7513
+ "value": { "type": "boolean", "default": "false" }
7514
+ },
7306
7515
  { "name": "local-storage", "value": { "type": "boolean" } },
7307
7516
  {
7308
7517
  "name": "store-ttl",
@@ -7314,6 +7523,7 @@
7314
7523
  { "name": "example", "description": "An example slot." }
7315
7524
  ],
7316
7525
  "events": [
7526
+ { "name": "zn-split-pane-focus-change", "type": "CustomEvent" },
7317
7527
  { "name": "zn-event-name", "description": "Emitted as an example." }
7318
7528
  ],
7319
7529
  "js": {
@@ -7324,6 +7534,7 @@
7324
7534
  { "name": "calculatePixels", "type": "boolean" },
7325
7535
  { "name": "preferSecondarySize", "type": "boolean" },
7326
7536
  { "name": "minimumPaneSize", "type": "number" },
7537
+ { "name": "minimumSecondaryPaneSize", "type": "number" },
7327
7538
  { "name": "maximumPaneSize", "type": "number" },
7328
7539
  { "name": "initialSize", "type": "number" },
7329
7540
  { "name": "storeKey", "type": "string" },
@@ -7334,10 +7545,14 @@
7334
7545
  { "name": "_focusPane", "type": "number" },
7335
7546
  { "name": "padded", "type": "boolean" },
7336
7547
  { "name": "paddedRight", "type": "boolean" },
7548
+ { "name": "gap", "type": "boolean" },
7549
+ { "name": "hide", "type": "'primary' | 'secondary' | ''" },
7550
+ { "name": "mergedNavigation", "type": "boolean" },
7337
7551
  { "name": "localStorage", "type": "boolean" },
7338
7552
  { "name": "storeTtl", "type": "number" }
7339
7553
  ],
7340
7554
  "events": [
7555
+ { "name": "zn-split-pane-focus-change", "type": "CustomEvent" },
7341
7556
  {
7342
7557
  "name": "zn-event-name",
7343
7558
  "description": "Emitted as an example."
@@ -7552,6 +7767,10 @@
7552
7767
  "name": "margin",
7553
7768
  "value": { "type": "string", "default": "''" }
7554
7769
  },
7770
+ {
7771
+ "name": "gutter",
7772
+ "value": { "type": "boolean", "default": "false" }
7773
+ },
7555
7774
  {
7556
7775
  "name": "a-margin",
7557
7776
  "value": { "type": "string", "default": "''" }
@@ -7575,11 +7794,32 @@
7575
7794
  { "name": "height", "type": "string" },
7576
7795
  { "name": "pad", "type": "string" },
7577
7796
  { "name": "margin", "type": "string" },
7797
+ { "name": "gutter", "type": "boolean" },
7578
7798
  { "name": "autoMargin", "type": "string" }
7579
7799
  ],
7580
7800
  "events": []
7581
7801
  }
7582
7802
  },
7803
+ {
7804
+ "name": "zn-tab",
7805
+ "description": "Defines a tab panel for use inside zn-page.\n---\n\n\n### **Slots:**\n - _default_ - The tab panel content.",
7806
+ "doc-url": "",
7807
+ "attributes": [
7808
+ { "name": "caption", "value": { "type": "string" } },
7809
+ { "name": "priority", "value": { "type": "number" } },
7810
+ { "name": "uri", "value": { "type": "string" } }
7811
+ ],
7812
+ "slots": [{ "name": "", "description": "The tab panel content." }],
7813
+ "events": [],
7814
+ "js": {
7815
+ "properties": [
7816
+ { "name": "caption", "type": "string" },
7817
+ { "name": "priority", "type": "number" },
7818
+ { "name": "uri", "type": "string" }
7819
+ ],
7820
+ "events": []
7821
+ }
7822
+ },
7583
7823
  {
7584
7824
  "name": "zn-table",
7585
7825
  "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Slots:**\n - _default_ - The default slot.\n- **example** - An example slot.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
@@ -7650,6 +7890,7 @@
7650
7890
  "name": "split-min",
7651
7891
  "value": { "type": "number", "default": "60" }
7652
7892
  },
7893
+ { "name": "split-min-secondary", "value": { "type": "number" } },
7653
7894
  { "name": "split-max", "value": { "type": "number" } },
7654
7895
  {
7655
7896
  "name": "primary-caption",
@@ -7707,6 +7948,7 @@
7707
7948
  { "name": "_current", "type": "string" },
7708
7949
  { "name": "_split", "type": "number" },
7709
7950
  { "name": "_splitMin", "type": "number" },
7951
+ { "name": "_splitMinSecondary", "type": "number" },
7710
7952
  { "name": "_splitMax", "type": "number" },
7711
7953
  { "name": "primaryCaption", "type": "string" },
7712
7954
  { "name": "secondaryCaption", "type": "string" },