@skf-design-system/ui-components 1.0.0-alpha.34 → 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 (349) 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 +8 -9
  9. package/dist/components/accordion/accordion.d.ts +0 -1
  10. package/dist/components/accordion/accordion.js +0 -2
  11. package/dist/components/alert/alert.component.d.ts +12 -12
  12. package/dist/components/alert/alert.component.js +57 -55
  13. package/dist/components/alert/alert.styles.js +50 -51
  14. package/dist/components/breadcrumb/breadcrumb-item.component.js +60 -0
  15. package/dist/components/{breadcrumb-item → breadcrumb}/breadcrumb-item.d.ts +2 -2
  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 +7 -4
  19. package/dist/components/breadcrumb/breadcrumb.component.js +65 -0
  20. package/dist/components/breadcrumb/breadcrumb.d.ts +2 -2
  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 +73 -61
  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 +74 -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 -29
  55. package/dist/components/dialog/dialog.component.js +85 -75
  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 +64 -43
  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 +166 -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 +35 -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.js +39 -0
  105. package/dist/components/nav/nav.component.d.ts +17 -0
  106. package/dist/components/nav/nav.component.js +34 -0
  107. package/dist/components/nav/nav.d.ts +8 -0
  108. package/dist/components/nav/nav.js +6 -0
  109. package/dist/components/nav/nav.styles.js +17 -0
  110. package/dist/components/popover/popover.component.d.ts +11 -8
  111. package/dist/components/popover/popover.component.js +24 -26
  112. package/dist/components/popover/popover.d.ts +2 -2
  113. package/dist/components/progress/progress.component.d.ts +2 -2
  114. package/dist/components/progress/progress.component.js +31 -37
  115. package/dist/components/progress/progress.d.ts +2 -2
  116. package/dist/components/progress/progress.styles.js +42 -35
  117. package/dist/components/radio/radio.component.d.ts +19 -13
  118. package/dist/components/radio/radio.component.js +12 -12
  119. package/dist/components/radio/radio.styles.d.ts +1 -2
  120. package/dist/components/radio/radio.styles.js +1 -1
  121. package/dist/components/segmented-button/segmented-button-item.component.d.ts +36 -0
  122. package/dist/components/segmented-button/segmented-button-item.component.js +56 -0
  123. package/dist/components/segmented-button/segmented-button-item.d.ts +8 -0
  124. package/dist/components/segmented-button/segmented-button-item.js +6 -0
  125. package/dist/components/segmented-button/segmented-button-item.styles.d.ts +1 -0
  126. package/dist/components/segmented-button/segmented-button-item.styles.js +62 -0
  127. package/dist/components/segmented-button/segmented-button.component.d.ts +30 -0
  128. package/dist/components/segmented-button/segmented-button.component.js +73 -0
  129. package/dist/components/segmented-button/segmented-button.d.ts +8 -0
  130. package/dist/components/segmented-button/segmented-button.js +6 -0
  131. package/dist/components/segmented-button/segmented-button.styles.d.ts +1 -0
  132. package/dist/components/segmented-button/segmented-button.styles.js +16 -0
  133. package/dist/components/{select-option-group → select}/select-option-group.component.js +1 -1
  134. package/dist/components/{select-option-group → select}/select-option-group.d.ts +2 -2
  135. package/dist/components/select/select-option-group.style.d.ts +1 -0
  136. package/dist/components/{select-option → select}/select-option.component.d.ts +9 -10
  137. package/dist/components/{select-option → select}/select-option.component.js +23 -23
  138. package/dist/components/select/select-option.controllers.d.ts +15 -0
  139. package/dist/components/select/select-option.styles.d.ts +1 -0
  140. package/dist/components/select/select.component.d.ts +18 -17
  141. package/dist/components/select/select.component.js +22 -23
  142. package/dist/components/select/select.controllers.d.ts +21 -10
  143. package/dist/components/select/select.controllers.js +27 -22
  144. package/dist/components/select/stories/select.stories.icons.d.ts +7 -0
  145. package/dist/components/{stepper-item → stepper}/stepper-item.component.js +48 -48
  146. package/dist/components/{stepper-item → stepper}/stepper-item.d.ts +2 -2
  147. package/dist/components/stepper/stepper-item.styles.d.ts +1 -0
  148. package/dist/components/stepper/stepper.component.d.ts +4 -3
  149. package/dist/components/stepper/stepper.component.js +15 -15
  150. package/dist/components/stepper/stepper.d.ts +2 -2
  151. package/dist/components/stepper/stepper.helpers.d.ts +1 -1
  152. package/dist/components/switch/switch.component.d.ts +7 -6
  153. package/dist/components/switch/switch.component.js +21 -21
  154. package/dist/components/switch/switch.d.ts +2 -2
  155. package/dist/components/{tab-panel → tabs}/tab-panel.component.js +1 -1
  156. package/dist/components/{tab-panel → tabs}/tab-panel.d.ts +2 -2
  157. package/dist/components/tabs/tab-panel.styles.d.ts +1 -0
  158. package/dist/components/{tab → tabs}/tab.component.d.ts +2 -2
  159. package/dist/components/{tab → tabs}/tab.component.js +1 -1
  160. package/dist/components/{tab → tabs}/tab.d.ts +2 -2
  161. package/dist/components/tabs/tab.styles.d.ts +1 -0
  162. package/dist/components/{tab-group/tab-group.component.d.ts → tabs/tabs.component.d.ts} +3 -4
  163. package/dist/components/{tab-group/tab-group.component.js → tabs/tabs.component.js} +36 -37
  164. package/dist/components/tabs/tabs.d.ts +8 -0
  165. package/dist/components/tabs/tabs.js +6 -0
  166. package/dist/components/tabs/tabs.styles.d.ts +1 -0
  167. package/dist/components/{tab-group/tab-group.styles.js → tabs/tabs.styles.js} +16 -16
  168. package/dist/components/tag/tag.component.d.ts +20 -17
  169. package/dist/components/tag/tag.component.js +68 -67
  170. package/dist/components/tag/tag.d.ts +2 -2
  171. package/dist/components/tag/tag.styles.js +63 -50
  172. package/dist/components/textarea/textarea.component.d.ts +10 -11
  173. package/dist/components/textarea/textarea.component.js +65 -67
  174. package/dist/components/{toast-item → toast}/toast-item.component.js +15 -15
  175. package/dist/components/{toast-item → toast}/toast-item.d.ts +2 -0
  176. package/dist/components/{toast-item → toast}/toast-item.js +4 -0
  177. package/dist/components/toast/toast-item.styles.js +18 -0
  178. package/dist/components/{toast-wrapper → toast}/toast-wrapper.component.js +1 -1
  179. package/dist/components/toast/toast-wrapper.styles.d.ts +1 -0
  180. package/dist/components/toast/toast.component.d.ts +9 -5
  181. package/dist/components/toast/toast.component.js +32 -28
  182. package/dist/components/toast/toast.singleton.d.ts +6 -11
  183. package/dist/components/toast/toast.singleton.js +23 -23
  184. package/dist/components/tooltip/tooltip.component.d.ts +7 -7
  185. package/dist/components/tooltip/tooltip.component.js +16 -11
  186. package/dist/components/tooltip/tooltip.d.ts +2 -2
  187. package/dist/custom-elements.json +4091 -2539
  188. package/dist/index.d.ts +22 -9
  189. package/dist/index.js +111 -74
  190. package/dist/internal/base-classes/popover/popover.base.d.ts +24 -9
  191. package/dist/internal/base-classes/popover/popover.base.js +138 -77
  192. package/dist/internal/base-classes/popover/popover.styles.js +14 -1
  193. package/dist/internal/components/hint/hint.component.d.ts +2 -2
  194. package/dist/internal/components/hint/hint.component.js +2 -2
  195. package/dist/internal/components/hint/hint.styles.d.ts +1 -2
  196. package/dist/internal/components/hint/hint.styles.js +1 -1
  197. package/dist/internal/components/skf-element.d.ts +1 -3
  198. package/dist/internal/components/skf-element.js +4 -9
  199. package/dist/internal/constants/iconSeverity.d.ts +3 -2
  200. package/dist/internal/constants/iconSeverity.js +2 -3
  201. package/dist/internal/controllers/elementOverflowController.d.ts +13 -0
  202. package/dist/internal/controllers/popover.controller.d.ts +12 -6
  203. package/dist/internal/controllers/popover.controller.js +9 -14
  204. package/dist/internal/helpers/dateFormatter.d.ts +2 -0
  205. package/dist/internal/helpers/hintSeverity.d.ts +2 -2
  206. package/dist/internal/helpers/hintSeverity.js +1 -1
  207. package/dist/internal/helpers/stateMap.d.ts +14 -0
  208. package/dist/internal/helpers/stateMap.js +68 -0
  209. package/dist/internal/helpers/utilityTypes.d.ts +22 -0
  210. package/dist/internal/helpers/uuid.d.ts +15 -0
  211. package/dist/internal/helpers/uuid.js +14 -0
  212. package/dist/internal/helpers/watch.d.ts +1 -1
  213. package/dist/internal/helpers/watch.js +12 -12
  214. package/dist/internal/storybook/styles.d.ts +1 -0
  215. package/dist/internal/types/formField.d.ts +1 -1
  216. package/dist/internal/types.d.ts +18 -0
  217. package/dist/styles/component.styles.d.ts +1 -2
  218. package/dist/styles/component.styles.js +38 -37
  219. package/dist/styles/form-field.styles.js +11 -6
  220. package/dist/styles/global-alt.css +1 -0
  221. package/dist/styles/global.css +1 -1
  222. package/dist/types/jsx/custom-element-jsx.d.ts +740 -1294
  223. package/dist/types/vue/index.d.ts +543 -322
  224. package/dist/vscode.html-custom-data.json +526 -1076
  225. package/dist/web-types.json +1237 -761
  226. package/package.json +45 -61
  227. package/dist/components/accordion/accordion.test.d.ts +0 -1
  228. package/dist/components/checkbox/checkbox.test.d.ts +0 -1
  229. package/dist/components/collapse/collapse.component.d.ts +0 -40
  230. package/dist/components/collapse/collapse.component.js +0 -86
  231. package/dist/components/collapse/collapse.d.ts +0 -8
  232. package/dist/components/collapse/collapse.js +0 -6
  233. package/dist/components/collapse/collapse.styles.d.ts +0 -2
  234. package/dist/components/collapse/collapse.styles.js +0 -77
  235. package/dist/components/collapse/collapse.test.d.ts +0 -1
  236. package/dist/components/input/input.test.d.ts +0 -1
  237. package/dist/components/menu-item/menu-item.component.d.ts +0 -25
  238. package/dist/components/radio/radio.test.d.ts +0 -1
  239. package/dist/components/select-option/select-option.controllers.d.ts +0 -9
  240. package/dist/components/switch/switch.test.d.ts +0 -1
  241. package/dist/components/tab-group/tab-group.d.ts +0 -8
  242. package/dist/components/tab-group/tab-group.js +0 -6
  243. package/dist/components/toast-item/toast-item.styles.js +0 -16
  244. package/dist/internal/constants/heading.d.ts +0 -2
  245. package/dist/internal/playwright/index.d.ts +0 -1
  246. package/dist/react/index.d.ts +0 -35
  247. package/dist/react/index.js +0 -35
  248. package/dist/react/skf-accordion/index.d.ts +0 -3
  249. package/dist/react/skf-accordion/index.js +0 -13
  250. package/dist/react/skf-alert/index.d.ts +0 -9
  251. package/dist/react/skf-alert/index.js +0 -17
  252. package/dist/react/skf-breadcrumb/index.d.ts +0 -9
  253. package/dist/react/skf-breadcrumb/index.js +0 -17
  254. package/dist/react/skf-breadcrumb-item/index.d.ts +0 -3
  255. package/dist/react/skf-breadcrumb-item/index.js +0 -13
  256. package/dist/react/skf-button/index.d.ts +0 -9
  257. package/dist/react/skf-button/index.js +0 -17
  258. package/dist/react/skf-card/index.d.ts +0 -3
  259. package/dist/react/skf-card/index.js +0 -13
  260. package/dist/react/skf-checkbox/index.d.ts +0 -9
  261. package/dist/react/skf-checkbox/index.js +0 -17
  262. package/dist/react/skf-collapse/index.d.ts +0 -9
  263. package/dist/react/skf-collapse/index.js +0 -17
  264. package/dist/react/skf-dialog/index.d.ts +0 -15
  265. package/dist/react/skf-dialog/index.js +0 -19
  266. package/dist/react/skf-divider/index.d.ts +0 -3
  267. package/dist/react/skf-divider/index.js +0 -13
  268. package/dist/react/skf-heading/index.d.ts +0 -3
  269. package/dist/react/skf-heading/index.js +0 -13
  270. package/dist/react/skf-icon/index.d.ts +0 -3
  271. package/dist/react/skf-icon/index.js +0 -13
  272. package/dist/react/skf-input/index.d.ts +0 -12
  273. package/dist/react/skf-input/index.js +0 -18
  274. package/dist/react/skf-link/index.d.ts +0 -3
  275. package/dist/react/skf-link/index.js +0 -13
  276. package/dist/react/skf-loader/index.d.ts +0 -3
  277. package/dist/react/skf-loader/index.js +0 -13
  278. package/dist/react/skf-logo/index.d.ts +0 -3
  279. package/dist/react/skf-logo/index.js +0 -13
  280. package/dist/react/skf-menu/index.d.ts +0 -12
  281. package/dist/react/skf-menu/index.js +0 -18
  282. package/dist/react/skf-menu-item/index.d.ts +0 -27
  283. package/dist/react/skf-menu-item/index.js +0 -23
  284. package/dist/react/skf-popover/index.d.ts +0 -12
  285. package/dist/react/skf-popover/index.js +0 -18
  286. package/dist/react/skf-progress/index.d.ts +0 -3
  287. package/dist/react/skf-progress/index.js +0 -13
  288. package/dist/react/skf-radio/index.d.ts +0 -9
  289. package/dist/react/skf-radio/index.js +0 -17
  290. package/dist/react/skf-select/index.d.ts +0 -21
  291. package/dist/react/skf-select/index.js +0 -21
  292. package/dist/react/skf-select-option/index.d.ts +0 -9
  293. package/dist/react/skf-select-option/index.js +0 -17
  294. package/dist/react/skf-select-option-group/index.d.ts +0 -3
  295. package/dist/react/skf-select-option-group/index.js +0 -13
  296. package/dist/react/skf-stepper/index.d.ts +0 -9
  297. package/dist/react/skf-stepper/index.js +0 -17
  298. package/dist/react/skf-stepper-item/index.d.ts +0 -9
  299. package/dist/react/skf-stepper-item/index.js +0 -17
  300. package/dist/react/skf-switch/index.d.ts +0 -3
  301. package/dist/react/skf-switch/index.js +0 -13
  302. package/dist/react/skf-tab/index.d.ts +0 -12
  303. package/dist/react/skf-tab/index.js +0 -18
  304. package/dist/react/skf-tab-group/index.d.ts +0 -3
  305. package/dist/react/skf-tab-group/index.js +0 -13
  306. package/dist/react/skf-tab-panel/index.d.ts +0 -3
  307. package/dist/react/skf-tab-panel/index.js +0 -13
  308. package/dist/react/skf-tag/index.d.ts +0 -3
  309. package/dist/react/skf-tag/index.js +0 -13
  310. package/dist/react/skf-textarea/index.d.ts +0 -12
  311. package/dist/react/skf-textarea/index.js +0 -18
  312. package/dist/react/skf-toast/index.d.ts +0 -3
  313. package/dist/react/skf-toast/index.js +0 -13
  314. package/dist/react/skf-toast-wrapper/index.d.ts +0 -3
  315. package/dist/react/skf-toast-wrapper/index.js +0 -13
  316. package/dist/react/skf-tooltip/index.d.ts +0 -12
  317. package/dist/react/skf-tooltip/index.js +0 -18
  318. /package/dist/components/{breadcrumb-item/breadcrumb-item.styles.d.ts → accordion/accordion-item.styles.d.ts} +0 -0
  319. /package/dist/components/{breadcrumb-item → breadcrumb}/breadcrumb-item.component.d.ts +0 -0
  320. /package/dist/components/{menu-item/menu-item.styles.d.ts → breadcrumb/breadcrumb-item.styles.d.ts} +0 -0
  321. /package/dist/components/{select-option-group/select-option-group.style.d.ts → datepicker/datepicker-calendar.styles.d.ts} +0 -0
  322. /package/dist/components/{select-option/select-option.styles.d.ts → datepicker/datepicker-popup.styles.d.ts} +0 -0
  323. /package/dist/components/{stepper-item/stepper-item.styles.d.ts → drawer/drawer.styles.d.ts} +0 -0
  324. /package/dist/components/{tab-group/tab-group.styles.d.ts → header/header.styles.d.ts} +0 -0
  325. /package/dist/components/{menu-item → menu}/menu-item.js +0 -0
  326. /package/dist/components/{tab-panel/tab-panel.styles.d.ts → menu/menu-item.styles.d.ts} +0 -0
  327. /package/dist/components/{menu-item → menu}/menu-item.styles.js +0 -0
  328. /package/dist/components/{tab/tab.styles.d.ts → nav/nav-item.styles.d.ts} +0 -0
  329. /package/dist/components/{toast-wrapper/toast-wrapper.styles.d.ts → nav/nav.styles.d.ts} +0 -0
  330. /package/dist/components/{select-option-group → select}/select-option-group.component.d.ts +0 -0
  331. /package/dist/components/{select-option-group → select}/select-option-group.js +0 -0
  332. /package/dist/components/{select-option-group → select}/select-option-group.style.js +0 -0
  333. /package/dist/components/{select-option → select}/select-option.d.ts +0 -0
  334. /package/dist/components/{select-option → select}/select-option.js +0 -0
  335. /package/dist/components/{select-option → select}/select-option.styles.js +0 -0
  336. /package/dist/components/{stepper-item → stepper}/stepper-item.component.d.ts +0 -0
  337. /package/dist/components/{stepper-item → stepper}/stepper-item.js +0 -0
  338. /package/dist/components/{stepper-item → stepper}/stepper-item.styles.js +0 -0
  339. /package/dist/components/{tab-panel → tabs}/tab-panel.component.d.ts +0 -0
  340. /package/dist/components/{tab-panel → tabs}/tab-panel.js +0 -0
  341. /package/dist/components/{tab-panel → tabs}/tab-panel.styles.js +0 -0
  342. /package/dist/components/{tab → tabs}/tab.js +0 -0
  343. /package/dist/components/{tab → tabs}/tab.styles.js +0 -0
  344. /package/dist/components/{toast-item → toast}/toast-item.component.d.ts +0 -0
  345. /package/dist/components/{toast-item → toast}/toast-item.styles.d.ts +0 -0
  346. /package/dist/components/{toast-wrapper → toast}/toast-wrapper.component.d.ts +0 -0
  347. /package/dist/components/{toast-wrapper → toast}/toast-wrapper.d.ts +0 -0
  348. /package/dist/components/{toast-wrapper → toast}/toast-wrapper.js +0 -0
  349. /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,36 @@
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": []
76
141
  }
77
142
  ],
78
143
  "references": []
79
144
  },
80
145
  {
81
146
  "name": "skf-breadcrumb",
82
- "description": "The `<skf-breadcrumb>` component consists of multiple `<skf-breadcrumb-item>`, working together.\n---\n\n\n### **Events:**\n - **click** - Fired when the item is clicked\n\n### **Slots:**\n - _default_ - One or more `<skf-breadcrumb-item>`",
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>`",
83
148
  "attributes": [
84
149
  {
85
150
  "name": "label",
@@ -87,28 +152,38 @@
87
152
  "values": []
88
153
  },
89
154
  {
90
- "name": "size",
91
- "description": "Displays an alternative size",
92
- "values": [{ "name": "md" }, { "name": "sm" }]
155
+ "name": "small",
156
+ "description": "If true, renders a smaller version",
157
+ "values": []
93
158
  }
94
159
  ],
95
160
  "references": []
96
161
  },
97
162
  {
98
- "name": "skf-breadcrumb-item",
99
- "description": "The `<skf-breadcrumb-item>` is used in conjunction with the `<skf-breadcrumb>` component\n---\n\n\n### **Slots:**\n - _default_ - Label of the breadcrumb item",
163
+ "name": "skf-loader",
164
+ "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
100
165
  "attributes": [
101
166
  {
102
- "name": "href",
103
- "description": "If defined, loads url on click",
167
+ "name": "aria-label",
168
+ "description": "Defines the aria-label",
104
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" }]
105
180
  }
106
181
  ],
107
182
  "references": []
108
183
  },
109
184
  {
110
185
  "name": "skf-button",
111
- "description": "Component to be used in forms or for interactivity\n---\n\n\n### **Events:**\n - **click** - Fires when the button is clicked\n\n### **Methods:**\n - **click()** - Simulates a click on the button.\n\n### **Slots:**\n - _default_ - The Primary content",
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",
112
187
  "attributes": [
113
188
  {
114
189
  "name": "destructive",
@@ -123,168 +198,16 @@
123
198
  {
124
199
  "name": "icon",
125
200
  "description": "If provided, renders an icon before or after the text",
126
- "values": [
127
- { "name": "arrowDown" },
128
- { "name": "arrowDownUp" },
129
- { "name": "arrowLeft" },
130
- { "name": "arrowRight" },
131
- { "name": "arrowUp" },
132
- { "name": "article" },
133
- { "name": "artificialIntelligence" },
134
- { "name": "asset" },
135
- { "name": "attachment" },
136
- { "name": "bandCursor" },
137
- { "name": "bands" },
138
- { "name": "batteryEmpty" },
139
- { "name": "batteryFull" },
140
- { "name": "batteryLow" },
141
- { "name": "bearingFault" },
142
- { "name": "book" },
143
- { "name": "bulb" },
144
- { "name": "burger" },
145
- { "name": "cPM" },
146
- { "name": "calendar" },
147
- { "name": "calendarBooked" },
148
- { "name": "calendarEmpty" },
149
- { "name": "calendarNotBooked" },
150
- { "name": "calendarRecurring" },
151
- { "name": "caretDown" },
152
- { "name": "caretUp" },
153
- { "name": "caretUpDown" },
154
- { "name": "chat" },
155
- { "name": "check" },
156
- { "name": "checkCircle" },
157
- { "name": "checkSmall" },
158
- { "name": "chevronDown" },
159
- { "name": "chevronLeft" },
160
- { "name": "chevronRight" },
161
- { "name": "chevronUp" },
162
- { "name": "chevronUpDown" },
163
- { "name": "close" },
164
- { "name": "closeAllFaults" },
165
- { "name": "closeFault" },
166
- { "name": "closeSmall" },
167
- { "name": "columnGraph" },
168
- { "name": "comment" },
169
- { "name": "connection1" },
170
- { "name": "connection2" },
171
- { "name": "connection3" },
172
- { "name": "connection4" },
173
- { "name": "danger" },
174
- { "name": "defectFrequencies" },
175
- { "name": "defectFrequenciesAlternative" },
176
- { "name": "doubleChevronLeft" },
177
- { "name": "doubleChevronRight" },
178
- { "name": "download" },
179
- { "name": "draft" },
180
- { "name": "draftFilled" },
181
- { "name": "draftOutlined" },
182
- { "name": "dragNDrop" },
183
- { "name": "drop" },
184
- { "name": "duplicate" },
185
- { "name": "edit" },
186
- { "name": "emailFilled" },
187
- { "name": "emailOutlined" },
188
- { "name": "exclamation" },
189
- { "name": "eye" },
190
- { "name": "eyeHidden" },
191
- { "name": "eyeVisible" },
192
- { "name": "filter" },
193
- { "name": "forbidden" },
194
- { "name": "fullScreen" },
195
- { "name": "fullScreenExit" },
196
- { "name": "functionalLocation" },
197
- { "name": "harmonicCursor" },
198
- { "name": "heatmap" },
199
- { "name": "hierarchy" },
200
- { "name": "history" },
201
- { "name": "historyAlt" },
202
- { "name": "hourglassFramedFilled" },
203
- { "name": "hourglassFramedOutlined" },
204
- { "name": "hourglassOutlined" },
205
- { "name": "hz" },
206
- { "name": "iMX" },
207
- { "name": "image" },
208
- { "name": "infoCircleFilled" },
209
- { "name": "infoCircleOutlined" },
210
- { "name": "integration" },
211
- { "name": "kebab" },
212
- { "name": "link" },
213
- { "name": "listGroup" },
214
- { "name": "listItem" },
215
- { "name": "locationPin" },
216
- { "name": "lock" },
217
- { "name": "logOut" },
218
- { "name": "meatballs" },
219
- { "name": "microphone" },
220
- { "name": "minus" },
221
- { "name": "minusSmall" },
222
- { "name": "noData" },
223
- { "name": "o" },
224
- { "name": "openInNew" },
225
- { "name": "overlayBaseline" },
226
- { "name": "pDF" },
227
- { "name": "paper" },
228
- { "name": "pause" },
229
- { "name": "pieChart" },
230
- { "name": "pin" },
231
- { "name": "play" },
232
- { "name": "plus" },
233
- { "name": "powerOff" },
234
- { "name": "printer" },
235
- { "name": "proCollect" },
236
- { "name": "recAction" },
237
- { "name": "received" },
238
- { "name": "refresh" },
239
- { "name": "reorder" },
240
- { "name": "replace" },
241
- { "name": "reply" },
242
- { "name": "rewalkableRoute" },
243
- { "name": "routes" },
244
- { "name": "search" },
245
- { "name": "send" },
246
- { "name": "sensorA" },
247
- { "name": "sensorB" },
248
- { "name": "settings" },
249
- { "name": "sidebandCursor" },
250
- { "name": "singleCursor" },
251
- { "name": "spectrum" },
252
- { "name": "starFilled" },
253
- { "name": "starOutlined" },
254
- { "name": "statusCircle" },
255
- { "name": "stop" },
256
- { "name": "structuralVibration" },
257
- { "name": "sync" },
258
- { "name": "timewave" },
259
- { "name": "trash" },
260
- { "name": "trend" },
261
- { "name": "trendingUp" },
262
- { "name": "undo" },
263
- { "name": "unknownCircle" },
264
- { "name": "unknownDiamond" },
265
- { "name": "unlink" },
266
- { "name": "unlock" },
267
- { "name": "unscheduledAction" },
268
- { "name": "upload" },
269
- { "name": "user" },
270
- { "name": "viewFull" },
271
- { "name": "viewHorizontal" },
272
- { "name": "viewVertical" },
273
- { "name": "warning" },
274
- { "name": "warningCircle" },
275
- { "name": "warningDiamond" },
276
- { "name": "zoomIn" },
277
- { "name": "zoomOut" }
278
- ]
201
+ "values": [{ "name": "Icon" }]
279
202
  },
280
203
  {
281
- "name": "iconOnly",
282
- "description": "If true, removes border",
204
+ "name": "icon-only",
205
+ "description": "If true, button will take a square shape",
283
206
  "values": []
284
207
  },
285
208
  {
286
209
  "name": "icon-position",
287
- "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",
288
211
  "values": [{ "name": "left" }, { "name": "right" }]
289
212
  },
290
213
  {
@@ -301,23 +224,23 @@
301
224
  {
302
225
  "name": "type",
303
226
  "description": "If provided, changes the button type",
304
- "values": [
305
- { "name": "button" },
306
- { "name": "submit" },
307
- { "name": "reset" }
308
- ]
227
+ "values": [{ "name": "SkfButtonType" }]
309
228
  },
310
229
  {
311
230
  "name": "variant",
312
231
  "description": "If provided, alters the appearance",
313
- "values": [{ "name": "primary" }, { "name": "secondary" }]
232
+ "values": [
233
+ { "name": "primary" },
234
+ { "name": "secondary" },
235
+ { "name": "tertiary" }
236
+ ]
314
237
  }
315
238
  ],
316
239
  "references": []
317
240
  },
318
241
  {
319
242
  "name": "skf-card",
320
- "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",
321
244
  "attributes": [
322
245
  {
323
246
  "name": "no-border",
@@ -339,7 +262,7 @@
339
262
  },
340
263
  {
341
264
  "name": "skf-checkbox",
342
- "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.",
343
266
  "attributes": [
344
267
  {
345
268
  "name": "disabled",
@@ -389,12 +312,7 @@
389
312
  {
390
313
  "name": "severity",
391
314
  "description": "If defined, styles checkbox using provided severity",
392
- "values": [
393
- { "name": "alert" },
394
- { "name": "success" },
395
- { "name": "info" },
396
- { "name": "warning" }
397
- ]
315
+ "values": [{ "name": "FormFieldSeverity" }]
398
316
  },
399
317
  {
400
318
  "name": "show-valid",
@@ -415,45 +333,149 @@
415
333
  "references": []
416
334
  },
417
335
  {
418
- "name": "skf-collapse",
419
- "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",
420
338
  "attributes": [
339
+ { "name": "eventid", "values": [] },
340
+ { "name": "firstDayOfWeek", "values": [] },
421
341
  {
422
- "name": "animated",
423
- "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.",
424
344
  "values": []
425
345
  },
346
+ { "name": "locale", "values": [] },
347
+ { "name": "range", "values": [] },
426
348
  {
427
- "name": "expanded",
428
- "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)",
429
351
  "values": []
430
352
  },
431
353
  {
432
- "name": "heading",
433
- "description": "Heading for the collapse",
354
+ "name": "selectable-to",
355
+ "description": "Latest selectable date. (yyyy-mm-dd format)",
434
356
  "values": []
435
357
  },
358
+ { "name": "selected-date", "values": [{ "name": "Date" }] },
436
359
  {
437
- "name": "heading-as",
438
- "description": "Defines which heading element will be rendered",
439
- "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": []
440
378
  },
379
+ { "name": "id", "values": [] },
441
380
  {
442
- "name": "small",
443
- "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.",
444
383
  "values": []
445
384
  },
446
385
  {
447
- "name": "truncate",
448
- "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",
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",
449
454
  "values": []
450
455
  }
451
456
  ],
452
457
  "references": []
453
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" }]
472
+ }
473
+ ],
474
+ "references": []
475
+ },
454
476
  {
455
477
  "name": "skf-dialog",
456
- "description": "The `<skf-dialog>` is a component that open up a dialog with the content provided\n---\n\n\n### **Events:**\n - **skf-dialog-open** - Fires when the dialog is opened (after transitioned in)\n- **skf-dialog-close** - Fires when the dialog is closed (before transitioned out)\n- **close** - Fires when the dialog is closed (after transitioned out)\n\n### **Slots:**\n - _default_ - The dialog component's content\n- **footer** - The dialog component's buttons goes here\n\n### **CSS Properties:**\n - **--skf-dialog-height** - A custom height for the Dialog. Pass valid CSS **block-size** values _(default: undefined)_\n- **--skf-dialog-width** - A custom width for the Dialog Pass valid CSS **inline-size** values _(default: undefined)_",
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)_",
457
479
  "attributes": [
458
480
  {
459
481
  "name": "close-button-aria-label",
@@ -480,7 +502,11 @@
480
502
  "description": "If defined, removes the inner padding",
481
503
  "values": []
482
504
  },
483
- { "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
+ }
484
510
  ],
485
511
  "references": []
486
512
  },
@@ -491,13 +517,7 @@
491
517
  {
492
518
  "name": "color",
493
519
  "description": "Defines the Divider color",
494
- "values": [
495
- { "name": "emphasised" },
496
- { "name": "primary" },
497
- { "name": "secondary" },
498
- { "name": "tertiary" },
499
- { "name": "inverse" }
500
- ]
520
+ "values": [{ "name": "SkfDividerColor" }]
501
521
  },
502
522
  {
503
523
  "name": "decorative",
@@ -513,229 +533,90 @@
513
533
  "references": []
514
534
  },
515
535
  {
516
- "name": "skf-heading",
517
- "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",
518
538
  "attributes": [
519
539
  {
520
- "name": "as",
521
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
522
- "values": [
523
- { "name": "h1" },
524
- { "name": "h2" },
525
- { "name": "h3" },
526
- { "name": "h4" }
527
- ]
540
+ "name": "close-button-aria-label",
541
+ "description": "If defined, sets the aria-label for the close button",
542
+ "values": []
528
543
  },
529
544
  {
530
- "name": "styled-as",
531
- "description": "If provided, changes the appearance of the heading",
532
- "values": [
533
- { "name": "h1" },
534
- { "name": "h2" },
535
- { "name": "h3" },
536
- { "name": "h4" }
537
- ]
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" }]
538
563
  }
539
564
  ],
540
565
  "references": []
541
566
  },
542
567
  {
543
- "name": "skf-icon",
544
- "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)_",
545
570
  "attributes": [
571
+ {
572
+ "name": "title",
573
+ "description": "Defines the title of the logo",
574
+ "values": []
575
+ },
546
576
  {
547
577
  "name": "color",
548
- "description": "Sets the color of the icon",
549
- "values": [
550
- { "name": "primary" },
551
- { "name": "inverse" },
552
- { "name": "emphasised" },
553
- { "name": "secondary" },
554
- { "name": "success" },
555
- { "name": "info" },
556
- { "name": "warning" },
557
- { "name": "error" },
558
- { "name": "alert" }
559
- ]
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": []
560
598
  },
561
599
  {
562
- "name": "label",
563
- "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",
564
602
  "values": []
565
603
  },
566
604
  {
567
- "name": "name",
568
- "description": "Name of the icon to display",
569
- "values": [
570
- { "name": "arrowDown" },
571
- { "name": "arrowDownUp" },
572
- { "name": "arrowLeft" },
573
- { "name": "arrowRight" },
574
- { "name": "arrowUp" },
575
- { "name": "article" },
576
- { "name": "artificialIntelligence" },
577
- { "name": "asset" },
578
- { "name": "attachment" },
579
- { "name": "bandCursor" },
580
- { "name": "bands" },
581
- { "name": "batteryEmpty" },
582
- { "name": "batteryFull" },
583
- { "name": "batteryLow" },
584
- { "name": "bearingFault" },
585
- { "name": "book" },
586
- { "name": "bulb" },
587
- { "name": "burger" },
588
- { "name": "cPM" },
589
- { "name": "calendar" },
590
- { "name": "calendarBooked" },
591
- { "name": "calendarEmpty" },
592
- { "name": "calendarNotBooked" },
593
- { "name": "calendarRecurring" },
594
- { "name": "caretDown" },
595
- { "name": "caretUp" },
596
- { "name": "caretUpDown" },
597
- { "name": "chat" },
598
- { "name": "check" },
599
- { "name": "checkCircle" },
600
- { "name": "checkSmall" },
601
- { "name": "chevronDown" },
602
- { "name": "chevronLeft" },
603
- { "name": "chevronRight" },
604
- { "name": "chevronUp" },
605
- { "name": "chevronUpDown" },
606
- { "name": "close" },
607
- { "name": "closeAllFaults" },
608
- { "name": "closeFault" },
609
- { "name": "closeSmall" },
610
- { "name": "columnGraph" },
611
- { "name": "comment" },
612
- { "name": "connection1" },
613
- { "name": "connection2" },
614
- { "name": "connection3" },
615
- { "name": "connection4" },
616
- { "name": "danger" },
617
- { "name": "defectFrequencies" },
618
- { "name": "defectFrequenciesAlternative" },
619
- { "name": "doubleChevronLeft" },
620
- { "name": "doubleChevronRight" },
621
- { "name": "download" },
622
- { "name": "draft" },
623
- { "name": "draftFilled" },
624
- { "name": "draftOutlined" },
625
- { "name": "dragNDrop" },
626
- { "name": "drop" },
627
- { "name": "duplicate" },
628
- { "name": "edit" },
629
- { "name": "emailFilled" },
630
- { "name": "emailOutlined" },
631
- { "name": "exclamation" },
632
- { "name": "eye" },
633
- { "name": "eyeHidden" },
634
- { "name": "eyeVisible" },
635
- { "name": "filter" },
636
- { "name": "forbidden" },
637
- { "name": "fullScreen" },
638
- { "name": "fullScreenExit" },
639
- { "name": "functionalLocation" },
640
- { "name": "harmonicCursor" },
641
- { "name": "heatmap" },
642
- { "name": "hierarchy" },
643
- { "name": "history" },
644
- { "name": "historyAlt" },
645
- { "name": "hourglassFramedFilled" },
646
- { "name": "hourglassFramedOutlined" },
647
- { "name": "hourglassOutlined" },
648
- { "name": "hz" },
649
- { "name": "iMX" },
650
- { "name": "image" },
651
- { "name": "infoCircleFilled" },
652
- { "name": "infoCircleOutlined" },
653
- { "name": "integration" },
654
- { "name": "kebab" },
655
- { "name": "link" },
656
- { "name": "listGroup" },
657
- { "name": "listItem" },
658
- { "name": "locationPin" },
659
- { "name": "lock" },
660
- { "name": "logOut" },
661
- { "name": "meatballs" },
662
- { "name": "microphone" },
663
- { "name": "minus" },
664
- { "name": "minusSmall" },
665
- { "name": "noData" },
666
- { "name": "o" },
667
- { "name": "openInNew" },
668
- { "name": "overlayBaseline" },
669
- { "name": "pDF" },
670
- { "name": "paper" },
671
- { "name": "pause" },
672
- { "name": "pieChart" },
673
- { "name": "pin" },
674
- { "name": "play" },
675
- { "name": "plus" },
676
- { "name": "powerOff" },
677
- { "name": "printer" },
678
- { "name": "proCollect" },
679
- { "name": "recAction" },
680
- { "name": "received" },
681
- { "name": "refresh" },
682
- { "name": "reorder" },
683
- { "name": "replace" },
684
- { "name": "reply" },
685
- { "name": "rewalkableRoute" },
686
- { "name": "routes" },
687
- { "name": "search" },
688
- { "name": "send" },
689
- { "name": "sensorA" },
690
- { "name": "sensorB" },
691
- { "name": "settings" },
692
- { "name": "sidebandCursor" },
693
- { "name": "singleCursor" },
694
- { "name": "spectrum" },
695
- { "name": "starFilled" },
696
- { "name": "starOutlined" },
697
- { "name": "statusCircle" },
698
- { "name": "stop" },
699
- { "name": "structuralVibration" },
700
- { "name": "sync" },
701
- { "name": "timewave" },
702
- { "name": "trash" },
703
- { "name": "trend" },
704
- { "name": "trendingUp" },
705
- { "name": "undo" },
706
- { "name": "unknownCircle" },
707
- { "name": "unknownDiamond" },
708
- { "name": "unlink" },
709
- { "name": "unlock" },
710
- { "name": "unscheduledAction" },
711
- { "name": "upload" },
712
- { "name": "user" },
713
- { "name": "viewFull" },
714
- { "name": "viewHorizontal" },
715
- { "name": "viewVertical" },
716
- { "name": "warning" },
717
- { "name": "warningCircle" },
718
- { "name": "warningDiamond" },
719
- { "name": "zoomIn" },
720
- { "name": "zoomOut" }
721
- ]
605
+ "name": "site-name",
606
+ "description": "If defined, sets the app or site's name",
607
+ "values": []
722
608
  },
723
609
  {
724
- "name": "size",
725
- "description": "Size of the icon",
726
- "values": [
727
- { "name": "xs" },
728
- { "name": "sm" },
729
- { "name": "md" },
730
- { "name": "lg" }
731
- ]
610
+ "name": "site-url",
611
+ "description": "If defined, sets the site's base-url for the \"logo-link\"",
612
+ "values": []
732
613
  }
733
614
  ],
734
615
  "references": []
735
616
  },
736
617
  {
737
618
  "name": "skf-input",
738
- "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.",
739
620
  "attributes": [
740
621
  {
741
622
  "name": "disabled",
@@ -747,7 +628,11 @@
747
628
  "description": "If true, value is required or must be checked for the form to be submittable",
748
629
  "values": []
749
630
  },
750
- { "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
+ },
751
636
  {
752
637
  "name": "button-aria-label-clear",
753
638
  "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
@@ -785,17 +670,8 @@
785
670
  },
786
671
  {
787
672
  "name": "inputmode",
788
- "description": "Tells what keyboard to use if applicable",
789
- "values": [
790
- { "name": "none" },
791
- { "name": "text" },
792
- { "name": "tel" },
793
- { "name": "url" },
794
- { "name": "email" },
795
- { "name": "numeric" },
796
- { "name": "decimal" },
797
- { "name": "search" }
798
- ]
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']" }]
799
675
  },
800
676
  {
801
677
  "name": "label",
@@ -855,12 +731,7 @@
855
731
  {
856
732
  "name": "severity",
857
733
  "description": "If defined, displays provided severity state",
858
- "values": [
859
- { "name": "alert" },
860
- { "name": "success" },
861
- { "name": "info" },
862
- { "name": "warning" }
863
- ]
734
+ "values": [{ "name": "FormFieldSeverity" }]
864
735
  },
865
736
  {
866
737
  "name": "show-valid",
@@ -879,28 +750,15 @@
879
750
  },
880
751
  {
881
752
  "name": "type",
882
- "description": "Type of input control",
753
+ "description": "Type of input",
883
754
  "values": [
884
- { "name": "button" },
885
- { "name": "color" },
886
- { "name": "date" },
887
- { "name": "datetime-local" },
888
755
  { "name": "email" },
889
- { "name": "file" },
890
- { "name": "hidden" },
891
- { "name": "image" },
892
- { "name": "month" },
893
756
  { "name": "number" },
894
757
  { "name": "password" },
895
- { "name": "range" },
896
- { "name": "reset" },
897
758
  { "name": "search" },
898
- { "name": "submit" },
899
759
  { "name": "tel" },
900
760
  { "name": "text" },
901
- { "name": "time" },
902
- { "name": "url" },
903
- { "name": "week" }
761
+ { "name": "url" }
904
762
  ]
905
763
  },
906
764
  {
@@ -952,159 +810,7 @@
952
810
  {
953
811
  "name": "icon",
954
812
  "description": "If defined, renders an icon before or after the text",
955
- "values": [
956
- { "name": "arrowDown" },
957
- { "name": "arrowDownUp" },
958
- { "name": "arrowLeft" },
959
- { "name": "arrowRight" },
960
- { "name": "arrowUp" },
961
- { "name": "article" },
962
- { "name": "artificialIntelligence" },
963
- { "name": "asset" },
964
- { "name": "attachment" },
965
- { "name": "bandCursor" },
966
- { "name": "bands" },
967
- { "name": "batteryEmpty" },
968
- { "name": "batteryFull" },
969
- { "name": "batteryLow" },
970
- { "name": "bearingFault" },
971
- { "name": "book" },
972
- { "name": "bulb" },
973
- { "name": "burger" },
974
- { "name": "cPM" },
975
- { "name": "calendar" },
976
- { "name": "calendarBooked" },
977
- { "name": "calendarEmpty" },
978
- { "name": "calendarNotBooked" },
979
- { "name": "calendarRecurring" },
980
- { "name": "caretDown" },
981
- { "name": "caretUp" },
982
- { "name": "caretUpDown" },
983
- { "name": "chat" },
984
- { "name": "check" },
985
- { "name": "checkCircle" },
986
- { "name": "checkSmall" },
987
- { "name": "chevronDown" },
988
- { "name": "chevronLeft" },
989
- { "name": "chevronRight" },
990
- { "name": "chevronUp" },
991
- { "name": "chevronUpDown" },
992
- { "name": "close" },
993
- { "name": "closeAllFaults" },
994
- { "name": "closeFault" },
995
- { "name": "closeSmall" },
996
- { "name": "columnGraph" },
997
- { "name": "comment" },
998
- { "name": "connection1" },
999
- { "name": "connection2" },
1000
- { "name": "connection3" },
1001
- { "name": "connection4" },
1002
- { "name": "danger" },
1003
- { "name": "defectFrequencies" },
1004
- { "name": "defectFrequenciesAlternative" },
1005
- { "name": "doubleChevronLeft" },
1006
- { "name": "doubleChevronRight" },
1007
- { "name": "download" },
1008
- { "name": "draft" },
1009
- { "name": "draftFilled" },
1010
- { "name": "draftOutlined" },
1011
- { "name": "dragNDrop" },
1012
- { "name": "drop" },
1013
- { "name": "duplicate" },
1014
- { "name": "edit" },
1015
- { "name": "emailFilled" },
1016
- { "name": "emailOutlined" },
1017
- { "name": "exclamation" },
1018
- { "name": "eye" },
1019
- { "name": "eyeHidden" },
1020
- { "name": "eyeVisible" },
1021
- { "name": "filter" },
1022
- { "name": "forbidden" },
1023
- { "name": "fullScreen" },
1024
- { "name": "fullScreenExit" },
1025
- { "name": "functionalLocation" },
1026
- { "name": "harmonicCursor" },
1027
- { "name": "heatmap" },
1028
- { "name": "hierarchy" },
1029
- { "name": "history" },
1030
- { "name": "historyAlt" },
1031
- { "name": "hourglassFramedFilled" },
1032
- { "name": "hourglassFramedOutlined" },
1033
- { "name": "hourglassOutlined" },
1034
- { "name": "hz" },
1035
- { "name": "iMX" },
1036
- { "name": "image" },
1037
- { "name": "infoCircleFilled" },
1038
- { "name": "infoCircleOutlined" },
1039
- { "name": "integration" },
1040
- { "name": "kebab" },
1041
- { "name": "link" },
1042
- { "name": "listGroup" },
1043
- { "name": "listItem" },
1044
- { "name": "locationPin" },
1045
- { "name": "lock" },
1046
- { "name": "logOut" },
1047
- { "name": "meatballs" },
1048
- { "name": "microphone" },
1049
- { "name": "minus" },
1050
- { "name": "minusSmall" },
1051
- { "name": "noData" },
1052
- { "name": "o" },
1053
- { "name": "openInNew" },
1054
- { "name": "overlayBaseline" },
1055
- { "name": "pDF" },
1056
- { "name": "paper" },
1057
- { "name": "pause" },
1058
- { "name": "pieChart" },
1059
- { "name": "pin" },
1060
- { "name": "play" },
1061
- { "name": "plus" },
1062
- { "name": "powerOff" },
1063
- { "name": "printer" },
1064
- { "name": "proCollect" },
1065
- { "name": "recAction" },
1066
- { "name": "received" },
1067
- { "name": "refresh" },
1068
- { "name": "reorder" },
1069
- { "name": "replace" },
1070
- { "name": "reply" },
1071
- { "name": "rewalkableRoute" },
1072
- { "name": "routes" },
1073
- { "name": "search" },
1074
- { "name": "send" },
1075
- { "name": "sensorA" },
1076
- { "name": "sensorB" },
1077
- { "name": "settings" },
1078
- { "name": "sidebandCursor" },
1079
- { "name": "singleCursor" },
1080
- { "name": "spectrum" },
1081
- { "name": "starFilled" },
1082
- { "name": "starOutlined" },
1083
- { "name": "statusCircle" },
1084
- { "name": "stop" },
1085
- { "name": "structuralVibration" },
1086
- { "name": "sync" },
1087
- { "name": "timewave" },
1088
- { "name": "trash" },
1089
- { "name": "trend" },
1090
- { "name": "trendingUp" },
1091
- { "name": "undo" },
1092
- { "name": "unknownCircle" },
1093
- { "name": "unknownDiamond" },
1094
- { "name": "unlink" },
1095
- { "name": "unlock" },
1096
- { "name": "unscheduledAction" },
1097
- { "name": "upload" },
1098
- { "name": "user" },
1099
- { "name": "viewFull" },
1100
- { "name": "viewHorizontal" },
1101
- { "name": "viewVertical" },
1102
- { "name": "warning" },
1103
- { "name": "warningCircle" },
1104
- { "name": "warningDiamond" },
1105
- { "name": "zoomIn" },
1106
- { "name": "zoomOut" }
1107
- ]
813
+ "values": [{ "name": "Icon" }]
1108
814
  },
1109
815
  {
1110
816
  "name": "icon-placement",
@@ -1139,67 +845,14 @@
1139
845
  {
1140
846
  "name": "type",
1141
847
  "description": "Defines the type of button",
1142
- "values": [
1143
- { "name": "button" },
1144
- { "name": "submit" },
1145
- { "name": "reset" }
1146
- ]
1147
- }
1148
- ],
1149
- "references": []
1150
- },
1151
- {
1152
- "name": "skf-loader",
1153
- "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
1154
- "attributes": [
1155
- {
1156
- "name": "aria-label",
1157
- "description": "Defines the aria-label",
1158
- "values": []
1159
- },
1160
- {
1161
- "name": "invert",
1162
- "description": "If true, inverts the color (to be used on colored backgrounds)",
1163
- "values": []
1164
- },
1165
- {
1166
- "name": "size",
1167
- "description": "Defines the size of the loader",
1168
- "values": [{ "name": "md" }, { "name": "sm" }]
1169
- }
1170
- ],
1171
- "references": []
1172
- },
1173
- {
1174
- "name": "skf-logo",
1175
- "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)_",
1176
- "attributes": [
1177
- {
1178
- "name": "title",
1179
- "description": "Defines the title of the logo",
1180
- "values": []
1181
- },
1182
- {
1183
- "name": "color",
1184
- "description": "Defines the color of the logo",
1185
- "values": [
1186
- { "name": "primary" },
1187
- { "name": "secondary" },
1188
- { "name": "inverse" }
1189
- ]
848
+ "values": [{ "name": "SkfLinkType" }]
1190
849
  }
1191
850
  ],
1192
851
  "references": []
1193
852
  },
1194
- {
1195
- "name": "skf-menu",
1196
- "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",
1197
- "attributes": [],
1198
- "references": []
1199
- },
1200
853
  {
1201
854
  "name": "skf-menu-item",
1202
- "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",
1203
856
  "attributes": [
1204
857
  {
1205
858
  "name": "as",
@@ -1229,159 +882,7 @@
1229
882
  {
1230
883
  "name": "icon",
1231
884
  "description": "If defined, renders an icon before or after the text",
1232
- "values": [
1233
- { "name": "arrowDown" },
1234
- { "name": "arrowDownUp" },
1235
- { "name": "arrowLeft" },
1236
- { "name": "arrowRight" },
1237
- { "name": "arrowUp" },
1238
- { "name": "article" },
1239
- { "name": "artificialIntelligence" },
1240
- { "name": "asset" },
1241
- { "name": "attachment" },
1242
- { "name": "bandCursor" },
1243
- { "name": "bands" },
1244
- { "name": "batteryEmpty" },
1245
- { "name": "batteryFull" },
1246
- { "name": "batteryLow" },
1247
- { "name": "bearingFault" },
1248
- { "name": "book" },
1249
- { "name": "bulb" },
1250
- { "name": "burger" },
1251
- { "name": "cPM" },
1252
- { "name": "calendar" },
1253
- { "name": "calendarBooked" },
1254
- { "name": "calendarEmpty" },
1255
- { "name": "calendarNotBooked" },
1256
- { "name": "calendarRecurring" },
1257
- { "name": "caretDown" },
1258
- { "name": "caretUp" },
1259
- { "name": "caretUpDown" },
1260
- { "name": "chat" },
1261
- { "name": "check" },
1262
- { "name": "checkCircle" },
1263
- { "name": "checkSmall" },
1264
- { "name": "chevronDown" },
1265
- { "name": "chevronLeft" },
1266
- { "name": "chevronRight" },
1267
- { "name": "chevronUp" },
1268
- { "name": "chevronUpDown" },
1269
- { "name": "close" },
1270
- { "name": "closeAllFaults" },
1271
- { "name": "closeFault" },
1272
- { "name": "closeSmall" },
1273
- { "name": "columnGraph" },
1274
- { "name": "comment" },
1275
- { "name": "connection1" },
1276
- { "name": "connection2" },
1277
- { "name": "connection3" },
1278
- { "name": "connection4" },
1279
- { "name": "danger" },
1280
- { "name": "defectFrequencies" },
1281
- { "name": "defectFrequenciesAlternative" },
1282
- { "name": "doubleChevronLeft" },
1283
- { "name": "doubleChevronRight" },
1284
- { "name": "download" },
1285
- { "name": "draft" },
1286
- { "name": "draftFilled" },
1287
- { "name": "draftOutlined" },
1288
- { "name": "dragNDrop" },
1289
- { "name": "drop" },
1290
- { "name": "duplicate" },
1291
- { "name": "edit" },
1292
- { "name": "emailFilled" },
1293
- { "name": "emailOutlined" },
1294
- { "name": "exclamation" },
1295
- { "name": "eye" },
1296
- { "name": "eyeHidden" },
1297
- { "name": "eyeVisible" },
1298
- { "name": "filter" },
1299
- { "name": "forbidden" },
1300
- { "name": "fullScreen" },
1301
- { "name": "fullScreenExit" },
1302
- { "name": "functionalLocation" },
1303
- { "name": "harmonicCursor" },
1304
- { "name": "heatmap" },
1305
- { "name": "hierarchy" },
1306
- { "name": "history" },
1307
- { "name": "historyAlt" },
1308
- { "name": "hourglassFramedFilled" },
1309
- { "name": "hourglassFramedOutlined" },
1310
- { "name": "hourglassOutlined" },
1311
- { "name": "hz" },
1312
- { "name": "iMX" },
1313
- { "name": "image" },
1314
- { "name": "infoCircleFilled" },
1315
- { "name": "infoCircleOutlined" },
1316
- { "name": "integration" },
1317
- { "name": "kebab" },
1318
- { "name": "link" },
1319
- { "name": "listGroup" },
1320
- { "name": "listItem" },
1321
- { "name": "locationPin" },
1322
- { "name": "lock" },
1323
- { "name": "logOut" },
1324
- { "name": "meatballs" },
1325
- { "name": "microphone" },
1326
- { "name": "minus" },
1327
- { "name": "minusSmall" },
1328
- { "name": "noData" },
1329
- { "name": "o" },
1330
- { "name": "openInNew" },
1331
- { "name": "overlayBaseline" },
1332
- { "name": "pDF" },
1333
- { "name": "paper" },
1334
- { "name": "pause" },
1335
- { "name": "pieChart" },
1336
- { "name": "pin" },
1337
- { "name": "play" },
1338
- { "name": "plus" },
1339
- { "name": "powerOff" },
1340
- { "name": "printer" },
1341
- { "name": "proCollect" },
1342
- { "name": "recAction" },
1343
- { "name": "received" },
1344
- { "name": "refresh" },
1345
- { "name": "reorder" },
1346
- { "name": "replace" },
1347
- { "name": "reply" },
1348
- { "name": "rewalkableRoute" },
1349
- { "name": "routes" },
1350
- { "name": "search" },
1351
- { "name": "send" },
1352
- { "name": "sensorA" },
1353
- { "name": "sensorB" },
1354
- { "name": "settings" },
1355
- { "name": "sidebandCursor" },
1356
- { "name": "singleCursor" },
1357
- { "name": "spectrum" },
1358
- { "name": "starFilled" },
1359
- { "name": "starOutlined" },
1360
- { "name": "statusCircle" },
1361
- { "name": "stop" },
1362
- { "name": "structuralVibration" },
1363
- { "name": "sync" },
1364
- { "name": "timewave" },
1365
- { "name": "trash" },
1366
- { "name": "trend" },
1367
- { "name": "trendingUp" },
1368
- { "name": "undo" },
1369
- { "name": "unknownCircle" },
1370
- { "name": "unknownDiamond" },
1371
- { "name": "unlink" },
1372
- { "name": "unlock" },
1373
- { "name": "unscheduledAction" },
1374
- { "name": "upload" },
1375
- { "name": "user" },
1376
- { "name": "viewFull" },
1377
- { "name": "viewHorizontal" },
1378
- { "name": "viewVertical" },
1379
- { "name": "warning" },
1380
- { "name": "warningCircle" },
1381
- { "name": "warningDiamond" },
1382
- { "name": "zoomIn" },
1383
- { "name": "zoomOut" }
1384
- ]
885
+ "values": [{ "name": "Icon" }]
1385
886
  },
1386
887
  {
1387
888
  "name": "icon-placement",
@@ -1416,19 +917,77 @@
1416
917
  {
1417
918
  "name": "type",
1418
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",
1419
932
  "values": [
1420
- { "name": "button" },
1421
- { "name": "submit" },
1422
- { "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" }
1423
945
  ]
946
+ },
947
+ {
948
+ "name": "anchor",
949
+ "description": "The id of the element the menu will be anchored to",
950
+ "values": []
1424
951
  }
1425
952
  ],
1426
953
  "references": []
1427
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
+ },
1428
964
  {
1429
965
  "name": "skf-popover",
1430
- "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",
1431
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
+ },
1432
991
  {
1433
992
  "name": "offset",
1434
993
  "description": "If defined, sets a custom offset for the popover",
@@ -1466,7 +1025,7 @@
1466
1025
  },
1467
1026
  {
1468
1027
  "name": "skf-radio",
1469
- "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.",
1470
1029
  "attributes": [
1471
1030
  {
1472
1031
  "name": "disabled",
@@ -1516,12 +1075,7 @@
1516
1075
  {
1517
1076
  "name": "severity",
1518
1077
  "description": "If defined, displays provided severity state",
1519
- "values": [
1520
- { "name": "success" },
1521
- { "name": "info" },
1522
- { "name": "warning" },
1523
- { "name": "alert" }
1524
- ]
1078
+ "values": [{ "name": "FormFieldSeverity" }]
1525
1079
  },
1526
1080
  {
1527
1081
  "name": "show-valid",
@@ -1536,13 +1090,81 @@
1536
1090
  ],
1537
1091
  "references": []
1538
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
+ },
1539
1156
  {
1540
1157
  "name": "skf-select",
1541
- "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",
1542
1159
  "attributes": [
1543
1160
  {
1544
1161
  "name": "disabled",
1545
- "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",
1546
1168
  "values": []
1547
1169
  },
1548
1170
  {
@@ -1603,7 +1225,7 @@
1603
1225
  {
1604
1226
  "name": "severity",
1605
1227
  "description": "If defined, displays provided severity state",
1606
- "values": [{ "name": "FormFieldBaseProps['severity']" }]
1228
+ "values": [{ "name": "FormFieldSeverity" }]
1607
1229
  },
1608
1230
  {
1609
1231
  "name": "show-valid",
@@ -1620,7 +1242,7 @@
1620
1242
  },
1621
1243
  {
1622
1244
  "name": "skf-select-option",
1623
- "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).",
1624
1246
  "attributes": [
1625
1247
  {
1626
1248
  "name": "disabled",
@@ -1630,12 +1252,12 @@
1630
1252
  {
1631
1253
  "name": "icon",
1632
1254
  "description": "If defined, set an icon",
1633
- "values": [{ "name": "SkfIcon['name']" }]
1255
+ "values": [{ "name": "Icon" }]
1634
1256
  },
1635
1257
  {
1636
1258
  "name": "icon-color",
1637
1259
  "description": "If defined, sets provided color on the icon",
1638
- "values": [{ "name": "SeverityFgColor" }]
1260
+ "values": [{ "name": "IconColor" }]
1639
1261
  },
1640
1262
  {
1641
1263
  "name": "selected",
@@ -1655,29 +1277,6 @@
1655
1277
  ],
1656
1278
  "references": []
1657
1279
  },
1658
- {
1659
- "name": "skf-select-option-group",
1660
- "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",
1661
- "attributes": [{ "name": "label", "values": [] }],
1662
- "references": []
1663
- },
1664
- {
1665
- "name": "skf-stepper",
1666
- "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>`",
1667
- "attributes": [
1668
- {
1669
- "name": "activeIndex",
1670
- "description": "Sets the active item",
1671
- "values": []
1672
- },
1673
- {
1674
- "name": "linear",
1675
- "description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
1676
- "values": []
1677
- }
1678
- ],
1679
- "references": []
1680
- },
1681
1280
  {
1682
1281
  "name": "skf-stepper-item",
1683
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",
@@ -1698,9 +1297,26 @@
1698
1297
  ],
1699
1298
  "references": []
1700
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
+ },
1701
1317
  {
1702
1318
  "name": "skf-switch",
1703
- "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.",
1704
1320
  "attributes": [
1705
1321
  {
1706
1322
  "name": "disabled",
@@ -1756,20 +1372,16 @@
1756
1372
  "references": []
1757
1373
  },
1758
1374
  {
1759
- "name": "skf-tab",
1760
- "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",
1761
1377
  "attributes": [
1762
- {
1763
- "name": "panel",
1764
- "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
1765
- "values": []
1766
- }
1378
+ { "name": "name", "description": "The tab panel's name.", "values": [] }
1767
1379
  ],
1768
1380
  "references": []
1769
1381
  },
1770
1382
  {
1771
- "name": "skf-tab-group",
1772
- "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",
1773
1385
  "attributes": [
1774
1386
  {
1775
1387
  "name": "default-selected",
@@ -1800,193 +1412,12 @@
1800
1412
  "references": []
1801
1413
  },
1802
1414
  {
1803
- "name": "skf-tab-panel",
1804
- "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",
1805
- "attributes": [
1806
- { "name": "name", "description": "The tab panel's name.", "values": [] }
1807
- ],
1808
- "references": []
1809
- },
1810
- {
1811
- "name": "skf-tag",
1812
- "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",
1813
1417
  "attributes": [
1814
1418
  {
1815
- "name": "size",
1816
- "description": "Specifies Tag size",
1817
- "values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
1818
- },
1819
- {
1820
- "name": "icon",
1821
- "description": "If defined, displays leading/provided icon",
1822
- "values": [
1823
- { "name": "arrowDown" },
1824
- { "name": "arrowDownUp" },
1825
- { "name": "arrowLeft" },
1826
- { "name": "arrowRight" },
1827
- { "name": "arrowUp" },
1828
- { "name": "article" },
1829
- { "name": "artificialIntelligence" },
1830
- { "name": "asset" },
1831
- { "name": "attachment" },
1832
- { "name": "bandCursor" },
1833
- { "name": "bands" },
1834
- { "name": "batteryEmpty" },
1835
- { "name": "batteryFull" },
1836
- { "name": "batteryLow" },
1837
- { "name": "bearingFault" },
1838
- { "name": "book" },
1839
- { "name": "bulb" },
1840
- { "name": "burger" },
1841
- { "name": "cPM" },
1842
- { "name": "calendar" },
1843
- { "name": "calendarBooked" },
1844
- { "name": "calendarEmpty" },
1845
- { "name": "calendarNotBooked" },
1846
- { "name": "calendarRecurring" },
1847
- { "name": "caretDown" },
1848
- { "name": "caretUp" },
1849
- { "name": "caretUpDown" },
1850
- { "name": "chat" },
1851
- { "name": "check" },
1852
- { "name": "checkCircle" },
1853
- { "name": "checkSmall" },
1854
- { "name": "chevronDown" },
1855
- { "name": "chevronLeft" },
1856
- { "name": "chevronRight" },
1857
- { "name": "chevronUp" },
1858
- { "name": "chevronUpDown" },
1859
- { "name": "close" },
1860
- { "name": "closeAllFaults" },
1861
- { "name": "closeFault" },
1862
- { "name": "closeSmall" },
1863
- { "name": "columnGraph" },
1864
- { "name": "comment" },
1865
- { "name": "connection1" },
1866
- { "name": "connection2" },
1867
- { "name": "connection3" },
1868
- { "name": "connection4" },
1869
- { "name": "danger" },
1870
- { "name": "defectFrequencies" },
1871
- { "name": "defectFrequenciesAlternative" },
1872
- { "name": "doubleChevronLeft" },
1873
- { "name": "doubleChevronRight" },
1874
- { "name": "download" },
1875
- { "name": "draft" },
1876
- { "name": "draftFilled" },
1877
- { "name": "draftOutlined" },
1878
- { "name": "dragNDrop" },
1879
- { "name": "drop" },
1880
- { "name": "duplicate" },
1881
- { "name": "edit" },
1882
- { "name": "emailFilled" },
1883
- { "name": "emailOutlined" },
1884
- { "name": "exclamation" },
1885
- { "name": "eye" },
1886
- { "name": "eyeHidden" },
1887
- { "name": "eyeVisible" },
1888
- { "name": "filter" },
1889
- { "name": "forbidden" },
1890
- { "name": "fullScreen" },
1891
- { "name": "fullScreenExit" },
1892
- { "name": "functionalLocation" },
1893
- { "name": "harmonicCursor" },
1894
- { "name": "heatmap" },
1895
- { "name": "hierarchy" },
1896
- { "name": "history" },
1897
- { "name": "historyAlt" },
1898
- { "name": "hourglassFramedFilled" },
1899
- { "name": "hourglassFramedOutlined" },
1900
- { "name": "hourglassOutlined" },
1901
- { "name": "hz" },
1902
- { "name": "iMX" },
1903
- { "name": "image" },
1904
- { "name": "infoCircleFilled" },
1905
- { "name": "infoCircleOutlined" },
1906
- { "name": "integration" },
1907
- { "name": "kebab" },
1908
- { "name": "link" },
1909
- { "name": "listGroup" },
1910
- { "name": "listItem" },
1911
- { "name": "locationPin" },
1912
- { "name": "lock" },
1913
- { "name": "logOut" },
1914
- { "name": "meatballs" },
1915
- { "name": "microphone" },
1916
- { "name": "minus" },
1917
- { "name": "minusSmall" },
1918
- { "name": "noData" },
1919
- { "name": "o" },
1920
- { "name": "openInNew" },
1921
- { "name": "overlayBaseline" },
1922
- { "name": "pDF" },
1923
- { "name": "paper" },
1924
- { "name": "pause" },
1925
- { "name": "pieChart" },
1926
- { "name": "pin" },
1927
- { "name": "play" },
1928
- { "name": "plus" },
1929
- { "name": "powerOff" },
1930
- { "name": "printer" },
1931
- { "name": "proCollect" },
1932
- { "name": "recAction" },
1933
- { "name": "received" },
1934
- { "name": "refresh" },
1935
- { "name": "reorder" },
1936
- { "name": "replace" },
1937
- { "name": "reply" },
1938
- { "name": "rewalkableRoute" },
1939
- { "name": "routes" },
1940
- { "name": "search" },
1941
- { "name": "send" },
1942
- { "name": "sensorA" },
1943
- { "name": "sensorB" },
1944
- { "name": "settings" },
1945
- { "name": "sidebandCursor" },
1946
- { "name": "singleCursor" },
1947
- { "name": "spectrum" },
1948
- { "name": "starFilled" },
1949
- { "name": "starOutlined" },
1950
- { "name": "statusCircle" },
1951
- { "name": "stop" },
1952
- { "name": "structuralVibration" },
1953
- { "name": "sync" },
1954
- { "name": "timewave" },
1955
- { "name": "trash" },
1956
- { "name": "trend" },
1957
- { "name": "trendingUp" },
1958
- { "name": "undo" },
1959
- { "name": "unknownCircle" },
1960
- { "name": "unknownDiamond" },
1961
- { "name": "unlink" },
1962
- { "name": "unlock" },
1963
- { "name": "unscheduledAction" },
1964
- { "name": "upload" },
1965
- { "name": "user" },
1966
- { "name": "viewFull" },
1967
- { "name": "viewHorizontal" },
1968
- { "name": "viewVertical" },
1969
- { "name": "warning" },
1970
- { "name": "warningCircle" },
1971
- { "name": "warningDiamond" },
1972
- { "name": "zoomIn" },
1973
- { "name": "zoomOut" }
1974
- ]
1975
- },
1976
- {
1977
- "name": "color",
1978
- "description": "If defined, gives the supplied appearance",
1979
- "values": [
1980
- { "name": "warning" },
1981
- { "name": "success" },
1982
- { "name": "info" },
1983
- { "name": "error" },
1984
- { "name": "alert" }
1985
- ]
1986
- },
1987
- {
1988
- "name": "removable",
1989
- "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.",
1990
1421
  "values": []
1991
1422
  }
1992
1423
  ],
@@ -2074,12 +1505,7 @@
2074
1505
  {
2075
1506
  "name": "severity",
2076
1507
  "description": "If defined, displays provided severity state",
2077
- "values": [
2078
- { "name": "success" },
2079
- { "name": "info" },
2080
- { "name": "warning" },
2081
- { "name": "alert" }
2082
- ]
1508
+ "values": [{ "name": "FormFieldSeverity" }]
2083
1509
  },
2084
1510
  {
2085
1511
  "name": "show-valid",
@@ -2108,25 +1534,31 @@
2108
1534
  ],
2109
1535
  "references": []
2110
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
+ },
2111
1543
  {
2112
1544
  "name": "skf-toast",
2113
- "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",
2114
1546
  "attributes": [
1547
+ { "name": "debug", "values": [] },
1548
+ {
1549
+ "name": "icon",
1550
+ "description": "If defined, displays leading icon",
1551
+ "values": [{ "name": "Icon" }]
1552
+ },
2115
1553
  {
2116
- "name": "closeable",
2117
- "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`",
2118
1556
  "values": []
2119
1557
  },
2120
- { "name": "debug", "values": [] },
2121
1558
  {
2122
1559
  "name": "severity",
2123
- "description": "Severity of the toast.",
2124
- "values": [
2125
- { "name": "info" },
2126
- { "name": "success" },
2127
- { "name": "warning" },
2128
- { "name": "error" }
2129
- ]
1560
+ "description": "If defined, gives the supplied appearance",
1561
+ "values": [{ "name": "Severity" }]
2130
1562
  },
2131
1563
  {
2132
1564
  "name": "timer",
@@ -2141,16 +1573,34 @@
2141
1573
  ],
2142
1574
  "references": []
2143
1575
  },
2144
- {
2145
- "name": "skf-toast-wrapper",
2146
- "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.",
2147
- "attributes": [{ "name": "debug", "values": [] }],
2148
- "references": []
2149
- },
2150
1576
  {
2151
1577
  "name": "skf-tooltip",
2152
- "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",
2153
- "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
+ ],
2154
1604
  "references": []
2155
1605
  }
2156
1606
  ]