@skf-design-system/ui-components 1.0.0-alpha.33 → 1.0.0-alpha.35

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 (345) hide show
  1. package/README.md +20 -27
  2. package/dist/components/accordion/accordion-item.component.d.ts +36 -0
  3. package/dist/components/accordion/accordion-item.component.js +98 -0
  4. package/dist/components/accordion/accordion-item.d.ts +3 -3
  5. package/dist/components/accordion/accordion-item.js +4 -5
  6. package/dist/components/accordion/accordion-item.styles.js +77 -0
  7. package/dist/components/accordion/accordion.component.d.ts +9 -13
  8. package/dist/components/accordion/accordion.component.js +7 -7
  9. package/dist/components/accordion/accordion.d.ts +0 -1
  10. package/dist/components/alert/alert.component.d.ts +12 -12
  11. package/dist/components/alert/alert.component.js +57 -54
  12. package/dist/components/alert/alert.styles.js +50 -51
  13. package/dist/components/breadcrumb/breadcrumb-item.component.d.ts +25 -0
  14. package/dist/components/breadcrumb/breadcrumb-item.component.js +60 -0
  15. package/dist/components/breadcrumb/breadcrumb-item.d.ts +8 -0
  16. package/dist/components/breadcrumb/breadcrumb-item.js +6 -0
  17. package/dist/components/breadcrumb/breadcrumb-item.styles.js +63 -0
  18. package/dist/components/breadcrumb/breadcrumb.component.d.ts +32 -0
  19. package/dist/components/breadcrumb/breadcrumb.component.js +65 -0
  20. package/dist/components/breadcrumb/breadcrumb.d.ts +8 -0
  21. package/dist/components/breadcrumb/breadcrumb.js +6 -0
  22. package/dist/components/breadcrumb/breadcrumb.styles.js +25 -0
  23. package/dist/components/button/button.component.d.ts +17 -14
  24. package/dist/components/button/button.component.js +74 -60
  25. package/dist/components/button/button.styles.d.ts +1 -2
  26. package/dist/components/button/button.styles.js +13 -3
  27. package/dist/components/card/card.component.d.ts +4 -1
  28. package/dist/components/card/card.component.js +46 -36
  29. package/dist/components/card/card.styles.js +36 -23
  30. package/dist/components/checkbox/checkbox.component.d.ts +17 -13
  31. package/dist/components/checkbox/checkbox.component.js +75 -61
  32. package/dist/components/checkbox/checkbox.styles.d.ts +1 -2
  33. package/dist/components/checkbox/checkbox.styles.js +1 -5
  34. package/dist/components/datepicker/datepicker-calendar.component.d.ts +80 -0
  35. package/dist/components/datepicker/datepicker-calendar.component.js +415 -0
  36. package/dist/components/datepicker/datepicker-calendar.d.ts +8 -0
  37. package/dist/components/datepicker/datepicker-calendar.js +6 -0
  38. package/dist/components/datepicker/datepicker-calendar.styles.js +202 -0
  39. package/dist/components/datepicker/datepicker-popup.component.d.ts +64 -0
  40. package/dist/components/datepicker/datepicker-popup.component.js +261 -0
  41. package/dist/components/datepicker/datepicker-popup.d.ts +8 -0
  42. package/dist/components/datepicker/datepicker-popup.helpers.d.ts +41 -0
  43. package/dist/components/datepicker/datepicker-popup.helpers.js +83 -0
  44. package/dist/components/datepicker/datepicker-popup.js +6 -0
  45. package/dist/components/datepicker/datepicker-popup.styles.js +87 -0
  46. package/dist/components/datepicker/datepicker.component.d.ts +121 -0
  47. package/dist/components/datepicker/datepicker.component.js +455 -0
  48. package/dist/components/datepicker/datepicker.d.ts +8 -0
  49. package/dist/components/datepicker/datepicker.helpers.d.ts +38 -0
  50. package/dist/components/datepicker/datepicker.helpers.js +31 -0
  51. package/dist/components/datepicker/datepicker.js +6 -0
  52. package/dist/components/datepicker/datepicker.styles.d.ts +1 -0
  53. package/dist/components/datepicker/datepicker.styles.js +18 -0
  54. package/dist/components/dialog/dialog.component.d.ts +20 -30
  55. package/dist/components/dialog/dialog.component.js +89 -78
  56. package/dist/components/dialog/dialog.d.ts +2 -2
  57. package/dist/components/dialog/dialog.styles.js +4 -4
  58. package/dist/components/divider/divider.component.d.ts +4 -8
  59. package/dist/components/divider/divider.component.js +24 -46
  60. package/dist/components/divider/divider.styles.js +34 -30
  61. package/dist/components/drawer/drawer.component.d.ts +61 -0
  62. package/dist/components/drawer/drawer.component.js +125 -0
  63. package/dist/components/drawer/drawer.d.ts +8 -0
  64. package/dist/components/drawer/drawer.js +6 -0
  65. package/dist/components/drawer/drawer.styles.js +71 -0
  66. package/dist/components/header/header.component.d.ts +46 -0
  67. package/dist/components/header/header.component.js +116 -0
  68. package/dist/components/header/header.d.ts +8 -0
  69. package/dist/components/header/header.js +6 -0
  70. package/dist/components/header/header.styles.js +68 -0
  71. package/dist/components/heading/heading.component.d.ts +8 -12
  72. package/dist/components/heading/heading.component.js +52 -24
  73. package/dist/components/heading/heading.styles.d.ts +1 -2
  74. package/dist/components/heading/heading.styles.js +35 -37
  75. package/dist/components/icon/icon.component.d.ts +19 -18
  76. package/dist/components/icon/icon.component.js +60 -40
  77. package/dist/components/icon/icon.styles.d.ts +1 -2
  78. package/dist/components/icon/icon.styles.js +61 -60
  79. package/dist/components/input/input.component.d.ts +31 -31
  80. package/dist/components/input/input.component.js +167 -146
  81. package/dist/components/input/input.controllers.d.ts +20 -6
  82. package/dist/components/input/input.controllers.js +14 -10
  83. package/dist/components/link/link.component.d.ts +12 -14
  84. package/dist/components/link/link.component.js +36 -34
  85. package/dist/components/link/link.styles.d.ts +1 -2
  86. package/dist/components/link/link.styles.js +24 -20
  87. package/dist/components/loader/loader.component.d.ts +1 -1
  88. package/dist/components/loader/loader.component.js +36 -40
  89. package/dist/components/loader/loader.styles.d.ts +1 -2
  90. package/dist/components/loader/loader.styles.js +40 -32
  91. package/dist/components/logo/logo.component.d.ts +8 -6
  92. package/dist/components/logo/logo.component.js +55 -51
  93. package/dist/components/logo/logo.styles.js +26 -16
  94. package/dist/components/menu/menu-item.component.d.ts +13 -0
  95. package/dist/components/{menu-item → menu}/menu-item.component.js +3 -3
  96. package/dist/components/{menu-item → menu}/menu-item.d.ts +2 -2
  97. package/dist/components/menu/menu.component.d.ts +10 -8
  98. package/dist/components/menu/menu.component.js +8 -10
  99. package/dist/components/menu/menu.d.ts +2 -2
  100. package/dist/components/nav/nav-item.component.d.ts +18 -0
  101. package/dist/components/nav/nav-item.component.js +38 -0
  102. package/dist/components/nav/nav-item.d.ts +8 -0
  103. package/dist/components/nav/nav-item.js +6 -0
  104. package/dist/components/nav/nav-item.styles.d.ts +1 -0
  105. package/dist/components/nav/nav-item.styles.js +39 -0
  106. package/dist/components/nav/nav.component.d.ts +17 -0
  107. package/dist/components/nav/nav.component.js +34 -0
  108. package/dist/components/nav/nav.d.ts +8 -0
  109. package/dist/components/nav/nav.js +6 -0
  110. package/dist/components/nav/nav.styles.d.ts +1 -0
  111. package/dist/components/nav/nav.styles.js +17 -0
  112. package/dist/components/popover/popover.component.d.ts +11 -8
  113. package/dist/components/popover/popover.component.js +24 -26
  114. package/dist/components/popover/popover.d.ts +2 -2
  115. package/dist/components/progress/progress.component.d.ts +2 -2
  116. package/dist/components/progress/progress.component.js +31 -37
  117. package/dist/components/progress/progress.d.ts +2 -2
  118. package/dist/components/progress/progress.styles.js +42 -35
  119. package/dist/components/radio/radio.component.d.ts +19 -13
  120. package/dist/components/radio/radio.component.js +13 -12
  121. package/dist/components/radio/radio.styles.d.ts +1 -2
  122. package/dist/components/radio/radio.styles.js +1 -1
  123. package/dist/components/segmented-button/segmented-button-item.component.d.ts +36 -0
  124. package/dist/components/segmented-button/segmented-button-item.component.js +56 -0
  125. package/dist/components/segmented-button/segmented-button-item.d.ts +8 -0
  126. package/dist/components/segmented-button/segmented-button-item.js +6 -0
  127. package/dist/components/segmented-button/segmented-button-item.styles.d.ts +1 -0
  128. package/dist/components/segmented-button/segmented-button-item.styles.js +62 -0
  129. package/dist/components/segmented-button/segmented-button.component.d.ts +30 -0
  130. package/dist/components/segmented-button/segmented-button.component.js +73 -0
  131. package/dist/components/segmented-button/segmented-button.d.ts +8 -0
  132. package/dist/components/segmented-button/segmented-button.js +6 -0
  133. package/dist/components/segmented-button/segmented-button.styles.d.ts +1 -0
  134. package/dist/components/segmented-button/segmented-button.styles.js +16 -0
  135. package/dist/components/{select-option-group → select}/select-option-group.component.js +1 -1
  136. package/dist/components/{select-option-group → select}/select-option-group.d.ts +2 -2
  137. package/dist/components/select/select-option-group.style.d.ts +1 -0
  138. package/dist/components/{select-option → select}/select-option.component.d.ts +9 -10
  139. package/dist/components/{select-option → select}/select-option.component.js +23 -22
  140. package/dist/components/select/select-option.controllers.d.ts +15 -0
  141. package/dist/components/select/select-option.styles.d.ts +1 -0
  142. package/dist/components/select/select.component.d.ts +18 -17
  143. package/dist/components/select/select.component.js +22 -22
  144. package/dist/components/select/select.controllers.d.ts +21 -10
  145. package/dist/components/select/select.controllers.js +27 -22
  146. package/dist/components/select/stories/select.stories.icons.d.ts +7 -0
  147. package/dist/components/{stepper-item → stepper}/stepper-item.component.js +50 -49
  148. package/dist/components/{stepper-item → stepper}/stepper-item.d.ts +2 -2
  149. package/dist/components/stepper/stepper-item.styles.d.ts +1 -0
  150. package/dist/components/stepper/stepper.component.d.ts +4 -3
  151. package/dist/components/stepper/stepper.component.js +15 -15
  152. package/dist/components/stepper/stepper.d.ts +2 -2
  153. package/dist/components/stepper/stepper.helpers.d.ts +1 -1
  154. package/dist/components/switch/switch.component.d.ts +7 -6
  155. package/dist/components/switch/switch.component.js +21 -21
  156. package/dist/components/switch/switch.d.ts +2 -2
  157. package/dist/components/{tab-panel → tabs}/tab-panel.component.js +1 -1
  158. package/dist/components/{tab-panel → tabs}/tab-panel.d.ts +2 -2
  159. package/dist/components/tabs/tab-panel.styles.d.ts +1 -0
  160. package/dist/components/{tab → tabs}/tab.component.d.ts +2 -2
  161. package/dist/components/{tab → tabs}/tab.component.js +1 -1
  162. package/dist/components/{tab → tabs}/tab.d.ts +2 -2
  163. package/dist/components/tabs/tab.styles.d.ts +1 -0
  164. package/dist/components/{tab-group/tab-group.component.d.ts → tabs/tabs.component.d.ts} +3 -4
  165. package/dist/components/{tab-group/tab-group.component.js → tabs/tabs.component.js} +31 -31
  166. package/dist/components/tabs/tabs.d.ts +8 -0
  167. package/dist/components/tabs/tabs.js +6 -0
  168. package/dist/components/tabs/tabs.styles.d.ts +1 -0
  169. package/dist/components/{tab-group/tab-group.styles.js → tabs/tabs.styles.js} +16 -16
  170. package/dist/components/tag/tag.component.d.ts +20 -17
  171. package/dist/components/tag/tag.component.js +69 -67
  172. package/dist/components/tag/tag.d.ts +2 -2
  173. package/dist/components/tag/tag.styles.js +63 -50
  174. package/dist/components/textarea/textarea.component.d.ts +10 -11
  175. package/dist/components/textarea/textarea.component.js +66 -67
  176. package/dist/components/{toast-item → toast}/toast-item.component.js +15 -15
  177. package/dist/components/{toast-item → toast}/toast-item.d.ts +2 -0
  178. package/dist/components/{toast-item → toast}/toast-item.js +4 -0
  179. package/dist/components/toast/toast-item.styles.js +18 -0
  180. package/dist/components/{toast-wrapper → toast}/toast-wrapper.component.js +1 -1
  181. package/dist/components/toast/toast-wrapper.styles.d.ts +1 -0
  182. package/dist/components/toast/toast.component.d.ts +9 -5
  183. package/dist/components/toast/toast.component.js +32 -28
  184. package/dist/components/toast/toast.singleton.d.ts +6 -11
  185. package/dist/components/toast/toast.singleton.js +23 -23
  186. package/dist/components/tooltip/tooltip.component.d.ts +7 -7
  187. package/dist/components/tooltip/tooltip.component.js +16 -11
  188. package/dist/components/tooltip/tooltip.d.ts +2 -2
  189. package/dist/custom-elements.json +4450 -2753
  190. package/dist/index.d.ts +22 -9
  191. package/dist/index.js +111 -74
  192. package/dist/internal/base-classes/popover/popover.base.d.ts +24 -9
  193. package/dist/internal/base-classes/popover/popover.base.js +138 -77
  194. package/dist/internal/base-classes/popover/popover.styles.js +14 -1
  195. package/dist/internal/components/hint/hint.component.d.ts +2 -2
  196. package/dist/internal/components/hint/hint.component.js +3 -2
  197. package/dist/internal/components/hint/hint.styles.d.ts +1 -2
  198. package/dist/internal/components/hint/hint.styles.js +1 -1
  199. package/dist/internal/components/skf-element.d.ts +1 -3
  200. package/dist/internal/components/skf-element.js +4 -9
  201. package/dist/internal/constants/iconSeverity.d.ts +3 -2
  202. package/dist/internal/constants/iconSeverity.js +2 -3
  203. package/dist/internal/controllers/elementOverflowController.d.ts +13 -0
  204. package/dist/internal/controllers/popover.controller.d.ts +12 -6
  205. package/dist/internal/controllers/popover.controller.js +7 -11
  206. package/dist/internal/helpers/dateFormatter.d.ts +2 -0
  207. package/dist/internal/helpers/hintSeverity.d.ts +2 -2
  208. package/dist/internal/helpers/hintSeverity.js +1 -1
  209. package/dist/internal/helpers/stateMap.d.ts +14 -0
  210. package/dist/internal/helpers/stateMap.js +68 -0
  211. package/dist/internal/helpers/utilityTypes.d.ts +22 -0
  212. package/dist/internal/helpers/uuid.d.ts +15 -0
  213. package/dist/internal/helpers/uuid.js +14 -0
  214. package/dist/internal/helpers/watch.d.ts +1 -1
  215. package/dist/internal/helpers/watch.js +12 -12
  216. package/dist/internal/storybook/styles.d.ts +1 -0
  217. package/dist/internal/types/formField.d.ts +1 -1
  218. package/dist/internal/types.d.ts +18 -0
  219. package/dist/styles/component.styles.d.ts +1 -2
  220. package/dist/styles/component.styles.js +38 -37
  221. package/dist/styles/form-field.styles.js +11 -6
  222. package/dist/styles/global-alt.css +1 -0
  223. package/dist/styles/global.css +1 -1
  224. package/dist/types/jsx/custom-element-jsx.d.ts +767 -1282
  225. package/dist/types/vue/index.d.ts +572 -310
  226. package/dist/vscode.html-custom-data.json +547 -1068
  227. package/dist/web-types.json +1314 -769
  228. package/package.json +48 -64
  229. package/dist/components/accordion/accordion.test.d.ts +0 -1
  230. package/dist/components/checkbox/checkbox.test.d.ts +0 -1
  231. package/dist/components/collapse/collapse.component.d.ts +0 -40
  232. package/dist/components/collapse/collapse.component.js +0 -85
  233. package/dist/components/collapse/collapse.d.ts +0 -8
  234. package/dist/components/collapse/collapse.js +0 -6
  235. package/dist/components/collapse/collapse.styles.d.ts +0 -2
  236. package/dist/components/collapse/collapse.styles.js +0 -77
  237. package/dist/components/collapse/collapse.test.d.ts +0 -1
  238. package/dist/components/input/input.test.d.ts +0 -1
  239. package/dist/components/menu-item/menu-item.component.d.ts +0 -25
  240. package/dist/components/radio/radio.test.d.ts +0 -1
  241. package/dist/components/select-option/select-option.controllers.d.ts +0 -9
  242. package/dist/components/switch/switch.test.d.ts +0 -1
  243. package/dist/components/tab-group/tab-group.d.ts +0 -8
  244. package/dist/components/tab-group/tab-group.js +0 -6
  245. package/dist/components/toast-item/toast-item.styles.js +0 -16
  246. package/dist/internal/constants/heading.d.ts +0 -2
  247. package/dist/internal/playwright/index.d.ts +0 -1
  248. package/dist/react/index.d.ts +0 -33
  249. package/dist/react/index.js +0 -33
  250. package/dist/react/skf-accordion/index.d.ts +0 -3
  251. package/dist/react/skf-accordion/index.js +0 -13
  252. package/dist/react/skf-alert/index.d.ts +0 -9
  253. package/dist/react/skf-alert/index.js +0 -17
  254. package/dist/react/skf-button/index.d.ts +0 -9
  255. package/dist/react/skf-button/index.js +0 -17
  256. package/dist/react/skf-card/index.d.ts +0 -3
  257. package/dist/react/skf-card/index.js +0 -13
  258. package/dist/react/skf-checkbox/index.d.ts +0 -9
  259. package/dist/react/skf-checkbox/index.js +0 -17
  260. package/dist/react/skf-collapse/index.d.ts +0 -9
  261. package/dist/react/skf-collapse/index.js +0 -17
  262. package/dist/react/skf-dialog/index.d.ts +0 -15
  263. package/dist/react/skf-dialog/index.js +0 -19
  264. package/dist/react/skf-divider/index.d.ts +0 -3
  265. package/dist/react/skf-divider/index.js +0 -13
  266. package/dist/react/skf-heading/index.d.ts +0 -3
  267. package/dist/react/skf-heading/index.js +0 -13
  268. package/dist/react/skf-icon/index.d.ts +0 -3
  269. package/dist/react/skf-icon/index.js +0 -13
  270. package/dist/react/skf-input/index.d.ts +0 -12
  271. package/dist/react/skf-input/index.js +0 -18
  272. package/dist/react/skf-link/index.d.ts +0 -3
  273. package/dist/react/skf-link/index.js +0 -13
  274. package/dist/react/skf-loader/index.d.ts +0 -3
  275. package/dist/react/skf-loader/index.js +0 -13
  276. package/dist/react/skf-logo/index.d.ts +0 -3
  277. package/dist/react/skf-logo/index.js +0 -13
  278. package/dist/react/skf-menu/index.d.ts +0 -12
  279. package/dist/react/skf-menu/index.js +0 -18
  280. package/dist/react/skf-menu-item/index.d.ts +0 -27
  281. package/dist/react/skf-menu-item/index.js +0 -23
  282. package/dist/react/skf-popover/index.d.ts +0 -12
  283. package/dist/react/skf-popover/index.js +0 -18
  284. package/dist/react/skf-progress/index.d.ts +0 -3
  285. package/dist/react/skf-progress/index.js +0 -13
  286. package/dist/react/skf-radio/index.d.ts +0 -9
  287. package/dist/react/skf-radio/index.js +0 -17
  288. package/dist/react/skf-select/index.d.ts +0 -21
  289. package/dist/react/skf-select/index.js +0 -21
  290. package/dist/react/skf-select-option/index.d.ts +0 -9
  291. package/dist/react/skf-select-option/index.js +0 -17
  292. package/dist/react/skf-select-option-group/index.d.ts +0 -3
  293. package/dist/react/skf-select-option-group/index.js +0 -13
  294. package/dist/react/skf-stepper/index.d.ts +0 -9
  295. package/dist/react/skf-stepper/index.js +0 -17
  296. package/dist/react/skf-stepper-item/index.d.ts +0 -9
  297. package/dist/react/skf-stepper-item/index.js +0 -17
  298. package/dist/react/skf-switch/index.d.ts +0 -3
  299. package/dist/react/skf-switch/index.js +0 -13
  300. package/dist/react/skf-tab/index.d.ts +0 -12
  301. package/dist/react/skf-tab/index.js +0 -18
  302. package/dist/react/skf-tab-group/index.d.ts +0 -3
  303. package/dist/react/skf-tab-group/index.js +0 -13
  304. package/dist/react/skf-tab-panel/index.d.ts +0 -3
  305. package/dist/react/skf-tab-panel/index.js +0 -13
  306. package/dist/react/skf-tag/index.d.ts +0 -3
  307. package/dist/react/skf-tag/index.js +0 -13
  308. package/dist/react/skf-textarea/index.d.ts +0 -12
  309. package/dist/react/skf-textarea/index.js +0 -18
  310. package/dist/react/skf-toast/index.d.ts +0 -3
  311. package/dist/react/skf-toast/index.js +0 -13
  312. package/dist/react/skf-toast-wrapper/index.d.ts +0 -3
  313. package/dist/react/skf-toast-wrapper/index.js +0 -13
  314. package/dist/react/skf-tooltip/index.d.ts +0 -12
  315. package/dist/react/skf-tooltip/index.js +0 -18
  316. /package/dist/components/{menu-item/menu-item.styles.d.ts → accordion/accordion-item.styles.d.ts} +0 -0
  317. /package/dist/components/{select-option-group/select-option-group.style.d.ts → breadcrumb/breadcrumb-item.styles.d.ts} +0 -0
  318. /package/dist/components/{select-option/select-option.styles.d.ts → breadcrumb/breadcrumb.styles.d.ts} +0 -0
  319. /package/dist/components/{stepper-item/stepper-item.styles.d.ts → datepicker/datepicker-calendar.styles.d.ts} +0 -0
  320. /package/dist/components/{tab-group/tab-group.styles.d.ts → datepicker/datepicker-popup.styles.d.ts} +0 -0
  321. /package/dist/components/{tab-panel/tab-panel.styles.d.ts → drawer/drawer.styles.d.ts} +0 -0
  322. /package/dist/components/{tab/tab.styles.d.ts → header/header.styles.d.ts} +0 -0
  323. /package/dist/components/{menu-item → menu}/menu-item.js +0 -0
  324. /package/dist/components/{toast-wrapper/toast-wrapper.styles.d.ts → menu/menu-item.styles.d.ts} +0 -0
  325. /package/dist/components/{menu-item → menu}/menu-item.styles.js +0 -0
  326. /package/dist/components/{select-option-group → select}/select-option-group.component.d.ts +0 -0
  327. /package/dist/components/{select-option-group → select}/select-option-group.js +0 -0
  328. /package/dist/components/{select-option-group → select}/select-option-group.style.js +0 -0
  329. /package/dist/components/{select-option → select}/select-option.d.ts +0 -0
  330. /package/dist/components/{select-option → select}/select-option.js +0 -0
  331. /package/dist/components/{select-option → select}/select-option.styles.js +0 -0
  332. /package/dist/components/{stepper-item → stepper}/stepper-item.component.d.ts +0 -0
  333. /package/dist/components/{stepper-item → stepper}/stepper-item.js +0 -0
  334. /package/dist/components/{stepper-item → stepper}/stepper-item.styles.js +0 -0
  335. /package/dist/components/{tab-panel → tabs}/tab-panel.component.d.ts +0 -0
  336. /package/dist/components/{tab-panel → tabs}/tab-panel.js +0 -0
  337. /package/dist/components/{tab-panel → tabs}/tab-panel.styles.js +0 -0
  338. /package/dist/components/{tab → tabs}/tab.js +0 -0
  339. /package/dist/components/{tab → tabs}/tab.styles.js +0 -0
  340. /package/dist/components/{toast-item → toast}/toast-item.component.d.ts +0 -0
  341. /package/dist/components/{toast-item → toast}/toast-item.styles.d.ts +0 -0
  342. /package/dist/components/{toast-wrapper → toast}/toast-wrapper.component.d.ts +0 -0
  343. /package/dist/components/{toast-wrapper → toast}/toast-wrapper.d.ts +0 -0
  344. /package/dist/components/{toast-wrapper → toast}/toast-wrapper.js +0 -0
  345. /package/dist/components/{toast-wrapper → toast}/toast-wrapper.styles.js +0 -0
@@ -2,9 +2,73 @@
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": [{ "name": "IconColor" }]
13
+ },
14
+ {
15
+ "name": "label",
16
+ "description": "If defined, adds an alternate description to use for assistive devices",
17
+ "values": []
18
+ },
19
+ {
20
+ "name": "name",
21
+ "description": "Name of the icon to display",
22
+ "values": [{ "name": "Icon" }]
23
+ },
24
+ {
25
+ "name": "size",
26
+ "description": "Size of the icon",
27
+ "values": [{ "name": "SkfIconSize" }]
28
+ }
29
+ ],
30
+ "references": []
31
+ },
32
+ {
33
+ "name": "skf-accordion-item",
34
+ "description": "The `<skf-accordion-item>` is used in conjunction with the `<skf-accordion>` component\n---\n\n\n### **Events:**\n - **skf-accordion-item-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",
35
+ "attributes": [
36
+ {
37
+ "name": "animated",
38
+ "description": "If true, will animate the expand/accordion-item state",
39
+ "values": []
40
+ },
41
+ {
42
+ "name": "expanded",
43
+ "description": "If true, will set the accordion-item to be expanded by default",
44
+ "values": []
45
+ },
46
+ {
47
+ "name": "heading",
48
+ "description": "Heading for the accordion-item",
49
+ "values": []
50
+ },
51
+ {
52
+ "name": "heading-as",
53
+ "description": "Defines which heading element will be rendered",
54
+ "values": [{ "name": "SkfAccordionItemHeadingType" }]
55
+ },
56
+ {
57
+ "name": "small",
58
+ "description": "If true, renders the small version",
59
+ "values": []
60
+ },
61
+ {
62
+ "name": "truncate",
63
+ "description": "If true, will truncate the heading in accordion-item state",
64
+ "values": []
65
+ }
66
+ ],
67
+ "references": []
68
+ },
5
69
  {
6
70
  "name": "skf-accordion",
7
- "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)",
71
+ "description": "The `<skf-accordion>` component consists of one or more `<skf-accordion-item>` item(s) 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)",
8
72
  "attributes": [
9
73
  {
10
74
  "name": "animated",
@@ -14,12 +78,7 @@
14
78
  {
15
79
  "name": "heading-as",
16
80
  "description": "Defines which heading element will be rendered",
17
- "values": [
18
- { "name": "h1" },
19
- { "name": "h2" },
20
- { "name": "h3" },
21
- { "name": "h4" }
22
- ]
81
+ "values": [{ "name": "SkfAccordionItemHeadingType" }]
23
82
  },
24
83
  {
25
84
  "name": "gap",
@@ -46,13 +105,8 @@
46
105
  },
47
106
  {
48
107
  "name": "skf-alert",
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",
108
+ "description": "The `<skf-alert>` is a type of notification that appears in-line\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/990ec5-alert) for design principles\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
109
  "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
110
  {
57
111
  "name": "button-label",
58
112
  "description": "Close button aria-label",
@@ -61,25 +115,75 @@
61
115
  {
62
116
  "name": "icon",
63
117
  "description": "If defined, displays leading icon",
64
- "values": [{ "name": "SkfIcon['name']" }]
118
+ "values": [{ "name": "Icon" }]
119
+ },
120
+ {
121
+ "name": "persistent",
122
+ "description": "If true, renders with an close button and sets aria-role to `status`",
123
+ "values": []
65
124
  },
66
125
  {
67
126
  "name": "severity",
68
127
  "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
- ]
128
+ "values": [{ "name": "Severity" }]
129
+ }
130
+ ],
131
+ "references": []
132
+ },
133
+ {
134
+ "name": "skf-breadcrumb-item",
135
+ "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",
136
+ "attributes": [
137
+ {
138
+ "name": "href",
139
+ "description": "If defined, loads url on click",
140
+ "values": []
141
+ }
142
+ ],
143
+ "references": []
144
+ },
145
+ {
146
+ "name": "skf-breadcrumb",
147
+ "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>`",
148
+ "attributes": [
149
+ {
150
+ "name": "label",
151
+ "description": "aria-label for the breadcrumb control",
152
+ "values": []
153
+ },
154
+ {
155
+ "name": "small",
156
+ "description": "If true, renders a smaller version",
157
+ "values": []
158
+ }
159
+ ],
160
+ "references": []
161
+ },
162
+ {
163
+ "name": "skf-loader",
164
+ "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
165
+ "attributes": [
166
+ {
167
+ "name": "aria-label",
168
+ "description": "Defines the aria-label",
169
+ "values": []
170
+ },
171
+ {
172
+ "name": "invert",
173
+ "description": "If true, inverts the color (to be used on colored backgrounds)",
174
+ "values": []
175
+ },
176
+ {
177
+ "name": "size",
178
+ "description": "Defines the size of the loader",
179
+ "values": [{ "name": "md" }, { "name": "sm" }]
76
180
  }
77
181
  ],
78
182
  "references": []
79
183
  },
80
184
  {
81
185
  "name": "skf-button",
82
- "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",
186
+ "description": "Component to be used in forms or for interactivity\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/02493d-buttons) for design principles\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
187
  "attributes": [
84
188
  {
85
189
  "name": "destructive",
@@ -94,168 +198,16 @@
94
198
  {
95
199
  "name": "icon",
96
200
  "description": "If provided, renders an icon before or after the text",
97
- "values": [
98
- { "name": "arrowDown" },
99
- { "name": "arrowDownUp" },
100
- { "name": "arrowLeft" },
101
- { "name": "arrowRight" },
102
- { "name": "arrowUp" },
103
- { "name": "article" },
104
- { "name": "artificialIntelligence" },
105
- { "name": "asset" },
106
- { "name": "attachment" },
107
- { "name": "bandCursor" },
108
- { "name": "bands" },
109
- { "name": "batteryEmpty" },
110
- { "name": "batteryFull" },
111
- { "name": "batteryLow" },
112
- { "name": "bearingFault" },
113
- { "name": "book" },
114
- { "name": "bulb" },
115
- { "name": "burger" },
116
- { "name": "cPM" },
117
- { "name": "calendar" },
118
- { "name": "calendarBooked" },
119
- { "name": "calendarEmpty" },
120
- { "name": "calendarNotBooked" },
121
- { "name": "calendarRecurring" },
122
- { "name": "caretDown" },
123
- { "name": "caretUp" },
124
- { "name": "caretUpDown" },
125
- { "name": "chat" },
126
- { "name": "check" },
127
- { "name": "checkCircle" },
128
- { "name": "checkSmall" },
129
- { "name": "chevronDown" },
130
- { "name": "chevronLeft" },
131
- { "name": "chevronRight" },
132
- { "name": "chevronUp" },
133
- { "name": "chevronUpDown" },
134
- { "name": "close" },
135
- { "name": "closeAllFaults" },
136
- { "name": "closeFault" },
137
- { "name": "closeSmall" },
138
- { "name": "columnGraph" },
139
- { "name": "comment" },
140
- { "name": "connection1" },
141
- { "name": "connection2" },
142
- { "name": "connection3" },
143
- { "name": "connection4" },
144
- { "name": "danger" },
145
- { "name": "defectFrequencies" },
146
- { "name": "defectFrequenciesAlternative" },
147
- { "name": "doubleChevronLeft" },
148
- { "name": "doubleChevronRight" },
149
- { "name": "download" },
150
- { "name": "draft" },
151
- { "name": "draftFilled" },
152
- { "name": "draftOutlined" },
153
- { "name": "dragNDrop" },
154
- { "name": "drop" },
155
- { "name": "duplicate" },
156
- { "name": "edit" },
157
- { "name": "emailFilled" },
158
- { "name": "emailOutlined" },
159
- { "name": "exclamation" },
160
- { "name": "eye" },
161
- { "name": "eyeHidden" },
162
- { "name": "eyeVisible" },
163
- { "name": "filter" },
164
- { "name": "forbidden" },
165
- { "name": "fullScreen" },
166
- { "name": "fullScreenExit" },
167
- { "name": "functionalLocation" },
168
- { "name": "harmonicCursor" },
169
- { "name": "heatmap" },
170
- { "name": "hierarchy" },
171
- { "name": "history" },
172
- { "name": "historyAlt" },
173
- { "name": "hourglassFramedFilled" },
174
- { "name": "hourglassFramedOutlined" },
175
- { "name": "hourglassOutlined" },
176
- { "name": "hz" },
177
- { "name": "iMX" },
178
- { "name": "image" },
179
- { "name": "infoCircleFilled" },
180
- { "name": "infoCircleOutlined" },
181
- { "name": "integration" },
182
- { "name": "kebab" },
183
- { "name": "link" },
184
- { "name": "listGroup" },
185
- { "name": "listItem" },
186
- { "name": "locationPin" },
187
- { "name": "lock" },
188
- { "name": "logOut" },
189
- { "name": "meatballs" },
190
- { "name": "microphone" },
191
- { "name": "minus" },
192
- { "name": "minusSmall" },
193
- { "name": "noData" },
194
- { "name": "o" },
195
- { "name": "openInNew" },
196
- { "name": "overlayBaseline" },
197
- { "name": "pDF" },
198
- { "name": "paper" },
199
- { "name": "pause" },
200
- { "name": "pieChart" },
201
- { "name": "pin" },
202
- { "name": "play" },
203
- { "name": "plus" },
204
- { "name": "powerOff" },
205
- { "name": "printer" },
206
- { "name": "proCollect" },
207
- { "name": "recAction" },
208
- { "name": "received" },
209
- { "name": "refresh" },
210
- { "name": "reorder" },
211
- { "name": "replace" },
212
- { "name": "reply" },
213
- { "name": "rewalkableRoute" },
214
- { "name": "routes" },
215
- { "name": "search" },
216
- { "name": "send" },
217
- { "name": "sensorA" },
218
- { "name": "sensorB" },
219
- { "name": "settings" },
220
- { "name": "sidebandCursor" },
221
- { "name": "singleCursor" },
222
- { "name": "spectrum" },
223
- { "name": "starFilled" },
224
- { "name": "starOutlined" },
225
- { "name": "statusCircle" },
226
- { "name": "stop" },
227
- { "name": "structuralVibration" },
228
- { "name": "sync" },
229
- { "name": "timewave" },
230
- { "name": "trash" },
231
- { "name": "trend" },
232
- { "name": "trendingUp" },
233
- { "name": "undo" },
234
- { "name": "unknownCircle" },
235
- { "name": "unknownDiamond" },
236
- { "name": "unlink" },
237
- { "name": "unlock" },
238
- { "name": "unscheduledAction" },
239
- { "name": "upload" },
240
- { "name": "user" },
241
- { "name": "viewFull" },
242
- { "name": "viewHorizontal" },
243
- { "name": "viewVertical" },
244
- { "name": "warning" },
245
- { "name": "warningCircle" },
246
- { "name": "warningDiamond" },
247
- { "name": "zoomIn" },
248
- { "name": "zoomOut" }
249
- ]
201
+ "values": [{ "name": "Icon" }]
250
202
  },
251
203
  {
252
- "name": "iconOnly",
253
- "description": "If true, removes border",
204
+ "name": "icon-only",
205
+ "description": "If true, button will take a square shape",
254
206
  "values": []
255
207
  },
256
208
  {
257
209
  "name": "icon-position",
258
- "description": "If provided, determines the positioning of the icon in relation to the text",
210
+ "description": "Determines the positioning of the icon in relation to the text",
259
211
  "values": [{ "name": "left" }, { "name": "right" }]
260
212
  },
261
213
  {
@@ -272,23 +224,23 @@
272
224
  {
273
225
  "name": "type",
274
226
  "description": "If provided, changes the button type",
275
- "values": [
276
- { "name": "button" },
277
- { "name": "submit" },
278
- { "name": "reset" }
279
- ]
227
+ "values": [{ "name": "SkfButtonType" }]
280
228
  },
281
229
  {
282
230
  "name": "variant",
283
231
  "description": "If provided, alters the appearance",
284
- "values": [{ "name": "primary" }, { "name": "secondary" }]
232
+ "values": [
233
+ { "name": "primary" },
234
+ { "name": "secondary" },
235
+ { "name": "tertiary" }
236
+ ]
285
237
  }
286
238
  ],
287
239
  "references": []
288
240
  },
289
241
  {
290
242
  "name": "skf-card",
291
- "description": "The `<skf-card>` can be used to group related subjects in a container\n---\n\n\n### **Slots:**\n - _default_ - The card's main content",
243
+ "description": "The `<skf-card>` can be used to group related subjects in a container\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/021eed-card) for design principles\n---\n\n\n### **Slots:**\n - _default_ - The card's main content",
292
244
  "attributes": [
293
245
  {
294
246
  "name": "no-border",
@@ -310,7 +262,7 @@
310
262
  },
311
263
  {
312
264
  "name": "skf-checkbox",
313
- "description": "The `<skf-checkbox>` component is used to create a checkbox 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.",
265
+ "description": "The `<skf-checkbox>` component is used to create a checkbox input\n---\n\n\n### **Events:**\n - **change** - When the value of the input changes\n\n### **Slots:**\n - _default_ - The Radios label. Alternatively, you can use the `label` attribute.",
314
266
  "attributes": [
315
267
  {
316
268
  "name": "disabled",
@@ -360,12 +312,7 @@
360
312
  {
361
313
  "name": "severity",
362
314
  "description": "If defined, styles checkbox using provided severity",
363
- "values": [
364
- { "name": "alert" },
365
- { "name": "success" },
366
- { "name": "info" },
367
- { "name": "warning" }
368
- ]
315
+ "values": [{ "name": "FormFieldSeverity" }]
369
316
  },
370
317
  {
371
318
  "name": "show-valid",
@@ -386,45 +333,149 @@
386
333
  "references": []
387
334
  },
388
335
  {
389
- "name": "skf-collapse",
390
- "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",
336
+ "name": "skf-datepicker-calendar",
337
+ "description": "\n---\n",
391
338
  "attributes": [
339
+ { "name": "eventid", "values": [] },
340
+ { "name": "firstDayOfWeek", "values": [] },
392
341
  {
393
- "name": "animated",
394
- "description": "If true, will animate the expand/collapse state",
342
+ "name": "invalid-dates",
343
+ "description": "A comma-separated list of dates (yyyy-mm-dd format) that are not selectable.",
395
344
  "values": []
396
345
  },
346
+ { "name": "locale", "values": [] },
347
+ { "name": "range", "values": [] },
397
348
  {
398
- "name": "expanded",
399
- "description": "If true, will set the collapse to be expanded by default",
349
+ "name": "selectable-from",
350
+ "description": "Earliest selectable date. (yyyy-mm-dd format)",
400
351
  "values": []
401
352
  },
402
353
  {
403
- "name": "heading",
404
- "description": "Heading for the collapse",
354
+ "name": "selectable-to",
355
+ "description": "Latest selectable date. (yyyy-mm-dd format)",
405
356
  "values": []
406
357
  },
358
+ { "name": "selected-date", "values": [{ "name": "Date" }] },
407
359
  {
408
- "name": "heading-as",
409
- "description": "Defines which heading element will be rendered",
410
- "values": [{ "name": "h2" }, { "name": "h3" }, { "name": "h4" }]
360
+ "name": "selectedDateRange",
361
+ "values": [
362
+ { "name": "{ start: Date" },
363
+ { "name": "null; end: Date" },
364
+ { "name": "null }" }
365
+ ]
366
+ }
367
+ ],
368
+ "references": []
369
+ },
370
+ {
371
+ "name": "skf-datepicker",
372
+ "description": "\n---\n\n\n### **Methods:**\n - **clear()** - Clears the input field",
373
+ "attributes": [
374
+ {
375
+ "name": "custom-invalid",
376
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
377
+ "values": []
411
378
  },
379
+ { "name": "id", "values": [] },
412
380
  {
413
- "name": "small",
414
- "description": "If true, renders the small version",
381
+ "name": "label",
382
+ "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
415
383
  "values": []
416
384
  },
417
385
  {
418
- "name": "truncate",
419
- "description": "If true, will truncate the heading in collapsed state",
386
+ "name": "hide-label",
387
+ "description": "If true, hides the label visually",
388
+ "values": []
389
+ },
390
+ {
391
+ "name": "hint",
392
+ "description": "If defined, displays informational text below the field",
393
+ "values": []
394
+ },
395
+ {
396
+ "name": "invalid-dates",
397
+ "description": "A comma-separated list of dates (yyyy-mm-dd format) that are not selectable.",
398
+ "values": []
399
+ },
400
+ {
401
+ "name": "name",
402
+ "description": "If defined, adds name to the input-element",
403
+ "values": []
404
+ },
405
+ { "name": "placeholder", "values": [] },
406
+ { "name": "range", "values": [] },
407
+ {
408
+ "name": "readonly",
409
+ "description": "If true, makes the element not mutable, meaning the user can not edit the control",
420
410
  "values": []
411
+ },
412
+ {
413
+ "name": "required-label",
414
+ "description": "If defined, renders an alternative A11y text for the asterisk",
415
+ "values": []
416
+ },
417
+ {
418
+ "name": "selectable-from",
419
+ "description": "Earliest selectable date. (yyyy-mm-dd format)",
420
+ "values": []
421
+ },
422
+ {
423
+ "name": "selectable-to",
424
+ "description": "Latest selectable date. (yyyy-mm-dd format)",
425
+ "values": []
426
+ },
427
+ {
428
+ "name": "severity",
429
+ "description": "If defined, displays provided severity state",
430
+ "values": [
431
+ { "name": "alert" },
432
+ { "name": "success" },
433
+ { "name": "info" },
434
+ { "name": "warning" }
435
+ ]
436
+ },
437
+ {
438
+ "name": "size",
439
+ "description": "Size of the input",
440
+ "values": [{ "name": "sm" }, { "name": "md" }]
441
+ },
442
+ {
443
+ "name": "validate-on",
444
+ "description": "Sets validation start",
445
+ "values": [
446
+ { "name": "input" },
447
+ { "name": "change" },
448
+ { "name": "submit" }
449
+ ]
450
+ },
451
+ {
452
+ "name": "value",
453
+ "description": "The current value of the input field",
454
+ "values": []
455
+ }
456
+ ],
457
+ "references": []
458
+ },
459
+ {
460
+ "name": "skf-heading",
461
+ "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",
462
+ "attributes": [
463
+ {
464
+ "name": "as",
465
+ "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
466
+ "values": [{ "name": "HeadingType" }]
467
+ },
468
+ {
469
+ "name": "styled-as",
470
+ "description": "If defined, changes the appearance of the heading",
471
+ "values": [{ "name": "HeadingType" }]
421
472
  }
422
473
  ],
423
474
  "references": []
424
475
  },
425
476
  {
426
477
  "name": "skf-dialog",
427
- "description": "The `<skf-dialog>` is a component that open up a dialog with the content provided\n---\n\n\n### **Events:**\n - **skf-dialog-open** - Fires when the dialog is opened (after transitioned in)\n- **skf-dialog-close** - Fires when the dialog is closed (before transitioned out)\n- **close** - Fires when the dialog is closed (after transitioned out)\n\n### **Slots:**\n - _default_ - The dialog component's content\n- **heading** - The dialog component's heading\n- **footer** - The dialog component's buttons goes here\n\n### **CSS Properties:**\n - **--skf-dialog-height** - A custom height for the Dialog. Pass valid CSS **block-size** values _(default: undefined)_\n- **--skf-dialog-width** - A custom width for the Dialog Pass valid CSS **inline-size** values _(default: undefined)_",
478
+ "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 closing (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)_",
428
479
  "attributes": [
429
480
  {
430
481
  "name": "close-button-aria-label",
@@ -451,7 +502,11 @@
451
502
  "description": "If defined, removes the inner padding",
452
503
  "values": []
453
504
  },
454
- { "name": "open", "values": [] }
505
+ {
506
+ "name": "open",
507
+ "description": "If true, indicates that the dialog is active and is available for interaction",
508
+ "values": []
509
+ }
455
510
  ],
456
511
  "references": []
457
512
  },
@@ -462,13 +517,7 @@
462
517
  {
463
518
  "name": "color",
464
519
  "description": "Defines the Divider color",
465
- "values": [
466
- { "name": "emphasised" },
467
- { "name": "primary" },
468
- { "name": "secondary" },
469
- { "name": "tertiary" },
470
- { "name": "inverse" }
471
- ]
520
+ "values": [{ "name": "SkfDividerColor" }]
472
521
  },
473
522
  {
474
523
  "name": "decorative",
@@ -484,229 +533,90 @@
484
533
  "references": []
485
534
  },
486
535
  {
487
- "name": "skf-heading",
488
- "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",
536
+ "name": "skf-drawer",
537
+ "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 closing (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",
489
538
  "attributes": [
490
539
  {
491
- "name": "as",
492
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
493
- "values": [
494
- { "name": "h1" },
495
- { "name": "h2" },
496
- { "name": "h3" },
497
- { "name": "h4" }
498
- ]
540
+ "name": "close-button-aria-label",
541
+ "description": "If defined, sets the aria-label for the close button",
542
+ "values": []
499
543
  },
500
544
  {
501
- "name": "styled-as",
502
- "description": "If provided, changes the appearance of the heading",
503
- "values": [
504
- { "name": "h1" },
505
- { "name": "h2" },
506
- { "name": "h3" },
507
- { "name": "h4" }
508
- ]
545
+ "name": "heading",
546
+ "description": "Heading for the Drawer",
547
+ "values": []
548
+ },
549
+ {
550
+ "name": "size",
551
+ "description": "Sets the max-width",
552
+ "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
553
+ },
554
+ {
555
+ "name": "open",
556
+ "description": "If true, Drawer is open",
557
+ "values": []
558
+ },
559
+ {
560
+ "name": "placement",
561
+ "description": "Placement of the Drawer",
562
+ "values": [{ "name": "left" }, { "name": "right" }]
509
563
  }
510
564
  ],
511
565
  "references": []
512
566
  },
513
567
  {
514
- "name": "skf-icon",
515
- "description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text\n---\n",
568
+ "name": "skf-logo",
569
+ "description": "The `<skf-logo>` component is used to display the SKF logo.\n---\n\n\n### **CSS Properties:**\n - **--mod-logo-height** - The height of the logo _(default: undefined)_",
516
570
  "attributes": [
571
+ {
572
+ "name": "title",
573
+ "description": "Defines the title of the logo",
574
+ "values": []
575
+ },
517
576
  {
518
577
  "name": "color",
519
- "description": "Sets the color of the icon",
520
- "values": [
521
- { "name": "primary" },
522
- { "name": "inverse" },
523
- { "name": "emphasised" },
524
- { "name": "secondary" },
525
- { "name": "success" },
526
- { "name": "info" },
527
- { "name": "warning" },
528
- { "name": "error" },
529
- { "name": "alert" }
530
- ]
578
+ "description": "Defines the color of the logo",
579
+ "values": [{ "name": "SkfLogoColor" }]
580
+ }
581
+ ],
582
+ "references": []
583
+ },
584
+ {
585
+ "name": "skf-nav",
586
+ "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",
587
+ "attributes": [{ "name": "vertical", "values": [] }],
588
+ "references": []
589
+ },
590
+ {
591
+ "name": "skf-header",
592
+ "description": "The `<skf-header>` component is to be used as the site-header in the app. The navigation will be collapsed to mobile-view if the menu items exceed the available width.\n---\n\n\n### **Slots:**\n - _default_ - Navigation items",
593
+ "attributes": [
594
+ {
595
+ "name": "compact",
596
+ "description": "If true, sets header to display in compact mode only (hanburger menu and drawer)",
597
+ "values": []
531
598
  },
532
599
  {
533
- "name": "label",
534
- "description": "If defined, adds an alternate description to use for assistive devices",
600
+ "name": "hamburger-aria-label",
601
+ "description": "If defined, sets the aria-label for the hamburger button",
535
602
  "values": []
536
603
  },
537
604
  {
538
- "name": "name",
539
- "description": "Name of the icon to display",
540
- "values": [
541
- { "name": "arrowDown" },
542
- { "name": "arrowDownUp" },
543
- { "name": "arrowLeft" },
544
- { "name": "arrowRight" },
545
- { "name": "arrowUp" },
546
- { "name": "article" },
547
- { "name": "artificialIntelligence" },
548
- { "name": "asset" },
549
- { "name": "attachment" },
550
- { "name": "bandCursor" },
551
- { "name": "bands" },
552
- { "name": "batteryEmpty" },
553
- { "name": "batteryFull" },
554
- { "name": "batteryLow" },
555
- { "name": "bearingFault" },
556
- { "name": "book" },
557
- { "name": "bulb" },
558
- { "name": "burger" },
559
- { "name": "cPM" },
560
- { "name": "calendar" },
561
- { "name": "calendarBooked" },
562
- { "name": "calendarEmpty" },
563
- { "name": "calendarNotBooked" },
564
- { "name": "calendarRecurring" },
565
- { "name": "caretDown" },
566
- { "name": "caretUp" },
567
- { "name": "caretUpDown" },
568
- { "name": "chat" },
569
- { "name": "check" },
570
- { "name": "checkCircle" },
571
- { "name": "checkSmall" },
572
- { "name": "chevronDown" },
573
- { "name": "chevronLeft" },
574
- { "name": "chevronRight" },
575
- { "name": "chevronUp" },
576
- { "name": "chevronUpDown" },
577
- { "name": "close" },
578
- { "name": "closeAllFaults" },
579
- { "name": "closeFault" },
580
- { "name": "closeSmall" },
581
- { "name": "columnGraph" },
582
- { "name": "comment" },
583
- { "name": "connection1" },
584
- { "name": "connection2" },
585
- { "name": "connection3" },
586
- { "name": "connection4" },
587
- { "name": "danger" },
588
- { "name": "defectFrequencies" },
589
- { "name": "defectFrequenciesAlternative" },
590
- { "name": "doubleChevronLeft" },
591
- { "name": "doubleChevronRight" },
592
- { "name": "download" },
593
- { "name": "draft" },
594
- { "name": "draftFilled" },
595
- { "name": "draftOutlined" },
596
- { "name": "dragNDrop" },
597
- { "name": "drop" },
598
- { "name": "duplicate" },
599
- { "name": "edit" },
600
- { "name": "emailFilled" },
601
- { "name": "emailOutlined" },
602
- { "name": "exclamation" },
603
- { "name": "eye" },
604
- { "name": "eyeHidden" },
605
- { "name": "eyeVisible" },
606
- { "name": "filter" },
607
- { "name": "forbidden" },
608
- { "name": "fullScreen" },
609
- { "name": "fullScreenExit" },
610
- { "name": "functionalLocation" },
611
- { "name": "harmonicCursor" },
612
- { "name": "heatmap" },
613
- { "name": "hierarchy" },
614
- { "name": "history" },
615
- { "name": "historyAlt" },
616
- { "name": "hourglassFramedFilled" },
617
- { "name": "hourglassFramedOutlined" },
618
- { "name": "hourglassOutlined" },
619
- { "name": "hz" },
620
- { "name": "iMX" },
621
- { "name": "image" },
622
- { "name": "infoCircleFilled" },
623
- { "name": "infoCircleOutlined" },
624
- { "name": "integration" },
625
- { "name": "kebab" },
626
- { "name": "link" },
627
- { "name": "listGroup" },
628
- { "name": "listItem" },
629
- { "name": "locationPin" },
630
- { "name": "lock" },
631
- { "name": "logOut" },
632
- { "name": "meatballs" },
633
- { "name": "microphone" },
634
- { "name": "minus" },
635
- { "name": "minusSmall" },
636
- { "name": "noData" },
637
- { "name": "o" },
638
- { "name": "openInNew" },
639
- { "name": "overlayBaseline" },
640
- { "name": "pDF" },
641
- { "name": "paper" },
642
- { "name": "pause" },
643
- { "name": "pieChart" },
644
- { "name": "pin" },
645
- { "name": "play" },
646
- { "name": "plus" },
647
- { "name": "powerOff" },
648
- { "name": "printer" },
649
- { "name": "proCollect" },
650
- { "name": "recAction" },
651
- { "name": "received" },
652
- { "name": "refresh" },
653
- { "name": "reorder" },
654
- { "name": "replace" },
655
- { "name": "reply" },
656
- { "name": "rewalkableRoute" },
657
- { "name": "routes" },
658
- { "name": "search" },
659
- { "name": "send" },
660
- { "name": "sensorA" },
661
- { "name": "sensorB" },
662
- { "name": "settings" },
663
- { "name": "sidebandCursor" },
664
- { "name": "singleCursor" },
665
- { "name": "spectrum" },
666
- { "name": "starFilled" },
667
- { "name": "starOutlined" },
668
- { "name": "statusCircle" },
669
- { "name": "stop" },
670
- { "name": "structuralVibration" },
671
- { "name": "sync" },
672
- { "name": "timewave" },
673
- { "name": "trash" },
674
- { "name": "trend" },
675
- { "name": "trendingUp" },
676
- { "name": "undo" },
677
- { "name": "unknownCircle" },
678
- { "name": "unknownDiamond" },
679
- { "name": "unlink" },
680
- { "name": "unlock" },
681
- { "name": "unscheduledAction" },
682
- { "name": "upload" },
683
- { "name": "user" },
684
- { "name": "viewFull" },
685
- { "name": "viewHorizontal" },
686
- { "name": "viewVertical" },
687
- { "name": "warning" },
688
- { "name": "warningCircle" },
689
- { "name": "warningDiamond" },
690
- { "name": "zoomIn" },
691
- { "name": "zoomOut" }
692
- ]
605
+ "name": "site-name",
606
+ "description": "If defined, sets the app or site's name",
607
+ "values": []
693
608
  },
694
609
  {
695
- "name": "size",
696
- "description": "Size of the icon",
697
- "values": [
698
- { "name": "xs" },
699
- { "name": "sm" },
700
- { "name": "md" },
701
- { "name": "lg" }
702
- ]
610
+ "name": "site-url",
611
+ "description": "If defined, sets the site's base-url for the \"logo-link\"",
612
+ "values": []
703
613
  }
704
614
  ],
705
615
  "references": []
706
616
  },
707
617
  {
708
618
  "name": "skf-input",
709
- "description": "The skf-text-field is used to create a text input field. It can be used inside a form element or standalone.\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 Inputs label. Alternatively, you can use the `label` attribute.",
619
+ "description": "The skf-text-field is used to create a text input field. It can be used inside a form element or standalone\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/9481fa-input-field) for design principles\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 Inputs label. Alternatively, you can use the `label` attribute.",
710
620
  "attributes": [
711
621
  {
712
622
  "name": "disabled",
@@ -718,7 +628,11 @@
718
628
  "description": "If true, value is required or must be checked for the form to be submittable",
719
629
  "values": []
720
630
  },
721
- { "name": "autocomplete", "description": "-m }", "values": [] },
631
+ {
632
+ "name": "autocomplete",
633
+ "description": "Indicates whether the value of the control can be automatically completed by the browser. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/autocomplete) for details.",
634
+ "values": [{ "name": "HTMLInputElement['autocomplete']" }]
635
+ },
722
636
  {
723
637
  "name": "button-aria-label-clear",
724
638
  "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
@@ -756,17 +670,8 @@
756
670
  },
757
671
  {
758
672
  "name": "inputmode",
759
- "description": "Tells what keyboard to use if applicable",
760
- "values": [
761
- { "name": "none" },
762
- { "name": "text" },
763
- { "name": "tel" },
764
- { "name": "url" },
765
- { "name": "email" },
766
- { "name": "numeric" },
767
- { "name": "decimal" },
768
- { "name": "search" }
769
- ]
673
+ "description": "Provides a hint about the type of data that might be entered by the user while editing the element or its contents. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inputMode) for details.",
674
+ "values": [{ "name": "HTMLInputElement['inputMode']" }]
770
675
  },
771
676
  {
772
677
  "name": "label",
@@ -826,12 +731,7 @@
826
731
  {
827
732
  "name": "severity",
828
733
  "description": "If defined, displays provided severity state",
829
- "values": [
830
- { "name": "alert" },
831
- { "name": "success" },
832
- { "name": "info" },
833
- { "name": "warning" }
834
- ]
734
+ "values": [{ "name": "FormFieldSeverity" }]
835
735
  },
836
736
  {
837
737
  "name": "show-valid",
@@ -850,28 +750,15 @@
850
750
  },
851
751
  {
852
752
  "name": "type",
853
- "description": "Type of input control",
753
+ "description": "Type of input",
854
754
  "values": [
855
- { "name": "button" },
856
- { "name": "color" },
857
- { "name": "date" },
858
- { "name": "datetime-local" },
859
755
  { "name": "email" },
860
- { "name": "file" },
861
- { "name": "hidden" },
862
- { "name": "image" },
863
- { "name": "month" },
864
756
  { "name": "number" },
865
757
  { "name": "password" },
866
- { "name": "range" },
867
- { "name": "reset" },
868
758
  { "name": "search" },
869
- { "name": "submit" },
870
759
  { "name": "tel" },
871
760
  { "name": "text" },
872
- { "name": "time" },
873
- { "name": "url" },
874
- { "name": "week" }
761
+ { "name": "url" }
875
762
  ]
876
763
  },
877
764
  {
@@ -923,159 +810,7 @@
923
810
  {
924
811
  "name": "icon",
925
812
  "description": "If defined, renders an icon before or after the text",
926
- "values": [
927
- { "name": "arrowDown" },
928
- { "name": "arrowDownUp" },
929
- { "name": "arrowLeft" },
930
- { "name": "arrowRight" },
931
- { "name": "arrowUp" },
932
- { "name": "article" },
933
- { "name": "artificialIntelligence" },
934
- { "name": "asset" },
935
- { "name": "attachment" },
936
- { "name": "bandCursor" },
937
- { "name": "bands" },
938
- { "name": "batteryEmpty" },
939
- { "name": "batteryFull" },
940
- { "name": "batteryLow" },
941
- { "name": "bearingFault" },
942
- { "name": "book" },
943
- { "name": "bulb" },
944
- { "name": "burger" },
945
- { "name": "cPM" },
946
- { "name": "calendar" },
947
- { "name": "calendarBooked" },
948
- { "name": "calendarEmpty" },
949
- { "name": "calendarNotBooked" },
950
- { "name": "calendarRecurring" },
951
- { "name": "caretDown" },
952
- { "name": "caretUp" },
953
- { "name": "caretUpDown" },
954
- { "name": "chat" },
955
- { "name": "check" },
956
- { "name": "checkCircle" },
957
- { "name": "checkSmall" },
958
- { "name": "chevronDown" },
959
- { "name": "chevronLeft" },
960
- { "name": "chevronRight" },
961
- { "name": "chevronUp" },
962
- { "name": "chevronUpDown" },
963
- { "name": "close" },
964
- { "name": "closeAllFaults" },
965
- { "name": "closeFault" },
966
- { "name": "closeSmall" },
967
- { "name": "columnGraph" },
968
- { "name": "comment" },
969
- { "name": "connection1" },
970
- { "name": "connection2" },
971
- { "name": "connection3" },
972
- { "name": "connection4" },
973
- { "name": "danger" },
974
- { "name": "defectFrequencies" },
975
- { "name": "defectFrequenciesAlternative" },
976
- { "name": "doubleChevronLeft" },
977
- { "name": "doubleChevronRight" },
978
- { "name": "download" },
979
- { "name": "draft" },
980
- { "name": "draftFilled" },
981
- { "name": "draftOutlined" },
982
- { "name": "dragNDrop" },
983
- { "name": "drop" },
984
- { "name": "duplicate" },
985
- { "name": "edit" },
986
- { "name": "emailFilled" },
987
- { "name": "emailOutlined" },
988
- { "name": "exclamation" },
989
- { "name": "eye" },
990
- { "name": "eyeHidden" },
991
- { "name": "eyeVisible" },
992
- { "name": "filter" },
993
- { "name": "forbidden" },
994
- { "name": "fullScreen" },
995
- { "name": "fullScreenExit" },
996
- { "name": "functionalLocation" },
997
- { "name": "harmonicCursor" },
998
- { "name": "heatmap" },
999
- { "name": "hierarchy" },
1000
- { "name": "history" },
1001
- { "name": "historyAlt" },
1002
- { "name": "hourglassFramedFilled" },
1003
- { "name": "hourglassFramedOutlined" },
1004
- { "name": "hourglassOutlined" },
1005
- { "name": "hz" },
1006
- { "name": "iMX" },
1007
- { "name": "image" },
1008
- { "name": "infoCircleFilled" },
1009
- { "name": "infoCircleOutlined" },
1010
- { "name": "integration" },
1011
- { "name": "kebab" },
1012
- { "name": "link" },
1013
- { "name": "listGroup" },
1014
- { "name": "listItem" },
1015
- { "name": "locationPin" },
1016
- { "name": "lock" },
1017
- { "name": "logOut" },
1018
- { "name": "meatballs" },
1019
- { "name": "microphone" },
1020
- { "name": "minus" },
1021
- { "name": "minusSmall" },
1022
- { "name": "noData" },
1023
- { "name": "o" },
1024
- { "name": "openInNew" },
1025
- { "name": "overlayBaseline" },
1026
- { "name": "pDF" },
1027
- { "name": "paper" },
1028
- { "name": "pause" },
1029
- { "name": "pieChart" },
1030
- { "name": "pin" },
1031
- { "name": "play" },
1032
- { "name": "plus" },
1033
- { "name": "powerOff" },
1034
- { "name": "printer" },
1035
- { "name": "proCollect" },
1036
- { "name": "recAction" },
1037
- { "name": "received" },
1038
- { "name": "refresh" },
1039
- { "name": "reorder" },
1040
- { "name": "replace" },
1041
- { "name": "reply" },
1042
- { "name": "rewalkableRoute" },
1043
- { "name": "routes" },
1044
- { "name": "search" },
1045
- { "name": "send" },
1046
- { "name": "sensorA" },
1047
- { "name": "sensorB" },
1048
- { "name": "settings" },
1049
- { "name": "sidebandCursor" },
1050
- { "name": "singleCursor" },
1051
- { "name": "spectrum" },
1052
- { "name": "starFilled" },
1053
- { "name": "starOutlined" },
1054
- { "name": "statusCircle" },
1055
- { "name": "stop" },
1056
- { "name": "structuralVibration" },
1057
- { "name": "sync" },
1058
- { "name": "timewave" },
1059
- { "name": "trash" },
1060
- { "name": "trend" },
1061
- { "name": "trendingUp" },
1062
- { "name": "undo" },
1063
- { "name": "unknownCircle" },
1064
- { "name": "unknownDiamond" },
1065
- { "name": "unlink" },
1066
- { "name": "unlock" },
1067
- { "name": "unscheduledAction" },
1068
- { "name": "upload" },
1069
- { "name": "user" },
1070
- { "name": "viewFull" },
1071
- { "name": "viewHorizontal" },
1072
- { "name": "viewVertical" },
1073
- { "name": "warning" },
1074
- { "name": "warningCircle" },
1075
- { "name": "warningDiamond" },
1076
- { "name": "zoomIn" },
1077
- { "name": "zoomOut" }
1078
- ]
813
+ "values": [{ "name": "Icon" }]
1079
814
  },
1080
815
  {
1081
816
  "name": "icon-placement",
@@ -1110,67 +845,14 @@
1110
845
  {
1111
846
  "name": "type",
1112
847
  "description": "Defines the type of button",
1113
- "values": [
1114
- { "name": "button" },
1115
- { "name": "submit" },
1116
- { "name": "reset" }
1117
- ]
1118
- }
1119
- ],
1120
- "references": []
1121
- },
1122
- {
1123
- "name": "skf-loader",
1124
- "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
1125
- "attributes": [
1126
- {
1127
- "name": "aria-label",
1128
- "description": "Defines the aria-label",
1129
- "values": []
1130
- },
1131
- {
1132
- "name": "invert",
1133
- "description": "If true, inverts the color (to be used on colored backgrounds)",
1134
- "values": []
1135
- },
1136
- {
1137
- "name": "size",
1138
- "description": "Defines the size of the loader",
1139
- "values": [{ "name": "md" }, { "name": "sm" }]
1140
- }
1141
- ],
1142
- "references": []
1143
- },
1144
- {
1145
- "name": "skf-logo",
1146
- "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)_",
1147
- "attributes": [
1148
- {
1149
- "name": "title",
1150
- "description": "Defines the title of the logo",
1151
- "values": []
1152
- },
1153
- {
1154
- "name": "color",
1155
- "description": "Defines the color of the logo",
1156
- "values": [
1157
- { "name": "primary" },
1158
- { "name": "secondary" },
1159
- { "name": "inverse" }
1160
- ]
848
+ "values": [{ "name": "SkfLinkType" }]
1161
849
  }
1162
850
  ],
1163
851
  "references": []
1164
852
  },
1165
- {
1166
- "name": "skf-menu",
1167
- "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",
1168
- "attributes": [],
1169
- "references": []
1170
- },
1171
853
  {
1172
854
  "name": "skf-menu-item",
1173
- "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",
855
+ "description": "The `<skf-menu-item>` is used in conjunction with the `<skf-menu>` component\n---\n\n\n### **Slots:**\n - _default_ - The component's main content",
1174
856
  "attributes": [
1175
857
  {
1176
858
  "name": "as",
@@ -1200,159 +882,7 @@
1200
882
  {
1201
883
  "name": "icon",
1202
884
  "description": "If defined, renders an icon before or after the text",
1203
- "values": [
1204
- { "name": "arrowDown" },
1205
- { "name": "arrowDownUp" },
1206
- { "name": "arrowLeft" },
1207
- { "name": "arrowRight" },
1208
- { "name": "arrowUp" },
1209
- { "name": "article" },
1210
- { "name": "artificialIntelligence" },
1211
- { "name": "asset" },
1212
- { "name": "attachment" },
1213
- { "name": "bandCursor" },
1214
- { "name": "bands" },
1215
- { "name": "batteryEmpty" },
1216
- { "name": "batteryFull" },
1217
- { "name": "batteryLow" },
1218
- { "name": "bearingFault" },
1219
- { "name": "book" },
1220
- { "name": "bulb" },
1221
- { "name": "burger" },
1222
- { "name": "cPM" },
1223
- { "name": "calendar" },
1224
- { "name": "calendarBooked" },
1225
- { "name": "calendarEmpty" },
1226
- { "name": "calendarNotBooked" },
1227
- { "name": "calendarRecurring" },
1228
- { "name": "caretDown" },
1229
- { "name": "caretUp" },
1230
- { "name": "caretUpDown" },
1231
- { "name": "chat" },
1232
- { "name": "check" },
1233
- { "name": "checkCircle" },
1234
- { "name": "checkSmall" },
1235
- { "name": "chevronDown" },
1236
- { "name": "chevronLeft" },
1237
- { "name": "chevronRight" },
1238
- { "name": "chevronUp" },
1239
- { "name": "chevronUpDown" },
1240
- { "name": "close" },
1241
- { "name": "closeAllFaults" },
1242
- { "name": "closeFault" },
1243
- { "name": "closeSmall" },
1244
- { "name": "columnGraph" },
1245
- { "name": "comment" },
1246
- { "name": "connection1" },
1247
- { "name": "connection2" },
1248
- { "name": "connection3" },
1249
- { "name": "connection4" },
1250
- { "name": "danger" },
1251
- { "name": "defectFrequencies" },
1252
- { "name": "defectFrequenciesAlternative" },
1253
- { "name": "doubleChevronLeft" },
1254
- { "name": "doubleChevronRight" },
1255
- { "name": "download" },
1256
- { "name": "draft" },
1257
- { "name": "draftFilled" },
1258
- { "name": "draftOutlined" },
1259
- { "name": "dragNDrop" },
1260
- { "name": "drop" },
1261
- { "name": "duplicate" },
1262
- { "name": "edit" },
1263
- { "name": "emailFilled" },
1264
- { "name": "emailOutlined" },
1265
- { "name": "exclamation" },
1266
- { "name": "eye" },
1267
- { "name": "eyeHidden" },
1268
- { "name": "eyeVisible" },
1269
- { "name": "filter" },
1270
- { "name": "forbidden" },
1271
- { "name": "fullScreen" },
1272
- { "name": "fullScreenExit" },
1273
- { "name": "functionalLocation" },
1274
- { "name": "harmonicCursor" },
1275
- { "name": "heatmap" },
1276
- { "name": "hierarchy" },
1277
- { "name": "history" },
1278
- { "name": "historyAlt" },
1279
- { "name": "hourglassFramedFilled" },
1280
- { "name": "hourglassFramedOutlined" },
1281
- { "name": "hourglassOutlined" },
1282
- { "name": "hz" },
1283
- { "name": "iMX" },
1284
- { "name": "image" },
1285
- { "name": "infoCircleFilled" },
1286
- { "name": "infoCircleOutlined" },
1287
- { "name": "integration" },
1288
- { "name": "kebab" },
1289
- { "name": "link" },
1290
- { "name": "listGroup" },
1291
- { "name": "listItem" },
1292
- { "name": "locationPin" },
1293
- { "name": "lock" },
1294
- { "name": "logOut" },
1295
- { "name": "meatballs" },
1296
- { "name": "microphone" },
1297
- { "name": "minus" },
1298
- { "name": "minusSmall" },
1299
- { "name": "noData" },
1300
- { "name": "o" },
1301
- { "name": "openInNew" },
1302
- { "name": "overlayBaseline" },
1303
- { "name": "pDF" },
1304
- { "name": "paper" },
1305
- { "name": "pause" },
1306
- { "name": "pieChart" },
1307
- { "name": "pin" },
1308
- { "name": "play" },
1309
- { "name": "plus" },
1310
- { "name": "powerOff" },
1311
- { "name": "printer" },
1312
- { "name": "proCollect" },
1313
- { "name": "recAction" },
1314
- { "name": "received" },
1315
- { "name": "refresh" },
1316
- { "name": "reorder" },
1317
- { "name": "replace" },
1318
- { "name": "reply" },
1319
- { "name": "rewalkableRoute" },
1320
- { "name": "routes" },
1321
- { "name": "search" },
1322
- { "name": "send" },
1323
- { "name": "sensorA" },
1324
- { "name": "sensorB" },
1325
- { "name": "settings" },
1326
- { "name": "sidebandCursor" },
1327
- { "name": "singleCursor" },
1328
- { "name": "spectrum" },
1329
- { "name": "starFilled" },
1330
- { "name": "starOutlined" },
1331
- { "name": "statusCircle" },
1332
- { "name": "stop" },
1333
- { "name": "structuralVibration" },
1334
- { "name": "sync" },
1335
- { "name": "timewave" },
1336
- { "name": "trash" },
1337
- { "name": "trend" },
1338
- { "name": "trendingUp" },
1339
- { "name": "undo" },
1340
- { "name": "unknownCircle" },
1341
- { "name": "unknownDiamond" },
1342
- { "name": "unlink" },
1343
- { "name": "unlock" },
1344
- { "name": "unscheduledAction" },
1345
- { "name": "upload" },
1346
- { "name": "user" },
1347
- { "name": "viewFull" },
1348
- { "name": "viewHorizontal" },
1349
- { "name": "viewVertical" },
1350
- { "name": "warning" },
1351
- { "name": "warningCircle" },
1352
- { "name": "warningDiamond" },
1353
- { "name": "zoomIn" },
1354
- { "name": "zoomOut" }
1355
- ]
885
+ "values": [{ "name": "Icon" }]
1356
886
  },
1357
887
  {
1358
888
  "name": "icon-placement",
@@ -1387,19 +917,77 @@
1387
917
  {
1388
918
  "name": "type",
1389
919
  "description": "Defines the type of button",
920
+ "values": [{ "name": "SkfLinkType" }]
921
+ }
922
+ ],
923
+ "references": []
924
+ },
925
+ {
926
+ "name": "skf-menu",
927
+ "description": "The `<skf-menu>` is a component that displays a list of actions or options\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/983e5d-popover) for design principles\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",
928
+ "attributes": [
929
+ {
930
+ "name": "placement",
931
+ "description": "The placement of the menu",
1390
932
  "values": [
1391
- { "name": "button" },
1392
- { "name": "submit" },
1393
- { "name": "reset" }
933
+ { "name": "top" },
934
+ { "name": "right" },
935
+ { "name": "bottom" },
936
+ { "name": "left" },
937
+ { "name": "top-start" },
938
+ { "name": "top-end" },
939
+ { "name": "right-start" },
940
+ { "name": "right-end" },
941
+ { "name": "bottom-start" },
942
+ { "name": "bottom-end" },
943
+ { "name": "left-start" },
944
+ { "name": "left-end" }
1394
945
  ]
946
+ },
947
+ {
948
+ "name": "anchor",
949
+ "description": "The id of the element the menu will be anchored to",
950
+ "values": []
1395
951
  }
1396
952
  ],
1397
953
  "references": []
1398
954
  },
955
+ {
956
+ "name": "skf-nav-item",
957
+ "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",
958
+ "attributes": [
959
+ { "name": "href", "values": [] },
960
+ { "name": "icon", "values": [{ "name": "Icon" }] }
961
+ ],
962
+ "references": []
963
+ },
1399
964
  {
1400
965
  "name": "skf-popover",
1401
- "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",
966
+ "description": "The `<skf-popover>` is a general purpose component that displays the slot content in a popover.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/983e5d-popover) for design principles\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",
1402
967
  "attributes": [
968
+ {
969
+ "name": "placement",
970
+ "description": "The placement of the popover",
971
+ "values": [
972
+ { "name": "top" },
973
+ { "name": "right" },
974
+ { "name": "bottom" },
975
+ { "name": "left" },
976
+ { "name": "top-start" },
977
+ { "name": "top-end" },
978
+ { "name": "right-start" },
979
+ { "name": "right-end" },
980
+ { "name": "bottom-start" },
981
+ { "name": "bottom-end" },
982
+ { "name": "left-start" },
983
+ { "name": "left-end" }
984
+ ]
985
+ },
986
+ {
987
+ "name": "anchor",
988
+ "description": "The id of the element the menu will be anchored to",
989
+ "values": []
990
+ },
1403
991
  {
1404
992
  "name": "offset",
1405
993
  "description": "If defined, sets a custom offset for the popover",
@@ -1437,7 +1025,7 @@
1437
1025
  },
1438
1026
  {
1439
1027
  "name": "skf-radio",
1440
- "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.",
1028
+ "description": "The `<skf-radio>` component is used to create a radio input\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/78d5dd-radio-button) for design principles\n---\n\n\n### **Events:**\n - **change** - When the value of the input changes\n\n### **Slots:**\n - _default_ - The radios label. Alternatively, you can use the `label` attribute.",
1441
1029
  "attributes": [
1442
1030
  {
1443
1031
  "name": "disabled",
@@ -1487,12 +1075,7 @@
1487
1075
  {
1488
1076
  "name": "severity",
1489
1077
  "description": "If defined, displays provided severity state",
1490
- "values": [
1491
- { "name": "success" },
1492
- { "name": "info" },
1493
- { "name": "warning" },
1494
- { "name": "alert" }
1495
- ]
1078
+ "values": [{ "name": "FormFieldSeverity" }]
1496
1079
  },
1497
1080
  {
1498
1081
  "name": "show-valid",
@@ -1507,13 +1090,81 @@
1507
1090
  ],
1508
1091
  "references": []
1509
1092
  },
1093
+ {
1094
+ "name": "skf-segmented-button-item",
1095
+ "description": "The `<skf-segmented-button-item>` is used in conjunction with the `<skf-segmented-button>` component\n---\n\n\n### **Events:**\n - **skf-segmented-button-item-select** - Fired when selected\n\n### **Slots:**\n - _default_ - Label for the button",
1096
+ "attributes": [
1097
+ {
1098
+ "name": "disabled",
1099
+ "description": "If true, items is marked as disabled",
1100
+ "values": []
1101
+ },
1102
+ {
1103
+ "name": "selected",
1104
+ "description": "If true, items is marked as selected",
1105
+ "values": []
1106
+ },
1107
+ { "name": "value", "description": "Sets the item value", "values": [] }
1108
+ ],
1109
+ "references": []
1110
+ },
1111
+ {
1112
+ "name": "skf-segmented-button",
1113
+ "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>`",
1114
+ "attributes": [
1115
+ {
1116
+ "name": "multiple",
1117
+ "description": "If true, allowes multiple items to be selected",
1118
+ "values": []
1119
+ }
1120
+ ],
1121
+ "references": []
1122
+ },
1123
+ {
1124
+ "name": "skf-select-option-group",
1125
+ "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",
1126
+ "attributes": [{ "name": "label", "values": [] }],
1127
+ "references": []
1128
+ },
1129
+ {
1130
+ "name": "skf-tag",
1131
+ "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",
1132
+ "attributes": [
1133
+ {
1134
+ "name": "size",
1135
+ "description": "Specifies Tag size",
1136
+ "values": [{ "name": "Size" }]
1137
+ },
1138
+ {
1139
+ "name": "icon",
1140
+ "description": "If defined, displays leading/provided icon",
1141
+ "values": [{ "name": "Icon" }]
1142
+ },
1143
+ {
1144
+ "name": "color",
1145
+ "description": "If defined, gives the supplied appearance",
1146
+ "values": [{ "name": "Severity" }]
1147
+ },
1148
+ {
1149
+ "name": "removable",
1150
+ "description": "If true, adds trailing button to remove tag",
1151
+ "values": []
1152
+ }
1153
+ ],
1154
+ "references": []
1155
+ },
1510
1156
  {
1511
1157
  "name": "skf-select",
1512
- "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",
1158
+ "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\nSee [zeroheight](https://zeroheight.com/853e936c9/p/91c9f0-select-and-combobox) for design principles\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",
1513
1159
  "attributes": [
1514
1160
  {
1515
1161
  "name": "disabled",
1516
- "description": "If true, the select is disabled\t`default: false`",
1162
+ "description": "If true, the select is disabled",
1163
+ "values": []
1164
+ },
1165
+ {
1166
+ "name": "required",
1167
+ "description": "If true, the select is required",
1517
1168
  "values": []
1518
1169
  },
1519
1170
  {
@@ -1574,7 +1225,7 @@
1574
1225
  {
1575
1226
  "name": "severity",
1576
1227
  "description": "If defined, displays provided severity state",
1577
- "values": [{ "name": "FormFieldBaseProps['severity']" }]
1228
+ "values": [{ "name": "FormFieldSeverity" }]
1578
1229
  },
1579
1230
  {
1580
1231
  "name": "show-valid",
@@ -1591,7 +1242,7 @@
1591
1242
  },
1592
1243
  {
1593
1244
  "name": "skf-select-option",
1594
- "description": "The `<skf-select-option>` is a component is used nested in a skf-select or skf-select-option-group.\n---\n\n\n### **Events:**\n - **skf-select-option:select** - {detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.\n\n### **Slots:**\n - _default_ - The option's text content\n- **icon** - The option's slot for icon or custom meta information (svg).",
1245
+ "description": "The `<skf-select-option>` is a component is used nested in a skf-select or skf-select-option-group.\n---\n\n\n### **Events:**\n - **skf-select-option-select** - {detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.\n\n### **Slots:**\n - _default_ - The option's text content\n- **icon** - The option's slot for icon or custom meta information (svg).",
1595
1246
  "attributes": [
1596
1247
  {
1597
1248
  "name": "disabled",
@@ -1601,12 +1252,12 @@
1601
1252
  {
1602
1253
  "name": "icon",
1603
1254
  "description": "If defined, set an icon",
1604
- "values": [{ "name": "SkfIcon['name']" }]
1255
+ "values": [{ "name": "Icon" }]
1605
1256
  },
1606
1257
  {
1607
1258
  "name": "icon-color",
1608
1259
  "description": "If defined, sets provided color on the icon",
1609
- "values": [{ "name": "SeverityFgColor" }]
1260
+ "values": [{ "name": "IconColor" }]
1610
1261
  },
1611
1262
  {
1612
1263
  "name": "selected",
@@ -1626,29 +1277,6 @@
1626
1277
  ],
1627
1278
  "references": []
1628
1279
  },
1629
- {
1630
- "name": "skf-select-option-group",
1631
- "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",
1632
- "attributes": [{ "name": "label", "values": [] }],
1633
- "references": []
1634
- },
1635
- {
1636
- "name": "skf-stepper",
1637
- "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>`",
1638
- "attributes": [
1639
- {
1640
- "name": "activeIndex",
1641
- "description": "Sets the active item",
1642
- "values": []
1643
- },
1644
- {
1645
- "name": "linear",
1646
- "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
1647
- "values": []
1648
- }
1649
- ],
1650
- "references": []
1651
- },
1652
1280
  {
1653
1281
  "name": "skf-stepper-item",
1654
1282
  "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",
@@ -1669,9 +1297,26 @@
1669
1297
  ],
1670
1298
  "references": []
1671
1299
  },
1300
+ {
1301
+ "name": "skf-stepper",
1302
+ "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>`",
1303
+ "attributes": [
1304
+ {
1305
+ "name": "active-index",
1306
+ "description": "Sets the active item",
1307
+ "values": []
1308
+ },
1309
+ {
1310
+ "name": "linear",
1311
+ "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
1312
+ "values": []
1313
+ }
1314
+ ],
1315
+ "references": []
1316
+ },
1672
1317
  {
1673
1318
  "name": "skf-switch",
1674
- "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.",
1319
+ "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.",
1675
1320
  "attributes": [
1676
1321
  {
1677
1322
  "name": "disabled",
@@ -1727,20 +1372,16 @@
1727
1372
  "references": []
1728
1373
  },
1729
1374
  {
1730
- "name": "skf-tab",
1731
- "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",
1375
+ "name": "skf-tab-panel",
1376
+ "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",
1732
1377
  "attributes": [
1733
- {
1734
- "name": "panel",
1735
- "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
1736
- "values": []
1737
- }
1378
+ { "name": "name", "description": "The tab panel's name.", "values": [] }
1738
1379
  ],
1739
1380
  "references": []
1740
1381
  },
1741
1382
  {
1742
- "name": "skf-tab-group",
1743
- "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",
1383
+ "name": "skf-tabs",
1384
+ "description": "The `<skf-tabs>` 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",
1744
1385
  "attributes": [
1745
1386
  {
1746
1387
  "name": "default-selected",
@@ -1771,193 +1412,12 @@
1771
1412
  "references": []
1772
1413
  },
1773
1414
  {
1774
- "name": "skf-tab-panel",
1775
- "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",
1776
- "attributes": [
1777
- { "name": "name", "description": "The tab panel's name.", "values": [] }
1778
- ],
1779
- "references": []
1780
- },
1781
- {
1782
- "name": "skf-tag",
1783
- "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",
1415
+ "name": "skf-tab",
1416
+ "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",
1784
1417
  "attributes": [
1785
1418
  {
1786
- "name": "size",
1787
- "description": "Specifies Tag size",
1788
- "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
1789
- },
1790
- {
1791
- "name": "icon",
1792
- "description": "If defined, displays leading/provided icon",
1793
- "values": [
1794
- { "name": "arrowDown" },
1795
- { "name": "arrowDownUp" },
1796
- { "name": "arrowLeft" },
1797
- { "name": "arrowRight" },
1798
- { "name": "arrowUp" },
1799
- { "name": "article" },
1800
- { "name": "artificialIntelligence" },
1801
- { "name": "asset" },
1802
- { "name": "attachment" },
1803
- { "name": "bandCursor" },
1804
- { "name": "bands" },
1805
- { "name": "batteryEmpty" },
1806
- { "name": "batteryFull" },
1807
- { "name": "batteryLow" },
1808
- { "name": "bearingFault" },
1809
- { "name": "book" },
1810
- { "name": "bulb" },
1811
- { "name": "burger" },
1812
- { "name": "cPM" },
1813
- { "name": "calendar" },
1814
- { "name": "calendarBooked" },
1815
- { "name": "calendarEmpty" },
1816
- { "name": "calendarNotBooked" },
1817
- { "name": "calendarRecurring" },
1818
- { "name": "caretDown" },
1819
- { "name": "caretUp" },
1820
- { "name": "caretUpDown" },
1821
- { "name": "chat" },
1822
- { "name": "check" },
1823
- { "name": "checkCircle" },
1824
- { "name": "checkSmall" },
1825
- { "name": "chevronDown" },
1826
- { "name": "chevronLeft" },
1827
- { "name": "chevronRight" },
1828
- { "name": "chevronUp" },
1829
- { "name": "chevronUpDown" },
1830
- { "name": "close" },
1831
- { "name": "closeAllFaults" },
1832
- { "name": "closeFault" },
1833
- { "name": "closeSmall" },
1834
- { "name": "columnGraph" },
1835
- { "name": "comment" },
1836
- { "name": "connection1" },
1837
- { "name": "connection2" },
1838
- { "name": "connection3" },
1839
- { "name": "connection4" },
1840
- { "name": "danger" },
1841
- { "name": "defectFrequencies" },
1842
- { "name": "defectFrequenciesAlternative" },
1843
- { "name": "doubleChevronLeft" },
1844
- { "name": "doubleChevronRight" },
1845
- { "name": "download" },
1846
- { "name": "draft" },
1847
- { "name": "draftFilled" },
1848
- { "name": "draftOutlined" },
1849
- { "name": "dragNDrop" },
1850
- { "name": "drop" },
1851
- { "name": "duplicate" },
1852
- { "name": "edit" },
1853
- { "name": "emailFilled" },
1854
- { "name": "emailOutlined" },
1855
- { "name": "exclamation" },
1856
- { "name": "eye" },
1857
- { "name": "eyeHidden" },
1858
- { "name": "eyeVisible" },
1859
- { "name": "filter" },
1860
- { "name": "forbidden" },
1861
- { "name": "fullScreen" },
1862
- { "name": "fullScreenExit" },
1863
- { "name": "functionalLocation" },
1864
- { "name": "harmonicCursor" },
1865
- { "name": "heatmap" },
1866
- { "name": "hierarchy" },
1867
- { "name": "history" },
1868
- { "name": "historyAlt" },
1869
- { "name": "hourglassFramedFilled" },
1870
- { "name": "hourglassFramedOutlined" },
1871
- { "name": "hourglassOutlined" },
1872
- { "name": "hz" },
1873
- { "name": "iMX" },
1874
- { "name": "image" },
1875
- { "name": "infoCircleFilled" },
1876
- { "name": "infoCircleOutlined" },
1877
- { "name": "integration" },
1878
- { "name": "kebab" },
1879
- { "name": "link" },
1880
- { "name": "listGroup" },
1881
- { "name": "listItem" },
1882
- { "name": "locationPin" },
1883
- { "name": "lock" },
1884
- { "name": "logOut" },
1885
- { "name": "meatballs" },
1886
- { "name": "microphone" },
1887
- { "name": "minus" },
1888
- { "name": "minusSmall" },
1889
- { "name": "noData" },
1890
- { "name": "o" },
1891
- { "name": "openInNew" },
1892
- { "name": "overlayBaseline" },
1893
- { "name": "pDF" },
1894
- { "name": "paper" },
1895
- { "name": "pause" },
1896
- { "name": "pieChart" },
1897
- { "name": "pin" },
1898
- { "name": "play" },
1899
- { "name": "plus" },
1900
- { "name": "powerOff" },
1901
- { "name": "printer" },
1902
- { "name": "proCollect" },
1903
- { "name": "recAction" },
1904
- { "name": "received" },
1905
- { "name": "refresh" },
1906
- { "name": "reorder" },
1907
- { "name": "replace" },
1908
- { "name": "reply" },
1909
- { "name": "rewalkableRoute" },
1910
- { "name": "routes" },
1911
- { "name": "search" },
1912
- { "name": "send" },
1913
- { "name": "sensorA" },
1914
- { "name": "sensorB" },
1915
- { "name": "settings" },
1916
- { "name": "sidebandCursor" },
1917
- { "name": "singleCursor" },
1918
- { "name": "spectrum" },
1919
- { "name": "starFilled" },
1920
- { "name": "starOutlined" },
1921
- { "name": "statusCircle" },
1922
- { "name": "stop" },
1923
- { "name": "structuralVibration" },
1924
- { "name": "sync" },
1925
- { "name": "timewave" },
1926
- { "name": "trash" },
1927
- { "name": "trend" },
1928
- { "name": "trendingUp" },
1929
- { "name": "undo" },
1930
- { "name": "unknownCircle" },
1931
- { "name": "unknownDiamond" },
1932
- { "name": "unlink" },
1933
- { "name": "unlock" },
1934
- { "name": "unscheduledAction" },
1935
- { "name": "upload" },
1936
- { "name": "user" },
1937
- { "name": "viewFull" },
1938
- { "name": "viewHorizontal" },
1939
- { "name": "viewVertical" },
1940
- { "name": "warning" },
1941
- { "name": "warningCircle" },
1942
- { "name": "warningDiamond" },
1943
- { "name": "zoomIn" },
1944
- { "name": "zoomOut" }
1945
- ]
1946
- },
1947
- {
1948
- "name": "color",
1949
- "description": "If defined, gives the supplied appearance",
1950
- "values": [
1951
- { "name": "warning" },
1952
- { "name": "success" },
1953
- { "name": "info" },
1954
- { "name": "error" },
1955
- { "name": "alert" }
1956
- ]
1957
- },
1958
- {
1959
- "name": "removable",
1960
- "description": "If true, adds trailing button to remove tag",
1419
+ "name": "panel",
1420
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
1961
1421
  "values": []
1962
1422
  }
1963
1423
  ],
@@ -2045,12 +1505,7 @@
2045
1505
  {
2046
1506
  "name": "severity",
2047
1507
  "description": "If defined, displays provided severity state",
2048
- "values": [
2049
- { "name": "success" },
2050
- { "name": "info" },
2051
- { "name": "warning" },
2052
- { "name": "alert" }
2053
- ]
1508
+ "values": [{ "name": "FormFieldSeverity" }]
2054
1509
  },
2055
1510
  {
2056
1511
  "name": "show-valid",
@@ -2079,25 +1534,31 @@
2079
1534
  ],
2080
1535
  "references": []
2081
1536
  },
1537
+ {
1538
+ "name": "skf-toast-wrapper",
1539
+ "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.",
1540
+ "attributes": [{ "name": "debug", "values": [] }],
1541
+ "references": []
1542
+ },
2082
1543
  {
2083
1544
  "name": "skf-toast",
2084
- "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",
1545
+ "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",
2085
1546
  "attributes": [
1547
+ { "name": "debug", "values": [] },
1548
+ {
1549
+ "name": "icon",
1550
+ "description": "If defined, displays leading icon",
1551
+ "values": [{ "name": "Icon" }]
1552
+ },
2086
1553
  {
2087
- "name": "closeable",
2088
- "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
1554
+ "name": "persistent",
1555
+ "description": "If true, renders with an close button and sets aria-role to `status`",
2089
1556
  "values": []
2090
1557
  },
2091
- { "name": "debug", "values": [] },
2092
1558
  {
2093
1559
  "name": "severity",
2094
- "description": "Severity of the toast.",
2095
- "values": [
2096
- { "name": "info" },
2097
- { "name": "success" },
2098
- { "name": "warning" },
2099
- { "name": "error" }
2100
- ]
1560
+ "description": "If defined, gives the supplied appearance",
1561
+ "values": [{ "name": "Severity" }]
2101
1562
  },
2102
1563
  {
2103
1564
  "name": "timer",
@@ -2112,16 +1573,34 @@
2112
1573
  ],
2113
1574
  "references": []
2114
1575
  },
2115
- {
2116
- "name": "skf-toast-wrapper",
2117
- "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.",
2118
- "attributes": [{ "name": "debug", "values": [] }],
2119
- "references": []
2120
- },
2121
1576
  {
2122
1577
  "name": "skf-tooltip",
2123
- "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",
2124
- "attributes": [],
1578
+ "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",
1579
+ "attributes": [
1580
+ {
1581
+ "name": "placement",
1582
+ "description": "The placement of the dropdown",
1583
+ "values": [
1584
+ { "name": "top" },
1585
+ { "name": "right" },
1586
+ { "name": "bottom" },
1587
+ { "name": "left" },
1588
+ { "name": "top-start" },
1589
+ { "name": "top-end" },
1590
+ { "name": "right-start" },
1591
+ { "name": "right-end" },
1592
+ { "name": "bottom-start" },
1593
+ { "name": "bottom-end" },
1594
+ { "name": "left-start" },
1595
+ { "name": "left-end" }
1596
+ ]
1597
+ },
1598
+ {
1599
+ "name": "anchor",
1600
+ "description": "The id of the element the dropdown will be anchored to",
1601
+ "values": []
1602
+ }
1603
+ ],
2125
1604
  "references": []
2126
1605
  }
2127
1606
  ]