@skf-design-system/ui-components 1.0.0-beta.7 → 1.0.1-beta.1

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 (127) hide show
  1. package/dist/components/alert/alert.component.d.ts +2 -2
  2. package/dist/components/alert/alert.component.js +34 -34
  3. package/dist/components/breadcrumb/breadcrumb.component.d.ts +29 -0
  4. package/dist/components/breadcrumb/breadcrumb.d.ts +8 -0
  5. package/dist/components/breadcrumb/breadcrumb.styles.d.ts +1 -0
  6. package/dist/components/breadcrumb-item/breadcrumb-item.component.d.ts +25 -0
  7. package/dist/components/breadcrumb-item/breadcrumb-item.d.ts +8 -0
  8. package/dist/components/breadcrumb-item/breadcrumb-item.styles.d.ts +1 -0
  9. package/dist/components/button/button.component.d.ts +6 -4
  10. package/dist/components/button/button.component.js +87 -70
  11. package/dist/components/button/button.styles.js +64 -45
  12. package/dist/components/checkbox/checkbox.component.d.ts +3 -1
  13. package/dist/components/checkbox/checkbox.component.js +71 -58
  14. package/dist/components/date-picker/datepicker.calendar.component.d.ts +72 -0
  15. package/dist/components/date-picker/datepicker.calendar.component.js +382 -0
  16. package/dist/components/date-picker/datepicker.calendar.styles.d.ts +1 -0
  17. package/dist/components/date-picker/datepicker.calendar.styles.js +192 -0
  18. package/dist/components/date-picker/datepicker.component.d.ts +74 -0
  19. package/dist/components/date-picker/datepicker.component.js +241 -0
  20. package/dist/components/date-picker/datepicker.d.ts +10 -0
  21. package/dist/components/date-picker/datepicker.helpers.d.ts +40 -0
  22. package/dist/components/date-picker/datepicker.helpers.js +69 -0
  23. package/dist/components/date-picker/datepicker.js +8 -0
  24. package/dist/components/date-picker/datepicker.styles.d.ts +1 -0
  25. package/dist/components/date-picker/datepicker.styles.js +99 -0
  26. package/dist/components/date-picker-input/datepicker-input.component.d.ts +107 -0
  27. package/dist/components/date-picker-input/datepicker-input.component.js +397 -0
  28. package/dist/components/date-picker-input/datepicker-input.d.ts +8 -0
  29. package/dist/components/date-picker-input/datepicker-input.helpers.d.ts +4 -0
  30. package/dist/components/date-picker-input/datepicker-input.helpers.js +29 -0
  31. package/dist/components/date-picker-input/datepicker-input.js +6 -0
  32. package/dist/components/date-picker-input/datepicker-input.styles.d.ts +1 -0
  33. package/dist/components/date-picker-input/datepicker-input.styles.js +22 -0
  34. package/dist/components/dialog/dialog.component.d.ts +0 -1
  35. package/dist/components/dialog/dialog.component.js +2 -4
  36. package/dist/components/icon/icon.component.d.ts +1 -4
  37. package/dist/components/icon/icon.component.js +28 -19
  38. package/dist/components/icon/icon.styles.js +53 -47
  39. package/dist/components/input/input.component.d.ts +1 -0
  40. package/dist/components/input/input.component.js +87 -80
  41. package/dist/components/link/link.component.d.ts +1 -0
  42. package/dist/components/link/link.component.js +21 -21
  43. package/dist/components/menu/menu.component.d.ts +24 -0
  44. package/dist/components/menu/menu.component.js +18 -0
  45. package/dist/components/menu/menu.d.ts +8 -0
  46. package/dist/components/menu/menu.js +6 -0
  47. package/dist/components/menu/menu.styles.d.ts +1 -0
  48. package/dist/components/menu/menu.styles.js +11 -0
  49. package/dist/components/menu-item/menu-item.component.d.ts +25 -0
  50. package/dist/components/menu-item/menu-item.component.js +13 -0
  51. package/dist/components/menu-item/menu-item.d.ts +8 -0
  52. package/dist/components/menu-item/menu-item.js +6 -0
  53. package/dist/components/menu-item/menu-item.styles.d.ts +1 -0
  54. package/dist/components/menu-item/menu-item.styles.js +19 -0
  55. package/dist/components/popover/popover.component.d.ts +29 -0
  56. package/dist/components/popover/popover.component.js +37 -0
  57. package/dist/components/popover/popover.d.ts +8 -0
  58. package/dist/components/popover/popover.js +6 -0
  59. package/dist/components/popover/popover.styles.d.ts +1 -0
  60. package/dist/components/popover/popover.styles.js +12 -0
  61. package/dist/components/select/select.component.d.ts +8 -10
  62. package/dist/components/select/select.component.js +115 -118
  63. package/dist/components/select/select.controllers.d.ts +0 -25
  64. package/dist/components/select/select.controllers.js +35 -95
  65. package/dist/components/stepper/stepper.component.d.ts +38 -0
  66. package/dist/components/stepper/stepper.component.js +91 -0
  67. package/dist/components/stepper/stepper.d.ts +8 -0
  68. package/dist/components/stepper/stepper.helpers.d.ts +16 -0
  69. package/dist/components/stepper/stepper.helpers.js +18 -0
  70. package/dist/components/stepper/stepper.js +6 -0
  71. package/dist/components/stepper/stepper.styles.d.ts +1 -0
  72. package/dist/components/stepper/stepper.styles.js +15 -0
  73. package/dist/components/stepper-item/stepper-item.component.d.ts +47 -0
  74. package/dist/components/stepper-item/stepper-item.component.js +113 -0
  75. package/dist/components/stepper-item/stepper-item.d.ts +8 -0
  76. package/dist/components/stepper-item/stepper-item.js +6 -0
  77. package/dist/components/stepper-item/stepper-item.styles.d.ts +1 -0
  78. package/dist/components/stepper-item/stepper-item.styles.js +98 -0
  79. package/dist/components/toast/toast.component.d.ts +7 -4
  80. package/dist/components/toast/toast.component.js +24 -20
  81. package/dist/components/toast/toast.singleton.d.ts +2 -7
  82. package/dist/components/toast/toast.singleton.js +25 -25
  83. package/dist/components/toast-item/toast-item.component.js +15 -15
  84. package/dist/components/toast-item/toast-item.styles.js +13 -11
  85. package/dist/components/tooltip/tooltip.component.d.ts +24 -0
  86. package/dist/components/tooltip/tooltip.component.js +18 -0
  87. package/dist/components/tooltip/tooltip.d.ts +8 -0
  88. package/dist/components/tooltip/tooltip.js +6 -0
  89. package/dist/components/tooltip/tooltip.styles.d.ts +1 -0
  90. package/dist/components/tooltip/tooltip.styles.js +12 -0
  91. package/dist/custom-elements.json +3278 -1321
  92. package/dist/index.d.ts +8 -0
  93. package/dist/index.js +78 -54
  94. package/dist/internal/base-classes/popover/popover.base.d.ts +29 -0
  95. package/dist/internal/base-classes/popover/popover.base.js +116 -0
  96. package/dist/internal/base-classes/popover/popover.styles.d.ts +1 -0
  97. package/dist/internal/base-classes/popover/popover.styles.js +29 -0
  98. package/dist/internal/controllers/popover.controller.d.ts +17 -0
  99. package/dist/internal/controllers/popover.controller.js +44 -0
  100. package/dist/internal/helpers/dateFormatter.d.ts +2 -0
  101. package/dist/internal/helpers/hintSeverity.d.ts +1 -1
  102. package/dist/internal/helpers/utilityTypes.d.ts +22 -0
  103. package/dist/react/index.d.ts +11 -2
  104. package/dist/react/index.js +11 -2
  105. package/dist/react/skf-breadcrumb/index.d.ts +9 -0
  106. package/dist/react/skf-breadcrumb/index.js +17 -0
  107. package/dist/react/skf-breadcrumb-item/index.d.ts +3 -0
  108. package/dist/react/skf-breadcrumb-item/index.js +13 -0
  109. package/dist/react/skf-datepicker/index.d.ts +12 -0
  110. package/dist/react/skf-datepicker/index.js +18 -0
  111. package/dist/react/skf-menu/index.d.ts +12 -0
  112. package/dist/react/skf-menu/index.js +18 -0
  113. package/dist/react/skf-menu-item/index.d.ts +27 -0
  114. package/dist/react/skf-menu-item/index.js +23 -0
  115. package/dist/react/skf-popover/index.d.ts +12 -0
  116. package/dist/react/skf-popover/index.js +18 -0
  117. package/dist/react/skf-stepper/index.d.ts +9 -0
  118. package/dist/react/skf-stepper/index.js +17 -0
  119. package/dist/react/skf-stepper-item/index.d.ts +9 -0
  120. package/dist/react/skf-stepper-item/index.js +17 -0
  121. package/dist/react/skf-tooltip/index.d.ts +12 -0
  122. package/dist/react/skf-tooltip/index.js +18 -0
  123. package/dist/types/jsx/custom-element-jsx.d.ts +628 -155
  124. package/dist/types/vue/index.d.ts +369 -74
  125. package/dist/vscode.html-custom-data.json +761 -391
  126. package/dist/web-types.json +936 -293
  127. package/package.json +34 -33
@@ -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": "1.0.0-beta.7",
4
+ "version": "1.0.1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -88,6 +88,278 @@
88
88
  "events": []
89
89
  }
90
90
  },
91
+ {
92
+ "name": "skf-alert",
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
+ "doc-url": "",
95
+ "attributes": [
96
+ {
97
+ "name": "button-label",
98
+ "description": "Close button aria-label",
99
+ "value": { "type": "string", "default": "'Close'" }
100
+ },
101
+ {
102
+ "name": "icon",
103
+ "description": "If defined, displays leading icon",
104
+ "value": { "type": "SkfIcon['name'] | undefined" }
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
+ {
112
+ "name": "severity",
113
+ "description": "If defined, gives the supplied appearance",
114
+ "value": {
115
+ "type": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
116
+ }
117
+ }
118
+ ],
119
+ "slots": [
120
+ {
121
+ "name": "",
122
+ "description": "Alert message. **Notice!** See design principles for approved content"
123
+ },
124
+ { "name": "link", "description": "Slot for the link" }
125
+ ],
126
+ "events": [
127
+ {
128
+ "name": "skf-alert-close",
129
+ "description": "Fires when the close button is clicked"
130
+ }
131
+ ],
132
+ "js": {
133
+ "properties": [
134
+ {
135
+ "name": "buttonLabel",
136
+ "description": "Close button aria-label",
137
+ "type": "string"
138
+ },
139
+ {
140
+ "name": "icon",
141
+ "description": "If defined, displays leading icon",
142
+ "type": "SkfIcon['name'] | undefined"
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
+ {
150
+ "name": "severity",
151
+ "description": "If defined, gives the supplied appearance",
152
+ "type": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
153
+ }
154
+ ],
155
+ "events": [
156
+ {
157
+ "name": "skf-alert-close",
158
+ "description": "Fires when the close button is clicked"
159
+ }
160
+ ]
161
+ }
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
+ },
236
+ {
237
+ "name": "skf-button",
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",
239
+ "doc-url": "",
240
+ "attributes": [
241
+ {
242
+ "name": "destructive",
243
+ "description": "If true, gives destructive appearance. **Notice!** Only applicable if `variant` is `primary`.",
244
+ "value": { "type": "boolean", "default": "false" }
245
+ },
246
+ {
247
+ "name": "disabled",
248
+ "description": "If true, removes border",
249
+ "value": { "type": "boolean", "default": "false" }
250
+ },
251
+ {
252
+ "name": "icon",
253
+ "description": "If provided, renders an icon before or after the text",
254
+ "value": {
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\""
256
+ }
257
+ },
258
+ {
259
+ "name": "iconOnly",
260
+ "description": "If true, removes border",
261
+ "value": { "type": "boolean", "default": "false" }
262
+ },
263
+ {
264
+ "name": "icon-position",
265
+ "description": "Determines the positioning of the icon in relation to the text",
266
+ "value": { "type": "'left' | 'right'", "default": "'left'" }
267
+ },
268
+ {
269
+ "name": "loading",
270
+ "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
271
+ "value": { "type": "boolean", "default": "false" }
272
+ },
273
+ {
274
+ "name": "no-validate",
275
+ "value": { "type": "boolean", "default": "false" }
276
+ },
277
+ {
278
+ "name": "size",
279
+ "description": "If provided, displays an alternative size",
280
+ "value": { "type": "'sm' | 'md' | 'lg'", "default": "'md'" }
281
+ },
282
+ {
283
+ "name": "type",
284
+ "description": "If provided, changes the button type",
285
+ "value": {
286
+ "type": "'button' | 'submit' | 'reset'",
287
+ "default": "'button'"
288
+ }
289
+ },
290
+ {
291
+ "name": "variant",
292
+ "description": "If provided, alters the appearance",
293
+ "value": {
294
+ "type": "'primary' | 'secondary' | 'tertiary'",
295
+ "default": "'primary'"
296
+ }
297
+ }
298
+ ],
299
+ "slots": [{ "name": "", "description": "The Primary content" }],
300
+ "events": [
301
+ {
302
+ "name": "click",
303
+ "description": "Fires when the button is clicked"
304
+ }
305
+ ],
306
+ "js": {
307
+ "properties": [
308
+ {
309
+ "name": "destructive",
310
+ "description": "If true, gives destructive appearance. **Notice!** Only applicable if `variant` is `primary`.",
311
+ "type": "boolean"
312
+ },
313
+ {
314
+ "name": "disabled",
315
+ "description": "If true, removes border",
316
+ "type": "boolean"
317
+ },
318
+ {
319
+ "name": "icon",
320
+ "description": "If provided, renders an icon before or after the text",
321
+ "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\""
322
+ },
323
+ {
324
+ "name": "iconOnly",
325
+ "description": "If true, removes border",
326
+ "type": "boolean"
327
+ },
328
+ {
329
+ "name": "iconPosition",
330
+ "description": "Determines the positioning of the icon in relation to the text",
331
+ "type": "'left' | 'right'"
332
+ },
333
+ {
334
+ "name": "loading",
335
+ "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
336
+ "type": "boolean"
337
+ },
338
+ { "name": "noValidate", "type": "boolean" },
339
+ {
340
+ "name": "size",
341
+ "description": "If provided, displays an alternative size",
342
+ "type": "'sm' | 'md' | 'lg'"
343
+ },
344
+ {
345
+ "name": "type",
346
+ "description": "If provided, changes the button type",
347
+ "type": "'button' | 'submit' | 'reset'"
348
+ },
349
+ {
350
+ "name": "variant",
351
+ "description": "If provided, alters the appearance",
352
+ "type": "'primary' | 'secondary' | 'tertiary'"
353
+ }
354
+ ],
355
+ "events": [
356
+ {
357
+ "name": "click",
358
+ "description": "Fires when the button is clicked"
359
+ }
360
+ ]
361
+ }
362
+ },
91
363
  {
92
364
  "name": "skf-card",
93
365
  "description": "The `<skf-card>` can be used to group related subjects in a container\n---\n\n\n### **Slots:**\n - _default_ - The card's main content",
@@ -155,7 +427,7 @@
155
427
  {
156
428
  "name": "checked",
157
429
  "description": "If true, outputs helping hints in console",
158
- "value": { "type": "boolean | undefined" }
430
+ "value": { "type": "string" }
159
431
  },
160
432
  {
161
433
  "name": "custom-invalid",
@@ -226,8 +498,7 @@
226
498
  },
227
499
  {
228
500
  "name": "checked",
229
- "description": "If true, outputs helping hints in console",
230
- "type": "boolean | undefined"
501
+ "description": "If true, outputs helping hints in console"
231
502
  },
232
503
  {
233
504
  "name": "customInvalid",
@@ -369,9 +640,110 @@
369
640
  ]
370
641
  }
371
642
  },
643
+ {
644
+ "name": "skf-datepicker",
645
+ "description": "A date picker component that allows users to select a date or a range of dates.\n---\n\n\n### **Events:**\n - **selected-date-changed** - When a date is selected\n- **selected-date-range-changed** - When a range of dates is selected\n\n### **Slots:**\n - _default_ - Default hint content placed inside the date picker\n\n### **CSS Properties:**\n - **--max-width** - The maximum width of the date picker _(default: undefined)_",
646
+ "doc-url": "",
647
+ "attributes": [
648
+ {
649
+ "name": "locale",
650
+ "description": "The locale to use for formatting the date",
651
+ "value": { "type": "string", "default": "'en-CA'" }
652
+ },
653
+ {
654
+ "name": "date",
655
+ "description": "The date to display in the date picker",
656
+ "value": { "type": "string" }
657
+ },
658
+ { "name": "id", "value": { "type": "string", "default": "''" } },
659
+ {
660
+ "name": "invalid-dates",
661
+ "description": "A comma-separated list of dates (yyyy-mm-dd format) that are not selectable.",
662
+ "value": { "type": "string | undefined" }
663
+ },
664
+ {
665
+ "name": "range",
666
+ "description": "If true, the date picker will allow the selection of a range of dates",
667
+ "value": { "type": "boolean", "default": "false" }
668
+ },
669
+ {
670
+ "name": "selectable-from",
671
+ "description": "Earliest selectable date. (yyyy-mm-dd format)",
672
+ "value": { "type": "string | undefined" }
673
+ },
674
+ {
675
+ "name": "selectable-to",
676
+ "description": "Latest selectable date. (yyyy-mm-dd format)",
677
+ "value": { "type": "string | undefined" }
678
+ }
679
+ ],
680
+ "slots": [
681
+ {
682
+ "name": "",
683
+ "description": "Default hint content placed inside the date picker"
684
+ }
685
+ ],
686
+ "events": [
687
+ {
688
+ "name": "selected-date-changed",
689
+ "description": "When a date is selected"
690
+ },
691
+ {
692
+ "name": "selected-date-range-changed",
693
+ "description": "When a range of dates is selected"
694
+ }
695
+ ],
696
+ "js": {
697
+ "properties": [
698
+ {
699
+ "name": "locale",
700
+ "description": "The locale to use for formatting the date",
701
+ "type": "string"
702
+ },
703
+ {
704
+ "name": "date",
705
+ "description": "The date to display in the date picker",
706
+ "type": "string"
707
+ },
708
+ { "name": "id", "type": "string" },
709
+ {
710
+ "name": "invalidDates",
711
+ "description": "A comma-separated list of dates (yyyy-mm-dd format) that are not selectable.",
712
+ "type": "string | undefined"
713
+ },
714
+ {
715
+ "name": "range",
716
+ "description": "If true, the date picker will allow the selection of a range of dates",
717
+ "type": "boolean"
718
+ },
719
+ { "name": "selectedDate", "type": "Date | undefined" },
720
+ {
721
+ "name": "selectableFrom",
722
+ "description": "Earliest selectable date. (yyyy-mm-dd format)",
723
+ "type": "string | undefined"
724
+ },
725
+ {
726
+ "name": "selectableTo",
727
+ "description": "Latest selectable date. (yyyy-mm-dd format)",
728
+ "type": "string | undefined"
729
+ },
730
+ { "name": "selectedDateRange", "type": "SkfDatePickerDateRange" }
731
+ ],
732
+ "events": [
733
+ {
734
+ "name": "selected-date-changed",
735
+ "description": "When a date is selected"
736
+ },
737
+ {
738
+ "name": "selected-date-range-changed",
739
+ "description": "When a range of dates is selected"
740
+ }
741
+ ]
742
+ }
743
+ },
372
744
  {
373
745
  "name": "skf-dialog",
374
- "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- **heading** - The dialog component's heading\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)_",
746
+ "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)_",
375
747
  "doc-url": "",
376
748
  "attributes": [
377
749
  {
@@ -406,10 +778,6 @@
406
778
  ],
407
779
  "slots": [
408
780
  { "name": "", "description": "The dialog component's content" },
409
- {
410
- "name": "heading",
411
- "description": "The dialog component's heading"
412
- },
413
781
  {
414
782
  "name": "footer",
415
783
  "description": "The dialog component's buttons goes here"
@@ -487,78 +855,6 @@
487
855
  ]
488
856
  }
489
857
  },
490
- {
491
- "name": "skf-alert",
492
- "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",
493
- "doc-url": "",
494
- "attributes": [
495
- {
496
- "name": "closeable",
497
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
498
- "value": { "type": "boolean | undefined" }
499
- },
500
- {
501
- "name": "button-label",
502
- "description": "Close button aria-label",
503
- "value": { "type": "string", "default": "'Close'" }
504
- },
505
- {
506
- "name": "icon",
507
- "description": "If defined, displays leading icon",
508
- "value": { "type": "SkfIcon['name'] | undefined" }
509
- },
510
- {
511
- "name": "severity",
512
- "description": "If defined, gives the supplied appearance",
513
- "value": {
514
- "type": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
515
- }
516
- }
517
- ],
518
- "slots": [
519
- {
520
- "name": "",
521
- "description": "Alert message. **Notice!** See design principles for approved content"
522
- },
523
- { "name": "link", "description": "Slot for the link" }
524
- ],
525
- "events": [
526
- {
527
- "name": "skf-alert-close",
528
- "description": "Fires when the close button is clicked"
529
- }
530
- ],
531
- "js": {
532
- "properties": [
533
- {
534
- "name": "closeable",
535
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
536
- "type": "boolean | undefined"
537
- },
538
- {
539
- "name": "buttonLabel",
540
- "description": "Close button aria-label",
541
- "type": "string"
542
- },
543
- {
544
- "name": "icon",
545
- "description": "If defined, displays leading icon",
546
- "type": "SkfIcon['name'] | undefined"
547
- },
548
- {
549
- "name": "severity",
550
- "description": "If defined, gives the supplied appearance",
551
- "type": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
552
- }
553
- ],
554
- "events": [
555
- {
556
- "name": "skf-alert-close",
557
- "description": "Fires when the close button is clicked"
558
- }
559
- ]
560
- }
561
- },
562
858
  {
563
859
  "name": "skf-divider",
564
860
  "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)_",
@@ -598,131 +894,11 @@
598
894
  },
599
895
  {
600
896
  "name": "vertical",
601
- "description": "If true, renders the divider vertically",
602
- "type": "boolean"
603
- }
604
- ],
605
- "events": []
606
- }
607
- },
608
- {
609
- "name": "skf-button",
610
- "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",
611
- "doc-url": "",
612
- "attributes": [
613
- {
614
- "name": "destructive",
615
- "description": "If true, gives destructive appearance. **Notice!** Only applicable if `variant` is `primary`.",
616
- "value": { "type": "boolean", "default": "false" }
617
- },
618
- {
619
- "name": "disabled",
620
- "description": "If true, removes border",
621
- "value": { "type": "boolean", "default": "false" }
622
- },
623
- {
624
- "name": "icon",
625
- "description": "If provided, renders an icon before or after the text",
626
- "value": {
627
- "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\""
628
- }
629
- },
630
- {
631
- "name": "icon-position",
632
- "description": "If provided, determines the positioning of the icon in relation to the text",
633
- "value": {
634
- "type": "'left' | 'right' | undefined",
635
- "default": "'left'"
636
- }
637
- },
638
- {
639
- "name": "loading",
640
- "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
641
- "value": { "type": "boolean", "default": "false" }
642
- },
643
- {
644
- "name": "no-validate",
645
- "value": { "type": "boolean", "default": "false" }
646
- },
647
- {
648
- "name": "size",
649
- "description": "If provided, displays an alternative size",
650
- "value": { "type": "'sm' | 'md' | 'lg'", "default": "'md'" }
651
- },
652
- {
653
- "name": "type",
654
- "description": "If provided, changes the button type",
655
- "value": {
656
- "type": "'button' | 'submit' | 'reset'",
657
- "default": "'button'"
658
- }
659
- },
660
- {
661
- "name": "variant",
662
- "description": "If provided, alters the appearance",
663
- "value": {
664
- "type": "'primary' | 'secondary'",
665
- "default": "'primary'"
666
- }
667
- }
668
- ],
669
- "slots": [{ "name": "", "description": "The Primary content" }],
670
- "events": [
671
- {
672
- "name": "click",
673
- "description": "Fires when the button is clicked"
674
- }
675
- ],
676
- "js": {
677
- "properties": [
678
- {
679
- "name": "destructive",
680
- "description": "If true, gives destructive appearance. **Notice!** Only applicable if `variant` is `primary`.",
681
- "type": "boolean"
682
- },
683
- {
684
- "name": "disabled",
685
- "description": "If true, removes border",
686
- "type": "boolean"
687
- },
688
- {
689
- "name": "icon",
690
- "description": "If provided, renders an icon before or after the text",
691
- "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\""
692
- },
693
- {
694
- "name": "iconPosition",
695
- "description": "If provided, determines the positioning of the icon in relation to the text",
696
- "type": "'left' | 'right' | undefined"
697
- },
698
- {
699
- "name": "loading",
700
- "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
701
- "type": "boolean"
702
- },
703
- { "name": "noValidate", "type": "boolean" },
704
- {
705
- "name": "size",
706
- "description": "If provided, displays an alternative size",
707
- "type": "'sm' | 'md' | 'lg'"
708
- },
709
- {
710
- "name": "type",
711
- "description": "If provided, changes the button type",
712
- "type": "'button' | 'submit' | 'reset'"
713
- },
714
- {
715
- "name": "variant",
716
- "description": "If provided, alters the appearance",
717
- "type": "'primary' | 'secondary'"
718
- }
719
- ],
720
- "events": [
721
- {
722
- "name": "click",
723
- "description": "Fires when the button is clicked"
897
+ "description": "If true, renders the divider vertically",
898
+ "type": "boolean"
724
899
  }
725
- ]
900
+ ],
901
+ "events": []
726
902
  }
727
903
  },
728
904
  {
@@ -1119,36 +1295,306 @@
1119
1295
  "type": "string | undefined"
1120
1296
  },
1121
1297
  {
1122
- "name": "type",
1123
- "description": "Type of input control",
1124
- "type": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
1298
+ "name": "type",
1299
+ "description": "Type of input control",
1300
+ "type": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
1301
+ },
1302
+ {
1303
+ "name": "validateOn",
1304
+ "description": "Sets validation start",
1305
+ "type": "'input' | 'change' | 'submit'"
1306
+ },
1307
+ {
1308
+ "name": "value",
1309
+ "description": "The current value of the input field",
1310
+ "type": "string"
1311
+ }
1312
+ ],
1313
+ "events": [
1314
+ {
1315
+ "name": "change",
1316
+ "description": "Fires when the value of the input changes"
1317
+ },
1318
+ {
1319
+ "name": "invalid",
1320
+ "description": "Fires when the input is invalid"
1321
+ }
1322
+ ]
1323
+ }
1324
+ },
1325
+ {
1326
+ "name": "skf-link",
1327
+ "description": "The `<skf-link>` can be used as either a regular link or a link styled semantic button\n---\n\n\n### **Slots:**\n - _default_ - The links' main content",
1328
+ "doc-url": "",
1329
+ "attributes": [
1330
+ {
1331
+ "name": "as",
1332
+ "description": "Defines the semantic element to render",
1333
+ "value": { "type": "'button' | 'a'", "default": "'a'" }
1334
+ },
1335
+ {
1336
+ "name": "color",
1337
+ "description": "Defines the text-color",
1338
+ "value": {
1339
+ "type": "'primary' | 'inverse'",
1340
+ "default": "'primary'"
1341
+ }
1342
+ },
1343
+ {
1344
+ "name": "disabled",
1345
+ "description": "If true, disables the link",
1346
+ "value": { "type": "boolean | undefined" }
1347
+ },
1348
+ {
1349
+ "name": "download",
1350
+ "description": "If defined, downloads the url",
1351
+ "value": { "type": "string | undefined" }
1352
+ },
1353
+ {
1354
+ "name": "href",
1355
+ "description": "If defined, loads url on click",
1356
+ "value": { "type": "string | undefined" }
1357
+ },
1358
+ {
1359
+ "name": "icon",
1360
+ "description": "If defined, renders an icon before or after the text",
1361
+ "value": {
1362
+ "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\""
1363
+ }
1364
+ },
1365
+ {
1366
+ "name": "icon-placement",
1367
+ "description": "Defines the position of the icon in relation to the text",
1368
+ "value": { "type": "'left' | 'right'", "default": "'left'" }
1369
+ },
1370
+ {
1371
+ "name": "rel",
1372
+ "description": "If defined, describes the relationship between a linked resource and the current document",
1373
+ "value": { "type": "string | undefined" }
1374
+ },
1375
+ {
1376
+ "name": "route",
1377
+ "description": "If defined, used on conjunction with onClick property, second argument",
1378
+ "value": { "type": "string | undefined" }
1379
+ },
1380
+ {
1381
+ "name": "stretch",
1382
+ "description": "If true, fills the parents horizontal axis",
1383
+ "value": { "type": "boolean", "default": "false" }
1384
+ },
1385
+ {
1386
+ "name": "target",
1387
+ "description": "If defined, specifies where to open the linked document",
1388
+ "value": {
1389
+ "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1390
+ }
1391
+ },
1392
+ {
1393
+ "name": "type",
1394
+ "description": "Defines the type of button",
1395
+ "value": {
1396
+ "type": "'button' | 'submit' | 'reset'",
1397
+ "default": "'button'"
1398
+ }
1399
+ }
1400
+ ],
1401
+ "slots": [{ "name": "", "description": "The links' main content" }],
1402
+ "events": [],
1403
+ "js": {
1404
+ "properties": [
1405
+ {
1406
+ "name": "as",
1407
+ "description": "Defines the semantic element to render",
1408
+ "type": "'button' | 'a'"
1409
+ },
1410
+ {
1411
+ "name": "color",
1412
+ "description": "Defines the text-color",
1413
+ "type": "'primary' | 'inverse'"
1414
+ },
1415
+ {
1416
+ "name": "disabled",
1417
+ "description": "If true, disables the link",
1418
+ "type": "boolean | undefined"
1419
+ },
1420
+ {
1421
+ "name": "download",
1422
+ "description": "If defined, downloads the url",
1423
+ "type": "string | undefined"
1424
+ },
1425
+ {
1426
+ "name": "href",
1427
+ "description": "If defined, loads url on click",
1428
+ "type": "string | undefined"
1429
+ },
1430
+ {
1431
+ "name": "icon",
1432
+ "description": "If defined, renders an icon before or after the text",
1433
+ "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\""
1434
+ },
1435
+ {
1436
+ "name": "iconPlacement",
1437
+ "description": "Defines the position of the icon in relation to the text",
1438
+ "type": "'left' | 'right'"
1439
+ },
1440
+ {
1441
+ "name": "rel",
1442
+ "description": "If defined, describes the relationship between a linked resource and the current document",
1443
+ "type": "string | undefined"
1444
+ },
1445
+ {
1446
+ "name": "route",
1447
+ "description": "If defined, used on conjunction with onClick property, second argument",
1448
+ "type": "string | undefined"
1449
+ },
1450
+ {
1451
+ "name": "stretch",
1452
+ "description": "If true, fills the parents horizontal axis",
1453
+ "type": "boolean"
1454
+ },
1455
+ {
1456
+ "name": "target",
1457
+ "description": "If defined, specifies where to open the linked document",
1458
+ "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1459
+ },
1460
+ {
1461
+ "name": "type",
1462
+ "description": "Defines the type of button",
1463
+ "type": "'button' | 'submit' | 'reset'"
1464
+ },
1465
+ {
1466
+ "name": "onClick",
1467
+ "description": "If provided, custom function triggered by click where the second return parameter enables custom routing.",
1468
+ "type": "function"
1469
+ }
1470
+ ],
1471
+ "events": []
1472
+ }
1473
+ },
1474
+ {
1475
+ "name": "skf-loader",
1476
+ "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
1477
+ "doc-url": "",
1478
+ "attributes": [
1479
+ {
1480
+ "name": "aria-label",
1481
+ "description": "Defines the aria-label",
1482
+ "value": { "type": "string", "default": "'Loading...'" }
1483
+ },
1484
+ {
1485
+ "name": "invert",
1486
+ "description": "If true, inverts the color (to be used on colored backgrounds)",
1487
+ "value": { "type": "boolean", "default": "false" }
1488
+ },
1489
+ {
1490
+ "name": "size",
1491
+ "description": "Defines the size of the loader",
1492
+ "value": { "type": "'md' | 'sm' | undefined", "default": "'md'" }
1493
+ }
1494
+ ],
1495
+ "events": [],
1496
+ "js": {
1497
+ "properties": [
1498
+ {
1499
+ "name": "ariaLabel",
1500
+ "description": "Defines the aria-label",
1501
+ "type": "string"
1502
+ },
1503
+ {
1504
+ "name": "invert",
1505
+ "description": "If true, inverts the color (to be used on colored backgrounds)",
1506
+ "type": "boolean"
1507
+ },
1508
+ {
1509
+ "name": "size",
1510
+ "description": "Defines the size of the loader",
1511
+ "type": "'md' | 'sm' | undefined"
1512
+ },
1513
+ { "name": "role", "type": "string" },
1514
+ { "name": "ariaLive", "type": "string" }
1515
+ ],
1516
+ "events": []
1517
+ }
1518
+ },
1519
+ {
1520
+ "name": "skf-logo",
1521
+ "description": "The `<skf-logo>` component is used to display the SKF logo.\n---\n\n\n### **CSS Properties:**\n - **--skf-logo-height** - The height of the logo _(default: undefined)_",
1522
+ "doc-url": "",
1523
+ "attributes": [
1524
+ {
1525
+ "name": "title",
1526
+ "description": "Defines the title of the logo",
1527
+ "value": { "type": "string", "default": "'SKF logotype'" }
1528
+ },
1529
+ {
1530
+ "name": "color",
1531
+ "description": "Defines the color of the logo",
1532
+ "value": {
1533
+ "type": "\"primary\" | \"secondary\" | \"inverse\"",
1534
+ "default": "'primary'"
1535
+ }
1536
+ }
1537
+ ],
1538
+ "events": [],
1539
+ "js": {
1540
+ "properties": [
1541
+ {
1542
+ "name": "title",
1543
+ "description": "Defines the title of the logo",
1544
+ "type": "string"
1545
+ },
1546
+ {
1547
+ "name": "color",
1548
+ "description": "Defines the color of the logo",
1549
+ "type": "\"primary\" | \"secondary\" | \"inverse\""
1550
+ }
1551
+ ],
1552
+ "events": []
1553
+ }
1554
+ },
1555
+ {
1556
+ "name": "skf-menu",
1557
+ "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",
1558
+ "doc-url": "",
1559
+ "attributes": [],
1560
+ "slots": [{ "name": "", "description": "The menu popover content" }],
1561
+ "events": [
1562
+ { "name": "open", "description": "Fired when the menu is opened" },
1563
+ { "name": "close", "description": "Fired when the menu is closed" }
1564
+ ],
1565
+ "js": {
1566
+ "properties": [
1567
+ {
1568
+ "name": "placement",
1569
+ "description": "The placement of the menu",
1570
+ "type": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
1125
1571
  },
1126
1572
  {
1127
- "name": "validateOn",
1128
- "description": "Sets validation start",
1129
- "type": "'input' | 'change' | 'submit'"
1573
+ "name": "isOpen",
1574
+ "description": "Whether the menu is open",
1575
+ "type": "boolean"
1130
1576
  },
1131
1577
  {
1132
- "name": "value",
1133
- "description": "The current value of the input field",
1578
+ "name": "anchor",
1579
+ "description": "The id of the element the menu will be anchored to",
1134
1580
  "type": "string"
1135
1581
  }
1136
1582
  ],
1137
1583
  "events": [
1138
1584
  {
1139
- "name": "change",
1140
- "description": "Fires when the value of the input changes"
1585
+ "name": "open",
1586
+ "description": "Fired when the menu is opened"
1141
1587
  },
1142
1588
  {
1143
- "name": "invalid",
1144
- "description": "Fires when the input is invalid"
1589
+ "name": "close",
1590
+ "description": "Fired when the menu is closed"
1145
1591
  }
1146
1592
  ]
1147
1593
  }
1148
1594
  },
1149
1595
  {
1150
- "name": "skf-link",
1151
- "description": "The `<skf-link>` can be used as either a regular link or a link styled semantic button\n---\n\n\n### **Slots:**\n - _default_ - The links' main content",
1596
+ "name": "skf-menu-item",
1597
+ "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",
1152
1598
  "doc-url": "",
1153
1599
  "attributes": [
1154
1600
  {
@@ -1222,8 +1668,44 @@
1222
1668
  }
1223
1669
  }
1224
1670
  ],
1225
- "slots": [{ "name": "", "description": "The links' main content" }],
1226
- "events": [],
1671
+ "slots": [
1672
+ { "name": "", "description": "The component's main content" },
1673
+ {
1674
+ "name": "my-named-slot",
1675
+ "description": "A named slot of the component"
1676
+ }
1677
+ ],
1678
+ "events": [
1679
+ {
1680
+ "name": "my-tag-my-event",
1681
+ "type": "CustomEvent",
1682
+ "description": "Fired when something happens"
1683
+ },
1684
+ {
1685
+ "name": "click",
1686
+ "description": "Fired when the component is clicked"
1687
+ },
1688
+ {
1689
+ "name": "mouseover",
1690
+ "description": "Fired when the mouse is over the component"
1691
+ },
1692
+ {
1693
+ "name": "mouseout",
1694
+ "description": "Fired when the mouse is out of the component"
1695
+ },
1696
+ {
1697
+ "name": "focus",
1698
+ "description": "Fired when the component is focused"
1699
+ },
1700
+ {
1701
+ "name": "blur",
1702
+ "description": "Fired when the component is blurred"
1703
+ },
1704
+ {
1705
+ "name": "change",
1706
+ "description": "Fired when the component's value changes"
1707
+ }
1708
+ ],
1227
1709
  "js": {
1228
1710
  "properties": [
1229
1711
  {
@@ -1292,88 +1774,99 @@
1292
1774
  "type": "function"
1293
1775
  }
1294
1776
  ],
1295
- "events": []
1777
+ "events": [
1778
+ {
1779
+ "name": "my-tag-my-event",
1780
+ "type": "CustomEvent",
1781
+ "description": "Fired when something happens"
1782
+ },
1783
+ {
1784
+ "name": "click",
1785
+ "description": "Fired when the component is clicked"
1786
+ },
1787
+ {
1788
+ "name": "mouseover",
1789
+ "description": "Fired when the mouse is over the component"
1790
+ },
1791
+ {
1792
+ "name": "mouseout",
1793
+ "description": "Fired when the mouse is out of the component"
1794
+ },
1795
+ {
1796
+ "name": "focus",
1797
+ "description": "Fired when the component is focused"
1798
+ },
1799
+ {
1800
+ "name": "blur",
1801
+ "description": "Fired when the component is blurred"
1802
+ },
1803
+ {
1804
+ "name": "change",
1805
+ "description": "Fired when the component's value changes"
1806
+ }
1807
+ ]
1296
1808
  }
1297
1809
  },
1298
1810
  {
1299
- "name": "skf-loader",
1300
- "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
1811
+ "name": "skf-popover",
1812
+ "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",
1301
1813
  "doc-url": "",
1302
1814
  "attributes": [
1303
1815
  {
1304
- "name": "aria-label",
1305
- "description": "Defines the aria-label",
1306
- "value": { "type": "string", "default": "'Loading...'" }
1816
+ "name": "offset",
1817
+ "description": "If defined, sets a custom offset for the popover",
1818
+ "value": { "type": "number", "default": "8" }
1307
1819
  },
1308
1820
  {
1309
- "name": "invert",
1310
- "description": "If true, inverts the color (to be used on colored backgrounds)",
1821
+ "name": "hideArrow",
1822
+ "description": "If true, hides the arrow",
1311
1823
  "value": { "type": "boolean", "default": "false" }
1312
- },
1313
- {
1314
- "name": "size",
1315
- "description": "Defines the size of the loader",
1316
- "value": { "type": "'md' | 'sm' | undefined", "default": "'md'" }
1317
1824
  }
1318
1825
  ],
1319
- "events": [],
1826
+ "slots": [{ "name": "", "description": "The popover content" }],
1827
+ "events": [
1828
+ { "name": "open", "description": "Fired when the menu is opened" },
1829
+ { "name": "close", "description": "Fired when the menu is closed" }
1830
+ ],
1320
1831
  "js": {
1321
1832
  "properties": [
1322
1833
  {
1323
- "name": "ariaLabel",
1324
- "description": "Defines the aria-label",
1325
- "type": "string"
1834
+ "name": "offset",
1835
+ "description": "If defined, sets a custom offset for the popover",
1836
+ "type": "number"
1326
1837
  },
1327
1838
  {
1328
- "name": "invert",
1329
- "description": "If true, inverts the color (to be used on colored backgrounds)",
1839
+ "name": "hideArrow",
1840
+ "description": "If true, hides the arrow",
1330
1841
  "type": "boolean"
1331
1842
  },
1843
+ { "name": "arrow", "type": "boolean" },
1332
1844
  {
1333
- "name": "size",
1334
- "description": "Defines the size of the loader",
1335
- "type": "'md' | 'sm' | undefined"
1845
+ "name": "placement",
1846
+ "description": "The placement of the menu",
1847
+ "type": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
1336
1848
  },
1337
- { "name": "role", "type": "string" },
1338
- { "name": "ariaLive", "type": "string" }
1339
- ],
1340
- "events": []
1341
- }
1342
- },
1343
- {
1344
- "name": "skf-logo",
1345
- "description": "The `<skf-logo>` component is used to display the SKF logo.\n---\n\n\n### **CSS Properties:**\n - **--skf-logo-height** - The height of the logo _(default: undefined)_",
1346
- "doc-url": "",
1347
- "attributes": [
1348
- {
1349
- "name": "title",
1350
- "description": "Defines the title of the logo",
1351
- "value": { "type": "string", "default": "'SKF logotype'" }
1352
- },
1353
- {
1354
- "name": "color",
1355
- "description": "Defines the color of the logo",
1356
- "value": {
1357
- "type": "\"primary\" | \"secondary\" | \"inverse\"",
1358
- "default": "'primary'"
1359
- }
1360
- }
1361
- ],
1362
- "events": [],
1363
- "js": {
1364
- "properties": [
1365
1849
  {
1366
- "name": "title",
1367
- "description": "Defines the title of the logo",
1368
- "type": "string"
1850
+ "name": "isOpen",
1851
+ "description": "Whether the menu is open",
1852
+ "type": "boolean"
1369
1853
  },
1370
1854
  {
1371
- "name": "color",
1372
- "description": "Defines the color of the logo",
1373
- "type": "\"primary\" | \"secondary\" | \"inverse\""
1855
+ "name": "anchor",
1856
+ "description": "The id of the element the menu will be anchored to",
1857
+ "type": "string"
1374
1858
  }
1375
1859
  ],
1376
- "events": []
1860
+ "events": [
1861
+ {
1862
+ "name": "open",
1863
+ "description": "Fired when the menu is opened"
1864
+ },
1865
+ {
1866
+ "name": "close",
1867
+ "description": "Fired when the menu is closed"
1868
+ }
1869
+ ]
1377
1870
  }
1378
1871
  },
1379
1872
  {
@@ -1888,6 +2381,100 @@
1888
2381
  "events": []
1889
2382
  }
1890
2383
  },
2384
+ {
2385
+ "name": "skf-stepper",
2386
+ "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>`",
2387
+ "doc-url": "",
2388
+ "attributes": [
2389
+ {
2390
+ "name": "activeIndex",
2391
+ "description": "Sets the active item",
2392
+ "value": { "type": "number", "default": "-1" }
2393
+ },
2394
+ {
2395
+ "name": "linear",
2396
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
2397
+ "value": { "type": "boolean", "default": "false" }
2398
+ }
2399
+ ],
2400
+ "slots": [
2401
+ { "name": "", "description": "One or more `<skf-stepper-item>`" }
2402
+ ],
2403
+ "events": [
2404
+ {
2405
+ "name": "skf-stepper-item-select",
2406
+ "description": "Dispatched when the stepper item is selected"
2407
+ }
2408
+ ],
2409
+ "js": {
2410
+ "properties": [
2411
+ {
2412
+ "name": "activeIndex",
2413
+ "description": "Sets the active item",
2414
+ "type": "number"
2415
+ },
2416
+ {
2417
+ "name": "linear",
2418
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
2419
+ "type": "boolean"
2420
+ }
2421
+ ],
2422
+ "events": [
2423
+ {
2424
+ "name": "skf-stepper-item-select",
2425
+ "description": "Dispatched when the stepper item is selected"
2426
+ }
2427
+ ]
2428
+ }
2429
+ },
2430
+ {
2431
+ "name": "skf-stepper-item",
2432
+ "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",
2433
+ "doc-url": "",
2434
+ "attributes": [
2435
+ {
2436
+ "name": "state",
2437
+ "description": "If defined, gives the supplied appearance",
2438
+ "value": {
2439
+ "type": "Extract<SkfStepperItemState, 'active' | 'completed'> | undefined"
2440
+ }
2441
+ },
2442
+ {
2443
+ "name": "completed",
2444
+ "description": "If true, item marked as completed",
2445
+ "value": { "type": "boolean", "default": "false" }
2446
+ }
2447
+ ],
2448
+ "slots": [{ "name": "", "description": "Label of the stepper item" }],
2449
+ "events": [
2450
+ {
2451
+ "name": "skf-stepper-item-select",
2452
+ "description": "Dispatched when the stepper item is selected"
2453
+ }
2454
+ ],
2455
+ "js": {
2456
+ "properties": [
2457
+ {
2458
+ "name": "state",
2459
+ "description": "If defined, gives the supplied appearance",
2460
+ "type": "Extract<SkfStepperItemState, 'active' | 'completed'> | undefined"
2461
+ },
2462
+ {
2463
+ "name": "completed",
2464
+ "description": "If true, item marked as completed",
2465
+ "type": "boolean"
2466
+ },
2467
+ { "name": "_setInternalState" },
2468
+ { "name": "role", "type": "string" }
2469
+ ],
2470
+ "events": [
2471
+ {
2472
+ "name": "skf-stepper-item-select",
2473
+ "description": "Dispatched when the stepper item is selected"
2474
+ }
2475
+ ]
2476
+ }
2477
+ },
1891
2478
  {
1892
2479
  "name": "skf-switch",
1893
2480
  "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.",
@@ -2451,21 +3038,23 @@
2451
3038
  "doc-url": "",
2452
3039
  "attributes": [
2453
3040
  {
2454
- "name": "closeable",
2455
- "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
3041
+ "name": "debug",
2456
3042
  "value": { "type": "boolean", "default": "false" }
2457
3043
  },
2458
3044
  {
2459
- "name": "debug",
2460
- "value": { "type": "boolean", "default": "false" }
3045
+ "name": "icon",
3046
+ "description": "If defined, displays leading icon",
3047
+ "value": { "type": "SkfAlert['icon'] | undefined" }
3048
+ },
3049
+ {
3050
+ "name": "persistent",
3051
+ "description": "If true, renders with an close button and sets aria-role to `status`",
3052
+ "value": { "type": "SkfAlert['persistent']", "default": "false" }
2461
3053
  },
2462
3054
  {
2463
3055
  "name": "severity",
2464
- "description": "Severity of the toast.",
2465
- "value": {
2466
- "type": "'info' | 'success' | 'warning' | 'error'",
2467
- "default": "'info'"
2468
- }
3056
+ "description": "If defined, gives the supplied appearance",
3057
+ "value": { "type": "SkfAlert['severity']", "default": "'info'" }
2469
3058
  },
2470
3059
  {
2471
3060
  "name": "timer",
@@ -2484,16 +3073,21 @@
2484
3073
  "events": [],
2485
3074
  "js": {
2486
3075
  "properties": [
3076
+ { "name": "debug", "type": "boolean" },
2487
3077
  {
2488
- "name": "closeable",
2489
- "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
2490
- "type": "boolean"
3078
+ "name": "icon",
3079
+ "description": "If defined, displays leading icon",
3080
+ "type": "SkfAlert['icon'] | undefined"
3081
+ },
3082
+ {
3083
+ "name": "persistent",
3084
+ "description": "If true, renders with an close button and sets aria-role to `status`",
3085
+ "type": "SkfAlert['persistent']"
2491
3086
  },
2492
- { "name": "debug", "type": "boolean" },
2493
3087
  {
2494
3088
  "name": "severity",
2495
- "description": "Severity of the toast.",
2496
- "type": "'info' | 'success' | 'warning' | 'error'"
3089
+ "description": "If defined, gives the supplied appearance",
3090
+ "type": "SkfAlert['severity']"
2497
3091
  },
2498
3092
  {
2499
3093
  "name": "timer",
@@ -2530,6 +3124,55 @@
2530
3124
  "properties": [{ "name": "debug", "type": "boolean" }],
2531
3125
  "events": []
2532
3126
  }
3127
+ },
3128
+ {
3129
+ "name": "skf-tooltip",
3130
+ "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",
3131
+ "doc-url": "",
3132
+ "attributes": [],
3133
+ "slots": [
3134
+ { "name": "", "description": "The tooltip popover content" }
3135
+ ],
3136
+ "events": [
3137
+ {
3138
+ "name": "open",
3139
+ "description": "Fired when the dropdown is opened"
3140
+ },
3141
+ {
3142
+ "name": "close",
3143
+ "description": "Fired when the dropdown is closed"
3144
+ }
3145
+ ],
3146
+ "js": {
3147
+ "properties": [
3148
+ { "name": "offset", "type": "number" },
3149
+ {
3150
+ "name": "placement",
3151
+ "description": "The placement of the dropdown",
3152
+ "type": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
3153
+ },
3154
+ {
3155
+ "name": "isOpen",
3156
+ "description": "Whether the dropdown is open",
3157
+ "type": "boolean"
3158
+ },
3159
+ {
3160
+ "name": "anchor",
3161
+ "description": "The id of the element the dropdown will be anchored to",
3162
+ "type": "string"
3163
+ }
3164
+ ],
3165
+ "events": [
3166
+ {
3167
+ "name": "open",
3168
+ "description": "Fired when the dropdown is opened"
3169
+ },
3170
+ {
3171
+ "name": "close",
3172
+ "description": "Fired when the dropdown is closed"
3173
+ }
3174
+ ]
3175
+ }
2533
3176
  }
2534
3177
  ]
2535
3178
  }