@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
@@ -48,11 +48,6 @@
48
48
  "name": "skf-alert",
49
49
  "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",
50
50
  "attributes": [
51
- {
52
- "name": "closeable",
53
- "description": "If true, alert is being used as a toast (alertdialog) with an close button",
54
- "values": []
55
- },
56
51
  {
57
52
  "name": "button-label",
58
53
  "description": "Close button aria-label",
@@ -63,6 +58,11 @@
63
58
  "description": "If defined, displays leading icon",
64
59
  "values": [{ "name": "SkfIcon['name']" }]
65
60
  },
61
+ {
62
+ "name": "persistent",
63
+ "description": "If true, renders with an close button and sets aria-role to `status`",
64
+ "values": []
65
+ },
66
66
  {
67
67
  "name": "severity",
68
68
  "description": "If defined, gives the supplied appearance",
@@ -77,9 +77,38 @@
77
77
  ],
78
78
  "references": []
79
79
  },
80
+ {
81
+ "name": "skf-breadcrumb",
82
+ "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>`",
83
+ "attributes": [
84
+ {
85
+ "name": "label",
86
+ "description": "aria-label for the breadcrumb control",
87
+ "values": []
88
+ },
89
+ {
90
+ "name": "size",
91
+ "description": "Displays an alternative size",
92
+ "values": [{ "name": "md" }, { "name": "sm" }]
93
+ }
94
+ ],
95
+ "references": []
96
+ },
97
+ {
98
+ "name": "skf-breadcrumb-item",
99
+ "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",
100
+ "attributes": [
101
+ {
102
+ "name": "href",
103
+ "description": "If defined, loads url on click",
104
+ "values": []
105
+ }
106
+ ],
107
+ "references": []
108
+ },
80
109
  {
81
110
  "name": "skf-button",
82
- "description": "Component to be used in forms or for interactivity\n---\n\n\n### **Slots:**\n - _default_ - The Primary content",
111
+ "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",
83
112
  "attributes": [
84
113
  {
85
114
  "name": "destructive",
@@ -248,6 +277,11 @@
248
277
  { "name": "zoomOut" }
249
278
  ]
250
279
  },
280
+ {
281
+ "name": "iconOnly",
282
+ "description": "If true, removes border",
283
+ "values": []
284
+ },
251
285
  {
252
286
  "name": "icon-position",
253
287
  "description": "If provided, determines the positioning of the icon in relation to the text",
@@ -258,6 +292,7 @@
258
292
  "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
259
293
  "values": []
260
294
  },
295
+ { "name": "no-validate", "values": [] },
261
296
  {
262
297
  "name": "size",
263
298
  "description": "If provided, displays an alternative size",
@@ -275,7 +310,11 @@
275
310
  {
276
311
  "name": "variant",
277
312
  "description": "If provided, alters the appearance",
278
- "values": [{ "name": "primary" }, { "name": "secondary" }]
313
+ "values": [
314
+ { "name": "primary" },
315
+ { "name": "secondary" },
316
+ { "name": "tertiary" }
317
+ ]
279
318
  }
280
319
  ],
281
320
  "references": []
@@ -331,11 +370,6 @@
331
370
  "description": "If true, forces component to invalid state until removed",
332
371
  "values": []
333
372
  },
334
- {
335
- "name": "hide-label",
336
- "description": "If true, hides the label visually",
337
- "values": []
338
- },
339
373
  {
340
374
  "name": "indeterminate",
341
375
  "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
@@ -406,12 +440,7 @@
406
440
  {
407
441
  "name": "heading-as",
408
442
  "description": "Defines which heading element will be rendered",
409
- "values": [
410
- { "name": "h1" },
411
- { "name": "h2" },
412
- { "name": "h3" },
413
- { "name": "h4" }
414
- ]
443
+ "values": [{ "name": "h2" }, { "name": "h3" }, { "name": "h4" }]
415
444
  },
416
445
  {
417
446
  "name": "small",
@@ -426,6 +455,39 @@
426
455
  ],
427
456
  "references": []
428
457
  },
458
+ {
459
+ "name": "skf-dialog",
460
+ "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)_",
461
+ "attributes": [
462
+ {
463
+ "name": "close-button-aria-label",
464
+ "description": "If defined, sets the aria-label for the close button",
465
+ "values": []
466
+ },
467
+ {
468
+ "name": "heading",
469
+ "description": "Title for the modal/dialog",
470
+ "values": []
471
+ },
472
+ {
473
+ "name": "fullscreen",
474
+ "description": "If true, makes the dialog stretch edge to edge on screen",
475
+ "values": []
476
+ },
477
+ {
478
+ "name": "no-close-button",
479
+ "description": "If true, removes the close button",
480
+ "values": []
481
+ },
482
+ {
483
+ "name": "no-padding",
484
+ "description": "If defined, removes the inner padding",
485
+ "values": []
486
+ },
487
+ { "name": "open", "values": [] }
488
+ ],
489
+ "references": []
490
+ },
429
491
  {
430
492
  "name": "skf-divider",
431
493
  "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)_",
@@ -689,6 +751,7 @@
689
751
  "description": "If true, value is required or must be checked for the form to be submittable",
690
752
  "values": []
691
753
  },
754
+ { "name": "autocomplete", "description": "-m }", "values": [] },
692
755
  {
693
756
  "name": "button-aria-label-clear",
694
757
  "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
@@ -1054,7 +1117,7 @@
1054
1117
  },
1055
1118
  {
1056
1119
  "name": "rel",
1057
- "description": "Defines the relationship of the target object to the link object",
1120
+ "description": "If defined, describes the relationship between a linked resource and the current document",
1058
1121
  "values": []
1059
1122
  },
1060
1123
  {
@@ -1122,7 +1185,7 @@
1122
1185
  },
1123
1186
  {
1124
1187
  "name": "color",
1125
- "description": "If defined, sets color of the logo",
1188
+ "description": "Defines the color of the logo",
1126
1189
  "values": [
1127
1190
  { "name": "primary" },
1128
1191
  { "name": "secondary" },
@@ -1132,6 +1195,279 @@
1132
1195
  ],
1133
1196
  "references": []
1134
1197
  },
1198
+ {
1199
+ "name": "skf-menu",
1200
+ "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",
1201
+ "attributes": [],
1202
+ "references": []
1203
+ },
1204
+ {
1205
+ "name": "skf-menu-item",
1206
+ "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",
1207
+ "attributes": [
1208
+ {
1209
+ "name": "as",
1210
+ "description": "Defines the semantic element to render",
1211
+ "values": [{ "name": "button" }, { "name": "a" }]
1212
+ },
1213
+ {
1214
+ "name": "color",
1215
+ "description": "Defines the text-color",
1216
+ "values": [{ "name": "primary" }, { "name": "inverse" }]
1217
+ },
1218
+ {
1219
+ "name": "disabled",
1220
+ "description": "If true, disables the link",
1221
+ "values": []
1222
+ },
1223
+ {
1224
+ "name": "download",
1225
+ "description": "If defined, downloads the url",
1226
+ "values": []
1227
+ },
1228
+ {
1229
+ "name": "href",
1230
+ "description": "If defined, loads url on click",
1231
+ "values": []
1232
+ },
1233
+ {
1234
+ "name": "icon",
1235
+ "description": "If defined, renders an icon before or after the text",
1236
+ "values": [
1237
+ { "name": "arrowDown" },
1238
+ { "name": "arrowDownUp" },
1239
+ { "name": "arrowLeft" },
1240
+ { "name": "arrowRight" },
1241
+ { "name": "arrowUp" },
1242
+ { "name": "article" },
1243
+ { "name": "artificialIntelligence" },
1244
+ { "name": "asset" },
1245
+ { "name": "attachment" },
1246
+ { "name": "bandCursor" },
1247
+ { "name": "bands" },
1248
+ { "name": "batteryEmpty" },
1249
+ { "name": "batteryFull" },
1250
+ { "name": "batteryLow" },
1251
+ { "name": "bearingFault" },
1252
+ { "name": "book" },
1253
+ { "name": "bulb" },
1254
+ { "name": "burger" },
1255
+ { "name": "cPM" },
1256
+ { "name": "calendar" },
1257
+ { "name": "calendarBooked" },
1258
+ { "name": "calendarEmpty" },
1259
+ { "name": "calendarNotBooked" },
1260
+ { "name": "calendarRecurring" },
1261
+ { "name": "caretDown" },
1262
+ { "name": "caretUp" },
1263
+ { "name": "caretUpDown" },
1264
+ { "name": "chat" },
1265
+ { "name": "check" },
1266
+ { "name": "checkCircle" },
1267
+ { "name": "checkSmall" },
1268
+ { "name": "chevronDown" },
1269
+ { "name": "chevronLeft" },
1270
+ { "name": "chevronRight" },
1271
+ { "name": "chevronUp" },
1272
+ { "name": "chevronUpDown" },
1273
+ { "name": "close" },
1274
+ { "name": "closeAllFaults" },
1275
+ { "name": "closeFault" },
1276
+ { "name": "closeSmall" },
1277
+ { "name": "columnGraph" },
1278
+ { "name": "comment" },
1279
+ { "name": "connection1" },
1280
+ { "name": "connection2" },
1281
+ { "name": "connection3" },
1282
+ { "name": "connection4" },
1283
+ { "name": "danger" },
1284
+ { "name": "defectFrequencies" },
1285
+ { "name": "defectFrequenciesAlternative" },
1286
+ { "name": "doubleChevronLeft" },
1287
+ { "name": "doubleChevronRight" },
1288
+ { "name": "download" },
1289
+ { "name": "draft" },
1290
+ { "name": "draftFilled" },
1291
+ { "name": "draftOutlined" },
1292
+ { "name": "dragNDrop" },
1293
+ { "name": "drop" },
1294
+ { "name": "duplicate" },
1295
+ { "name": "edit" },
1296
+ { "name": "emailFilled" },
1297
+ { "name": "emailOutlined" },
1298
+ { "name": "exclamation" },
1299
+ { "name": "eye" },
1300
+ { "name": "eyeHidden" },
1301
+ { "name": "eyeVisible" },
1302
+ { "name": "filter" },
1303
+ { "name": "forbidden" },
1304
+ { "name": "fullScreen" },
1305
+ { "name": "fullScreenExit" },
1306
+ { "name": "functionalLocation" },
1307
+ { "name": "harmonicCursor" },
1308
+ { "name": "heatmap" },
1309
+ { "name": "hierarchy" },
1310
+ { "name": "history" },
1311
+ { "name": "historyAlt" },
1312
+ { "name": "hourglassFramedFilled" },
1313
+ { "name": "hourglassFramedOutlined" },
1314
+ { "name": "hourglassOutlined" },
1315
+ { "name": "hz" },
1316
+ { "name": "iMX" },
1317
+ { "name": "image" },
1318
+ { "name": "infoCircleFilled" },
1319
+ { "name": "infoCircleOutlined" },
1320
+ { "name": "integration" },
1321
+ { "name": "kebab" },
1322
+ { "name": "link" },
1323
+ { "name": "listGroup" },
1324
+ { "name": "listItem" },
1325
+ { "name": "locationPin" },
1326
+ { "name": "lock" },
1327
+ { "name": "logOut" },
1328
+ { "name": "meatballs" },
1329
+ { "name": "microphone" },
1330
+ { "name": "minus" },
1331
+ { "name": "minusSmall" },
1332
+ { "name": "noData" },
1333
+ { "name": "o" },
1334
+ { "name": "openInNew" },
1335
+ { "name": "overlayBaseline" },
1336
+ { "name": "pDF" },
1337
+ { "name": "paper" },
1338
+ { "name": "pause" },
1339
+ { "name": "pieChart" },
1340
+ { "name": "pin" },
1341
+ { "name": "play" },
1342
+ { "name": "plus" },
1343
+ { "name": "powerOff" },
1344
+ { "name": "printer" },
1345
+ { "name": "proCollect" },
1346
+ { "name": "recAction" },
1347
+ { "name": "received" },
1348
+ { "name": "refresh" },
1349
+ { "name": "reorder" },
1350
+ { "name": "replace" },
1351
+ { "name": "reply" },
1352
+ { "name": "rewalkableRoute" },
1353
+ { "name": "routes" },
1354
+ { "name": "search" },
1355
+ { "name": "send" },
1356
+ { "name": "sensorA" },
1357
+ { "name": "sensorB" },
1358
+ { "name": "settings" },
1359
+ { "name": "sidebandCursor" },
1360
+ { "name": "singleCursor" },
1361
+ { "name": "spectrum" },
1362
+ { "name": "starFilled" },
1363
+ { "name": "starOutlined" },
1364
+ { "name": "statusCircle" },
1365
+ { "name": "stop" },
1366
+ { "name": "structuralVibration" },
1367
+ { "name": "sync" },
1368
+ { "name": "timewave" },
1369
+ { "name": "trash" },
1370
+ { "name": "trend" },
1371
+ { "name": "trendingUp" },
1372
+ { "name": "undo" },
1373
+ { "name": "unknownCircle" },
1374
+ { "name": "unknownDiamond" },
1375
+ { "name": "unlink" },
1376
+ { "name": "unlock" },
1377
+ { "name": "unscheduledAction" },
1378
+ { "name": "upload" },
1379
+ { "name": "user" },
1380
+ { "name": "viewFull" },
1381
+ { "name": "viewHorizontal" },
1382
+ { "name": "viewVertical" },
1383
+ { "name": "warning" },
1384
+ { "name": "warningCircle" },
1385
+ { "name": "warningDiamond" },
1386
+ { "name": "zoomIn" },
1387
+ { "name": "zoomOut" }
1388
+ ]
1389
+ },
1390
+ {
1391
+ "name": "icon-placement",
1392
+ "description": "Defines the position of the icon in relation to the text",
1393
+ "values": [{ "name": "left" }, { "name": "right" }]
1394
+ },
1395
+ {
1396
+ "name": "rel",
1397
+ "description": "If defined, describes the relationship between a linked resource and the current document",
1398
+ "values": []
1399
+ },
1400
+ {
1401
+ "name": "route",
1402
+ "description": "If defined, used on conjunction with onClick property, second argument",
1403
+ "values": []
1404
+ },
1405
+ {
1406
+ "name": "stretch",
1407
+ "description": "If true, fills the parents horizontal axis",
1408
+ "values": []
1409
+ },
1410
+ {
1411
+ "name": "target",
1412
+ "description": "If defined, specifies where to open the linked document",
1413
+ "values": [
1414
+ { "name": "_blank" },
1415
+ { "name": "_parent" },
1416
+ { "name": "_self" },
1417
+ { "name": "_top" }
1418
+ ]
1419
+ },
1420
+ {
1421
+ "name": "type",
1422
+ "description": "Defines the type of button",
1423
+ "values": [
1424
+ { "name": "button" },
1425
+ { "name": "submit" },
1426
+ { "name": "reset" }
1427
+ ]
1428
+ }
1429
+ ],
1430
+ "references": []
1431
+ },
1432
+ {
1433
+ "name": "skf-popover",
1434
+ "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",
1435
+ "attributes": [
1436
+ {
1437
+ "name": "offset",
1438
+ "description": "If defined, sets a custom offset for the popover",
1439
+ "values": []
1440
+ },
1441
+ {
1442
+ "name": "hideArrow",
1443
+ "description": "If true, hides the arrow",
1444
+ "values": []
1445
+ }
1446
+ ],
1447
+ "references": []
1448
+ },
1449
+ {
1450
+ "name": "skf-progress",
1451
+ "description": "The `<skf-progress>` element displays an indicator showing the completion progress of a task, typically displayed as a progress bar\n---\n",
1452
+ "attributes": [
1453
+ {
1454
+ "name": "animated",
1455
+ "description": "If true, the progress-bar's fill value is animated",
1456
+ "values": []
1457
+ },
1458
+ {
1459
+ "name": "max",
1460
+ "description": "Describes how much work the task indicated by the progress element requires",
1461
+ "values": []
1462
+ },
1463
+ {
1464
+ "name": "value",
1465
+ "description": "Specifies how much of the task that has been completed",
1466
+ "values": []
1467
+ }
1468
+ ],
1469
+ "references": []
1470
+ },
1135
1471
  {
1136
1472
  "name": "skf-radio",
1137
1473
  "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.",
@@ -1161,11 +1497,6 @@
1161
1497
  "description": "If true, forces component to invalid state until removed",
1162
1498
  "values": []
1163
1499
  },
1164
- {
1165
- "name": "hide-label",
1166
- "description": "If true, hides the label visually",
1167
- "values": []
1168
- },
1169
1500
  {
1170
1501
  "name": "label",
1171
1502
  "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
@@ -1334,6 +1665,43 @@
1334
1665
  "attributes": [{ "name": "label", "values": [] }],
1335
1666
  "references": []
1336
1667
  },
1668
+ {
1669
+ "name": "skf-stepper",
1670
+ "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>`",
1671
+ "attributes": [
1672
+ {
1673
+ "name": "activeIndex",
1674
+ "description": "Sets the active item",
1675
+ "values": []
1676
+ },
1677
+ {
1678
+ "name": "linear",
1679
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
1680
+ "values": []
1681
+ }
1682
+ ],
1683
+ "references": []
1684
+ },
1685
+ {
1686
+ "name": "skf-stepper-item",
1687
+ "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",
1688
+ "attributes": [
1689
+ {
1690
+ "name": "state",
1691
+ "description": "If defined, gives the supplied appearance",
1692
+ "values": [
1693
+ { "name": "Extract<SkfStepperItemState, 'active'" },
1694
+ { "name": "'completed'>" }
1695
+ ]
1696
+ },
1697
+ {
1698
+ "name": "completed",
1699
+ "description": "If true, item marked as completed",
1700
+ "values": []
1701
+ }
1702
+ ],
1703
+ "references": []
1704
+ },
1337
1705
  {
1338
1706
  "name": "skf-switch",
1339
1707
  "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.",
@@ -1391,6 +1759,58 @@
1391
1759
  ],
1392
1760
  "references": []
1393
1761
  },
1762
+ {
1763
+ "name": "skf-tab",
1764
+ "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",
1765
+ "attributes": [
1766
+ {
1767
+ "name": "panel",
1768
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
1769
+ "values": []
1770
+ }
1771
+ ],
1772
+ "references": []
1773
+ },
1774
+ {
1775
+ "name": "skf-tab-group",
1776
+ "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",
1777
+ "attributes": [
1778
+ {
1779
+ "name": "default-selected",
1780
+ "description": "Sets the default selected tab",
1781
+ "values": []
1782
+ },
1783
+ {
1784
+ "name": "no-border",
1785
+ "description": "If true, removes border",
1786
+ "values": []
1787
+ },
1788
+ {
1789
+ "name": "no-padding",
1790
+ "description": "If true, removes padding",
1791
+ "values": []
1792
+ },
1793
+ {
1794
+ "name": "stretch",
1795
+ "description": "If true, component fills the parent element height",
1796
+ "values": []
1797
+ },
1798
+ {
1799
+ "name": "variant",
1800
+ "description": "Sets the appearance of the tabs",
1801
+ "values": [{ "name": "compressed" }, { "name": "expanded" }]
1802
+ }
1803
+ ],
1804
+ "references": []
1805
+ },
1806
+ {
1807
+ "name": "skf-tab-panel",
1808
+ "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",
1809
+ "attributes": [
1810
+ { "name": "name", "description": "The tab panel's name.", "values": [] }
1811
+ ],
1812
+ "references": []
1813
+ },
1394
1814
  {
1395
1815
  "name": "skf-tag",
1396
1816
  "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",
@@ -1696,21 +2116,21 @@
1696
2116
  "name": "skf-toast",
1697
2117
  "description": "A simple toast component that displays a message to the user. Use by appending a &lt;skf-toast&gt; tag to the DOM. Position in DOM is irrelevant.\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
1698
2118
  "attributes": [
2119
+ { "name": "debug", "values": [] },
1699
2120
  {
1700
- "name": "closeable",
1701
- "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
1702
- "values": []
2121
+ "name": "icon",
2122
+ "description": "If defined, displays leading icon",
2123
+ "values": [{ "name": "SkfAlert['icon']" }]
2124
+ },
2125
+ {
2126
+ "name": "persistent",
2127
+ "description": "If true, renders with an close button and sets aria-role to `status`",
2128
+ "values": [{ "name": "SkfAlert['persistent']" }]
1703
2129
  },
1704
- { "name": "debug", "values": [] },
1705
2130
  {
1706
2131
  "name": "severity",
1707
- "description": "Severity of the toast.",
1708
- "values": [
1709
- { "name": "info" },
1710
- { "name": "success" },
1711
- { "name": "warning" },
1712
- { "name": "error" }
1713
- ]
2132
+ "description": "If defined, gives the supplied appearance",
2133
+ "values": [{ "name": "SkfAlert['severity']" }]
1714
2134
  },
1715
2135
  {
1716
2136
  "name": "timer",
@@ -1730,6 +2150,12 @@
1730
2150
  "description": "The `<skf-toast-wrapper>` is a component without UI that positions where the toast shows up on the screen. The toast-wrapper is used internally by the toast component.\n---\n\n\n### **Slots:**\n - _default_ - The alert components that the toast creates will render here.",
1731
2151
  "attributes": [{ "name": "debug", "values": [] }],
1732
2152
  "references": []
2153
+ },
2154
+ {
2155
+ "name": "skf-tooltip",
2156
+ "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",
2157
+ "attributes": [],
2158
+ "references": []
1733
2159
  }
1734
2160
  ]
1735
2161
  }