@kubex/zinc 1.0.25 → 1.0.99

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 (199) hide show
  1. package/.claude/project.md +556 -0
  2. package/.github/workflows/js_build_and_deploy.yaml +9 -10
  3. package/dist/custom-elements.json +13575 -8856
  4. package/dist/vscode.html-custom-data.json +583 -48
  5. package/dist/web-types.json +1441 -181
  6. package/dist/zn.d.ts +1645 -660
  7. package/dist/zn.min.css +1 -1
  8. package/dist/zn.min.js +1412 -893
  9. package/docs/_utilities/code-previews.cjs +10 -1
  10. package/docs/assets/scripts/docs.js +42 -18
  11. package/docs/data/data-table.json +229 -66
  12. package/docs/data/empty.json +6 -0
  13. package/docs/data/products-table.json +41 -193
  14. package/docs/pages/components/action-bar.md +121 -6
  15. package/docs/pages/components/alert.md +118 -15
  16. package/docs/pages/components/animated-button.md +299 -0
  17. package/docs/pages/components/audio-select.md +534 -0
  18. package/docs/pages/components/bulk-actions.md +79 -5
  19. package/docs/pages/components/button-group.md +235 -27
  20. package/docs/pages/components/button.md +139 -1
  21. package/docs/pages/components/chart.md +365 -9
  22. package/docs/pages/components/checkbox.md +387 -58
  23. package/docs/pages/components/chip.md +253 -33
  24. package/docs/pages/components/collapsible.md +393 -46
  25. package/docs/pages/components/cols.md +152 -30
  26. package/docs/pages/components/confirm.md +182 -16
  27. package/docs/pages/components/copy-button.md +169 -6
  28. package/docs/pages/components/data-select.md +194 -15
  29. package/docs/pages/components/data-table-filter.md +96 -5
  30. package/docs/pages/components/data-table-search.md +451 -0
  31. package/docs/pages/components/data-table-sort.md +66 -5
  32. package/docs/pages/components/data-table.md +727 -66
  33. package/docs/pages/components/datepicker.md +402 -7
  34. package/docs/pages/components/defined-label.md +120 -5
  35. package/docs/pages/components/dialog.md +339 -59
  36. package/docs/pages/components/dropdown.md +366 -11
  37. package/docs/pages/components/editor.md +604 -7
  38. package/docs/pages/components/empty-state.md +315 -16
  39. package/docs/pages/components/expanding-action.md +212 -28
  40. package/docs/pages/components/file.md +421 -12
  41. package/docs/pages/components/filter-container.md +158 -5
  42. package/docs/pages/components/filter-wrapper.md +167 -6
  43. package/docs/pages/components/form-group.md +383 -6
  44. package/docs/pages/components/hover-container.md +237 -6
  45. package/docs/pages/components/icon-picker.md +121 -0
  46. package/docs/pages/components/icon.md +454 -48
  47. package/docs/pages/components/inline-edit.md +787 -19
  48. package/docs/pages/components/input-group.md +207 -13
  49. package/docs/pages/components/input.md +194 -0
  50. package/docs/pages/components/item.md +18 -0
  51. package/docs/pages/components/key-container.md +115 -0
  52. package/docs/pages/components/key.md +101 -0
  53. package/docs/pages/components/menu.md +512 -6
  54. package/docs/pages/components/note.md +239 -36
  55. package/docs/pages/components/opt-group.md +107 -0
  56. package/docs/pages/components/pagination.md +332 -6
  57. package/docs/pages/components/pane.md +222 -6
  58. package/docs/pages/components/panel.md +213 -26
  59. package/docs/pages/components/popup.md +1354 -6
  60. package/docs/pages/components/priority-list.md +233 -0
  61. package/docs/pages/components/progress-bar.md +387 -6
  62. package/docs/pages/components/radio-group.md +242 -5
  63. package/docs/pages/components/radio.md +474 -6
  64. package/docs/pages/components/rating.md +331 -7
  65. package/docs/pages/components/reveal.md +524 -6
  66. package/docs/pages/components/scroll-container.md +552 -6
  67. package/docs/pages/components/select.md +762 -160
  68. package/docs/pages/components/skeleton.md +473 -30
  69. package/docs/pages/components/slideout.md +261 -5
  70. package/docs/pages/components/sp.md +99 -41
  71. package/docs/pages/components/split-button.md +347 -9
  72. package/docs/pages/components/split-pane.md +445 -6
  73. package/docs/pages/components/stat.md +549 -9
  74. package/docs/pages/components/status-indicator.md +230 -1
  75. package/docs/pages/components/stepper.md +563 -6
  76. package/docs/pages/components/tabs.md +439 -13
  77. package/docs/pages/components/textarea.md +415 -17
  78. package/docs/pages/components/tile.md +385 -26
  79. package/docs/pages/components/toggle.md +424 -6
  80. package/docs/pages/components/tooltip.md +367 -0
  81. package/docs/pages/components/translation-group.md +210 -0
  82. package/docs/pages/components/translations.md +319 -19
  83. package/docs/pages/components/vertical-stepper.md +401 -8
  84. package/docs/pages/components/well.md +300 -3
  85. package/docs/pages/getting-started/form-controls.md +162 -0
  86. package/docs/pages/index.md +116 -15
  87. package/package.json +5 -6
  88. package/scss/_global-spacing.scss +4 -0
  89. package/scss/_root.scss +2 -2
  90. package/scss/boot.scss +19 -0
  91. package/scss/shared/layout.scss +5 -0
  92. package/scss/themes/_light.scss +3 -3
  93. package/src/components/alert/alert.scss +1 -0
  94. package/src/components/animated-button/README.md +306 -0
  95. package/src/components/animated-button/animated-button.component.ts +229 -0
  96. package/src/components/animated-button/animated-button.scss +228 -0
  97. package/src/components/animated-button/animated-button.test.ts +143 -0
  98. package/src/components/animated-button/index.ts +12 -0
  99. package/src/components/button/button.component.ts +5 -0
  100. package/src/components/button-group/button-group.component.ts +25 -13
  101. package/src/components/button-group/button-group.scss +6 -0
  102. package/src/components/checkbox/checkbox.component.ts +4 -0
  103. package/src/components/checkbox/checkbox.scss +7 -4
  104. package/src/components/checkbox-group/checkbox-group.scss +7 -0
  105. package/src/components/chip/chip.component.ts +7 -2
  106. package/src/components/chip/chip.scss +16 -2
  107. package/src/components/collapsible/collapsible.component.ts +27 -20
  108. package/src/components/cols/cols.component.ts +14 -2
  109. package/src/components/cols/cols.scss +6 -12
  110. package/src/components/confirm/confirm.component.ts +7 -0
  111. package/src/components/copy-button/copy-button.component.ts +12 -11
  112. package/src/components/data-select/data-select.component.ts +215 -44
  113. package/src/components/data-select/data-select.scss +66 -6
  114. package/src/components/data-select/providers/currency-data-provider.ts +20 -6
  115. package/src/components/data-select/providers/provider.ts +1 -0
  116. package/src/components/data-select/providers/us-state-data-provider.ts +68 -0
  117. package/src/components/data-table/data-table.component.ts +81 -22
  118. package/src/components/data-table-search/data-table-search.component.ts +184 -0
  119. package/src/components/data-table-search/data-table-search.scss +17 -0
  120. package/src/components/data-table-search/data-table-search.test.ts +11 -0
  121. package/src/components/data-table-search/index.ts +12 -0
  122. package/src/components/datepicker/datepicker.component.ts +347 -13
  123. package/src/components/dialog/dialog.component.ts +1 -1
  124. package/src/components/empty-state/empty-state.scss +6 -1
  125. package/src/components/header/header.scss +3 -3
  126. package/src/components/icon/icon.component.ts +23 -1
  127. package/src/components/icon/icon.scss +23 -0
  128. package/src/components/icon-picker/brand-icons.ts +24 -0
  129. package/src/components/icon-picker/icon-picker.component.ts +407 -0
  130. package/src/components/icon-picker/icon-picker.scss +205 -0
  131. package/src/components/icon-picker/index.ts +12 -0
  132. package/src/components/icon-picker/line-icons.ts +612 -0
  133. package/src/components/icon-picker/material-icons.ts +14543 -0
  134. package/src/components/inline-edit/inline-edit.component.ts +190 -46
  135. package/src/components/inline-edit/inline-edit.scss +29 -0
  136. package/src/components/inline-edit/inline-edit.test.ts +314 -1
  137. package/src/components/input/input.component.ts +324 -5
  138. package/src/components/input/input.scss +87 -0
  139. package/src/components/input-group/input-group.component.ts +28 -7
  140. package/src/components/input-group/input-group.scss +48 -10
  141. package/src/components/item/item.component.ts +24 -3
  142. package/src/components/item/item.scss +18 -0
  143. package/src/components/key/index.ts +12 -0
  144. package/src/components/key/key.component.ts +47 -0
  145. package/src/components/key/key.scss +38 -0
  146. package/src/components/key-container/index.ts +12 -0
  147. package/src/components/key-container/key-container.component.ts +142 -0
  148. package/src/components/key-container/key-container.scss +33 -0
  149. package/src/components/menu-item/menu-item.component.ts +20 -0
  150. package/src/components/menu-item/menu-item.scss +69 -2
  151. package/src/components/navbar/navbar.component.ts +103 -11
  152. package/src/components/navbar/navbar.scss +6 -1
  153. package/src/components/opt-group/index.ts +12 -0
  154. package/src/components/opt-group/opt-group.component.ts +74 -0
  155. package/src/components/opt-group/opt-group.scss +37 -0
  156. package/src/components/opt-group/opt-group.test.ts +27 -0
  157. package/src/components/option/option.component.ts +1 -16
  158. package/src/components/option/option.scss +4 -0
  159. package/src/components/panel/panel.component.ts +10 -8
  160. package/src/components/panel/panel.scss +20 -0
  161. package/src/components/priority-list/index.ts +12 -0
  162. package/src/components/priority-list/priority-list.component.ts +611 -0
  163. package/src/components/priority-list/priority-list.scss +185 -0
  164. package/src/components/priority-list/priority-list.test.ts +139 -0
  165. package/src/components/progress-bar/progress-bar.component.ts +22 -16
  166. package/src/components/radio/radio.scss +10 -3
  167. package/src/components/select/select.component.ts +812 -72
  168. package/src/components/select/select.scss +108 -2
  169. package/src/components/select/select.test.ts +147 -2
  170. package/src/components/settings-container/settings-container.component.ts +44 -19
  171. package/src/components/settings-container/settings-container.scss +1 -1
  172. package/src/components/skeleton/skeleton.component.ts +6 -1
  173. package/src/components/slideout/slideout.scss +8 -3
  174. package/src/components/sp/sp.component.ts +3 -1
  175. package/src/components/sp/sp.scss +19 -0
  176. package/src/components/stepper/stepper.component.ts +16 -10
  177. package/src/components/textarea/textarea.scss +0 -4
  178. package/src/components/tile/tile.component.ts +12 -3
  179. package/src/components/tile/tile.scss +1 -1
  180. package/src/components/timer/timer.component.ts +15 -2
  181. package/src/components/toggle/toggle.component.ts +29 -26
  182. package/src/components/toggle/toggle.scss +13 -1
  183. package/src/components/translation-group/index.ts +12 -0
  184. package/src/components/translation-group/translation-group.component.ts +207 -0
  185. package/src/components/translation-group/translation-group.scss +8 -0
  186. package/src/components/translations/translations.component.ts +90 -44
  187. package/src/components/translations/translations.scss +4 -0
  188. package/src/components/vertical-stepper/vertical-stepper.component.ts +14 -9
  189. package/src/events/events.ts +12 -7
  190. package/src/events/zn-language-change.ts +7 -0
  191. package/src/events/zn-purchase.ts +11 -0
  192. package/src/events/zn-redirect.ts +7 -0
  193. package/src/events/zn-reorder.ts +7 -0
  194. package/src/events/zn-search-change.ts +11 -0
  195. package/src/events/zn-submit.ts +1 -1
  196. package/src/form-control.scss +4 -0
  197. package/src/internal/form-navigation.ts +510 -0
  198. package/src/internal/form.ts +6 -0
  199. package/src/zinc.ts +91 -83
@@ -13,17 +13,6 @@
13
13
  }
14
14
  ]
15
15
  },
16
- {
17
- "name": "zn-action-bar",
18
- "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.",
19
- "attributes": [],
20
- "references": [
21
- {
22
- "name": "Documentation",
23
- "url": "https://zinc.style/components/action-bar"
24
- }
25
- ]
26
- },
27
16
  {
28
17
  "name": "zn-alert",
29
18
  "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.",
@@ -59,6 +48,75 @@
59
48
  }
60
49
  ]
61
50
  },
51
+ {
52
+ "name": "zn-action-bar",
53
+ "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.",
54
+ "attributes": [],
55
+ "references": [
56
+ {
57
+ "name": "Documentation",
58
+ "url": "https://zinc.style/components/action-bar"
59
+ }
60
+ ]
61
+ },
62
+ {
63
+ "name": "zn-animated-button",
64
+ "description": "\n---\n\n\n### **Methods:**\n - **purchase(): _void_** - Programmatically trigger the purchase flow\n- **setSuccess(): _void_** - Set the button to success state manually\n- **setFailure(message): _void_** - Set the button to failure state manually with optional error message\n- **reset(): _void_** - Reset the button to idle state",
65
+ "attributes": [
66
+ {
67
+ "name": "idle-text",
68
+ "description": "The text to display in the idle state",
69
+ "values": []
70
+ },
71
+ {
72
+ "name": "processing-text",
73
+ "description": "The text to display in the processing state",
74
+ "values": []
75
+ },
76
+ {
77
+ "name": "success-text",
78
+ "description": "The text to display in the success state",
79
+ "values": []
80
+ },
81
+ {
82
+ "name": "failure-text",
83
+ "description": "The text to display in the failure state",
84
+ "values": []
85
+ },
86
+ {
87
+ "name": "redirect-url",
88
+ "description": "The URL to redirect to after successful purchase",
89
+ "values": []
90
+ },
91
+ {
92
+ "name": "redirect-delay",
93
+ "description": "Delay in milliseconds before redirecting after success (default: 1500ms)",
94
+ "values": []
95
+ },
96
+ {
97
+ "name": "failure-reset-delay",
98
+ "description": "Delay in milliseconds before resetting from failure state (default: 2000ms)",
99
+ "values": []
100
+ },
101
+ { "name": "disabled", "description": "Disabled state", "values": [] },
102
+ {
103
+ "name": "name",
104
+ "description": "The name of the form control (required for form submission)",
105
+ "values": []
106
+ },
107
+ {
108
+ "name": "value",
109
+ "description": "The value of the form control",
110
+ "values": []
111
+ }
112
+ ],
113
+ "references": [
114
+ {
115
+ "name": "Documentation",
116
+ "url": "https://zinc.style/components/animated-button"
117
+ }
118
+ ]
119
+ },
62
120
  {
63
121
  "name": "zn-audio-select",
64
122
  "description": "Short summary of the component's intended use.\n---\n\n\n### **Slots:**\n - _default_ - The default slot.\n- **actions** - The actions slot.\n- **footer** - The footer 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.",
@@ -337,6 +395,11 @@
337
395
  "description": "Draws a container around the checkbox.",
338
396
  "values": []
339
397
  },
398
+ {
399
+ "name": "borderless",
400
+ "description": "Removes a container around the checkbox.",
401
+ "values": []
402
+ },
340
403
  {
341
404
  "name": "horizontal",
342
405
  "description": "Applies styles relevant to checkboxes in a horizontal layout.",
@@ -468,6 +531,8 @@
468
531
  "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.",
469
532
  "attributes": [
470
533
  { "name": "icon", "values": [] },
534
+ { "name": "caption", "values": [] },
535
+ { "name": "icon-size", "values": [] },
471
536
  {
472
537
  "name": "type",
473
538
  "values": [
@@ -640,6 +705,7 @@
640
705
  { "name": "value", "values": [] },
641
706
  { "name": "copy-label", "values": [] },
642
707
  { "name": "src", "values": [] },
708
+ { "name": "size", "values": [] },
643
709
  {
644
710
  "name": "from",
645
711
  "description": "An id that references an element in the same document from which data will be copied. If both this and `value` are\npresent, this value will take precedence. By default, the target element's `textContent` will be copied. To copy an\nattribute, append the attribute name wrapped in square brackets, e.g. `from=\"el[value]\"`. To copy a property,\nappend a dot and the property name, e.g. `from=\"el.value\"`.",
@@ -655,7 +721,7 @@
655
721
  },
656
722
  {
657
723
  "name": "zn-data-select",
658
- "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.",
724
+ "description": "A select component with built-in data providers for common options like colors, currencies, and countries.\n---\n\n\n### **Events:**\n - **zn-input** - Emitted when the select's value changes.\n- **zn-clear** - Emitted when the clear button is activated.\n- **blur** - Emitted when the select loses focus.\n\n### **Slots:**\n - **label** - The select's label. Alternatively, you can use the `label` attribute.\n- **label-tooltip** - Used to add text that is displayed in a tooltip next to the label. Alternatively, you can use the `label-tooltip` attribute.\n- **context-note** - Used to add contextual text that is displayed above the select, on the right. Alternatively, you can use the `context-note` attribute.\n- **help-text** - Text that describes how to use the select. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **combobox** - The container that wraps the prefix, combobox, clear icon, and expand button (forwarded from zn-select).\n- **expand-icon** - The container that wraps the expand icon (forwarded from zn-select).\n- **form-control-help-text** - The help text's wrapper (forwarded from zn-select).\n- **form-control-input** - The select's wrapper (forwarded from zn-select).\n- **display-input** - The element that displays the selected option's label (forwarded from zn-select).",
659
725
  "attributes": [
660
726
  {
661
727
  "name": "name",
@@ -664,8 +730,8 @@
664
730
  },
665
731
  {
666
732
  "name": "value",
667
- "description": "The value of the select. Used for form submission.",
668
- "values": []
733
+ "description": "The value of the select. Used for form submission. When `multiple` is enabled, this is an array of strings.",
734
+ "values": [{ "name": "string[]" }]
669
735
  },
670
736
  {
671
737
  "name": "provider",
@@ -674,7 +740,8 @@
674
740
  { "name": "color" },
675
741
  { "name": "currency" },
676
742
  { "name": "country" },
677
- { "name": "phone" }
743
+ { "name": "phone" },
744
+ { "name": "us-state" }
678
745
  ]
679
746
  },
680
747
  {
@@ -706,6 +773,11 @@
706
773
  "description": "Include an \"All\" option at the top.",
707
774
  "values": []
708
775
  },
776
+ {
777
+ "name": "allow-common",
778
+ "description": "Include a \"Common\" option that selects multiple common currencies.",
779
+ "values": []
780
+ },
709
781
  {
710
782
  "name": "label",
711
783
  "description": "The selects label. If you need to display HTML, use the `label` slot instead.",
@@ -736,8 +808,16 @@
736
808
  "description": "The selects required attribute.",
737
809
  "values": []
738
810
  },
811
+ {
812
+ "name": "disabled",
813
+ "description": "Disables the select.",
814
+ "values": []
815
+ },
739
816
  { "name": "icon-only", "values": [] },
740
- { "name": "multiple", "values": [] }
817
+ { "name": "multiple", "values": [] },
818
+ { "name": "select-first", "values": [] },
819
+ { "name": "distinct", "values": [] },
820
+ { "name": "conditional", "values": [] }
741
821
  ],
742
822
  "references": [
743
823
  {
@@ -748,7 +828,7 @@
748
828
  },
749
829
  {
750
830
  "name": "zn-data-table",
751
- "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.",
831
+ "description": "Short summary of the component's intended use.\n---\n\n\n### **Slots:**\n - _default_ - The default slot.\n- **search** - Slot for search component.\n- **sort** - Slot for sort component.\n- **filter** - Slot for filter component.\n- **filter-top** - Slot for top-level filter component.\n- **delete-action** - Slot for delete action button.\n- **modify-action** - Slot for modify action button.\n- **create-action** - Slot for create action button.\n- **inputs** - Slot for additional input controls.\n- **empty-state** - Slot for custom empty state.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
752
832
  "attributes": [
753
833
  { "name": "data-uri", "values": [] },
754
834
  { "name": "data", "values": [] },
@@ -756,6 +836,7 @@
756
836
  { "name": "sort-direction", "values": [] },
757
837
  { "name": "local-sort", "values": [] },
758
838
  { "name": "filter", "values": [] },
839
+ { "name": "search", "values": [] },
759
840
  { "name": "wide-column", "values": [] },
760
841
  { "name": "key", "values": [] },
761
842
  {
@@ -800,6 +881,48 @@
800
881
  }
801
882
  ]
802
883
  },
884
+ {
885
+ "name": "zn-data-table-search",
886
+ "description": "A search component for data tables.\n---\n\n\n### **Events:**\n - **zn-search-change** - Emitted when the search value changes (debounced).\n\n### **Methods:**\n - **getFormData(): _Record<string, any>_** - Collects form data from slotted input elements\n\n### **Slots:**\n - _default_ - The default slot for additional form inputs.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
887
+ "attributes": [
888
+ {
889
+ "name": "name",
890
+ "description": "The name of the search input field (default: \"search\").",
891
+ "values": []
892
+ },
893
+ {
894
+ "name": "value",
895
+ "description": "The current search value.",
896
+ "values": []
897
+ },
898
+ {
899
+ "name": "placeholder",
900
+ "description": "The placeholder text for the search input (default: \"Search...\").",
901
+ "values": []
902
+ },
903
+ {
904
+ "name": "help-text",
905
+ "description": "Help text displayed below the search input.",
906
+ "values": []
907
+ },
908
+ {
909
+ "name": "search-uri",
910
+ "description": "Optional URI to use for search operations.",
911
+ "values": []
912
+ },
913
+ {
914
+ "name": "debounce-delay",
915
+ "description": "The delay in milliseconds before triggering a search (default: 500).",
916
+ "values": []
917
+ }
918
+ ],
919
+ "references": [
920
+ {
921
+ "name": "Documentation",
922
+ "url": "https://zinc.style/components/data-table-search"
923
+ }
924
+ ]
925
+ },
803
926
  {
804
927
  "name": "zn-data-table-sort",
805
928
  "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.",
@@ -813,7 +936,7 @@
813
936
  },
814
937
  {
815
938
  "name": "zn-datepicker",
816
- "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-event-name** - Emitted as an example.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the input.\n- **blur()** - Removes focus from the input.\n- **select()** - Selects all the text in the input.\n- **checkValidity(): _boolean_** - Checks the validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\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.",
939
+ "description": "A date picker component with calendar popup and input validation.\n---\n\n\n### **Events:**\n - **zn-change** - Emitted when the date value changes.\n- **zn-input** - Emitted when the input value changes.\n- **zn-blur** - Emitted when the input loses focus.\n- **zn-focus** - Emitted when the input gains focus.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the input.\n- **blur()** - Removes focus from the input.\n- **select()** - Selects all the text in the input.\n- **checkValidity(): _boolean_** - Checks the validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - **label** - The datepicker's label. Alternatively, you can use the `label` attribute.\n- **label-tooltip** - Tooltip content for the label. Alternatively, you can use the `label-tooltip` attribute.\n- **context-note** - Additional context text displayed above the input. Alternatively, you can use the `context-note` attribute.\n- **help-text** - Help text displayed below the input. Alternatively, you can use the `help-text` attribute.\n- **prefix** - Content to display before the input (in addition to the default calendar icon).\n- **suffix** - Content to display after the input.\n\n### **CSS Properties:**\n - **--zn-input-*** - Inherited input component CSS custom properties. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **form-control** - The form control wrapper.\n- **form-control-label** - The label element.\n- **form-control-input** - The input wrapper.\n- **form-control-help-text** - The help text element.",
817
940
  "attributes": [
818
941
  { "name": "title", "values": [] },
819
942
  {
@@ -875,15 +998,41 @@
875
998
  "description": "By default, form-controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside a form and associate it with the form that has this `id`. The form must be\nin the same document or shadow root for this to work.",
876
999
  "values": []
877
1000
  },
1001
+ { "name": "flush", "values": [] },
878
1002
  {
879
1003
  "name": "required",
880
1004
  "description": "Makes the input a required field.",
881
1005
  "values": []
882
1006
  },
1007
+ {
1008
+ "name": "clearable",
1009
+ "description": "Adds a clear button to the calendar for removing a selected date. *",
1010
+ "values": []
1011
+ },
883
1012
  {
884
1013
  "name": "range",
885
1014
  "description": "Makes the input a range picker. *",
886
1015
  "values": []
1016
+ },
1017
+ {
1018
+ "name": "disable-past-dates",
1019
+ "description": "Disallows selecting past dates. *",
1020
+ "values": []
1021
+ },
1022
+ {
1023
+ "name": "min-date",
1024
+ "description": "Minimum date that can be selected. Overrides disable-past-dates if both are set. Accepts Date object or date string. *",
1025
+ "values": [{ "name": "Date" }]
1026
+ },
1027
+ {
1028
+ "name": "max-date",
1029
+ "description": "Maximum date that can be selected. Accepts Date object or date string. *",
1030
+ "values": [{ "name": "Date" }]
1031
+ },
1032
+ {
1033
+ "name": "format",
1034
+ "description": "Date format using AirDatepicker tokens. Default: 'dd/MM/yyyy' Supported formats: - dd/MM/yyyy (31/12/2024) - Default - MM/dd/yyyy (12/31/2024) - yyyy-MM-dd (2024-12-31) - dd-MM-yyyy (31-12-2024) - yyyy/MM/dd (2024/12/31)",
1035
+ "values": []
887
1036
  }
888
1037
  ],
889
1038
  "references": [
@@ -940,7 +1089,8 @@
940
1089
  "values": [
941
1090
  { "name": "small" },
942
1091
  { "name": "medium" },
943
- { "name": "large" }
1092
+ { "name": "large" },
1093
+ { "name": "custom" }
944
1094
  ]
945
1095
  },
946
1096
  {
@@ -1336,6 +1486,8 @@
1336
1486
  { "name": "alt", "values": [] },
1337
1487
  { "name": "size", "values": [] },
1338
1488
  { "name": "round", "values": [] },
1489
+ { "name": "tile", "values": [] },
1490
+ { "name": "depth", "values": [] },
1339
1491
  { "name": "library", "values": [{ "name": "IconLibrary" }] },
1340
1492
  { "name": "color", "values": [{ "name": "IconColor" }] },
1341
1493
  { "name": "padded", "values": [] },
@@ -1346,11 +1498,34 @@
1346
1498
  { "name": "Documentation", "url": "https://zinc.style/components/icon" }
1347
1499
  ]
1348
1500
  },
1501
+ {
1502
+ "name": "zn-icon-picker",
1503
+ "description": "\n---\n",
1504
+ "attributes": [
1505
+ { "name": "name", "values": [] },
1506
+ { "name": "icon", "values": [] },
1507
+ { "name": "label", "values": [] },
1508
+ { "name": "library", "values": [] },
1509
+ { "name": "color", "values": [] },
1510
+ { "name": "no-color", "values": [] },
1511
+ { "name": "no-library", "values": [] },
1512
+ { "name": "help-text", "values": [] },
1513
+ { "name": "disabled", "values": [] },
1514
+ { "name": "required", "values": [] },
1515
+ { "name": "form", "values": [] }
1516
+ ],
1517
+ "references": [
1518
+ {
1519
+ "name": "Documentation",
1520
+ "url": "https://zinc.style/components/icon-picker"
1521
+ }
1522
+ ]
1523
+ },
1349
1524
  {
1350
1525
  "name": "zn-inline-edit",
1351
- "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.",
1526
+ "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_ - Default slot. When `input-type` is `select`, accepts `zn-option` elements to define select options. If provided, takes precedence over the `options` property.\n- **example** - An example slot.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
1352
1527
  "attributes": [
1353
- { "name": "value", "values": [] },
1528
+ { "name": "value", "values": [{ "name": "string[]" }] },
1354
1529
  { "name": "name", "values": [] },
1355
1530
  { "name": "placeholder", "values": [] },
1356
1531
  { "name": "edit-text", "values": [] },
@@ -1367,13 +1542,19 @@
1367
1542
  },
1368
1543
  { "name": "required", "values": [] },
1369
1544
  { "name": "pattern", "values": [] },
1545
+ { "name": "multiple", "values": [] },
1546
+ { "name": "clearable", "values": [] },
1547
+ { "name": "min", "values": [] },
1548
+ { "name": "max", "values": [] },
1549
+ { "name": "step", "values": [{ "name": "any" }] },
1370
1550
  {
1371
1551
  "name": "input-type",
1372
1552
  "values": [
1373
1553
  { "name": "select" },
1374
1554
  { "name": "text" },
1375
1555
  { "name": "data-select" },
1376
- { "name": "number" }
1556
+ { "name": "number" },
1557
+ { "name": "textarea" }
1377
1558
  ]
1378
1559
  },
1379
1560
  {
@@ -1385,10 +1566,35 @@
1385
1566
  "name": "icon-position",
1386
1567
  "values": [{ "name": "start" }, { "name": "end" }, { "name": "none" }]
1387
1568
  },
1569
+ {
1570
+ "name": "data-uri",
1571
+ "description": "The URL to fetch options from. When set , the component fetches JSON from this URL and renders the results as\noptions. The expected format is an array of objects with `key` and `value` properties:\n`[{\"key\": \"us\", \"value\": \"United States\"}, ...]`\nWhen not set, the component works exactly as before using slotted `<zn-option>` elements.\nOnly works with type select.",
1572
+ "values": []
1573
+ },
1574
+ {
1575
+ "name": "context-data",
1576
+ "description": "Context data to send as a header when fetching options from the URL specified by the `src` property.",
1577
+ "values": []
1578
+ },
1579
+ {
1580
+ "name": "search",
1581
+ "description": "Enables search/filtering on select inputs.",
1582
+ "values": []
1583
+ },
1388
1584
  {
1389
1585
  "name": "help-text",
1390
1586
  "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead. *",
1391
1587
  "values": []
1588
+ },
1589
+ {
1590
+ "name": "dir",
1591
+ "description": "The text direction for the input (ltr or rtl) *",
1592
+ "values": [{ "name": "ltr" }, { "name": "rtl" }, { "name": "auto" }]
1593
+ },
1594
+ {
1595
+ "name": "autocomplete",
1596
+ "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
1597
+ "values": []
1392
1598
  }
1393
1599
  ],
1394
1600
  "references": [
@@ -1407,6 +1613,7 @@
1407
1613
  "name": "type",
1408
1614
  "description": "The type of input. Works the same as native `<input>` element. But only a subset of types is supported. Defaults\nto `text`",
1409
1615
  "values": [
1616
+ { "name": "color" },
1410
1617
  { "name": "currency" },
1411
1618
  { "name": "date" },
1412
1619
  { "name": "datetime-local" },
@@ -1510,6 +1717,16 @@
1510
1717
  "description": "Hides the browsers built-in increment/decrement spin buttons for number inputs *",
1511
1718
  "values": []
1512
1719
  },
1720
+ {
1721
+ "name": "color-format",
1722
+ "description": "The color format to display for color inputs. Only applies when type is 'color'. *",
1723
+ "values": [
1724
+ { "name": "hex" },
1725
+ { "name": "rgb" },
1726
+ { "name": "hsl" },
1727
+ { "name": "oklch" }
1728
+ ]
1729
+ },
1513
1730
  {
1514
1731
  "name": "form",
1515
1732
  "description": "By default, form-controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside a form and associate it with the form that has this `id`. The form must be\nin the same document or shadow root for this to work.",
@@ -1625,6 +1842,11 @@
1625
1842
  "name": "label",
1626
1843
  "description": "The input group's label. If you need to display HTML, use the `label` slot.",
1627
1844
  "values": []
1845
+ },
1846
+ {
1847
+ "name": "gap",
1848
+ "description": "Adds a gap between the grouped elements, preserving individual border radii. Use `sm`, `md`, or `lg`.",
1849
+ "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
1628
1850
  }
1629
1851
  ],
1630
1852
  "references": [
@@ -1650,6 +1872,7 @@
1650
1872
  ]
1651
1873
  },
1652
1874
  { "name": "edit-on-hover", "values": [] },
1875
+ { "name": "help-tooltip", "values": [] },
1653
1876
  { "name": "icon", "values": [] },
1654
1877
  { "name": "value", "values": [] },
1655
1878
  { "name": "inline", "values": [] },
@@ -1662,6 +1885,56 @@
1662
1885
  { "name": "Documentation", "url": "https://zinc.style/components/item" }
1663
1886
  ]
1664
1887
  },
1888
+ {
1889
+ "name": "zn-key",
1890
+ "description": "A legend key item, typically used alongside charts to label and toggle visibility of data series by category.\n---\n\n\n### **Slots:**\n - _default_ - The description of the key.",
1891
+ "attributes": [
1892
+ { "name": "icon", "values": [] },
1893
+ { "name": "attribute", "values": [] },
1894
+ { "name": "value", "values": [] },
1895
+ {
1896
+ "name": "color",
1897
+ "values": [
1898
+ { "name": "primary" },
1899
+ { "name": "success" },
1900
+ { "name": "warning" },
1901
+ { "name": "error" },
1902
+ { "name": "info" },
1903
+ { "name": "neutral" }
1904
+ ]
1905
+ },
1906
+ { "name": "active", "values": [] },
1907
+ { "name": "icon-size", "values": [] }
1908
+ ],
1909
+ "references": [
1910
+ { "name": "Documentation", "url": "https://zinc.style/components/key" }
1911
+ ]
1912
+ },
1913
+ {
1914
+ "name": "zn-key-container",
1915
+ "description": "A legend container that manages key items, typically used alongside charts to toggle visibility of data series by category.\n---\n\n\n### **Events:**\n - **zn-change** - Emitted when the set of active keys changes.\n\n### **Slots:**\n - _default_ - The content to be filtered.\n- **keys** - The key items (zn-key) that define the filters.",
1916
+ "attributes": [
1917
+ {
1918
+ "name": "position",
1919
+ "values": [
1920
+ { "name": "top-end" },
1921
+ { "name": "top-start" },
1922
+ { "name": "bottom-end" },
1923
+ { "name": "bottom-start" }
1924
+ ]
1925
+ },
1926
+ { "name": "target", "values": [] },
1927
+ { "name": "item-selector", "values": [] },
1928
+ { "name": "filter-attribute", "values": [] },
1929
+ { "name": "no-scroll", "values": [] }
1930
+ ],
1931
+ "references": [
1932
+ {
1933
+ "name": "Documentation",
1934
+ "url": "https://zinc.style/components/key-container"
1935
+ }
1936
+ ]
1937
+ },
1665
1938
  {
1666
1939
  "name": "zn-linked-select",
1667
1940
  "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.",
@@ -1740,7 +2013,32 @@
1740
2013
  },
1741
2014
  { "name": "rel", "values": [] },
1742
2015
  { "name": "gaid", "values": [] },
1743
- { "name": "confirm", "values": [] }
2016
+ { "name": "confirm", "values": [] },
2017
+ {
2018
+ "name": "flush",
2019
+ "description": "Removes all padding from the menu item.",
2020
+ "values": []
2021
+ },
2022
+ {
2023
+ "name": "flush-x",
2024
+ "description": "Removes horizontal (left/right) padding only. Ignored if flush is set.",
2025
+ "values": []
2026
+ },
2027
+ {
2028
+ "name": "flush-y",
2029
+ "description": "Removes vertical (top/bottom) padding only. Ignored if flush is set.",
2030
+ "values": []
2031
+ },
2032
+ {
2033
+ "name": "no-border",
2034
+ "description": "Removes the border from the menu item.",
2035
+ "values": []
2036
+ },
2037
+ {
2038
+ "name": "active",
2039
+ "description": "Marks the menu item as currently active/selected.",
2040
+ "values": []
2041
+ }
1744
2042
  ],
1745
2043
  "references": [
1746
2044
  {
@@ -1765,6 +2063,10 @@
1765
2063
  { "name": "no-pad", "values": [{ "name": "false" }] },
1766
2064
  { "name": "manual-add-items", "values": [] },
1767
2065
  { "name": "isolated", "values": [] },
2066
+ { "name": "master-id", "values": [] },
2067
+ { "name": "store-key", "values": [] },
2068
+ { "name": "store-ttl", "values": [] },
2069
+ { "name": "local-storage", "values": [] },
1768
2070
  { "name": "_appended", "values": [{ "name": "Element[]" }] }
1769
2071
  ],
1770
2072
  "references": [
@@ -1787,13 +2089,35 @@
1787
2089
  { "name": "Documentation", "url": "https://zinc.style/components/note" }
1788
2090
  ]
1789
2091
  },
2092
+ {
2093
+ "name": "zn-opt-group",
2094
+ "description": "Groups options within a `<zn-select>` under a labeled header, similar to `<optgroup>` in native HTML.\n---\n\n\n### **Slots:**\n - _default_ - The default slot for `<zn-option>` elements.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **label** - The group label element.",
2095
+ "attributes": [
2096
+ {
2097
+ "name": "label",
2098
+ "description": "The label for the opt-group, displayed as a non-selectable header above the grouped options.",
2099
+ "values": []
2100
+ },
2101
+ {
2102
+ "name": "disabled",
2103
+ "description": "Disables all options within the group.",
2104
+ "values": []
2105
+ }
2106
+ ],
2107
+ "references": [
2108
+ {
2109
+ "name": "Documentation",
2110
+ "url": "https://zinc.style/components/opt-group"
2111
+ }
2112
+ ]
2113
+ },
1790
2114
  {
1791
2115
  "name": "zn-option",
1792
2116
  "description": "Short summary of the component's intended use.\n---\n\n\n### **Methods:**\n - **getTextLabel()** - Returns a plain text label based on the option's content.\n\n### **Slots:**\n - _default_ - The option's label.\n- **prefix** - Used to prepend an icon or similar element to the menu item.\n- **suffix** - Used to append an icon or similar element to the menu item.\n\n### **CSS Parts:**\n - **checked-option-icon** - The checked option icon, an `<zn-icon>` element.\n- **base** - The component's base wrapper.\n- **label** - The option's label.\n- **prefix** - The container that wraps the prefix.\n- **suffix** - The container that wraps the suffix.",
1793
2117
  "attributes": [
1794
2118
  {
1795
2119
  "name": "value",
1796
- "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 not contain spaces, as spaces are used as delimiters when listing\nmultiple values.",
2120
+ "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.",
1797
2121
  "values": []
1798
2122
  },
1799
2123
  {
@@ -1881,7 +2205,7 @@
1881
2205
  },
1882
2206
  {
1883
2207
  "name": "zn-panel",
1884
- "description": "Short summary of the component's intended use.\n---\n\n\n### **Slots:**\n - _default_ - The default slot.\n- **actions** - The actions slot.\n- **footer** - The footer 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.",
2208
+ "description": "Panels are versatile containers that provide structure for organizing content with optional headers and footers.\n---\n\n\n### **Slots:**\n - _default_ - The panel's main content.\n- **actions** - Actions displayed in the panel header (buttons, chips, etc).\n- **footer** - Content displayed in the panel footer.\n\n### **CSS Properties:**\n - **--zn-panel-basis** - The flex-basis of the panel. Can be set using the basis-px attribute. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
1885
2209
  "attributes": [
1886
2210
  { "name": "basis-px", "values": [] },
1887
2211
  { "name": "caption", "values": [] },
@@ -2053,9 +2377,85 @@
2053
2377
  }
2054
2378
  ]
2055
2379
  },
2380
+ {
2381
+ "name": "zn-priority-list",
2382
+ "description": "A reorderable list where each item receives a numerical priority based on its position. Supports drag-and-drop\nand keyboard reordering. Priority values are submitted as form data via hidden inputs.\n---\n\n\n### **Events:**\n - **zn-change** - Emitted when the order of items changes.\n- **zn-reorder** - Emitted when items are reordered. Call `getPriorityMap()` on the component to get the updated `{ key: string, priority: number }[]` array.\n\n### **Methods:**\n - **getPriorityMap(): _PriorityItem[]_** - Returns the priority map: an array of { key, priority } objects.\n- **checkValidity(): _boolean_** - Checks for validity but does not show a validation message.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity(): _boolean_** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(_message)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - _default_ - The default slot where list items are placed. Each slotted element must have a `value` attribute that uniquely identifies the item. The component automatically assigns slot names to project each item into the correct position. The item's position in the list determines its priority (top = `priority-start`, incrementing).\n- **label** - The component's label. Required for proper accessibility. Alternatively, use the `label` attribute.\n- **label-tooltip** - Used to add text displayed in a tooltip next to the label.\n- **help-text** - Text that describes how to use the component. Alternatively, use the `help-text` attribute.\n\n### **CSS Properties:**\n - **--zn-priority-list-item-gap** - The gap between list items. Defaults to `var(--zn-spacing-2x-small)`. _(default: undefined)_\n- **--zn-priority-list-item-padding** - The padding inside each item. Defaults to `var(--zn-spacing-small) var(--zn-spacing-medium)`. _(default: undefined)_\n- **--zn-priority-list-handle-color** - The color of the drag handle. Defaults to `var(--zn-color-neutral-500)`. _(default: undefined)_\n- **--zn-priority-list-priority-color** - The color of the priority number. Defaults to `var(--zn-color-neutral-600)`. _(default: undefined)_\n\n### **CSS Parts:**\n - **form-control** - The form control wrapper.\n- **form-control-label** - The label wrapper.\n- **form-control-input** - The input area wrapper.\n- **form-control-help-text** - The help text wrapper.\n- **list** - The list container.\n- **item** - An individual list item row.\n- **drag-handle** - The drag handle icon.\n- **priority** - The priority number badge.\n- **content** - The content area of an item.",
2383
+ "attributes": [
2384
+ {
2385
+ "name": "name",
2386
+ "description": "The name prefix for form submission. Each item generates a hidden input named `{name}[{itemValue}]`\nwith the priority number as its value.",
2387
+ "values": []
2388
+ },
2389
+ {
2390
+ "name": "value",
2391
+ "description": "The current ordered list of item keys, reflecting the visual order. This is the source of truth for ordering.\nEach entry should match a `value` attribute on a slotted child element.",
2392
+ "values": [{ "name": "string[]" }]
2393
+ },
2394
+ {
2395
+ "name": "label",
2396
+ "description": "The component's label. Required for proper accessibility.",
2397
+ "values": []
2398
+ },
2399
+ {
2400
+ "name": "label-tooltip",
2401
+ "description": "Text that appears in a tooltip next to the label.",
2402
+ "values": []
2403
+ },
2404
+ {
2405
+ "name": "help-text",
2406
+ "description": "Help text that describes how to use the component.",
2407
+ "values": []
2408
+ },
2409
+ {
2410
+ "name": "form",
2411
+ "description": "Associates the control with a form by id. The form must be in the same document or shadow root.",
2412
+ "values": []
2413
+ },
2414
+ {
2415
+ "name": "size",
2416
+ "description": "The size of the list items.",
2417
+ "values": [
2418
+ { "name": "small" },
2419
+ { "name": "medium" },
2420
+ { "name": "large" }
2421
+ ]
2422
+ },
2423
+ {
2424
+ "name": "disabled",
2425
+ "description": "Whether the priority list is disabled.",
2426
+ "values": []
2427
+ },
2428
+ {
2429
+ "name": "required",
2430
+ "description": "Ensures the form control has a value before allowing submission.",
2431
+ "values": []
2432
+ },
2433
+ {
2434
+ "name": "priority-start",
2435
+ "description": "The starting priority number. Defaults to 1.",
2436
+ "values": []
2437
+ },
2438
+ {
2439
+ "name": "formaction",
2440
+ "description": "When set, the associated form will be submitted with the given action URL whenever items are reordered.\nIf set to an empty string, the form will be submitted using its existing action.",
2441
+ "values": []
2442
+ },
2443
+ {
2444
+ "name": "order",
2445
+ "description": "A comma-separated list of item keys defining the initial display order.\nKeys must match the `value` attributes on slotted children.\nAny slotted items not listed are appended at the end in DOM order.",
2446
+ "values": []
2447
+ }
2448
+ ],
2449
+ "references": [
2450
+ {
2451
+ "name": "Documentation",
2452
+ "url": "https://zinc.style/components/priority-list"
2453
+ }
2454
+ ]
2455
+ },
2056
2456
  {
2057
2457
  "name": "zn-progress-bar",
2058
- "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.",
2458
+ "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.",
2059
2459
  "attributes": [
2060
2460
  { "name": "caption", "values": [] },
2061
2461
  { "name": "description", "values": [] },
@@ -2301,13 +2701,14 @@
2301
2701
  },
2302
2702
  {
2303
2703
  "name": "zn-select",
2304
- "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-change** - Emitted when the control's value changes.\n- **zn-clear** - Emitted when the control's value is cleared.\n- **zn-input** - Emitted when the control receives input.\n- **zn-focus** - Emitted when the control gains focus.\n- **zn-blur** - Emitted when the control loses focus.\n- **zn-show** - Emitted when the select's menu opens.\n- **zn-after-show** - Emitted after the select's menu opens and all animations are complete.\n- **zn-hide** - Emitted when the select's menu closes.\n- **zn-after-hide** - Emitted after the select's menu closes and all animations are complete.\n- **zn-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **show()** - Shows the listbox.\n- **hide()** - Hides the listbox.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n- **focus(options: _FocusOptions_)** - Sets focus on the control.\n- **blur()** - Removes focus from the control.\n\n### **Slots:**\n - _default_ - The listbox options. Must be `<zn-option>` elements. You can use `<zn-divider>` to group items visually.\n- **label** - The input's label. Alternatively, you can use the `label` attribute.\n- **label-tooltip** - Used to add text that is displayed in a tooltip next to the label. Alternatively, you can use the `label-tooltip` attribute.\n- **context-note** - Used to add contextual text that is displayed above the select, on the right. Alternatively, you can use the `context-note` attribute.\n- **prefix** - Used to prepend a presentational icon or similar element to the combobox.\n- **clear-icon** - An icon to use in lieu of the default clear icon.\n- **expand-icon** - The icon to show when the control is expanded and collapsed. Rotates on open and close.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and help text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The select's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **combobox** - The container the wraps the prefix, combobox, clear icon, and expand button.\n- **prefix** - The container that wraps the prefix slot.\n- **display-input** - The element that displays the selected option's label, an `<input>` element.\n- **listbox** - The listbox container where options are slotted.\n- **tags** - The container that houses option tags when `multiselect` is used.\n- **tag** - The individual tags that represent each multiselect option.\n- **tag__base** - The tag's base part.\n- **tag__content** - The tag's content part.\n- **tag__remove-button** - The tag's remove button.\n- **tag__remove-button__base** - The tag's remove button base part.\n- **clear-button** - The clear button.\n- **expand-icon** - The container that wraps the expand icon.",
2704
+ "description": "Short summary of the component's intended use.\n---\n\n\n### **Events:**\n - **zn-change** - Emitted when the control's value changes.\n- **zn-clear** - Emitted when the control's value is cleared.\n- **zn-input** - Emitted when the control receives input.\n- **zn-focus** - Emitted when the control gains focus.\n- **zn-blur** - Emitted when the control loses focus.\n- **zn-show** - Emitted when the select's menu opens.\n- **zn-after-show** - Emitted after the select's menu opens and all animations are complete.\n- **zn-hide** - Emitted when the select's menu closes.\n- **zn-after-hide** - Emitted after the select's menu closes and all animations are complete.\n- **zn-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n- **zn-load** - Emitted when options have been successfully loaded from the `src` URL.\n- **zn-error** - Emitted when loading options from the `src` URL fails.\n\n### **Methods:**\n - **fetchOptions(searchQuery: _string_)** - Fetches options from the URL specified by the `data-uri` property. Optionally appends a search query.\n- **show()** - Shows the listbox.\n- **hide()** - Hides the listbox.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n- **focus(options: _FocusOptions_)** - Sets focus on the control.\n- **blur()** - Removes focus from the control.\n\n### **Slots:**\n - _default_ - The listbox options. Must be `<zn-option>` elements. You can use `<zn-opt-group>` to group options under a labeled header, or `<zn-divider>` to group items visually.\n- **label** - The input's label. Alternatively, you can use the `label` attribute.\n- **label-tooltip** - Used to add text that is displayed in a tooltip next to the label. Alternatively, you can use the `label-tooltip` attribute.\n- **context-note** - Used to add contextual text that is displayed above the select, on the right. Alternatively, you can use the `context-note` attribute.\n- **prefix** - Used to prepend a presentational icon or similar element to the combobox.\n- **clear-icon** - An icon to use in lieu of the default clear icon.\n- **expand-icon** - The icon to show when the control is expanded and collapsed. Rotates on open and close.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **search-loading** - The container shown while a remote search request is in flight.\n- **max-results-indicator** - The message shown when results are truncated by `max-results`.\n- **form-control** - The form control that wraps the label, input, and help text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The select's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **combobox** - The container the wraps the prefix, combobox, clear icon, and expand button.\n- **prefix** - The container that wraps the prefix slot.\n- **display-input** - The element that displays the selected option's label, an `<input>` element.\n- **listbox** - The listbox container where options are slotted.\n- **tags** - The container that houses option tags when `multiselect` is used.\n- **tag** - The individual tags that represent each multiselect option.\n- **tag__base** - The tag's base part.\n- **tag__content** - The tag's content part.\n- **tag__remove-button** - The tag's remove button.\n- **tag__remove-button__base** - The tag's remove button base part.\n- **clear-button** - The clear button.\n- **expand-icon** - The container that wraps the expand icon.",
2305
2705
  "attributes": [
2306
2706
  {
2307
2707
  "name": "name",
2308
2708
  "description": "The name of the select, submitted as a name/value pair with form data.",
2309
2709
  "values": []
2310
2710
  },
2711
+ { "name": "non-removable", "values": [] },
2311
2712
  {
2312
2713
  "name": "value",
2313
2714
  "description": "The default value of the form control. Primarily used for resetting the form control.",
@@ -2367,6 +2768,11 @@
2367
2768
  "description": "Draws a pill-style select with rounded edges.",
2368
2769
  "values": []
2369
2770
  },
2771
+ {
2772
+ "name": "search",
2773
+ "description": "Enables search/filter functionality. When enabled, the user can type into the select to filter the visible options.",
2774
+ "values": []
2775
+ },
2370
2776
  {
2371
2777
  "name": "label",
2372
2778
  "description": "The select's label. If you need to display HTML, use the `label` slot instead.",
@@ -2412,8 +2818,43 @@
2412
2818
  { "name": "HTMLElement" }
2413
2819
  ]
2414
2820
  },
2821
+ {
2822
+ "name": "select-first",
2823
+ "description": "Automatically select the first option if no value is set.",
2824
+ "values": []
2825
+ },
2415
2826
  { "name": "distinct", "values": [] },
2416
- { "name": "conditional", "values": [] }
2827
+ { "name": "conditional", "values": [] },
2828
+ {
2829
+ "name": "data-uri",
2830
+ "description": "The URL to fetch options from. When set, the component fetches JSON from this URL and renders the results as\noptions. The expected format is an array of objects with `key` and `value` properties:\n`[{\"key\": \"us\", \"value\": \"United States\"}, ...]`\nWhen not set, the component works exactly as before using slotted `<zn-option>` elements.",
2831
+ "values": []
2832
+ },
2833
+ {
2834
+ "name": "context-data",
2835
+ "description": "Context data to send as a header when fetching options from the URL specified by the `src` property.",
2836
+ "values": []
2837
+ },
2838
+ {
2839
+ "name": "max-results",
2840
+ "description": "The maximum number of options to display from a remote fetch response. Set to 0 for unlimited.\nOnly applies when fetching from `data-uri`.",
2841
+ "values": []
2842
+ },
2843
+ {
2844
+ "name": "search-debounce",
2845
+ "description": "Debounce delay in milliseconds for remote search requests. The component waits this long after the user\nstops typing before sending a request.",
2846
+ "values": []
2847
+ },
2848
+ {
2849
+ "name": "search-param",
2850
+ "description": "The query parameter name appended to the `data-uri` URL for remote search requests.\nDefaults to `\"q\"`, e.g. `/api/items?q=search+term`. Set to a custom value like `\"search\"` or `\"filter\"` to match your API.",
2851
+ "values": []
2852
+ },
2853
+ {
2854
+ "name": "search-only",
2855
+ "description": "When set alongside `search` and `data-uri`, the component will not fetch options on initial load.\nOptions are only fetched when the user starts typing a search query.",
2856
+ "values": []
2857
+ }
2417
2858
  ],
2418
2859
  "references": [
2419
2860
  {
@@ -2477,12 +2918,28 @@
2477
2918
  },
2478
2919
  {
2479
2920
  "name": "zn-skeleton",
2480
- "description": "Short summary of the component's intended use.\n---\n",
2921
+ "description": "Skeleton loaders provide visual placeholders while content is loading, improving perceived performance and user experience.\n---\n",
2481
2922
  "attributes": [
2482
- { "name": "speed", "values": [] },
2483
- { "name": "width", "values": [] },
2484
- { "name": "height", "values": [] },
2485
- { "name": "radius", "values": [] }
2923
+ {
2924
+ "name": "speed",
2925
+ "description": "Animation speed for the shimmer effect. Default: \"3s\"",
2926
+ "values": []
2927
+ },
2928
+ {
2929
+ "name": "width",
2930
+ "description": "Width of the skeleton element. Default: \"100%\"",
2931
+ "values": []
2932
+ },
2933
+ {
2934
+ "name": "height",
2935
+ "description": "Height of the skeleton element. Default: \"20px\"",
2936
+ "values": []
2937
+ },
2938
+ {
2939
+ "name": "radius",
2940
+ "description": "Border radius of the skeleton element. Default: \"4px\"",
2941
+ "values": []
2942
+ }
2486
2943
  ],
2487
2944
  "references": [
2488
2945
  {
@@ -2520,7 +2977,7 @@
2520
2977
  },
2521
2978
  {
2522
2979
  "name": "zn-sp",
2523
- "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.",
2980
+ "description": "A flexible layout container for spacing and arranging child elements in rows or columns with configurable gap, padding, and dividers.\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.",
2524
2981
  "attributes": [
2525
2982
  { "name": "divide", "values": [] },
2526
2983
  { "name": "gap", "values": [{ "name": "keyof typeof defaultSizes" }] },
@@ -2529,6 +2986,7 @@
2529
2986
  { "name": "pad-x", "values": [] },
2530
2987
  { "name": "pad-y", "values": [] },
2531
2988
  { "name": "no-gap", "values": [] },
2989
+ { "name": "no-pos", "values": [] },
2532
2990
  { "name": "flush", "values": [] },
2533
2991
  { "name": "flush-x", "values": [] },
2534
2992
  { "name": "flush-y", "values": [] },
@@ -2638,12 +3096,28 @@
2638
3096
  },
2639
3097
  {
2640
3098
  "name": "zn-stepper",
2641
- "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.",
3099
+ "description": "Steppers provide visual feedback about progress through a multi-step process or workflow.\n---\n\n\n### **CSS Parts:**\n - **step-container** - The container holding the progress line and steps.\n- **step-line** - The background line showing the full step track.\n- **step-progress** - The filled progress indicator showing completion.\n- **steps** - The container for individual step markers.\n- **step** - An individual step marker circle.\n- **header** - The header container with caption and progress text.\n- **caption** - The caption text element.\n- **progress** - The progress count text (e.g., \"2 / 5 steps\").\n- **label** - The label text container.\n- **info** - The label text element.",
2642
3100
  "attributes": [
2643
- { "name": "caption", "values": [] },
2644
- { "name": "label", "values": [] },
2645
- { "name": "steps", "values": [] },
2646
- { "name": "value", "values": [] },
3101
+ {
3102
+ "name": "caption",
3103
+ "description": "A descriptive label displayed above the stepper to indicate the current step or phase.",
3104
+ "values": []
3105
+ },
3106
+ {
3107
+ "name": "label",
3108
+ "description": "An optional label displayed above the caption, typically used for the wizard or workflow name.",
3109
+ "values": []
3110
+ },
3111
+ {
3112
+ "name": "steps",
3113
+ "description": "The total number of steps in the process.",
3114
+ "values": []
3115
+ },
3116
+ {
3117
+ "name": "value",
3118
+ "description": "The current step position (0 to steps). Progress is calculated as value/steps.",
3119
+ "values": []
3120
+ },
2647
3121
  { "name": "show-progress", "values": [] }
2648
3122
  ],
2649
3123
  "references": [
@@ -2936,7 +3410,7 @@
2936
3410
  },
2937
3411
  {
2938
3412
  "name": "zn-toggle",
2939
- "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.",
3413
+ "description": "Toggles allow the user to switch an option on or off.\n---\n\n\n### **Events:**\n - **zn-input** - Emitted when the toggle receives input.\n\n### **Slots:**\n - _default_ - The toggle's label.\n\n### **CSS Properties:**\n - **--zn-toggle-margin** - The margin around the toggle switch. Defaults to `8px 0`. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper containing the toggle switch.\n- **control** - The toggle switch control (the circular button that slides).",
2940
3414
  "attributes": [
2941
3415
  { "name": "title", "values": [] },
2942
3416
  { "name": "name", "values": [] },
@@ -2958,7 +3432,8 @@
2958
3432
  { "name": "trigger-submit", "values": [] },
2959
3433
  { "name": "on-text", "values": [] },
2960
3434
  { "name": "off-text", "values": [] },
2961
- { "name": "label", "values": [] }
3435
+ { "name": "label", "values": [] },
3436
+ { "name": "inline", "values": [] }
2962
3437
  ],
2963
3438
  "references": [
2964
3439
  {
@@ -3004,9 +3479,44 @@
3004
3479
  }
3005
3480
  ]
3006
3481
  },
3482
+ {
3483
+ "name": "zn-translation-group",
3484
+ "description": "A panel-styled container that provides a shared language toggle for multiple zn-translations children.\n---\n\n\n### **Events:**\n - **zn-language-change** - Emitted when the active language changes. Detail: `{ language: string }`.\n\n### **Slots:**\n - _default_ - Default slot for `<zn-translations>` elements.\n- **actions** - Actions displayed in the panel header alongside language buttons.\n- **footer** - Content displayed in the panel footer.\n\n### **CSS Properties:**\n - **--zn-panel-basis** - The flex-basis of the panel. Can be set using the basis-px attribute. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
3485
+ "attributes": [
3486
+ {
3487
+ "name": "label",
3488
+ "description": "The group label displayed in the panel header.",
3489
+ "values": []
3490
+ },
3491
+ {
3492
+ "name": "languages",
3493
+ "description": "The available languages for the group.",
3494
+ "values": [{ "name": "Record<string" }, { "name": "string>" }]
3495
+ },
3496
+ { "name": "basis-px", "values": [] },
3497
+ { "name": "caption", "values": [] },
3498
+ { "name": "icon", "values": [] },
3499
+ { "name": "description", "values": [] },
3500
+ { "name": "tabbed", "values": [] },
3501
+ { "name": "header-underline", "values": [] },
3502
+ { "name": "cosmic", "values": [] },
3503
+ { "name": "flush", "values": [] },
3504
+ { "name": "flush-x", "values": [] },
3505
+ { "name": "flush-y", "values": [] },
3506
+ { "name": "flush-footer", "values": [] },
3507
+ { "name": "transparent", "values": [] },
3508
+ { "name": "shadow", "values": [] }
3509
+ ],
3510
+ "references": [
3511
+ {
3512
+ "name": "Documentation",
3513
+ "url": "https://zinc.style/components/translation-group"
3514
+ }
3515
+ ]
3516
+ },
3007
3517
  {
3008
3518
  "name": "zn-translations",
3009
- "description": "\n---\n",
3519
+ "description": "\n---\n\n\n### **Methods:**\n - **setActiveLanguage(language: _string_)** - Sets the active language externally. Used by zn-translation-group.\n- **getActiveLanguage(): _string_** - Returns the currently active language.\n- **addLanguageKey(languageCode: _string_)** - Adds a language key to this component's values if not already present. Used by zn-translation-group.\n- **getValueLanguages(): _string[]_** - Returns all language codes that have values.",
3010
3520
  "attributes": [
3011
3521
  { "name": "name", "values": [] },
3012
3522
  { "name": "value", "values": [] },
@@ -3014,6 +3524,11 @@
3014
3524
  { "name": "disabled", "values": [] },
3015
3525
  { "name": "required", "values": [] },
3016
3526
  { "name": "flush", "values": [] },
3527
+ {
3528
+ "name": "grouped",
3529
+ "description": "When true, hides the individual language navbar and defers language control to a parent zn-translation-group.",
3530
+ "values": []
3531
+ },
3017
3532
  {
3018
3533
  "name": "languages",
3019
3534
  "values": [{ "name": "Record<string" }, { "name": "string>" }]
@@ -3032,13 +3547,33 @@
3032
3547
  },
3033
3548
  {
3034
3549
  "name": "zn-vertical-stepper",
3035
- "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.",
3550
+ "description": "Vertical steppers display a sequence of steps in a vertical layout with descriptions and optional icons.\n---\n\n\n### **Slots:**\n - **icon** - Optional slot for adding an icon or indicator before the step content.\n\n### **CSS Parts:**\n - **vs** - The main container for the vertical stepper.\n- **vs__left** - The left section containing the icon and connecting line.\n- **vs__icon** - The icon container.\n- **vs__line** - The vertical connecting line between steps.\n- **vs__right** - The right section containing caption and description text.\n- **vs__caption** - The caption/title text element.\n- **vs__description** - The description text element.",
3036
3551
  "attributes": [
3037
- { "name": "last", "values": [] },
3038
- { "name": "first", "values": [] },
3039
- { "name": "active", "values": [] },
3040
- { "name": "description", "values": [] },
3041
- { "name": "caption", "values": [] }
3552
+ {
3553
+ "name": "last",
3554
+ "description": "When true, removes the connecting line below this step (use for the final step in a sequence).",
3555
+ "values": []
3556
+ },
3557
+ {
3558
+ "name": "first",
3559
+ "description": "When true, indicates this is the first step in the sequence (affects visual styling).",
3560
+ "values": []
3561
+ },
3562
+ {
3563
+ "name": "active",
3564
+ "description": "When true, highlights this step as the current active step in the process.",
3565
+ "values": []
3566
+ },
3567
+ {
3568
+ "name": "description",
3569
+ "description": "A descriptive text explaining what happens in this step or its current status.",
3570
+ "values": []
3571
+ },
3572
+ {
3573
+ "name": "caption",
3574
+ "description": "The main label/title for this step.",
3575
+ "values": []
3576
+ }
3042
3577
  ],
3043
3578
  "references": [
3044
3579
  {