@skf-design-system/ui-components 1.0.0-alpha.27 → 1.0.0-alpha.28

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 (91) hide show
  1. package/README.md +26 -6
  2. package/custom-elements.json +18265 -0
  3. package/dist/components/alert/alert.component.js +20 -18
  4. package/dist/components/alert/alert.styles.js +50 -47
  5. package/dist/components/button/button.component.d.ts +24 -0
  6. package/dist/components/button/button.component.js +79 -55
  7. package/dist/components/button/button.styles.js +1 -0
  8. package/dist/components/checkbox/checkbox.component.d.ts +3 -8
  9. package/dist/components/checkbox/checkbox.component.js +95 -90
  10. package/dist/components/checkbox/checkbox.styles.js +2 -2
  11. package/dist/components/input/input.component.d.ts +10 -0
  12. package/dist/components/input/input.component.js +89 -82
  13. package/dist/components/progress/progress.component.d.ts +22 -0
  14. package/dist/components/progress/progress.component.js +40 -0
  15. package/dist/components/progress/progress.d.ts +8 -0
  16. package/dist/components/progress/progress.js +6 -0
  17. package/dist/components/progress/progress.styles.d.ts +1 -0
  18. package/dist/components/progress/progress.styles.js +47 -0
  19. package/dist/components/radio/radio.component.d.ts +4 -6
  20. package/dist/components/radio/radio.component.js +93 -77
  21. package/dist/components/select/select.component.d.ts +5 -2
  22. package/dist/components/select/select.component.js +103 -88
  23. package/dist/components/select/select.controllers.js +5 -2
  24. package/dist/components/switch/switch.component.js +4 -1
  25. package/dist/components/tab/tab.component.d.ts +29 -0
  26. package/dist/components/tab/tab.component.js +57 -0
  27. package/dist/components/tab/tab.d.ts +8 -0
  28. package/dist/components/tab/tab.js +6 -0
  29. package/dist/components/tab/tab.styles.d.ts +1 -0
  30. package/dist/components/tab/tab.styles.js +123 -0
  31. package/dist/components/tab-group/tab-group.component.d.ts +43 -0
  32. package/dist/components/tab-group/tab-group.component.js +98 -0
  33. package/dist/components/tab-group/tab-group.d.ts +8 -0
  34. package/dist/components/tab-group/tab-group.js +6 -0
  35. package/dist/components/tab-group/tab-group.styles.d.ts +1 -0
  36. package/dist/components/tab-group/tab-group.styles.js +75 -0
  37. package/dist/components/tab-panel/tab-panel.component.d.ts +19 -0
  38. package/dist/components/tab-panel/tab-panel.component.js +36 -0
  39. package/dist/components/tab-panel/tab-panel.d.ts +8 -0
  40. package/dist/components/tab-panel/tab-panel.js +6 -0
  41. package/dist/components/tab-panel/tab-panel.styles.d.ts +1 -0
  42. package/dist/components/tab-panel/tab-panel.styles.js +13 -0
  43. package/dist/components/textarea/textarea.component.js +5 -5
  44. package/dist/components/toast/toast.component.d.ts +35 -0
  45. package/dist/components/toast/toast.component.js +52 -0
  46. package/dist/components/toast/toast.d.ts +8 -0
  47. package/dist/components/toast/toast.js +6 -0
  48. package/dist/components/toast/toast.singleton.d.ts +26 -0
  49. package/dist/components/toast/toast.singleton.js +53 -0
  50. package/dist/components/toast/toast.styles.d.ts +1 -0
  51. package/dist/components/toast/toast.styles.js +9 -0
  52. package/dist/components/toast-item/toast-item.component.d.ts +21 -0
  53. package/dist/components/toast-item/toast-item.component.js +65 -0
  54. package/dist/components/toast-item/toast-item.d.ts +6 -0
  55. package/dist/components/toast-item/toast-item.js +2 -0
  56. package/dist/components/toast-item/toast-item.styles.d.ts +2 -0
  57. package/dist/components/toast-item/toast-item.styles.js +16 -0
  58. package/dist/components/toast-wrapper/toast-wrapper.component.d.ts +24 -0
  59. package/dist/components/toast-wrapper/toast-wrapper.component.js +37 -0
  60. package/dist/components/toast-wrapper/toast-wrapper.d.ts +8 -0
  61. package/dist/components/toast-wrapper/toast-wrapper.js +6 -0
  62. package/dist/components/toast-wrapper/toast-wrapper.styles.d.ts +1 -0
  63. package/dist/components/toast-wrapper/toast-wrapper.styles.js +20 -0
  64. package/dist/custom-elements.json +1167 -311
  65. package/dist/index.d.ts +5 -0
  66. package/dist/index.js +57 -42
  67. package/dist/internal/components/formBase.d.ts +1 -0
  68. package/dist/internal/components/formBase.js +11 -11
  69. package/dist/internal/helpers/watch.d.ts +27 -0
  70. package/dist/internal/helpers/watch.js +28 -0
  71. package/dist/react/index.d.ts +6 -0
  72. package/dist/react/index.js +6 -0
  73. package/dist/react/skf-button/index.d.ts +7 -1
  74. package/dist/react/skf-button/index.js +5 -1
  75. package/dist/react/skf-progress/index.d.ts +3 -0
  76. package/dist/react/skf-progress/index.js +13 -0
  77. package/dist/react/skf-tab/index.d.ts +12 -0
  78. package/dist/react/skf-tab/index.js +18 -0
  79. package/dist/react/skf-tab-group/index.d.ts +3 -0
  80. package/dist/react/skf-tab-group/index.js +13 -0
  81. package/dist/react/skf-tab-panel/index.d.ts +3 -0
  82. package/dist/react/skf-tab-panel/index.js +13 -0
  83. package/dist/react/skf-toast/index.d.ts +3 -0
  84. package/dist/react/skf-toast/index.js +13 -0
  85. package/dist/react/skf-toast-wrapper/index.d.ts +3 -0
  86. package/dist/react/skf-toast-wrapper/index.js +13 -0
  87. package/dist/types/jsx/custom-element-jsx.d.ts +115 -1096
  88. package/dist/types/vue/index.d.ts +147 -8
  89. package/dist/vscode.html-custom-data.json +116 -16
  90. package/dist/web-types.json +304 -35
  91. package/package.json +27 -27
@@ -162,7 +162,7 @@
162
162
  },
163
163
  {
164
164
  "name": "skf-button",
165
- "description": "Component to be used in forms or for interactivity\n---\n\n\n### **Slots:**\n - _default_ - The Primary content",
165
+ "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",
166
166
  "doc-url": "",
167
167
  "attributes": [
168
168
  {
@@ -195,6 +195,10 @@
195
195
  "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
196
196
  "value": { "type": "boolean", "default": "false" }
197
197
  },
198
+ {
199
+ "name": "no-validate",
200
+ "value": { "type": "boolean", "default": "false" }
201
+ },
198
202
  {
199
203
  "name": "size",
200
204
  "description": "If provided, displays an alternative size",
@@ -218,7 +222,12 @@
218
222
  }
219
223
  ],
220
224
  "slots": [{ "name": "", "description": "The Primary content" }],
221
- "events": [],
225
+ "events": [
226
+ {
227
+ "name": "click",
228
+ "description": "Fires when the button is clicked"
229
+ }
230
+ ],
222
231
  "js": {
223
232
  "properties": [
224
233
  {
@@ -246,6 +255,7 @@
246
255
  "description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
247
256
  "type": "boolean"
248
257
  },
258
+ { "name": "noValidate", "type": "boolean" },
249
259
  {
250
260
  "name": "size",
251
261
  "description": "If provided, displays an alternative size",
@@ -262,7 +272,12 @@
262
272
  "type": "'primary' | 'secondary'"
263
273
  }
264
274
  ],
265
- "events": []
275
+ "events": [
276
+ {
277
+ "name": "click",
278
+ "description": "Fires when the button is clicked"
279
+ }
280
+ ]
266
281
  }
267
282
  },
268
283
  {
@@ -339,21 +354,11 @@
339
354
  "description": "If true, forces component to invalid state until removed",
340
355
  "value": { "type": "boolean | undefined" }
341
356
  },
342
- {
343
- "name": "hide-label",
344
- "description": "If true, hides the label visually",
345
- "value": { "type": "boolean | undefined" }
346
- },
347
357
  {
348
358
  "name": "indeterminate",
349
359
  "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
350
360
  "value": { "type": "boolean | undefined" }
351
361
  },
352
- {
353
- "name": "invalid",
354
- "description": "Read only indicator of the local state. Use custom-invalid to set it to invalid state.",
355
- "value": { "type": "boolean | undefined" }
356
- },
357
362
  {
358
363
  "name": "label",
359
364
  "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
@@ -421,21 +426,11 @@
421
426
  "description": "If true, forces component to invalid state until removed",
422
427
  "type": "boolean | undefined"
423
428
  },
424
- {
425
- "name": "hideLabel",
426
- "description": "If true, hides the label visually",
427
- "type": "boolean | undefined"
428
- },
429
429
  {
430
430
  "name": "indeterminate",
431
431
  "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
432
432
  "type": "boolean | undefined"
433
433
  },
434
- {
435
- "name": "invalid",
436
- "description": "Read only indicator of the local state. Use custom-invalid to set it to invalid state.",
437
- "type": "boolean | undefined"
438
- },
439
434
  {
440
435
  "name": "label",
441
436
  "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
@@ -728,6 +723,11 @@
728
723
  "description": "If true, value is required or must be checked for the form to be submittable",
729
724
  "value": { "type": "boolean" }
730
725
  },
726
+ {
727
+ "name": "autocomplete",
728
+ "description": "-m }",
729
+ "value": { "type": "string" }
730
+ },
731
731
  {
732
732
  "name": "button-aria-label-clear",
733
733
  "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
@@ -888,6 +888,7 @@
888
888
  ],
889
889
  "js": {
890
890
  "properties": [
891
+ { "name": "autocomplete", "description": "-m }", "type": "" },
891
892
  {
892
893
  "name": "buttonAriaLabelClear",
893
894
  "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
@@ -1260,6 +1261,49 @@
1260
1261
  "events": []
1261
1262
  }
1262
1263
  },
1264
+ {
1265
+ "name": "skf-progress",
1266
+ "description": "The `<skf-progress>` element displays an indicator showing the completion progress of a task, typically displayed as a progress bar\n---\n",
1267
+ "doc-url": "",
1268
+ "attributes": [
1269
+ {
1270
+ "name": "animated",
1271
+ "description": "If true, the progress-bar's fill value is animated",
1272
+ "value": { "type": "boolean | undefined" }
1273
+ },
1274
+ {
1275
+ "name": "max",
1276
+ "description": "Describes how much work the task indicated by the progress element requires",
1277
+ "value": { "type": "number", "default": "1" }
1278
+ },
1279
+ {
1280
+ "name": "value",
1281
+ "description": "Specifies how much of the task that has been completed",
1282
+ "value": { "type": "number", "default": "0" }
1283
+ }
1284
+ ],
1285
+ "events": [],
1286
+ "js": {
1287
+ "properties": [
1288
+ {
1289
+ "name": "animated",
1290
+ "description": "If true, the progress-bar's fill value is animated",
1291
+ "type": "boolean | undefined"
1292
+ },
1293
+ {
1294
+ "name": "max",
1295
+ "description": "Describes how much work the task indicated by the progress element requires",
1296
+ "type": "number"
1297
+ },
1298
+ {
1299
+ "name": "value",
1300
+ "description": "Specifies how much of the task that has been completed",
1301
+ "type": "number"
1302
+ }
1303
+ ],
1304
+ "events": []
1305
+ }
1306
+ },
1263
1307
  {
1264
1308
  "name": "skf-radio",
1265
1309
  "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.",
@@ -1290,11 +1334,6 @@
1290
1334
  "description": "If true, forces component to invalid state until removed",
1291
1335
  "value": { "type": "boolean | undefined" }
1292
1336
  },
1293
- {
1294
- "name": "hide-label",
1295
- "description": "If true, hides the label visually",
1296
- "value": { "type": "boolean | undefined" }
1297
- },
1298
1337
  {
1299
1338
  "name": "label",
1300
1339
  "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
@@ -1362,11 +1401,6 @@
1362
1401
  "description": "If true, forces component to invalid state until removed",
1363
1402
  "type": "boolean | undefined"
1364
1403
  },
1365
- {
1366
- "name": "hideLabel",
1367
- "description": "If true, hides the label visually",
1368
- "type": "boolean | undefined"
1369
- },
1370
1404
  {
1371
1405
  "name": "label",
1372
1406
  "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
@@ -1542,11 +1576,11 @@
1542
1576
  "type": "string | undefined"
1543
1577
  },
1544
1578
  {
1545
- "name": "getSelectedValues",
1579
+ "name": "selectedValues",
1546
1580
  "description": "A readonly property that returns the selected value(s) in a array"
1547
1581
  },
1548
1582
  {
1549
- "name": "getSelectedOptionsText",
1583
+ "name": "selectedOptionsText",
1550
1584
  "description": "A readonly property that returns the selected slot(s) text content in a array"
1551
1585
  },
1552
1586
  {
@@ -1848,6 +1882,155 @@
1848
1882
  "events": []
1849
1883
  }
1850
1884
  },
1885
+ {
1886
+ "name": "skf-tab",
1887
+ "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",
1888
+ "doc-url": "",
1889
+ "attributes": [
1890
+ {
1891
+ "name": "panel",
1892
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
1893
+ "value": { "type": "string", "default": "''" }
1894
+ }
1895
+ ],
1896
+ "slots": [{ "name": "", "description": "The tab's label" }],
1897
+ "events": [
1898
+ {
1899
+ "name": "skf-tab-select",
1900
+ "type": "CustomEvent",
1901
+ "description": "{detail: { selected: true, tab: SkfTab }} Fires when the tab is selected"
1902
+ },
1903
+ {
1904
+ "name": "click",
1905
+ "description": "Fired when the component is clicked"
1906
+ }
1907
+ ],
1908
+ "js": {
1909
+ "properties": [
1910
+ {
1911
+ "name": "panel",
1912
+ "description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
1913
+ "type": "string"
1914
+ },
1915
+ { "name": "selected", "type": "boolean" },
1916
+ { "name": "variant", "type": "SkfTabGroup['variant']" },
1917
+ { "name": "role", "type": "string" }
1918
+ ],
1919
+ "events": [
1920
+ {
1921
+ "name": "skf-tab-select",
1922
+ "type": "CustomEvent",
1923
+ "description": "{detail: { selected: true, tab: SkfTab }} Fires when the tab is selected"
1924
+ },
1925
+ {
1926
+ "name": "click",
1927
+ "description": "Fired when the component is clicked"
1928
+ }
1929
+ ]
1930
+ }
1931
+ },
1932
+ {
1933
+ "name": "skf-tab-group",
1934
+ "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",
1935
+ "doc-url": "",
1936
+ "attributes": [
1937
+ {
1938
+ "name": "default-selected",
1939
+ "description": "Sets the default selected tab",
1940
+ "value": { "type": "number", "default": "0" }
1941
+ },
1942
+ {
1943
+ "name": "no-border",
1944
+ "description": "If true, removes border",
1945
+ "value": { "type": "boolean", "default": "false" }
1946
+ },
1947
+ {
1948
+ "name": "no-padding",
1949
+ "description": "If true, removes padding",
1950
+ "value": { "type": "boolean", "default": "false" }
1951
+ },
1952
+ {
1953
+ "name": "stretch",
1954
+ "description": "If true, component fills the parent element height",
1955
+ "value": { "type": "boolean", "default": "false" }
1956
+ },
1957
+ {
1958
+ "name": "variant",
1959
+ "description": "Sets the appearance of the tabs",
1960
+ "value": {
1961
+ "type": "'compressed' | 'expanded'",
1962
+ "default": "'expanded'"
1963
+ }
1964
+ }
1965
+ ],
1966
+ "slots": [
1967
+ {
1968
+ "name": "",
1969
+ "description": "Used for grouping tab panels in the tab group. Must be <skf-tab-panel> elements"
1970
+ },
1971
+ {
1972
+ "name": "tabs",
1973
+ "description": "Used for grouping tabs in the tab group. Must be <skf-tab> elements"
1974
+ }
1975
+ ],
1976
+ "events": [],
1977
+ "js": {
1978
+ "properties": [
1979
+ {
1980
+ "name": "defaultSelected",
1981
+ "description": "Sets the default selected tab",
1982
+ "type": "number"
1983
+ },
1984
+ {
1985
+ "name": "noBorder",
1986
+ "description": "If true, removes border",
1987
+ "type": "boolean"
1988
+ },
1989
+ {
1990
+ "name": "noPadding",
1991
+ "description": "If true, removes padding",
1992
+ "type": "boolean"
1993
+ },
1994
+ {
1995
+ "name": "stretch",
1996
+ "description": "If true, component fills the parent element height",
1997
+ "type": "boolean"
1998
+ },
1999
+ {
2000
+ "name": "variant",
2001
+ "description": "Sets the appearance of the tabs",
2002
+ "type": "'compressed' | 'expanded'"
2003
+ }
2004
+ ],
2005
+ "events": []
2006
+ }
2007
+ },
2008
+ {
2009
+ "name": "skf-tab-panel",
2010
+ "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",
2011
+ "doc-url": "",
2012
+ "attributes": [
2013
+ {
2014
+ "name": "name",
2015
+ "description": "The tab panel's name.",
2016
+ "value": { "type": "string", "default": "''" }
2017
+ }
2018
+ ],
2019
+ "slots": [{ "name": "", "description": "The tab panel's content" }],
2020
+ "events": [],
2021
+ "js": {
2022
+ "properties": [
2023
+ {
2024
+ "name": "name",
2025
+ "description": "The tab panel's name.",
2026
+ "type": "string"
2027
+ },
2028
+ { "name": "active", "type": "boolean" },
2029
+ { "name": "role", "type": "string" }
2030
+ ],
2031
+ "events": []
2032
+ }
2033
+ },
1851
2034
  {
1852
2035
  "name": "skf-tag",
1853
2036
  "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",
@@ -2146,6 +2329,92 @@
2146
2329
  }
2147
2330
  ]
2148
2331
  }
2332
+ },
2333
+ {
2334
+ "name": "skf-toast",
2335
+ "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",
2336
+ "doc-url": "",
2337
+ "attributes": [
2338
+ {
2339
+ "name": "closeable",
2340
+ "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
2341
+ "value": { "type": "boolean", "default": "false" }
2342
+ },
2343
+ {
2344
+ "name": "debug",
2345
+ "value": { "type": "boolean", "default": "false" }
2346
+ },
2347
+ {
2348
+ "name": "severity",
2349
+ "description": "Severity of the toast.",
2350
+ "value": {
2351
+ "type": "'info' | 'success' | 'warning' | 'error'",
2352
+ "default": "'info'"
2353
+ }
2354
+ },
2355
+ {
2356
+ "name": "timer",
2357
+ "description": "Time in seconds before the toast disappears.",
2358
+ "value": { "type": "number", "default": "5" }
2359
+ },
2360
+ {
2361
+ "name": "topOffset",
2362
+ "description": "offsets where toasts emerge vertically",
2363
+ "value": { "type": "number | undefined" }
2364
+ }
2365
+ ],
2366
+ "slots": [
2367
+ { "name": "", "description": "The component's placeholder content" }
2368
+ ],
2369
+ "events": [],
2370
+ "js": {
2371
+ "properties": [
2372
+ {
2373
+ "name": "closeable",
2374
+ "description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
2375
+ "type": "boolean"
2376
+ },
2377
+ { "name": "debug", "type": "boolean" },
2378
+ {
2379
+ "name": "severity",
2380
+ "description": "Severity of the toast.",
2381
+ "type": "'info' | 'success' | 'warning' | 'error'"
2382
+ },
2383
+ {
2384
+ "name": "timer",
2385
+ "description": "Time in seconds before the toast disappears.",
2386
+ "type": "number"
2387
+ },
2388
+ {
2389
+ "name": "topOffset",
2390
+ "description": "offsets where toasts emerge vertically",
2391
+ "type": "number | undefined"
2392
+ }
2393
+ ],
2394
+ "events": []
2395
+ }
2396
+ },
2397
+ {
2398
+ "name": "skf-toast-wrapper",
2399
+ "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.",
2400
+ "doc-url": "",
2401
+ "attributes": [
2402
+ {
2403
+ "name": "debug",
2404
+ "value": { "type": "boolean", "default": "false" }
2405
+ }
2406
+ ],
2407
+ "slots": [
2408
+ {
2409
+ "name": "",
2410
+ "description": "The alert components that the toast creates will render here."
2411
+ }
2412
+ ],
2413
+ "events": [],
2414
+ "js": {
2415
+ "properties": [{ "name": "debug", "type": "boolean" }],
2416
+ "events": []
2417
+ }
2149
2418
  }
2150
2419
  ]
2151
2420
  }
package/package.json CHANGED
@@ -34,41 +34,42 @@
34
34
  "sideEffects": true,
35
35
  "type": "module",
36
36
  "types": "./dist/index.d.ts",
37
- "version": "1.0.0-alpha.27",
37
+ "version": "1.0.0-alpha.28",
38
38
  "dependencies": {
39
- "@floating-ui/dom": "^1.6.11"
39
+ "@floating-ui/dom": "^1.6.12"
40
40
  },
41
41
  "devDependencies": {
42
- "@chromatic-com/storybook": "^2.0.2",
42
+ "@chromatic-com/storybook": "^3.2.2",
43
43
  "@commitlint/cli": "^19.5.0",
44
44
  "@commitlint/config-conventional": "^19.5.0",
45
45
  "@custom-elements-manifest/analyzer": "^0.10.3",
46
- "@eslint/js": "^9.13.0",
46
+ "@eslint/js": "^9.14.0",
47
47
  "@lit/react": "^1.0.6",
48
- "@playwright/test": "^1.48.1",
48
+ "@playwright/test": "^1.48.2",
49
49
  "@skf-design-system/ui-assets": "0.1.3-beta.1",
50
- "@storybook/addon-a11y": "^8.3.6",
51
- "@storybook/addon-essentials": "^8.3.6",
52
- "@storybook/addon-interactions": "^8.3.6",
53
- "@storybook/addon-links": "^8.3.6",
54
- "@storybook/blocks": "^8.3.6",
55
- "@storybook/manager-api": "^8.3.6",
56
- "@storybook/test": "^8.3.6",
50
+ "@skf-design-system/wc-storybook-helpers": "^0.1.0",
51
+ "@storybook/addon-a11y": "^8.4.2",
52
+ "@storybook/addon-essentials": "^8.4.2",
53
+ "@storybook/addon-interactions": "^8.4.2",
54
+ "@storybook/addon-links": "^8.4.2",
55
+ "@storybook/blocks": "^8.4.2",
56
+ "@storybook/manager-api": "^8.4.2",
57
+ "@storybook/test": "^8.4.2",
57
58
  "@storybook/test-runner": "^0.19.1",
58
- "@storybook/theming": "^8.3.6",
59
- "@storybook/web-components": "^8.3.6",
60
- "@storybook/web-components-vite": "^8.3.6",
61
- "@types/node": "^22.7.7",
62
- "@types/react": "^18.3.11",
59
+ "@storybook/theming": "^8.4.2",
60
+ "@storybook/web-components": "^8.4.2",
61
+ "@storybook/web-components-vite": "^8.4.2",
62
+ "@types/node": "^22.9.0",
63
+ "@types/react": "^18.3.12",
63
64
  "cem-plugin-expanded-types": "^1.3.3",
64
- "command-line-args": "^6.0.0",
65
- "concurrently": "^9.0.1",
65
+ "command-line-args": "^6.0.1",
66
+ "concurrently": "^9.1.0",
66
67
  "custom-element-jet-brains-integration": "^1.6.2",
67
68
  "custom-element-jsx-integration": "^1.5.3",
68
69
  "custom-element-vs-code-integration": "^1.4.1",
69
70
  "custom-element-vuejs-integration": "^1.3.3",
70
71
  "del": "^8.0.0",
71
- "eslint": "^9.13.0",
72
+ "eslint": "^9.14.0",
72
73
  "eslint-config-prettier": "^9.1.0",
73
74
  "eslint-plugin-lit": "^1.15.0",
74
75
  "eslint-plugin-lit-a11y": "^4.1.4",
@@ -77,20 +78,19 @@
77
78
  "husky": "^9.1.6",
78
79
  "lint-staged": "^15.2.10",
79
80
  "lit": "^3.2.1",
80
- "postcss-styled-syntax": "^0.6.4",
81
+ "postcss-styled-syntax": "^0.7.0",
81
82
  "prettier": "3.3.3",
82
83
  "react": "^18.3.1",
83
- "storybook": "^8.3.6",
84
+ "storybook": "^8.4.2",
84
85
  "stylelint": "^16.10.0",
85
86
  "stylelint-config-standard": "^36.0.1",
86
- "stylelint-no-unsupported-browser-features": "^8.0.1",
87
+ "stylelint-no-unsupported-browser-features": "^8.0.2",
87
88
  "stylelint-order": "^6.0.4",
88
89
  "stylelint-value-no-unknown-custom-properties": "^6.0.1",
89
90
  "typescript": "^5.6.3",
90
- "typescript-eslint": "^8.10.0",
91
- "vite": "^5.4.9",
92
- "vite-tsconfig-paths": "^5.0.1",
93
- "wc-storybook-helpers": "^2.0.3"
91
+ "typescript-eslint": "^8.13.0",
92
+ "vite": "^5.4.10",
93
+ "vite-tsconfig-paths": "^5.1.0"
94
94
  },
95
95
  "peerDependencies": {
96
96
  "@lit/react": "^1.0.5",