@skf-design-system/ui-components 1.0.1-beta.0 → 1.0.2-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 (206) hide show
  1. package/README.md +1 -18
  2. package/dist/components/accordion/accordion.component.d.ts +4 -4
  3. package/dist/components/accordion/accordion.component.js +8 -8
  4. package/dist/components/alert/alert.component.d.ts +8 -9
  5. package/dist/components/alert/alert.component.js +14 -14
  6. package/dist/components/breadcrumb/breadcrumb.component.d.ts +1 -1
  7. package/dist/components/button/button.component.d.ts +3 -3
  8. package/dist/components/button/button.component.js +59 -55
  9. package/dist/components/card/card.component.js +18 -30
  10. package/dist/components/card/card.styles.js +25 -28
  11. package/dist/components/checkbox/checkbox.component.d.ts +9 -7
  12. package/dist/components/checkbox/checkbox.component.js +71 -58
  13. package/dist/components/collapse/collapse.component.js +1 -1
  14. package/dist/components/date-picker/datepicker.calendar.component.d.ts +77 -0
  15. package/dist/components/date-picker/datepicker.calendar.component.js +415 -0
  16. package/dist/components/date-picker/datepicker.calendar.styles.d.ts +1 -0
  17. package/dist/components/date-picker/datepicker.calendar.styles.js +202 -0
  18. package/dist/components/date-picker/datepicker.component.d.ts +79 -0
  19. package/dist/components/date-picker/datepicker.component.js +261 -0
  20. package/dist/components/date-picker/datepicker.d.ts +10 -0
  21. package/dist/components/date-picker/datepicker.helpers.d.ts +41 -0
  22. package/dist/components/date-picker/datepicker.helpers.js +76 -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 +87 -0
  26. package/dist/components/date-picker-input/datepicker-input.component.d.ts +115 -0
  27. package/dist/components/date-picker-input/datepicker-input.component.js +441 -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 +38 -0
  30. package/dist/components/date-picker-input/datepicker-input.helpers.js +31 -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 +18 -0
  34. package/dist/components/dialog/dialog.component.d.ts +18 -28
  35. package/dist/components/dialog/dialog.component.js +94 -84
  36. package/dist/components/divider/divider.component.d.ts +4 -8
  37. package/dist/components/divider/divider.component.js +24 -46
  38. package/dist/components/divider/divider.styles.js +34 -30
  39. package/dist/components/drawer/drawer.component.d.ts +57 -0
  40. package/dist/components/drawer/drawer.component.js +124 -0
  41. package/dist/components/drawer/drawer.d.ts +8 -0
  42. package/dist/components/drawer/drawer.js +6 -0
  43. package/dist/components/drawer/drawer.styles.d.ts +1 -0
  44. package/dist/components/drawer/drawer.styles.js +71 -0
  45. package/dist/components/header/header.component.d.ts +45 -0
  46. package/dist/components/header/header.component.js +110 -0
  47. package/dist/components/header/header.d.ts +8 -0
  48. package/dist/components/header/header.js +6 -0
  49. package/dist/components/header/header.styles.d.ts +1 -0
  50. package/dist/components/header/header.styles.js +68 -0
  51. package/dist/components/heading/heading.component.d.ts +6 -12
  52. package/dist/components/heading/heading.component.js +17 -17
  53. package/dist/components/heading/heading.styles.d.ts +1 -2
  54. package/dist/components/heading/heading.styles.js +1 -1
  55. package/dist/components/icon/icon.component.d.ts +1 -1
  56. package/dist/components/icon/icon.component.js +19 -19
  57. package/dist/components/input/input.component.d.ts +3 -2
  58. package/dist/components/input/input.component.js +89 -82
  59. package/dist/components/input/input.controllers.d.ts +20 -6
  60. package/dist/components/input/input.controllers.js +14 -10
  61. package/dist/components/link/link.component.js +29 -28
  62. package/dist/components/link/link.styles.js +24 -20
  63. package/dist/components/loader/loader.component.js +19 -19
  64. package/dist/components/logo/logo.component.js +6 -6
  65. package/dist/components/menu/menu.component.d.ts +4 -5
  66. package/dist/components/menu/menu.component.js +1 -1
  67. package/dist/components/nav/nav.component.d.ts +17 -0
  68. package/dist/components/nav/nav.component.js +34 -0
  69. package/dist/components/nav/nav.d.ts +8 -0
  70. package/dist/components/nav/nav.js +6 -0
  71. package/dist/components/nav/nav.styles.d.ts +1 -0
  72. package/dist/components/nav/nav.styles.js +17 -0
  73. package/dist/components/nav-item/nav-item.component.d.ts +20 -0
  74. package/dist/components/nav-item/nav-item.component.js +38 -0
  75. package/dist/components/nav-item/nav-item.d.ts +8 -0
  76. package/dist/components/nav-item/nav-item.js +6 -0
  77. package/dist/components/nav-item/nav-item.styles.d.ts +1 -0
  78. package/dist/components/nav-item/nav-item.styles.js +39 -0
  79. package/dist/components/popover/popover.component.d.ts +5 -6
  80. package/dist/components/popover/popover.component.js +24 -24
  81. package/dist/components/progress/progress.component.js +7 -7
  82. package/dist/components/radio/radio.component.d.ts +10 -6
  83. package/dist/components/radio/radio.component.js +14 -14
  84. package/dist/components/radio/radio.styles.d.ts +1 -2
  85. package/dist/components/radio/radio.styles.js +1 -1
  86. package/dist/components/segmented-button/segmented-button.component.d.ts +32 -0
  87. package/dist/components/segmented-button/segmented-button.d.ts +8 -0
  88. package/dist/components/segmented-button/segmented-button.styles.d.ts +1 -0
  89. package/dist/components/segmented-button-item/segmented-button-item.component.d.ts +36 -0
  90. package/dist/components/segmented-button-item/segmented-button-item.d.ts +8 -0
  91. package/dist/components/segmented-button-item/segmented-button-item.styles.d.ts +1 -0
  92. package/dist/components/select/select.component.js +2 -2
  93. package/dist/components/select/select.controllers.d.ts +20 -9
  94. package/dist/components/select/select.controllers.js +27 -22
  95. package/dist/components/select-option/select-option.controllers.d.ts +11 -5
  96. package/dist/components/select-option-group/select-option-group.component.js +9 -9
  97. package/dist/components/stepper/stepper.component.d.ts +2 -1
  98. package/dist/components/stepper/stepper.component.js +9 -9
  99. package/dist/components/stepper/stepper.helpers.js +5 -5
  100. package/dist/components/stepper-item/stepper-item.component.js +25 -25
  101. package/dist/components/switch/switch.component.d.ts +7 -6
  102. package/dist/components/switch/switch.component.js +7 -7
  103. package/dist/components/tab/tab.component.js +4 -4
  104. package/dist/components/tab-panel/tab-panel.component.js +12 -12
  105. package/dist/components/tag/tag.component.d.ts +4 -2
  106. package/dist/components/tag/tag.component.js +14 -14
  107. package/dist/components/textarea/textarea.component.js +10 -10
  108. package/dist/components/toast/toast.component.d.ts +1 -1
  109. package/dist/components/toast/toast.component.js +13 -13
  110. package/dist/components/toast-wrapper/toast-wrapper.component.js +10 -10
  111. package/dist/components/tooltip/tooltip.component.d.ts +5 -6
  112. package/dist/components/tooltip/tooltip.component.js +11 -11
  113. package/dist/custom-elements.json +3702 -2190
  114. package/dist/index.d.ts +6 -0
  115. package/dist/index.js +84 -66
  116. package/dist/internal/base-classes/popover/popover.base.d.ts +17 -7
  117. package/dist/internal/base-classes/popover/popover.base.js +119 -75
  118. package/dist/internal/base-classes/popover/popover.styles.js +14 -1
  119. package/dist/internal/components/hint/hint.component.js +13 -13
  120. package/dist/internal/controllers/elementOverflowController.d.ts +13 -0
  121. package/dist/internal/controllers/popover.controller.d.ts +12 -6
  122. package/dist/internal/controllers/popover.controller.js +9 -14
  123. package/dist/internal/helpers/dateFormatter.d.ts +2 -0
  124. package/dist/internal/helpers/utilityTypes.d.ts +22 -0
  125. package/dist/internal/helpers/uuid.d.ts +15 -0
  126. package/dist/internal/helpers/uuid.js +14 -0
  127. package/dist/internal/storybook/styles.d.ts +1 -0
  128. package/dist/styles/form-field.styles.js +11 -6
  129. package/dist/styles/global.css +1 -1
  130. package/dist/types/jsx/custom-element-jsx.d.ts +663 -1240
  131. package/dist/types/vue/index.d.ts +453 -255
  132. package/dist/vscode.html-custom-data.json +821 -503
  133. package/dist/web-types.json +1005 -633
  134. package/package.json +43 -52
  135. package/dist/react/index.d.ts +0 -35
  136. package/dist/react/index.js +0 -35
  137. package/dist/react/skf-accordion/index.d.ts +0 -3
  138. package/dist/react/skf-accordion/index.js +0 -13
  139. package/dist/react/skf-alert/index.d.ts +0 -9
  140. package/dist/react/skf-alert/index.js +0 -17
  141. package/dist/react/skf-breadcrumb/index.d.ts +0 -9
  142. package/dist/react/skf-breadcrumb/index.js +0 -17
  143. package/dist/react/skf-breadcrumb-item/index.d.ts +0 -3
  144. package/dist/react/skf-breadcrumb-item/index.js +0 -13
  145. package/dist/react/skf-button/index.d.ts +0 -9
  146. package/dist/react/skf-button/index.js +0 -17
  147. package/dist/react/skf-card/index.d.ts +0 -3
  148. package/dist/react/skf-card/index.js +0 -13
  149. package/dist/react/skf-checkbox/index.d.ts +0 -9
  150. package/dist/react/skf-checkbox/index.js +0 -17
  151. package/dist/react/skf-collapse/index.d.ts +0 -9
  152. package/dist/react/skf-collapse/index.js +0 -17
  153. package/dist/react/skf-dialog/index.d.ts +0 -15
  154. package/dist/react/skf-dialog/index.js +0 -19
  155. package/dist/react/skf-divider/index.d.ts +0 -3
  156. package/dist/react/skf-divider/index.js +0 -13
  157. package/dist/react/skf-heading/index.d.ts +0 -3
  158. package/dist/react/skf-heading/index.js +0 -13
  159. package/dist/react/skf-icon/index.d.ts +0 -3
  160. package/dist/react/skf-icon/index.js +0 -13
  161. package/dist/react/skf-input/index.d.ts +0 -12
  162. package/dist/react/skf-input/index.js +0 -18
  163. package/dist/react/skf-link/index.d.ts +0 -3
  164. package/dist/react/skf-link/index.js +0 -13
  165. package/dist/react/skf-loader/index.d.ts +0 -3
  166. package/dist/react/skf-loader/index.js +0 -13
  167. package/dist/react/skf-logo/index.d.ts +0 -3
  168. package/dist/react/skf-logo/index.js +0 -13
  169. package/dist/react/skf-menu/index.d.ts +0 -12
  170. package/dist/react/skf-menu/index.js +0 -18
  171. package/dist/react/skf-menu-item/index.d.ts +0 -27
  172. package/dist/react/skf-menu-item/index.js +0 -23
  173. package/dist/react/skf-popover/index.d.ts +0 -12
  174. package/dist/react/skf-popover/index.js +0 -18
  175. package/dist/react/skf-progress/index.d.ts +0 -3
  176. package/dist/react/skf-progress/index.js +0 -13
  177. package/dist/react/skf-radio/index.d.ts +0 -9
  178. package/dist/react/skf-radio/index.js +0 -17
  179. package/dist/react/skf-select/index.d.ts +0 -21
  180. package/dist/react/skf-select/index.js +0 -21
  181. package/dist/react/skf-select-option/index.d.ts +0 -9
  182. package/dist/react/skf-select-option/index.js +0 -17
  183. package/dist/react/skf-select-option-group/index.d.ts +0 -3
  184. package/dist/react/skf-select-option-group/index.js +0 -13
  185. package/dist/react/skf-stepper/index.d.ts +0 -9
  186. package/dist/react/skf-stepper/index.js +0 -17
  187. package/dist/react/skf-stepper-item/index.d.ts +0 -9
  188. package/dist/react/skf-stepper-item/index.js +0 -17
  189. package/dist/react/skf-switch/index.d.ts +0 -3
  190. package/dist/react/skf-switch/index.js +0 -13
  191. package/dist/react/skf-tab/index.d.ts +0 -12
  192. package/dist/react/skf-tab/index.js +0 -18
  193. package/dist/react/skf-tab-group/index.d.ts +0 -3
  194. package/dist/react/skf-tab-group/index.js +0 -13
  195. package/dist/react/skf-tab-panel/index.d.ts +0 -3
  196. package/dist/react/skf-tab-panel/index.js +0 -13
  197. package/dist/react/skf-tag/index.d.ts +0 -3
  198. package/dist/react/skf-tag/index.js +0 -13
  199. package/dist/react/skf-textarea/index.d.ts +0 -12
  200. package/dist/react/skf-textarea/index.js +0 -18
  201. package/dist/react/skf-toast/index.d.ts +0 -3
  202. package/dist/react/skf-toast/index.js +0 -13
  203. package/dist/react/skf-toast-wrapper/index.d.ts +0 -3
  204. package/dist/react/skf-toast-wrapper/index.js +0 -13
  205. package/dist/react/skf-tooltip/index.d.ts +0 -12
  206. package/dist/react/skf-tooltip/index.js +0 -18
@@ -2,6 +2,298 @@
2
2
  "$schema": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json",
3
3
  "version": 1.1,
4
4
  "tags": [
5
+ {
6
+ "name": "skf-icon",
7
+ "description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text\n---\n",
8
+ "attributes": [
9
+ {
10
+ "name": "color",
11
+ "description": "Sets the color of the icon",
12
+ "values": [
13
+ { "name": "primary" },
14
+ { "name": "inverse" },
15
+ { "name": "emphasised" },
16
+ { "name": "secondary" },
17
+ { "name": "success" },
18
+ { "name": "info" },
19
+ { "name": "warning" },
20
+ { "name": "error" },
21
+ { "name": "alert" }
22
+ ]
23
+ },
24
+ {
25
+ "name": "label",
26
+ "description": "If defined, adds an alternate description to use for assistive devices",
27
+ "values": []
28
+ },
29
+ {
30
+ "name": "name",
31
+ "description": "Name of the icon to display",
32
+ "values": [
33
+ { "name": "addCircleOutline" },
34
+ { "name": "addCircle" },
35
+ { "name": "addPlus" },
36
+ { "name": "arrowBackIos" },
37
+ { "name": "arrowBack" },
38
+ { "name": "arrowDown" },
39
+ { "name": "arrowForwardIos" },
40
+ { "name": "arrowForward" },
41
+ { "name": "arrowLeft" },
42
+ { "name": "arrowRight" },
43
+ { "name": "arrowUpDown" },
44
+ { "name": "arrowUp" },
45
+ { "name": "article" },
46
+ { "name": "asset" },
47
+ { "name": "attachment" },
48
+ { "name": "bandCursor" },
49
+ { "name": "bands" },
50
+ { "name": "batteryEmpty" },
51
+ { "name": "batteryFull" },
52
+ { "name": "batteryLow" },
53
+ { "name": "bearingFault" },
54
+ { "name": "bluetoothDisabled" },
55
+ { "name": "bluetooth" },
56
+ { "name": "book" },
57
+ { "name": "bookmarkOutline" },
58
+ { "name": "bookmark" },
59
+ { "name": "calculator" },
60
+ { "name": "calendarBusy" },
61
+ { "name": "calendarCheck" },
62
+ { "name": "calendarEmpty" },
63
+ { "name": "calendarMonth" },
64
+ { "name": "calendarReccuring" },
65
+ { "name": "call" },
66
+ { "name": "caretDown" },
67
+ { "name": "caretUpDown" },
68
+ { "name": "caretUp" },
69
+ { "name": "chat" },
70
+ { "name": "checkCircleOutline" },
71
+ { "name": "checkCircle" },
72
+ { "name": "checkSmall" },
73
+ { "name": "check" },
74
+ { "name": "chevronDownUp" },
75
+ { "name": "chevronDown" },
76
+ { "name": "chevronLeft" },
77
+ { "name": "chevronRight" },
78
+ { "name": "chevronUpDown" },
79
+ { "name": "chevronUp" },
80
+ { "name": "chip" },
81
+ { "name": "circleStatus" },
82
+ { "name": "closeAll" },
83
+ { "name": "closeAlt" },
84
+ { "name": "close" },
85
+ { "name": "columnGraph" },
86
+ { "name": "comment" },
87
+ { "name": "connection0" },
88
+ { "name": "connection1" },
89
+ { "name": "connection2" },
90
+ { "name": "connection3" },
91
+ { "name": "connection4" },
92
+ { "name": "contentPaste" },
93
+ { "name": "copy" },
94
+ { "name": "cpmCyclesPerMinute" },
95
+ { "name": "dangerOutline" },
96
+ { "name": "danger" },
97
+ { "name": "defectFrequenciesAlt" },
98
+ { "name": "defectFrequencies" },
99
+ { "name": "deleteOutline" },
100
+ { "name": "delete" },
101
+ { "name": "devices" },
102
+ { "name": "directions" },
103
+ { "name": "doubleChevronLeft" },
104
+ { "name": "doubleChevronRight" },
105
+ { "name": "downloadDone" },
106
+ { "name": "download" },
107
+ { "name": "draftOutline" },
108
+ { "name": "draft" },
109
+ { "name": "dragDrop" },
110
+ { "name": "drop" },
111
+ { "name": "duplicate" },
112
+ { "name": "editOutline" },
113
+ { "name": "edit" },
114
+ { "name": "emailOutline" },
115
+ { "name": "emailPdf" },
116
+ { "name": "email" },
117
+ { "name": "errorOutline" },
118
+ { "name": "error" },
119
+ { "name": "exclamation" },
120
+ { "name": "facebook" },
121
+ { "name": "filterOutline" },
122
+ { "name": "filter" },
123
+ { "name": "findReplace" },
124
+ { "name": "forbidden" },
125
+ { "name": "frequencyHz" },
126
+ { "name": "fullScreen" },
127
+ { "name": "fullscreenExit" },
128
+ { "name": "functionalGroup" },
129
+ { "name": "hamburgerMenu" },
130
+ { "name": "harmonicCursor" },
131
+ { "name": "heatmap" },
132
+ { "name": "hierarchy" },
133
+ { "name": "history" },
134
+ { "name": "homeOutline" },
135
+ { "name": "home" },
136
+ { "name": "hourglassOutline" },
137
+ { "name": "hourglass" },
138
+ { "name": "image" },
139
+ { "name": "imx" },
140
+ { "name": "infoOutline" },
141
+ { "name": "info" },
142
+ { "name": "instagram" },
143
+ { "name": "integration" },
144
+ { "name": "iosShare" },
145
+ { "name": "kebabMore" },
146
+ { "name": "language" },
147
+ { "name": "lightbulbOutline" },
148
+ { "name": "lightbulb" },
149
+ { "name": "link" },
150
+ { "name": "linkedin" },
151
+ { "name": "listGroup" },
152
+ { "name": "list" },
153
+ { "name": "locationPin" },
154
+ { "name": "lockOutline" },
155
+ { "name": "lock" },
156
+ { "name": "logOut" },
157
+ { "name": "login" },
158
+ { "name": "meatballsMoreCircle" },
159
+ { "name": "meatballsMore" },
160
+ { "name": "microphone" },
161
+ { "name": "nearMe" },
162
+ { "name": "noData" },
163
+ { "name": "notificationsBellOutline" },
164
+ { "name": "notificationsBell" },
165
+ { "name": "o" },
166
+ { "name": "offer" },
167
+ { "name": "openInNew" },
168
+ { "name": "overlaysBaseline" },
169
+ { "name": "pan360" },
170
+ { "name": "paper" },
171
+ { "name": "pause" },
172
+ { "name": "pdfOutline" },
173
+ { "name": "pdf" },
174
+ { "name": "person" },
175
+ { "name": "photoCameraOutline" },
176
+ { "name": "photoCamera" },
177
+ { "name": "pieChart" },
178
+ { "name": "pinOutline" },
179
+ { "name": "pin" },
180
+ { "name": "play" },
181
+ { "name": "powerOff" },
182
+ { "name": "printOutline" },
183
+ { "name": "print" },
184
+ { "name": "privacyPolicyOutline" },
185
+ { "name": "privacyPolicy" },
186
+ { "name": "proCollect" },
187
+ { "name": "recAction" },
188
+ { "name": "refresh" },
189
+ { "name": "removeMinus" },
190
+ { "name": "reorder" },
191
+ { "name": "reply" },
192
+ { "name": "report" },
193
+ { "name": "rewakableRoute" },
194
+ { "name": "route" },
195
+ { "name": "search" },
196
+ { "name": "sendOutline" },
197
+ { "name": "send" },
198
+ { "name": "sensorAlt" },
199
+ { "name": "sensor" },
200
+ { "name": "settingsOutline" },
201
+ { "name": "settings" },
202
+ { "name": "share" },
203
+ { "name": "shoppingCart" },
204
+ { "name": "sidebandCursor" },
205
+ { "name": "singleCursor" },
206
+ { "name": "skfBearing" },
207
+ { "name": "spectrum" },
208
+ { "name": "starOutline" },
209
+ { "name": "star" },
210
+ { "name": "stop" },
211
+ { "name": "sync" },
212
+ { "name": "time" },
213
+ { "name": "timewave" },
214
+ { "name": "translate" },
215
+ { "name": "trend" },
216
+ { "name": "trendingUp" },
217
+ { "name": "twitter" },
218
+ { "name": "undo" },
219
+ { "name": "unknownDiamondOutline" },
220
+ { "name": "unknownDiamond" },
221
+ { "name": "unknownOutline" },
222
+ { "name": "unknown" },
223
+ { "name": "unlink" },
224
+ { "name": "unlockOutline" },
225
+ { "name": "unlock" },
226
+ { "name": "unscheduledAction" },
227
+ { "name": "upload" },
228
+ { "name": "vibrationAlt" },
229
+ { "name": "vibration" },
230
+ { "name": "view3D" },
231
+ { "name": "viewFull" },
232
+ { "name": "viewHorizontal" },
233
+ { "name": "viewVertical" },
234
+ { "name": "visibilityOffOutline" },
235
+ { "name": "visibilityOff" },
236
+ { "name": "visibilityOutline" },
237
+ { "name": "visibility" },
238
+ { "name": "warningDiamondOutline" },
239
+ { "name": "warningDiamond" },
240
+ { "name": "warningOutline" },
241
+ { "name": "warning" },
242
+ { "name": "youtube" },
243
+ { "name": "zoomIn" },
244
+ { "name": "zoomOut" }
245
+ ]
246
+ },
247
+ {
248
+ "name": "size",
249
+ "description": "Size of the icon",
250
+ "values": [
251
+ { "name": "xs" },
252
+ { "name": "sm" },
253
+ { "name": "md" },
254
+ { "name": "lg" }
255
+ ]
256
+ }
257
+ ],
258
+ "references": []
259
+ },
260
+ {
261
+ "name": "skf-collapse",
262
+ "description": "The `<skf-collapse>` component is a general purpose container for content that can be collapsed / expanded.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/6590bf-accordion) for design principles.\n---\n\n\n### **Events:**\n - **skf-collapse-toggle** - Event emitted when toggled\n\n### **Methods:**\n - **setClose()** - Class method as alternative to manipulate attribute\n- **setOpen()** - Class method as alternative to manipulate attribute\n\n### **Slots:**\n - _default_ - Main content",
263
+ "attributes": [
264
+ {
265
+ "name": "animated",
266
+ "description": "If true, will animate the expand/collapse state",
267
+ "values": []
268
+ },
269
+ {
270
+ "name": "expanded",
271
+ "description": "If true, will set the collapse to be expanded by default",
272
+ "values": []
273
+ },
274
+ {
275
+ "name": "heading",
276
+ "description": "Heading for the collapse",
277
+ "values": []
278
+ },
279
+ {
280
+ "name": "heading-as",
281
+ "description": "Defines which heading element will be rendered",
282
+ "values": [{ "name": "h2" }, { "name": "h3" }, { "name": "h4" }]
283
+ },
284
+ {
285
+ "name": "small",
286
+ "description": "If true, renders the small version",
287
+ "values": []
288
+ },
289
+ {
290
+ "name": "truncate",
291
+ "description": "If true, will truncate the heading in collapsed state",
292
+ "values": []
293
+ }
294
+ ],
295
+ "references": []
296
+ },
5
297
  {
6
298
  "name": "skf-accordion",
7
299
  "description": "The `<skf-accordion>` component consists of multiple `<skf-collapse>`, working together.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/6590bf-accordion) for design principles.\n---\n\n\n### **Slots:**\n - _default_ - Expects one or more <skf-accordion-item> element(s)",
@@ -56,7 +348,7 @@
56
348
  {
57
349
  "name": "icon",
58
350
  "description": "If defined, displays leading icon",
59
- "values": [{ "name": "SkfIcon['name']" }]
351
+ "values": [{ "name": "SkfAlertIcon" }]
60
352
  },
61
353
  {
62
354
  "name": "persistent",
@@ -66,20 +358,26 @@
66
358
  {
67
359
  "name": "severity",
68
360
  "description": "If defined, gives the supplied appearance",
69
- "values": [
70
- { "name": "error" },
71
- { "name": "info" },
72
- { "name": "warning" },
73
- { "name": "success" },
74
- { "name": "alert" }
75
- ]
361
+ "values": [{ "name": "SkfAlertSeverity" }]
362
+ }
363
+ ],
364
+ "references": []
365
+ },
366
+ {
367
+ "name": "skf-breadcrumb-item",
368
+ "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",
369
+ "attributes": [
370
+ {
371
+ "name": "href",
372
+ "description": "If defined, loads url on click",
373
+ "values": []
76
374
  }
77
375
  ],
78
376
  "references": []
79
377
  },
80
378
  {
81
379
  "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>`",
380
+ "description": "The `<skf-breadcrumb>` component consists of multiple `<skf-breadcrumb-item>`, working together.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/3338ef-breadcrumbs) for design principles.\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
381
  "attributes": [
84
382
  {
85
383
  "name": "label",
@@ -95,13 +393,23 @@
95
393
  "references": []
96
394
  },
97
395
  {
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",
396
+ "name": "skf-loader",
397
+ "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
100
398
  "attributes": [
101
399
  {
102
- "name": "href",
103
- "description": "If defined, loads url on click",
400
+ "name": "aria-label",
401
+ "description": "Defines the aria-label",
402
+ "values": []
403
+ },
404
+ {
405
+ "name": "invert",
406
+ "description": "If true, inverts the color (to be used on colored backgrounds)",
104
407
  "values": []
408
+ },
409
+ {
410
+ "name": "size",
411
+ "description": "Defines the size of the loader",
412
+ "values": [{ "name": "md" }, { "name": "sm" }]
105
413
  }
106
414
  ],
107
415
  "references": []
@@ -284,7 +592,7 @@
284
592
  },
285
593
  {
286
594
  "name": "icon-position",
287
- "description": "If provided, determines the positioning of the icon in relation to the text",
595
+ "description": "Determines the positioning of the icon in relation to the text",
288
596
  "values": [{ "name": "left" }, { "name": "right" }]
289
597
  },
290
598
  {
@@ -419,45 +727,63 @@
419
727
  "references": []
420
728
  },
421
729
  {
422
- "name": "skf-collapse",
423
- "description": "The `<skf-collapse>` component is a general purpose container for content that can be collapsed / expanded.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/6590bf-accordion) for design principles.\n---\n\n\n### **Events:**\n - **skf-collapse-toggle** - Event emitted when toggled\n\n### **Methods:**\n - **setClose()** - Class method as alternative to manipulate attribute\n- **setOpen()** - Class method as alternative to manipulate attribute\n\n### **Slots:**\n - _default_ - Main content",
730
+ "name": "skf-datepicker",
731
+ "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### **Methods:**\n - **gotoDate(date: _Date | string_)** - Navigates to the given date.\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)_",
424
732
  "attributes": [
425
733
  {
426
- "name": "animated",
427
- "description": "If true, will animate the expand/collapse state",
734
+ "name": "locale",
735
+ "description": "The locale to use for formatting the date",
428
736
  "values": []
429
737
  },
430
738
  {
431
- "name": "expanded",
432
- "description": "If true, will set the collapse to be expanded by default",
739
+ "name": "date",
740
+ "description": "The date to display in the date picker",
433
741
  "values": []
434
742
  },
743
+ { "name": "id", "values": [] },
435
744
  {
436
- "name": "heading",
437
- "description": "Heading for the collapse",
745
+ "name": "invalid-dates",
746
+ "description": "A comma-separated list of dates (yyyy-mm-dd format) that are not selectable.",
438
747
  "values": []
439
748
  },
440
749
  {
441
- "name": "heading-as",
442
- "description": "Defines which heading element will be rendered",
443
- "values": [{ "name": "h2" }, { "name": "h3" }, { "name": "h4" }]
750
+ "name": "range",
751
+ "description": "If true, the date picker will allow the selection of a range of dates",
752
+ "values": []
444
753
  },
445
754
  {
446
- "name": "small",
447
- "description": "If true, renders the small version",
755
+ "name": "selectable-from",
756
+ "description": "Earliest selectable date. (yyyy-mm-dd format)",
448
757
  "values": []
449
758
  },
450
759
  {
451
- "name": "truncate",
452
- "description": "If true, will truncate the heading in collapsed state",
760
+ "name": "selectable-to",
761
+ "description": "Latest selectable date. (yyyy-mm-dd format)",
453
762
  "values": []
454
763
  }
455
764
  ],
456
765
  "references": []
457
766
  },
767
+ {
768
+ "name": "skf-heading",
769
+ "description": "The `<Heading>` component is to deliniate content on a page. When using, take note not to skip heading levels.<br>\nIt extends the interface of native html `<h1>` to `<h4>` elements.\n---\n\n\n### **Slots:**\n - _default_ - The headings content",
770
+ "attributes": [
771
+ {
772
+ "name": "as",
773
+ "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
774
+ "values": [{ "name": "SkfHeadingType" }]
775
+ },
776
+ {
777
+ "name": "styled-as",
778
+ "description": "If defined, changes the appearance of the heading",
779
+ "values": [{ "name": "SkfHeadingType" }]
780
+ }
781
+ ],
782
+ "references": []
783
+ },
458
784
  {
459
785
  "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)_",
786
+ "description": "The `<skf-dialog>` is a component that open up a dialog of type modal with the content provided. (MDN refrains from opening the dialog using the `open` attribute, however skf-dialog does not have that limitation)\n---\n\n\n### **Events:**\n - **skf-dialog-opened** - Fires when the dialog is opened (after transitioned in)\n- **skf-dialog-closing** - Fires when the dialog is closed (before transitioned out)\n- **skf-dialog-closed** - Fires when the dialog is closed (after transitioned out)\n\n### **Methods:**\n - **showModal()** - Method that opens the dialog in modal state\n- **close()** - Method that closes the dialog\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
787
  "attributes": [
462
788
  {
463
789
  "name": "close-button-aria-label",
@@ -484,7 +810,11 @@
484
810
  "description": "If defined, removes the inner padding",
485
811
  "values": []
486
812
  },
487
- { "name": "open", "values": [] }
813
+ {
814
+ "name": "open",
815
+ "description": "If true, indicates that the dialog is active and is available for interaction",
816
+ "values": []
817
+ }
488
818
  ],
489
819
  "references": []
490
820
  },
@@ -495,13 +825,7 @@
495
825
  {
496
826
  "name": "color",
497
827
  "description": "Defines the Divider color",
498
- "values": [
499
- { "name": "emphasised" },
500
- { "name": "primary" },
501
- { "name": "secondary" },
502
- { "name": "tertiary" },
503
- { "name": "inverse" }
504
- ]
828
+ "values": [{ "name": "SkfDividerColor" }]
505
829
  },
506
830
  {
507
831
  "name": "decorative",
@@ -517,222 +841,87 @@
517
841
  "references": []
518
842
  },
519
843
  {
520
- "name": "skf-heading",
521
- "description": "The `<Heading>` component is to deliniate content on a page. When using, take note not to skip heading levels.<br>\nIt extends the interface of native html `<h1>` to `<h4>` elements.\n---\n\n\n### **Slots:**\n - _default_ - The headings content",
844
+ "name": "skf-drawer",
845
+ "description": "The `<skf-drawer>` is a modal component that displays content and toggle by sliding from left/right viewport edge.\n---\n\n\n### **Events:**\n - **skf-drawer-opened** - Fires when the drawer is opened (after transitioned in)\n- **skf-drawer-closing** - Fires when the drawer is closed (before transitioned out)\n- **skf-drawer-closed** - Fires when the drawer is closed (after transitioned out)\n\n### **Slots:**\n - _default_ - The Drawer's main content",
522
846
  "attributes": [
523
847
  {
524
- "name": "as",
525
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
526
- "values": [
527
- { "name": "h1" },
528
- { "name": "h2" },
529
- { "name": "h3" },
530
- { "name": "h4" }
531
- ]
848
+ "name": "close-button-aria-label",
849
+ "description": "If defined, sets the aria-label for the close button",
850
+ "values": []
532
851
  },
533
852
  {
534
- "name": "styled-as",
535
- "description": "If provided, changes the appearance of the heading",
536
- "values": [
537
- { "name": "h1" },
538
- { "name": "h2" },
539
- { "name": "h3" },
540
- { "name": "h4" }
541
- ]
853
+ "name": "heading",
854
+ "description": "Heading for the Drawer",
855
+ "values": []
856
+ },
857
+ {
858
+ "name": "size",
859
+ "description": "Sets the max-width",
860
+ "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
861
+ },
862
+ {
863
+ "name": "open",
864
+ "description": "If true, Drawer is open",
865
+ "values": []
866
+ },
867
+ {
868
+ "name": "placement",
869
+ "description": "Placement of the Drawer",
870
+ "values": [{ "name": "left" }, { "name": "right" }]
542
871
  }
543
872
  ],
544
873
  "references": []
545
874
  },
546
875
  {
547
- "name": "skf-icon",
548
- "description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text\n---\n",
876
+ "name": "skf-logo",
877
+ "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)_",
549
878
  "attributes": [
879
+ {
880
+ "name": "title",
881
+ "description": "Defines the title of the logo",
882
+ "values": []
883
+ },
550
884
  {
551
885
  "name": "color",
552
- "description": "Sets the color of the icon",
886
+ "description": "Defines the color of the logo",
553
887
  "values": [
554
888
  { "name": "primary" },
555
- { "name": "inverse" },
556
- { "name": "emphasised" },
557
889
  { "name": "secondary" },
558
- { "name": "success" },
559
- { "name": "info" },
560
- { "name": "warning" },
561
- { "name": "error" },
562
- { "name": "alert" }
890
+ { "name": "inverse" }
563
891
  ]
892
+ }
893
+ ],
894
+ "references": []
895
+ },
896
+ {
897
+ "name": "skf-nav",
898
+ "description": "The `<skf-nav>` is a component that displays a list of <nav-items>.\n---\n\n\n### **Slots:**\n - _default_ - The component's main content",
899
+ "attributes": [{ "name": "vertical", "values": [] }],
900
+ "references": []
901
+ },
902
+ {
903
+ "name": "skf-header",
904
+ "description": "The `<skf-header>` component is to be used as the site-header in the app\n---\n\n\n### **Slots:**\n - _default_ - Navigation items",
905
+ "attributes": [
906
+ {
907
+ "name": "compact",
908
+ "description": "If true, sets header to display in compact mode only (hanburger menu and drawer)",
909
+ "values": []
564
910
  },
565
911
  {
566
- "name": "label",
567
- "description": "If defined, adds an alternate description to use for assistive devices",
912
+ "name": "hamburger-aria-label",
913
+ "description": "If defined, sets the aria-label for the hamburger button",
568
914
  "values": []
569
915
  },
570
916
  {
571
- "name": "name",
572
- "description": "Name of the icon to display",
573
- "values": [
574
- { "name": "arrowDown" },
575
- { "name": "arrowDownUp" },
576
- { "name": "arrowLeft" },
577
- { "name": "arrowRight" },
578
- { "name": "arrowUp" },
579
- { "name": "article" },
580
- { "name": "artificialIntelligence" },
581
- { "name": "asset" },
582
- { "name": "attachment" },
583
- { "name": "bandCursor" },
584
- { "name": "bands" },
585
- { "name": "batteryEmpty" },
586
- { "name": "batteryFull" },
587
- { "name": "batteryLow" },
588
- { "name": "bearingFault" },
589
- { "name": "book" },
590
- { "name": "bulb" },
591
- { "name": "burger" },
592
- { "name": "cPM" },
593
- { "name": "calendar" },
594
- { "name": "calendarBooked" },
595
- { "name": "calendarEmpty" },
596
- { "name": "calendarNotBooked" },
597
- { "name": "calendarRecurring" },
598
- { "name": "caretDown" },
599
- { "name": "caretUp" },
600
- { "name": "caretUpDown" },
601
- { "name": "chat" },
602
- { "name": "check" },
603
- { "name": "checkCircle" },
604
- { "name": "checkSmall" },
605
- { "name": "chevronDown" },
606
- { "name": "chevronLeft" },
607
- { "name": "chevronRight" },
608
- { "name": "chevronUp" },
609
- { "name": "chevronUpDown" },
610
- { "name": "close" },
611
- { "name": "closeAllFaults" },
612
- { "name": "closeFault" },
613
- { "name": "closeSmall" },
614
- { "name": "columnGraph" },
615
- { "name": "comment" },
616
- { "name": "connection1" },
617
- { "name": "connection2" },
618
- { "name": "connection3" },
619
- { "name": "connection4" },
620
- { "name": "danger" },
621
- { "name": "defectFrequencies" },
622
- { "name": "defectFrequenciesAlternative" },
623
- { "name": "doubleChevronLeft" },
624
- { "name": "doubleChevronRight" },
625
- { "name": "download" },
626
- { "name": "draft" },
627
- { "name": "draftFilled" },
628
- { "name": "draftOutlined" },
629
- { "name": "dragNDrop" },
630
- { "name": "drop" },
631
- { "name": "duplicate" },
632
- { "name": "edit" },
633
- { "name": "emailFilled" },
634
- { "name": "emailOutlined" },
635
- { "name": "exclamation" },
636
- { "name": "eye" },
637
- { "name": "eyeHidden" },
638
- { "name": "eyeVisible" },
639
- { "name": "filter" },
640
- { "name": "forbidden" },
641
- { "name": "fullScreen" },
642
- { "name": "fullScreenExit" },
643
- { "name": "functionalLocation" },
644
- { "name": "harmonicCursor" },
645
- { "name": "heatmap" },
646
- { "name": "hierarchy" },
647
- { "name": "history" },
648
- { "name": "historyAlt" },
649
- { "name": "hourglassFramedFilled" },
650
- { "name": "hourglassFramedOutlined" },
651
- { "name": "hourglassOutlined" },
652
- { "name": "hz" },
653
- { "name": "iMX" },
654
- { "name": "image" },
655
- { "name": "infoCircleFilled" },
656
- { "name": "infoCircleOutlined" },
657
- { "name": "integration" },
658
- { "name": "kebab" },
659
- { "name": "link" },
660
- { "name": "listGroup" },
661
- { "name": "listItem" },
662
- { "name": "locationPin" },
663
- { "name": "lock" },
664
- { "name": "logOut" },
665
- { "name": "meatballs" },
666
- { "name": "microphone" },
667
- { "name": "minus" },
668
- { "name": "minusSmall" },
669
- { "name": "noData" },
670
- { "name": "o" },
671
- { "name": "openInNew" },
672
- { "name": "overlayBaseline" },
673
- { "name": "pDF" },
674
- { "name": "paper" },
675
- { "name": "pause" },
676
- { "name": "pieChart" },
677
- { "name": "pin" },
678
- { "name": "play" },
679
- { "name": "plus" },
680
- { "name": "powerOff" },
681
- { "name": "printer" },
682
- { "name": "proCollect" },
683
- { "name": "recAction" },
684
- { "name": "received" },
685
- { "name": "refresh" },
686
- { "name": "reorder" },
687
- { "name": "replace" },
688
- { "name": "reply" },
689
- { "name": "rewalkableRoute" },
690
- { "name": "routes" },
691
- { "name": "search" },
692
- { "name": "send" },
693
- { "name": "sensorA" },
694
- { "name": "sensorB" },
695
- { "name": "settings" },
696
- { "name": "sidebandCursor" },
697
- { "name": "singleCursor" },
698
- { "name": "spectrum" },
699
- { "name": "starFilled" },
700
- { "name": "starOutlined" },
701
- { "name": "statusCircle" },
702
- { "name": "stop" },
703
- { "name": "structuralVibration" },
704
- { "name": "sync" },
705
- { "name": "timewave" },
706
- { "name": "trash" },
707
- { "name": "trend" },
708
- { "name": "trendingUp" },
709
- { "name": "undo" },
710
- { "name": "unknownCircle" },
711
- { "name": "unknownDiamond" },
712
- { "name": "unlink" },
713
- { "name": "unlock" },
714
- { "name": "unscheduledAction" },
715
- { "name": "upload" },
716
- { "name": "user" },
717
- { "name": "viewFull" },
718
- { "name": "viewHorizontal" },
719
- { "name": "viewVertical" },
720
- { "name": "warning" },
721
- { "name": "warningCircle" },
722
- { "name": "warningDiamond" },
723
- { "name": "zoomIn" },
724
- { "name": "zoomOut" }
725
- ]
917
+ "name": "site-name",
918
+ "description": "If defined, sets the app or site's name",
919
+ "values": []
726
920
  },
727
921
  {
728
- "name": "size",
729
- "description": "Size of the icon",
730
- "values": [
731
- { "name": "xs" },
732
- { "name": "sm" },
733
- { "name": "md" },
734
- { "name": "lg" }
735
- ]
922
+ "name": "site-url",
923
+ "description": "If defined, sets the site's base-url for the \"logo-link\"",
924
+ "values": []
736
925
  }
737
926
  ],
738
927
  "references": []
@@ -751,7 +940,70 @@
751
940
  "description": "If true, value is required or must be checked for the form to be submittable",
752
941
  "values": []
753
942
  },
754
- { "name": "autocomplete", "description": "-m }", "values": [] },
943
+ {
944
+ "name": "autocomplete",
945
+ "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
946
+ "values": [
947
+ { "name": "on" },
948
+ { "name": "off" },
949
+ { "name": "name" },
950
+ { "name": "honorific-prefix" },
951
+ { "name": "given-name" },
952
+ { "name": "additional-name" },
953
+ { "name": "family-name" },
954
+ { "name": "honorific-suffix" },
955
+ { "name": "nickname" },
956
+ { "name": "username" },
957
+ { "name": "new-password" },
958
+ { "name": "current-password" },
959
+ { "name": "one-time-code" },
960
+ { "name": "organization-title" },
961
+ { "name": "organization" },
962
+ { "name": "street-address" },
963
+ { "name": "address-line1" },
964
+ { "name": "address-line2" },
965
+ { "name": "address-line3" },
966
+ { "name": "address-level4" },
967
+ { "name": "address-level3" },
968
+ { "name": "address-level2" },
969
+ { "name": "address-level1" },
970
+ { "name": "country" },
971
+ { "name": "country-name" },
972
+ { "name": "postal-code" },
973
+ { "name": "cc-name" },
974
+ { "name": "cc-given-name" },
975
+ { "name": "cc-additional-name" },
976
+ { "name": "cc-family-name" },
977
+ { "name": "cc-number" },
978
+ { "name": "cc-exp" },
979
+ { "name": "cc-exp-month" },
980
+ { "name": "cc-exp-year" },
981
+ { "name": "cc-csc" },
982
+ { "name": "cc-type" },
983
+ { "name": "transaction-amount" },
984
+ { "name": "transaction-currency" },
985
+ { "name": "language" },
986
+ { "name": "bday" },
987
+ { "name": "bday-day" },
988
+ { "name": "bday-month" },
989
+ { "name": "bday-year" },
990
+ { "name": "sex" },
991
+ { "name": "url" },
992
+ { "name": "photo" },
993
+ { "name": "tel" },
994
+ { "name": "tel-country-code" },
995
+ { "name": "tel-national" },
996
+ { "name": "tel-area-code" },
997
+ { "name": "tel-local" },
998
+ { "name": "tel-extension" },
999
+ { "name": "email" },
1000
+ { "name": "impp" },
1001
+ { "name": "password" },
1002
+ { "name": "webauthn" },
1003
+ { "name": "work" },
1004
+ { "name": "(string & {})" }
1005
+ ]
1006
+ },
755
1007
  {
756
1008
  "name": "button-aria-label-clear",
757
1009
  "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
@@ -860,7 +1112,6 @@
860
1112
  "name": "severity",
861
1113
  "description": "If defined, displays provided severity state",
862
1114
  "values": [
863
- { "name": "alert" },
864
1115
  { "name": "success" },
865
1116
  { "name": "info" },
866
1117
  { "name": "warning" }
@@ -1153,54 +1404,35 @@
1153
1404
  "references": []
1154
1405
  },
1155
1406
  {
1156
- "name": "skf-loader",
1157
- "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
1407
+ "name": "skf-menu",
1408
+ "description": "The `<skf-menu>` is a component that displays a list of actions or options.\n---\n\n\n### **Events:**\n - **skf-opened** - Fired when the menu is opened\n- **skf-closed** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The menu popover content",
1158
1409
  "attributes": [
1159
1410
  {
1160
- "name": "aria-label",
1161
- "description": "Defines the aria-label",
1162
- "values": []
1411
+ "name": "placement",
1412
+ "description": "The placement of the menu",
1413
+ "values": [
1414
+ { "name": "top" },
1415
+ { "name": "right" },
1416
+ { "name": "bottom" },
1417
+ { "name": "left" },
1418
+ { "name": "top-start" },
1419
+ { "name": "top-end" },
1420
+ { "name": "right-start" },
1421
+ { "name": "right-end" },
1422
+ { "name": "bottom-start" },
1423
+ { "name": "bottom-end" },
1424
+ { "name": "left-start" },
1425
+ { "name": "left-end" }
1426
+ ]
1163
1427
  },
1164
1428
  {
1165
- "name": "invert",
1166
- "description": "If true, inverts the color (to be used on colored backgrounds)",
1429
+ "name": "anchor",
1430
+ "description": "The id of the element the menu will be anchored to",
1167
1431
  "values": []
1168
- },
1169
- {
1170
- "name": "size",
1171
- "description": "Defines the size of the loader",
1172
- "values": [{ "name": "md" }, { "name": "sm" }]
1173
1432
  }
1174
1433
  ],
1175
1434
  "references": []
1176
1435
  },
1177
- {
1178
- "name": "skf-logo",
1179
- "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)_",
1180
- "attributes": [
1181
- {
1182
- "name": "title",
1183
- "description": "Defines the title of the logo",
1184
- "values": []
1185
- },
1186
- {
1187
- "name": "color",
1188
- "description": "Defines the color of the logo",
1189
- "values": [
1190
- { "name": "primary" },
1191
- { "name": "secondary" },
1192
- { "name": "inverse" }
1193
- ]
1194
- }
1195
- ],
1196
- "references": []
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
1436
  {
1205
1437
  "name": "skf-menu-item",
1206
1438
  "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",
@@ -1429,10 +1661,42 @@
1429
1661
  ],
1430
1662
  "references": []
1431
1663
  },
1664
+ {
1665
+ "name": "skf-nav-item",
1666
+ "description": "The `<skf-nav>` is a component that displays a list of <nav-items>.\n---\n\n\n### **Slots:**\n - _default_ - The component's main content",
1667
+ "attributes": [
1668
+ { "name": "href", "values": [] },
1669
+ { "name": "icon", "values": [{ "name": "SkfLink['icon']" }] }
1670
+ ],
1671
+ "references": []
1672
+ },
1432
1673
  {
1433
1674
  "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",
1675
+ "description": "The `<skf-popover>` is a general purpose component that displays the slot content in a popover.\n---\n\n\n### **Events:**\n - **skf-opened** - Fired when the menu is opened\n- **skf-closed** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The popover content",
1435
1676
  "attributes": [
1677
+ {
1678
+ "name": "placement",
1679
+ "description": "The placement of the menu",
1680
+ "values": [
1681
+ { "name": "top" },
1682
+ { "name": "right" },
1683
+ { "name": "bottom" },
1684
+ { "name": "left" },
1685
+ { "name": "top-start" },
1686
+ { "name": "top-end" },
1687
+ { "name": "right-start" },
1688
+ { "name": "right-end" },
1689
+ { "name": "bottom-start" },
1690
+ { "name": "bottom-end" },
1691
+ { "name": "left-start" },
1692
+ { "name": "left-end" }
1693
+ ]
1694
+ },
1695
+ {
1696
+ "name": "anchor",
1697
+ "description": "The id of the element the menu will be anchored to",
1698
+ "values": []
1699
+ },
1436
1700
  {
1437
1701
  "name": "offset",
1438
1702
  "description": "If defined, sets a custom offset for the popover",
@@ -1541,83 +1805,31 @@
1541
1805
  "references": []
1542
1806
  },
1543
1807
  {
1544
- "name": "skf-select",
1545
- "description": "The `<skf-select>` is a component that displays a list of actions or options. A click in the options list toggle the selected state of the option. Use it together with the ´skf-select-option` tag.\n---\n\n\n### **Events:**\n - **change** - Fired when the selected option(s) changes\n- **invalid** - Fired when the select is invalid\n- **reset** - Fired when the form is reset\n- **skf-select:dropdown** - {detail: {expanded: boolean}} Fired when the select dropdown is toggled\n- **skf-select-option:select** - {detail: {value: string | null, option: SkfSelectOption}} Fired when the select dropdown is toggled\n\n### **Slots:**\n - _default_ - The select's placeholder content",
1808
+ "name": "skf-segmented-button-item",
1809
+ "description": "The `<skf-segmented-button-item>` is used in conjunction with the `<skf-segmented-button>` component\n---\n\n\n### **Events:**\n - **my-tag-my-event** - Fired when something happens\n\n### **Slots:**\n - _default_ - The items label",
1546
1810
  "attributes": [
1547
1811
  {
1548
1812
  "name": "disabled",
1549
- "description": "If true, the select is disabled\t`default: false`",
1550
- "values": []
1551
- },
1552
- {
1553
- "name": "button-label",
1554
- "description": "Sets the first visible text on the component",
1555
- "values": []
1556
- },
1557
- {
1558
- "name": "custom-invalid",
1559
- "description": "If defined, forces component to invalid state until removed",
1560
- "values": []
1561
- },
1562
- {
1563
- "name": "hide-label",
1564
- "description": "If true, hides the label visually",
1565
- "values": []
1566
- },
1567
- {
1568
- "name": "hide-tags",
1569
- "description": "If true and mulltiple is true, no tags are displayed under the select",
1570
- "values": []
1571
- },
1572
- {
1573
- "name": "hint",
1574
- "description": "If defined, sets the hint text under the select component in the form",
1575
- "values": []
1576
- },
1577
- {
1578
- "name": "label",
1579
- "description": "If defined, displays provided label",
1580
- "values": []
1581
- },
1582
- {
1583
- "name": "max",
1584
- "description": "If defined, limits the number of selectable options",
1813
+ "description": "If true, items is marked as disabled",
1585
1814
  "values": []
1586
1815
  },
1816
+ { "name": "value", "description": "Sets the item value", "values": [] }
1817
+ ],
1818
+ "references": []
1819
+ },
1820
+ {
1821
+ "name": "skf-segmented-button",
1822
+ "description": "The `<skf-segmented-button>` component consists of multiple `<skf-segmented-button-item>`, working together.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/68ff54-segmented-buttons) for design principles\n---\n\n\n### **Slots:**\n - _default_ - One or more `<skf-segmented-button-item>`",
1823
+ "attributes": [
1587
1824
  {
1588
- "name": "min",
1589
- "description": "If defined, sets the minimum number of required options",
1825
+ "name": "default-selected",
1826
+ "description": "Sets the default selected control",
1590
1827
  "values": []
1591
1828
  },
1592
1829
  {
1593
1830
  "name": "multiple",
1594
- "description": "If true, allows for multiple options to be selected",
1595
- "values": []
1596
- },
1597
- {
1598
- "name": "name",
1599
- "description": "If defined, set name of the component",
1600
- "values": []
1601
- },
1602
- {
1603
- "name": "required-label",
1604
- "description": "If defined, renders an alternative A11y text for the asterisk",
1605
- "values": []
1606
- },
1607
- {
1608
- "name": "severity",
1609
- "description": "If defined, displays provided severity state",
1610
- "values": [{ "name": "FormFieldBaseProps['severity']" }]
1611
- },
1612
- {
1613
- "name": "show-valid",
1614
- "description": "If true, displays valid state after interaction",
1831
+ "description": "If true, allowes multiple items to be selected",
1615
1832
  "values": []
1616
- },
1617
- {
1618
- "name": "size",
1619
- "description": "Size of the Select",
1620
- "values": [{ "name": "sm" }, { "name": "md" }]
1621
1833
  }
1622
1834
  ],
1623
1835
  "references": []
@@ -1660,166 +1872,14 @@
1660
1872
  "references": []
1661
1873
  },
1662
1874
  {
1663
- "name": "skf-select-option-group",
1664
- "description": "The `<skf-select-option-group>` is a component that groups select-options\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
1665
- "attributes": [{ "name": "label", "values": [] }],
1666
- "references": []
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
- },
1705
- {
1706
- "name": "skf-switch",
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.",
1875
+ "name": "skf-tag",
1876
+ "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",
1708
1877
  "attributes": [
1709
- {
1710
- "name": "disabled",
1711
- "description": "If true, sets disabled state",
1712
- "values": []
1713
- },
1714
- {
1715
- "name": "required",
1716
- "description": "If true, value is required or must be checked for the form to be submittable",
1717
- "values": []
1718
- },
1719
- {
1720
- "name": "debug",
1721
- "description": "If true, outputs helping hints in console",
1722
- "values": []
1723
- },
1724
- {
1725
- "name": "checked",
1726
- "description": "If true, outputs helping hints in console",
1727
- "values": []
1728
- },
1729
- {
1730
- "name": "hide-label",
1731
- "description": "If true, hides the label visually",
1732
- "values": []
1733
- },
1734
- {
1735
- "name": "label",
1736
- "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
1737
- "values": []
1738
- },
1739
- {
1740
- "name": "name",
1741
- "description": "If defined, adds name to the input-element",
1742
- "values": []
1743
- },
1744
- {
1745
- "name": "required-label",
1746
- "description": "If defined, renders an alternative A11y text for the asterisk",
1747
- "values": []
1748
- },
1749
1878
  {
1750
1879
  "name": "size",
1751
- "description": "Size of the Switch",
1880
+ "description": "Specifies Tag size",
1752
1881
  "values": [{ "name": "sm" }, { "name": "md" }]
1753
1882
  },
1754
- {
1755
- "name": "value",
1756
- "description": "The current value of the input field",
1757
- "values": []
1758
- }
1759
- ],
1760
- "references": []
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
- },
1814
- {
1815
- "name": "skf-tag",
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",
1817
- "attributes": [
1818
- {
1819
- "name": "size",
1820
- "description": "Specifies Tag size",
1821
- "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
1822
- },
1823
1883
  {
1824
1884
  "name": "icon",
1825
1885
  "description": "If defined, displays leading/provided icon",
@@ -1996,6 +2056,240 @@
1996
2056
  ],
1997
2057
  "references": []
1998
2058
  },
2059
+ {
2060
+ "name": "skf-select",
2061
+ "description": "The `<skf-select>` is a component that displays a list of actions or options. A click in the options list toggle the selected state of the option. Use it together with the ´skf-select-option` tag.\n---\n\n\n### **Events:**\n - **change** - Fired when the selected option(s) changes\n- **invalid** - Fired when the select is invalid\n- **reset** - Fired when the form is reset\n- **skf-select:dropdown** - {detail: {expanded: boolean}} Fired when the select dropdown is toggled\n- **skf-select-option:select** - {detail: {value: string | null, option: SkfSelectOption}} Fired when the select dropdown is toggled\n\n### **Slots:**\n - _default_ - The select's placeholder content",
2062
+ "attributes": [
2063
+ {
2064
+ "name": "disabled",
2065
+ "description": "If true, the select is disabled\t`default: false`",
2066
+ "values": []
2067
+ },
2068
+ {
2069
+ "name": "button-label",
2070
+ "description": "Sets the first visible text on the component",
2071
+ "values": []
2072
+ },
2073
+ {
2074
+ "name": "custom-invalid",
2075
+ "description": "If defined, forces component to invalid state until removed",
2076
+ "values": []
2077
+ },
2078
+ {
2079
+ "name": "hide-label",
2080
+ "description": "If true, hides the label visually",
2081
+ "values": []
2082
+ },
2083
+ {
2084
+ "name": "hide-tags",
2085
+ "description": "If true and mulltiple is true, no tags are displayed under the select",
2086
+ "values": []
2087
+ },
2088
+ {
2089
+ "name": "hint",
2090
+ "description": "If defined, sets the hint text under the select component in the form",
2091
+ "values": []
2092
+ },
2093
+ {
2094
+ "name": "label",
2095
+ "description": "If defined, displays provided label",
2096
+ "values": []
2097
+ },
2098
+ {
2099
+ "name": "max",
2100
+ "description": "If defined, limits the number of selectable options",
2101
+ "values": []
2102
+ },
2103
+ {
2104
+ "name": "min",
2105
+ "description": "If defined, sets the minimum number of required options",
2106
+ "values": []
2107
+ },
2108
+ {
2109
+ "name": "multiple",
2110
+ "description": "If true, allows for multiple options to be selected",
2111
+ "values": []
2112
+ },
2113
+ {
2114
+ "name": "name",
2115
+ "description": "If defined, set name of the component",
2116
+ "values": []
2117
+ },
2118
+ {
2119
+ "name": "required-label",
2120
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2121
+ "values": []
2122
+ },
2123
+ {
2124
+ "name": "severity",
2125
+ "description": "If defined, displays provided severity state",
2126
+ "values": [{ "name": "FormFieldBaseProps['severity']" }]
2127
+ },
2128
+ {
2129
+ "name": "show-valid",
2130
+ "description": "If true, displays valid state after interaction",
2131
+ "values": []
2132
+ },
2133
+ {
2134
+ "name": "size",
2135
+ "description": "Size of the Select",
2136
+ "values": [{ "name": "sm" }, { "name": "md" }]
2137
+ }
2138
+ ],
2139
+ "references": []
2140
+ },
2141
+ {
2142
+ "name": "skf-select-option-group",
2143
+ "description": "The `<skf-select-option-group>` is a component that groups select-options\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
2144
+ "attributes": [{ "name": "label", "values": [] }],
2145
+ "references": []
2146
+ },
2147
+ {
2148
+ "name": "skf-stepper-item",
2149
+ "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",
2150
+ "attributes": [
2151
+ {
2152
+ "name": "state",
2153
+ "description": "If defined, gives the supplied appearance",
2154
+ "values": [
2155
+ { "name": "Extract<SkfStepperItemState, 'active'" },
2156
+ { "name": "'completed'>" }
2157
+ ]
2158
+ },
2159
+ {
2160
+ "name": "completed",
2161
+ "description": "If true, item marked as completed",
2162
+ "values": []
2163
+ }
2164
+ ],
2165
+ "references": []
2166
+ },
2167
+ {
2168
+ "name": "skf-stepper",
2169
+ "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>`",
2170
+ "attributes": [
2171
+ {
2172
+ "name": "activeIndex",
2173
+ "description": "Sets the active item",
2174
+ "values": []
2175
+ },
2176
+ {
2177
+ "name": "linear",
2178
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
2179
+ "values": []
2180
+ }
2181
+ ],
2182
+ "references": []
2183
+ },
2184
+ {
2185
+ "name": "skf-switch",
2186
+ "description": "The `<skf-switch>` is a component that displays a list of actions or options\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/7282a2-switch) for design principle\n---\n\n\n### **Slots:**\n - _default_ - The Switchs label. Alternatively, you can use the `label` attribute.",
2187
+ "attributes": [
2188
+ {
2189
+ "name": "disabled",
2190
+ "description": "If true, sets disabled state",
2191
+ "values": []
2192
+ },
2193
+ {
2194
+ "name": "required",
2195
+ "description": "If true, value is required or must be checked for the form to be submittable",
2196
+ "values": []
2197
+ },
2198
+ {
2199
+ "name": "debug",
2200
+ "description": "If true, outputs helping hints in console",
2201
+ "values": []
2202
+ },
2203
+ {
2204
+ "name": "checked",
2205
+ "description": "If true, outputs helping hints in console",
2206
+ "values": []
2207
+ },
2208
+ {
2209
+ "name": "hide-label",
2210
+ "description": "If true, hides the label visually",
2211
+ "values": []
2212
+ },
2213
+ {
2214
+ "name": "label",
2215
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2216
+ "values": []
2217
+ },
2218
+ {
2219
+ "name": "name",
2220
+ "description": "If defined, adds name to the input-element",
2221
+ "values": []
2222
+ },
2223
+ {
2224
+ "name": "required-label",
2225
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2226
+ "values": []
2227
+ },
2228
+ {
2229
+ "name": "size",
2230
+ "description": "Size of the Switch",
2231
+ "values": [{ "name": "sm" }, { "name": "md" }]
2232
+ },
2233
+ {
2234
+ "name": "value",
2235
+ "description": "The current value of the input field",
2236
+ "values": []
2237
+ }
2238
+ ],
2239
+ "references": []
2240
+ },
2241
+ {
2242
+ "name": "skf-tab-panel",
2243
+ "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",
2244
+ "attributes": [
2245
+ { "name": "name", "description": "The tab panel's name.", "values": [] }
2246
+ ],
2247
+ "references": []
2248
+ },
2249
+ {
2250
+ "name": "skf-tab-group",
2251
+ "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",
2252
+ "attributes": [
2253
+ {
2254
+ "name": "default-selected",
2255
+ "description": "Sets the default selected tab",
2256
+ "values": []
2257
+ },
2258
+ {
2259
+ "name": "no-border",
2260
+ "description": "If true, removes border",
2261
+ "values": []
2262
+ },
2263
+ {
2264
+ "name": "no-padding",
2265
+ "description": "If true, removes padding",
2266
+ "values": []
2267
+ },
2268
+ {
2269
+ "name": "stretch",
2270
+ "description": "If true, component fills the parent element height",
2271
+ "values": []
2272
+ },
2273
+ {
2274
+ "name": "variant",
2275
+ "description": "Sets the appearance of the tabs",
2276
+ "values": [{ "name": "compressed" }, { "name": "expanded" }]
2277
+ }
2278
+ ],
2279
+ "references": []
2280
+ },
2281
+ {
2282
+ "name": "skf-tab",
2283
+ "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",
2284
+ "attributes": [
2285
+ {
2286
+ "name": "panel",
2287
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
2288
+ "values": []
2289
+ }
2290
+ ],
2291
+ "references": []
2292
+ },
1999
2293
  {
2000
2294
  "name": "skf-textarea",
2001
2295
  "description": "The skf-textarea is used to create a textarea. Use it inside a form element or wherever you like.\n---\n\n\n### **Events:**\n - **change** - Fires when the value of the input changes\n- **invalid** - Fires when the input is invalid\n\n### **Slots:**\n - _default_ - The textareas label. Alternatively, you can use the `label` attribute.",
@@ -2112,9 +2406,15 @@
2112
2406
  ],
2113
2407
  "references": []
2114
2408
  },
2409
+ {
2410
+ "name": "skf-toast-wrapper",
2411
+ "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.",
2412
+ "attributes": [{ "name": "debug", "values": [] }],
2413
+ "references": []
2414
+ },
2115
2415
  {
2116
2416
  "name": "skf-toast",
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",
2417
+ "description": "A simple toast component that displays a message to the user. Invoke a toast message by appending a &lt;skf-toast&gt; tag to the DOM. Position in DOM is irrelevant. A transient toast will disappear after a set amount of time. Once toast is dismissed it will be removed from the DOM.\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
2118
2418
  "attributes": [
2119
2419
  { "name": "debug", "values": [] },
2120
2420
  {
@@ -2145,16 +2445,34 @@
2145
2445
  ],
2146
2446
  "references": []
2147
2447
  },
2148
- {
2149
- "name": "skf-toast-wrapper",
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.",
2151
- "attributes": [{ "name": "debug", "values": [] }],
2152
- "references": []
2153
- },
2154
2448
  {
2155
2449
  "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": [],
2450
+ "description": "The `<skf-tooltip>` is a component that displays a tooltip.\n---\n\n\n### **Events:**\n - **skf-opened** - Fired when the dropdown is opened\n- **skf-closed** - Fired when the dropdown is closed\n\n### **Slots:**\n - _default_ - The tooltip popover content",
2451
+ "attributes": [
2452
+ {
2453
+ "name": "placement",
2454
+ "description": "The placement of the dropdown",
2455
+ "values": [
2456
+ { "name": "top" },
2457
+ { "name": "right" },
2458
+ { "name": "bottom" },
2459
+ { "name": "left" },
2460
+ { "name": "top-start" },
2461
+ { "name": "top-end" },
2462
+ { "name": "right-start" },
2463
+ { "name": "right-end" },
2464
+ { "name": "bottom-start" },
2465
+ { "name": "bottom-end" },
2466
+ { "name": "left-start" },
2467
+ { "name": "left-end" }
2468
+ ]
2469
+ },
2470
+ {
2471
+ "name": "anchor",
2472
+ "description": "The id of the element the dropdown will be anchored to",
2473
+ "values": []
2474
+ }
2475
+ ],
2158
2476
  "references": []
2159
2477
  }
2160
2478
  ]