@skf-design-system/ui-components 1.0.0-beta.4 → 1.0.0-beta.5
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.
- package/README.md +26 -6
- package/dist/components/accordion/accordion.component.d.ts +9 -5
- package/dist/components/accordion/accordion.component.js +22 -19
- package/dist/components/accordion/accordion.d.ts +1 -1
- package/dist/components/accordion/accordion.styles.js +3 -3
- package/dist/components/alert/alert.component.d.ts +7 -4
- package/dist/components/alert/alert.component.js +21 -19
- package/dist/components/alert/alert.styles.js +50 -47
- package/dist/components/button/button.component.d.ts +2 -0
- package/dist/components/button/button.component.js +6 -6
- package/dist/components/button/button.styles.js +1 -1
- package/dist/components/card/card.component.d.ts +3 -3
- package/dist/components/card/card.component.js +16 -19
- package/dist/components/card/card.styles.js +11 -3
- package/dist/components/checkbox/checkbox.component.d.ts +9 -6
- package/dist/components/checkbox/checkbox.component.js +7 -7
- package/dist/components/checkbox/checkbox.styles.js +7 -2
- package/dist/components/checkbox/checkbox.test.d.ts +1 -0
- package/dist/components/collapse/collapse.component.d.ts +9 -6
- package/dist/components/collapse/collapse.component.js +39 -36
- package/dist/components/collapse/collapse.styles.js +3 -3
- package/dist/components/collapse/collapse.test.d.ts +1 -0
- package/dist/components/divider/divider.component.d.ts +13 -10
- package/dist/components/divider/divider.component.js +34 -29
- package/dist/components/divider/divider.styles.js +1 -5
- package/dist/components/heading/heading.component.d.ts +12 -2
- package/dist/components/heading/heading.component.js +14 -14
- package/dist/components/heading/heading.styles.js +1 -1
- package/dist/components/icon/icon.component.d.ts +14 -8
- package/dist/components/icon/icon.component.js +6 -6
- package/dist/components/icon/icon.styles.js +56 -54
- package/dist/components/input/input.component.d.ts +43 -29
- package/dist/components/input/input.component.js +46 -36
- package/dist/components/link/link.component.d.ts +15 -12
- package/dist/components/link/link.component.js +7 -7
- package/dist/components/link/link.styles.js +1 -1
- package/dist/components/loader/loader.component.d.ts +7 -7
- package/dist/components/loader/loader.component.js +35 -61
- package/dist/components/loader/loader.styles.js +42 -10
- package/dist/components/logo/logo.component.d.ts +5 -3
- package/dist/components/logo/logo.component.js +8 -8
- package/dist/components/logo/logo.styles.js +2 -2
- package/dist/components/radio/radio.component.d.ts +15 -13
- package/dist/components/radio/radio.component.js +3 -3
- package/dist/components/radio/radio.styles.js +6 -1
- package/dist/components/select/select.component.d.ts +12 -10
- package/dist/components/select/select.component.js +113 -100
- package/dist/components/select/select.controllers.js +5 -2
- package/dist/components/select/select.styles.js +18 -3
- package/dist/components/select-option/select-option.component.d.ts +2 -2
- package/dist/components/select-option/select-option.component.js +16 -10
- package/dist/components/switch/switch.component.d.ts +2 -3
- package/dist/components/switch/switch.component.js +1 -1
- package/dist/components/switch/switch.styles.js +6 -1
- package/dist/components/switch/switch.test.d.ts +1 -0
- package/dist/components/tag/tag.component.d.ts +12 -7
- package/dist/components/tag/tag.component.js +24 -24
- package/dist/components/tag/tag.styles.js +6 -1
- package/dist/components/textarea/textarea.component.d.ts +26 -23
- package/dist/components/textarea/textarea.component.js +15 -12
- package/dist/components/toast/toast.component.d.ts +35 -0
- package/dist/components/toast/toast.component.js +52 -0
- package/dist/components/toast/toast.d.ts +8 -0
- package/dist/components/toast/toast.js +6 -0
- package/dist/components/toast/toast.singleton.d.ts +26 -0
- package/dist/components/toast/toast.singleton.js +53 -0
- package/dist/components/toast/toast.style.d.ts +1 -0
- package/dist/components/toast/toast.style.js +9 -0
- package/dist/components/toast-item/toast-item.component.d.ts +21 -0
- package/dist/components/toast-item/toast-item.component.js +65 -0
- package/dist/components/toast-item/toast-item.d.ts +6 -0
- package/dist/components/toast-item/toast-item.js +2 -0
- package/dist/components/toast-item/toast-item.style.d.ts +2 -0
- package/dist/components/toast-item/toast-item.style.js +16 -0
- package/dist/components/toast-wrapper/toast-wrapper.component.d.ts +24 -0
- package/dist/components/toast-wrapper/toast-wrapper.component.js +37 -0
- package/dist/components/toast-wrapper/toast-wrapper.d.ts +8 -0
- package/dist/components/toast-wrapper/toast-wrapper.js +6 -0
- package/dist/components/toast-wrapper/toast-wrapper.style.d.ts +1 -0
- package/dist/components/toast-wrapper/toast-wrapper.style.js +20 -0
- package/dist/custom-elements.json +676 -238
- package/dist/index.d.ts +1 -0
- package/dist/index.js +43 -40
- package/dist/internal/components/hint/hint.component.js +12 -10
- package/dist/internal/components/hint/hint.styles.js +26 -10
- package/dist/internal/storybook/shadowRootTraverser.d.ts +16 -8
- package/dist/react/index.d.ts +5 -3
- package/dist/react/index.js +5 -3
- package/dist/react/skf-toast/index.d.ts +3 -0
- package/dist/react/skf-toast/index.js +13 -0
- package/dist/react/skf-toast-wrapper/index.d.ts +3 -0
- package/dist/react/skf-toast-wrapper/index.js +13 -0
- package/dist/styles/form-field.styles.js +5 -1
- package/dist/types/jsx/custom-element-jsx.d.ts +88 -50
- package/dist/types/vue/index.d.ts +91 -51
- package/dist/vscode.html-custom-data.json +101 -62
- package/dist/web-types.json +208 -122
- package/package.json +3 -3
package/dist/web-types.json
CHANGED
@@ -88,6 +88,78 @@
|
|
88
88
|
"events": []
|
89
89
|
}
|
90
90
|
},
|
91
|
+
{
|
92
|
+
"name": "skf-alert",
|
93
|
+
"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",
|
94
|
+
"doc-url": "",
|
95
|
+
"attributes": [
|
96
|
+
{
|
97
|
+
"name": "closeable",
|
98
|
+
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
99
|
+
"value": { "type": "boolean | undefined" }
|
100
|
+
},
|
101
|
+
{
|
102
|
+
"name": "button-label",
|
103
|
+
"description": "Close button aria-label",
|
104
|
+
"value": { "type": "string", "default": "'Close'" }
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"name": "icon",
|
108
|
+
"description": "If defined, displays leading icon",
|
109
|
+
"value": { "type": "SkfIcon['name'] | undefined" }
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"name": "severity",
|
113
|
+
"description": "If defined, gives the supplied appearance",
|
114
|
+
"value": {
|
115
|
+
"type": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
116
|
+
}
|
117
|
+
}
|
118
|
+
],
|
119
|
+
"slots": [
|
120
|
+
{
|
121
|
+
"name": "",
|
122
|
+
"description": "Alert message. **Notice!** See design principles for approved content"
|
123
|
+
},
|
124
|
+
{ "name": "link", "description": "Slot for the link" }
|
125
|
+
],
|
126
|
+
"events": [
|
127
|
+
{
|
128
|
+
"name": "skf-alert-close",
|
129
|
+
"description": "Fires when the close button is clicked"
|
130
|
+
}
|
131
|
+
],
|
132
|
+
"js": {
|
133
|
+
"properties": [
|
134
|
+
{
|
135
|
+
"name": "closeable",
|
136
|
+
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
137
|
+
"type": "boolean | undefined"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"name": "buttonLabel",
|
141
|
+
"description": "Close button aria-label",
|
142
|
+
"type": "string"
|
143
|
+
},
|
144
|
+
{
|
145
|
+
"name": "icon",
|
146
|
+
"description": "If defined, displays leading icon",
|
147
|
+
"type": "SkfIcon['name'] | undefined"
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"name": "severity",
|
151
|
+
"description": "If defined, gives the supplied appearance",
|
152
|
+
"type": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
153
|
+
}
|
154
|
+
],
|
155
|
+
"events": [
|
156
|
+
{
|
157
|
+
"name": "skf-alert-close",
|
158
|
+
"description": "Fires when the close button is clicked"
|
159
|
+
}
|
160
|
+
]
|
161
|
+
}
|
162
|
+
},
|
91
163
|
{
|
92
164
|
"name": "skf-button",
|
93
165
|
"description": "Component to be used in forms or for interactivity\n---\n\n\n### **Slots:**\n - _default_ - The Primary content",
|
@@ -237,78 +309,6 @@
|
|
237
309
|
"events": []
|
238
310
|
}
|
239
311
|
},
|
240
|
-
{
|
241
|
-
"name": "skf-alert",
|
242
|
-
"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",
|
243
|
-
"doc-url": "",
|
244
|
-
"attributes": [
|
245
|
-
{
|
246
|
-
"name": "closeable",
|
247
|
-
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
248
|
-
"value": { "type": "boolean | undefined" }
|
249
|
-
},
|
250
|
-
{
|
251
|
-
"name": "button-label",
|
252
|
-
"description": "Close button aria-label",
|
253
|
-
"value": { "type": "string", "default": "'Close'" }
|
254
|
-
},
|
255
|
-
{
|
256
|
-
"name": "icon",
|
257
|
-
"description": "If defined, displays leading icon",
|
258
|
-
"value": { "type": "SkfIcon['name'] | undefined" }
|
259
|
-
},
|
260
|
-
{
|
261
|
-
"name": "severity",
|
262
|
-
"description": "If defined, gives the supplied appearance",
|
263
|
-
"value": {
|
264
|
-
"type": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
265
|
-
}
|
266
|
-
}
|
267
|
-
],
|
268
|
-
"slots": [
|
269
|
-
{
|
270
|
-
"name": "",
|
271
|
-
"description": "Alert message. **Notice!** See design principles for approved content"
|
272
|
-
},
|
273
|
-
{ "name": "link", "description": "Slot for the link" }
|
274
|
-
],
|
275
|
-
"events": [
|
276
|
-
{
|
277
|
-
"name": "skf-alert-close",
|
278
|
-
"description": "Fires when the close button is clicked"
|
279
|
-
}
|
280
|
-
],
|
281
|
-
"js": {
|
282
|
-
"properties": [
|
283
|
-
{
|
284
|
-
"name": "closeable",
|
285
|
-
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
286
|
-
"type": "boolean | undefined"
|
287
|
-
},
|
288
|
-
{
|
289
|
-
"name": "buttonLabel",
|
290
|
-
"description": "Close button aria-label",
|
291
|
-
"type": "string"
|
292
|
-
},
|
293
|
-
{
|
294
|
-
"name": "icon",
|
295
|
-
"description": "If defined, displays leading icon",
|
296
|
-
"type": "SkfIcon['name'] | undefined"
|
297
|
-
},
|
298
|
-
{
|
299
|
-
"name": "severity",
|
300
|
-
"description": "If defined, gives the supplied appearance",
|
301
|
-
"type": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
302
|
-
}
|
303
|
-
],
|
304
|
-
"events": [
|
305
|
-
{
|
306
|
-
"name": "skf-alert-close",
|
307
|
-
"description": "Fires when the close button is clicked"
|
308
|
-
}
|
309
|
-
]
|
310
|
-
}
|
311
|
-
},
|
312
312
|
{
|
313
313
|
"name": "skf-checkbox",
|
314
314
|
"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.",
|
@@ -470,52 +470,6 @@
|
|
470
470
|
]
|
471
471
|
}
|
472
472
|
},
|
473
|
-
{
|
474
|
-
"name": "skf-divider",
|
475
|
-
"description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information\n---\n\n\n### **CSS Properties:**\n - **--skf-divider-spacing** - The amount of space the divider occupies. Pass valid CSS **margin-block** values when horizontal and **margin-inline** when vertical _(default: undefined)_\n- **--skf-divider-inset** - The amount of space the divider should be indented. Pass valid CSS **margin-inline** values when horizontal and **margin-block** when vertical _(default: undefined)_",
|
476
|
-
"doc-url": "",
|
477
|
-
"attributes": [
|
478
|
-
{
|
479
|
-
"name": "color",
|
480
|
-
"description": "Defines the Divider color",
|
481
|
-
"value": {
|
482
|
-
"type": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\"",
|
483
|
-
"default": "'primary'"
|
484
|
-
}
|
485
|
-
},
|
486
|
-
{
|
487
|
-
"name": "decorative",
|
488
|
-
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
489
|
-
"value": { "type": "boolean | undefined" }
|
490
|
-
},
|
491
|
-
{
|
492
|
-
"name": "vertical",
|
493
|
-
"description": "If true, renders the divider vertically",
|
494
|
-
"value": { "type": "boolean | undefined" }
|
495
|
-
}
|
496
|
-
],
|
497
|
-
"events": [],
|
498
|
-
"js": {
|
499
|
-
"properties": [
|
500
|
-
{
|
501
|
-
"name": "color",
|
502
|
-
"description": "Defines the Divider color",
|
503
|
-
"type": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
|
504
|
-
},
|
505
|
-
{
|
506
|
-
"name": "decorative",
|
507
|
-
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
508
|
-
"type": "boolean | undefined"
|
509
|
-
},
|
510
|
-
{
|
511
|
-
"name": "vertical",
|
512
|
-
"description": "If true, renders the divider vertically",
|
513
|
-
"type": "boolean | undefined"
|
514
|
-
}
|
515
|
-
],
|
516
|
-
"events": []
|
517
|
-
}
|
518
|
-
},
|
519
473
|
{
|
520
474
|
"name": "skf-collapse",
|
521
475
|
"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",
|
@@ -605,6 +559,52 @@
|
|
605
559
|
]
|
606
560
|
}
|
607
561
|
},
|
562
|
+
{
|
563
|
+
"name": "skf-divider",
|
564
|
+
"description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information\n---\n\n\n### **CSS Properties:**\n - **--skf-divider-spacing** - The amount of space the divider occupies. Pass valid CSS **margin-block** values when horizontal and **margin-inline** when vertical _(default: undefined)_\n- **--skf-divider-inset** - The amount of space the divider should be indented. Pass valid CSS **margin-inline** values when horizontal and **margin-block** when vertical _(default: undefined)_",
|
565
|
+
"doc-url": "",
|
566
|
+
"attributes": [
|
567
|
+
{
|
568
|
+
"name": "color",
|
569
|
+
"description": "Defines the Divider color",
|
570
|
+
"value": {
|
571
|
+
"type": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\"",
|
572
|
+
"default": "'primary'"
|
573
|
+
}
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"name": "decorative",
|
577
|
+
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
578
|
+
"value": { "type": "boolean | undefined" }
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"name": "vertical",
|
582
|
+
"description": "If true, renders the divider vertically",
|
583
|
+
"value": { "type": "boolean | undefined" }
|
584
|
+
}
|
585
|
+
],
|
586
|
+
"events": [],
|
587
|
+
"js": {
|
588
|
+
"properties": [
|
589
|
+
{
|
590
|
+
"name": "color",
|
591
|
+
"description": "Defines the Divider color",
|
592
|
+
"type": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"name": "decorative",
|
596
|
+
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
597
|
+
"type": "boolean | undefined"
|
598
|
+
},
|
599
|
+
{
|
600
|
+
"name": "vertical",
|
601
|
+
"description": "If true, renders the divider vertically",
|
602
|
+
"type": "boolean | undefined"
|
603
|
+
}
|
604
|
+
],
|
605
|
+
"events": []
|
606
|
+
}
|
607
|
+
},
|
608
608
|
{
|
609
609
|
"name": "skf-heading",
|
610
610
|
"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",
|
@@ -1532,11 +1532,11 @@
|
|
1532
1532
|
"type": "string | undefined"
|
1533
1533
|
},
|
1534
1534
|
{
|
1535
|
-
"name": "
|
1535
|
+
"name": "selectedValues",
|
1536
1536
|
"description": "A readonly property that returns the selected value(s) in a array"
|
1537
1537
|
},
|
1538
1538
|
{
|
1539
|
-
"name": "
|
1539
|
+
"name": "selectedOptionsText",
|
1540
1540
|
"description": "A readonly property that returns the selected slot(s) text content in a array"
|
1541
1541
|
},
|
1542
1542
|
{
|
@@ -1632,7 +1632,7 @@
|
|
1632
1632
|
{
|
1633
1633
|
"name": "icon-color",
|
1634
1634
|
"description": "If defined, sets provided color on the icon",
|
1635
|
-
"value": { "type": "
|
1635
|
+
"value": { "type": "SeverityFgColor | undefined" }
|
1636
1636
|
},
|
1637
1637
|
{
|
1638
1638
|
"name": "selected",
|
@@ -1678,7 +1678,7 @@
|
|
1678
1678
|
{
|
1679
1679
|
"name": "iconColor",
|
1680
1680
|
"description": "If defined, sets provided color on the icon",
|
1681
|
-
"type": "
|
1681
|
+
"type": "SeverityFgColor | undefined"
|
1682
1682
|
},
|
1683
1683
|
{
|
1684
1684
|
"name": "selected",
|
@@ -2136,6 +2136,92 @@
|
|
2136
2136
|
}
|
2137
2137
|
]
|
2138
2138
|
}
|
2139
|
+
},
|
2140
|
+
{
|
2141
|
+
"name": "skf-toast",
|
2142
|
+
"description": "A simple toast component that displays a message to the user. Use by appending a <skf-toast> tag to the DOM. Position in DOM is irrelevant.\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
|
2143
|
+
"doc-url": "",
|
2144
|
+
"attributes": [
|
2145
|
+
{
|
2146
|
+
"name": "closeable",
|
2147
|
+
"description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
|
2148
|
+
"value": { "type": "boolean", "default": "false" }
|
2149
|
+
},
|
2150
|
+
{
|
2151
|
+
"name": "debug",
|
2152
|
+
"value": { "type": "boolean", "default": "false" }
|
2153
|
+
},
|
2154
|
+
{
|
2155
|
+
"name": "severity",
|
2156
|
+
"description": "Severity of the toast.",
|
2157
|
+
"value": {
|
2158
|
+
"type": "'info' | 'success' | 'warning' | 'error'",
|
2159
|
+
"default": "'info'"
|
2160
|
+
}
|
2161
|
+
},
|
2162
|
+
{
|
2163
|
+
"name": "timer",
|
2164
|
+
"description": "Time in seconds before the toast disappears.",
|
2165
|
+
"value": { "type": "number", "default": "5" }
|
2166
|
+
},
|
2167
|
+
{
|
2168
|
+
"name": "topOffset",
|
2169
|
+
"description": "offsets where toasts emerge vertically",
|
2170
|
+
"value": { "type": "number | undefined" }
|
2171
|
+
}
|
2172
|
+
],
|
2173
|
+
"slots": [
|
2174
|
+
{ "name": "", "description": "The component's placeholder content" }
|
2175
|
+
],
|
2176
|
+
"events": [],
|
2177
|
+
"js": {
|
2178
|
+
"properties": [
|
2179
|
+
{
|
2180
|
+
"name": "closeable",
|
2181
|
+
"description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
|
2182
|
+
"type": "boolean"
|
2183
|
+
},
|
2184
|
+
{ "name": "debug", "type": "boolean" },
|
2185
|
+
{
|
2186
|
+
"name": "severity",
|
2187
|
+
"description": "Severity of the toast.",
|
2188
|
+
"type": "'info' | 'success' | 'warning' | 'error'"
|
2189
|
+
},
|
2190
|
+
{
|
2191
|
+
"name": "timer",
|
2192
|
+
"description": "Time in seconds before the toast disappears.",
|
2193
|
+
"type": "number"
|
2194
|
+
},
|
2195
|
+
{
|
2196
|
+
"name": "topOffset",
|
2197
|
+
"description": "offsets where toasts emerge vertically",
|
2198
|
+
"type": "number | undefined"
|
2199
|
+
}
|
2200
|
+
],
|
2201
|
+
"events": []
|
2202
|
+
}
|
2203
|
+
},
|
2204
|
+
{
|
2205
|
+
"name": "skf-toast-wrapper",
|
2206
|
+
"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.",
|
2207
|
+
"doc-url": "",
|
2208
|
+
"attributes": [
|
2209
|
+
{
|
2210
|
+
"name": "debug",
|
2211
|
+
"value": { "type": "boolean", "default": "false" }
|
2212
|
+
}
|
2213
|
+
],
|
2214
|
+
"slots": [
|
2215
|
+
{
|
2216
|
+
"name": "",
|
2217
|
+
"description": "The alert components that the toast creates will render here."
|
2218
|
+
}
|
2219
|
+
],
|
2220
|
+
"events": [],
|
2221
|
+
"js": {
|
2222
|
+
"properties": [{ "name": "debug", "type": "boolean" }],
|
2223
|
+
"events": []
|
2224
|
+
}
|
2139
2225
|
}
|
2140
2226
|
]
|
2141
2227
|
}
|
package/package.json
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
"sideEffects": true,
|
35
35
|
"type": "module",
|
36
36
|
"types": "./dist/index.d.ts",
|
37
|
-
"version": "1.0.0-beta.
|
37
|
+
"version": "1.0.0-beta.5",
|
38
38
|
"dependencies": {
|
39
39
|
"@floating-ui/dom": "^1.6.11"
|
40
40
|
},
|
@@ -47,6 +47,7 @@
|
|
47
47
|
"@lit/react": "^1.0.6",
|
48
48
|
"@playwright/test": "^1.48.1",
|
49
49
|
"@skf-design-system/ui-assets": "0.1.3-beta.1",
|
50
|
+
"@skf-design-system/wc-storybook-helpers": "^0.0.1",
|
50
51
|
"@storybook/addon-a11y": "^8.3.6",
|
51
52
|
"@storybook/addon-essentials": "^8.3.6",
|
52
53
|
"@storybook/addon-interactions": "^8.3.6",
|
@@ -89,8 +90,7 @@
|
|
89
90
|
"typescript": "^5.6.3",
|
90
91
|
"typescript-eslint": "^8.10.0",
|
91
92
|
"vite": "^5.4.9",
|
92
|
-
"vite-tsconfig-paths": "^5.0.1"
|
93
|
-
"wc-storybook-helpers": "^2.0.3"
|
93
|
+
"vite-tsconfig-paths": "^5.0.1"
|
94
94
|
},
|
95
95
|
"peerDependencies": {
|
96
96
|
"@lit/react": "^1.0.5",
|