@skf-design-system/ui-components 0.0.1-beta.4 → 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.
- package/README.md +26 -6
- package/custom-elements.json +18265 -0
- 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 +24 -0
- package/dist/components/button/button.component.js +80 -56
- package/dist/components/button/button.styles.js +2 -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 +17 -15
- package/dist/components/checkbox/checkbox.component.js +95 -89
- 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 +44 -29
- package/dist/components/input/input.component.js +118 -111
- 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/progress/progress.component.d.ts +22 -0
- package/dist/components/progress/progress.component.js +40 -0
- package/dist/components/progress/progress.d.ts +8 -0
- package/dist/components/progress/progress.js +6 -0
- package/dist/components/progress/progress.styles.d.ts +1 -0
- package/dist/components/progress/progress.styles.js +47 -0
- package/dist/components/radio/radio.component.d.ts +18 -18
- package/dist/components/radio/radio.component.js +94 -78
- package/dist/components/radio/radio.styles.js +6 -1
- package/dist/components/select/select.component.d.ts +140 -0
- package/dist/components/select/select.component.js +327 -0
- package/dist/components/select/select.controllers.d.ts +59 -0
- package/dist/components/select/select.controllers.js +172 -0
- package/dist/components/select/select.d.ts +8 -0
- package/dist/components/select/select.js +6 -0
- package/dist/components/select/select.styles.d.ts +1 -0
- package/dist/components/select/select.styles.js +131 -0
- package/dist/components/select-option/select-option.component.d.ts +77 -0
- package/dist/components/select-option/select-option.component.js +123 -0
- package/dist/components/select-option/select-option.controllers.d.ts +9 -0
- package/dist/components/select-option/select-option.d.ts +8 -0
- package/dist/components/select-option/select-option.js +6 -0
- package/dist/components/select-option/select-option.styles.d.ts +1 -0
- package/dist/components/select-option/select-option.styles.js +53 -0
- package/dist/components/select-option-group/select-option-group.component.d.ts +16 -0
- package/dist/components/select-option-group/select-option-group.component.js +31 -0
- package/dist/components/select-option-group/select-option-group.d.ts +8 -0
- package/dist/components/select-option-group/select-option-group.js +6 -0
- package/dist/components/select-option-group/select-option-group.style.d.ts +1 -0
- package/dist/components/select-option-group/select-option-group.style.js +18 -0
- package/dist/components/switch/switch.component.d.ts +2 -3
- package/dist/components/switch/switch.component.js +5 -2
- package/dist/components/switch/switch.styles.js +6 -1
- package/dist/components/switch/switch.test.d.ts +1 -0
- package/dist/components/tab/tab.component.d.ts +29 -0
- package/dist/components/tab/tab.component.js +57 -0
- package/dist/components/tab/tab.d.ts +8 -0
- package/dist/components/tab/tab.js +6 -0
- package/dist/components/tab/tab.styles.d.ts +1 -0
- package/dist/components/tab/tab.styles.js +123 -0
- package/dist/components/tab-group/tab-group.component.d.ts +43 -0
- package/dist/components/tab-group/tab-group.component.js +98 -0
- package/dist/components/tab-group/tab-group.d.ts +8 -0
- package/dist/components/tab-group/tab-group.js +6 -0
- package/dist/components/tab-group/tab-group.styles.d.ts +1 -0
- package/dist/components/tab-group/tab-group.styles.js +75 -0
- package/dist/components/tab-panel/tab-panel.component.d.ts +19 -0
- package/dist/components/tab-panel/tab-panel.component.js +36 -0
- package/dist/components/tab-panel/tab-panel.d.ts +8 -0
- package/dist/components/tab-panel/tab-panel.js +6 -0
- package/dist/components/tab-panel/tab-panel.styles.d.ts +1 -0
- package/dist/components/tab-panel/tab-panel.styles.js +13 -0
- package/dist/components/tag/tag.component.d.ts +25 -4
- package/dist/components/tag/tag.component.js +66 -29
- package/dist/components/tag/tag.styles.js +6 -5
- package/dist/components/textarea/textarea.component.d.ts +26 -23
- package/dist/components/textarea/textarea.component.js +20 -17
- 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.styles.d.ts +1 -0
- package/dist/components/toast/toast.styles.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.styles.d.ts +2 -0
- package/dist/components/toast-item/toast-item.styles.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.styles.d.ts +1 -0
- package/dist/components/toast-wrapper/toast-wrapper.styles.js +20 -0
- package/dist/custom-elements.json +2146 -616
- package/dist/index.d.ts +8 -0
- package/dist/index.js +60 -36
- package/dist/internal/components/formBase.d.ts +19 -1
- package/dist/internal/components/formBase.js +29 -17
- package/dist/internal/components/hint/hint.component.js +12 -10
- package/dist/internal/components/hint/hint.styles.js +26 -10
- package/dist/internal/components/skf-element.d.ts +4 -4
- package/dist/internal/components/skf-element.js +15 -19
- package/dist/internal/helpers/array.d.ts +4 -0
- package/dist/internal/helpers/findMatchingTags.d.ts +2 -0
- package/dist/internal/helpers/findMatchingTags.js +12 -0
- package/dist/internal/helpers/hintSeverity.d.ts +2 -0
- package/dist/internal/helpers/hintSeverity.js +6 -0
- package/dist/internal/helpers/raiseError.d.ts +28 -0
- package/dist/internal/helpers/raiseError.js +29 -0
- package/dist/internal/helpers/watch.d.ts +27 -0
- package/dist/internal/helpers/watch.js +28 -0
- package/dist/internal/storybook/shadowRootTraverser.d.ts +16 -6
- package/dist/react/index.d.ts +9 -0
- package/dist/react/index.js +9 -0
- package/dist/react/skf-button/index.d.ts +7 -1
- package/dist/react/skf-button/index.js +5 -1
- package/dist/react/skf-progress/index.d.ts +3 -0
- package/dist/react/skf-progress/index.js +13 -0
- package/dist/react/skf-select/index.d.ts +21 -0
- package/dist/react/skf-select/index.js +21 -0
- package/dist/react/skf-select-option/index.d.ts +9 -0
- package/dist/react/skf-select-option/index.js +17 -0
- package/dist/react/skf-select-option-group/index.d.ts +3 -0
- package/dist/react/skf-select-option-group/index.js +13 -0
- package/dist/react/skf-tab/index.d.ts +12 -0
- package/dist/react/skf-tab/index.js +18 -0
- package/dist/react/skf-tab-group/index.d.ts +3 -0
- package/dist/react/skf-tab-group/index.js +13 -0
- package/dist/react/skf-tab-panel/index.d.ts +3 -0
- package/dist/react/skf-tab-panel/index.js +13 -0
- 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 +11 -7
- package/dist/types/jsx/custom-element-jsx.d.ts +166 -995
- package/dist/types/vue/index.d.ts +368 -94
- package/dist/vscode.html-custom-data.json +408 -106
- package/dist/web-types.json +932 -281
- package/package.json +39 -35
@@ -8,7 +8,7 @@
|
|
8
8
|
"declarations": [
|
9
9
|
{
|
10
10
|
"kind": "class",
|
11
|
-
"description": "The `<skf-accordion>` component consists of multiple `<skf-collapse>`, working together.\n\nSee [
|
11
|
+
"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.",
|
12
12
|
"name": "SkfAccordion",
|
13
13
|
"slots": [
|
14
14
|
{
|
@@ -31,10 +31,10 @@
|
|
31
31
|
"kind": "field",
|
32
32
|
"name": "headingAs",
|
33
33
|
"type": {
|
34
|
-
"text": "
|
34
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
35
35
|
},
|
36
36
|
"default": "'h2'",
|
37
|
-
"description": "
|
37
|
+
"description": "Defines which heading element will be rendered",
|
38
38
|
"attribute": "heading-as"
|
39
39
|
},
|
40
40
|
{
|
@@ -43,7 +43,7 @@
|
|
43
43
|
"type": {
|
44
44
|
"text": "boolean | undefined"
|
45
45
|
},
|
46
|
-
"description": "If
|
46
|
+
"description": "If true, adds a gap between each item",
|
47
47
|
"attribute": "gap",
|
48
48
|
"reflects": true
|
49
49
|
},
|
@@ -102,10 +102,10 @@
|
|
102
102
|
{
|
103
103
|
"name": "heading-as",
|
104
104
|
"type": {
|
105
|
-
"text": "
|
105
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
106
106
|
},
|
107
107
|
"default": "'h2'",
|
108
|
-
"description": "
|
108
|
+
"description": "Defines which heading element will be rendered",
|
109
109
|
"fieldName": "headingAs"
|
110
110
|
},
|
111
111
|
{
|
@@ -113,7 +113,7 @@
|
|
113
113
|
"type": {
|
114
114
|
"text": "boolean | undefined"
|
115
115
|
},
|
116
|
-
"description": "If
|
116
|
+
"description": "If true, adds a gap between each item",
|
117
117
|
"fieldName": "gap"
|
118
118
|
},
|
119
119
|
{
|
@@ -174,7 +174,7 @@
|
|
174
174
|
"name": ""
|
175
175
|
},
|
176
176
|
{
|
177
|
-
"description": "
|
177
|
+
"description": "Slot for the link",
|
178
178
|
"name": "link"
|
179
179
|
}
|
180
180
|
],
|
@@ -185,8 +185,9 @@
|
|
185
185
|
"type": {
|
186
186
|
"text": "boolean | undefined"
|
187
187
|
},
|
188
|
-
"description": "If true, alert is being used as a toast with an close button",
|
189
|
-
"attribute": "closeable"
|
188
|
+
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
189
|
+
"attribute": "closeable",
|
190
|
+
"reflects": true
|
190
191
|
},
|
191
192
|
{
|
192
193
|
"kind": "field",
|
@@ -211,10 +212,11 @@
|
|
211
212
|
"kind": "field",
|
212
213
|
"name": "severity",
|
213
214
|
"type": {
|
214
|
-
"text": "
|
215
|
+
"text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
215
216
|
},
|
216
217
|
"description": "If defined, gives the supplied appearance",
|
217
|
-
"attribute": "severity"
|
218
|
+
"attribute": "severity",
|
219
|
+
"reflects": true
|
218
220
|
}
|
219
221
|
],
|
220
222
|
"events": [
|
@@ -229,7 +231,7 @@
|
|
229
231
|
"type": {
|
230
232
|
"text": "boolean | undefined"
|
231
233
|
},
|
232
|
-
"description": "If true, alert is being used as a toast with an close button",
|
234
|
+
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
233
235
|
"fieldName": "closeable"
|
234
236
|
},
|
235
237
|
{
|
@@ -252,7 +254,7 @@
|
|
252
254
|
{
|
253
255
|
"name": "severity",
|
254
256
|
"type": {
|
255
|
-
"text": "
|
257
|
+
"text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
256
258
|
},
|
257
259
|
"description": "If defined, gives the supplied appearance",
|
258
260
|
"fieldName": "severity"
|
@@ -292,6 +294,24 @@
|
|
292
294
|
}
|
293
295
|
],
|
294
296
|
"members": [
|
297
|
+
{
|
298
|
+
"kind": "field",
|
299
|
+
"name": "formAssociated",
|
300
|
+
"type": {
|
301
|
+
"text": "boolean"
|
302
|
+
},
|
303
|
+
"static": true,
|
304
|
+
"default": "true"
|
305
|
+
},
|
306
|
+
{
|
307
|
+
"kind": "field",
|
308
|
+
"name": "shadowRootOptions",
|
309
|
+
"type": {
|
310
|
+
"text": "object"
|
311
|
+
},
|
312
|
+
"static": true,
|
313
|
+
"default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
|
314
|
+
},
|
295
315
|
{
|
296
316
|
"kind": "field",
|
297
317
|
"name": "destructive",
|
@@ -341,6 +361,15 @@
|
|
341
361
|
"description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
|
342
362
|
"attribute": "loading"
|
343
363
|
},
|
364
|
+
{
|
365
|
+
"kind": "field",
|
366
|
+
"name": "noValidate",
|
367
|
+
"type": {
|
368
|
+
"text": "boolean"
|
369
|
+
},
|
370
|
+
"default": "false",
|
371
|
+
"attribute": "no-validate"
|
372
|
+
},
|
344
373
|
{
|
345
374
|
"kind": "field",
|
346
375
|
"name": "size",
|
@@ -375,13 +404,14 @@
|
|
375
404
|
},
|
376
405
|
{
|
377
406
|
"kind": "method",
|
378
|
-
"name": "
|
379
|
-
"
|
380
|
-
}
|
407
|
+
"name": "click",
|
408
|
+
"description": "Simulates a click on the button."
|
409
|
+
}
|
410
|
+
],
|
411
|
+
"events": [
|
381
412
|
{
|
382
|
-
"
|
383
|
-
"name": "
|
384
|
-
"privacy": "private"
|
413
|
+
"description": "Fires when the button is clicked",
|
414
|
+
"name": "click"
|
385
415
|
}
|
386
416
|
],
|
387
417
|
"attributes": [
|
@@ -429,6 +459,14 @@
|
|
429
459
|
"description": "If true, hides text & icon and shows loading indicator. **Notice!** Only applicable if `variant` is `primary`.",
|
430
460
|
"fieldName": "loading"
|
431
461
|
},
|
462
|
+
{
|
463
|
+
"name": "no-validate",
|
464
|
+
"type": {
|
465
|
+
"text": "boolean"
|
466
|
+
},
|
467
|
+
"default": "false",
|
468
|
+
"fieldName": "noValidate"
|
469
|
+
},
|
432
470
|
{
|
433
471
|
"name": "size",
|
434
472
|
"type": {
|
@@ -495,9 +533,8 @@
|
|
495
533
|
"kind": "field",
|
496
534
|
"name": "noBorder",
|
497
535
|
"type": {
|
498
|
-
"text": "boolean"
|
536
|
+
"text": "boolean | undefined"
|
499
537
|
},
|
500
|
-
"default": "false",
|
501
538
|
"description": "If true, removes border",
|
502
539
|
"attribute": "no-border"
|
503
540
|
},
|
@@ -505,9 +542,8 @@
|
|
505
542
|
"kind": "field",
|
506
543
|
"name": "noPadding",
|
507
544
|
"type": {
|
508
|
-
"text": "boolean"
|
545
|
+
"text": "boolean | undefined"
|
509
546
|
},
|
510
|
-
"default": "false",
|
511
547
|
"description": "If true, removes padding",
|
512
548
|
"attribute": "no-padding"
|
513
549
|
},
|
@@ -515,38 +551,35 @@
|
|
515
551
|
"kind": "field",
|
516
552
|
"name": "stretch",
|
517
553
|
"type": {
|
518
|
-
"text": "boolean"
|
554
|
+
"text": "boolean | undefined"
|
519
555
|
},
|
520
|
-
"default": "false",
|
521
556
|
"description": "If true, the Card fills the parent element height",
|
522
|
-
"attribute": "stretch"
|
557
|
+
"attribute": "stretch",
|
558
|
+
"reflects": true
|
523
559
|
}
|
524
560
|
],
|
525
561
|
"attributes": [
|
526
562
|
{
|
527
563
|
"name": "no-border",
|
528
564
|
"type": {
|
529
|
-
"text": "boolean"
|
565
|
+
"text": "boolean | undefined"
|
530
566
|
},
|
531
|
-
"default": "false",
|
532
567
|
"description": "If true, removes border",
|
533
568
|
"fieldName": "noBorder"
|
534
569
|
},
|
535
570
|
{
|
536
571
|
"name": "no-padding",
|
537
572
|
"type": {
|
538
|
-
"text": "boolean"
|
573
|
+
"text": "boolean | undefined"
|
539
574
|
},
|
540
|
-
"default": "false",
|
541
575
|
"description": "If true, removes padding",
|
542
576
|
"fieldName": "noPadding"
|
543
577
|
},
|
544
578
|
{
|
545
579
|
"name": "stretch",
|
546
580
|
"type": {
|
547
|
-
"text": "boolean"
|
581
|
+
"text": "boolean | undefined"
|
548
582
|
},
|
549
|
-
"default": "false",
|
550
583
|
"description": "If true, the Card fills the parent element height",
|
551
584
|
"fieldName": "stretch"
|
552
585
|
}
|
@@ -580,8 +613,8 @@
|
|
580
613
|
"name": "SkfCheckbox",
|
581
614
|
"slots": [
|
582
615
|
{
|
583
|
-
"description": "Alternatively, you can use the `label` attribute",
|
584
|
-
"name": "
|
616
|
+
"description": "The Radios label. Alternatively, you can use the `label` attribute.",
|
617
|
+
"name": ""
|
585
618
|
}
|
586
619
|
],
|
587
620
|
"members": [
|
@@ -611,16 +644,7 @@
|
|
611
644
|
"text": "boolean | undefined"
|
612
645
|
},
|
613
646
|
"description": "If true, forces component to invalid state until removed",
|
614
|
-
"attribute": "custom-invalid"
|
615
|
-
},
|
616
|
-
{
|
617
|
-
"kind": "field",
|
618
|
-
"name": "hideLabel",
|
619
|
-
"type": {
|
620
|
-
"text": "boolean | undefined"
|
621
|
-
},
|
622
|
-
"description": "If true, hides the label visually",
|
623
|
-
"attribute": "hide-label",
|
647
|
+
"attribute": "custom-invalid",
|
624
648
|
"reflects": true
|
625
649
|
},
|
626
650
|
{
|
@@ -660,22 +684,11 @@
|
|
660
684
|
"description": "If defined, renders an alternative A11y text for the asterisk",
|
661
685
|
"attribute": "required-label"
|
662
686
|
},
|
663
|
-
{
|
664
|
-
"kind": "field",
|
665
|
-
"name": "size",
|
666
|
-
"type": {
|
667
|
-
"text": "'sm' | 'md'"
|
668
|
-
},
|
669
|
-
"default": "'md'",
|
670
|
-
"description": "Size of the checkbox",
|
671
|
-
"attribute": "size",
|
672
|
-
"reflects": true
|
673
|
-
},
|
674
687
|
{
|
675
688
|
"kind": "field",
|
676
689
|
"name": "severity",
|
677
690
|
"type": {
|
678
|
-
"text": "
|
691
|
+
"text": "\"alert\" | \"success\" | \"info\" | \"warning\""
|
679
692
|
},
|
680
693
|
"description": "If defined, styles checkbox using provided severity",
|
681
694
|
"attribute": "severity",
|
@@ -687,9 +700,20 @@
|
|
687
700
|
"type": {
|
688
701
|
"text": "boolean | undefined"
|
689
702
|
},
|
690
|
-
"description": "If
|
703
|
+
"description": "If true, displays valid state after interaction",
|
691
704
|
"attribute": "show-valid"
|
692
705
|
},
|
706
|
+
{
|
707
|
+
"kind": "field",
|
708
|
+
"name": "size",
|
709
|
+
"type": {
|
710
|
+
"text": "'sm' | 'md'"
|
711
|
+
},
|
712
|
+
"default": "'md'",
|
713
|
+
"description": "Size of the checkbox",
|
714
|
+
"attribute": "size",
|
715
|
+
"reflects": true
|
716
|
+
},
|
693
717
|
{
|
694
718
|
"kind": "field",
|
695
719
|
"name": "value",
|
@@ -702,7 +726,15 @@
|
|
702
726
|
},
|
703
727
|
{
|
704
728
|
"kind": "method",
|
705
|
-
"name": "
|
729
|
+
"name": "handleInvalidChange"
|
730
|
+
},
|
731
|
+
{
|
732
|
+
"kind": "method",
|
733
|
+
"name": "handleDebugInvalid"
|
734
|
+
},
|
735
|
+
{
|
736
|
+
"kind": "method",
|
737
|
+
"name": "handleCustomInvalidChange"
|
706
738
|
}
|
707
739
|
],
|
708
740
|
"events": [
|
@@ -750,14 +782,6 @@
|
|
750
782
|
"description": "If true, forces component to invalid state until removed",
|
751
783
|
"fieldName": "customInvalid"
|
752
784
|
},
|
753
|
-
{
|
754
|
-
"name": "hide-label",
|
755
|
-
"type": {
|
756
|
-
"text": "boolean | undefined"
|
757
|
-
},
|
758
|
-
"description": "If true, hides the label visually",
|
759
|
-
"fieldName": "hideLabel"
|
760
|
-
},
|
761
785
|
{
|
762
786
|
"name": "indeterminate",
|
763
787
|
"type": {
|
@@ -790,19 +814,10 @@
|
|
790
814
|
"description": "If defined, renders an alternative A11y text for the asterisk",
|
791
815
|
"fieldName": "requiredLabel"
|
792
816
|
},
|
793
|
-
{
|
794
|
-
"name": "size",
|
795
|
-
"type": {
|
796
|
-
"text": "'sm' | 'md'"
|
797
|
-
},
|
798
|
-
"default": "'md'",
|
799
|
-
"description": "Size of the checkbox",
|
800
|
-
"fieldName": "size"
|
801
|
-
},
|
802
817
|
{
|
803
818
|
"name": "severity",
|
804
819
|
"type": {
|
805
|
-
"text": "
|
820
|
+
"text": "\"alert\" | \"success\" | \"info\" | \"warning\""
|
806
821
|
},
|
807
822
|
"description": "If defined, styles checkbox using provided severity",
|
808
823
|
"fieldName": "severity"
|
@@ -812,9 +827,18 @@
|
|
812
827
|
"type": {
|
813
828
|
"text": "boolean | undefined"
|
814
829
|
},
|
815
|
-
"description": "If
|
830
|
+
"description": "If true, displays valid state after interaction",
|
816
831
|
"fieldName": "showValid"
|
817
832
|
},
|
833
|
+
{
|
834
|
+
"name": "size",
|
835
|
+
"type": {
|
836
|
+
"text": "'sm' | 'md'"
|
837
|
+
},
|
838
|
+
"default": "'md'",
|
839
|
+
"description": "Size of the checkbox",
|
840
|
+
"fieldName": "size"
|
841
|
+
},
|
818
842
|
{
|
819
843
|
"name": "value",
|
820
844
|
"type": {
|
@@ -850,7 +874,7 @@
|
|
850
874
|
"declarations": [
|
851
875
|
{
|
852
876
|
"kind": "class",
|
853
|
-
"description": "The `<skf-collapse>` component is a general purpose container for content that can be collapsed / expanded.\n\nSee [
|
877
|
+
"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.",
|
854
878
|
"name": "SkfCollapse",
|
855
879
|
"slots": [
|
856
880
|
{
|
@@ -863,9 +887,8 @@
|
|
863
887
|
"kind": "field",
|
864
888
|
"name": "animated",
|
865
889
|
"type": {
|
866
|
-
"text": "boolean"
|
890
|
+
"text": "boolean | undefined"
|
867
891
|
},
|
868
|
-
"default": "false",
|
869
892
|
"description": "If true, will animate the expand/collapse state",
|
870
893
|
"attribute": "animated",
|
871
894
|
"reflects": true
|
@@ -874,9 +897,8 @@
|
|
874
897
|
"kind": "field",
|
875
898
|
"name": "expanded",
|
876
899
|
"type": {
|
877
|
-
"text": "boolean"
|
900
|
+
"text": "boolean | undefined"
|
878
901
|
},
|
879
|
-
"default": "false",
|
880
902
|
"description": "If true, will set the collapse to be expanded by default",
|
881
903
|
"attribute": "expanded",
|
882
904
|
"reflects": true
|
@@ -894,19 +916,18 @@
|
|
894
916
|
"kind": "field",
|
895
917
|
"name": "headingAs",
|
896
918
|
"type": {
|
897
|
-
"text": "
|
919
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
898
920
|
},
|
899
921
|
"default": "'h2'",
|
900
|
-
"description": "
|
922
|
+
"description": "Defines which heading element will be rendered",
|
901
923
|
"attribute": "heading-as"
|
902
924
|
},
|
903
925
|
{
|
904
926
|
"kind": "field",
|
905
927
|
"name": "small",
|
906
928
|
"type": {
|
907
|
-
"text": "boolean"
|
929
|
+
"text": "boolean | undefined"
|
908
930
|
},
|
909
|
-
"default": "false",
|
910
931
|
"description": "If true, renders the small version",
|
911
932
|
"attribute": "small",
|
912
933
|
"reflects": true
|
@@ -915,9 +936,8 @@
|
|
915
936
|
"kind": "field",
|
916
937
|
"name": "truncate",
|
917
938
|
"type": {
|
918
|
-
"text": "boolean"
|
939
|
+
"text": "boolean | undefined"
|
919
940
|
},
|
920
|
-
"default": "false",
|
921
941
|
"description": "If true, will truncate the heading in collapsed state",
|
922
942
|
"attribute": "truncate",
|
923
943
|
"reflects": true
|
@@ -946,18 +966,16 @@
|
|
946
966
|
{
|
947
967
|
"name": "animated",
|
948
968
|
"type": {
|
949
|
-
"text": "boolean"
|
969
|
+
"text": "boolean | undefined"
|
950
970
|
},
|
951
|
-
"default": "false",
|
952
971
|
"description": "If true, will animate the expand/collapse state",
|
953
972
|
"fieldName": "animated"
|
954
973
|
},
|
955
974
|
{
|
956
975
|
"name": "expanded",
|
957
976
|
"type": {
|
958
|
-
"text": "boolean"
|
977
|
+
"text": "boolean | undefined"
|
959
978
|
},
|
960
|
-
"default": "false",
|
961
979
|
"description": "If true, will set the collapse to be expanded by default",
|
962
980
|
"fieldName": "expanded"
|
963
981
|
},
|
@@ -972,27 +990,25 @@
|
|
972
990
|
{
|
973
991
|
"name": "heading-as",
|
974
992
|
"type": {
|
975
|
-
"text": "
|
993
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
976
994
|
},
|
977
995
|
"default": "'h2'",
|
978
|
-
"description": "
|
996
|
+
"description": "Defines which heading element will be rendered",
|
979
997
|
"fieldName": "headingAs"
|
980
998
|
},
|
981
999
|
{
|
982
1000
|
"name": "small",
|
983
1001
|
"type": {
|
984
|
-
"text": "boolean"
|
1002
|
+
"text": "boolean | undefined"
|
985
1003
|
},
|
986
|
-
"default": "false",
|
987
1004
|
"description": "If true, renders the small version",
|
988
1005
|
"fieldName": "small"
|
989
1006
|
},
|
990
1007
|
{
|
991
1008
|
"name": "truncate",
|
992
1009
|
"type": {
|
993
|
-
"text": "boolean"
|
1010
|
+
"text": "boolean | undefined"
|
994
1011
|
},
|
995
|
-
"default": "false",
|
996
1012
|
"description": "If true, will truncate the heading in collapsed state",
|
997
1013
|
"fieldName": "truncate"
|
998
1014
|
}
|
@@ -1022,7 +1038,7 @@
|
|
1022
1038
|
"declarations": [
|
1023
1039
|
{
|
1024
1040
|
"kind": "class",
|
1025
|
-
"description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information
|
1041
|
+
"description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information",
|
1026
1042
|
"name": "SkfDivider",
|
1027
1043
|
"cssProperties": [
|
1028
1044
|
{
|
@@ -1035,6 +1051,14 @@
|
|
1035
1051
|
}
|
1036
1052
|
],
|
1037
1053
|
"members": [
|
1054
|
+
{
|
1055
|
+
"kind": "field",
|
1056
|
+
"name": "#internals",
|
1057
|
+
"privacy": "private",
|
1058
|
+
"type": {
|
1059
|
+
"text": "ElementInternals"
|
1060
|
+
}
|
1061
|
+
},
|
1038
1062
|
{
|
1039
1063
|
"kind": "field",
|
1040
1064
|
"name": "color",
|
@@ -1042,7 +1066,7 @@
|
|
1042
1066
|
"text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
|
1043
1067
|
},
|
1044
1068
|
"default": "'primary'",
|
1045
|
-
"description": "
|
1069
|
+
"description": "Defines the Divider color",
|
1046
1070
|
"attribute": "color",
|
1047
1071
|
"reflects": true
|
1048
1072
|
},
|
@@ -1050,9 +1074,8 @@
|
|
1050
1074
|
"kind": "field",
|
1051
1075
|
"name": "decorative",
|
1052
1076
|
"type": {
|
1053
|
-
"text": "boolean"
|
1077
|
+
"text": "boolean | undefined"
|
1054
1078
|
},
|
1055
|
-
"default": "false",
|
1056
1079
|
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
1057
1080
|
"attribute": "decorative"
|
1058
1081
|
},
|
@@ -1060,9 +1083,8 @@
|
|
1060
1083
|
"kind": "field",
|
1061
1084
|
"name": "vertical",
|
1062
1085
|
"type": {
|
1063
|
-
"text": "boolean"
|
1086
|
+
"text": "boolean | undefined"
|
1064
1087
|
},
|
1065
|
-
"default": "false",
|
1066
1088
|
"description": "If true, renders the divider vertically",
|
1067
1089
|
"attribute": "vertical",
|
1068
1090
|
"reflects": true
|
@@ -1075,24 +1097,22 @@
|
|
1075
1097
|
"text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
|
1076
1098
|
},
|
1077
1099
|
"default": "'primary'",
|
1078
|
-
"description": "
|
1100
|
+
"description": "Defines the Divider color",
|
1079
1101
|
"fieldName": "color"
|
1080
1102
|
},
|
1081
1103
|
{
|
1082
1104
|
"name": "decorative",
|
1083
1105
|
"type": {
|
1084
|
-
"text": "boolean"
|
1106
|
+
"text": "boolean | undefined"
|
1085
1107
|
},
|
1086
|
-
"default": "false",
|
1087
1108
|
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
1088
1109
|
"fieldName": "decorative"
|
1089
1110
|
},
|
1090
1111
|
{
|
1091
1112
|
"name": "vertical",
|
1092
1113
|
"type": {
|
1093
|
-
"text": "boolean"
|
1114
|
+
"text": "boolean | undefined"
|
1094
1115
|
},
|
1095
|
-
"default": "false",
|
1096
1116
|
"description": "If true, renders the divider vertically",
|
1097
1117
|
"fieldName": "vertical"
|
1098
1118
|
}
|
@@ -1124,15 +1144,21 @@
|
|
1124
1144
|
"kind": "class",
|
1125
1145
|
"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.",
|
1126
1146
|
"name": "SkfHeading",
|
1147
|
+
"slots": [
|
1148
|
+
{
|
1149
|
+
"description": "The headings content",
|
1150
|
+
"name": ""
|
1151
|
+
}
|
1152
|
+
],
|
1127
1153
|
"members": [
|
1128
1154
|
{
|
1129
1155
|
"kind": "field",
|
1130
1156
|
"name": "as",
|
1131
1157
|
"type": {
|
1132
|
-
"text": "
|
1158
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
1133
1159
|
},
|
1134
1160
|
"default": "'h1'",
|
1135
|
-
"description": "Controls which heading element will be rendered. Should not be used to affect appearance
|
1161
|
+
"description": "Controls which heading element will be rendered. Should not be used to affect appearance",
|
1136
1162
|
"attribute": "as",
|
1137
1163
|
"reflects": true
|
1138
1164
|
},
|
@@ -1140,7 +1166,7 @@
|
|
1140
1166
|
"kind": "field",
|
1141
1167
|
"name": "styledAs",
|
1142
1168
|
"type": {
|
1143
|
-
"text": "
|
1169
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
1144
1170
|
},
|
1145
1171
|
"description": "If provided, changes the appearance of the heading",
|
1146
1172
|
"attribute": "styled-as"
|
@@ -1150,16 +1176,16 @@
|
|
1150
1176
|
{
|
1151
1177
|
"name": "as",
|
1152
1178
|
"type": {
|
1153
|
-
"text": "
|
1179
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
1154
1180
|
},
|
1155
1181
|
"default": "'h1'",
|
1156
|
-
"description": "Controls which heading element will be rendered. Should not be used to affect appearance
|
1182
|
+
"description": "Controls which heading element will be rendered. Should not be used to affect appearance",
|
1157
1183
|
"fieldName": "as"
|
1158
1184
|
},
|
1159
1185
|
{
|
1160
1186
|
"name": "styled-as",
|
1161
1187
|
"type": {
|
1162
|
-
"text": "
|
1188
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
1163
1189
|
},
|
1164
1190
|
"description": "If provided, changes the appearance of the heading",
|
1165
1191
|
"fieldName": "styledAs"
|
@@ -1193,6 +1219,15 @@
|
|
1193
1219
|
"description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text",
|
1194
1220
|
"name": "SkfIcon",
|
1195
1221
|
"members": [
|
1222
|
+
{
|
1223
|
+
"kind": "field",
|
1224
|
+
"name": "_rootId",
|
1225
|
+
"type": {
|
1226
|
+
"text": "string"
|
1227
|
+
},
|
1228
|
+
"privacy": "private",
|
1229
|
+
"default": "'root'"
|
1230
|
+
},
|
1196
1231
|
{
|
1197
1232
|
"kind": "field",
|
1198
1233
|
"name": "color",
|
@@ -1200,6 +1235,7 @@
|
|
1200
1235
|
"text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
|
1201
1236
|
},
|
1202
1237
|
"default": "'primary'",
|
1238
|
+
"description": "Sets the color of the icon",
|
1203
1239
|
"attribute": "color",
|
1204
1240
|
"reflects": true
|
1205
1241
|
},
|
@@ -1209,7 +1245,7 @@
|
|
1209
1245
|
"type": {
|
1210
1246
|
"text": "string | undefined"
|
1211
1247
|
},
|
1212
|
-
"description": "If
|
1248
|
+
"description": "If defined, adds an alternate description to use for assistive devices",
|
1213
1249
|
"attribute": "label"
|
1214
1250
|
},
|
1215
1251
|
{
|
@@ -1218,6 +1254,7 @@
|
|
1218
1254
|
"type": {
|
1219
1255
|
"text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
|
1220
1256
|
},
|
1257
|
+
"description": "Name of the icon to display",
|
1221
1258
|
"attribute": "name"
|
1222
1259
|
},
|
1223
1260
|
{
|
@@ -1227,8 +1264,19 @@
|
|
1227
1264
|
"text": "\"xs\" | \"sm\" | \"md\" | \"lg\""
|
1228
1265
|
},
|
1229
1266
|
"default": "'md'",
|
1267
|
+
"description": "Size of the icon",
|
1230
1268
|
"attribute": "size",
|
1231
1269
|
"reflects": true
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
"kind": "field",
|
1273
|
+
"name": "renderDecorativeIcon",
|
1274
|
+
"privacy": "private"
|
1275
|
+
},
|
1276
|
+
{
|
1277
|
+
"kind": "field",
|
1278
|
+
"name": "renderInformativeIcon",
|
1279
|
+
"privacy": "private"
|
1232
1280
|
}
|
1233
1281
|
],
|
1234
1282
|
"attributes": [
|
@@ -1238,6 +1286,7 @@
|
|
1238
1286
|
"text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
|
1239
1287
|
},
|
1240
1288
|
"default": "'primary'",
|
1289
|
+
"description": "Sets the color of the icon",
|
1241
1290
|
"fieldName": "color"
|
1242
1291
|
},
|
1243
1292
|
{
|
@@ -1245,7 +1294,7 @@
|
|
1245
1294
|
"type": {
|
1246
1295
|
"text": "string | undefined"
|
1247
1296
|
},
|
1248
|
-
"description": "If
|
1297
|
+
"description": "If defined, adds an alternate description to use for assistive devices",
|
1249
1298
|
"fieldName": "label"
|
1250
1299
|
},
|
1251
1300
|
{
|
@@ -1253,6 +1302,7 @@
|
|
1253
1302
|
"type": {
|
1254
1303
|
"text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
|
1255
1304
|
},
|
1305
|
+
"description": "Name of the icon to display",
|
1256
1306
|
"fieldName": "name"
|
1257
1307
|
},
|
1258
1308
|
{
|
@@ -1261,6 +1311,7 @@
|
|
1261
1311
|
"text": "\"xs\" | \"sm\" | \"md\" | \"lg\""
|
1262
1312
|
},
|
1263
1313
|
"default": "'md'",
|
1314
|
+
"description": "Size of the icon",
|
1264
1315
|
"fieldName": "size"
|
1265
1316
|
}
|
1266
1317
|
],
|
@@ -1293,8 +1344,8 @@
|
|
1293
1344
|
"name": "SkfInput",
|
1294
1345
|
"slots": [
|
1295
1346
|
{
|
1296
|
-
"description": " Alternatively, you can use the `label` attribute",
|
1297
|
-
"name": "
|
1347
|
+
"description": "The Inputs label. Alternatively, you can use the `label` attribute.",
|
1348
|
+
"name": ""
|
1298
1349
|
}
|
1299
1350
|
],
|
1300
1351
|
"members": [
|
@@ -1306,6 +1357,15 @@
|
|
1306
1357
|
},
|
1307
1358
|
"privacy": "private"
|
1308
1359
|
},
|
1360
|
+
{
|
1361
|
+
"kind": "field",
|
1362
|
+
"name": "autocomplete",
|
1363
|
+
"type": {
|
1364
|
+
"text": ""
|
1365
|
+
},
|
1366
|
+
"description": "-m }",
|
1367
|
+
"attribute": "autocomplete"
|
1368
|
+
},
|
1309
1369
|
{
|
1310
1370
|
"kind": "field",
|
1311
1371
|
"name": "buttonAriaLabelClear",
|
@@ -1313,7 +1373,7 @@
|
|
1313
1373
|
"text": "string"
|
1314
1374
|
},
|
1315
1375
|
"default": "'Clear input'",
|
1316
|
-
"description": "
|
1376
|
+
"description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
|
1317
1377
|
"attribute": "button-aria-label-clear"
|
1318
1378
|
},
|
1319
1379
|
{
|
@@ -1323,7 +1383,7 @@
|
|
1323
1383
|
"text": "string"
|
1324
1384
|
},
|
1325
1385
|
"default": "'Hide password'",
|
1326
|
-
"description": "
|
1386
|
+
"description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
|
1327
1387
|
"attribute": "button-aria-label-hide"
|
1328
1388
|
},
|
1329
1389
|
{
|
@@ -1333,13 +1393,13 @@
|
|
1333
1393
|
"text": "string"
|
1334
1394
|
},
|
1335
1395
|
"default": "'Show password'",
|
1336
|
-
"description": "
|
1396
|
+
"description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
|
1337
1397
|
"attribute": "button-aria-label-show"
|
1338
1398
|
},
|
1339
1399
|
{
|
1340
1400
|
"kind": "field",
|
1341
1401
|
"name": "customInvalid",
|
1342
|
-
"description": "If
|
1402
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
1343
1403
|
"attribute": "custom-invalid",
|
1344
1404
|
"reflects": true
|
1345
1405
|
},
|
@@ -1347,19 +1407,17 @@
|
|
1347
1407
|
"kind": "field",
|
1348
1408
|
"name": "debug",
|
1349
1409
|
"type": {
|
1350
|
-
"text": "boolean"
|
1410
|
+
"text": "boolean | undefined"
|
1351
1411
|
},
|
1352
|
-
"
|
1353
|
-
"description": "If provided, outputs helping hints in console",
|
1412
|
+
"description": "If true, outputs helping hints in console",
|
1354
1413
|
"attribute": "debug"
|
1355
1414
|
},
|
1356
1415
|
{
|
1357
1416
|
"kind": "field",
|
1358
1417
|
"name": "hideLabel",
|
1359
1418
|
"type": {
|
1360
|
-
"text": "boolean"
|
1419
|
+
"text": "boolean | undefined"
|
1361
1420
|
},
|
1362
|
-
"default": "false",
|
1363
1421
|
"description": "If true, hides the label visually",
|
1364
1422
|
"attribute": "hide-label"
|
1365
1423
|
},
|
@@ -1369,7 +1427,7 @@
|
|
1369
1427
|
"type": {
|
1370
1428
|
"text": "string | undefined"
|
1371
1429
|
},
|
1372
|
-
"description": "If
|
1430
|
+
"description": "If defined, displays informational text below the field",
|
1373
1431
|
"attribute": "hint"
|
1374
1432
|
},
|
1375
1433
|
{
|
@@ -1379,7 +1437,7 @@
|
|
1379
1437
|
"text": "'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'"
|
1380
1438
|
},
|
1381
1439
|
"default": "'text'",
|
1382
|
-
"description": "
|
1440
|
+
"description": "Tells what keyboard to use if applicable",
|
1383
1441
|
"attribute": "inputmode"
|
1384
1442
|
},
|
1385
1443
|
{
|
@@ -1388,7 +1446,7 @@
|
|
1388
1446
|
"type": {
|
1389
1447
|
"text": "string | undefined"
|
1390
1448
|
},
|
1391
|
-
"description": "
|
1449
|
+
"description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
|
1392
1450
|
"attribute": "label"
|
1393
1451
|
},
|
1394
1452
|
{
|
@@ -1397,7 +1455,7 @@
|
|
1397
1455
|
"type": {
|
1398
1456
|
"text": "string | undefined"
|
1399
1457
|
},
|
1400
|
-
"description": "If
|
1458
|
+
"description": "If defined, displays a prefix/adornment before the input-element",
|
1401
1459
|
"attribute": "leading"
|
1402
1460
|
},
|
1403
1461
|
{
|
@@ -1406,7 +1464,7 @@
|
|
1406
1464
|
"type": {
|
1407
1465
|
"text": "number | string | undefined"
|
1408
1466
|
},
|
1409
|
-
"description": "If
|
1467
|
+
"description": "If defined, sets the maximum value to accept for this input",
|
1410
1468
|
"attribute": "max"
|
1411
1469
|
},
|
1412
1470
|
{
|
@@ -1415,7 +1473,7 @@
|
|
1415
1473
|
"type": {
|
1416
1474
|
"text": "number | undefined"
|
1417
1475
|
},
|
1418
|
-
"description": "If
|
1476
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
1419
1477
|
"attribute": "maxlength"
|
1420
1478
|
},
|
1421
1479
|
{
|
@@ -1424,7 +1482,7 @@
|
|
1424
1482
|
"type": {
|
1425
1483
|
"text": "number | string | undefined"
|
1426
1484
|
},
|
1427
|
-
"description": "If
|
1485
|
+
"description": "If defined, sets the minimum value to accept for this input",
|
1428
1486
|
"attribute": "min"
|
1429
1487
|
},
|
1430
1488
|
{
|
@@ -1433,7 +1491,7 @@
|
|
1433
1491
|
"type": {
|
1434
1492
|
"text": "number | undefined"
|
1435
1493
|
},
|
1436
|
-
"description": "If
|
1494
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
1437
1495
|
"attribute": "minlength"
|
1438
1496
|
},
|
1439
1497
|
{
|
@@ -1442,7 +1500,7 @@
|
|
1442
1500
|
"type": {
|
1443
1501
|
"text": "string | undefined"
|
1444
1502
|
},
|
1445
|
-
"description": "If
|
1503
|
+
"description": "If defined, adds name to the input-element",
|
1446
1504
|
"attribute": "name"
|
1447
1505
|
},
|
1448
1506
|
{
|
@@ -1451,7 +1509,7 @@
|
|
1451
1509
|
"type": {
|
1452
1510
|
"text": "string | undefined"
|
1453
1511
|
},
|
1454
|
-
"description": "If
|
1512
|
+
"description": "If defined, adds name to the input-element",
|
1455
1513
|
"attribute": "pattern"
|
1456
1514
|
},
|
1457
1515
|
{
|
@@ -1460,7 +1518,7 @@
|
|
1460
1518
|
"type": {
|
1461
1519
|
"text": "string | undefined"
|
1462
1520
|
},
|
1463
|
-
"description": "If
|
1521
|
+
"description": "If defined, displays placeholder text",
|
1464
1522
|
"attribute": "placeholder"
|
1465
1523
|
},
|
1466
1524
|
{
|
@@ -1478,17 +1536,18 @@
|
|
1478
1536
|
"type": {
|
1479
1537
|
"text": "string | undefined"
|
1480
1538
|
},
|
1481
|
-
"description": "If
|
1539
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
1482
1540
|
"attribute": "required-label"
|
1483
1541
|
},
|
1484
1542
|
{
|
1485
1543
|
"kind": "field",
|
1486
1544
|
"name": "severity",
|
1487
1545
|
"type": {
|
1488
|
-
"text": "
|
1546
|
+
"text": "\"alert\" | \"success\" | \"info\" | \"warning\""
|
1489
1547
|
},
|
1490
|
-
"description": "If
|
1491
|
-
"attribute": "severity"
|
1548
|
+
"description": "If defined, displays provided severity state",
|
1549
|
+
"attribute": "severity",
|
1550
|
+
"reflects": true
|
1492
1551
|
},
|
1493
1552
|
{
|
1494
1553
|
"kind": "field",
|
@@ -1496,17 +1555,17 @@
|
|
1496
1555
|
"type": {
|
1497
1556
|
"text": "boolean | undefined"
|
1498
1557
|
},
|
1499
|
-
"description": "If
|
1558
|
+
"description": "If true, displays valid state after interaction",
|
1500
1559
|
"attribute": "show-valid"
|
1501
1560
|
},
|
1502
1561
|
{
|
1503
1562
|
"kind": "field",
|
1504
1563
|
"name": "size",
|
1505
1564
|
"type": {
|
1506
|
-
"text": "'sm' | 'md'
|
1565
|
+
"text": "'sm' | 'md'"
|
1507
1566
|
},
|
1508
1567
|
"default": "'md'",
|
1509
|
-
"description": "
|
1568
|
+
"description": "Size of the input",
|
1510
1569
|
"attribute": "size",
|
1511
1570
|
"reflects": true
|
1512
1571
|
},
|
@@ -1516,27 +1575,27 @@
|
|
1516
1575
|
"type": {
|
1517
1576
|
"text": "string | undefined"
|
1518
1577
|
},
|
1519
|
-
"description": "If
|
1578
|
+
"description": "If defined, displays a suffix/adornment after the input-element",
|
1520
1579
|
"attribute": "trailing"
|
1521
1580
|
},
|
1522
1581
|
{
|
1523
1582
|
"kind": "field",
|
1524
1583
|
"name": "type",
|
1525
1584
|
"type": {
|
1526
|
-
"text": "
|
1585
|
+
"text": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
|
1527
1586
|
},
|
1528
1587
|
"default": "'text'",
|
1529
|
-
"description": "
|
1588
|
+
"description": "Type of input control",
|
1530
1589
|
"attribute": "type"
|
1531
1590
|
},
|
1532
1591
|
{
|
1533
1592
|
"kind": "field",
|
1534
1593
|
"name": "validateOn",
|
1535
1594
|
"type": {
|
1536
|
-
"text": "'input' | 'change' | 'submit'
|
1595
|
+
"text": "'input' | 'change' | 'submit'"
|
1537
1596
|
},
|
1538
1597
|
"default": "'change'",
|
1539
|
-
"description": "
|
1598
|
+
"description": "Sets validation start",
|
1540
1599
|
"attribute": "validate-on"
|
1541
1600
|
},
|
1542
1601
|
{
|
@@ -1548,16 +1607,6 @@
|
|
1548
1607
|
"default": "''",
|
1549
1608
|
"description": "The current value of the input field",
|
1550
1609
|
"attribute": "value"
|
1551
|
-
},
|
1552
|
-
{
|
1553
|
-
"kind": "field",
|
1554
|
-
"name": "_numberController",
|
1555
|
-
"default": "new InputNumberController(this)"
|
1556
|
-
},
|
1557
|
-
{
|
1558
|
-
"kind": "field",
|
1559
|
-
"name": "_passwordController",
|
1560
|
-
"default": "new InputPasswordController(this)"
|
1561
1610
|
}
|
1562
1611
|
],
|
1563
1612
|
"events": [
|
@@ -1585,13 +1634,21 @@
|
|
1585
1634
|
"description": "If true, value is required or must be checked for the form to be submittable",
|
1586
1635
|
"name": "required"
|
1587
1636
|
},
|
1637
|
+
{
|
1638
|
+
"name": "autocomplete",
|
1639
|
+
"type": {
|
1640
|
+
"text": ""
|
1641
|
+
},
|
1642
|
+
"description": "-m }",
|
1643
|
+
"fieldName": "autocomplete"
|
1644
|
+
},
|
1588
1645
|
{
|
1589
1646
|
"name": "button-aria-label-clear",
|
1590
1647
|
"type": {
|
1591
1648
|
"text": "string"
|
1592
1649
|
},
|
1593
1650
|
"default": "'Clear input'",
|
1594
|
-
"description": "
|
1651
|
+
"description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
|
1595
1652
|
"fieldName": "buttonAriaLabelClear"
|
1596
1653
|
},
|
1597
1654
|
{
|
@@ -1600,7 +1657,7 @@
|
|
1600
1657
|
"text": "string"
|
1601
1658
|
},
|
1602
1659
|
"default": "'Hide password'",
|
1603
|
-
"description": "
|
1660
|
+
"description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
|
1604
1661
|
"fieldName": "buttonAriaLabelHide"
|
1605
1662
|
},
|
1606
1663
|
{
|
@@ -1609,29 +1666,27 @@
|
|
1609
1666
|
"text": "string"
|
1610
1667
|
},
|
1611
1668
|
"default": "'Show password'",
|
1612
|
-
"description": "
|
1669
|
+
"description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
|
1613
1670
|
"fieldName": "buttonAriaLabelShow"
|
1614
1671
|
},
|
1615
1672
|
{
|
1616
1673
|
"name": "custom-invalid",
|
1617
|
-
"description": "If
|
1674
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
1618
1675
|
"fieldName": "customInvalid"
|
1619
1676
|
},
|
1620
1677
|
{
|
1621
1678
|
"name": "debug",
|
1622
1679
|
"type": {
|
1623
|
-
"text": "boolean"
|
1680
|
+
"text": "boolean | undefined"
|
1624
1681
|
},
|
1625
|
-
"
|
1626
|
-
"description": "If provided, outputs helping hints in console",
|
1682
|
+
"description": "If true, outputs helping hints in console",
|
1627
1683
|
"fieldName": "debug"
|
1628
1684
|
},
|
1629
1685
|
{
|
1630
1686
|
"name": "hide-label",
|
1631
1687
|
"type": {
|
1632
|
-
"text": "boolean"
|
1688
|
+
"text": "boolean | undefined"
|
1633
1689
|
},
|
1634
|
-
"default": "false",
|
1635
1690
|
"description": "If true, hides the label visually",
|
1636
1691
|
"fieldName": "hideLabel"
|
1637
1692
|
},
|
@@ -1640,7 +1695,7 @@
|
|
1640
1695
|
"type": {
|
1641
1696
|
"text": "string | undefined"
|
1642
1697
|
},
|
1643
|
-
"description": "If
|
1698
|
+
"description": "If defined, displays informational text below the field",
|
1644
1699
|
"fieldName": "hint"
|
1645
1700
|
},
|
1646
1701
|
{
|
@@ -1649,7 +1704,7 @@
|
|
1649
1704
|
"text": "'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'"
|
1650
1705
|
},
|
1651
1706
|
"default": "'text'",
|
1652
|
-
"description": "
|
1707
|
+
"description": "Tells what keyboard to use if applicable",
|
1653
1708
|
"fieldName": "inputmode"
|
1654
1709
|
},
|
1655
1710
|
{
|
@@ -1657,7 +1712,7 @@
|
|
1657
1712
|
"type": {
|
1658
1713
|
"text": "string | undefined"
|
1659
1714
|
},
|
1660
|
-
"description": "
|
1715
|
+
"description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
|
1661
1716
|
"fieldName": "label"
|
1662
1717
|
},
|
1663
1718
|
{
|
@@ -1665,7 +1720,7 @@
|
|
1665
1720
|
"type": {
|
1666
1721
|
"text": "string | undefined"
|
1667
1722
|
},
|
1668
|
-
"description": "If
|
1723
|
+
"description": "If defined, displays a prefix/adornment before the input-element",
|
1669
1724
|
"fieldName": "leading"
|
1670
1725
|
},
|
1671
1726
|
{
|
@@ -1673,7 +1728,7 @@
|
|
1673
1728
|
"type": {
|
1674
1729
|
"text": "number | string | undefined"
|
1675
1730
|
},
|
1676
|
-
"description": "If
|
1731
|
+
"description": "If defined, sets the maximum value to accept for this input",
|
1677
1732
|
"fieldName": "max"
|
1678
1733
|
},
|
1679
1734
|
{
|
@@ -1681,7 +1736,7 @@
|
|
1681
1736
|
"type": {
|
1682
1737
|
"text": "number | undefined"
|
1683
1738
|
},
|
1684
|
-
"description": "If
|
1739
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
1685
1740
|
"fieldName": "maxLength"
|
1686
1741
|
},
|
1687
1742
|
{
|
@@ -1689,7 +1744,7 @@
|
|
1689
1744
|
"type": {
|
1690
1745
|
"text": "number | string | undefined"
|
1691
1746
|
},
|
1692
|
-
"description": "If
|
1747
|
+
"description": "If defined, sets the minimum value to accept for this input",
|
1693
1748
|
"fieldName": "min"
|
1694
1749
|
},
|
1695
1750
|
{
|
@@ -1697,7 +1752,7 @@
|
|
1697
1752
|
"type": {
|
1698
1753
|
"text": "number | undefined"
|
1699
1754
|
},
|
1700
|
-
"description": "If
|
1755
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
1701
1756
|
"fieldName": "minLength"
|
1702
1757
|
},
|
1703
1758
|
{
|
@@ -1705,7 +1760,7 @@
|
|
1705
1760
|
"type": {
|
1706
1761
|
"text": "string | undefined"
|
1707
1762
|
},
|
1708
|
-
"description": "If
|
1763
|
+
"description": "If defined, adds name to the input-element",
|
1709
1764
|
"fieldName": "name"
|
1710
1765
|
},
|
1711
1766
|
{
|
@@ -1713,7 +1768,7 @@
|
|
1713
1768
|
"type": {
|
1714
1769
|
"text": "string | undefined"
|
1715
1770
|
},
|
1716
|
-
"description": "If
|
1771
|
+
"description": "If defined, adds name to the input-element",
|
1717
1772
|
"fieldName": "pattern"
|
1718
1773
|
},
|
1719
1774
|
{
|
@@ -1721,7 +1776,7 @@
|
|
1721
1776
|
"type": {
|
1722
1777
|
"text": "string | undefined"
|
1723
1778
|
},
|
1724
|
-
"description": "If
|
1779
|
+
"description": "If defined, displays placeholder text",
|
1725
1780
|
"fieldName": "placeholder"
|
1726
1781
|
},
|
1727
1782
|
{
|
@@ -1737,15 +1792,15 @@
|
|
1737
1792
|
"type": {
|
1738
1793
|
"text": "string | undefined"
|
1739
1794
|
},
|
1740
|
-
"description": "If
|
1795
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
1741
1796
|
"fieldName": "requiredLabel"
|
1742
1797
|
},
|
1743
1798
|
{
|
1744
1799
|
"name": "severity",
|
1745
1800
|
"type": {
|
1746
|
-
"text": "
|
1801
|
+
"text": "\"alert\" | \"success\" | \"info\" | \"warning\""
|
1747
1802
|
},
|
1748
|
-
"description": "If
|
1803
|
+
"description": "If defined, displays provided severity state",
|
1749
1804
|
"fieldName": "severity"
|
1750
1805
|
},
|
1751
1806
|
{
|
@@ -1753,16 +1808,16 @@
|
|
1753
1808
|
"type": {
|
1754
1809
|
"text": "boolean | undefined"
|
1755
1810
|
},
|
1756
|
-
"description": "If
|
1811
|
+
"description": "If true, displays valid state after interaction",
|
1757
1812
|
"fieldName": "showValid"
|
1758
1813
|
},
|
1759
1814
|
{
|
1760
1815
|
"name": "size",
|
1761
1816
|
"type": {
|
1762
|
-
"text": "'sm' | 'md'
|
1817
|
+
"text": "'sm' | 'md'"
|
1763
1818
|
},
|
1764
1819
|
"default": "'md'",
|
1765
|
-
"description": "
|
1820
|
+
"description": "Size of the input",
|
1766
1821
|
"fieldName": "size"
|
1767
1822
|
},
|
1768
1823
|
{
|
@@ -1770,25 +1825,25 @@
|
|
1770
1825
|
"type": {
|
1771
1826
|
"text": "string | undefined"
|
1772
1827
|
},
|
1773
|
-
"description": "If
|
1828
|
+
"description": "If defined, displays a suffix/adornment after the input-element",
|
1774
1829
|
"fieldName": "trailing"
|
1775
1830
|
},
|
1776
1831
|
{
|
1777
1832
|
"name": "type",
|
1778
1833
|
"type": {
|
1779
|
-
"text": "
|
1834
|
+
"text": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
|
1780
1835
|
},
|
1781
1836
|
"default": "'text'",
|
1782
|
-
"description": "
|
1837
|
+
"description": "Type of input control",
|
1783
1838
|
"fieldName": "type"
|
1784
1839
|
},
|
1785
1840
|
{
|
1786
1841
|
"name": "validate-on",
|
1787
1842
|
"type": {
|
1788
|
-
"text": "'input' | 'change' | 'submit'
|
1843
|
+
"text": "'input' | 'change' | 'submit'"
|
1789
1844
|
},
|
1790
1845
|
"default": "'change'",
|
1791
|
-
"description": "
|
1846
|
+
"description": "Sets validation start",
|
1792
1847
|
"fieldName": "validateOn"
|
1793
1848
|
},
|
1794
1849
|
{
|
@@ -1830,9 +1885,6 @@
|
|
1830
1885
|
"name": "SkfLink",
|
1831
1886
|
"slots": [
|
1832
1887
|
{
|
1833
|
-
"type": {
|
1834
|
-
"text": "string"
|
1835
|
-
},
|
1836
1888
|
"description": "The links' main content",
|
1837
1889
|
"name": ""
|
1838
1890
|
}
|
@@ -1853,7 +1905,7 @@
|
|
1853
1905
|
"text": "'button' | 'a'"
|
1854
1906
|
},
|
1855
1907
|
"default": "'a'",
|
1856
|
-
"description": "
|
1908
|
+
"description": "Defines the semantic element to render",
|
1857
1909
|
"attribute": "as",
|
1858
1910
|
"reflects": true
|
1859
1911
|
},
|
@@ -1864,6 +1916,7 @@
|
|
1864
1916
|
"text": "'primary' | 'inverse'"
|
1865
1917
|
},
|
1866
1918
|
"default": "'primary'",
|
1919
|
+
"description": "Defines the text-color",
|
1867
1920
|
"attribute": "color",
|
1868
1921
|
"reflects": true
|
1869
1922
|
},
|
@@ -1883,7 +1936,7 @@
|
|
1883
1936
|
"type": {
|
1884
1937
|
"text": "string | undefined"
|
1885
1938
|
},
|
1886
|
-
"description": "If
|
1939
|
+
"description": "If defined, downloads the url",
|
1887
1940
|
"attribute": "download"
|
1888
1941
|
},
|
1889
1942
|
{
|
@@ -1892,7 +1945,7 @@
|
|
1892
1945
|
"type": {
|
1893
1946
|
"text": "string | undefined"
|
1894
1947
|
},
|
1895
|
-
"description": "If
|
1948
|
+
"description": "If defined, loads url on click",
|
1896
1949
|
"attribute": "href",
|
1897
1950
|
"reflects": true
|
1898
1951
|
},
|
@@ -1902,7 +1955,7 @@
|
|
1902
1955
|
"type": {
|
1903
1956
|
"text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
|
1904
1957
|
},
|
1905
|
-
"description": "If
|
1958
|
+
"description": "If defined, renders an icon before or after the text",
|
1906
1959
|
"attribute": "icon"
|
1907
1960
|
},
|
1908
1961
|
{
|
@@ -1912,7 +1965,7 @@
|
|
1912
1965
|
"text": "'left' | 'right'"
|
1913
1966
|
},
|
1914
1967
|
"default": "'left'",
|
1915
|
-
"description": "
|
1968
|
+
"description": "Defines the position of the icon in relation to the text",
|
1916
1969
|
"attribute": "icon-placement",
|
1917
1970
|
"reflects": true
|
1918
1971
|
},
|
@@ -1923,7 +1976,7 @@
|
|
1923
1976
|
"text": "string"
|
1924
1977
|
},
|
1925
1978
|
"default": "'noreferrer noopener'",
|
1926
|
-
"description": "
|
1979
|
+
"description": "Defines the relationship of the target object to the link object",
|
1927
1980
|
"attribute": "rel"
|
1928
1981
|
},
|
1929
1982
|
{
|
@@ -1932,7 +1985,7 @@
|
|
1932
1985
|
"type": {
|
1933
1986
|
"text": "string | undefined"
|
1934
1987
|
},
|
1935
|
-
"description": "If
|
1988
|
+
"description": "If defined, used on conjunction with onClick property, second argument",
|
1936
1989
|
"attribute": "route",
|
1937
1990
|
"reflects": true
|
1938
1991
|
},
|
@@ -1952,7 +2005,7 @@
|
|
1952
2005
|
"type": {
|
1953
2006
|
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
1954
2007
|
},
|
1955
|
-
"description": "If
|
2008
|
+
"description": "If defined, specifies where to open the linked document",
|
1956
2009
|
"attribute": "target"
|
1957
2010
|
},
|
1958
2011
|
{
|
@@ -1962,7 +2015,7 @@
|
|
1962
2015
|
"text": "'button' | 'submit' | 'reset'"
|
1963
2016
|
},
|
1964
2017
|
"default": "'button'",
|
1965
|
-
"description": "
|
2018
|
+
"description": "Defines the type of button",
|
1966
2019
|
"attribute": "type"
|
1967
2020
|
},
|
1968
2021
|
{
|
@@ -1981,7 +2034,7 @@
|
|
1981
2034
|
"text": "'button' | 'a'"
|
1982
2035
|
},
|
1983
2036
|
"default": "'a'",
|
1984
|
-
"description": "
|
2037
|
+
"description": "Defines the semantic element to render",
|
1985
2038
|
"fieldName": "as"
|
1986
2039
|
},
|
1987
2040
|
{
|
@@ -1990,6 +2043,7 @@
|
|
1990
2043
|
"text": "'primary' | 'inverse'"
|
1991
2044
|
},
|
1992
2045
|
"default": "'primary'",
|
2046
|
+
"description": "Defines the text-color",
|
1993
2047
|
"fieldName": "color"
|
1994
2048
|
},
|
1995
2049
|
{
|
@@ -2005,7 +2059,7 @@
|
|
2005
2059
|
"type": {
|
2006
2060
|
"text": "string | undefined"
|
2007
2061
|
},
|
2008
|
-
"description": "If
|
2062
|
+
"description": "If defined, downloads the url",
|
2009
2063
|
"fieldName": "download"
|
2010
2064
|
},
|
2011
2065
|
{
|
@@ -2013,7 +2067,7 @@
|
|
2013
2067
|
"type": {
|
2014
2068
|
"text": "string | undefined"
|
2015
2069
|
},
|
2016
|
-
"description": "If
|
2070
|
+
"description": "If defined, loads url on click",
|
2017
2071
|
"fieldName": "href"
|
2018
2072
|
},
|
2019
2073
|
{
|
@@ -2021,7 +2075,7 @@
|
|
2021
2075
|
"type": {
|
2022
2076
|
"text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
|
2023
2077
|
},
|
2024
|
-
"description": "If
|
2078
|
+
"description": "If defined, renders an icon before or after the text",
|
2025
2079
|
"fieldName": "icon"
|
2026
2080
|
},
|
2027
2081
|
{
|
@@ -2030,7 +2084,7 @@
|
|
2030
2084
|
"text": "'left' | 'right'"
|
2031
2085
|
},
|
2032
2086
|
"default": "'left'",
|
2033
|
-
"description": "
|
2087
|
+
"description": "Defines the position of the icon in relation to the text",
|
2034
2088
|
"fieldName": "iconPlacement"
|
2035
2089
|
},
|
2036
2090
|
{
|
@@ -2039,7 +2093,7 @@
|
|
2039
2093
|
"text": "string"
|
2040
2094
|
},
|
2041
2095
|
"default": "'noreferrer noopener'",
|
2042
|
-
"description": "
|
2096
|
+
"description": "Defines the relationship of the target object to the link object",
|
2043
2097
|
"fieldName": "rel"
|
2044
2098
|
},
|
2045
2099
|
{
|
@@ -2047,7 +2101,7 @@
|
|
2047
2101
|
"type": {
|
2048
2102
|
"text": "string | undefined"
|
2049
2103
|
},
|
2050
|
-
"description": "If
|
2104
|
+
"description": "If defined, used on conjunction with onClick property, second argument",
|
2051
2105
|
"fieldName": "route"
|
2052
2106
|
},
|
2053
2107
|
{
|
@@ -2063,7 +2117,7 @@
|
|
2063
2117
|
"type": {
|
2064
2118
|
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
2065
2119
|
},
|
2066
|
-
"description": "If
|
2120
|
+
"description": "If defined, specifies where to open the linked document",
|
2067
2121
|
"fieldName": "target"
|
2068
2122
|
},
|
2069
2123
|
{
|
@@ -2072,7 +2126,7 @@
|
|
2072
2126
|
"text": "'button' | 'submit' | 'reset'"
|
2073
2127
|
},
|
2074
2128
|
"default": "'button'",
|
2075
|
-
"description": "
|
2129
|
+
"description": "Defines the type of button",
|
2076
2130
|
"fieldName": "type"
|
2077
2131
|
}
|
2078
2132
|
],
|
@@ -2101,9 +2155,17 @@
|
|
2101
2155
|
"declarations": [
|
2102
2156
|
{
|
2103
2157
|
"kind": "class",
|
2104
|
-
"description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities
|
2158
|
+
"description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities",
|
2105
2159
|
"name": "SkfLoader",
|
2106
2160
|
"members": [
|
2161
|
+
{
|
2162
|
+
"kind": "field",
|
2163
|
+
"name": "#internals",
|
2164
|
+
"privacy": "private",
|
2165
|
+
"type": {
|
2166
|
+
"text": "ElementInternals"
|
2167
|
+
}
|
2168
|
+
},
|
2107
2169
|
{
|
2108
2170
|
"kind": "field",
|
2109
2171
|
"name": "ariaLabel",
|
@@ -2111,6 +2173,7 @@
|
|
2111
2173
|
"text": "string"
|
2112
2174
|
},
|
2113
2175
|
"default": "'Loading...'",
|
2176
|
+
"description": "Defines the aria-label",
|
2114
2177
|
"attribute": "aria-label",
|
2115
2178
|
"reflects": true
|
2116
2179
|
},
|
@@ -2118,9 +2181,8 @@
|
|
2118
2181
|
"kind": "field",
|
2119
2182
|
"name": "invert",
|
2120
2183
|
"type": {
|
2121
|
-
"text": "boolean"
|
2184
|
+
"text": "boolean | undefined"
|
2122
2185
|
},
|
2123
|
-
"default": "false",
|
2124
2186
|
"description": "If true, inverts the color (to be used on colored backgrounds)",
|
2125
2187
|
"attribute": "invert"
|
2126
2188
|
},
|
@@ -2131,9 +2193,25 @@
|
|
2131
2193
|
"text": "'md' | 'sm' | undefined"
|
2132
2194
|
},
|
2133
2195
|
"default": "'md'",
|
2134
|
-
"description": "
|
2196
|
+
"description": "Defines the size of the loader",
|
2135
2197
|
"attribute": "size",
|
2136
2198
|
"reflects": true
|
2199
|
+
},
|
2200
|
+
{
|
2201
|
+
"kind": "field",
|
2202
|
+
"name": "role",
|
2203
|
+
"type": {
|
2204
|
+
"text": "string"
|
2205
|
+
},
|
2206
|
+
"default": "'progressbar'"
|
2207
|
+
},
|
2208
|
+
{
|
2209
|
+
"kind": "field",
|
2210
|
+
"name": "ariaLive",
|
2211
|
+
"type": {
|
2212
|
+
"text": "string"
|
2213
|
+
},
|
2214
|
+
"default": "'polite'"
|
2137
2215
|
}
|
2138
2216
|
],
|
2139
2217
|
"attributes": [
|
@@ -2143,14 +2221,14 @@
|
|
2143
2221
|
"text": "string"
|
2144
2222
|
},
|
2145
2223
|
"default": "'Loading...'",
|
2224
|
+
"description": "Defines the aria-label",
|
2146
2225
|
"fieldName": "ariaLabel"
|
2147
2226
|
},
|
2148
2227
|
{
|
2149
2228
|
"name": "invert",
|
2150
2229
|
"type": {
|
2151
|
-
"text": "boolean"
|
2230
|
+
"text": "boolean | undefined"
|
2152
2231
|
},
|
2153
|
-
"default": "false",
|
2154
2232
|
"description": "If true, inverts the color (to be used on colored backgrounds)",
|
2155
2233
|
"fieldName": "invert"
|
2156
2234
|
},
|
@@ -2160,7 +2238,7 @@
|
|
2160
2238
|
"text": "'md' | 'sm' | undefined"
|
2161
2239
|
},
|
2162
2240
|
"default": "'md'",
|
2163
|
-
"description": "
|
2241
|
+
"description": "Defines the size of the loader",
|
2164
2242
|
"fieldName": "size"
|
2165
2243
|
}
|
2166
2244
|
],
|
@@ -2205,7 +2283,7 @@
|
|
2205
2283
|
"text": "string"
|
2206
2284
|
},
|
2207
2285
|
"default": "'SKF logotype'",
|
2208
|
-
"description": "
|
2286
|
+
"description": "Defines the title of the logo",
|
2209
2287
|
"attribute": "title"
|
2210
2288
|
},
|
2211
2289
|
{
|
@@ -2215,7 +2293,7 @@
|
|
2215
2293
|
"text": "\"primary\" | \"secondary\" | \"inverse\""
|
2216
2294
|
},
|
2217
2295
|
"default": "'primary'",
|
2218
|
-
"description": "If
|
2296
|
+
"description": "If defined, sets color of the logo",
|
2219
2297
|
"attribute": "color"
|
2220
2298
|
}
|
2221
2299
|
],
|
@@ -2226,7 +2304,7 @@
|
|
2226
2304
|
"text": "string"
|
2227
2305
|
},
|
2228
2306
|
"default": "'SKF logotype'",
|
2229
|
-
"description": "
|
2307
|
+
"description": "Defines the title of the logo",
|
2230
2308
|
"fieldName": "title"
|
2231
2309
|
},
|
2232
2310
|
{
|
@@ -2235,7 +2313,7 @@
|
|
2235
2313
|
"text": "\"primary\" | \"secondary\" | \"inverse\""
|
2236
2314
|
},
|
2237
2315
|
"default": "'primary'",
|
2238
|
-
"description": "If
|
2316
|
+
"description": "If defined, sets color of the logo",
|
2239
2317
|
"fieldName": "color"
|
2240
2318
|
}
|
2241
2319
|
],
|
@@ -2258,6 +2336,102 @@
|
|
2258
2336
|
}
|
2259
2337
|
]
|
2260
2338
|
},
|
2339
|
+
{
|
2340
|
+
"kind": "javascript-module",
|
2341
|
+
"path": "src/components/progress/progress.component.ts",
|
2342
|
+
"declarations": [
|
2343
|
+
{
|
2344
|
+
"kind": "class",
|
2345
|
+
"description": "The `<skf-progress>` element displays an indicator showing the completion progress of a task, typically displayed as a progress bar",
|
2346
|
+
"name": "SkfProgress",
|
2347
|
+
"members": [
|
2348
|
+
{
|
2349
|
+
"kind": "field",
|
2350
|
+
"name": "formAssociated",
|
2351
|
+
"type": {
|
2352
|
+
"text": "boolean"
|
2353
|
+
},
|
2354
|
+
"static": true,
|
2355
|
+
"default": "true"
|
2356
|
+
},
|
2357
|
+
{
|
2358
|
+
"kind": "field",
|
2359
|
+
"name": "animated",
|
2360
|
+
"type": {
|
2361
|
+
"text": "boolean | undefined"
|
2362
|
+
},
|
2363
|
+
"description": "If true, the progress-bar's fill value is animated",
|
2364
|
+
"attribute": "animated",
|
2365
|
+
"reflects": true
|
2366
|
+
},
|
2367
|
+
{
|
2368
|
+
"kind": "field",
|
2369
|
+
"name": "max",
|
2370
|
+
"type": {
|
2371
|
+
"text": "number"
|
2372
|
+
},
|
2373
|
+
"default": "1",
|
2374
|
+
"description": "Describes how much work the task indicated by the progress element requires",
|
2375
|
+
"attribute": "max"
|
2376
|
+
},
|
2377
|
+
{
|
2378
|
+
"kind": "field",
|
2379
|
+
"name": "value",
|
2380
|
+
"type": {
|
2381
|
+
"text": "number"
|
2382
|
+
},
|
2383
|
+
"default": "0",
|
2384
|
+
"description": "Specifies how much of the task that has been completed",
|
2385
|
+
"attribute": "value"
|
2386
|
+
}
|
2387
|
+
],
|
2388
|
+
"attributes": [
|
2389
|
+
{
|
2390
|
+
"name": "animated",
|
2391
|
+
"type": {
|
2392
|
+
"text": "boolean | undefined"
|
2393
|
+
},
|
2394
|
+
"description": "If true, the progress-bar's fill value is animated",
|
2395
|
+
"fieldName": "animated"
|
2396
|
+
},
|
2397
|
+
{
|
2398
|
+
"name": "max",
|
2399
|
+
"type": {
|
2400
|
+
"text": "number"
|
2401
|
+
},
|
2402
|
+
"default": "1",
|
2403
|
+
"description": "Describes how much work the task indicated by the progress element requires",
|
2404
|
+
"fieldName": "max"
|
2405
|
+
},
|
2406
|
+
{
|
2407
|
+
"name": "value",
|
2408
|
+
"type": {
|
2409
|
+
"text": "number"
|
2410
|
+
},
|
2411
|
+
"default": "0",
|
2412
|
+
"description": "Specifies how much of the task that has been completed",
|
2413
|
+
"fieldName": "value"
|
2414
|
+
}
|
2415
|
+
],
|
2416
|
+
"superclass": {
|
2417
|
+
"name": "SkfElement",
|
2418
|
+
"package": "@internal/components/skf-element"
|
2419
|
+
},
|
2420
|
+
"tagName": "skf-progress",
|
2421
|
+
"customElement": true
|
2422
|
+
}
|
2423
|
+
],
|
2424
|
+
"exports": [
|
2425
|
+
{
|
2426
|
+
"kind": "js",
|
2427
|
+
"name": "SkfProgress",
|
2428
|
+
"declaration": {
|
2429
|
+
"name": "SkfProgress",
|
2430
|
+
"module": "src/components/progress/progress.component.ts"
|
2431
|
+
}
|
2432
|
+
}
|
2433
|
+
]
|
2434
|
+
},
|
2261
2435
|
{
|
2262
2436
|
"kind": "javascript-module",
|
2263
2437
|
"path": "src/components/radio/radio.component.ts",
|
@@ -2268,19 +2442,27 @@
|
|
2268
2442
|
"name": "SkfRadio",
|
2269
2443
|
"slots": [
|
2270
2444
|
{
|
2271
|
-
"description": " Alternatively, you can use the `label` attribute",
|
2272
|
-
"name": "
|
2445
|
+
"description": "The radios label. Alternatively, you can use the `label` attribute.",
|
2446
|
+
"name": ""
|
2273
2447
|
}
|
2274
2448
|
],
|
2275
2449
|
"members": [
|
2450
|
+
{
|
2451
|
+
"kind": "field",
|
2452
|
+
"name": "_initialChecked",
|
2453
|
+
"type": {
|
2454
|
+
"text": "boolean | undefined"
|
2455
|
+
},
|
2456
|
+
"privacy": "private",
|
2457
|
+
"default": "false"
|
2458
|
+
},
|
2276
2459
|
{
|
2277
2460
|
"kind": "field",
|
2278
2461
|
"name": "debug",
|
2279
2462
|
"type": {
|
2280
|
-
"text": "boolean"
|
2463
|
+
"text": "boolean | undefined"
|
2281
2464
|
},
|
2282
|
-
"
|
2283
|
-
"description": "If provided, outputs helping hints in console",
|
2465
|
+
"description": "If true, outputs helping hints in console",
|
2284
2466
|
"attribute": "debug"
|
2285
2467
|
},
|
2286
2468
|
{
|
@@ -2302,24 +2484,13 @@
|
|
2302
2484
|
"description": "If true, forces component to invalid state until removed",
|
2303
2485
|
"attribute": "custom-invalid"
|
2304
2486
|
},
|
2305
|
-
{
|
2306
|
-
"kind": "field",
|
2307
|
-
"name": "hideLabel",
|
2308
|
-
"type": {
|
2309
|
-
"text": "boolean"
|
2310
|
-
},
|
2311
|
-
"default": "false",
|
2312
|
-
"description": "If true, hides the label visually",
|
2313
|
-
"attribute": "hide-label",
|
2314
|
-
"reflects": true
|
2315
|
-
},
|
2316
2487
|
{
|
2317
2488
|
"kind": "field",
|
2318
2489
|
"name": "label",
|
2319
2490
|
"type": {
|
2320
2491
|
"text": "string | undefined"
|
2321
2492
|
},
|
2322
|
-
"description": "
|
2493
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
2323
2494
|
"attribute": "label"
|
2324
2495
|
},
|
2325
2496
|
{
|
@@ -2328,7 +2499,7 @@
|
|
2328
2499
|
"type": {
|
2329
2500
|
"text": "string | undefined"
|
2330
2501
|
},
|
2331
|
-
"description": "If
|
2502
|
+
"description": "If defined, adds name to the input-element",
|
2332
2503
|
"attribute": "name"
|
2333
2504
|
},
|
2334
2505
|
{
|
@@ -2337,17 +2508,17 @@
|
|
2337
2508
|
"type": {
|
2338
2509
|
"text": "string | undefined"
|
2339
2510
|
},
|
2340
|
-
"description": "If
|
2511
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2341
2512
|
"attribute": "required-label"
|
2342
2513
|
},
|
2343
2514
|
{
|
2344
2515
|
"kind": "field",
|
2345
2516
|
"name": "size",
|
2346
2517
|
"type": {
|
2347
|
-
"text": "'sm' | 'md'
|
2518
|
+
"text": "'sm' | 'md'"
|
2348
2519
|
},
|
2349
2520
|
"default": "'md'",
|
2350
|
-
"description": "
|
2521
|
+
"description": "Size of the Radio",
|
2351
2522
|
"attribute": "size",
|
2352
2523
|
"reflects": true
|
2353
2524
|
},
|
@@ -2355,11 +2526,10 @@
|
|
2355
2526
|
"kind": "field",
|
2356
2527
|
"name": "severity",
|
2357
2528
|
"type": {
|
2358
|
-
"text": "
|
2529
|
+
"text": "\"success\" | \"info\" | \"warning\" | \"alert\""
|
2359
2530
|
},
|
2360
|
-
"description": "If
|
2361
|
-
"attribute": "severity"
|
2362
|
-
"reflects": true
|
2531
|
+
"description": "If defined, displays provided severity state",
|
2532
|
+
"attribute": "severity"
|
2363
2533
|
},
|
2364
2534
|
{
|
2365
2535
|
"kind": "field",
|
@@ -2367,7 +2537,7 @@
|
|
2367
2537
|
"type": {
|
2368
2538
|
"text": "boolean | undefined"
|
2369
2539
|
},
|
2370
|
-
"description": "If
|
2540
|
+
"description": "If true, displays valid state after interaction",
|
2371
2541
|
"attribute": "show-valid"
|
2372
2542
|
},
|
2373
2543
|
{
|
@@ -2382,7 +2552,19 @@
|
|
2382
2552
|
},
|
2383
2553
|
{
|
2384
2554
|
"kind": "method",
|
2385
|
-
"name": "
|
2555
|
+
"name": "handleInvalidChange"
|
2556
|
+
},
|
2557
|
+
{
|
2558
|
+
"kind": "method",
|
2559
|
+
"name": "handleDebugInvalid"
|
2560
|
+
},
|
2561
|
+
{
|
2562
|
+
"kind": "method",
|
2563
|
+
"name": "handleCheckedChanged"
|
2564
|
+
},
|
2565
|
+
{
|
2566
|
+
"kind": "method",
|
2567
|
+
"name": "handleCustomInvalidChange"
|
2386
2568
|
}
|
2387
2569
|
],
|
2388
2570
|
"events": [
|
@@ -2409,10 +2591,9 @@
|
|
2409
2591
|
{
|
2410
2592
|
"name": "debug",
|
2411
2593
|
"type": {
|
2412
|
-
"text": "boolean"
|
2594
|
+
"text": "boolean | undefined"
|
2413
2595
|
},
|
2414
|
-
"
|
2415
|
-
"description": "If provided, outputs helping hints in console",
|
2596
|
+
"description": "If true, outputs helping hints in console",
|
2416
2597
|
"fieldName": "debug"
|
2417
2598
|
},
|
2418
2599
|
{
|
@@ -2431,21 +2612,12 @@
|
|
2431
2612
|
"description": "If true, forces component to invalid state until removed",
|
2432
2613
|
"fieldName": "customInvalid"
|
2433
2614
|
},
|
2434
|
-
{
|
2435
|
-
"name": "hide-label",
|
2436
|
-
"type": {
|
2437
|
-
"text": "boolean"
|
2438
|
-
},
|
2439
|
-
"default": "false",
|
2440
|
-
"description": "If true, hides the label visually",
|
2441
|
-
"fieldName": "hideLabel"
|
2442
|
-
},
|
2443
2615
|
{
|
2444
2616
|
"name": "label",
|
2445
2617
|
"type": {
|
2446
2618
|
"text": "string | undefined"
|
2447
2619
|
},
|
2448
|
-
"description": "
|
2620
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
2449
2621
|
"fieldName": "label"
|
2450
2622
|
},
|
2451
2623
|
{
|
@@ -2453,7 +2625,7 @@
|
|
2453
2625
|
"type": {
|
2454
2626
|
"text": "string | undefined"
|
2455
2627
|
},
|
2456
|
-
"description": "If
|
2628
|
+
"description": "If defined, adds name to the input-element",
|
2457
2629
|
"fieldName": "name"
|
2458
2630
|
},
|
2459
2631
|
{
|
@@ -2461,24 +2633,24 @@
|
|
2461
2633
|
"type": {
|
2462
2634
|
"text": "string | undefined"
|
2463
2635
|
},
|
2464
|
-
"description": "If
|
2636
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2465
2637
|
"fieldName": "requiredLabel"
|
2466
2638
|
},
|
2467
2639
|
{
|
2468
2640
|
"name": "size",
|
2469
2641
|
"type": {
|
2470
|
-
"text": "'sm' | 'md'
|
2642
|
+
"text": "'sm' | 'md'"
|
2471
2643
|
},
|
2472
2644
|
"default": "'md'",
|
2473
|
-
"description": "
|
2645
|
+
"description": "Size of the Radio",
|
2474
2646
|
"fieldName": "size"
|
2475
2647
|
},
|
2476
2648
|
{
|
2477
2649
|
"name": "severity",
|
2478
2650
|
"type": {
|
2479
|
-
"text": "
|
2651
|
+
"text": "\"success\" | \"info\" | \"warning\" | \"alert\""
|
2480
2652
|
},
|
2481
|
-
"description": "If
|
2653
|
+
"description": "If defined, displays provided severity state",
|
2482
2654
|
"fieldName": "severity"
|
2483
2655
|
},
|
2484
2656
|
{
|
@@ -2486,7 +2658,7 @@
|
|
2486
2658
|
"type": {
|
2487
2659
|
"text": "boolean | undefined"
|
2488
2660
|
},
|
2489
|
-
"description": "If
|
2661
|
+
"description": "If true, displays valid state after interaction",
|
2490
2662
|
"fieldName": "showValid"
|
2491
2663
|
},
|
2492
2664
|
{
|
@@ -2520,37 +2692,38 @@
|
|
2520
2692
|
},
|
2521
2693
|
{
|
2522
2694
|
"kind": "javascript-module",
|
2523
|
-
"path": "src/components/
|
2695
|
+
"path": "src/components/select/select.component.ts",
|
2524
2696
|
"declarations": [
|
2525
2697
|
{
|
2526
2698
|
"kind": "class",
|
2527
|
-
"description": "The `<skf-
|
2528
|
-
"name": "
|
2699
|
+
"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.",
|
2700
|
+
"name": "SkfSelect",
|
2529
2701
|
"slots": [
|
2530
2702
|
{
|
2531
|
-
"description": "The
|
2703
|
+
"description": "The select's placeholder content",
|
2532
2704
|
"name": ""
|
2533
2705
|
}
|
2534
2706
|
],
|
2535
2707
|
"members": [
|
2536
2708
|
{
|
2537
2709
|
"kind": "field",
|
2538
|
-
"name": "
|
2710
|
+
"name": "buttonLabel",
|
2539
2711
|
"type": {
|
2540
|
-
"text": "
|
2712
|
+
"text": "string"
|
2541
2713
|
},
|
2542
|
-
"
|
2543
|
-
"
|
2714
|
+
"default": "'Select an option'",
|
2715
|
+
"description": "Sets the first visible text on the component",
|
2716
|
+
"attribute": "button-label",
|
2717
|
+
"reflects": true
|
2544
2718
|
},
|
2545
2719
|
{
|
2546
2720
|
"kind": "field",
|
2547
|
-
"name": "
|
2721
|
+
"name": "customInvalid",
|
2548
2722
|
"type": {
|
2549
|
-
"text": "
|
2723
|
+
"text": "string | undefined"
|
2550
2724
|
},
|
2551
|
-
"description": "If
|
2552
|
-
"attribute": "
|
2553
|
-
"reflects": true
|
2725
|
+
"description": "If defined, forces component to invalid state until removed",
|
2726
|
+
"attribute": "custom-invalid"
|
2554
2727
|
},
|
2555
2728
|
{
|
2556
2729
|
"kind": "field",
|
@@ -2559,115 +2732,245 @@
|
|
2559
2732
|
"text": "boolean | undefined"
|
2560
2733
|
},
|
2561
2734
|
"description": "If true, hides the label visually",
|
2562
|
-
"attribute": "hide-label"
|
2563
|
-
"reflects": true
|
2735
|
+
"attribute": "hide-label"
|
2564
2736
|
},
|
2565
2737
|
{
|
2566
2738
|
"kind": "field",
|
2567
|
-
"name": "
|
2739
|
+
"name": "hideTags",
|
2568
2740
|
"type": {
|
2569
|
-
"text": "
|
2741
|
+
"text": "boolean | undefined"
|
2570
2742
|
},
|
2571
|
-
"description": "If
|
2572
|
-
"attribute": "
|
2743
|
+
"description": "If true and mulltiple is true, no tags are displayed under the select",
|
2744
|
+
"attribute": "hide-tags",
|
2745
|
+
"reflects": true
|
2573
2746
|
},
|
2574
2747
|
{
|
2575
2748
|
"kind": "field",
|
2576
|
-
"name": "
|
2749
|
+
"name": "hint",
|
2577
2750
|
"type": {
|
2578
2751
|
"text": "string | undefined"
|
2579
2752
|
},
|
2580
|
-
"description": "If defined,
|
2581
|
-
"attribute": "
|
2753
|
+
"description": "If defined, sets the hint text under the select component in the form",
|
2754
|
+
"attribute": "hint"
|
2582
2755
|
},
|
2583
2756
|
{
|
2584
2757
|
"kind": "field",
|
2585
|
-
"name": "
|
2586
|
-
"
|
2587
|
-
"text": "string | undefined"
|
2588
|
-
},
|
2589
|
-
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2590
|
-
"attribute": "required-label"
|
2758
|
+
"name": "selectedValues",
|
2759
|
+
"description": "A readonly property that returns the selected value(s) in a array"
|
2591
2760
|
},
|
2592
2761
|
{
|
2593
2762
|
"kind": "field",
|
2594
|
-
"name": "
|
2595
|
-
"
|
2596
|
-
"text": "'sm' | 'md'"
|
2597
|
-
},
|
2598
|
-
"default": "'md'",
|
2599
|
-
"description": "Size of the Switch",
|
2600
|
-
"attribute": "size",
|
2601
|
-
"reflects": true
|
2763
|
+
"name": "selectedOptionsText",
|
2764
|
+
"description": "A readonly property that returns the selected slot(s) text content in a array"
|
2602
2765
|
},
|
2603
2766
|
{
|
2604
2767
|
"kind": "field",
|
2605
|
-
"name": "
|
2768
|
+
"name": "label",
|
2606
2769
|
"type": {
|
2607
|
-
"text": "string"
|
2770
|
+
"text": "string | undefined"
|
2608
2771
|
},
|
2609
|
-
"
|
2610
|
-
"
|
2611
|
-
"
|
2772
|
+
"description": "If defined, displays provided label",
|
2773
|
+
"attribute": "label",
|
2774
|
+
"reflects": true
|
2612
2775
|
},
|
2613
2776
|
{
|
2614
|
-
"kind": "
|
2615
|
-
"name": "
|
2616
|
-
}
|
2617
|
-
],
|
2618
|
-
"attributes": [
|
2619
|
-
{
|
2777
|
+
"kind": "field",
|
2778
|
+
"name": "max",
|
2620
2779
|
"type": {
|
2621
|
-
"text": "
|
2780
|
+
"text": "number | undefined"
|
2622
2781
|
},
|
2623
|
-
"description": "If
|
2624
|
-
"
|
2782
|
+
"description": "If defined, limits the number of selectable options",
|
2783
|
+
"attribute": "max"
|
2625
2784
|
},
|
2626
2785
|
{
|
2786
|
+
"kind": "field",
|
2787
|
+
"name": "min",
|
2627
2788
|
"type": {
|
2628
|
-
"text": "
|
2789
|
+
"text": "number | undefined"
|
2629
2790
|
},
|
2630
|
-
"description": "If
|
2631
|
-
"
|
2791
|
+
"description": "If defined, sets the minimum number of required options",
|
2792
|
+
"attribute": "min"
|
2632
2793
|
},
|
2633
2794
|
{
|
2634
|
-
"
|
2795
|
+
"kind": "field",
|
2796
|
+
"name": "multiple",
|
2635
2797
|
"type": {
|
2636
2798
|
"text": "boolean | undefined"
|
2637
2799
|
},
|
2638
|
-
"description": "If true,
|
2639
|
-
"
|
2800
|
+
"description": "If true, allows for multiple options to be selected",
|
2801
|
+
"attribute": "multiple",
|
2802
|
+
"reflects": true
|
2640
2803
|
},
|
2641
2804
|
{
|
2642
|
-
"
|
2805
|
+
"kind": "field",
|
2806
|
+
"name": "name",
|
2643
2807
|
"type": {
|
2644
|
-
"text": "
|
2808
|
+
"text": "string | undefined"
|
2645
2809
|
},
|
2646
|
-
"description": "If
|
2647
|
-
"
|
2810
|
+
"description": "If defined, set name of the component",
|
2811
|
+
"attribute": "name"
|
2648
2812
|
},
|
2649
2813
|
{
|
2650
|
-
"
|
2814
|
+
"kind": "field",
|
2815
|
+
"name": "requiredLabel",
|
2651
2816
|
"type": {
|
2652
|
-
"text": "
|
2817
|
+
"text": "string | undefined"
|
2653
2818
|
},
|
2654
|
-
"description": "If
|
2655
|
-
"
|
2819
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2820
|
+
"attribute": "required-label"
|
2656
2821
|
},
|
2657
2822
|
{
|
2658
|
-
"
|
2823
|
+
"kind": "field",
|
2824
|
+
"name": "severity",
|
2825
|
+
"type": {
|
2826
|
+
"text": "FormFieldBaseProps['severity'] | undefined"
|
2827
|
+
},
|
2828
|
+
"description": "If defined, displays provided severity state",
|
2829
|
+
"attribute": "severity"
|
2830
|
+
},
|
2831
|
+
{
|
2832
|
+
"kind": "field",
|
2833
|
+
"name": "showValid",
|
2834
|
+
"type": {
|
2835
|
+
"text": "boolean | undefined"
|
2836
|
+
},
|
2837
|
+
"description": "If true, displays valid state after interaction",
|
2838
|
+
"attribute": "show-valid"
|
2839
|
+
},
|
2840
|
+
{
|
2841
|
+
"kind": "field",
|
2842
|
+
"name": "size",
|
2843
|
+
"type": {
|
2844
|
+
"text": "'sm' | 'md'"
|
2845
|
+
},
|
2846
|
+
"default": "'md'",
|
2847
|
+
"description": "Size of the Select",
|
2848
|
+
"attribute": "size",
|
2849
|
+
"reflects": true
|
2850
|
+
},
|
2851
|
+
{
|
2852
|
+
"kind": "field",
|
2853
|
+
"name": "value",
|
2854
|
+
"description": "Read only, returns the selected value. (if multiple: in a comma separated string)"
|
2855
|
+
},
|
2856
|
+
{
|
2857
|
+
"kind": "field",
|
2858
|
+
"name": "_selectedOptions",
|
2859
|
+
"type": {
|
2860
|
+
"text": "array"
|
2861
|
+
},
|
2862
|
+
"default": "[]"
|
2863
|
+
}
|
2864
|
+
],
|
2865
|
+
"events": [
|
2866
|
+
{
|
2867
|
+
"description": "Fired when the selected option(s) changes",
|
2868
|
+
"name": "change"
|
2869
|
+
},
|
2870
|
+
{
|
2871
|
+
"description": "Fired when the select is invalid",
|
2872
|
+
"name": "invalid"
|
2873
|
+
},
|
2874
|
+
{
|
2875
|
+
"description": "Fired when the form is reset",
|
2876
|
+
"name": "reset"
|
2877
|
+
},
|
2878
|
+
{
|
2879
|
+
"description": "{detail: {expanded: boolean}} Fired when the select dropdown is toggled",
|
2880
|
+
"name": "skf-select:dropdown"
|
2881
|
+
},
|
2882
|
+
{
|
2883
|
+
"description": "{detail: {value: string | null, option: SkfSelectOption}} Fired when the select dropdown is toggled",
|
2884
|
+
"name": "skf-select-option:select"
|
2885
|
+
}
|
2886
|
+
],
|
2887
|
+
"attributes": [
|
2888
|
+
{
|
2889
|
+
"type": {
|
2890
|
+
"text": "boolean"
|
2891
|
+
},
|
2892
|
+
"description": "If true, the select is disabled\t`default: false`",
|
2893
|
+
"name": "disabled"
|
2894
|
+
},
|
2895
|
+
{
|
2896
|
+
"name": "button-label",
|
2897
|
+
"type": {
|
2898
|
+
"text": "string"
|
2899
|
+
},
|
2900
|
+
"default": "'Select an option'",
|
2901
|
+
"description": "Sets the first visible text on the component",
|
2902
|
+
"fieldName": "buttonLabel"
|
2903
|
+
},
|
2904
|
+
{
|
2905
|
+
"name": "custom-invalid",
|
2659
2906
|
"type": {
|
2660
2907
|
"text": "string | undefined"
|
2661
2908
|
},
|
2662
|
-
"description": "If defined,
|
2909
|
+
"description": "If defined, forces component to invalid state until removed",
|
2910
|
+
"fieldName": "customInvalid"
|
2911
|
+
},
|
2912
|
+
{
|
2913
|
+
"name": "hide-label",
|
2914
|
+
"type": {
|
2915
|
+
"text": "boolean | undefined"
|
2916
|
+
},
|
2917
|
+
"description": "If true, hides the label visually",
|
2918
|
+
"fieldName": "hideLabel"
|
2919
|
+
},
|
2920
|
+
{
|
2921
|
+
"name": "hide-tags",
|
2922
|
+
"type": {
|
2923
|
+
"text": "boolean | undefined"
|
2924
|
+
},
|
2925
|
+
"description": "If true and mulltiple is true, no tags are displayed under the select",
|
2926
|
+
"fieldName": "hideTags"
|
2927
|
+
},
|
2928
|
+
{
|
2929
|
+
"name": "hint",
|
2930
|
+
"type": {
|
2931
|
+
"text": "string | undefined"
|
2932
|
+
},
|
2933
|
+
"description": "If defined, sets the hint text under the select component in the form",
|
2934
|
+
"fieldName": "hint"
|
2935
|
+
},
|
2936
|
+
{
|
2937
|
+
"name": "label",
|
2938
|
+
"type": {
|
2939
|
+
"text": "string | undefined"
|
2940
|
+
},
|
2941
|
+
"description": "If defined, displays provided label",
|
2663
2942
|
"fieldName": "label"
|
2664
2943
|
},
|
2944
|
+
{
|
2945
|
+
"name": "max",
|
2946
|
+
"type": {
|
2947
|
+
"text": "number | undefined"
|
2948
|
+
},
|
2949
|
+
"description": "If defined, limits the number of selectable options",
|
2950
|
+
"fieldName": "max"
|
2951
|
+
},
|
2952
|
+
{
|
2953
|
+
"name": "min",
|
2954
|
+
"type": {
|
2955
|
+
"text": "number | undefined"
|
2956
|
+
},
|
2957
|
+
"description": "If defined, sets the minimum number of required options",
|
2958
|
+
"fieldName": "min"
|
2959
|
+
},
|
2960
|
+
{
|
2961
|
+
"name": "multiple",
|
2962
|
+
"type": {
|
2963
|
+
"text": "boolean | undefined"
|
2964
|
+
},
|
2965
|
+
"description": "If true, allows for multiple options to be selected",
|
2966
|
+
"fieldName": "multiple"
|
2967
|
+
},
|
2665
2968
|
{
|
2666
2969
|
"name": "name",
|
2667
2970
|
"type": {
|
2668
2971
|
"text": "string | undefined"
|
2669
2972
|
},
|
2670
|
-
"description": "If defined,
|
2973
|
+
"description": "If defined, set name of the component",
|
2671
2974
|
"fieldName": "name"
|
2672
2975
|
},
|
2673
2976
|
{
|
@@ -2679,229 +2982,348 @@
|
|
2679
2982
|
"fieldName": "requiredLabel"
|
2680
2983
|
},
|
2681
2984
|
{
|
2682
|
-
"name": "
|
2985
|
+
"name": "severity",
|
2683
2986
|
"type": {
|
2684
|
-
"text": "'
|
2987
|
+
"text": "FormFieldBaseProps['severity'] | undefined"
|
2685
2988
|
},
|
2686
|
-
"
|
2687
|
-
"
|
2688
|
-
"fieldName": "size"
|
2989
|
+
"description": "If defined, displays provided severity state",
|
2990
|
+
"fieldName": "severity"
|
2689
2991
|
},
|
2690
2992
|
{
|
2691
|
-
"name": "
|
2993
|
+
"name": "show-valid",
|
2692
2994
|
"type": {
|
2693
|
-
"text": "
|
2995
|
+
"text": "boolean | undefined"
|
2694
2996
|
},
|
2695
|
-
"
|
2696
|
-
"
|
2697
|
-
|
2997
|
+
"description": "If true, displays valid state after interaction",
|
2998
|
+
"fieldName": "showValid"
|
2999
|
+
},
|
3000
|
+
{
|
3001
|
+
"name": "size",
|
3002
|
+
"type": {
|
3003
|
+
"text": "'sm' | 'md'"
|
3004
|
+
},
|
3005
|
+
"default": "'md'",
|
3006
|
+
"description": "Size of the Select",
|
3007
|
+
"fieldName": "size"
|
2698
3008
|
}
|
2699
3009
|
],
|
2700
3010
|
"superclass": {
|
2701
3011
|
"name": "FormBase",
|
2702
3012
|
"package": "@internal/components/formBase.js"
|
2703
3013
|
},
|
2704
|
-
"tagName": "skf-
|
3014
|
+
"tagName": "skf-select",
|
2705
3015
|
"customElement": true
|
2706
3016
|
}
|
2707
3017
|
],
|
2708
3018
|
"exports": [
|
2709
3019
|
{
|
2710
3020
|
"kind": "js",
|
2711
|
-
"name": "
|
3021
|
+
"name": "SkfSelect",
|
2712
3022
|
"declaration": {
|
2713
|
-
"name": "
|
2714
|
-
"module": "src/components/
|
3023
|
+
"name": "SkfSelect",
|
3024
|
+
"module": "src/components/select/select.component.ts"
|
2715
3025
|
}
|
2716
3026
|
}
|
2717
3027
|
]
|
2718
3028
|
},
|
2719
3029
|
{
|
2720
3030
|
"kind": "javascript-module",
|
2721
|
-
"path": "src/components/
|
3031
|
+
"path": "src/components/select-option/select-option.component.ts",
|
2722
3032
|
"declarations": [
|
2723
3033
|
{
|
2724
3034
|
"kind": "class",
|
2725
|
-
"description": "The `<skf-
|
2726
|
-
"name": "
|
3035
|
+
"description": "The `<skf-select-option>` is a component is used nested in a skf-select or skf-select-option-group.",
|
3036
|
+
"name": "SkfSelectOption",
|
2727
3037
|
"slots": [
|
2728
3038
|
{
|
2729
|
-
"description": "The
|
3039
|
+
"description": "The option's text content",
|
2730
3040
|
"name": ""
|
3041
|
+
},
|
3042
|
+
{
|
3043
|
+
"description": "The option's slot for icon or custom meta information (svg).",
|
3044
|
+
"name": "icon"
|
2731
3045
|
}
|
2732
3046
|
],
|
2733
3047
|
"members": [
|
2734
3048
|
{
|
2735
3049
|
"kind": "field",
|
2736
|
-
"name": "
|
3050
|
+
"name": "shadowRootOptions",
|
2737
3051
|
"type": {
|
2738
|
-
"text": "
|
3052
|
+
"text": "object"
|
2739
3053
|
},
|
2740
|
-
"
|
2741
|
-
"
|
2742
|
-
|
3054
|
+
"static": true,
|
3055
|
+
"default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
|
3056
|
+
},
|
3057
|
+
{
|
3058
|
+
"kind": "field",
|
3059
|
+
"name": "disabled",
|
3060
|
+
"type": {
|
3061
|
+
"text": "boolean | undefined"
|
3062
|
+
},
|
3063
|
+
"description": "If true, prevents interaction with the option",
|
3064
|
+
"attribute": "disabled",
|
2743
3065
|
"reflects": true
|
2744
3066
|
},
|
2745
3067
|
{
|
2746
3068
|
"kind": "field",
|
2747
3069
|
"name": "icon",
|
2748
3070
|
"type": {
|
2749
|
-
"text": "
|
3071
|
+
"text": "SkfIcon['name'] | undefined"
|
2750
3072
|
},
|
2751
|
-
"description": "If defined,
|
2752
|
-
"attribute": "icon"
|
3073
|
+
"description": "If defined, set an icon",
|
3074
|
+
"attribute": "icon",
|
3075
|
+
"reflects": true
|
2753
3076
|
},
|
2754
3077
|
{
|
2755
3078
|
"kind": "field",
|
2756
|
-
"name": "
|
3079
|
+
"name": "iconColor",
|
2757
3080
|
"type": {
|
2758
|
-
"text": "
|
3081
|
+
"text": "SeverityFgColor | undefined"
|
2759
3082
|
},
|
2760
|
-
"description": "If defined,
|
2761
|
-
"attribute": "color",
|
3083
|
+
"description": "If defined, sets provided color on the icon",
|
3084
|
+
"attribute": "icon-color",
|
2762
3085
|
"reflects": true
|
2763
3086
|
},
|
2764
3087
|
{
|
2765
3088
|
"kind": "field",
|
2766
|
-
"name": "
|
3089
|
+
"name": "selected",
|
2767
3090
|
"type": {
|
2768
3091
|
"text": "boolean | undefined"
|
2769
3092
|
},
|
2770
|
-
"description": "If true,
|
2771
|
-
"attribute": "
|
3093
|
+
"description": "If true, sets the option as selected",
|
3094
|
+
"attribute": "selected",
|
3095
|
+
"reflects": true
|
3096
|
+
},
|
3097
|
+
{
|
3098
|
+
"kind": "field",
|
3099
|
+
"name": "shortLabel",
|
3100
|
+
"type": {
|
3101
|
+
"text": "string | undefined"
|
3102
|
+
},
|
3103
|
+
"description": "If defined, sets a short label",
|
3104
|
+
"attribute": "short-label",
|
3105
|
+
"reflects": true
|
3106
|
+
},
|
3107
|
+
{
|
3108
|
+
"kind": "field",
|
3109
|
+
"name": "text",
|
3110
|
+
"description": "The option's label text (equivalent to the tags textContent)"
|
3111
|
+
},
|
3112
|
+
{
|
3113
|
+
"kind": "field",
|
3114
|
+
"name": "value",
|
3115
|
+
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
3116
|
+
"attribute": "value",
|
3117
|
+
"reflects": true
|
3118
|
+
},
|
3119
|
+
{
|
3120
|
+
"kind": "field",
|
3121
|
+
"name": "role",
|
3122
|
+
"type": {
|
3123
|
+
"text": "string"
|
3124
|
+
},
|
3125
|
+
"default": "'option'"
|
3126
|
+
},
|
3127
|
+
{
|
3128
|
+
"kind": "field",
|
3129
|
+
"name": "_parent"
|
3130
|
+
},
|
3131
|
+
{
|
3132
|
+
"kind": "field",
|
3133
|
+
"name": "_shortcutUpdate",
|
3134
|
+
"type": {
|
3135
|
+
"text": "boolean"
|
3136
|
+
},
|
3137
|
+
"default": "false"
|
3138
|
+
}
|
3139
|
+
],
|
3140
|
+
"events": [
|
3141
|
+
{
|
3142
|
+
"description": "{detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.",
|
3143
|
+
"name": "skf-select-option:select"
|
2772
3144
|
}
|
2773
3145
|
],
|
2774
3146
|
"attributes": [
|
2775
3147
|
{
|
2776
|
-
"name": "
|
3148
|
+
"name": "disabled",
|
2777
3149
|
"type": {
|
2778
|
-
"text": "
|
3150
|
+
"text": "boolean | undefined"
|
2779
3151
|
},
|
2780
|
-
"
|
2781
|
-
"
|
2782
|
-
"fieldName": "size"
|
3152
|
+
"description": "If true, prevents interaction with the option",
|
3153
|
+
"fieldName": "disabled"
|
2783
3154
|
},
|
2784
3155
|
{
|
2785
3156
|
"name": "icon",
|
2786
3157
|
"type": {
|
2787
|
-
"text": "
|
3158
|
+
"text": "SkfIcon['name'] | undefined"
|
2788
3159
|
},
|
2789
|
-
"description": "If defined,
|
3160
|
+
"description": "If defined, set an icon",
|
2790
3161
|
"fieldName": "icon"
|
2791
3162
|
},
|
2792
3163
|
{
|
2793
|
-
"name": "color",
|
3164
|
+
"name": "icon-color",
|
2794
3165
|
"type": {
|
2795
|
-
"text": "
|
3166
|
+
"text": "SeverityFgColor | undefined"
|
2796
3167
|
},
|
2797
|
-
"description": "If defined,
|
2798
|
-
"fieldName": "
|
3168
|
+
"description": "If defined, sets provided color on the icon",
|
3169
|
+
"fieldName": "iconColor"
|
2799
3170
|
},
|
2800
3171
|
{
|
2801
|
-
"name": "
|
3172
|
+
"name": "selected",
|
2802
3173
|
"type": {
|
2803
3174
|
"text": "boolean | undefined"
|
2804
3175
|
},
|
2805
|
-
"description": "If true,
|
2806
|
-
"fieldName": "
|
3176
|
+
"description": "If true, sets the option as selected",
|
3177
|
+
"fieldName": "selected"
|
3178
|
+
},
|
3179
|
+
{
|
3180
|
+
"name": "short-label",
|
3181
|
+
"type": {
|
3182
|
+
"text": "string | undefined"
|
3183
|
+
},
|
3184
|
+
"description": "If defined, sets a short label",
|
3185
|
+
"fieldName": "shortLabel"
|
3186
|
+
},
|
3187
|
+
{
|
3188
|
+
"name": "value",
|
3189
|
+
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
3190
|
+
"fieldName": "value"
|
2807
3191
|
}
|
2808
3192
|
],
|
2809
3193
|
"superclass": {
|
2810
3194
|
"name": "SkfElement",
|
2811
|
-
"package": "@internal/components/skf-element"
|
3195
|
+
"package": "@internal/components/skf-element.js"
|
2812
3196
|
},
|
2813
|
-
"tagName": "skf-
|
3197
|
+
"tagName": "skf-select-option",
|
2814
3198
|
"customElement": true
|
2815
3199
|
}
|
2816
3200
|
],
|
2817
3201
|
"exports": [
|
2818
3202
|
{
|
2819
3203
|
"kind": "js",
|
2820
|
-
"name": "
|
3204
|
+
"name": "SkfSelectOption",
|
2821
3205
|
"declaration": {
|
2822
|
-
"name": "
|
2823
|
-
"module": "src/components/
|
3206
|
+
"name": "SkfSelectOption",
|
3207
|
+
"module": "src/components/select-option/select-option.component.ts"
|
2824
3208
|
}
|
2825
3209
|
}
|
2826
3210
|
]
|
2827
3211
|
},
|
2828
3212
|
{
|
2829
3213
|
"kind": "javascript-module",
|
2830
|
-
"path": "src/components/
|
3214
|
+
"path": "src/components/select-option-group/select-option-group.component.ts",
|
2831
3215
|
"declarations": [
|
2832
3216
|
{
|
2833
3217
|
"kind": "class",
|
2834
|
-
"description": "The skf-
|
2835
|
-
"name": "
|
3218
|
+
"description": "The `<skf-select-option-group>` is a component that groups select-options",
|
3219
|
+
"name": "SkfSelectOptionGroup",
|
2836
3220
|
"slots": [
|
2837
3221
|
{
|
2838
|
-
"description": "
|
2839
|
-
"name": "
|
3222
|
+
"description": "The component's placeholder content",
|
3223
|
+
"name": ""
|
2840
3224
|
}
|
2841
3225
|
],
|
2842
3226
|
"members": [
|
2843
3227
|
{
|
2844
3228
|
"kind": "field",
|
2845
|
-
"name": "
|
3229
|
+
"name": "label",
|
2846
3230
|
"type": {
|
2847
|
-
"text": "string
|
3231
|
+
"text": "string"
|
2848
3232
|
},
|
2849
|
-
"
|
2850
|
-
|
3233
|
+
"default": "'Default label'",
|
3234
|
+
"attribute": "label",
|
3235
|
+
"reflects": true
|
3236
|
+
}
|
3237
|
+
],
|
3238
|
+
"attributes": [
|
2851
3239
|
{
|
2852
|
-
"
|
2853
|
-
"name": "cols",
|
3240
|
+
"name": "label",
|
2854
3241
|
"type": {
|
2855
|
-
"text": "
|
3242
|
+
"text": "string"
|
2856
3243
|
},
|
2857
|
-
"default": "
|
2858
|
-
"
|
2859
|
-
|
2860
|
-
|
3244
|
+
"default": "'Default label'",
|
3245
|
+
"fieldName": "label"
|
3246
|
+
}
|
3247
|
+
],
|
3248
|
+
"superclass": {
|
3249
|
+
"name": "SkfElement",
|
3250
|
+
"package": "@internal/components/skf-element"
|
3251
|
+
},
|
3252
|
+
"tagName": "skf-select-option-group",
|
3253
|
+
"customElement": true
|
3254
|
+
}
|
3255
|
+
],
|
3256
|
+
"exports": [
|
3257
|
+
{
|
3258
|
+
"kind": "js",
|
3259
|
+
"name": "SkfSelectOptionGroup",
|
3260
|
+
"declaration": {
|
3261
|
+
"name": "SkfSelectOptionGroup",
|
3262
|
+
"module": "src/components/select-option-group/select-option-group.component.ts"
|
3263
|
+
}
|
3264
|
+
}
|
3265
|
+
]
|
3266
|
+
},
|
3267
|
+
{
|
3268
|
+
"kind": "javascript-module",
|
3269
|
+
"path": "src/components/switch/switch.component.ts",
|
3270
|
+
"declarations": [
|
3271
|
+
{
|
3272
|
+
"kind": "class",
|
3273
|
+
"description": "The `<skf-switch>` is a component that displays a list of actions or options",
|
3274
|
+
"name": "SkfSwitch",
|
3275
|
+
"slots": [
|
3276
|
+
{
|
3277
|
+
"description": "The Switchs label. Alternatively, you can use the `label` attribute.",
|
3278
|
+
"name": ""
|
3279
|
+
}
|
3280
|
+
],
|
3281
|
+
"members": [
|
2861
3282
|
{
|
2862
3283
|
"kind": "field",
|
2863
|
-
"name": "
|
2864
|
-
"
|
2865
|
-
|
2866
|
-
|
3284
|
+
"name": "_initialChecked",
|
3285
|
+
"type": {
|
3286
|
+
"text": "boolean | undefined"
|
3287
|
+
},
|
3288
|
+
"privacy": "private",
|
3289
|
+
"default": "false"
|
2867
3290
|
},
|
2868
3291
|
{
|
2869
3292
|
"kind": "field",
|
2870
3293
|
"name": "debug",
|
2871
3294
|
"type": {
|
2872
|
-
"text": "boolean"
|
3295
|
+
"text": "boolean | undefined"
|
2873
3296
|
},
|
2874
|
-
"
|
2875
|
-
"description": "If provided, outputs helping hints in console",
|
3297
|
+
"description": "If true, outputs helping hints in console",
|
2876
3298
|
"attribute": "debug"
|
2877
3299
|
},
|
2878
3300
|
{
|
2879
3301
|
"kind": "field",
|
2880
|
-
"name": "
|
3302
|
+
"name": "checked",
|
2881
3303
|
"type": {
|
2882
|
-
"text": "boolean"
|
3304
|
+
"text": "boolean | undefined"
|
2883
3305
|
},
|
2884
|
-
"
|
2885
|
-
"
|
2886
|
-
"
|
3306
|
+
"description": "If true, outputs helping hints in console",
|
3307
|
+
"attribute": "checked",
|
3308
|
+
"reflects": true
|
2887
3309
|
},
|
2888
3310
|
{
|
2889
3311
|
"kind": "field",
|
2890
|
-
"name": "
|
3312
|
+
"name": "hideLabel",
|
2891
3313
|
"type": {
|
2892
|
-
"text": "
|
3314
|
+
"text": "boolean | undefined"
|
2893
3315
|
},
|
2894
|
-
"description": "If
|
2895
|
-
"attribute": "
|
3316
|
+
"description": "If true, hides the label visually",
|
3317
|
+
"attribute": "hide-label",
|
3318
|
+
"reflects": true
|
2896
3319
|
},
|
2897
3320
|
{
|
2898
3321
|
"kind": "field",
|
2899
3322
|
"name": "label",
|
2900
3323
|
"type": {
|
2901
|
-
"text": "string"
|
3324
|
+
"text": "string | undefined"
|
2902
3325
|
},
|
2903
|
-
"
|
2904
|
-
"description": "The input's label. Alternatively, you can use the component slot.",
|
3326
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
2905
3327
|
"attribute": "label"
|
2906
3328
|
},
|
2907
3329
|
{
|
@@ -2910,103 +3332,29 @@
|
|
2910
3332
|
"type": {
|
2911
3333
|
"text": "string | undefined"
|
2912
3334
|
},
|
2913
|
-
"description": "If
|
3335
|
+
"description": "If defined, adds name to the input-element",
|
2914
3336
|
"attribute": "name"
|
2915
3337
|
},
|
2916
|
-
{
|
2917
|
-
"kind": "field",
|
2918
|
-
"name": "maxLength",
|
2919
|
-
"type": {
|
2920
|
-
"text": "number | undefined"
|
2921
|
-
},
|
2922
|
-
"description": "If provided, sets the maximum character length to accept for this input",
|
2923
|
-
"attribute": "maxlength"
|
2924
|
-
},
|
2925
|
-
{
|
2926
|
-
"kind": "field",
|
2927
|
-
"name": "minLength",
|
2928
|
-
"type": {
|
2929
|
-
"text": "number | undefined"
|
2930
|
-
},
|
2931
|
-
"description": "If provided, sets the minimum character length to accept for this input",
|
2932
|
-
"attribute": "minlength"
|
2933
|
-
},
|
2934
|
-
{
|
2935
|
-
"kind": "field",
|
2936
|
-
"name": "placeholder",
|
2937
|
-
"type": {
|
2938
|
-
"text": "string | undefined"
|
2939
|
-
},
|
2940
|
-
"description": "If provided, displays placeholder text",
|
2941
|
-
"attribute": "placeholder"
|
2942
|
-
},
|
2943
|
-
{
|
2944
|
-
"kind": "field",
|
2945
|
-
"name": "readonly",
|
2946
|
-
"type": {
|
2947
|
-
"text": "boolean | undefined"
|
2948
|
-
},
|
2949
|
-
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
2950
|
-
"attribute": "readonly"
|
2951
|
-
},
|
2952
3338
|
{
|
2953
3339
|
"kind": "field",
|
2954
3340
|
"name": "requiredLabel",
|
2955
3341
|
"type": {
|
2956
3342
|
"text": "string | undefined"
|
2957
3343
|
},
|
2958
|
-
"description": "If
|
3344
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2959
3345
|
"attribute": "required-label"
|
2960
3346
|
},
|
2961
|
-
{
|
2962
|
-
"kind": "field",
|
2963
|
-
"name": "rows",
|
2964
|
-
"type": {
|
2965
|
-
"text": "number"
|
2966
|
-
},
|
2967
|
-
"default": "2",
|
2968
|
-
"description": "If provided, sets the rows of the textarea",
|
2969
|
-
"attribute": "rows"
|
2970
|
-
},
|
2971
|
-
{
|
2972
|
-
"kind": "field",
|
2973
|
-
"name": "severity",
|
2974
|
-
"type": {
|
2975
|
-
"text": "\"success\" | \"error\""
|
2976
|
-
},
|
2977
|
-
"description": "If provided, displays provided severity state",
|
2978
|
-
"attribute": "severity"
|
2979
|
-
},
|
2980
|
-
{
|
2981
|
-
"kind": "field",
|
2982
|
-
"name": "showValid",
|
2983
|
-
"type": {
|
2984
|
-
"text": "boolean | undefined"
|
2985
|
-
},
|
2986
|
-
"description": "If true, displays valid state after interaction",
|
2987
|
-
"attribute": "show-valid"
|
2988
|
-
},
|
2989
3347
|
{
|
2990
3348
|
"kind": "field",
|
2991
3349
|
"name": "size",
|
2992
3350
|
"type": {
|
2993
|
-
"text": "'sm' | 'md'
|
3351
|
+
"text": "'sm' | 'md'"
|
2994
3352
|
},
|
2995
3353
|
"default": "'md'",
|
2996
|
-
"description": "
|
3354
|
+
"description": "Size of the Switch",
|
2997
3355
|
"attribute": "size",
|
2998
3356
|
"reflects": true
|
2999
3357
|
},
|
3000
|
-
{
|
3001
|
-
"kind": "field",
|
3002
|
-
"name": "validateOn",
|
3003
|
-
"type": {
|
3004
|
-
"text": "'input' | 'change' | 'submit' | undefined"
|
3005
|
-
},
|
3006
|
-
"default": "'change'",
|
3007
|
-
"description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
|
3008
|
-
"attribute": "validate-on"
|
3009
|
-
},
|
3010
3358
|
{
|
3011
3359
|
"kind": "field",
|
3012
3360
|
"name": "value",
|
@@ -3014,18 +3362,12 @@
|
|
3014
3362
|
"text": "string"
|
3015
3363
|
},
|
3016
3364
|
"default": "''",
|
3017
|
-
"description": "The current value of the
|
3365
|
+
"description": "The current value of the input field",
|
3018
3366
|
"attribute": "value"
|
3019
|
-
}
|
3020
|
-
],
|
3021
|
-
"events": [
|
3022
|
-
{
|
3023
|
-
"description": "Fires when the value of the input changes",
|
3024
|
-
"name": "change"
|
3025
3367
|
},
|
3026
3368
|
{
|
3027
|
-
"
|
3028
|
-
"name": "
|
3369
|
+
"kind": "method",
|
3370
|
+
"name": "debugOutput"
|
3029
3371
|
}
|
3030
3372
|
],
|
3031
3373
|
"attributes": [
|
@@ -3043,53 +3385,36 @@
|
|
3043
3385
|
"description": "If true, value is required or must be checked for the form to be submittable",
|
3044
3386
|
"name": "required"
|
3045
3387
|
},
|
3046
|
-
{
|
3047
|
-
"name": "cols",
|
3048
|
-
"type": {
|
3049
|
-
"text": "number"
|
3050
|
-
},
|
3051
|
-
"default": "20",
|
3052
|
-
"description": "If provided, sets the cols of the textarea",
|
3053
|
-
"fieldName": "cols"
|
3054
|
-
},
|
3055
|
-
{
|
3056
|
-
"name": "custom-invalid",
|
3057
|
-
"description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
|
3058
|
-
"fieldName": "customInvalid"
|
3059
|
-
},
|
3060
3388
|
{
|
3061
3389
|
"name": "debug",
|
3062
3390
|
"type": {
|
3063
|
-
"text": "boolean"
|
3391
|
+
"text": "boolean | undefined"
|
3064
3392
|
},
|
3065
|
-
"
|
3066
|
-
"description": "If provided, outputs helping hints in console",
|
3393
|
+
"description": "If true, outputs helping hints in console",
|
3067
3394
|
"fieldName": "debug"
|
3068
3395
|
},
|
3069
3396
|
{
|
3070
|
-
"name": "
|
3397
|
+
"name": "checked",
|
3071
3398
|
"type": {
|
3072
|
-
"text": "boolean"
|
3399
|
+
"text": "boolean | undefined"
|
3073
3400
|
},
|
3074
|
-
"
|
3075
|
-
"
|
3076
|
-
"fieldName": "hideLabel"
|
3401
|
+
"description": "If true, outputs helping hints in console",
|
3402
|
+
"fieldName": "checked"
|
3077
3403
|
},
|
3078
3404
|
{
|
3079
|
-
"name": "
|
3405
|
+
"name": "hide-label",
|
3080
3406
|
"type": {
|
3081
|
-
"text": "
|
3407
|
+
"text": "boolean | undefined"
|
3082
3408
|
},
|
3083
|
-
"description": "If
|
3084
|
-
"fieldName": "
|
3409
|
+
"description": "If true, hides the label visually",
|
3410
|
+
"fieldName": "hideLabel"
|
3085
3411
|
},
|
3086
3412
|
{
|
3087
3413
|
"name": "label",
|
3088
3414
|
"type": {
|
3089
|
-
"text": "string"
|
3415
|
+
"text": "string | undefined"
|
3090
3416
|
},
|
3091
|
-
"
|
3092
|
-
"description": "The input's label. Alternatively, you can use the component slot.",
|
3417
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
3093
3418
|
"fieldName": "label"
|
3094
3419
|
},
|
3095
3420
|
{
|
@@ -3097,99 +3422,33 @@
|
|
3097
3422
|
"type": {
|
3098
3423
|
"text": "string | undefined"
|
3099
3424
|
},
|
3100
|
-
"description": "If
|
3425
|
+
"description": "If defined, adds name to the input-element",
|
3101
3426
|
"fieldName": "name"
|
3102
3427
|
},
|
3103
|
-
{
|
3104
|
-
"name": "maxlength",
|
3105
|
-
"type": {
|
3106
|
-
"text": "number | undefined"
|
3107
|
-
},
|
3108
|
-
"description": "If provided, sets the maximum character length to accept for this input",
|
3109
|
-
"fieldName": "maxLength"
|
3110
|
-
},
|
3111
|
-
{
|
3112
|
-
"name": "minlength",
|
3113
|
-
"type": {
|
3114
|
-
"text": "number | undefined"
|
3115
|
-
},
|
3116
|
-
"description": "If provided, sets the minimum character length to accept for this input",
|
3117
|
-
"fieldName": "minLength"
|
3118
|
-
},
|
3119
|
-
{
|
3120
|
-
"name": "placeholder",
|
3121
|
-
"type": {
|
3122
|
-
"text": "string | undefined"
|
3123
|
-
},
|
3124
|
-
"description": "If provided, displays placeholder text",
|
3125
|
-
"fieldName": "placeholder"
|
3126
|
-
},
|
3127
|
-
{
|
3128
|
-
"name": "readonly",
|
3129
|
-
"type": {
|
3130
|
-
"text": "boolean | undefined"
|
3131
|
-
},
|
3132
|
-
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
3133
|
-
"fieldName": "readonly"
|
3134
|
-
},
|
3135
3428
|
{
|
3136
3429
|
"name": "required-label",
|
3137
3430
|
"type": {
|
3138
3431
|
"text": "string | undefined"
|
3139
3432
|
},
|
3140
|
-
"description": "If
|
3433
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
3141
3434
|
"fieldName": "requiredLabel"
|
3142
3435
|
},
|
3143
|
-
{
|
3144
|
-
"name": "rows",
|
3145
|
-
"type": {
|
3146
|
-
"text": "number"
|
3147
|
-
},
|
3148
|
-
"default": "2",
|
3149
|
-
"description": "If provided, sets the rows of the textarea",
|
3150
|
-
"fieldName": "rows"
|
3151
|
-
},
|
3152
|
-
{
|
3153
|
-
"name": "severity",
|
3154
|
-
"type": {
|
3155
|
-
"text": "\"success\" | \"error\""
|
3156
|
-
},
|
3157
|
-
"description": "If provided, displays provided severity state",
|
3158
|
-
"fieldName": "severity"
|
3159
|
-
},
|
3160
|
-
{
|
3161
|
-
"name": "show-valid",
|
3162
|
-
"type": {
|
3163
|
-
"text": "boolean | undefined"
|
3164
|
-
},
|
3165
|
-
"description": "If true, displays valid state after interaction",
|
3166
|
-
"fieldName": "showValid"
|
3167
|
-
},
|
3168
3436
|
{
|
3169
3437
|
"name": "size",
|
3170
3438
|
"type": {
|
3171
|
-
"text": "'sm' | 'md'
|
3439
|
+
"text": "'sm' | 'md'"
|
3172
3440
|
},
|
3173
3441
|
"default": "'md'",
|
3174
|
-
"description": "
|
3442
|
+
"description": "Size of the Switch",
|
3175
3443
|
"fieldName": "size"
|
3176
3444
|
},
|
3177
|
-
{
|
3178
|
-
"name": "validate-on",
|
3179
|
-
"type": {
|
3180
|
-
"text": "'input' | 'change' | 'submit' | undefined"
|
3181
|
-
},
|
3182
|
-
"default": "'change'",
|
3183
|
-
"description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
|
3184
|
-
"fieldName": "validateOn"
|
3185
|
-
},
|
3186
3445
|
{
|
3187
3446
|
"name": "value",
|
3188
3447
|
"type": {
|
3189
3448
|
"text": "string"
|
3190
3449
|
},
|
3191
3450
|
"default": "''",
|
3192
|
-
"description": "The current value of the
|
3451
|
+
"description": "The current value of the input field",
|
3193
3452
|
"fieldName": "value"
|
3194
3453
|
}
|
3195
3454
|
],
|
@@ -3197,20 +3456,1291 @@
|
|
3197
3456
|
"name": "FormBase",
|
3198
3457
|
"package": "@internal/components/formBase.js"
|
3199
3458
|
},
|
3200
|
-
"tagName": "skf-
|
3459
|
+
"tagName": "skf-switch",
|
3201
3460
|
"customElement": true
|
3202
3461
|
}
|
3203
3462
|
],
|
3204
3463
|
"exports": [
|
3205
3464
|
{
|
3206
3465
|
"kind": "js",
|
3207
|
-
"name": "
|
3466
|
+
"name": "SkfSwitch",
|
3208
3467
|
"declaration": {
|
3209
|
-
"name": "
|
3468
|
+
"name": "SkfSwitch",
|
3469
|
+
"module": "src/components/switch/switch.component.ts"
|
3470
|
+
}
|
3471
|
+
}
|
3472
|
+
]
|
3473
|
+
},
|
3474
|
+
{
|
3475
|
+
"kind": "javascript-module",
|
3476
|
+
"path": "src/components/tab/tab.component.ts",
|
3477
|
+
"declarations": [
|
3478
|
+
{
|
3479
|
+
"kind": "class",
|
3480
|
+
"description": "The `<skf-tab>` is a component that displays a list of actions or options",
|
3481
|
+
"name": "SkfTab",
|
3482
|
+
"slots": [
|
3483
|
+
{
|
3484
|
+
"description": "The tab's label",
|
3485
|
+
"name": ""
|
3486
|
+
}
|
3487
|
+
],
|
3488
|
+
"members": [
|
3489
|
+
{
|
3490
|
+
"kind": "field",
|
3491
|
+
"name": "panel",
|
3492
|
+
"type": {
|
3493
|
+
"text": "string"
|
3494
|
+
},
|
3495
|
+
"default": "''",
|
3496
|
+
"description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
|
3497
|
+
"attribute": "panel",
|
3498
|
+
"reflects": true
|
3499
|
+
},
|
3500
|
+
{
|
3501
|
+
"kind": "field",
|
3502
|
+
"name": "selected",
|
3503
|
+
"type": {
|
3504
|
+
"text": "boolean"
|
3505
|
+
},
|
3506
|
+
"default": "false"
|
3507
|
+
},
|
3508
|
+
{
|
3509
|
+
"kind": "field",
|
3510
|
+
"name": "variant",
|
3511
|
+
"type": {
|
3512
|
+
"text": "SkfTabGroup['variant']"
|
3513
|
+
},
|
3514
|
+
"default": "'expanded'"
|
3515
|
+
},
|
3516
|
+
{
|
3517
|
+
"kind": "field",
|
3518
|
+
"name": "role",
|
3519
|
+
"type": {
|
3520
|
+
"text": "string"
|
3521
|
+
},
|
3522
|
+
"default": "'tab'"
|
3523
|
+
}
|
3524
|
+
],
|
3525
|
+
"events": [
|
3526
|
+
{
|
3527
|
+
"type": {
|
3528
|
+
"text": "CustomEvent"
|
3529
|
+
},
|
3530
|
+
"description": "{detail: { selected: true, tab: SkfTab }} Fires when the tab is selected",
|
3531
|
+
"name": "skf-tab-select"
|
3532
|
+
},
|
3533
|
+
{
|
3534
|
+
"description": "Fired when the component is clicked",
|
3535
|
+
"name": "click"
|
3536
|
+
}
|
3537
|
+
],
|
3538
|
+
"attributes": [
|
3539
|
+
{
|
3540
|
+
"name": "panel",
|
3541
|
+
"type": {
|
3542
|
+
"text": "string"
|
3543
|
+
},
|
3544
|
+
"default": "''",
|
3545
|
+
"description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
|
3546
|
+
"fieldName": "panel"
|
3547
|
+
}
|
3548
|
+
],
|
3549
|
+
"superclass": {
|
3550
|
+
"name": "SkfElement",
|
3551
|
+
"package": "@internal/components/skf-element"
|
3552
|
+
},
|
3553
|
+
"tagName": "skf-tab",
|
3554
|
+
"customElement": true
|
3555
|
+
}
|
3556
|
+
],
|
3557
|
+
"exports": [
|
3558
|
+
{
|
3559
|
+
"kind": "js",
|
3560
|
+
"name": "SkfTab",
|
3561
|
+
"declaration": {
|
3562
|
+
"name": "SkfTab",
|
3563
|
+
"module": "src/components/tab/tab.component.ts"
|
3564
|
+
}
|
3565
|
+
}
|
3566
|
+
]
|
3567
|
+
},
|
3568
|
+
{
|
3569
|
+
"kind": "javascript-module",
|
3570
|
+
"path": "src/components/tab-group/tab-group.component.ts",
|
3571
|
+
"declarations": [
|
3572
|
+
{
|
3573
|
+
"kind": "class",
|
3574
|
+
"description": "The `<skf-tab-group>` is a component that displays a list of actions or options.",
|
3575
|
+
"name": "SkfTabGroup",
|
3576
|
+
"slots": [
|
3577
|
+
{
|
3578
|
+
"description": "Used for grouping tab panels in the tab group. Must be <skf-tab-panel> elements",
|
3579
|
+
"name": ""
|
3580
|
+
},
|
3581
|
+
{
|
3582
|
+
"description": "Used for grouping tabs in the tab group. Must be <skf-tab> elements",
|
3583
|
+
"name": "tabs"
|
3584
|
+
}
|
3585
|
+
],
|
3586
|
+
"members": [
|
3587
|
+
{
|
3588
|
+
"kind": "field",
|
3589
|
+
"name": "defaultSelected",
|
3590
|
+
"type": {
|
3591
|
+
"text": "number"
|
3592
|
+
},
|
3593
|
+
"default": "0",
|
3594
|
+
"description": "Sets the default selected tab",
|
3595
|
+
"attribute": "default-selected"
|
3596
|
+
},
|
3597
|
+
{
|
3598
|
+
"kind": "field",
|
3599
|
+
"name": "noBorder",
|
3600
|
+
"type": {
|
3601
|
+
"text": "boolean"
|
3602
|
+
},
|
3603
|
+
"default": "false",
|
3604
|
+
"description": "If true, removes border",
|
3605
|
+
"attribute": "no-border"
|
3606
|
+
},
|
3607
|
+
{
|
3608
|
+
"kind": "field",
|
3609
|
+
"name": "noPadding",
|
3610
|
+
"type": {
|
3611
|
+
"text": "boolean"
|
3612
|
+
},
|
3613
|
+
"default": "false",
|
3614
|
+
"description": "If true, removes padding",
|
3615
|
+
"attribute": "no-padding"
|
3616
|
+
},
|
3617
|
+
{
|
3618
|
+
"kind": "field",
|
3619
|
+
"name": "stretch",
|
3620
|
+
"type": {
|
3621
|
+
"text": "boolean"
|
3622
|
+
},
|
3623
|
+
"default": "false",
|
3624
|
+
"description": "If true, component fills the parent element height",
|
3625
|
+
"attribute": "stretch"
|
3626
|
+
},
|
3627
|
+
{
|
3628
|
+
"kind": "field",
|
3629
|
+
"name": "variant",
|
3630
|
+
"type": {
|
3631
|
+
"text": "'compressed' | 'expanded'"
|
3632
|
+
},
|
3633
|
+
"default": "'expanded'",
|
3634
|
+
"description": "Sets the appearance of the tabs",
|
3635
|
+
"attribute": "variant",
|
3636
|
+
"reflects": true
|
3637
|
+
}
|
3638
|
+
],
|
3639
|
+
"attributes": [
|
3640
|
+
{
|
3641
|
+
"name": "default-selected",
|
3642
|
+
"type": {
|
3643
|
+
"text": "number"
|
3644
|
+
},
|
3645
|
+
"default": "0",
|
3646
|
+
"description": "Sets the default selected tab",
|
3647
|
+
"fieldName": "defaultSelected"
|
3648
|
+
},
|
3649
|
+
{
|
3650
|
+
"name": "no-border",
|
3651
|
+
"type": {
|
3652
|
+
"text": "boolean"
|
3653
|
+
},
|
3654
|
+
"default": "false",
|
3655
|
+
"description": "If true, removes border",
|
3656
|
+
"fieldName": "noBorder"
|
3657
|
+
},
|
3658
|
+
{
|
3659
|
+
"name": "no-padding",
|
3660
|
+
"type": {
|
3661
|
+
"text": "boolean"
|
3662
|
+
},
|
3663
|
+
"default": "false",
|
3664
|
+
"description": "If true, removes padding",
|
3665
|
+
"fieldName": "noPadding"
|
3666
|
+
},
|
3667
|
+
{
|
3668
|
+
"name": "stretch",
|
3669
|
+
"type": {
|
3670
|
+
"text": "boolean"
|
3671
|
+
},
|
3672
|
+
"default": "false",
|
3673
|
+
"description": "If true, component fills the parent element height",
|
3674
|
+
"fieldName": "stretch"
|
3675
|
+
},
|
3676
|
+
{
|
3677
|
+
"name": "variant",
|
3678
|
+
"type": {
|
3679
|
+
"text": "'compressed' | 'expanded'"
|
3680
|
+
},
|
3681
|
+
"default": "'expanded'",
|
3682
|
+
"description": "Sets the appearance of the tabs",
|
3683
|
+
"fieldName": "variant"
|
3684
|
+
}
|
3685
|
+
],
|
3686
|
+
"superclass": {
|
3687
|
+
"name": "SkfElement",
|
3688
|
+
"package": "@internal/components/skf-element"
|
3689
|
+
},
|
3690
|
+
"tagName": "skf-tab-group",
|
3691
|
+
"customElement": true
|
3692
|
+
}
|
3693
|
+
],
|
3694
|
+
"exports": [
|
3695
|
+
{
|
3696
|
+
"kind": "js",
|
3697
|
+
"name": "SkfTabGroup",
|
3698
|
+
"declaration": {
|
3699
|
+
"name": "SkfTabGroup",
|
3700
|
+
"module": "src/components/tab-group/tab-group.component.ts"
|
3701
|
+
}
|
3702
|
+
}
|
3703
|
+
]
|
3704
|
+
},
|
3705
|
+
{
|
3706
|
+
"kind": "javascript-module",
|
3707
|
+
"path": "src/components/tab-panel/tab-panel.component.ts",
|
3708
|
+
"declarations": [
|
3709
|
+
{
|
3710
|
+
"kind": "class",
|
3711
|
+
"description": "The `<skf-tab-panel>` is a component that displays a list of actions or options.",
|
3712
|
+
"name": "SkfTabPanel",
|
3713
|
+
"slots": [
|
3714
|
+
{
|
3715
|
+
"description": "The tab panel's content",
|
3716
|
+
"name": ""
|
3717
|
+
}
|
3718
|
+
],
|
3719
|
+
"members": [
|
3720
|
+
{
|
3721
|
+
"kind": "field",
|
3722
|
+
"name": "name",
|
3723
|
+
"type": {
|
3724
|
+
"text": "string"
|
3725
|
+
},
|
3726
|
+
"default": "''",
|
3727
|
+
"description": "The tab panel's name.",
|
3728
|
+
"attribute": "name"
|
3729
|
+
},
|
3730
|
+
{
|
3731
|
+
"kind": "field",
|
3732
|
+
"name": "active",
|
3733
|
+
"type": {
|
3734
|
+
"text": "boolean"
|
3735
|
+
},
|
3736
|
+
"default": "false"
|
3737
|
+
},
|
3738
|
+
{
|
3739
|
+
"kind": "field",
|
3740
|
+
"name": "role",
|
3741
|
+
"type": {
|
3742
|
+
"text": "string"
|
3743
|
+
},
|
3744
|
+
"default": "'tabpanel'"
|
3745
|
+
}
|
3746
|
+
],
|
3747
|
+
"attributes": [
|
3748
|
+
{
|
3749
|
+
"name": "name",
|
3750
|
+
"type": {
|
3751
|
+
"text": "string"
|
3752
|
+
},
|
3753
|
+
"default": "''",
|
3754
|
+
"description": "The tab panel's name.",
|
3755
|
+
"fieldName": "name"
|
3756
|
+
}
|
3757
|
+
],
|
3758
|
+
"superclass": {
|
3759
|
+
"name": "SkfElement",
|
3760
|
+
"package": "@internal/components/skf-element"
|
3761
|
+
},
|
3762
|
+
"tagName": "skf-tab-panel",
|
3763
|
+
"customElement": true
|
3764
|
+
}
|
3765
|
+
],
|
3766
|
+
"exports": [
|
3767
|
+
{
|
3768
|
+
"kind": "js",
|
3769
|
+
"name": "SkfTabPanel",
|
3770
|
+
"declaration": {
|
3771
|
+
"name": "SkfTabPanel",
|
3772
|
+
"module": "src/components/tab-panel/tab-panel.component.ts"
|
3773
|
+
}
|
3774
|
+
}
|
3775
|
+
]
|
3776
|
+
},
|
3777
|
+
{
|
3778
|
+
"kind": "javascript-module",
|
3779
|
+
"path": "src/components/tag/tag.component.ts",
|
3780
|
+
"declarations": [
|
3781
|
+
{
|
3782
|
+
"kind": "class",
|
3783
|
+
"description": "The `<skf-tag>` is a component that displays a list of actions or options",
|
3784
|
+
"name": "SkfTag",
|
3785
|
+
"slots": [
|
3786
|
+
{
|
3787
|
+
"description": "The component's placeholder content",
|
3788
|
+
"name": ""
|
3789
|
+
}
|
3790
|
+
],
|
3791
|
+
"members": [
|
3792
|
+
{
|
3793
|
+
"kind": "field",
|
3794
|
+
"name": "_onClick",
|
3795
|
+
"type": {
|
3796
|
+
"text": "(event: Event) => void | undefined"
|
3797
|
+
},
|
3798
|
+
"privacy": "private"
|
3799
|
+
},
|
3800
|
+
{
|
3801
|
+
"kind": "field",
|
3802
|
+
"name": "_onRemove",
|
3803
|
+
"type": {
|
3804
|
+
"text": "(event: Event) => void | undefined"
|
3805
|
+
},
|
3806
|
+
"privacy": "protected"
|
3807
|
+
},
|
3808
|
+
{
|
3809
|
+
"kind": "field",
|
3810
|
+
"name": "size",
|
3811
|
+
"type": {
|
3812
|
+
"text": "'sm' | 'md' | 'lg'"
|
3813
|
+
},
|
3814
|
+
"default": "'md'",
|
3815
|
+
"description": "Specifies Tag size",
|
3816
|
+
"attribute": "size",
|
3817
|
+
"reflects": true
|
3818
|
+
},
|
3819
|
+
{
|
3820
|
+
"kind": "field",
|
3821
|
+
"name": "icon",
|
3822
|
+
"type": {
|
3823
|
+
"text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
|
3824
|
+
},
|
3825
|
+
"description": "If defined, displays leading/provided icon",
|
3826
|
+
"attribute": "icon"
|
3827
|
+
},
|
3828
|
+
{
|
3829
|
+
"kind": "field",
|
3830
|
+
"name": "color",
|
3831
|
+
"type": {
|
3832
|
+
"text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
|
3833
|
+
},
|
3834
|
+
"description": "If defined, gives the supplied appearance",
|
3835
|
+
"attribute": "color",
|
3836
|
+
"reflects": true
|
3837
|
+
},
|
3838
|
+
{
|
3839
|
+
"kind": "field",
|
3840
|
+
"name": "onClick",
|
3841
|
+
"description": "If defined, accepts a function that runs on click"
|
3842
|
+
},
|
3843
|
+
{
|
3844
|
+
"kind": "field",
|
3845
|
+
"name": "onRemove",
|
3846
|
+
"description": "If defined, accepts a function that runs on click. Self removal can be overridden by using `event.stopPropagation()`."
|
3847
|
+
},
|
3848
|
+
{
|
3849
|
+
"kind": "field",
|
3850
|
+
"name": "removable",
|
3851
|
+
"type": {
|
3852
|
+
"text": "boolean | undefined"
|
3853
|
+
},
|
3854
|
+
"description": "If true, adds trailing button to remove tag",
|
3855
|
+
"attribute": "removable",
|
3856
|
+
"reflects": true
|
3857
|
+
},
|
3858
|
+
{
|
3859
|
+
"kind": "field",
|
3860
|
+
"name": "_handleKeyDown",
|
3861
|
+
"privacy": "protected"
|
3862
|
+
},
|
3863
|
+
{
|
3864
|
+
"kind": "field",
|
3865
|
+
"name": "_handleRemove",
|
3866
|
+
"privacy": "protected",
|
3867
|
+
"description": "run externally provided callback (if any) first. Let click propagate to handleClick."
|
3868
|
+
},
|
3869
|
+
{
|
3870
|
+
"kind": "field",
|
3871
|
+
"name": "_handleClick",
|
3872
|
+
"privacy": "protected"
|
3873
|
+
}
|
3874
|
+
],
|
3875
|
+
"attributes": [
|
3876
|
+
{
|
3877
|
+
"name": "size",
|
3878
|
+
"type": {
|
3879
|
+
"text": "'sm' | 'md' | 'lg'"
|
3880
|
+
},
|
3881
|
+
"default": "'md'",
|
3882
|
+
"description": "Specifies Tag size",
|
3883
|
+
"fieldName": "size"
|
3884
|
+
},
|
3885
|
+
{
|
3886
|
+
"name": "icon",
|
3887
|
+
"type": {
|
3888
|
+
"text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
|
3889
|
+
},
|
3890
|
+
"description": "If defined, displays leading/provided icon",
|
3891
|
+
"fieldName": "icon"
|
3892
|
+
},
|
3893
|
+
{
|
3894
|
+
"name": "color",
|
3895
|
+
"type": {
|
3896
|
+
"text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
|
3897
|
+
},
|
3898
|
+
"description": "If defined, gives the supplied appearance",
|
3899
|
+
"fieldName": "color"
|
3900
|
+
},
|
3901
|
+
{
|
3902
|
+
"name": "removable",
|
3903
|
+
"type": {
|
3904
|
+
"text": "boolean | undefined"
|
3905
|
+
},
|
3906
|
+
"description": "If true, adds trailing button to remove tag",
|
3907
|
+
"fieldName": "removable"
|
3908
|
+
}
|
3909
|
+
],
|
3910
|
+
"superclass": {
|
3911
|
+
"name": "SkfElement",
|
3912
|
+
"package": "@internal/components/skf-element"
|
3913
|
+
},
|
3914
|
+
"tagName": "skf-tag",
|
3915
|
+
"customElement": true
|
3916
|
+
}
|
3917
|
+
],
|
3918
|
+
"exports": [
|
3919
|
+
{
|
3920
|
+
"kind": "js",
|
3921
|
+
"name": "SkfTag",
|
3922
|
+
"declaration": {
|
3923
|
+
"name": "SkfTag",
|
3924
|
+
"module": "src/components/tag/tag.component.ts"
|
3925
|
+
}
|
3926
|
+
}
|
3927
|
+
]
|
3928
|
+
},
|
3929
|
+
{
|
3930
|
+
"kind": "javascript-module",
|
3931
|
+
"path": "src/components/textarea/textarea.component.ts",
|
3932
|
+
"declarations": [
|
3933
|
+
{
|
3934
|
+
"kind": "class",
|
3935
|
+
"description": "The skf-textarea is used to create a textarea. Use it inside a form element or wherever you like.",
|
3936
|
+
"name": "SkfTextArea",
|
3937
|
+
"slots": [
|
3938
|
+
{
|
3939
|
+
"description": "The textareas label. Alternatively, you can use the `label` attribute.",
|
3940
|
+
"name": ""
|
3941
|
+
}
|
3942
|
+
],
|
3943
|
+
"members": [
|
3944
|
+
{
|
3945
|
+
"kind": "field",
|
3946
|
+
"name": "customError",
|
3947
|
+
"type": {
|
3948
|
+
"text": "string | undefined"
|
3949
|
+
},
|
3950
|
+
"privacy": "private"
|
3951
|
+
},
|
3952
|
+
{
|
3953
|
+
"kind": "field",
|
3954
|
+
"name": "cols",
|
3955
|
+
"type": {
|
3956
|
+
"text": "number | undefined"
|
3957
|
+
},
|
3958
|
+
"description": "If defined, sets the cols of the textarea",
|
3959
|
+
"attribute": "cols"
|
3960
|
+
},
|
3961
|
+
{
|
3962
|
+
"kind": "field",
|
3963
|
+
"name": "customInvalid",
|
3964
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
3965
|
+
"attribute": "custom-invalid",
|
3966
|
+
"reflects": true
|
3967
|
+
},
|
3968
|
+
{
|
3969
|
+
"kind": "field",
|
3970
|
+
"name": "debug",
|
3971
|
+
"type": {
|
3972
|
+
"text": "boolean | undefined"
|
3973
|
+
},
|
3974
|
+
"description": "If true, outputs helping hints in console",
|
3975
|
+
"attribute": "debug"
|
3976
|
+
},
|
3977
|
+
{
|
3978
|
+
"kind": "field",
|
3979
|
+
"name": "hideLabel",
|
3980
|
+
"type": {
|
3981
|
+
"text": "boolean | undefined"
|
3982
|
+
},
|
3983
|
+
"description": "If true, hides the label visually",
|
3984
|
+
"attribute": "hide-label"
|
3985
|
+
},
|
3986
|
+
{
|
3987
|
+
"kind": "field",
|
3988
|
+
"name": "hint",
|
3989
|
+
"type": {
|
3990
|
+
"text": "string | undefined"
|
3991
|
+
},
|
3992
|
+
"description": "If defined, displays informational text below the field",
|
3993
|
+
"attribute": "hint"
|
3994
|
+
},
|
3995
|
+
{
|
3996
|
+
"kind": "field",
|
3997
|
+
"name": "label",
|
3998
|
+
"type": {
|
3999
|
+
"text": "string | undefined"
|
4000
|
+
},
|
4001
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
4002
|
+
"attribute": "label"
|
4003
|
+
},
|
4004
|
+
{
|
4005
|
+
"kind": "field",
|
4006
|
+
"name": "name",
|
4007
|
+
"type": {
|
4008
|
+
"text": "string | undefined"
|
4009
|
+
},
|
4010
|
+
"description": "If defined, adds name to the input-element",
|
4011
|
+
"attribute": "name"
|
4012
|
+
},
|
4013
|
+
{
|
4014
|
+
"kind": "field",
|
4015
|
+
"name": "maxLength",
|
4016
|
+
"type": {
|
4017
|
+
"text": "number | undefined"
|
4018
|
+
},
|
4019
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
4020
|
+
"attribute": "maxlength"
|
4021
|
+
},
|
4022
|
+
{
|
4023
|
+
"kind": "field",
|
4024
|
+
"name": "minLength",
|
4025
|
+
"type": {
|
4026
|
+
"text": "number | undefined"
|
4027
|
+
},
|
4028
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
4029
|
+
"attribute": "minlength"
|
4030
|
+
},
|
4031
|
+
{
|
4032
|
+
"kind": "field",
|
4033
|
+
"name": "placeholder",
|
4034
|
+
"type": {
|
4035
|
+
"text": "string | undefined"
|
4036
|
+
},
|
4037
|
+
"description": "If defined, displays placeholder text",
|
4038
|
+
"attribute": "placeholder"
|
4039
|
+
},
|
4040
|
+
{
|
4041
|
+
"kind": "field",
|
4042
|
+
"name": "readonly",
|
4043
|
+
"type": {
|
4044
|
+
"text": "boolean | undefined"
|
4045
|
+
},
|
4046
|
+
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
4047
|
+
"attribute": "readonly"
|
4048
|
+
},
|
4049
|
+
{
|
4050
|
+
"kind": "field",
|
4051
|
+
"name": "requiredLabel",
|
4052
|
+
"type": {
|
4053
|
+
"text": "string | undefined"
|
4054
|
+
},
|
4055
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
4056
|
+
"attribute": "required-label"
|
4057
|
+
},
|
4058
|
+
{
|
4059
|
+
"kind": "field",
|
4060
|
+
"name": "rows",
|
4061
|
+
"type": {
|
4062
|
+
"text": "number | undefined"
|
4063
|
+
},
|
4064
|
+
"description": "If defined, sets the rows of the textarea",
|
4065
|
+
"attribute": "rows"
|
4066
|
+
},
|
4067
|
+
{
|
4068
|
+
"kind": "field",
|
4069
|
+
"name": "severity",
|
4070
|
+
"type": {
|
4071
|
+
"text": "\"success\" | \"info\" | \"warning\" | \"alert\""
|
4072
|
+
},
|
4073
|
+
"description": "If defined, displays provided severity state",
|
4074
|
+
"attribute": "severity"
|
4075
|
+
},
|
4076
|
+
{
|
4077
|
+
"kind": "field",
|
4078
|
+
"name": "showValid",
|
4079
|
+
"type": {
|
4080
|
+
"text": "boolean | undefined"
|
4081
|
+
},
|
4082
|
+
"description": "If true, displays valid state after interaction",
|
4083
|
+
"attribute": "show-valid"
|
4084
|
+
},
|
4085
|
+
{
|
4086
|
+
"kind": "field",
|
4087
|
+
"name": "size",
|
4088
|
+
"type": {
|
4089
|
+
"text": "'sm' | 'md' | undefined"
|
4090
|
+
},
|
4091
|
+
"default": "'md'",
|
4092
|
+
"description": "Size of the Textarea",
|
4093
|
+
"attribute": "size",
|
4094
|
+
"reflects": true
|
4095
|
+
},
|
4096
|
+
{
|
4097
|
+
"kind": "field",
|
4098
|
+
"name": "validateOn",
|
4099
|
+
"type": {
|
4100
|
+
"text": "'input' | 'change' | 'submit'"
|
4101
|
+
},
|
4102
|
+
"default": "'change'",
|
4103
|
+
"description": "Sets validation start",
|
4104
|
+
"attribute": "validate-on"
|
4105
|
+
},
|
4106
|
+
{
|
4107
|
+
"kind": "field",
|
4108
|
+
"name": "value",
|
4109
|
+
"type": {
|
4110
|
+
"text": "string"
|
4111
|
+
},
|
4112
|
+
"default": "''",
|
4113
|
+
"description": "The current value of the text area",
|
4114
|
+
"attribute": "value"
|
4115
|
+
}
|
4116
|
+
],
|
4117
|
+
"events": [
|
4118
|
+
{
|
4119
|
+
"description": "Fires when the value of the input changes",
|
4120
|
+
"name": "change"
|
4121
|
+
},
|
4122
|
+
{
|
4123
|
+
"description": "Fires when the input is invalid",
|
4124
|
+
"name": "invalid"
|
4125
|
+
}
|
4126
|
+
],
|
4127
|
+
"attributes": [
|
4128
|
+
{
|
4129
|
+
"type": {
|
4130
|
+
"text": "boolean"
|
4131
|
+
},
|
4132
|
+
"description": "If true, sets disabled state",
|
4133
|
+
"name": "disabled"
|
4134
|
+
},
|
4135
|
+
{
|
4136
|
+
"type": {
|
4137
|
+
"text": "boolean"
|
4138
|
+
},
|
4139
|
+
"description": "If true, value is required or must be checked for the form to be submittable",
|
4140
|
+
"name": "required"
|
4141
|
+
},
|
4142
|
+
{
|
4143
|
+
"name": "cols",
|
4144
|
+
"type": {
|
4145
|
+
"text": "number | undefined"
|
4146
|
+
},
|
4147
|
+
"description": "If defined, sets the cols of the textarea",
|
4148
|
+
"fieldName": "cols"
|
4149
|
+
},
|
4150
|
+
{
|
4151
|
+
"name": "custom-invalid",
|
4152
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
4153
|
+
"fieldName": "customInvalid"
|
4154
|
+
},
|
4155
|
+
{
|
4156
|
+
"name": "debug",
|
4157
|
+
"type": {
|
4158
|
+
"text": "boolean | undefined"
|
4159
|
+
},
|
4160
|
+
"description": "If true, outputs helping hints in console",
|
4161
|
+
"fieldName": "debug"
|
4162
|
+
},
|
4163
|
+
{
|
4164
|
+
"name": "hide-label",
|
4165
|
+
"type": {
|
4166
|
+
"text": "boolean | undefined"
|
4167
|
+
},
|
4168
|
+
"description": "If true, hides the label visually",
|
4169
|
+
"fieldName": "hideLabel"
|
4170
|
+
},
|
4171
|
+
{
|
4172
|
+
"name": "hint",
|
4173
|
+
"type": {
|
4174
|
+
"text": "string | undefined"
|
4175
|
+
},
|
4176
|
+
"description": "If defined, displays informational text below the field",
|
4177
|
+
"fieldName": "hint"
|
4178
|
+
},
|
4179
|
+
{
|
4180
|
+
"name": "label",
|
4181
|
+
"type": {
|
4182
|
+
"text": "string | undefined"
|
4183
|
+
},
|
4184
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
4185
|
+
"fieldName": "label"
|
4186
|
+
},
|
4187
|
+
{
|
4188
|
+
"name": "name",
|
4189
|
+
"type": {
|
4190
|
+
"text": "string | undefined"
|
4191
|
+
},
|
4192
|
+
"description": "If defined, adds name to the input-element",
|
4193
|
+
"fieldName": "name"
|
4194
|
+
},
|
4195
|
+
{
|
4196
|
+
"name": "maxlength",
|
4197
|
+
"type": {
|
4198
|
+
"text": "number | undefined"
|
4199
|
+
},
|
4200
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
4201
|
+
"fieldName": "maxLength"
|
4202
|
+
},
|
4203
|
+
{
|
4204
|
+
"name": "minlength",
|
4205
|
+
"type": {
|
4206
|
+
"text": "number | undefined"
|
4207
|
+
},
|
4208
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
4209
|
+
"fieldName": "minLength"
|
4210
|
+
},
|
4211
|
+
{
|
4212
|
+
"name": "placeholder",
|
4213
|
+
"type": {
|
4214
|
+
"text": "string | undefined"
|
4215
|
+
},
|
4216
|
+
"description": "If defined, displays placeholder text",
|
4217
|
+
"fieldName": "placeholder"
|
4218
|
+
},
|
4219
|
+
{
|
4220
|
+
"name": "readonly",
|
4221
|
+
"type": {
|
4222
|
+
"text": "boolean | undefined"
|
4223
|
+
},
|
4224
|
+
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
4225
|
+
"fieldName": "readonly"
|
4226
|
+
},
|
4227
|
+
{
|
4228
|
+
"name": "required-label",
|
4229
|
+
"type": {
|
4230
|
+
"text": "string | undefined"
|
4231
|
+
},
|
4232
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
4233
|
+
"fieldName": "requiredLabel"
|
4234
|
+
},
|
4235
|
+
{
|
4236
|
+
"name": "rows",
|
4237
|
+
"type": {
|
4238
|
+
"text": "number | undefined"
|
4239
|
+
},
|
4240
|
+
"description": "If defined, sets the rows of the textarea",
|
4241
|
+
"fieldName": "rows"
|
4242
|
+
},
|
4243
|
+
{
|
4244
|
+
"name": "severity",
|
4245
|
+
"type": {
|
4246
|
+
"text": "\"success\" | \"info\" | \"warning\" | \"alert\""
|
4247
|
+
},
|
4248
|
+
"description": "If defined, displays provided severity state",
|
4249
|
+
"fieldName": "severity"
|
4250
|
+
},
|
4251
|
+
{
|
4252
|
+
"name": "show-valid",
|
4253
|
+
"type": {
|
4254
|
+
"text": "boolean | undefined"
|
4255
|
+
},
|
4256
|
+
"description": "If true, displays valid state after interaction",
|
4257
|
+
"fieldName": "showValid"
|
4258
|
+
},
|
4259
|
+
{
|
4260
|
+
"name": "size",
|
4261
|
+
"type": {
|
4262
|
+
"text": "'sm' | 'md' | undefined"
|
4263
|
+
},
|
4264
|
+
"default": "'md'",
|
4265
|
+
"description": "Size of the Textarea",
|
4266
|
+
"fieldName": "size"
|
4267
|
+
},
|
4268
|
+
{
|
4269
|
+
"name": "validate-on",
|
4270
|
+
"type": {
|
4271
|
+
"text": "'input' | 'change' | 'submit'"
|
4272
|
+
},
|
4273
|
+
"default": "'change'",
|
4274
|
+
"description": "Sets validation start",
|
4275
|
+
"fieldName": "validateOn"
|
4276
|
+
},
|
4277
|
+
{
|
4278
|
+
"name": "value",
|
4279
|
+
"type": {
|
4280
|
+
"text": "string"
|
4281
|
+
},
|
4282
|
+
"default": "''",
|
4283
|
+
"description": "The current value of the text area",
|
4284
|
+
"fieldName": "value"
|
4285
|
+
}
|
4286
|
+
],
|
4287
|
+
"superclass": {
|
4288
|
+
"name": "FormBase",
|
4289
|
+
"package": "@internal/components/formBase.js"
|
4290
|
+
},
|
4291
|
+
"tagName": "skf-textarea",
|
4292
|
+
"customElement": true
|
4293
|
+
}
|
4294
|
+
],
|
4295
|
+
"exports": [
|
4296
|
+
{
|
4297
|
+
"kind": "js",
|
4298
|
+
"name": "SkfTextArea",
|
4299
|
+
"declaration": {
|
4300
|
+
"name": "SkfTextArea",
|
3210
4301
|
"module": "src/components/textarea/textarea.component.ts"
|
3211
4302
|
}
|
3212
4303
|
}
|
3213
4304
|
]
|
4305
|
+
},
|
4306
|
+
{
|
4307
|
+
"kind": "javascript-module",
|
4308
|
+
"path": "src/components/toast/toast.component.ts",
|
4309
|
+
"declarations": [
|
4310
|
+
{
|
4311
|
+
"kind": "class",
|
4312
|
+
"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.",
|
4313
|
+
"name": "SkfToast",
|
4314
|
+
"slots": [
|
4315
|
+
{
|
4316
|
+
"description": "The component's placeholder content",
|
4317
|
+
"name": ""
|
4318
|
+
}
|
4319
|
+
],
|
4320
|
+
"members": [
|
4321
|
+
{
|
4322
|
+
"kind": "field",
|
4323
|
+
"name": "closeable",
|
4324
|
+
"type": {
|
4325
|
+
"text": "boolean"
|
4326
|
+
},
|
4327
|
+
"default": "false",
|
4328
|
+
"description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
|
4329
|
+
"attribute": "closeable"
|
4330
|
+
},
|
4331
|
+
{
|
4332
|
+
"kind": "field",
|
4333
|
+
"name": "debug",
|
4334
|
+
"type": {
|
4335
|
+
"text": "boolean"
|
4336
|
+
},
|
4337
|
+
"default": "false",
|
4338
|
+
"attribute": "debug"
|
4339
|
+
},
|
4340
|
+
{
|
4341
|
+
"kind": "field",
|
4342
|
+
"name": "severity",
|
4343
|
+
"type": {
|
4344
|
+
"text": "'info' | 'success' | 'warning' | 'error'"
|
4345
|
+
},
|
4346
|
+
"default": "'info'",
|
4347
|
+
"description": "Severity of the toast.",
|
4348
|
+
"attribute": "severity"
|
4349
|
+
},
|
4350
|
+
{
|
4351
|
+
"kind": "field",
|
4352
|
+
"name": "timer",
|
4353
|
+
"type": {
|
4354
|
+
"text": "number"
|
4355
|
+
},
|
4356
|
+
"default": "5",
|
4357
|
+
"description": "Time in seconds before the toast disappears.",
|
4358
|
+
"attribute": "timer"
|
4359
|
+
},
|
4360
|
+
{
|
4361
|
+
"kind": "field",
|
4362
|
+
"name": "topOffset",
|
4363
|
+
"type": {
|
4364
|
+
"text": "number | undefined"
|
4365
|
+
},
|
4366
|
+
"description": "offsets where toasts emerge vertically",
|
4367
|
+
"attribute": "topOffset"
|
4368
|
+
}
|
4369
|
+
],
|
4370
|
+
"attributes": [
|
4371
|
+
{
|
4372
|
+
"name": "closeable",
|
4373
|
+
"type": {
|
4374
|
+
"text": "boolean"
|
4375
|
+
},
|
4376
|
+
"default": "false",
|
4377
|
+
"description": "If provided, adds a close button to the toast and will not disapear until user actively dismisses it.",
|
4378
|
+
"fieldName": "closeable"
|
4379
|
+
},
|
4380
|
+
{
|
4381
|
+
"name": "debug",
|
4382
|
+
"type": {
|
4383
|
+
"text": "boolean"
|
4384
|
+
},
|
4385
|
+
"default": "false",
|
4386
|
+
"fieldName": "debug"
|
4387
|
+
},
|
4388
|
+
{
|
4389
|
+
"name": "severity",
|
4390
|
+
"type": {
|
4391
|
+
"text": "'info' | 'success' | 'warning' | 'error'"
|
4392
|
+
},
|
4393
|
+
"default": "'info'",
|
4394
|
+
"description": "Severity of the toast.",
|
4395
|
+
"fieldName": "severity"
|
4396
|
+
},
|
4397
|
+
{
|
4398
|
+
"name": "timer",
|
4399
|
+
"type": {
|
4400
|
+
"text": "number"
|
4401
|
+
},
|
4402
|
+
"default": "5",
|
4403
|
+
"description": "Time in seconds before the toast disappears.",
|
4404
|
+
"fieldName": "timer"
|
4405
|
+
},
|
4406
|
+
{
|
4407
|
+
"name": "topOffset",
|
4408
|
+
"type": {
|
4409
|
+
"text": "number | undefined"
|
4410
|
+
},
|
4411
|
+
"description": "offsets where toasts emerge vertically",
|
4412
|
+
"fieldName": "topOffset"
|
4413
|
+
}
|
4414
|
+
],
|
4415
|
+
"superclass": {
|
4416
|
+
"name": "SkfElement",
|
4417
|
+
"package": "@internal/components/skf-element"
|
4418
|
+
},
|
4419
|
+
"tagName": "skf-toast",
|
4420
|
+
"customElement": true
|
4421
|
+
}
|
4422
|
+
],
|
4423
|
+
"exports": [
|
4424
|
+
{
|
4425
|
+
"kind": "js",
|
4426
|
+
"name": "SkfToast",
|
4427
|
+
"declaration": {
|
4428
|
+
"name": "SkfToast",
|
4429
|
+
"module": "src/components/toast/toast.component.ts"
|
4430
|
+
}
|
4431
|
+
}
|
4432
|
+
]
|
4433
|
+
},
|
4434
|
+
{
|
4435
|
+
"kind": "javascript-module",
|
4436
|
+
"path": "src/components/toast-item/toast-item.component.ts",
|
4437
|
+
"declarations": [
|
4438
|
+
{
|
4439
|
+
"kind": "class",
|
4440
|
+
"description": "",
|
4441
|
+
"name": "SkfToastItem",
|
4442
|
+
"members": [
|
4443
|
+
{
|
4444
|
+
"kind": "field",
|
4445
|
+
"name": "_closeableInitialState",
|
4446
|
+
"type": {
|
4447
|
+
"text": "boolean"
|
4448
|
+
},
|
4449
|
+
"privacy": "protected",
|
4450
|
+
"default": "!!this.closeable"
|
4451
|
+
},
|
4452
|
+
{
|
4453
|
+
"kind": "field",
|
4454
|
+
"name": "_parentAnimationDiv",
|
4455
|
+
"type": {
|
4456
|
+
"text": "HTMLDivElement | null"
|
4457
|
+
},
|
4458
|
+
"privacy": "protected",
|
4459
|
+
"default": "this.parentElement"
|
4460
|
+
},
|
4461
|
+
{
|
4462
|
+
"kind": "field",
|
4463
|
+
"name": "_currentTimeoutId",
|
4464
|
+
"type": {
|
4465
|
+
"text": "ReturnType<typeof setTimeout> | null"
|
4466
|
+
},
|
4467
|
+
"privacy": "private",
|
4468
|
+
"description": "If not cloaseable, timeout id for the toast",
|
4469
|
+
"default": "null"
|
4470
|
+
},
|
4471
|
+
{
|
4472
|
+
"kind": "field",
|
4473
|
+
"name": "_timeleft",
|
4474
|
+
"type": {
|
4475
|
+
"text": "number"
|
4476
|
+
},
|
4477
|
+
"privacy": "private",
|
4478
|
+
"description": "If not closseable, time left on the timer when the mouse enters the toast",
|
4479
|
+
"default": "0"
|
4480
|
+
},
|
4481
|
+
{
|
4482
|
+
"kind": "field",
|
4483
|
+
"name": "_timeoutStarted",
|
4484
|
+
"type": {
|
4485
|
+
"text": "number"
|
4486
|
+
},
|
4487
|
+
"privacy": "private",
|
4488
|
+
"description": "If not closseable, time when the timeout started",
|
4489
|
+
"default": "0"
|
4490
|
+
},
|
4491
|
+
{
|
4492
|
+
"kind": "field",
|
4493
|
+
"name": "originEl",
|
4494
|
+
"type": {
|
4495
|
+
"text": "HTMLElement | null"
|
4496
|
+
},
|
4497
|
+
"default": "null"
|
4498
|
+
},
|
4499
|
+
{
|
4500
|
+
"kind": "field",
|
4501
|
+
"name": "timer",
|
4502
|
+
"type": {
|
4503
|
+
"text": "number"
|
4504
|
+
},
|
4505
|
+
"default": "0",
|
4506
|
+
"attribute": "timer",
|
4507
|
+
"reflects": true
|
4508
|
+
},
|
4509
|
+
{
|
4510
|
+
"kind": "method",
|
4511
|
+
"name": "_animateIn"
|
4512
|
+
},
|
4513
|
+
{
|
4514
|
+
"kind": "field",
|
4515
|
+
"name": "_handleMouseEnter"
|
4516
|
+
},
|
4517
|
+
{
|
4518
|
+
"kind": "field",
|
4519
|
+
"name": "_handleMouseLeave"
|
4520
|
+
},
|
4521
|
+
{
|
4522
|
+
"kind": "field",
|
4523
|
+
"name": "_removeToast"
|
4524
|
+
},
|
4525
|
+
{
|
4526
|
+
"kind": "field",
|
4527
|
+
"name": "parentAnimationDiv",
|
4528
|
+
"readonly": true
|
4529
|
+
},
|
4530
|
+
{
|
4531
|
+
"kind": "field",
|
4532
|
+
"name": "closeable",
|
4533
|
+
"type": {
|
4534
|
+
"text": "boolean | undefined"
|
4535
|
+
},
|
4536
|
+
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
4537
|
+
"attribute": "closeable",
|
4538
|
+
"reflects": true,
|
4539
|
+
"inheritedFrom": {
|
4540
|
+
"name": "SkfAlert",
|
4541
|
+
"module": "src/components/alert/alert.component.ts"
|
4542
|
+
}
|
4543
|
+
},
|
4544
|
+
{
|
4545
|
+
"kind": "field",
|
4546
|
+
"name": "buttonLabel",
|
4547
|
+
"type": {
|
4548
|
+
"text": "string"
|
4549
|
+
},
|
4550
|
+
"default": "'Close'",
|
4551
|
+
"description": "Close button aria-label",
|
4552
|
+
"attribute": "button-label",
|
4553
|
+
"inheritedFrom": {
|
4554
|
+
"name": "SkfAlert",
|
4555
|
+
"module": "src/components/alert/alert.component.ts"
|
4556
|
+
}
|
4557
|
+
},
|
4558
|
+
{
|
4559
|
+
"kind": "field",
|
4560
|
+
"name": "icon",
|
4561
|
+
"type": {
|
4562
|
+
"text": "SkfIcon['name'] | undefined"
|
4563
|
+
},
|
4564
|
+
"description": "If defined, displays leading icon",
|
4565
|
+
"attribute": "icon",
|
4566
|
+
"inheritedFrom": {
|
4567
|
+
"name": "SkfAlert",
|
4568
|
+
"module": "src/components/alert/alert.component.ts"
|
4569
|
+
}
|
4570
|
+
},
|
4571
|
+
{
|
4572
|
+
"kind": "field",
|
4573
|
+
"name": "severity",
|
4574
|
+
"type": {
|
4575
|
+
"text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
4576
|
+
},
|
4577
|
+
"description": "If defined, gives the supplied appearance",
|
4578
|
+
"attribute": "severity",
|
4579
|
+
"reflects": true,
|
4580
|
+
"inheritedFrom": {
|
4581
|
+
"name": "SkfAlert",
|
4582
|
+
"module": "src/components/alert/alert.component.ts"
|
4583
|
+
}
|
4584
|
+
}
|
4585
|
+
],
|
4586
|
+
"attributes": [
|
4587
|
+
{
|
4588
|
+
"name": "timer",
|
4589
|
+
"type": {
|
4590
|
+
"text": "number"
|
4591
|
+
},
|
4592
|
+
"default": "0",
|
4593
|
+
"fieldName": "timer"
|
4594
|
+
},
|
4595
|
+
{
|
4596
|
+
"name": "closeable",
|
4597
|
+
"type": {
|
4598
|
+
"text": "boolean | undefined"
|
4599
|
+
},
|
4600
|
+
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
4601
|
+
"fieldName": "closeable",
|
4602
|
+
"inheritedFrom": {
|
4603
|
+
"name": "SkfAlert",
|
4604
|
+
"module": "src/components/alert/alert.component.ts"
|
4605
|
+
}
|
4606
|
+
},
|
4607
|
+
{
|
4608
|
+
"name": "button-label",
|
4609
|
+
"type": {
|
4610
|
+
"text": "string"
|
4611
|
+
},
|
4612
|
+
"default": "'Close'",
|
4613
|
+
"description": "Close button aria-label",
|
4614
|
+
"fieldName": "buttonLabel",
|
4615
|
+
"inheritedFrom": {
|
4616
|
+
"name": "SkfAlert",
|
4617
|
+
"module": "src/components/alert/alert.component.ts"
|
4618
|
+
}
|
4619
|
+
},
|
4620
|
+
{
|
4621
|
+
"name": "icon",
|
4622
|
+
"type": {
|
4623
|
+
"text": "SkfIcon['name'] | undefined"
|
4624
|
+
},
|
4625
|
+
"description": "If defined, displays leading icon",
|
4626
|
+
"fieldName": "icon",
|
4627
|
+
"inheritedFrom": {
|
4628
|
+
"name": "SkfAlert",
|
4629
|
+
"module": "src/components/alert/alert.component.ts"
|
4630
|
+
}
|
4631
|
+
},
|
4632
|
+
{
|
4633
|
+
"name": "severity",
|
4634
|
+
"type": {
|
4635
|
+
"text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
4636
|
+
},
|
4637
|
+
"description": "If defined, gives the supplied appearance",
|
4638
|
+
"fieldName": "severity",
|
4639
|
+
"inheritedFrom": {
|
4640
|
+
"name": "SkfAlert",
|
4641
|
+
"module": "src/components/alert/alert.component.ts"
|
4642
|
+
}
|
4643
|
+
}
|
4644
|
+
],
|
4645
|
+
"superclass": {
|
4646
|
+
"name": "SkfAlert",
|
4647
|
+
"package": "@components/alert/alert.component.js"
|
4648
|
+
},
|
4649
|
+
"slots": [
|
4650
|
+
{
|
4651
|
+
"description": "Alert message. **Notice!** See design principles for approved content",
|
4652
|
+
"name": "",
|
4653
|
+
"inheritedFrom": {
|
4654
|
+
"name": "SkfAlert",
|
4655
|
+
"module": "src/components/alert/alert.component.ts"
|
4656
|
+
}
|
4657
|
+
},
|
4658
|
+
{
|
4659
|
+
"description": "Slot for the link",
|
4660
|
+
"name": "link",
|
4661
|
+
"inheritedFrom": {
|
4662
|
+
"name": "SkfAlert",
|
4663
|
+
"module": "src/components/alert/alert.component.ts"
|
4664
|
+
}
|
4665
|
+
}
|
4666
|
+
],
|
4667
|
+
"events": [
|
4668
|
+
{
|
4669
|
+
"description": "Fires when the close button is clicked",
|
4670
|
+
"name": "skf-alert-close",
|
4671
|
+
"inheritedFrom": {
|
4672
|
+
"name": "SkfAlert",
|
4673
|
+
"module": "src/components/alert/alert.component.ts"
|
4674
|
+
}
|
4675
|
+
}
|
4676
|
+
]
|
4677
|
+
}
|
4678
|
+
],
|
4679
|
+
"exports": [
|
4680
|
+
{
|
4681
|
+
"kind": "js",
|
4682
|
+
"name": "SkfToastItem",
|
4683
|
+
"declaration": {
|
4684
|
+
"name": "SkfToastItem",
|
4685
|
+
"module": "src/components/toast-item/toast-item.component.ts"
|
4686
|
+
}
|
4687
|
+
}
|
4688
|
+
]
|
4689
|
+
},
|
4690
|
+
{
|
4691
|
+
"kind": "javascript-module",
|
4692
|
+
"path": "src/components/toast-wrapper/toast-wrapper.component.ts",
|
4693
|
+
"declarations": [
|
4694
|
+
{
|
4695
|
+
"kind": "class",
|
4696
|
+
"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.",
|
4697
|
+
"name": "SkfToastWrapper",
|
4698
|
+
"slots": [
|
4699
|
+
{
|
4700
|
+
"description": "The alert components that the toast creates will render here.",
|
4701
|
+
"name": ""
|
4702
|
+
}
|
4703
|
+
],
|
4704
|
+
"members": [
|
4705
|
+
{
|
4706
|
+
"kind": "field",
|
4707
|
+
"name": "debug",
|
4708
|
+
"type": {
|
4709
|
+
"text": "boolean"
|
4710
|
+
},
|
4711
|
+
"default": "false",
|
4712
|
+
"attribute": "debug",
|
4713
|
+
"reflects": true
|
4714
|
+
}
|
4715
|
+
],
|
4716
|
+
"attributes": [
|
4717
|
+
{
|
4718
|
+
"name": "debug",
|
4719
|
+
"type": {
|
4720
|
+
"text": "boolean"
|
4721
|
+
},
|
4722
|
+
"default": "false",
|
4723
|
+
"fieldName": "debug"
|
4724
|
+
}
|
4725
|
+
],
|
4726
|
+
"superclass": {
|
4727
|
+
"name": "SkfElement",
|
4728
|
+
"package": "@internal/components/skf-element"
|
4729
|
+
},
|
4730
|
+
"tagName": "skf-toast-wrapper",
|
4731
|
+
"customElement": true
|
4732
|
+
}
|
4733
|
+
],
|
4734
|
+
"exports": [
|
4735
|
+
{
|
4736
|
+
"kind": "js",
|
4737
|
+
"name": "SkfToastWrapper",
|
4738
|
+
"declaration": {
|
4739
|
+
"name": "SkfToastWrapper",
|
4740
|
+
"module": "src/components/toast-wrapper/toast-wrapper.component.ts"
|
4741
|
+
}
|
4742
|
+
}
|
4743
|
+
]
|
3214
4744
|
}
|
3215
4745
|
]
|
3216
4746
|
}
|