@skf-design-system/ui-components 1.0.0-beta.5 → 1.0.1-beta.0

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 (204) hide show
  1. package/dist/components/accordion/accordion-item.d.ts +1 -1
  2. package/dist/components/accordion/accordion.component.d.ts +4 -4
  3. package/dist/components/accordion/accordion.component.js +18 -17
  4. package/dist/components/accordion/accordion.styles.d.ts +1 -2
  5. package/dist/components/accordion/accordion.styles.js +5 -4
  6. package/dist/components/alert/alert.component.d.ts +5 -5
  7. package/dist/components/alert/alert.component.js +46 -35
  8. package/dist/components/alert/alert.styles.d.ts +1 -2
  9. package/dist/components/alert/alert.styles.js +29 -24
  10. package/dist/components/breadcrumb/breadcrumb.component.d.ts +29 -0
  11. package/dist/components/breadcrumb/breadcrumb.d.ts +8 -0
  12. package/dist/components/breadcrumb-item/breadcrumb-item.component.d.ts +25 -0
  13. package/dist/components/breadcrumb-item/breadcrumb-item.d.ts +8 -0
  14. package/dist/components/button/button.component.d.ts +29 -5
  15. package/dist/components/button/button.component.js +89 -52
  16. package/dist/components/button/button.styles.js +65 -45
  17. package/dist/components/card/card.component.d.ts +4 -4
  18. package/dist/components/card/card.component.js +35 -24
  19. package/dist/components/card/card.styles.d.ts +1 -2
  20. package/dist/components/card/card.styles.js +14 -12
  21. package/dist/components/checkbox/checkbox.component.d.ts +11 -12
  22. package/dist/components/checkbox/checkbox.component.js +96 -90
  23. package/dist/components/collapse/collapse.component.d.ts +8 -8
  24. package/dist/components/collapse/collapse.component.js +42 -34
  25. package/dist/components/collapse/collapse.styles.js +15 -14
  26. package/dist/components/dialog/dialog.component.d.ts +74 -0
  27. package/dist/components/dialog/dialog.component.js +187 -0
  28. package/dist/components/dialog/dialog.d.ts +8 -0
  29. package/dist/components/dialog/dialog.js +6 -0
  30. package/dist/components/dialog/dialog.styles.d.ts +1 -0
  31. package/dist/components/dialog/dialog.styles.js +91 -0
  32. package/dist/components/divider/divider.component.d.ts +3 -3
  33. package/dist/components/divider/divider.component.js +39 -27
  34. package/dist/components/divider/divider.styles.d.ts +1 -2
  35. package/dist/components/divider/divider.styles.js +26 -26
  36. package/dist/components/heading/heading.component.d.ts +2 -2
  37. package/dist/components/heading/heading.component.js +13 -13
  38. package/dist/components/icon/icon.component.d.ts +2 -5
  39. package/dist/components/icon/icon.component.js +32 -23
  40. package/dist/components/icon/icon.styles.js +53 -47
  41. package/dist/components/input/input.component.d.ts +12 -11
  42. package/dist/components/input/input.component.js +88 -89
  43. package/dist/components/link/link.component.d.ts +7 -6
  44. package/dist/components/link/link.component.js +49 -43
  45. package/dist/components/link/link.styles.js +36 -40
  46. package/dist/components/loader/loader.component.d.ts +2 -2
  47. package/dist/components/loader/loader.component.js +39 -32
  48. package/dist/components/loader/loader.styles.js +11 -10
  49. package/dist/components/logo/logo.component.d.ts +3 -3
  50. package/dist/components/logo/logo.component.js +28 -17
  51. package/dist/components/logo/logo.styles.d.ts +1 -2
  52. package/dist/components/logo/logo.styles.js +11 -9
  53. package/dist/components/menu/menu.component.d.ts +24 -0
  54. package/dist/components/menu/menu.component.js +18 -0
  55. package/dist/components/menu/menu.d.ts +8 -0
  56. package/dist/components/menu/menu.js +6 -0
  57. package/dist/components/menu/menu.styles.d.ts +1 -0
  58. package/dist/components/menu/menu.styles.js +11 -0
  59. package/dist/components/menu-item/menu-item.component.d.ts +25 -0
  60. package/dist/components/menu-item/menu-item.component.js +13 -0
  61. package/dist/components/menu-item/menu-item.d.ts +8 -0
  62. package/dist/components/menu-item/menu-item.js +6 -0
  63. package/dist/components/menu-item/menu-item.styles.d.ts +1 -0
  64. package/dist/components/menu-item/menu-item.styles.js +19 -0
  65. package/dist/components/popover/popover.component.d.ts +29 -0
  66. package/dist/components/popover/popover.component.js +37 -0
  67. package/dist/components/popover/popover.d.ts +8 -0
  68. package/dist/components/popover/popover.js +6 -0
  69. package/dist/components/popover/popover.styles.d.ts +1 -0
  70. package/dist/components/popover/popover.styles.js +12 -0
  71. package/dist/components/progress/progress.component.d.ts +22 -0
  72. package/dist/components/progress/progress.component.js +49 -0
  73. package/dist/components/progress/progress.d.ts +8 -0
  74. package/dist/components/progress/progress.js +6 -0
  75. package/dist/components/progress/progress.styles.d.ts +1 -0
  76. package/dist/components/progress/progress.styles.js +48 -0
  77. package/dist/components/radio/radio.component.d.ts +7 -9
  78. package/dist/components/radio/radio.component.js +95 -79
  79. package/dist/components/select/select.component.d.ts +10 -12
  80. package/dist/components/select/select.component.js +120 -120
  81. package/dist/components/select/select.controllers.d.ts +1 -26
  82. package/dist/components/select/select.controllers.js +35 -95
  83. package/dist/components/select-option/select-option.component.d.ts +1 -1
  84. package/dist/components/select-option/select-option.controllers.d.ts +1 -1
  85. package/dist/components/select-option-group/select-option-group.component.d.ts +1 -1
  86. package/dist/components/select-option-group/select-option-group.component.js +9 -9
  87. package/dist/components/stepper/stepper.component.d.ts +38 -0
  88. package/dist/components/stepper/stepper.component.js +91 -0
  89. package/dist/components/stepper/stepper.d.ts +8 -0
  90. package/dist/components/stepper/stepper.helpers.d.ts +16 -0
  91. package/dist/components/stepper/stepper.helpers.js +18 -0
  92. package/dist/components/stepper/stepper.js +6 -0
  93. package/dist/components/stepper/stepper.styles.d.ts +1 -0
  94. package/dist/components/stepper/stepper.styles.js +15 -0
  95. package/dist/components/stepper-item/stepper-item.component.d.ts +47 -0
  96. package/dist/components/stepper-item/stepper-item.component.js +113 -0
  97. package/dist/components/stepper-item/stepper-item.d.ts +8 -0
  98. package/dist/components/stepper-item/stepper-item.js +6 -0
  99. package/dist/components/stepper-item/stepper-item.styles.d.ts +1 -0
  100. package/dist/components/stepper-item/stepper-item.styles.js +98 -0
  101. package/dist/components/switch/switch.component.d.ts +2 -2
  102. package/dist/components/switch/switch.component.js +17 -7
  103. package/dist/components/switch/switch.styles.js +16 -13
  104. package/dist/components/tab/tab.component.d.ts +29 -0
  105. package/dist/components/tab/tab.component.js +57 -0
  106. package/dist/components/tab/tab.d.ts +8 -0
  107. package/dist/components/tab/tab.js +6 -0
  108. package/dist/components/tab/tab.styles.d.ts +1 -0
  109. package/dist/components/tab/tab.styles.js +123 -0
  110. package/dist/components/tab-group/tab-group.component.d.ts +43 -0
  111. package/dist/components/tab-group/tab-group.component.js +98 -0
  112. package/dist/components/tab-group/tab-group.d.ts +8 -0
  113. package/dist/components/tab-group/tab-group.js +6 -0
  114. package/dist/components/tab-group/tab-group.styles.d.ts +1 -0
  115. package/dist/components/tab-group/tab-group.styles.js +75 -0
  116. package/dist/components/tab-panel/tab-panel.component.d.ts +19 -0
  117. package/dist/components/tab-panel/tab-panel.component.js +36 -0
  118. package/dist/components/tab-panel/tab-panel.d.ts +8 -0
  119. package/dist/components/tab-panel/tab-panel.js +6 -0
  120. package/dist/components/tab-panel/tab-panel.styles.d.ts +1 -0
  121. package/dist/components/tab-panel/tab-panel.styles.js +13 -0
  122. package/dist/components/tag/tag.component.d.ts +2 -2
  123. package/dist/components/tag/tag.component.js +61 -45
  124. package/dist/components/tag/tag.styles.js +30 -28
  125. package/dist/components/textarea/textarea.component.d.ts +4 -4
  126. package/dist/components/textarea/textarea.component.js +2 -2
  127. package/dist/components/toast/toast.component.d.ts +8 -5
  128. package/dist/components/toast/toast.component.js +30 -26
  129. package/dist/components/toast/toast.singleton.d.ts +5 -10
  130. package/dist/components/toast/toast.singleton.js +25 -25
  131. package/dist/components/toast/toast.styles.d.ts +1 -0
  132. package/dist/components/toast-item/toast-item.component.d.ts +1 -1
  133. package/dist/components/toast-item/toast-item.component.js +15 -15
  134. package/dist/components/toast-item/toast-item.styles.js +18 -0
  135. package/dist/components/toast-wrapper/toast-wrapper.component.d.ts +2 -2
  136. package/dist/components/toast-wrapper/toast-wrapper.component.js +11 -11
  137. package/dist/components/toast-wrapper/toast-wrapper.styles.d.ts +1 -0
  138. package/dist/components/tooltip/tooltip.component.d.ts +24 -0
  139. package/dist/components/tooltip/tooltip.component.js +18 -0
  140. package/dist/components/tooltip/tooltip.d.ts +8 -0
  141. package/dist/components/tooltip/tooltip.js +6 -0
  142. package/dist/components/tooltip/tooltip.styles.d.ts +1 -0
  143. package/dist/components/tooltip/tooltip.styles.js +12 -0
  144. package/dist/custom-elements.json +2465 -629
  145. package/dist/index.d.ts +11 -0
  146. package/dist/index.js +77 -44
  147. package/dist/internal/base-classes/popover/popover.base.d.ts +29 -0
  148. package/dist/internal/base-classes/popover/popover.base.js +116 -0
  149. package/dist/internal/base-classes/popover/popover.styles.d.ts +1 -0
  150. package/dist/internal/base-classes/popover/popover.styles.js +29 -0
  151. package/dist/internal/components/formBase.d.ts +1 -0
  152. package/dist/internal/components/formBase.js +11 -11
  153. package/dist/internal/components/hint/hint.component.d.ts +2 -2
  154. package/dist/internal/components/hint/hint.component.js +13 -13
  155. package/dist/internal/components/skf-element.js +26 -25
  156. package/dist/internal/controllers/popover.controller.d.ts +16 -0
  157. package/dist/internal/controllers/popover.controller.js +44 -0
  158. package/dist/internal/helpers/hintSeverity.d.ts +2 -2
  159. package/dist/internal/helpers/watch.d.ts +27 -0
  160. package/dist/internal/helpers/watch.js +28 -0
  161. package/dist/internal/templates/asterisk.d.ts +1 -1
  162. package/dist/internal/templates/asterisk.js +7 -6
  163. package/dist/react/index.d.ts +13 -0
  164. package/dist/react/index.js +13 -0
  165. package/dist/react/skf-breadcrumb/index.d.ts +9 -0
  166. package/dist/react/skf-breadcrumb/index.js +17 -0
  167. package/dist/react/skf-breadcrumb-item/index.d.ts +3 -0
  168. package/dist/react/skf-breadcrumb-item/index.js +13 -0
  169. package/dist/react/skf-button/index.d.ts +7 -1
  170. package/dist/react/skf-button/index.js +5 -1
  171. package/dist/react/skf-dialog/index.d.ts +15 -0
  172. package/dist/react/skf-dialog/index.js +19 -0
  173. package/dist/react/skf-menu/index.d.ts +12 -0
  174. package/dist/react/skf-menu/index.js +18 -0
  175. package/dist/react/skf-menu-item/index.d.ts +27 -0
  176. package/dist/react/skf-menu-item/index.js +23 -0
  177. package/dist/react/skf-popover/index.d.ts +12 -0
  178. package/dist/react/skf-popover/index.js +18 -0
  179. package/dist/react/skf-progress/index.d.ts +3 -0
  180. package/dist/react/skf-progress/index.js +13 -0
  181. package/dist/react/skf-stepper/index.d.ts +9 -0
  182. package/dist/react/skf-stepper/index.js +17 -0
  183. package/dist/react/skf-stepper-item/index.d.ts +9 -0
  184. package/dist/react/skf-stepper-item/index.js +17 -0
  185. package/dist/react/skf-tab/index.d.ts +12 -0
  186. package/dist/react/skf-tab/index.js +18 -0
  187. package/dist/react/skf-tab-group/index.d.ts +3 -0
  188. package/dist/react/skf-tab-group/index.js +13 -0
  189. package/dist/react/skf-tab-panel/index.d.ts +3 -0
  190. package/dist/react/skf-tab-panel/index.js +13 -0
  191. package/dist/react/skf-tooltip/index.d.ts +12 -0
  192. package/dist/react/skf-tooltip/index.js +18 -0
  193. package/dist/styles/component.styles.js +15 -2
  194. package/dist/types/jsx/custom-element-jsx.d.ts +603 -27
  195. package/dist/types/vue/index.d.ts +413 -11
  196. package/dist/vscode.html-custom-data.json +462 -36
  197. package/dist/web-types.json +944 -90
  198. package/package.json +43 -42
  199. package/dist/components/toast-item/toast-item.style.js +0 -16
  200. /package/dist/components/{toast/toast.style.d.ts → breadcrumb/breadcrumb.styles.d.ts} +0 -0
  201. /package/dist/components/{toast-wrapper/toast-wrapper.style.d.ts → breadcrumb-item/breadcrumb-item.styles.d.ts} +0 -0
  202. /package/dist/components/toast/{toast.style.js → toast.styles.js} +0 -0
  203. /package/dist/components/toast-item/{toast-item.style.d.ts → toast-item.styles.d.ts} +0 -0
  204. /package/dist/components/toast-wrapper/{toast-wrapper.style.js → toast-wrapper.styles.js} +0 -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": "@skf-design-system/ui-components",
4
- "version": "0.0.0",
4
+ "version": "1.0.1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -27,7 +27,7 @@
27
27
  {
28
28
  "name": "gap",
29
29
  "description": "If true, adds a gap between each item",
30
- "value": { "type": "boolean | undefined" }
30
+ "value": { "type": "boolean", "default": "false" }
31
31
  },
32
32
  {
33
33
  "name": "multiple",
@@ -67,7 +67,7 @@
67
67
  {
68
68
  "name": "gap",
69
69
  "description": "If true, adds a gap between each item",
70
- "type": "boolean | undefined"
70
+ "type": "boolean"
71
71
  },
72
72
  {
73
73
  "name": "multiple",
@@ -93,11 +93,6 @@
93
93
  "description": "The `<skf-alert>` is a type of notification that appears in-line\n---\n\n\n### **Events:**\n - **skf-alert-close** - Fires when the close button is clicked\n\n### **Slots:**\n - _default_ - Alert message. **Notice!** See design principles for approved content\n- **link** - Slot for the link",
94
94
  "doc-url": "",
95
95
  "attributes": [
96
- {
97
- "name": "closeable",
98
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
99
- "value": { "type": "boolean | undefined" }
100
- },
101
96
  {
102
97
  "name": "button-label",
103
98
  "description": "Close button aria-label",
@@ -108,6 +103,11 @@
108
103
  "description": "If defined, displays leading icon",
109
104
  "value": { "type": "SkfIcon['name'] | undefined" }
110
105
  },
106
+ {
107
+ "name": "persistent",
108
+ "description": "If true, renders with an close button and sets aria-role to `status`",
109
+ "value": { "type": "boolean | undefined" }
110
+ },
111
111
  {
112
112
  "name": "severity",
113
113
  "description": "If defined, gives the supplied appearance",
@@ -131,11 +131,6 @@
131
131
  ],
132
132
  "js": {
133
133
  "properties": [
134
- {
135
- "name": "closeable",
136
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
137
- "type": "boolean | undefined"
138
- },
139
134
  {
140
135
  "name": "buttonLabel",
141
136
  "description": "Close button aria-label",
@@ -146,6 +141,11 @@
146
141
  "description": "If defined, displays leading icon",
147
142
  "type": "SkfIcon['name'] | undefined"
148
143
  },
144
+ {
145
+ "name": "persistent",
146
+ "description": "If true, renders with an close button and sets aria-role to `status`",
147
+ "type": "boolean | undefined"
148
+ },
149
149
  {
150
150
  "name": "severity",
151
151
  "description": "If defined, gives the supplied appearance",
@@ -160,9 +160,82 @@
160
160
  ]
161
161
  }
162
162
  },
163
+ {
164
+ "name": "skf-breadcrumb",
165
+ "description": "The `<skf-breadcrumb>` component consists of multiple `<skf-breadcrumb-item>`, working together.\n---\n\n\n### **Events:**\n - **click** - Fired when the item is clicked\n\n### **Slots:**\n - _default_ - One or more `<skf-breadcrumb-item>`",
166
+ "doc-url": "",
167
+ "attributes": [
168
+ {
169
+ "name": "label",
170
+ "description": "aria-label for the breadcrumb control",
171
+ "value": { "type": "string", "default": "'Breadcrumb'" }
172
+ },
173
+ {
174
+ "name": "size",
175
+ "description": "Displays an alternative size",
176
+ "value": { "type": "'md' | 'sm'", "default": "'md'" }
177
+ }
178
+ ],
179
+ "slots": [
180
+ { "name": "", "description": "One or more `<skf-breadcrumb-item>`" }
181
+ ],
182
+ "events": [
183
+ { "name": "click", "description": "Fired when the item is clicked" }
184
+ ],
185
+ "js": {
186
+ "properties": [
187
+ {
188
+ "name": "label",
189
+ "description": "aria-label for the breadcrumb control",
190
+ "type": "string"
191
+ },
192
+ {
193
+ "name": "size",
194
+ "description": "Displays an alternative size",
195
+ "type": "'md' | 'sm'"
196
+ }
197
+ ],
198
+ "events": [
199
+ {
200
+ "name": "click",
201
+ "description": "Fired when the item is clicked"
202
+ }
203
+ ]
204
+ }
205
+ },
206
+ {
207
+ "name": "skf-breadcrumb-item",
208
+ "description": "The `<skf-breadcrumb-item>` is used in conjunction with the `<skf-breadcrumb>` component\n---\n\n\n### **Slots:**\n - _default_ - Label of the breadcrumb item",
209
+ "doc-url": "",
210
+ "attributes": [
211
+ {
212
+ "name": "href",
213
+ "description": "If defined, loads url on click",
214
+ "value": { "type": "string | undefined" }
215
+ }
216
+ ],
217
+ "slots": [
218
+ { "name": "", "description": "Label of the breadcrumb item" }
219
+ ],
220
+ "events": [],
221
+ "js": {
222
+ "properties": [
223
+ {
224
+ "name": "href",
225
+ "description": "If defined, loads url on click",
226
+ "type": "string | undefined"
227
+ },
228
+ {
229
+ "name": "onClick",
230
+ "description": "If defined, custom onClick where the second return parameter enables custom routing. **Notice!** Only applicable if `href` is defined."
231
+ }
232
+ ],
233
+ "events": []
234
+ }
235
+ },
163
236
  {
164
237
  "name": "skf-button",
165
- "description": "Component to be used in forms or for interactivity\n---\n\n\n### **Slots:**\n - _default_ - The Primary content",
238
+ "description": "Component to be used in forms or for interactivity\n---\n\n\n### **Events:**\n - **click** - Fires when the button is clicked\n\n### **Methods:**\n - **click()** - Simulates a click on the button.\n\n### **Slots:**\n - _default_ - The Primary content",
166
239
  "doc-url": "",
167
240
  "attributes": [
168
241
  {
@@ -182,6 +255,11 @@
182
255
  "type": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
183
256
  }
184
257
  },
258
+ {
259
+ "name": "iconOnly",
260
+ "description": "If true, removes border",
261
+ "value": { "type": "boolean", "default": "false" }
262
+ },
185
263
  {
186
264
  "name": "icon-position",
187
265
  "description": "If provided, determines the positioning of the icon in relation to the text",
@@ -195,6 +273,10 @@
195
273
  "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
196
274
  "value": { "type": "boolean", "default": "false" }
197
275
  },
276
+ {
277
+ "name": "no-validate",
278
+ "value": { "type": "boolean", "default": "false" }
279
+ },
198
280
  {
199
281
  "name": "size",
200
282
  "description": "If provided, displays an alternative size",
@@ -212,13 +294,18 @@
212
294
  "name": "variant",
213
295
  "description": "If provided, alters the appearance",
214
296
  "value": {
215
- "type": "'primary' | 'secondary'",
297
+ "type": "'primary' | 'secondary' | 'tertiary'",
216
298
  "default": "'primary'"
217
299
  }
218
300
  }
219
301
  ],
220
302
  "slots": [{ "name": "", "description": "The Primary content" }],
221
- "events": [],
303
+ "events": [
304
+ {
305
+ "name": "click",
306
+ "description": "Fires when the button is clicked"
307
+ }
308
+ ],
222
309
  "js": {
223
310
  "properties": [
224
311
  {
@@ -236,6 +323,11 @@
236
323
  "description": "If provided, renders an icon before or after the text",
237
324
  "type": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
238
325
  },
326
+ {
327
+ "name": "iconOnly",
328
+ "description": "If true, removes border",
329
+ "type": "boolean"
330
+ },
239
331
  {
240
332
  "name": "iconPosition",
241
333
  "description": "If provided, determines the positioning of the icon in relation to the text",
@@ -246,6 +338,7 @@
246
338
  "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
247
339
  "type": "boolean"
248
340
  },
341
+ { "name": "noValidate", "type": "boolean" },
249
342
  {
250
343
  "name": "size",
251
344
  "description": "If provided, displays an alternative size",
@@ -259,10 +352,15 @@
259
352
  {
260
353
  "name": "variant",
261
354
  "description": "If provided, alters the appearance",
262
- "type": "'primary' | 'secondary'"
355
+ "type": "'primary' | 'secondary' | 'tertiary'"
263
356
  }
264
357
  ],
265
- "events": []
358
+ "events": [
359
+ {
360
+ "name": "click",
361
+ "description": "Fires when the button is clicked"
362
+ }
363
+ ]
266
364
  }
267
365
  },
268
366
  {
@@ -273,17 +371,17 @@
273
371
  {
274
372
  "name": "no-border",
275
373
  "description": "If true, removes border",
276
- "value": { "type": "boolean | undefined" }
374
+ "value": { "type": "boolean", "default": "false" }
277
375
  },
278
376
  {
279
377
  "name": "no-padding",
280
378
  "description": "If true, removes padding",
281
- "value": { "type": "boolean | undefined" }
379
+ "value": { "type": "boolean", "default": "false" }
282
380
  },
283
381
  {
284
382
  "name": "stretch",
285
383
  "description": "If true, the Card fills the parent element height",
286
- "value": { "type": "boolean | undefined" }
384
+ "value": { "type": "boolean", "default": "false" }
287
385
  }
288
386
  ],
289
387
  "slots": [{ "name": "", "description": "The card's main content" }],
@@ -293,17 +391,17 @@
293
391
  {
294
392
  "name": "noBorder",
295
393
  "description": "If true, removes border",
296
- "type": "boolean | undefined"
394
+ "type": "boolean"
297
395
  },
298
396
  {
299
397
  "name": "noPadding",
300
398
  "description": "If true, removes padding",
301
- "type": "boolean | undefined"
399
+ "type": "boolean"
302
400
  },
303
401
  {
304
402
  "name": "stretch",
305
403
  "description": "If true, the Card fills the parent element height",
306
- "type": "boolean | undefined"
404
+ "type": "boolean"
307
405
  }
308
406
  ],
309
407
  "events": []
@@ -339,11 +437,6 @@
339
437
  "description": "If true, forces component to invalid state until removed",
340
438
  "value": { "type": "boolean | undefined" }
341
439
  },
342
- {
343
- "name": "hide-label",
344
- "description": "If true, hides the label visually",
345
- "value": { "type": "boolean | undefined" }
346
- },
347
440
  {
348
441
  "name": "indeterminate",
349
442
  "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
@@ -416,11 +509,6 @@
416
509
  "description": "If true, forces component to invalid state until removed",
417
510
  "type": "boolean | undefined"
418
511
  },
419
- {
420
- "name": "hideLabel",
421
- "description": "If true, hides the label visually",
422
- "type": "boolean | undefined"
423
- },
424
512
  {
425
513
  "name": "indeterminate",
426
514
  "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
@@ -478,12 +566,12 @@
478
566
  {
479
567
  "name": "animated",
480
568
  "description": "If true, will animate the expand/collapse state",
481
- "value": { "type": "boolean | undefined" }
569
+ "value": { "type": "boolean", "default": "false" }
482
570
  },
483
571
  {
484
572
  "name": "expanded",
485
573
  "description": "If true, will set the collapse to be expanded by default",
486
- "value": { "type": "boolean | undefined" }
574
+ "value": { "type": "boolean", "default": "false" }
487
575
  },
488
576
  {
489
577
  "name": "heading",
@@ -493,20 +581,17 @@
493
581
  {
494
582
  "name": "heading-as",
495
583
  "description": "Defines which heading element will be rendered",
496
- "value": {
497
- "type": "\"h1\" | \"h2\" | \"h3\" | \"h4\"",
498
- "default": "'h2'"
499
- }
584
+ "value": { "type": "\"h2\" | \"h3\" | \"h4\"", "default": "'h2'" }
500
585
  },
501
586
  {
502
587
  "name": "small",
503
588
  "description": "If true, renders the small version",
504
- "value": { "type": "boolean | undefined" }
589
+ "value": { "type": "boolean", "default": "false" }
505
590
  },
506
591
  {
507
592
  "name": "truncate",
508
593
  "description": "If true, will truncate the heading in collapsed state",
509
- "value": { "type": "boolean | undefined" }
594
+ "value": { "type": "boolean", "default": "false" }
510
595
  }
511
596
  ],
512
597
  "slots": [{ "name": "", "description": "Main content" }],
@@ -522,12 +607,12 @@
522
607
  {
523
608
  "name": "animated",
524
609
  "description": "If true, will animate the expand/collapse state",
525
- "type": "boolean | undefined"
610
+ "type": "boolean"
526
611
  },
527
612
  {
528
613
  "name": "expanded",
529
614
  "description": "If true, will set the collapse to be expanded by default",
530
- "type": "boolean | undefined"
615
+ "type": "boolean"
531
616
  },
532
617
  {
533
618
  "name": "heading",
@@ -537,17 +622,17 @@
537
622
  {
538
623
  "name": "headingAs",
539
624
  "description": "Defines which heading element will be rendered",
540
- "type": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
625
+ "type": "\"h2\" | \"h3\" | \"h4\""
541
626
  },
542
627
  {
543
628
  "name": "small",
544
629
  "description": "If true, renders the small version",
545
- "type": "boolean | undefined"
630
+ "type": "boolean"
546
631
  },
547
632
  {
548
633
  "name": "truncate",
549
634
  "description": "If true, will truncate the heading in collapsed state",
550
- "type": "boolean | undefined"
635
+ "type": "boolean"
551
636
  }
552
637
  ],
553
638
  "events": [
@@ -559,6 +644,120 @@
559
644
  ]
560
645
  }
561
646
  },
647
+ {
648
+ "name": "skf-dialog",
649
+ "description": "The `<skf-dialog>` is a component that open up a dialog with the content provided\n---\n\n\n### **Events:**\n - **skf-dialog-open** - Fires when the dialog is opened (after transitioned in)\n- **skf-dialog-close** - Fires when the dialog is closed (before transitioned out)\n- **close** - Fires when the dialog is closed (after transitioned out)\n\n### **Slots:**\n - _default_ - The dialog component's content\n- **footer** - The dialog component's buttons goes here\n\n### **CSS Properties:**\n - **--skf-dialog-height** - A custom height for the Dialog. Pass valid CSS **block-size** values _(default: undefined)_\n- **--skf-dialog-width** - A custom width for the Dialog Pass valid CSS **inline-size** values _(default: undefined)_",
650
+ "doc-url": "",
651
+ "attributes": [
652
+ {
653
+ "name": "close-button-aria-label",
654
+ "description": "If defined, sets the aria-label for the close button",
655
+ "value": { "type": "string | undefined" }
656
+ },
657
+ {
658
+ "name": "heading",
659
+ "description": "Title for the modal/dialog",
660
+ "value": { "type": "string | undefined" }
661
+ },
662
+ {
663
+ "name": "fullscreen",
664
+ "description": "If true, makes the dialog stretch edge to edge on screen",
665
+ "value": { "type": "boolean", "default": "false" }
666
+ },
667
+ {
668
+ "name": "no-close-button",
669
+ "description": "If true, removes the close button",
670
+ "value": { "type": "boolean", "default": "false" }
671
+ },
672
+ {
673
+ "name": "no-padding",
674
+ "description": "If defined, removes the inner padding",
675
+ "value": { "type": "boolean", "default": "false" }
676
+ },
677
+ {
678
+ "name": "open",
679
+ "value": { "type": "boolean | null | undefined" }
680
+ }
681
+ ],
682
+ "slots": [
683
+ { "name": "", "description": "The dialog component's content" },
684
+ {
685
+ "name": "footer",
686
+ "description": "The dialog component's buttons goes here"
687
+ }
688
+ ],
689
+ "events": [
690
+ {
691
+ "name": "skf-dialog-open",
692
+ "description": "Fires when the dialog is opened (after transitioned in)"
693
+ },
694
+ {
695
+ "name": "skf-dialog-close",
696
+ "description": "Fires when the dialog is closed (before transitioned out)"
697
+ },
698
+ {
699
+ "name": "close",
700
+ "description": "Fires when the dialog is closed (after transitioned out)"
701
+ }
702
+ ],
703
+ "js": {
704
+ "properties": [
705
+ {
706
+ "name": "closeButtonAriaLabel",
707
+ "description": "If defined, sets the aria-label for the close button",
708
+ "type": "string | undefined"
709
+ },
710
+ {
711
+ "name": "heading",
712
+ "description": "Title for the modal/dialog",
713
+ "type": "string | undefined"
714
+ },
715
+ {
716
+ "name": "fullscreen",
717
+ "description": "If true, makes the dialog stretch edge to edge on screen",
718
+ "type": "boolean"
719
+ },
720
+ {
721
+ "name": "noCloseButton",
722
+ "description": "If true, removes the close button",
723
+ "type": "boolean"
724
+ },
725
+ {
726
+ "name": "noPadding",
727
+ "description": "If defined, removes the inner padding",
728
+ "type": "boolean"
729
+ },
730
+ { "name": "open", "type": "boolean | null | undefined" },
731
+ {
732
+ "name": "onClose",
733
+ "description": "If provided, will run function on dialog close",
734
+ "type": "((event: Event) => void) | null | undefined"
735
+ },
736
+ {
737
+ "name": "showModal",
738
+ "description": "Method that opens the dialog in modal state"
739
+ },
740
+ {
741
+ "name": "close",
742
+ "description": "Method that closes the dialog"
743
+ }
744
+ ],
745
+ "events": [
746
+ {
747
+ "name": "skf-dialog-open",
748
+ "description": "Fires when the dialog is opened (after transitioned in)"
749
+ },
750
+ {
751
+ "name": "skf-dialog-close",
752
+ "description": "Fires when the dialog is closed (before transitioned out)"
753
+ },
754
+ {
755
+ "name": "close",
756
+ "description": "Fires when the dialog is closed (after transitioned out)"
757
+ }
758
+ ]
759
+ }
760
+ },
562
761
  {
563
762
  "name": "skf-divider",
564
763
  "description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information\n---\n\n\n### **CSS Properties:**\n - **--skf-divider-spacing** - The amount of space the divider occupies. Pass valid CSS **margin-block** values when horizontal and **margin-inline** when vertical _(default: undefined)_\n- **--skf-divider-inset** - The amount of space the divider should be indented. Pass valid CSS **margin-inline** values when horizontal and **margin-block** when vertical _(default: undefined)_",
@@ -575,12 +774,12 @@
575
774
  {
576
775
  "name": "decorative",
577
776
  "description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
578
- "value": { "type": "boolean | undefined" }
777
+ "value": { "type": "boolean", "default": "false" }
579
778
  },
580
779
  {
581
780
  "name": "vertical",
582
781
  "description": "If true, renders the divider vertically",
583
- "value": { "type": "boolean | undefined" }
782
+ "value": { "type": "boolean", "default": "false" }
584
783
  }
585
784
  ],
586
785
  "events": [],
@@ -594,12 +793,12 @@
594
793
  {
595
794
  "name": "decorative",
596
795
  "description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
597
- "type": "boolean | undefined"
796
+ "type": "boolean"
598
797
  },
599
798
  {
600
799
  "name": "vertical",
601
800
  "description": "If true, renders the divider vertically",
602
- "type": "boolean | undefined"
801
+ "type": "boolean"
603
802
  }
604
803
  ],
605
804
  "events": []
@@ -718,6 +917,11 @@
718
917
  "description": "If true, value is required or must be checked for the form to be submittable",
719
918
  "value": { "type": "boolean" }
720
919
  },
920
+ {
921
+ "name": "autocomplete",
922
+ "description": "-m }",
923
+ "value": { "type": "string" }
924
+ },
721
925
  {
722
926
  "name": "button-aria-label-clear",
723
927
  "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
@@ -878,6 +1082,7 @@
878
1082
  ],
879
1083
  "js": {
880
1084
  "properties": [
1085
+ { "name": "autocomplete", "description": "-m }", "type": "" },
881
1086
  {
882
1087
  "name": "buttonAriaLabelClear",
883
1088
  "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
@@ -1067,8 +1272,8 @@
1067
1272
  },
1068
1273
  {
1069
1274
  "name": "rel",
1070
- "description": "Defines the relationship of the target object to the link object",
1071
- "value": { "type": "string", "default": "'noreferrer noopener'" }
1275
+ "description": "If defined, describes the relationship between a linked resource and the current document",
1276
+ "value": { "type": "string | undefined" }
1072
1277
  },
1073
1278
  {
1074
1279
  "name": "route",
@@ -1078,7 +1283,7 @@
1078
1283
  {
1079
1284
  "name": "stretch",
1080
1285
  "description": "If true, fills the parents horizontal axis",
1081
- "value": { "type": "boolean | undefined" }
1286
+ "value": { "type": "boolean", "default": "false" }
1082
1287
  },
1083
1288
  {
1084
1289
  "name": "target",
@@ -1137,8 +1342,8 @@
1137
1342
  },
1138
1343
  {
1139
1344
  "name": "rel",
1140
- "description": "Defines the relationship of the target object to the link object",
1141
- "type": "string"
1345
+ "description": "If defined, describes the relationship between a linked resource and the current document",
1346
+ "type": "string | undefined"
1142
1347
  },
1143
1348
  {
1144
1349
  "name": "route",
@@ -1148,7 +1353,7 @@
1148
1353
  {
1149
1354
  "name": "stretch",
1150
1355
  "description": "If true, fills the parents horizontal axis",
1151
- "type": "boolean | undefined"
1356
+ "type": "boolean"
1152
1357
  },
1153
1358
  {
1154
1359
  "name": "target",
@@ -1182,7 +1387,7 @@
1182
1387
  {
1183
1388
  "name": "invert",
1184
1389
  "description": "If true, inverts the color (to be used on colored backgrounds)",
1185
- "value": { "type": "boolean | undefined" }
1390
+ "value": { "type": "boolean", "default": "false" }
1186
1391
  },
1187
1392
  {
1188
1393
  "name": "size",
@@ -1201,7 +1406,7 @@
1201
1406
  {
1202
1407
  "name": "invert",
1203
1408
  "description": "If true, inverts the color (to be used on colored backgrounds)",
1204
- "type": "boolean | undefined"
1409
+ "type": "boolean"
1205
1410
  },
1206
1411
  {
1207
1412
  "name": "size",
@@ -1226,7 +1431,7 @@
1226
1431
  },
1227
1432
  {
1228
1433
  "name": "color",
1229
- "description": "If defined, sets color of the logo",
1434
+ "description": "Defines the color of the logo",
1230
1435
  "value": {
1231
1436
  "type": "\"primary\" | \"secondary\" | \"inverse\"",
1232
1437
  "default": "'primary'"
@@ -1243,7 +1448,7 @@
1243
1448
  },
1244
1449
  {
1245
1450
  "name": "color",
1246
- "description": "If defined, sets color of the logo",
1451
+ "description": "Defines the color of the logo",
1247
1452
  "type": "\"primary\" | \"secondary\" | \"inverse\""
1248
1453
  }
1249
1454
  ],
@@ -1251,13 +1456,373 @@
1251
1456
  }
1252
1457
  },
1253
1458
  {
1254
- "name": "skf-radio",
1255
- "description": "The `<skf-radio>` component is used to create a radio input\n---\n\n\n### **Events:**\n - **change** - {object} - When the value of the input changes\n\n### **Slots:**\n - _default_ - The radios label. Alternatively, you can use the `label` attribute.",
1459
+ "name": "skf-menu",
1460
+ "description": "The `<skf-menu>` is a component that displays a list of actions or options.\n---\n\n\n### **Events:**\n - **open** - Fired when the menu is opened\n- **close** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The menu popover content",
1461
+ "doc-url": "",
1462
+ "attributes": [],
1463
+ "slots": [{ "name": "", "description": "The menu popover content" }],
1464
+ "events": [
1465
+ { "name": "open", "description": "Fired when the menu is opened" },
1466
+ { "name": "close", "description": "Fired when the menu is closed" }
1467
+ ],
1468
+ "js": {
1469
+ "properties": [
1470
+ {
1471
+ "name": "placement",
1472
+ "description": "The placement of the menu",
1473
+ "type": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
1474
+ },
1475
+ {
1476
+ "name": "isOpen",
1477
+ "description": "Whether the menu is open",
1478
+ "type": "boolean"
1479
+ },
1480
+ {
1481
+ "name": "anchor",
1482
+ "description": "The id of the element the menu will be anchored to",
1483
+ "type": "string"
1484
+ }
1485
+ ],
1486
+ "events": [
1487
+ {
1488
+ "name": "open",
1489
+ "description": "Fired when the menu is opened"
1490
+ },
1491
+ {
1492
+ "name": "close",
1493
+ "description": "Fired when the menu is closed"
1494
+ }
1495
+ ]
1496
+ }
1497
+ },
1498
+ {
1499
+ "name": "skf-menu-item",
1500
+ "description": "The `<skf-menu-item>` is a component that displays a list of actions or options.\n---\n\n\n### **Events:**\n - **my-tag-my-event** - Fired when something happens\n- **click** - Fired when the component is clicked\n- **mouseover** - Fired when the mouse is over the component\n- **mouseout** - Fired when the mouse is out of the component\n- **focus** - Fired when the component is focused\n- **blur** - Fired when the component is blurred\n- **change** - Fired when the component's value changes\n\n### **Slots:**\n - _default_ - The component's main content\n- **my-named-slot** - A named slot of the component",
1256
1501
  "doc-url": "",
1257
1502
  "attributes": [
1258
1503
  {
1259
- "name": "disabled",
1260
- "description": "If true, sets disabled state",
1504
+ "name": "as",
1505
+ "description": "Defines the semantic element to render",
1506
+ "value": { "type": "'button' | 'a'", "default": "'a'" }
1507
+ },
1508
+ {
1509
+ "name": "color",
1510
+ "description": "Defines the text-color",
1511
+ "value": {
1512
+ "type": "'primary' | 'inverse'",
1513
+ "default": "'primary'"
1514
+ }
1515
+ },
1516
+ {
1517
+ "name": "disabled",
1518
+ "description": "If true, disables the link",
1519
+ "value": { "type": "boolean | undefined" }
1520
+ },
1521
+ {
1522
+ "name": "download",
1523
+ "description": "If defined, downloads the url",
1524
+ "value": { "type": "string | undefined" }
1525
+ },
1526
+ {
1527
+ "name": "href",
1528
+ "description": "If defined, loads url on click",
1529
+ "value": { "type": "string | undefined" }
1530
+ },
1531
+ {
1532
+ "name": "icon",
1533
+ "description": "If defined, renders an icon before or after the text",
1534
+ "value": {
1535
+ "type": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
1536
+ }
1537
+ },
1538
+ {
1539
+ "name": "icon-placement",
1540
+ "description": "Defines the position of the icon in relation to the text",
1541
+ "value": { "type": "'left' | 'right'", "default": "'left'" }
1542
+ },
1543
+ {
1544
+ "name": "rel",
1545
+ "description": "If defined, describes the relationship between a linked resource and the current document",
1546
+ "value": { "type": "string | undefined" }
1547
+ },
1548
+ {
1549
+ "name": "route",
1550
+ "description": "If defined, used on conjunction with onClick property, second argument",
1551
+ "value": { "type": "string | undefined" }
1552
+ },
1553
+ {
1554
+ "name": "stretch",
1555
+ "description": "If true, fills the parents horizontal axis",
1556
+ "value": { "type": "boolean", "default": "false" }
1557
+ },
1558
+ {
1559
+ "name": "target",
1560
+ "description": "If defined, specifies where to open the linked document",
1561
+ "value": {
1562
+ "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1563
+ }
1564
+ },
1565
+ {
1566
+ "name": "type",
1567
+ "description": "Defines the type of button",
1568
+ "value": {
1569
+ "type": "'button' | 'submit' | 'reset'",
1570
+ "default": "'button'"
1571
+ }
1572
+ }
1573
+ ],
1574
+ "slots": [
1575
+ { "name": "", "description": "The component's main content" },
1576
+ {
1577
+ "name": "my-named-slot",
1578
+ "description": "A named slot of the component"
1579
+ }
1580
+ ],
1581
+ "events": [
1582
+ {
1583
+ "name": "my-tag-my-event",
1584
+ "type": "CustomEvent",
1585
+ "description": "Fired when something happens"
1586
+ },
1587
+ {
1588
+ "name": "click",
1589
+ "description": "Fired when the component is clicked"
1590
+ },
1591
+ {
1592
+ "name": "mouseover",
1593
+ "description": "Fired when the mouse is over the component"
1594
+ },
1595
+ {
1596
+ "name": "mouseout",
1597
+ "description": "Fired when the mouse is out of the component"
1598
+ },
1599
+ {
1600
+ "name": "focus",
1601
+ "description": "Fired when the component is focused"
1602
+ },
1603
+ {
1604
+ "name": "blur",
1605
+ "description": "Fired when the component is blurred"
1606
+ },
1607
+ {
1608
+ "name": "change",
1609
+ "description": "Fired when the component's value changes"
1610
+ }
1611
+ ],
1612
+ "js": {
1613
+ "properties": [
1614
+ {
1615
+ "name": "as",
1616
+ "description": "Defines the semantic element to render",
1617
+ "type": "'button' | 'a'"
1618
+ },
1619
+ {
1620
+ "name": "color",
1621
+ "description": "Defines the text-color",
1622
+ "type": "'primary' | 'inverse'"
1623
+ },
1624
+ {
1625
+ "name": "disabled",
1626
+ "description": "If true, disables the link",
1627
+ "type": "boolean | undefined"
1628
+ },
1629
+ {
1630
+ "name": "download",
1631
+ "description": "If defined, downloads the url",
1632
+ "type": "string | undefined"
1633
+ },
1634
+ {
1635
+ "name": "href",
1636
+ "description": "If defined, loads url on click",
1637
+ "type": "string | undefined"
1638
+ },
1639
+ {
1640
+ "name": "icon",
1641
+ "description": "If defined, renders an icon before or after the text",
1642
+ "type": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
1643
+ },
1644
+ {
1645
+ "name": "iconPlacement",
1646
+ "description": "Defines the position of the icon in relation to the text",
1647
+ "type": "'left' | 'right'"
1648
+ },
1649
+ {
1650
+ "name": "rel",
1651
+ "description": "If defined, describes the relationship between a linked resource and the current document",
1652
+ "type": "string | undefined"
1653
+ },
1654
+ {
1655
+ "name": "route",
1656
+ "description": "If defined, used on conjunction with onClick property, second argument",
1657
+ "type": "string | undefined"
1658
+ },
1659
+ {
1660
+ "name": "stretch",
1661
+ "description": "If true, fills the parents horizontal axis",
1662
+ "type": "boolean"
1663
+ },
1664
+ {
1665
+ "name": "target",
1666
+ "description": "If defined, specifies where to open the linked document",
1667
+ "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1668
+ },
1669
+ {
1670
+ "name": "type",
1671
+ "description": "Defines the type of button",
1672
+ "type": "'button' | 'submit' | 'reset'"
1673
+ },
1674
+ {
1675
+ "name": "onClick",
1676
+ "description": "If provided, custom function triggered by click where the second return parameter enables custom routing.",
1677
+ "type": "function"
1678
+ }
1679
+ ],
1680
+ "events": [
1681
+ {
1682
+ "name": "my-tag-my-event",
1683
+ "type": "CustomEvent",
1684
+ "description": "Fired when something happens"
1685
+ },
1686
+ {
1687
+ "name": "click",
1688
+ "description": "Fired when the component is clicked"
1689
+ },
1690
+ {
1691
+ "name": "mouseover",
1692
+ "description": "Fired when the mouse is over the component"
1693
+ },
1694
+ {
1695
+ "name": "mouseout",
1696
+ "description": "Fired when the mouse is out of the component"
1697
+ },
1698
+ {
1699
+ "name": "focus",
1700
+ "description": "Fired when the component is focused"
1701
+ },
1702
+ {
1703
+ "name": "blur",
1704
+ "description": "Fired when the component is blurred"
1705
+ },
1706
+ {
1707
+ "name": "change",
1708
+ "description": "Fired when the component's value changes"
1709
+ }
1710
+ ]
1711
+ }
1712
+ },
1713
+ {
1714
+ "name": "skf-popover",
1715
+ "description": "The `<skf-popover>` is a general purpose component that displays the slot content.\n---\n\n\n### **Events:**\n - **open** - Fired when the menu is opened\n- **close** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The popover content",
1716
+ "doc-url": "",
1717
+ "attributes": [
1718
+ {
1719
+ "name": "offset",
1720
+ "description": "If defined, sets a custom offset for the popover",
1721
+ "value": { "type": "number", "default": "8" }
1722
+ },
1723
+ {
1724
+ "name": "hideArrow",
1725
+ "description": "If true, hides the arrow",
1726
+ "value": { "type": "boolean", "default": "false" }
1727
+ }
1728
+ ],
1729
+ "slots": [{ "name": "", "description": "The popover content" }],
1730
+ "events": [
1731
+ { "name": "open", "description": "Fired when the menu is opened" },
1732
+ { "name": "close", "description": "Fired when the menu is closed" }
1733
+ ],
1734
+ "js": {
1735
+ "properties": [
1736
+ {
1737
+ "name": "offset",
1738
+ "description": "If defined, sets a custom offset for the popover",
1739
+ "type": "number"
1740
+ },
1741
+ {
1742
+ "name": "hideArrow",
1743
+ "description": "If true, hides the arrow",
1744
+ "type": "boolean"
1745
+ },
1746
+ { "name": "arrow", "type": "boolean" },
1747
+ {
1748
+ "name": "placement",
1749
+ "description": "The placement of the menu",
1750
+ "type": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
1751
+ },
1752
+ {
1753
+ "name": "isOpen",
1754
+ "description": "Whether the menu is open",
1755
+ "type": "boolean"
1756
+ },
1757
+ {
1758
+ "name": "anchor",
1759
+ "description": "The id of the element the menu will be anchored to",
1760
+ "type": "string"
1761
+ }
1762
+ ],
1763
+ "events": [
1764
+ {
1765
+ "name": "open",
1766
+ "description": "Fired when the menu is opened"
1767
+ },
1768
+ {
1769
+ "name": "close",
1770
+ "description": "Fired when the menu is closed"
1771
+ }
1772
+ ]
1773
+ }
1774
+ },
1775
+ {
1776
+ "name": "skf-progress",
1777
+ "description": "The `<skf-progress>` element displays an indicator showing the completion progress of a task, typically displayed as a progress bar\n---\n",
1778
+ "doc-url": "",
1779
+ "attributes": [
1780
+ {
1781
+ "name": "animated",
1782
+ "description": "If true, the progress-bar's fill value is animated",
1783
+ "value": { "type": "boolean", "default": "false" }
1784
+ },
1785
+ {
1786
+ "name": "max",
1787
+ "description": "Describes how much work the task indicated by the progress element requires",
1788
+ "value": { "type": "number", "default": "1" }
1789
+ },
1790
+ {
1791
+ "name": "value",
1792
+ "description": "Specifies how much of the task that has been completed",
1793
+ "value": { "type": "number", "default": "0" }
1794
+ }
1795
+ ],
1796
+ "events": [],
1797
+ "js": {
1798
+ "properties": [
1799
+ {
1800
+ "name": "animated",
1801
+ "description": "If true, the progress-bar's fill value is animated",
1802
+ "type": "boolean"
1803
+ },
1804
+ {
1805
+ "name": "max",
1806
+ "description": "Describes how much work the task indicated by the progress element requires",
1807
+ "type": "number"
1808
+ },
1809
+ {
1810
+ "name": "value",
1811
+ "description": "Specifies how much of the task that has been completed",
1812
+ "type": "number"
1813
+ }
1814
+ ],
1815
+ "events": []
1816
+ }
1817
+ },
1818
+ {
1819
+ "name": "skf-radio",
1820
+ "description": "The `<skf-radio>` component is used to create a radio input\n---\n\n\n### **Events:**\n - **change** - {object} - When the value of the input changes\n\n### **Slots:**\n - _default_ - The radios label. Alternatively, you can use the `label` attribute.",
1821
+ "doc-url": "",
1822
+ "attributes": [
1823
+ {
1824
+ "name": "disabled",
1825
+ "description": "If true, sets disabled state",
1261
1826
  "value": { "type": "boolean" }
1262
1827
  },
1263
1828
  {
@@ -1280,11 +1845,6 @@
1280
1845
  "description": "If true, forces component to invalid state until removed",
1281
1846
  "value": { "type": "boolean | undefined" }
1282
1847
  },
1283
- {
1284
- "name": "hide-label",
1285
- "description": "If true, hides the label visually",
1286
- "value": { "type": "boolean | undefined" }
1287
- },
1288
1848
  {
1289
1849
  "name": "label",
1290
1850
  "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
@@ -1352,11 +1912,6 @@
1352
1912
  "description": "If true, forces component to invalid state until removed",
1353
1913
  "type": "boolean | undefined"
1354
1914
  },
1355
- {
1356
- "name": "hideLabel",
1357
- "description": "If true, hides the label visually",
1358
- "type": "boolean | undefined"
1359
- },
1360
1915
  {
1361
1916
  "name": "label",
1362
1917
  "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
@@ -1729,6 +2284,100 @@
1729
2284
  "events": []
1730
2285
  }
1731
2286
  },
2287
+ {
2288
+ "name": "skf-stepper",
2289
+ "description": "The `<skf-stepper>` is a component that displays a list of actions or options.\n---\n\n\n### **Events:**\n - **skf-stepper-item-select** - Dispatched when the stepper item is selected\n\n### **Slots:**\n - _default_ - One or more `<skf-stepper-item>`",
2290
+ "doc-url": "",
2291
+ "attributes": [
2292
+ {
2293
+ "name": "activeIndex",
2294
+ "description": "Sets the active item",
2295
+ "value": { "type": "number", "default": "-1" }
2296
+ },
2297
+ {
2298
+ "name": "linear",
2299
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
2300
+ "value": { "type": "boolean", "default": "false" }
2301
+ }
2302
+ ],
2303
+ "slots": [
2304
+ { "name": "", "description": "One or more `<skf-stepper-item>`" }
2305
+ ],
2306
+ "events": [
2307
+ {
2308
+ "name": "skf-stepper-item-select",
2309
+ "description": "Dispatched when the stepper item is selected"
2310
+ }
2311
+ ],
2312
+ "js": {
2313
+ "properties": [
2314
+ {
2315
+ "name": "activeIndex",
2316
+ "description": "Sets the active item",
2317
+ "type": "number"
2318
+ },
2319
+ {
2320
+ "name": "linear",
2321
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
2322
+ "type": "boolean"
2323
+ }
2324
+ ],
2325
+ "events": [
2326
+ {
2327
+ "name": "skf-stepper-item-select",
2328
+ "description": "Dispatched when the stepper item is selected"
2329
+ }
2330
+ ]
2331
+ }
2332
+ },
2333
+ {
2334
+ "name": "skf-stepper-item",
2335
+ "description": "The `<skf-stepper-item>` is used in conjunction with the `<skf-stepper>` component\n---\n\n\n### **Events:**\n - **skf-stepper-item-select** - Dispatched when the stepper item is selected\n\n### **Slots:**\n - _default_ - Label of the stepper item",
2336
+ "doc-url": "",
2337
+ "attributes": [
2338
+ {
2339
+ "name": "state",
2340
+ "description": "If defined, gives the supplied appearance",
2341
+ "value": {
2342
+ "type": "Extract<SkfStepperItemState, 'active' | 'completed'> | undefined"
2343
+ }
2344
+ },
2345
+ {
2346
+ "name": "completed",
2347
+ "description": "If true, item marked as completed",
2348
+ "value": { "type": "boolean", "default": "false" }
2349
+ }
2350
+ ],
2351
+ "slots": [{ "name": "", "description": "Label of the stepper item" }],
2352
+ "events": [
2353
+ {
2354
+ "name": "skf-stepper-item-select",
2355
+ "description": "Dispatched when the stepper item is selected"
2356
+ }
2357
+ ],
2358
+ "js": {
2359
+ "properties": [
2360
+ {
2361
+ "name": "state",
2362
+ "description": "If defined, gives the supplied appearance",
2363
+ "type": "Extract<SkfStepperItemState, 'active' | 'completed'> | undefined"
2364
+ },
2365
+ {
2366
+ "name": "completed",
2367
+ "description": "If true, item marked as completed",
2368
+ "type": "boolean"
2369
+ },
2370
+ { "name": "_setInternalState" },
2371
+ { "name": "role", "type": "string" }
2372
+ ],
2373
+ "events": [
2374
+ {
2375
+ "name": "skf-stepper-item-select",
2376
+ "description": "Dispatched when the stepper item is selected"
2377
+ }
2378
+ ]
2379
+ }
2380
+ },
1732
2381
  {
1733
2382
  "name": "skf-switch",
1734
2383
  "description": "The `<skf-switch>` is a component that displays a list of actions or options\n---\n\n\n### **Slots:**\n - _default_ - The Switchs label. Alternatively, you can use the `label` attribute.",
@@ -1838,6 +2487,155 @@
1838
2487
  "events": []
1839
2488
  }
1840
2489
  },
2490
+ {
2491
+ "name": "skf-tab",
2492
+ "description": "The `<skf-tab>` is a component that displays a list of actions or options\n---\n\n\n### **Events:**\n - **skf-tab-select** - {detail: { selected: true, tab: SkfTab }} Fires when the tab is selected\n- **click** - Fired when the component is clicked\n\n### **Slots:**\n - _default_ - The tab's label",
2493
+ "doc-url": "",
2494
+ "attributes": [
2495
+ {
2496
+ "name": "panel",
2497
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
2498
+ "value": { "type": "string", "default": "''" }
2499
+ }
2500
+ ],
2501
+ "slots": [{ "name": "", "description": "The tab's label" }],
2502
+ "events": [
2503
+ {
2504
+ "name": "skf-tab-select",
2505
+ "type": "CustomEvent",
2506
+ "description": "{detail: { selected: true, tab: SkfTab }} Fires when the tab is selected"
2507
+ },
2508
+ {
2509
+ "name": "click",
2510
+ "description": "Fired when the component is clicked"
2511
+ }
2512
+ ],
2513
+ "js": {
2514
+ "properties": [
2515
+ {
2516
+ "name": "panel",
2517
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
2518
+ "type": "string"
2519
+ },
2520
+ { "name": "selected", "type": "boolean" },
2521
+ { "name": "variant", "type": "SkfTabGroup['variant']" },
2522
+ { "name": "role", "type": "string" }
2523
+ ],
2524
+ "events": [
2525
+ {
2526
+ "name": "skf-tab-select",
2527
+ "type": "CustomEvent",
2528
+ "description": "{detail: { selected: true, tab: SkfTab }} Fires when the tab is selected"
2529
+ },
2530
+ {
2531
+ "name": "click",
2532
+ "description": "Fired when the component is clicked"
2533
+ }
2534
+ ]
2535
+ }
2536
+ },
2537
+ {
2538
+ "name": "skf-tab-group",
2539
+ "description": "The `<skf-tab-group>` is a component that displays a list of actions or options.\n---\n\n\n### **Slots:**\n - _default_ - Used for grouping tab panels in the tab group. Must be <skf-tab-panel> elements\n- **tabs** - Used for grouping tabs in the tab group. Must be <skf-tab> elements",
2540
+ "doc-url": "",
2541
+ "attributes": [
2542
+ {
2543
+ "name": "default-selected",
2544
+ "description": "Sets the default selected tab",
2545
+ "value": { "type": "number", "default": "0" }
2546
+ },
2547
+ {
2548
+ "name": "no-border",
2549
+ "description": "If true, removes border",
2550
+ "value": { "type": "boolean", "default": "false" }
2551
+ },
2552
+ {
2553
+ "name": "no-padding",
2554
+ "description": "If true, removes padding",
2555
+ "value": { "type": "boolean", "default": "false" }
2556
+ },
2557
+ {
2558
+ "name": "stretch",
2559
+ "description": "If true, component fills the parent element height",
2560
+ "value": { "type": "boolean", "default": "false" }
2561
+ },
2562
+ {
2563
+ "name": "variant",
2564
+ "description": "Sets the appearance of the tabs",
2565
+ "value": {
2566
+ "type": "'compressed' | 'expanded'",
2567
+ "default": "'expanded'"
2568
+ }
2569
+ }
2570
+ ],
2571
+ "slots": [
2572
+ {
2573
+ "name": "",
2574
+ "description": "Used for grouping tab panels in the tab group. Must be <skf-tab-panel> elements"
2575
+ },
2576
+ {
2577
+ "name": "tabs",
2578
+ "description": "Used for grouping tabs in the tab group. Must be <skf-tab> elements"
2579
+ }
2580
+ ],
2581
+ "events": [],
2582
+ "js": {
2583
+ "properties": [
2584
+ {
2585
+ "name": "defaultSelected",
2586
+ "description": "Sets the default selected tab",
2587
+ "type": "number"
2588
+ },
2589
+ {
2590
+ "name": "noBorder",
2591
+ "description": "If true, removes border",
2592
+ "type": "boolean"
2593
+ },
2594
+ {
2595
+ "name": "noPadding",
2596
+ "description": "If true, removes padding",
2597
+ "type": "boolean"
2598
+ },
2599
+ {
2600
+ "name": "stretch",
2601
+ "description": "If true, component fills the parent element height",
2602
+ "type": "boolean"
2603
+ },
2604
+ {
2605
+ "name": "variant",
2606
+ "description": "Sets the appearance of the tabs",
2607
+ "type": "'compressed' | 'expanded'"
2608
+ }
2609
+ ],
2610
+ "events": []
2611
+ }
2612
+ },
2613
+ {
2614
+ "name": "skf-tab-panel",
2615
+ "description": "The `<skf-tab-panel>` is a component that displays a list of actions or options.\n---\n\n\n### **Slots:**\n - _default_ - The tab panel's content",
2616
+ "doc-url": "",
2617
+ "attributes": [
2618
+ {
2619
+ "name": "name",
2620
+ "description": "The tab panel's name.",
2621
+ "value": { "type": "string", "default": "''" }
2622
+ }
2623
+ ],
2624
+ "slots": [{ "name": "", "description": "The tab panel's content" }],
2625
+ "events": [],
2626
+ "js": {
2627
+ "properties": [
2628
+ {
2629
+ "name": "name",
2630
+ "description": "The tab panel's name.",
2631
+ "type": "string"
2632
+ },
2633
+ { "name": "active", "type": "boolean" },
2634
+ { "name": "role", "type": "string" }
2635
+ ],
2636
+ "events": []
2637
+ }
2638
+ },
1841
2639
  {
1842
2640
  "name": "skf-tag",
1843
2641
  "description": "The `<skf-tag>` is a component that displays a list of actions or options\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
@@ -2143,21 +2941,23 @@
2143
2941
  "doc-url": "",
2144
2942
  "attributes": [
2145
2943
  {
2146
- "name": "closeable",
2147
- "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
2944
+ "name": "debug",
2148
2945
  "value": { "type": "boolean", "default": "false" }
2149
2946
  },
2150
2947
  {
2151
- "name": "debug",
2152
- "value": { "type": "boolean", "default": "false" }
2948
+ "name": "icon",
2949
+ "description": "If defined, displays leading icon",
2950
+ "value": { "type": "SkfAlert['icon'] | undefined" }
2951
+ },
2952
+ {
2953
+ "name": "persistent",
2954
+ "description": "If true, renders with an close button and sets aria-role to `status`",
2955
+ "value": { "type": "SkfAlert['persistent']", "default": "false" }
2153
2956
  },
2154
2957
  {
2155
2958
  "name": "severity",
2156
- "description": "Severity of the toast.",
2157
- "value": {
2158
- "type": "'info' | 'success' | 'warning' | 'error'",
2159
- "default": "'info'"
2160
- }
2959
+ "description": "If defined, gives the supplied appearance",
2960
+ "value": { "type": "SkfAlert['severity']", "default": "'info'" }
2161
2961
  },
2162
2962
  {
2163
2963
  "name": "timer",
@@ -2176,16 +2976,21 @@
2176
2976
  "events": [],
2177
2977
  "js": {
2178
2978
  "properties": [
2979
+ { "name": "debug", "type": "boolean" },
2179
2980
  {
2180
- "name": "closeable",
2181
- "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
2182
- "type": "boolean"
2981
+ "name": "icon",
2982
+ "description": "If defined, displays leading icon",
2983
+ "type": "SkfAlert['icon'] | undefined"
2984
+ },
2985
+ {
2986
+ "name": "persistent",
2987
+ "description": "If true, renders with an close button and sets aria-role to `status`",
2988
+ "type": "SkfAlert['persistent']"
2183
2989
  },
2184
- { "name": "debug", "type": "boolean" },
2185
2990
  {
2186
2991
  "name": "severity",
2187
- "description": "Severity of the toast.",
2188
- "type": "'info' | 'success' | 'warning' | 'error'"
2992
+ "description": "If defined, gives the supplied appearance",
2993
+ "type": "SkfAlert['severity']"
2189
2994
  },
2190
2995
  {
2191
2996
  "name": "timer",
@@ -2222,6 +3027,55 @@
2222
3027
  "properties": [{ "name": "debug", "type": "boolean" }],
2223
3028
  "events": []
2224
3029
  }
3030
+ },
3031
+ {
3032
+ "name": "skf-tooltip",
3033
+ "description": "The `<skf-tooltip>` is a component that displays a list of actions or options.\n---\n\n\n### **Events:**\n - **open** - Fired when the dropdown is opened\n- **close** - Fired when the dropdown is closed\n\n### **Slots:**\n - _default_ - The tooltip popover content",
3034
+ "doc-url": "",
3035
+ "attributes": [],
3036
+ "slots": [
3037
+ { "name": "", "description": "The tooltip popover content" }
3038
+ ],
3039
+ "events": [
3040
+ {
3041
+ "name": "open",
3042
+ "description": "Fired when the dropdown is opened"
3043
+ },
3044
+ {
3045
+ "name": "close",
3046
+ "description": "Fired when the dropdown is closed"
3047
+ }
3048
+ ],
3049
+ "js": {
3050
+ "properties": [
3051
+ { "name": "offset", "type": "number" },
3052
+ {
3053
+ "name": "placement",
3054
+ "description": "The placement of the dropdown",
3055
+ "type": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
3056
+ },
3057
+ {
3058
+ "name": "isOpen",
3059
+ "description": "Whether the dropdown is open",
3060
+ "type": "boolean"
3061
+ },
3062
+ {
3063
+ "name": "anchor",
3064
+ "description": "The id of the element the dropdown will be anchored to",
3065
+ "type": "string"
3066
+ }
3067
+ ],
3068
+ "events": [
3069
+ {
3070
+ "name": "open",
3071
+ "description": "Fired when the dropdown is opened"
3072
+ },
3073
+ {
3074
+ "name": "close",
3075
+ "description": "Fired when the dropdown is closed"
3076
+ }
3077
+ ]
3078
+ }
2225
3079
  }
2226
3080
  ]
2227
3081
  }