@skf-design-system/ui-components 0.0.1-beta.4 → 1.0.0-beta.4
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/dist/components/checkbox/checkbox.component.js +1 -1
- package/dist/components/input/input.component.js +24 -26
- package/dist/components/select/select.component.d.ts +138 -0
- package/dist/components/select/select.component.js +311 -0
- package/dist/components/select/select.controllers.d.ts +59 -0
- package/dist/components/select/select.controllers.js +169 -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 +116 -0
- package/dist/components/select-option/select-option.component.d.ts +77 -0
- package/dist/components/select-option/select-option.component.js +117 -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/tag/tag.component.d.ts +18 -2
- package/dist/components/tag/tag.component.js +69 -32
- package/dist/components/tag/tag.styles.js +0 -4
- package/dist/custom-elements.json +1279 -624
- package/dist/index.d.ts +3 -0
- package/dist/index.js +39 -30
- package/dist/internal/components/formBase.d.ts +18 -1
- package/dist/internal/components/formBase.js +25 -13
- 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/storybook/shadowRootTraverser.d.ts +2 -0
- package/dist/react/index.d.ts +6 -3
- package/dist/react/index.js +6 -3
- 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/styles/form-field.styles.js +6 -6
- package/dist/types/jsx/custom-element-jsx.d.ts +326 -176
- package/dist/types/vue/index.d.ts +268 -135
- package/dist/vscode.html-custom-data.json +344 -147
- package/dist/web-types.json +755 -383
- package/package.json +34 -30
@@ -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
|
{
|
@@ -160,123 +160,6 @@
|
|
160
160
|
}
|
161
161
|
]
|
162
162
|
},
|
163
|
-
{
|
164
|
-
"kind": "javascript-module",
|
165
|
-
"path": "src/components/alert/alert.component.ts",
|
166
|
-
"declarations": [
|
167
|
-
{
|
168
|
-
"kind": "class",
|
169
|
-
"description": "The `<skf-alert>` is a type of notification that appears in-line",
|
170
|
-
"name": "SkfAlert",
|
171
|
-
"slots": [
|
172
|
-
{
|
173
|
-
"description": "Alert message. **Notice!** See design principles for approved content",
|
174
|
-
"name": ""
|
175
|
-
},
|
176
|
-
{
|
177
|
-
"description": "lodjvodjvodjo",
|
178
|
-
"name": "link"
|
179
|
-
}
|
180
|
-
],
|
181
|
-
"members": [
|
182
|
-
{
|
183
|
-
"kind": "field",
|
184
|
-
"name": "closeable",
|
185
|
-
"type": {
|
186
|
-
"text": "boolean | undefined"
|
187
|
-
},
|
188
|
-
"description": "If true, alert is being used as a toast with an close button",
|
189
|
-
"attribute": "closeable"
|
190
|
-
},
|
191
|
-
{
|
192
|
-
"kind": "field",
|
193
|
-
"name": "buttonLabel",
|
194
|
-
"type": {
|
195
|
-
"text": "string"
|
196
|
-
},
|
197
|
-
"default": "'Close'",
|
198
|
-
"description": "Close button aria-label",
|
199
|
-
"attribute": "button-label"
|
200
|
-
},
|
201
|
-
{
|
202
|
-
"kind": "field",
|
203
|
-
"name": "icon",
|
204
|
-
"type": {
|
205
|
-
"text": "SkfIcon['name'] | undefined"
|
206
|
-
},
|
207
|
-
"description": "If defined, displays leading icon",
|
208
|
-
"attribute": "icon"
|
209
|
-
},
|
210
|
-
{
|
211
|
-
"kind": "field",
|
212
|
-
"name": "severity",
|
213
|
-
"type": {
|
214
|
-
"text": "SeverityFgColor | undefined"
|
215
|
-
},
|
216
|
-
"description": "If defined, gives the supplied appearance",
|
217
|
-
"attribute": "severity"
|
218
|
-
}
|
219
|
-
],
|
220
|
-
"events": [
|
221
|
-
{
|
222
|
-
"description": "Fires when the close button is clicked",
|
223
|
-
"name": "skf-alert-close"
|
224
|
-
}
|
225
|
-
],
|
226
|
-
"attributes": [
|
227
|
-
{
|
228
|
-
"name": "closeable",
|
229
|
-
"type": {
|
230
|
-
"text": "boolean | undefined"
|
231
|
-
},
|
232
|
-
"description": "If true, alert is being used as a toast with an close button",
|
233
|
-
"fieldName": "closeable"
|
234
|
-
},
|
235
|
-
{
|
236
|
-
"name": "button-label",
|
237
|
-
"type": {
|
238
|
-
"text": "string"
|
239
|
-
},
|
240
|
-
"default": "'Close'",
|
241
|
-
"description": "Close button aria-label",
|
242
|
-
"fieldName": "buttonLabel"
|
243
|
-
},
|
244
|
-
{
|
245
|
-
"name": "icon",
|
246
|
-
"type": {
|
247
|
-
"text": "SkfIcon['name'] | undefined"
|
248
|
-
},
|
249
|
-
"description": "If defined, displays leading icon",
|
250
|
-
"fieldName": "icon"
|
251
|
-
},
|
252
|
-
{
|
253
|
-
"name": "severity",
|
254
|
-
"type": {
|
255
|
-
"text": "SeverityFgColor | undefined"
|
256
|
-
},
|
257
|
-
"description": "If defined, gives the supplied appearance",
|
258
|
-
"fieldName": "severity"
|
259
|
-
}
|
260
|
-
],
|
261
|
-
"superclass": {
|
262
|
-
"name": "SkfElement",
|
263
|
-
"package": "@internal/components/skf-element.js"
|
264
|
-
},
|
265
|
-
"tagName": "skf-alert",
|
266
|
-
"customElement": true
|
267
|
-
}
|
268
|
-
],
|
269
|
-
"exports": [
|
270
|
-
{
|
271
|
-
"kind": "js",
|
272
|
-
"name": "SkfAlert",
|
273
|
-
"declaration": {
|
274
|
-
"name": "SkfAlert",
|
275
|
-
"module": "src/components/alert/alert.component.ts"
|
276
|
-
}
|
277
|
-
}
|
278
|
-
]
|
279
|
-
},
|
280
163
|
{
|
281
164
|
"kind": "javascript-module",
|
282
165
|
"path": "src/components/button/button.component.ts",
|
@@ -495,9 +378,8 @@
|
|
495
378
|
"kind": "field",
|
496
379
|
"name": "noBorder",
|
497
380
|
"type": {
|
498
|
-
"text": "boolean"
|
381
|
+
"text": "boolean | undefined"
|
499
382
|
},
|
500
|
-
"default": "false",
|
501
383
|
"description": "If true, removes border",
|
502
384
|
"attribute": "no-border"
|
503
385
|
},
|
@@ -505,9 +387,8 @@
|
|
505
387
|
"kind": "field",
|
506
388
|
"name": "noPadding",
|
507
389
|
"type": {
|
508
|
-
"text": "boolean"
|
390
|
+
"text": "boolean | undefined"
|
509
391
|
},
|
510
|
-
"default": "false",
|
511
392
|
"description": "If true, removes padding",
|
512
393
|
"attribute": "no-padding"
|
513
394
|
},
|
@@ -515,38 +396,35 @@
|
|
515
396
|
"kind": "field",
|
516
397
|
"name": "stretch",
|
517
398
|
"type": {
|
518
|
-
"text": "boolean"
|
399
|
+
"text": "boolean | undefined"
|
519
400
|
},
|
520
|
-
"default": "false",
|
521
401
|
"description": "If true, the Card fills the parent element height",
|
522
|
-
"attribute": "stretch"
|
402
|
+
"attribute": "stretch",
|
403
|
+
"reflects": true
|
523
404
|
}
|
524
405
|
],
|
525
406
|
"attributes": [
|
526
407
|
{
|
527
408
|
"name": "no-border",
|
528
409
|
"type": {
|
529
|
-
"text": "boolean"
|
410
|
+
"text": "boolean | undefined"
|
530
411
|
},
|
531
|
-
"default": "false",
|
532
412
|
"description": "If true, removes border",
|
533
413
|
"fieldName": "noBorder"
|
534
414
|
},
|
535
415
|
{
|
536
416
|
"name": "no-padding",
|
537
417
|
"type": {
|
538
|
-
"text": "boolean"
|
418
|
+
"text": "boolean | undefined"
|
539
419
|
},
|
540
|
-
"default": "false",
|
541
420
|
"description": "If true, removes padding",
|
542
421
|
"fieldName": "noPadding"
|
543
422
|
},
|
544
423
|
{
|
545
424
|
"name": "stretch",
|
546
425
|
"type": {
|
547
|
-
"text": "boolean"
|
426
|
+
"text": "boolean | undefined"
|
548
427
|
},
|
549
|
-
"default": "false",
|
550
428
|
"description": "If true, the Card fills the parent element height",
|
551
429
|
"fieldName": "stretch"
|
552
430
|
}
|
@@ -570,6 +448,123 @@
|
|
570
448
|
}
|
571
449
|
]
|
572
450
|
},
|
451
|
+
{
|
452
|
+
"kind": "javascript-module",
|
453
|
+
"path": "src/components/alert/alert.component.ts",
|
454
|
+
"declarations": [
|
455
|
+
{
|
456
|
+
"kind": "class",
|
457
|
+
"description": "The `<skf-alert>` is a type of notification that appears in-line",
|
458
|
+
"name": "SkfAlert",
|
459
|
+
"slots": [
|
460
|
+
{
|
461
|
+
"description": "Alert message. **Notice!** See design principles for approved content",
|
462
|
+
"name": ""
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"description": "Slot for the link",
|
466
|
+
"name": "link"
|
467
|
+
}
|
468
|
+
],
|
469
|
+
"members": [
|
470
|
+
{
|
471
|
+
"kind": "field",
|
472
|
+
"name": "closeable",
|
473
|
+
"type": {
|
474
|
+
"text": "boolean | undefined"
|
475
|
+
},
|
476
|
+
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
477
|
+
"attribute": "closeable"
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"kind": "field",
|
481
|
+
"name": "buttonLabel",
|
482
|
+
"type": {
|
483
|
+
"text": "string"
|
484
|
+
},
|
485
|
+
"default": "'Close'",
|
486
|
+
"description": "Close button aria-label",
|
487
|
+
"attribute": "button-label"
|
488
|
+
},
|
489
|
+
{
|
490
|
+
"kind": "field",
|
491
|
+
"name": "icon",
|
492
|
+
"type": {
|
493
|
+
"text": "SkfIcon['name'] | undefined"
|
494
|
+
},
|
495
|
+
"description": "If defined, displays leading icon",
|
496
|
+
"attribute": "icon"
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"kind": "field",
|
500
|
+
"name": "severity",
|
501
|
+
"type": {
|
502
|
+
"text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
503
|
+
},
|
504
|
+
"description": "If defined, gives the supplied appearance",
|
505
|
+
"attribute": "severity"
|
506
|
+
}
|
507
|
+
],
|
508
|
+
"events": [
|
509
|
+
{
|
510
|
+
"description": "Fires when the close button is clicked",
|
511
|
+
"name": "skf-alert-close"
|
512
|
+
}
|
513
|
+
],
|
514
|
+
"attributes": [
|
515
|
+
{
|
516
|
+
"name": "closeable",
|
517
|
+
"type": {
|
518
|
+
"text": "boolean | undefined"
|
519
|
+
},
|
520
|
+
"description": "If true, alert is being used as a toast (alertdialog) with an close button",
|
521
|
+
"fieldName": "closeable"
|
522
|
+
},
|
523
|
+
{
|
524
|
+
"name": "button-label",
|
525
|
+
"type": {
|
526
|
+
"text": "string"
|
527
|
+
},
|
528
|
+
"default": "'Close'",
|
529
|
+
"description": "Close button aria-label",
|
530
|
+
"fieldName": "buttonLabel"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"name": "icon",
|
534
|
+
"type": {
|
535
|
+
"text": "SkfIcon['name'] | undefined"
|
536
|
+
},
|
537
|
+
"description": "If defined, displays leading icon",
|
538
|
+
"fieldName": "icon"
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"name": "severity",
|
542
|
+
"type": {
|
543
|
+
"text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
|
544
|
+
},
|
545
|
+
"description": "If defined, gives the supplied appearance",
|
546
|
+
"fieldName": "severity"
|
547
|
+
}
|
548
|
+
],
|
549
|
+
"superclass": {
|
550
|
+
"name": "SkfElement",
|
551
|
+
"package": "@internal/components/skf-element.js"
|
552
|
+
},
|
553
|
+
"tagName": "skf-alert",
|
554
|
+
"customElement": true
|
555
|
+
}
|
556
|
+
],
|
557
|
+
"exports": [
|
558
|
+
{
|
559
|
+
"kind": "js",
|
560
|
+
"name": "SkfAlert",
|
561
|
+
"declaration": {
|
562
|
+
"name": "SkfAlert",
|
563
|
+
"module": "src/components/alert/alert.component.ts"
|
564
|
+
}
|
565
|
+
}
|
566
|
+
]
|
567
|
+
},
|
573
568
|
{
|
574
569
|
"kind": "javascript-module",
|
575
570
|
"path": "src/components/checkbox/checkbox.component.ts",
|
@@ -580,8 +575,8 @@
|
|
580
575
|
"name": "SkfCheckbox",
|
581
576
|
"slots": [
|
582
577
|
{
|
583
|
-
"description": "Alternatively, you can use the `label` attribute",
|
584
|
-
"name": "
|
578
|
+
"description": "The Radios label. Alternatively, you can use the `label` attribute.",
|
579
|
+
"name": ""
|
585
580
|
}
|
586
581
|
],
|
587
582
|
"members": [
|
@@ -662,33 +657,33 @@
|
|
662
657
|
},
|
663
658
|
{
|
664
659
|
"kind": "field",
|
665
|
-
"name": "
|
660
|
+
"name": "severity",
|
666
661
|
"type": {
|
667
|
-
"text": "
|
662
|
+
"text": "\"alert\" | \"success\" | \"info\" | \"warning\""
|
668
663
|
},
|
669
|
-
"
|
670
|
-
"
|
671
|
-
"attribute": "size",
|
664
|
+
"description": "If defined, styles checkbox using provided severity",
|
665
|
+
"attribute": "severity",
|
672
666
|
"reflects": true
|
673
667
|
},
|
674
668
|
{
|
675
669
|
"kind": "field",
|
676
|
-
"name": "
|
670
|
+
"name": "showValid",
|
677
671
|
"type": {
|
678
|
-
"text": "
|
672
|
+
"text": "boolean | undefined"
|
679
673
|
},
|
680
|
-
"description": "If
|
681
|
-
"attribute": "
|
682
|
-
"reflects": true
|
674
|
+
"description": "If true, displays valid state after interaction",
|
675
|
+
"attribute": "show-valid"
|
683
676
|
},
|
684
677
|
{
|
685
678
|
"kind": "field",
|
686
|
-
"name": "
|
679
|
+
"name": "size",
|
687
680
|
"type": {
|
688
|
-
"text": "
|
681
|
+
"text": "'sm' | 'md'"
|
689
682
|
},
|
690
|
-
"
|
691
|
-
"
|
683
|
+
"default": "'md'",
|
684
|
+
"description": "Size of the checkbox",
|
685
|
+
"attribute": "size",
|
686
|
+
"reflects": true
|
692
687
|
},
|
693
688
|
{
|
694
689
|
"kind": "field",
|
@@ -790,19 +785,10 @@
|
|
790
785
|
"description": "If defined, renders an alternative A11y text for the asterisk",
|
791
786
|
"fieldName": "requiredLabel"
|
792
787
|
},
|
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
788
|
{
|
803
789
|
"name": "severity",
|
804
790
|
"type": {
|
805
|
-
"text": "
|
791
|
+
"text": "\"alert\" | \"success\" | \"info\" | \"warning\""
|
806
792
|
},
|
807
793
|
"description": "If defined, styles checkbox using provided severity",
|
808
794
|
"fieldName": "severity"
|
@@ -812,9 +798,18 @@
|
|
812
798
|
"type": {
|
813
799
|
"text": "boolean | undefined"
|
814
800
|
},
|
815
|
-
"description": "If
|
801
|
+
"description": "If true, displays valid state after interaction",
|
816
802
|
"fieldName": "showValid"
|
817
803
|
},
|
804
|
+
{
|
805
|
+
"name": "size",
|
806
|
+
"type": {
|
807
|
+
"text": "'sm' | 'md'"
|
808
|
+
},
|
809
|
+
"default": "'md'",
|
810
|
+
"description": "Size of the checkbox",
|
811
|
+
"fieldName": "size"
|
812
|
+
},
|
818
813
|
{
|
819
814
|
"name": "value",
|
820
815
|
"type": {
|
@@ -844,13 +839,117 @@
|
|
844
839
|
}
|
845
840
|
]
|
846
841
|
},
|
842
|
+
{
|
843
|
+
"kind": "javascript-module",
|
844
|
+
"path": "src/components/divider/divider.component.ts",
|
845
|
+
"declarations": [
|
846
|
+
{
|
847
|
+
"kind": "class",
|
848
|
+
"description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information",
|
849
|
+
"name": "SkfDivider",
|
850
|
+
"cssProperties": [
|
851
|
+
{
|
852
|
+
"description": "The amount of space the divider occupies. Pass valid CSS **margin-block** values when horizontal and **margin-inline** when vertical",
|
853
|
+
"name": "--skf-divider-spacing"
|
854
|
+
},
|
855
|
+
{
|
856
|
+
"description": "The amount of space the divider should be indented. Pass valid CSS **margin-inline** values when horizontal and **margin-block** when vertical",
|
857
|
+
"name": "--skf-divider-inset"
|
858
|
+
}
|
859
|
+
],
|
860
|
+
"members": [
|
861
|
+
{
|
862
|
+
"kind": "field",
|
863
|
+
"name": "#internals",
|
864
|
+
"privacy": "private",
|
865
|
+
"type": {
|
866
|
+
"text": "ElementInternals"
|
867
|
+
}
|
868
|
+
},
|
869
|
+
{
|
870
|
+
"kind": "field",
|
871
|
+
"name": "color",
|
872
|
+
"type": {
|
873
|
+
"text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
|
874
|
+
},
|
875
|
+
"default": "'primary'",
|
876
|
+
"description": "Defines the Divider color",
|
877
|
+
"attribute": "color",
|
878
|
+
"reflects": true
|
879
|
+
},
|
880
|
+
{
|
881
|
+
"kind": "field",
|
882
|
+
"name": "decorative",
|
883
|
+
"type": {
|
884
|
+
"text": "boolean | undefined"
|
885
|
+
},
|
886
|
+
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
887
|
+
"attribute": "decorative"
|
888
|
+
},
|
889
|
+
{
|
890
|
+
"kind": "field",
|
891
|
+
"name": "vertical",
|
892
|
+
"type": {
|
893
|
+
"text": "boolean | undefined"
|
894
|
+
},
|
895
|
+
"description": "If true, renders the divider vertically",
|
896
|
+
"attribute": "vertical",
|
897
|
+
"reflects": true
|
898
|
+
}
|
899
|
+
],
|
900
|
+
"attributes": [
|
901
|
+
{
|
902
|
+
"name": "color",
|
903
|
+
"type": {
|
904
|
+
"text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
|
905
|
+
},
|
906
|
+
"default": "'primary'",
|
907
|
+
"description": "Defines the Divider color",
|
908
|
+
"fieldName": "color"
|
909
|
+
},
|
910
|
+
{
|
911
|
+
"name": "decorative",
|
912
|
+
"type": {
|
913
|
+
"text": "boolean | undefined"
|
914
|
+
},
|
915
|
+
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
916
|
+
"fieldName": "decorative"
|
917
|
+
},
|
918
|
+
{
|
919
|
+
"name": "vertical",
|
920
|
+
"type": {
|
921
|
+
"text": "boolean | undefined"
|
922
|
+
},
|
923
|
+
"description": "If true, renders the divider vertically",
|
924
|
+
"fieldName": "vertical"
|
925
|
+
}
|
926
|
+
],
|
927
|
+
"superclass": {
|
928
|
+
"name": "SkfElement",
|
929
|
+
"package": "@internal/components/skf-element.js"
|
930
|
+
},
|
931
|
+
"tagName": "skf-divider",
|
932
|
+
"customElement": true
|
933
|
+
}
|
934
|
+
],
|
935
|
+
"exports": [
|
936
|
+
{
|
937
|
+
"kind": "js",
|
938
|
+
"name": "SkfDivider",
|
939
|
+
"declaration": {
|
940
|
+
"name": "SkfDivider",
|
941
|
+
"module": "src/components/divider/divider.component.ts"
|
942
|
+
}
|
943
|
+
}
|
944
|
+
]
|
945
|
+
},
|
847
946
|
{
|
848
947
|
"kind": "javascript-module",
|
849
948
|
"path": "src/components/collapse/collapse.component.ts",
|
850
949
|
"declarations": [
|
851
950
|
{
|
852
951
|
"kind": "class",
|
853
|
-
"description": "The `<skf-collapse>` component is a general purpose container for content that can be collapsed / expanded.\n\nSee [
|
952
|
+
"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
953
|
"name": "SkfCollapse",
|
855
954
|
"slots": [
|
856
955
|
{
|
@@ -863,9 +962,8 @@
|
|
863
962
|
"kind": "field",
|
864
963
|
"name": "animated",
|
865
964
|
"type": {
|
866
|
-
"text": "boolean"
|
965
|
+
"text": "boolean | undefined"
|
867
966
|
},
|
868
|
-
"default": "false",
|
869
967
|
"description": "If true, will animate the expand/collapse state",
|
870
968
|
"attribute": "animated",
|
871
969
|
"reflects": true
|
@@ -874,9 +972,8 @@
|
|
874
972
|
"kind": "field",
|
875
973
|
"name": "expanded",
|
876
974
|
"type": {
|
877
|
-
"text": "boolean"
|
975
|
+
"text": "boolean | undefined"
|
878
976
|
},
|
879
|
-
"default": "false",
|
880
977
|
"description": "If true, will set the collapse to be expanded by default",
|
881
978
|
"attribute": "expanded",
|
882
979
|
"reflects": true
|
@@ -894,19 +991,18 @@
|
|
894
991
|
"kind": "field",
|
895
992
|
"name": "headingAs",
|
896
993
|
"type": {
|
897
|
-
"text": "
|
994
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
898
995
|
},
|
899
996
|
"default": "'h2'",
|
900
|
-
"description": "
|
997
|
+
"description": "Defines which heading element will be rendered",
|
901
998
|
"attribute": "heading-as"
|
902
999
|
},
|
903
1000
|
{
|
904
1001
|
"kind": "field",
|
905
1002
|
"name": "small",
|
906
1003
|
"type": {
|
907
|
-
"text": "boolean"
|
1004
|
+
"text": "boolean | undefined"
|
908
1005
|
},
|
909
|
-
"default": "false",
|
910
1006
|
"description": "If true, renders the small version",
|
911
1007
|
"attribute": "small",
|
912
1008
|
"reflects": true
|
@@ -915,9 +1011,8 @@
|
|
915
1011
|
"kind": "field",
|
916
1012
|
"name": "truncate",
|
917
1013
|
"type": {
|
918
|
-
"text": "boolean"
|
1014
|
+
"text": "boolean | undefined"
|
919
1015
|
},
|
920
|
-
"default": "false",
|
921
1016
|
"description": "If true, will truncate the heading in collapsed state",
|
922
1017
|
"attribute": "truncate",
|
923
1018
|
"reflects": true
|
@@ -946,18 +1041,16 @@
|
|
946
1041
|
{
|
947
1042
|
"name": "animated",
|
948
1043
|
"type": {
|
949
|
-
"text": "boolean"
|
1044
|
+
"text": "boolean | undefined"
|
950
1045
|
},
|
951
|
-
"default": "false",
|
952
1046
|
"description": "If true, will animate the expand/collapse state",
|
953
1047
|
"fieldName": "animated"
|
954
1048
|
},
|
955
1049
|
{
|
956
1050
|
"name": "expanded",
|
957
1051
|
"type": {
|
958
|
-
"text": "boolean"
|
1052
|
+
"text": "boolean | undefined"
|
959
1053
|
},
|
960
|
-
"default": "false",
|
961
1054
|
"description": "If true, will set the collapse to be expanded by default",
|
962
1055
|
"fieldName": "expanded"
|
963
1056
|
},
|
@@ -972,27 +1065,25 @@
|
|
972
1065
|
{
|
973
1066
|
"name": "heading-as",
|
974
1067
|
"type": {
|
975
|
-
"text": "
|
1068
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
976
1069
|
},
|
977
1070
|
"default": "'h2'",
|
978
|
-
"description": "
|
1071
|
+
"description": "Defines which heading element will be rendered",
|
979
1072
|
"fieldName": "headingAs"
|
980
1073
|
},
|
981
1074
|
{
|
982
1075
|
"name": "small",
|
983
1076
|
"type": {
|
984
|
-
"text": "boolean"
|
1077
|
+
"text": "boolean | undefined"
|
985
1078
|
},
|
986
|
-
"default": "false",
|
987
1079
|
"description": "If true, renders the small version",
|
988
1080
|
"fieldName": "small"
|
989
1081
|
},
|
990
1082
|
{
|
991
1083
|
"name": "truncate",
|
992
1084
|
"type": {
|
993
|
-
"text": "boolean"
|
1085
|
+
"text": "boolean | undefined"
|
994
1086
|
},
|
995
|
-
"default": "false",
|
996
1087
|
"description": "If true, will truncate the heading in collapsed state",
|
997
1088
|
"fieldName": "truncate"
|
998
1089
|
}
|
@@ -1018,198 +1109,114 @@
|
|
1018
1109
|
},
|
1019
1110
|
{
|
1020
1111
|
"kind": "javascript-module",
|
1021
|
-
"path": "src/components/
|
1112
|
+
"path": "src/components/heading/heading.component.ts",
|
1022
1113
|
"declarations": [
|
1023
1114
|
{
|
1024
1115
|
"kind": "class",
|
1025
|
-
"description": "The `<
|
1026
|
-
"name": "
|
1027
|
-
"
|
1028
|
-
{
|
1029
|
-
"description": "The amount of space the divider occupies. Pass valid CSS **margin-block** values when horizontal and **margin-inline** when vertical",
|
1030
|
-
"name": "--skf-divider-spacing"
|
1031
|
-
},
|
1116
|
+
"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.",
|
1117
|
+
"name": "SkfHeading",
|
1118
|
+
"slots": [
|
1032
1119
|
{
|
1033
|
-
"description": "The
|
1034
|
-
"name": "
|
1120
|
+
"description": "The headings content",
|
1121
|
+
"name": ""
|
1035
1122
|
}
|
1036
1123
|
],
|
1037
1124
|
"members": [
|
1038
1125
|
{
|
1039
1126
|
"kind": "field",
|
1040
|
-
"name": "
|
1127
|
+
"name": "as",
|
1041
1128
|
"type": {
|
1042
|
-
"text": "\"
|
1129
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
1043
1130
|
},
|
1044
|
-
"default": "'
|
1045
|
-
"description": "
|
1046
|
-
"attribute": "
|
1131
|
+
"default": "'h1'",
|
1132
|
+
"description": "Controls which heading element will be rendered. Should not be used to affect appearance",
|
1133
|
+
"attribute": "as",
|
1047
1134
|
"reflects": true
|
1048
1135
|
},
|
1049
1136
|
{
|
1050
1137
|
"kind": "field",
|
1051
|
-
"name": "
|
1052
|
-
"type": {
|
1053
|
-
"text": "boolean"
|
1054
|
-
},
|
1055
|
-
"default": "false",
|
1056
|
-
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
1057
|
-
"attribute": "decorative"
|
1058
|
-
},
|
1059
|
-
{
|
1060
|
-
"kind": "field",
|
1061
|
-
"name": "vertical",
|
1138
|
+
"name": "styledAs",
|
1062
1139
|
"type": {
|
1063
|
-
"text": "
|
1140
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
1064
1141
|
},
|
1065
|
-
"
|
1066
|
-
"
|
1067
|
-
"attribute": "vertical",
|
1068
|
-
"reflects": true
|
1142
|
+
"description": "If provided, changes the appearance of the heading",
|
1143
|
+
"attribute": "styled-as"
|
1069
1144
|
}
|
1070
1145
|
],
|
1071
1146
|
"attributes": [
|
1072
1147
|
{
|
1073
|
-
"name": "
|
1074
|
-
"type": {
|
1075
|
-
"text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
|
1076
|
-
},
|
1077
|
-
"default": "'primary'",
|
1078
|
-
"description": "If provided, alters the Divider color",
|
1079
|
-
"fieldName": "color"
|
1080
|
-
},
|
1081
|
-
{
|
1082
|
-
"name": "decorative",
|
1148
|
+
"name": "as",
|
1083
1149
|
"type": {
|
1084
|
-
"text": "
|
1150
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
1085
1151
|
},
|
1086
|
-
"default": "
|
1087
|
-
"description": "
|
1088
|
-
"fieldName": "
|
1152
|
+
"default": "'h1'",
|
1153
|
+
"description": "Controls which heading element will be rendered. Should not be used to affect appearance",
|
1154
|
+
"fieldName": "as"
|
1089
1155
|
},
|
1090
1156
|
{
|
1091
|
-
"name": "
|
1157
|
+
"name": "styled-as",
|
1092
1158
|
"type": {
|
1093
|
-
"text": "
|
1159
|
+
"text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
|
1094
1160
|
},
|
1095
|
-
"
|
1096
|
-
"
|
1097
|
-
"fieldName": "vertical"
|
1161
|
+
"description": "If provided, changes the appearance of the heading",
|
1162
|
+
"fieldName": "styledAs"
|
1098
1163
|
}
|
1099
1164
|
],
|
1100
1165
|
"superclass": {
|
1101
1166
|
"name": "SkfElement",
|
1102
1167
|
"package": "@internal/components/skf-element.js"
|
1103
1168
|
},
|
1104
|
-
"tagName": "skf-
|
1169
|
+
"tagName": "skf-heading",
|
1105
1170
|
"customElement": true
|
1106
1171
|
}
|
1107
1172
|
],
|
1108
1173
|
"exports": [
|
1109
1174
|
{
|
1110
1175
|
"kind": "js",
|
1111
|
-
"name": "
|
1176
|
+
"name": "SkfHeading",
|
1112
1177
|
"declaration": {
|
1113
|
-
"name": "
|
1114
|
-
"module": "src/components/
|
1178
|
+
"name": "SkfHeading",
|
1179
|
+
"module": "src/components/heading/heading.component.ts"
|
1115
1180
|
}
|
1116
1181
|
}
|
1117
1182
|
]
|
1118
1183
|
},
|
1119
1184
|
{
|
1120
1185
|
"kind": "javascript-module",
|
1121
|
-
"path": "src/components/
|
1186
|
+
"path": "src/components/icon/icon.component.ts",
|
1122
1187
|
"declarations": [
|
1123
1188
|
{
|
1124
1189
|
"kind": "class",
|
1125
|
-
"description": "The `<
|
1126
|
-
"name": "
|
1190
|
+
"description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text",
|
1191
|
+
"name": "SkfIcon",
|
1127
1192
|
"members": [
|
1128
1193
|
{
|
1129
1194
|
"kind": "field",
|
1130
|
-
"name": "
|
1195
|
+
"name": "_rootId",
|
1131
1196
|
"type": {
|
1132
|
-
"text": "
|
1197
|
+
"text": "string"
|
1133
1198
|
},
|
1134
|
-
"
|
1135
|
-
"
|
1136
|
-
"attribute": "as",
|
1137
|
-
"reflects": true
|
1199
|
+
"privacy": "private",
|
1200
|
+
"default": "'root'"
|
1138
1201
|
},
|
1139
1202
|
{
|
1140
1203
|
"kind": "field",
|
1141
|
-
"name": "
|
1204
|
+
"name": "color",
|
1142
1205
|
"type": {
|
1143
|
-
"text": "
|
1206
|
+
"text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
|
1144
1207
|
},
|
1145
|
-
"
|
1146
|
-
"
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
{
|
1151
|
-
"name": "as",
|
1152
|
-
"type": {
|
1153
|
-
"text": "HeadingType"
|
1154
|
-
},
|
1155
|
-
"default": "'h1'",
|
1156
|
-
"description": "Controls which heading element will be rendered. Should not be used to affect appearance.",
|
1157
|
-
"fieldName": "as"
|
1158
|
-
},
|
1159
|
-
{
|
1160
|
-
"name": "styled-as",
|
1161
|
-
"type": {
|
1162
|
-
"text": "HeadingType | undefined"
|
1163
|
-
},
|
1164
|
-
"description": "If provided, changes the appearance of the heading",
|
1165
|
-
"fieldName": "styledAs"
|
1166
|
-
}
|
1167
|
-
],
|
1168
|
-
"superclass": {
|
1169
|
-
"name": "SkfElement",
|
1170
|
-
"package": "@internal/components/skf-element.js"
|
1171
|
-
},
|
1172
|
-
"tagName": "skf-heading",
|
1173
|
-
"customElement": true
|
1174
|
-
}
|
1175
|
-
],
|
1176
|
-
"exports": [
|
1177
|
-
{
|
1178
|
-
"kind": "js",
|
1179
|
-
"name": "SkfHeading",
|
1180
|
-
"declaration": {
|
1181
|
-
"name": "SkfHeading",
|
1182
|
-
"module": "src/components/heading/heading.component.ts"
|
1183
|
-
}
|
1184
|
-
}
|
1185
|
-
]
|
1186
|
-
},
|
1187
|
-
{
|
1188
|
-
"kind": "javascript-module",
|
1189
|
-
"path": "src/components/icon/icon.component.ts",
|
1190
|
-
"declarations": [
|
1191
|
-
{
|
1192
|
-
"kind": "class",
|
1193
|
-
"description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text",
|
1194
|
-
"name": "SkfIcon",
|
1195
|
-
"members": [
|
1196
|
-
{
|
1197
|
-
"kind": "field",
|
1198
|
-
"name": "color",
|
1199
|
-
"type": {
|
1200
|
-
"text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
|
1201
|
-
},
|
1202
|
-
"default": "'primary'",
|
1203
|
-
"attribute": "color",
|
1204
|
-
"reflects": true
|
1205
|
-
},
|
1208
|
+
"default": "'primary'",
|
1209
|
+
"description": "Sets the color of the icon",
|
1210
|
+
"attribute": "color",
|
1211
|
+
"reflects": true
|
1212
|
+
},
|
1206
1213
|
{
|
1207
1214
|
"kind": "field",
|
1208
1215
|
"name": "label",
|
1209
1216
|
"type": {
|
1210
1217
|
"text": "string | undefined"
|
1211
1218
|
},
|
1212
|
-
"description": "If
|
1219
|
+
"description": "If defined, adds an alternate description to use for assistive devices",
|
1213
1220
|
"attribute": "label"
|
1214
1221
|
},
|
1215
1222
|
{
|
@@ -1218,6 +1225,7 @@
|
|
1218
1225
|
"type": {
|
1219
1226
|
"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
1227
|
},
|
1228
|
+
"description": "Name of the icon to display",
|
1221
1229
|
"attribute": "name"
|
1222
1230
|
},
|
1223
1231
|
{
|
@@ -1227,8 +1235,19 @@
|
|
1227
1235
|
"text": "\"xs\" | \"sm\" | \"md\" | \"lg\""
|
1228
1236
|
},
|
1229
1237
|
"default": "'md'",
|
1238
|
+
"description": "Size of the icon",
|
1230
1239
|
"attribute": "size",
|
1231
1240
|
"reflects": true
|
1241
|
+
},
|
1242
|
+
{
|
1243
|
+
"kind": "field",
|
1244
|
+
"name": "renderDecorativeIcon",
|
1245
|
+
"privacy": "private"
|
1246
|
+
},
|
1247
|
+
{
|
1248
|
+
"kind": "field",
|
1249
|
+
"name": "renderInformativeIcon",
|
1250
|
+
"privacy": "private"
|
1232
1251
|
}
|
1233
1252
|
],
|
1234
1253
|
"attributes": [
|
@@ -1238,6 +1257,7 @@
|
|
1238
1257
|
"text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
|
1239
1258
|
},
|
1240
1259
|
"default": "'primary'",
|
1260
|
+
"description": "Sets the color of the icon",
|
1241
1261
|
"fieldName": "color"
|
1242
1262
|
},
|
1243
1263
|
{
|
@@ -1245,7 +1265,7 @@
|
|
1245
1265
|
"type": {
|
1246
1266
|
"text": "string | undefined"
|
1247
1267
|
},
|
1248
|
-
"description": "If
|
1268
|
+
"description": "If defined, adds an alternate description to use for assistive devices",
|
1249
1269
|
"fieldName": "label"
|
1250
1270
|
},
|
1251
1271
|
{
|
@@ -1253,6 +1273,7 @@
|
|
1253
1273
|
"type": {
|
1254
1274
|
"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
1275
|
},
|
1276
|
+
"description": "Name of the icon to display",
|
1256
1277
|
"fieldName": "name"
|
1257
1278
|
},
|
1258
1279
|
{
|
@@ -1261,6 +1282,7 @@
|
|
1261
1282
|
"text": "\"xs\" | \"sm\" | \"md\" | \"lg\""
|
1262
1283
|
},
|
1263
1284
|
"default": "'md'",
|
1285
|
+
"description": "Size of the icon",
|
1264
1286
|
"fieldName": "size"
|
1265
1287
|
}
|
1266
1288
|
],
|
@@ -1293,8 +1315,8 @@
|
|
1293
1315
|
"name": "SkfInput",
|
1294
1316
|
"slots": [
|
1295
1317
|
{
|
1296
|
-
"description": " Alternatively, you can use the `label` attribute",
|
1297
|
-
"name": "
|
1318
|
+
"description": "The Inputs label. Alternatively, you can use the `label` attribute.",
|
1319
|
+
"name": ""
|
1298
1320
|
}
|
1299
1321
|
],
|
1300
1322
|
"members": [
|
@@ -1313,7 +1335,7 @@
|
|
1313
1335
|
"text": "string"
|
1314
1336
|
},
|
1315
1337
|
"default": "'Clear input'",
|
1316
|
-
"description": "
|
1338
|
+
"description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
|
1317
1339
|
"attribute": "button-aria-label-clear"
|
1318
1340
|
},
|
1319
1341
|
{
|
@@ -1323,7 +1345,7 @@
|
|
1323
1345
|
"text": "string"
|
1324
1346
|
},
|
1325
1347
|
"default": "'Hide password'",
|
1326
|
-
"description": "
|
1348
|
+
"description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
|
1327
1349
|
"attribute": "button-aria-label-hide"
|
1328
1350
|
},
|
1329
1351
|
{
|
@@ -1333,13 +1355,13 @@
|
|
1333
1355
|
"text": "string"
|
1334
1356
|
},
|
1335
1357
|
"default": "'Show password'",
|
1336
|
-
"description": "
|
1358
|
+
"description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
|
1337
1359
|
"attribute": "button-aria-label-show"
|
1338
1360
|
},
|
1339
1361
|
{
|
1340
1362
|
"kind": "field",
|
1341
1363
|
"name": "customInvalid",
|
1342
|
-
"description": "If
|
1364
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
1343
1365
|
"attribute": "custom-invalid",
|
1344
1366
|
"reflects": true
|
1345
1367
|
},
|
@@ -1347,19 +1369,17 @@
|
|
1347
1369
|
"kind": "field",
|
1348
1370
|
"name": "debug",
|
1349
1371
|
"type": {
|
1350
|
-
"text": "boolean"
|
1372
|
+
"text": "boolean | undefined"
|
1351
1373
|
},
|
1352
|
-
"
|
1353
|
-
"description": "If provided, outputs helping hints in console",
|
1374
|
+
"description": "If true, outputs helping hints in console",
|
1354
1375
|
"attribute": "debug"
|
1355
1376
|
},
|
1356
1377
|
{
|
1357
1378
|
"kind": "field",
|
1358
1379
|
"name": "hideLabel",
|
1359
1380
|
"type": {
|
1360
|
-
"text": "boolean"
|
1381
|
+
"text": "boolean | undefined"
|
1361
1382
|
},
|
1362
|
-
"default": "false",
|
1363
1383
|
"description": "If true, hides the label visually",
|
1364
1384
|
"attribute": "hide-label"
|
1365
1385
|
},
|
@@ -1369,7 +1389,7 @@
|
|
1369
1389
|
"type": {
|
1370
1390
|
"text": "string | undefined"
|
1371
1391
|
},
|
1372
|
-
"description": "If
|
1392
|
+
"description": "If defined, displays informational text below the field",
|
1373
1393
|
"attribute": "hint"
|
1374
1394
|
},
|
1375
1395
|
{
|
@@ -1379,7 +1399,7 @@
|
|
1379
1399
|
"text": "'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'"
|
1380
1400
|
},
|
1381
1401
|
"default": "'text'",
|
1382
|
-
"description": "
|
1402
|
+
"description": "Tells what keyboard to use if applicable",
|
1383
1403
|
"attribute": "inputmode"
|
1384
1404
|
},
|
1385
1405
|
{
|
@@ -1388,7 +1408,7 @@
|
|
1388
1408
|
"type": {
|
1389
1409
|
"text": "string | undefined"
|
1390
1410
|
},
|
1391
|
-
"description": "
|
1411
|
+
"description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
|
1392
1412
|
"attribute": "label"
|
1393
1413
|
},
|
1394
1414
|
{
|
@@ -1397,7 +1417,7 @@
|
|
1397
1417
|
"type": {
|
1398
1418
|
"text": "string | undefined"
|
1399
1419
|
},
|
1400
|
-
"description": "If
|
1420
|
+
"description": "If defined, displays a prefix/adornment before the input-element",
|
1401
1421
|
"attribute": "leading"
|
1402
1422
|
},
|
1403
1423
|
{
|
@@ -1406,7 +1426,7 @@
|
|
1406
1426
|
"type": {
|
1407
1427
|
"text": "number | string | undefined"
|
1408
1428
|
},
|
1409
|
-
"description": "If
|
1429
|
+
"description": "If defined, sets the maximum value to accept for this input",
|
1410
1430
|
"attribute": "max"
|
1411
1431
|
},
|
1412
1432
|
{
|
@@ -1415,7 +1435,7 @@
|
|
1415
1435
|
"type": {
|
1416
1436
|
"text": "number | undefined"
|
1417
1437
|
},
|
1418
|
-
"description": "If
|
1438
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
1419
1439
|
"attribute": "maxlength"
|
1420
1440
|
},
|
1421
1441
|
{
|
@@ -1424,7 +1444,7 @@
|
|
1424
1444
|
"type": {
|
1425
1445
|
"text": "number | string | undefined"
|
1426
1446
|
},
|
1427
|
-
"description": "If
|
1447
|
+
"description": "If defined, sets the minimum value to accept for this input",
|
1428
1448
|
"attribute": "min"
|
1429
1449
|
},
|
1430
1450
|
{
|
@@ -1433,7 +1453,7 @@
|
|
1433
1453
|
"type": {
|
1434
1454
|
"text": "number | undefined"
|
1435
1455
|
},
|
1436
|
-
"description": "If
|
1456
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
1437
1457
|
"attribute": "minlength"
|
1438
1458
|
},
|
1439
1459
|
{
|
@@ -1442,7 +1462,7 @@
|
|
1442
1462
|
"type": {
|
1443
1463
|
"text": "string | undefined"
|
1444
1464
|
},
|
1445
|
-
"description": "If
|
1465
|
+
"description": "If defined, adds name to the input-element",
|
1446
1466
|
"attribute": "name"
|
1447
1467
|
},
|
1448
1468
|
{
|
@@ -1451,7 +1471,7 @@
|
|
1451
1471
|
"type": {
|
1452
1472
|
"text": "string | undefined"
|
1453
1473
|
},
|
1454
|
-
"description": "If
|
1474
|
+
"description": "If defined, adds name to the input-element",
|
1455
1475
|
"attribute": "pattern"
|
1456
1476
|
},
|
1457
1477
|
{
|
@@ -1460,7 +1480,7 @@
|
|
1460
1480
|
"type": {
|
1461
1481
|
"text": "string | undefined"
|
1462
1482
|
},
|
1463
|
-
"description": "If
|
1483
|
+
"description": "If defined, displays placeholder text",
|
1464
1484
|
"attribute": "placeholder"
|
1465
1485
|
},
|
1466
1486
|
{
|
@@ -1478,17 +1498,18 @@
|
|
1478
1498
|
"type": {
|
1479
1499
|
"text": "string | undefined"
|
1480
1500
|
},
|
1481
|
-
"description": "If
|
1501
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
1482
1502
|
"attribute": "required-label"
|
1483
1503
|
},
|
1484
1504
|
{
|
1485
1505
|
"kind": "field",
|
1486
1506
|
"name": "severity",
|
1487
1507
|
"type": {
|
1488
|
-
"text": "
|
1508
|
+
"text": "\"alert\" | \"success\" | \"info\" | \"warning\""
|
1489
1509
|
},
|
1490
|
-
"description": "If
|
1491
|
-
"attribute": "severity"
|
1510
|
+
"description": "If defined, displays provided severity state",
|
1511
|
+
"attribute": "severity",
|
1512
|
+
"reflects": true
|
1492
1513
|
},
|
1493
1514
|
{
|
1494
1515
|
"kind": "field",
|
@@ -1496,17 +1517,17 @@
|
|
1496
1517
|
"type": {
|
1497
1518
|
"text": "boolean | undefined"
|
1498
1519
|
},
|
1499
|
-
"description": "If
|
1520
|
+
"description": "If true, displays valid state after interaction",
|
1500
1521
|
"attribute": "show-valid"
|
1501
1522
|
},
|
1502
1523
|
{
|
1503
1524
|
"kind": "field",
|
1504
1525
|
"name": "size",
|
1505
1526
|
"type": {
|
1506
|
-
"text": "'sm' | 'md'
|
1527
|
+
"text": "'sm' | 'md'"
|
1507
1528
|
},
|
1508
1529
|
"default": "'md'",
|
1509
|
-
"description": "
|
1530
|
+
"description": "Size of the input",
|
1510
1531
|
"attribute": "size",
|
1511
1532
|
"reflects": true
|
1512
1533
|
},
|
@@ -1516,27 +1537,27 @@
|
|
1516
1537
|
"type": {
|
1517
1538
|
"text": "string | undefined"
|
1518
1539
|
},
|
1519
|
-
"description": "If
|
1540
|
+
"description": "If defined, displays a suffix/adornment after the input-element",
|
1520
1541
|
"attribute": "trailing"
|
1521
1542
|
},
|
1522
1543
|
{
|
1523
1544
|
"kind": "field",
|
1524
1545
|
"name": "type",
|
1525
1546
|
"type": {
|
1526
|
-
"text": "
|
1547
|
+
"text": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
|
1527
1548
|
},
|
1528
1549
|
"default": "'text'",
|
1529
|
-
"description": "
|
1550
|
+
"description": "Type of input control",
|
1530
1551
|
"attribute": "type"
|
1531
1552
|
},
|
1532
1553
|
{
|
1533
1554
|
"kind": "field",
|
1534
1555
|
"name": "validateOn",
|
1535
1556
|
"type": {
|
1536
|
-
"text": "'input' | 'change' | 'submit'
|
1557
|
+
"text": "'input' | 'change' | 'submit'"
|
1537
1558
|
},
|
1538
1559
|
"default": "'change'",
|
1539
|
-
"description": "
|
1560
|
+
"description": "Sets validation start",
|
1540
1561
|
"attribute": "validate-on"
|
1541
1562
|
},
|
1542
1563
|
{
|
@@ -1548,16 +1569,6 @@
|
|
1548
1569
|
"default": "''",
|
1549
1570
|
"description": "The current value of the input field",
|
1550
1571
|
"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
1572
|
}
|
1562
1573
|
],
|
1563
1574
|
"events": [
|
@@ -1591,7 +1602,7 @@
|
|
1591
1602
|
"text": "string"
|
1592
1603
|
},
|
1593
1604
|
"default": "'Clear input'",
|
1594
|
-
"description": "
|
1605
|
+
"description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
|
1595
1606
|
"fieldName": "buttonAriaLabelClear"
|
1596
1607
|
},
|
1597
1608
|
{
|
@@ -1600,7 +1611,7 @@
|
|
1600
1611
|
"text": "string"
|
1601
1612
|
},
|
1602
1613
|
"default": "'Hide password'",
|
1603
|
-
"description": "
|
1614
|
+
"description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
|
1604
1615
|
"fieldName": "buttonAriaLabelHide"
|
1605
1616
|
},
|
1606
1617
|
{
|
@@ -1609,29 +1620,27 @@
|
|
1609
1620
|
"text": "string"
|
1610
1621
|
},
|
1611
1622
|
"default": "'Show password'",
|
1612
|
-
"description": "
|
1623
|
+
"description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
|
1613
1624
|
"fieldName": "buttonAriaLabelShow"
|
1614
1625
|
},
|
1615
1626
|
{
|
1616
1627
|
"name": "custom-invalid",
|
1617
|
-
"description": "If
|
1628
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
1618
1629
|
"fieldName": "customInvalid"
|
1619
1630
|
},
|
1620
1631
|
{
|
1621
1632
|
"name": "debug",
|
1622
1633
|
"type": {
|
1623
|
-
"text": "boolean"
|
1634
|
+
"text": "boolean | undefined"
|
1624
1635
|
},
|
1625
|
-
"
|
1626
|
-
"description": "If provided, outputs helping hints in console",
|
1636
|
+
"description": "If true, outputs helping hints in console",
|
1627
1637
|
"fieldName": "debug"
|
1628
1638
|
},
|
1629
1639
|
{
|
1630
1640
|
"name": "hide-label",
|
1631
1641
|
"type": {
|
1632
|
-
"text": "boolean"
|
1642
|
+
"text": "boolean | undefined"
|
1633
1643
|
},
|
1634
|
-
"default": "false",
|
1635
1644
|
"description": "If true, hides the label visually",
|
1636
1645
|
"fieldName": "hideLabel"
|
1637
1646
|
},
|
@@ -1640,7 +1649,7 @@
|
|
1640
1649
|
"type": {
|
1641
1650
|
"text": "string | undefined"
|
1642
1651
|
},
|
1643
|
-
"description": "If
|
1652
|
+
"description": "If defined, displays informational text below the field",
|
1644
1653
|
"fieldName": "hint"
|
1645
1654
|
},
|
1646
1655
|
{
|
@@ -1649,7 +1658,7 @@
|
|
1649
1658
|
"text": "'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'"
|
1650
1659
|
},
|
1651
1660
|
"default": "'text'",
|
1652
|
-
"description": "
|
1661
|
+
"description": "Tells what keyboard to use if applicable",
|
1653
1662
|
"fieldName": "inputmode"
|
1654
1663
|
},
|
1655
1664
|
{
|
@@ -1657,7 +1666,7 @@
|
|
1657
1666
|
"type": {
|
1658
1667
|
"text": "string | undefined"
|
1659
1668
|
},
|
1660
|
-
"description": "
|
1669
|
+
"description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
|
1661
1670
|
"fieldName": "label"
|
1662
1671
|
},
|
1663
1672
|
{
|
@@ -1665,7 +1674,7 @@
|
|
1665
1674
|
"type": {
|
1666
1675
|
"text": "string | undefined"
|
1667
1676
|
},
|
1668
|
-
"description": "If
|
1677
|
+
"description": "If defined, displays a prefix/adornment before the input-element",
|
1669
1678
|
"fieldName": "leading"
|
1670
1679
|
},
|
1671
1680
|
{
|
@@ -1673,7 +1682,7 @@
|
|
1673
1682
|
"type": {
|
1674
1683
|
"text": "number | string | undefined"
|
1675
1684
|
},
|
1676
|
-
"description": "If
|
1685
|
+
"description": "If defined, sets the maximum value to accept for this input",
|
1677
1686
|
"fieldName": "max"
|
1678
1687
|
},
|
1679
1688
|
{
|
@@ -1681,7 +1690,7 @@
|
|
1681
1690
|
"type": {
|
1682
1691
|
"text": "number | undefined"
|
1683
1692
|
},
|
1684
|
-
"description": "If
|
1693
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
1685
1694
|
"fieldName": "maxLength"
|
1686
1695
|
},
|
1687
1696
|
{
|
@@ -1689,7 +1698,7 @@
|
|
1689
1698
|
"type": {
|
1690
1699
|
"text": "number | string | undefined"
|
1691
1700
|
},
|
1692
|
-
"description": "If
|
1701
|
+
"description": "If defined, sets the minimum value to accept for this input",
|
1693
1702
|
"fieldName": "min"
|
1694
1703
|
},
|
1695
1704
|
{
|
@@ -1697,7 +1706,7 @@
|
|
1697
1706
|
"type": {
|
1698
1707
|
"text": "number | undefined"
|
1699
1708
|
},
|
1700
|
-
"description": "If
|
1709
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
1701
1710
|
"fieldName": "minLength"
|
1702
1711
|
},
|
1703
1712
|
{
|
@@ -1705,7 +1714,7 @@
|
|
1705
1714
|
"type": {
|
1706
1715
|
"text": "string | undefined"
|
1707
1716
|
},
|
1708
|
-
"description": "If
|
1717
|
+
"description": "If defined, adds name to the input-element",
|
1709
1718
|
"fieldName": "name"
|
1710
1719
|
},
|
1711
1720
|
{
|
@@ -1713,7 +1722,7 @@
|
|
1713
1722
|
"type": {
|
1714
1723
|
"text": "string | undefined"
|
1715
1724
|
},
|
1716
|
-
"description": "If
|
1725
|
+
"description": "If defined, adds name to the input-element",
|
1717
1726
|
"fieldName": "pattern"
|
1718
1727
|
},
|
1719
1728
|
{
|
@@ -1721,7 +1730,7 @@
|
|
1721
1730
|
"type": {
|
1722
1731
|
"text": "string | undefined"
|
1723
1732
|
},
|
1724
|
-
"description": "If
|
1733
|
+
"description": "If defined, displays placeholder text",
|
1725
1734
|
"fieldName": "placeholder"
|
1726
1735
|
},
|
1727
1736
|
{
|
@@ -1737,15 +1746,15 @@
|
|
1737
1746
|
"type": {
|
1738
1747
|
"text": "string | undefined"
|
1739
1748
|
},
|
1740
|
-
"description": "If
|
1749
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
1741
1750
|
"fieldName": "requiredLabel"
|
1742
1751
|
},
|
1743
1752
|
{
|
1744
1753
|
"name": "severity",
|
1745
1754
|
"type": {
|
1746
|
-
"text": "
|
1755
|
+
"text": "\"alert\" | \"success\" | \"info\" | \"warning\""
|
1747
1756
|
},
|
1748
|
-
"description": "If
|
1757
|
+
"description": "If defined, displays provided severity state",
|
1749
1758
|
"fieldName": "severity"
|
1750
1759
|
},
|
1751
1760
|
{
|
@@ -1753,16 +1762,16 @@
|
|
1753
1762
|
"type": {
|
1754
1763
|
"text": "boolean | undefined"
|
1755
1764
|
},
|
1756
|
-
"description": "If
|
1765
|
+
"description": "If true, displays valid state after interaction",
|
1757
1766
|
"fieldName": "showValid"
|
1758
1767
|
},
|
1759
1768
|
{
|
1760
1769
|
"name": "size",
|
1761
1770
|
"type": {
|
1762
|
-
"text": "'sm' | 'md'
|
1771
|
+
"text": "'sm' | 'md'"
|
1763
1772
|
},
|
1764
1773
|
"default": "'md'",
|
1765
|
-
"description": "
|
1774
|
+
"description": "Size of the input",
|
1766
1775
|
"fieldName": "size"
|
1767
1776
|
},
|
1768
1777
|
{
|
@@ -1770,25 +1779,25 @@
|
|
1770
1779
|
"type": {
|
1771
1780
|
"text": "string | undefined"
|
1772
1781
|
},
|
1773
|
-
"description": "If
|
1782
|
+
"description": "If defined, displays a suffix/adornment after the input-element",
|
1774
1783
|
"fieldName": "trailing"
|
1775
1784
|
},
|
1776
1785
|
{
|
1777
1786
|
"name": "type",
|
1778
1787
|
"type": {
|
1779
|
-
"text": "
|
1788
|
+
"text": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
|
1780
1789
|
},
|
1781
1790
|
"default": "'text'",
|
1782
|
-
"description": "
|
1791
|
+
"description": "Type of input control",
|
1783
1792
|
"fieldName": "type"
|
1784
1793
|
},
|
1785
1794
|
{
|
1786
1795
|
"name": "validate-on",
|
1787
1796
|
"type": {
|
1788
|
-
"text": "'input' | 'change' | 'submit'
|
1797
|
+
"text": "'input' | 'change' | 'submit'"
|
1789
1798
|
},
|
1790
1799
|
"default": "'change'",
|
1791
|
-
"description": "
|
1800
|
+
"description": "Sets validation start",
|
1792
1801
|
"fieldName": "validateOn"
|
1793
1802
|
},
|
1794
1803
|
{
|
@@ -1830,9 +1839,6 @@
|
|
1830
1839
|
"name": "SkfLink",
|
1831
1840
|
"slots": [
|
1832
1841
|
{
|
1833
|
-
"type": {
|
1834
|
-
"text": "string"
|
1835
|
-
},
|
1836
1842
|
"description": "The links' main content",
|
1837
1843
|
"name": ""
|
1838
1844
|
}
|
@@ -1853,7 +1859,7 @@
|
|
1853
1859
|
"text": "'button' | 'a'"
|
1854
1860
|
},
|
1855
1861
|
"default": "'a'",
|
1856
|
-
"description": "
|
1862
|
+
"description": "Defines the semantic element to render",
|
1857
1863
|
"attribute": "as",
|
1858
1864
|
"reflects": true
|
1859
1865
|
},
|
@@ -1864,6 +1870,7 @@
|
|
1864
1870
|
"text": "'primary' | 'inverse'"
|
1865
1871
|
},
|
1866
1872
|
"default": "'primary'",
|
1873
|
+
"description": "Defines the text-color",
|
1867
1874
|
"attribute": "color",
|
1868
1875
|
"reflects": true
|
1869
1876
|
},
|
@@ -1883,7 +1890,7 @@
|
|
1883
1890
|
"type": {
|
1884
1891
|
"text": "string | undefined"
|
1885
1892
|
},
|
1886
|
-
"description": "If
|
1893
|
+
"description": "If defined, downloads the url",
|
1887
1894
|
"attribute": "download"
|
1888
1895
|
},
|
1889
1896
|
{
|
@@ -1892,7 +1899,7 @@
|
|
1892
1899
|
"type": {
|
1893
1900
|
"text": "string | undefined"
|
1894
1901
|
},
|
1895
|
-
"description": "If
|
1902
|
+
"description": "If defined, loads url on click",
|
1896
1903
|
"attribute": "href",
|
1897
1904
|
"reflects": true
|
1898
1905
|
},
|
@@ -1902,7 +1909,7 @@
|
|
1902
1909
|
"type": {
|
1903
1910
|
"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
1911
|
},
|
1905
|
-
"description": "If
|
1912
|
+
"description": "If defined, renders an icon before or after the text",
|
1906
1913
|
"attribute": "icon"
|
1907
1914
|
},
|
1908
1915
|
{
|
@@ -1912,7 +1919,7 @@
|
|
1912
1919
|
"text": "'left' | 'right'"
|
1913
1920
|
},
|
1914
1921
|
"default": "'left'",
|
1915
|
-
"description": "
|
1922
|
+
"description": "Defines the position of the icon in relation to the text",
|
1916
1923
|
"attribute": "icon-placement",
|
1917
1924
|
"reflects": true
|
1918
1925
|
},
|
@@ -1923,7 +1930,7 @@
|
|
1923
1930
|
"text": "string"
|
1924
1931
|
},
|
1925
1932
|
"default": "'noreferrer noopener'",
|
1926
|
-
"description": "
|
1933
|
+
"description": "Defines the relationship of the target object to the link object",
|
1927
1934
|
"attribute": "rel"
|
1928
1935
|
},
|
1929
1936
|
{
|
@@ -1932,7 +1939,7 @@
|
|
1932
1939
|
"type": {
|
1933
1940
|
"text": "string | undefined"
|
1934
1941
|
},
|
1935
|
-
"description": "If
|
1942
|
+
"description": "If defined, used on conjunction with onClick property, second argument",
|
1936
1943
|
"attribute": "route",
|
1937
1944
|
"reflects": true
|
1938
1945
|
},
|
@@ -1952,7 +1959,7 @@
|
|
1952
1959
|
"type": {
|
1953
1960
|
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
1954
1961
|
},
|
1955
|
-
"description": "If
|
1962
|
+
"description": "If defined, specifies where to open the linked document",
|
1956
1963
|
"attribute": "target"
|
1957
1964
|
},
|
1958
1965
|
{
|
@@ -1962,7 +1969,7 @@
|
|
1962
1969
|
"text": "'button' | 'submit' | 'reset'"
|
1963
1970
|
},
|
1964
1971
|
"default": "'button'",
|
1965
|
-
"description": "
|
1972
|
+
"description": "Defines the type of button",
|
1966
1973
|
"attribute": "type"
|
1967
1974
|
},
|
1968
1975
|
{
|
@@ -1981,7 +1988,7 @@
|
|
1981
1988
|
"text": "'button' | 'a'"
|
1982
1989
|
},
|
1983
1990
|
"default": "'a'",
|
1984
|
-
"description": "
|
1991
|
+
"description": "Defines the semantic element to render",
|
1985
1992
|
"fieldName": "as"
|
1986
1993
|
},
|
1987
1994
|
{
|
@@ -1990,6 +1997,7 @@
|
|
1990
1997
|
"text": "'primary' | 'inverse'"
|
1991
1998
|
},
|
1992
1999
|
"default": "'primary'",
|
2000
|
+
"description": "Defines the text-color",
|
1993
2001
|
"fieldName": "color"
|
1994
2002
|
},
|
1995
2003
|
{
|
@@ -2005,7 +2013,7 @@
|
|
2005
2013
|
"type": {
|
2006
2014
|
"text": "string | undefined"
|
2007
2015
|
},
|
2008
|
-
"description": "If
|
2016
|
+
"description": "If defined, downloads the url",
|
2009
2017
|
"fieldName": "download"
|
2010
2018
|
},
|
2011
2019
|
{
|
@@ -2013,7 +2021,7 @@
|
|
2013
2021
|
"type": {
|
2014
2022
|
"text": "string | undefined"
|
2015
2023
|
},
|
2016
|
-
"description": "If
|
2024
|
+
"description": "If defined, loads url on click",
|
2017
2025
|
"fieldName": "href"
|
2018
2026
|
},
|
2019
2027
|
{
|
@@ -2021,7 +2029,7 @@
|
|
2021
2029
|
"type": {
|
2022
2030
|
"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
2031
|
},
|
2024
|
-
"description": "If
|
2032
|
+
"description": "If defined, renders an icon before or after the text",
|
2025
2033
|
"fieldName": "icon"
|
2026
2034
|
},
|
2027
2035
|
{
|
@@ -2030,7 +2038,7 @@
|
|
2030
2038
|
"text": "'left' | 'right'"
|
2031
2039
|
},
|
2032
2040
|
"default": "'left'",
|
2033
|
-
"description": "
|
2041
|
+
"description": "Defines the position of the icon in relation to the text",
|
2034
2042
|
"fieldName": "iconPlacement"
|
2035
2043
|
},
|
2036
2044
|
{
|
@@ -2039,7 +2047,7 @@
|
|
2039
2047
|
"text": "string"
|
2040
2048
|
},
|
2041
2049
|
"default": "'noreferrer noopener'",
|
2042
|
-
"description": "
|
2050
|
+
"description": "Defines the relationship of the target object to the link object",
|
2043
2051
|
"fieldName": "rel"
|
2044
2052
|
},
|
2045
2053
|
{
|
@@ -2047,7 +2055,7 @@
|
|
2047
2055
|
"type": {
|
2048
2056
|
"text": "string | undefined"
|
2049
2057
|
},
|
2050
|
-
"description": "If
|
2058
|
+
"description": "If defined, used on conjunction with onClick property, second argument",
|
2051
2059
|
"fieldName": "route"
|
2052
2060
|
},
|
2053
2061
|
{
|
@@ -2063,7 +2071,7 @@
|
|
2063
2071
|
"type": {
|
2064
2072
|
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
2065
2073
|
},
|
2066
|
-
"description": "If
|
2074
|
+
"description": "If defined, specifies where to open the linked document",
|
2067
2075
|
"fieldName": "target"
|
2068
2076
|
},
|
2069
2077
|
{
|
@@ -2072,7 +2080,7 @@
|
|
2072
2080
|
"text": "'button' | 'submit' | 'reset'"
|
2073
2081
|
},
|
2074
2082
|
"default": "'button'",
|
2075
|
-
"description": "
|
2083
|
+
"description": "Defines the type of button",
|
2076
2084
|
"fieldName": "type"
|
2077
2085
|
}
|
2078
2086
|
],
|
@@ -2101,9 +2109,17 @@
|
|
2101
2109
|
"declarations": [
|
2102
2110
|
{
|
2103
2111
|
"kind": "class",
|
2104
|
-
"description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities
|
2112
|
+
"description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities",
|
2105
2113
|
"name": "SkfLoader",
|
2106
2114
|
"members": [
|
2115
|
+
{
|
2116
|
+
"kind": "field",
|
2117
|
+
"name": "#internals",
|
2118
|
+
"privacy": "private",
|
2119
|
+
"type": {
|
2120
|
+
"text": "ElementInternals"
|
2121
|
+
}
|
2122
|
+
},
|
2107
2123
|
{
|
2108
2124
|
"kind": "field",
|
2109
2125
|
"name": "ariaLabel",
|
@@ -2111,6 +2127,7 @@
|
|
2111
2127
|
"text": "string"
|
2112
2128
|
},
|
2113
2129
|
"default": "'Loading...'",
|
2130
|
+
"description": "Defines the aria-label",
|
2114
2131
|
"attribute": "aria-label",
|
2115
2132
|
"reflects": true
|
2116
2133
|
},
|
@@ -2118,9 +2135,8 @@
|
|
2118
2135
|
"kind": "field",
|
2119
2136
|
"name": "invert",
|
2120
2137
|
"type": {
|
2121
|
-
"text": "boolean"
|
2138
|
+
"text": "boolean | undefined"
|
2122
2139
|
},
|
2123
|
-
"default": "false",
|
2124
2140
|
"description": "If true, inverts the color (to be used on colored backgrounds)",
|
2125
2141
|
"attribute": "invert"
|
2126
2142
|
},
|
@@ -2131,9 +2147,25 @@
|
|
2131
2147
|
"text": "'md' | 'sm' | undefined"
|
2132
2148
|
},
|
2133
2149
|
"default": "'md'",
|
2134
|
-
"description": "
|
2150
|
+
"description": "Defines the size of the loader",
|
2135
2151
|
"attribute": "size",
|
2136
2152
|
"reflects": true
|
2153
|
+
},
|
2154
|
+
{
|
2155
|
+
"kind": "field",
|
2156
|
+
"name": "role",
|
2157
|
+
"type": {
|
2158
|
+
"text": "string"
|
2159
|
+
},
|
2160
|
+
"default": "'progressbar'"
|
2161
|
+
},
|
2162
|
+
{
|
2163
|
+
"kind": "field",
|
2164
|
+
"name": "ariaLive",
|
2165
|
+
"type": {
|
2166
|
+
"text": "string"
|
2167
|
+
},
|
2168
|
+
"default": "'polite'"
|
2137
2169
|
}
|
2138
2170
|
],
|
2139
2171
|
"attributes": [
|
@@ -2143,14 +2175,14 @@
|
|
2143
2175
|
"text": "string"
|
2144
2176
|
},
|
2145
2177
|
"default": "'Loading...'",
|
2178
|
+
"description": "Defines the aria-label",
|
2146
2179
|
"fieldName": "ariaLabel"
|
2147
2180
|
},
|
2148
2181
|
{
|
2149
2182
|
"name": "invert",
|
2150
2183
|
"type": {
|
2151
|
-
"text": "boolean"
|
2184
|
+
"text": "boolean | undefined"
|
2152
2185
|
},
|
2153
|
-
"default": "false",
|
2154
2186
|
"description": "If true, inverts the color (to be used on colored backgrounds)",
|
2155
2187
|
"fieldName": "invert"
|
2156
2188
|
},
|
@@ -2160,7 +2192,7 @@
|
|
2160
2192
|
"text": "'md' | 'sm' | undefined"
|
2161
2193
|
},
|
2162
2194
|
"default": "'md'",
|
2163
|
-
"description": "
|
2195
|
+
"description": "Defines the size of the loader",
|
2164
2196
|
"fieldName": "size"
|
2165
2197
|
}
|
2166
2198
|
],
|
@@ -2205,7 +2237,7 @@
|
|
2205
2237
|
"text": "string"
|
2206
2238
|
},
|
2207
2239
|
"default": "'SKF logotype'",
|
2208
|
-
"description": "
|
2240
|
+
"description": "Defines the title of the logo",
|
2209
2241
|
"attribute": "title"
|
2210
2242
|
},
|
2211
2243
|
{
|
@@ -2215,7 +2247,7 @@
|
|
2215
2247
|
"text": "\"primary\" | \"secondary\" | \"inverse\""
|
2216
2248
|
},
|
2217
2249
|
"default": "'primary'",
|
2218
|
-
"description": "If
|
2250
|
+
"description": "If defined, sets color of the logo",
|
2219
2251
|
"attribute": "color"
|
2220
2252
|
}
|
2221
2253
|
],
|
@@ -2226,7 +2258,7 @@
|
|
2226
2258
|
"text": "string"
|
2227
2259
|
},
|
2228
2260
|
"default": "'SKF logotype'",
|
2229
|
-
"description": "
|
2261
|
+
"description": "Defines the title of the logo",
|
2230
2262
|
"fieldName": "title"
|
2231
2263
|
},
|
2232
2264
|
{
|
@@ -2235,7 +2267,7 @@
|
|
2235
2267
|
"text": "\"primary\" | \"secondary\" | \"inverse\""
|
2236
2268
|
},
|
2237
2269
|
"default": "'primary'",
|
2238
|
-
"description": "If
|
2270
|
+
"description": "If defined, sets color of the logo",
|
2239
2271
|
"fieldName": "color"
|
2240
2272
|
}
|
2241
2273
|
],
|
@@ -2268,19 +2300,27 @@
|
|
2268
2300
|
"name": "SkfRadio",
|
2269
2301
|
"slots": [
|
2270
2302
|
{
|
2271
|
-
"description": " Alternatively, you can use the `label` attribute",
|
2272
|
-
"name": "
|
2303
|
+
"description": "The radios label. Alternatively, you can use the `label` attribute.",
|
2304
|
+
"name": ""
|
2273
2305
|
}
|
2274
2306
|
],
|
2275
2307
|
"members": [
|
2308
|
+
{
|
2309
|
+
"kind": "field",
|
2310
|
+
"name": "_initialChecked",
|
2311
|
+
"type": {
|
2312
|
+
"text": "boolean | undefined"
|
2313
|
+
},
|
2314
|
+
"privacy": "private",
|
2315
|
+
"default": "false"
|
2316
|
+
},
|
2276
2317
|
{
|
2277
2318
|
"kind": "field",
|
2278
2319
|
"name": "debug",
|
2279
2320
|
"type": {
|
2280
|
-
"text": "boolean"
|
2321
|
+
"text": "boolean | undefined"
|
2281
2322
|
},
|
2282
|
-
"
|
2283
|
-
"description": "If provided, outputs helping hints in console",
|
2323
|
+
"description": "If true, outputs helping hints in console",
|
2284
2324
|
"attribute": "debug"
|
2285
2325
|
},
|
2286
2326
|
{
|
@@ -2289,231 +2329,804 @@
|
|
2289
2329
|
"type": {
|
2290
2330
|
"text": "boolean | undefined"
|
2291
2331
|
},
|
2292
|
-
"description": "If true, outputs helping hints in console",
|
2293
|
-
"attribute": "checked",
|
2332
|
+
"description": "If true, outputs helping hints in console",
|
2333
|
+
"attribute": "checked",
|
2334
|
+
"reflects": true
|
2335
|
+
},
|
2336
|
+
{
|
2337
|
+
"kind": "field",
|
2338
|
+
"name": "customInvalid",
|
2339
|
+
"type": {
|
2340
|
+
"text": "boolean | undefined"
|
2341
|
+
},
|
2342
|
+
"description": "If true, forces component to invalid state until removed",
|
2343
|
+
"attribute": "custom-invalid"
|
2344
|
+
},
|
2345
|
+
{
|
2346
|
+
"kind": "field",
|
2347
|
+
"name": "hideLabel",
|
2348
|
+
"type": {
|
2349
|
+
"text": "boolean | undefined"
|
2350
|
+
},
|
2351
|
+
"description": "If true, hides the label visually",
|
2352
|
+
"attribute": "hide-label",
|
2353
|
+
"reflects": true
|
2354
|
+
},
|
2355
|
+
{
|
2356
|
+
"kind": "field",
|
2357
|
+
"name": "label",
|
2358
|
+
"type": {
|
2359
|
+
"text": "string | undefined"
|
2360
|
+
},
|
2361
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
2362
|
+
"attribute": "label"
|
2363
|
+
},
|
2364
|
+
{
|
2365
|
+
"kind": "field",
|
2366
|
+
"name": "name",
|
2367
|
+
"type": {
|
2368
|
+
"text": "string | undefined"
|
2369
|
+
},
|
2370
|
+
"description": "If defined, adds name to the input-element",
|
2371
|
+
"attribute": "name"
|
2372
|
+
},
|
2373
|
+
{
|
2374
|
+
"kind": "field",
|
2375
|
+
"name": "requiredLabel",
|
2376
|
+
"type": {
|
2377
|
+
"text": "string | undefined"
|
2378
|
+
},
|
2379
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2380
|
+
"attribute": "required-label"
|
2381
|
+
},
|
2382
|
+
{
|
2383
|
+
"kind": "field",
|
2384
|
+
"name": "size",
|
2385
|
+
"type": {
|
2386
|
+
"text": "'sm' | 'md'"
|
2387
|
+
},
|
2388
|
+
"default": "'md'",
|
2389
|
+
"description": "Size of the Radio",
|
2390
|
+
"attribute": "size",
|
2391
|
+
"reflects": true
|
2392
|
+
},
|
2393
|
+
{
|
2394
|
+
"kind": "field",
|
2395
|
+
"name": "severity",
|
2396
|
+
"type": {
|
2397
|
+
"text": "\"success\" | \"info\" | \"warning\" | \"alert\""
|
2398
|
+
},
|
2399
|
+
"description": "If defined, displays provided severity state",
|
2400
|
+
"attribute": "severity"
|
2401
|
+
},
|
2402
|
+
{
|
2403
|
+
"kind": "field",
|
2404
|
+
"name": "showValid",
|
2405
|
+
"type": {
|
2406
|
+
"text": "boolean | undefined"
|
2407
|
+
},
|
2408
|
+
"description": "If true, displays valid state after interaction",
|
2409
|
+
"attribute": "show-valid"
|
2410
|
+
},
|
2411
|
+
{
|
2412
|
+
"kind": "field",
|
2413
|
+
"name": "value",
|
2414
|
+
"type": {
|
2415
|
+
"text": "string"
|
2416
|
+
},
|
2417
|
+
"default": "''",
|
2418
|
+
"description": "The current value of the input field",
|
2419
|
+
"attribute": "value"
|
2420
|
+
},
|
2421
|
+
{
|
2422
|
+
"kind": "method",
|
2423
|
+
"name": "debugOutput"
|
2424
|
+
}
|
2425
|
+
],
|
2426
|
+
"events": [
|
2427
|
+
{
|
2428
|
+
"description": "{object} - When the value of the input changes",
|
2429
|
+
"name": "change"
|
2430
|
+
}
|
2431
|
+
],
|
2432
|
+
"attributes": [
|
2433
|
+
{
|
2434
|
+
"type": {
|
2435
|
+
"text": "boolean"
|
2436
|
+
},
|
2437
|
+
"description": "If true, sets disabled state",
|
2438
|
+
"name": "disabled"
|
2439
|
+
},
|
2440
|
+
{
|
2441
|
+
"type": {
|
2442
|
+
"text": "boolean"
|
2443
|
+
},
|
2444
|
+
"description": "If true, value is required or must be checked for the form to be submittable",
|
2445
|
+
"name": "required"
|
2446
|
+
},
|
2447
|
+
{
|
2448
|
+
"name": "debug",
|
2449
|
+
"type": {
|
2450
|
+
"text": "boolean | undefined"
|
2451
|
+
},
|
2452
|
+
"description": "If true, outputs helping hints in console",
|
2453
|
+
"fieldName": "debug"
|
2454
|
+
},
|
2455
|
+
{
|
2456
|
+
"name": "checked",
|
2457
|
+
"type": {
|
2458
|
+
"text": "boolean | undefined"
|
2459
|
+
},
|
2460
|
+
"description": "If true, outputs helping hints in console",
|
2461
|
+
"fieldName": "checked"
|
2462
|
+
},
|
2463
|
+
{
|
2464
|
+
"name": "custom-invalid",
|
2465
|
+
"type": {
|
2466
|
+
"text": "boolean | undefined"
|
2467
|
+
},
|
2468
|
+
"description": "If true, forces component to invalid state until removed",
|
2469
|
+
"fieldName": "customInvalid"
|
2470
|
+
},
|
2471
|
+
{
|
2472
|
+
"name": "hide-label",
|
2473
|
+
"type": {
|
2474
|
+
"text": "boolean | undefined"
|
2475
|
+
},
|
2476
|
+
"description": "If true, hides the label visually",
|
2477
|
+
"fieldName": "hideLabel"
|
2478
|
+
},
|
2479
|
+
{
|
2480
|
+
"name": "label",
|
2481
|
+
"type": {
|
2482
|
+
"text": "string | undefined"
|
2483
|
+
},
|
2484
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
2485
|
+
"fieldName": "label"
|
2486
|
+
},
|
2487
|
+
{
|
2488
|
+
"name": "name",
|
2489
|
+
"type": {
|
2490
|
+
"text": "string | undefined"
|
2491
|
+
},
|
2492
|
+
"description": "If defined, adds name to the input-element",
|
2493
|
+
"fieldName": "name"
|
2494
|
+
},
|
2495
|
+
{
|
2496
|
+
"name": "required-label",
|
2497
|
+
"type": {
|
2498
|
+
"text": "string | undefined"
|
2499
|
+
},
|
2500
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2501
|
+
"fieldName": "requiredLabel"
|
2502
|
+
},
|
2503
|
+
{
|
2504
|
+
"name": "size",
|
2505
|
+
"type": {
|
2506
|
+
"text": "'sm' | 'md'"
|
2507
|
+
},
|
2508
|
+
"default": "'md'",
|
2509
|
+
"description": "Size of the Radio",
|
2510
|
+
"fieldName": "size"
|
2511
|
+
},
|
2512
|
+
{
|
2513
|
+
"name": "severity",
|
2514
|
+
"type": {
|
2515
|
+
"text": "\"success\" | \"info\" | \"warning\" | \"alert\""
|
2516
|
+
},
|
2517
|
+
"description": "If defined, displays provided severity state",
|
2518
|
+
"fieldName": "severity"
|
2519
|
+
},
|
2520
|
+
{
|
2521
|
+
"name": "show-valid",
|
2522
|
+
"type": {
|
2523
|
+
"text": "boolean | undefined"
|
2524
|
+
},
|
2525
|
+
"description": "If true, displays valid state after interaction",
|
2526
|
+
"fieldName": "showValid"
|
2527
|
+
},
|
2528
|
+
{
|
2529
|
+
"name": "value",
|
2530
|
+
"type": {
|
2531
|
+
"text": "string"
|
2532
|
+
},
|
2533
|
+
"default": "''",
|
2534
|
+
"description": "The current value of the input field",
|
2535
|
+
"fieldName": "value"
|
2536
|
+
}
|
2537
|
+
],
|
2538
|
+
"superclass": {
|
2539
|
+
"name": "FormBase",
|
2540
|
+
"package": "@internal/components/formBase.js"
|
2541
|
+
},
|
2542
|
+
"tagName": "skf-radio",
|
2543
|
+
"customElement": true
|
2544
|
+
}
|
2545
|
+
],
|
2546
|
+
"exports": [
|
2547
|
+
{
|
2548
|
+
"kind": "js",
|
2549
|
+
"name": "SkfRadio",
|
2550
|
+
"declaration": {
|
2551
|
+
"name": "SkfRadio",
|
2552
|
+
"module": "src/components/radio/radio.component.ts"
|
2553
|
+
}
|
2554
|
+
}
|
2555
|
+
]
|
2556
|
+
},
|
2557
|
+
{
|
2558
|
+
"kind": "javascript-module",
|
2559
|
+
"path": "src/components/select/select.component.ts",
|
2560
|
+
"declarations": [
|
2561
|
+
{
|
2562
|
+
"kind": "class",
|
2563
|
+
"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.",
|
2564
|
+
"name": "SkfSelect",
|
2565
|
+
"slots": [
|
2566
|
+
{
|
2567
|
+
"description": "The select's placeholder content",
|
2568
|
+
"name": ""
|
2569
|
+
}
|
2570
|
+
],
|
2571
|
+
"members": [
|
2572
|
+
{
|
2573
|
+
"kind": "field",
|
2574
|
+
"name": "buttonLabel",
|
2575
|
+
"type": {
|
2576
|
+
"text": "string"
|
2577
|
+
},
|
2578
|
+
"default": "'Select an option'",
|
2579
|
+
"description": "Sets the first visible text on the component",
|
2580
|
+
"attribute": "button-label",
|
2581
|
+
"reflects": true
|
2582
|
+
},
|
2583
|
+
{
|
2584
|
+
"kind": "field",
|
2585
|
+
"name": "customInvalid",
|
2586
|
+
"type": {
|
2587
|
+
"text": "string | undefined"
|
2588
|
+
},
|
2589
|
+
"description": "If defined, forces component to invalid state until removed",
|
2590
|
+
"attribute": "custom-invalid"
|
2591
|
+
},
|
2592
|
+
{
|
2593
|
+
"kind": "field",
|
2594
|
+
"name": "hideLabel",
|
2595
|
+
"type": {
|
2596
|
+
"text": "boolean | undefined"
|
2597
|
+
},
|
2598
|
+
"description": "If true, hides the label visually",
|
2599
|
+
"attribute": "hide-label"
|
2600
|
+
},
|
2601
|
+
{
|
2602
|
+
"kind": "field",
|
2603
|
+
"name": "hideTags",
|
2604
|
+
"type": {
|
2605
|
+
"text": "boolean | undefined"
|
2606
|
+
},
|
2607
|
+
"description": "If true and mulltiple is true, no tags are displayed under the select",
|
2608
|
+
"attribute": "hide-tags",
|
2609
|
+
"reflects": true
|
2610
|
+
},
|
2611
|
+
{
|
2612
|
+
"kind": "field",
|
2613
|
+
"name": "hint",
|
2614
|
+
"type": {
|
2615
|
+
"text": "string | undefined"
|
2616
|
+
},
|
2617
|
+
"description": "If defined, sets the hint text under the select component in the form",
|
2618
|
+
"attribute": "hint"
|
2619
|
+
},
|
2620
|
+
{
|
2621
|
+
"kind": "field",
|
2622
|
+
"name": "getSelectedValues",
|
2623
|
+
"description": "A readonly property that returns the selected value(s) in a array",
|
2624
|
+
"readonly": true
|
2625
|
+
},
|
2626
|
+
{
|
2627
|
+
"kind": "field",
|
2628
|
+
"name": "getSelectedOptionsText",
|
2629
|
+
"description": "A readonly property that returns the selected slot(s) text content in a array",
|
2630
|
+
"readonly": true
|
2631
|
+
},
|
2632
|
+
{
|
2633
|
+
"kind": "field",
|
2634
|
+
"name": "label",
|
2635
|
+
"type": {
|
2636
|
+
"text": "string | undefined"
|
2637
|
+
},
|
2638
|
+
"description": "If defined, displays provided label",
|
2639
|
+
"attribute": "label",
|
2640
|
+
"reflects": true
|
2641
|
+
},
|
2642
|
+
{
|
2643
|
+
"kind": "field",
|
2644
|
+
"name": "max",
|
2645
|
+
"type": {
|
2646
|
+
"text": "number | undefined"
|
2647
|
+
},
|
2648
|
+
"description": "If defined, limits the number of selectable options",
|
2649
|
+
"attribute": "max"
|
2650
|
+
},
|
2651
|
+
{
|
2652
|
+
"kind": "field",
|
2653
|
+
"name": "min",
|
2654
|
+
"type": {
|
2655
|
+
"text": "number | undefined"
|
2656
|
+
},
|
2657
|
+
"description": "If defined, sets the minimum number of required options",
|
2658
|
+
"attribute": "min"
|
2659
|
+
},
|
2660
|
+
{
|
2661
|
+
"kind": "field",
|
2662
|
+
"name": "multiple",
|
2663
|
+
"type": {
|
2664
|
+
"text": "boolean | undefined"
|
2665
|
+
},
|
2666
|
+
"description": "If true, allows for multiple options to be selected",
|
2667
|
+
"attribute": "multiple",
|
2668
|
+
"reflects": true
|
2669
|
+
},
|
2670
|
+
{
|
2671
|
+
"kind": "field",
|
2672
|
+
"name": "name",
|
2673
|
+
"type": {
|
2674
|
+
"text": "string | undefined"
|
2675
|
+
},
|
2676
|
+
"description": "If defined, set name of the component",
|
2677
|
+
"attribute": "name"
|
2678
|
+
},
|
2679
|
+
{
|
2680
|
+
"kind": "field",
|
2681
|
+
"name": "requiredLabel",
|
2682
|
+
"type": {
|
2683
|
+
"text": "string | undefined"
|
2684
|
+
},
|
2685
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2686
|
+
"attribute": "required-label"
|
2687
|
+
},
|
2688
|
+
{
|
2689
|
+
"kind": "field",
|
2690
|
+
"name": "severity",
|
2691
|
+
"type": {
|
2692
|
+
"text": "FormFieldBaseProps['severity'] | undefined"
|
2693
|
+
},
|
2694
|
+
"description": "If defined, displays provided severity state",
|
2695
|
+
"attribute": "severity"
|
2696
|
+
},
|
2697
|
+
{
|
2698
|
+
"kind": "field",
|
2699
|
+
"name": "showValid",
|
2700
|
+
"type": {
|
2701
|
+
"text": "boolean | undefined"
|
2702
|
+
},
|
2703
|
+
"description": "If true, displays valid state after interaction",
|
2704
|
+
"attribute": "show-valid"
|
2705
|
+
},
|
2706
|
+
{
|
2707
|
+
"kind": "field",
|
2708
|
+
"name": "size",
|
2709
|
+
"type": {
|
2710
|
+
"text": "'sm' | 'md'"
|
2711
|
+
},
|
2712
|
+
"default": "'md'",
|
2713
|
+
"description": "Size of the Select",
|
2714
|
+
"attribute": "size",
|
2715
|
+
"reflects": true
|
2716
|
+
},
|
2717
|
+
{
|
2718
|
+
"kind": "field",
|
2719
|
+
"name": "value",
|
2720
|
+
"description": "Read only, returns the selected value. (if multiple: in a comma separated string)",
|
2721
|
+
"readonly": true
|
2722
|
+
},
|
2723
|
+
{
|
2724
|
+
"kind": "field",
|
2725
|
+
"name": "_selectedOptions",
|
2726
|
+
"type": {
|
2727
|
+
"text": "array"
|
2728
|
+
},
|
2729
|
+
"default": "[]"
|
2730
|
+
}
|
2731
|
+
],
|
2732
|
+
"events": [
|
2733
|
+
{
|
2734
|
+
"description": "Fired when the selected option(s) changes",
|
2735
|
+
"name": "change"
|
2736
|
+
},
|
2737
|
+
{
|
2738
|
+
"description": "Fired when the select is invalid",
|
2739
|
+
"name": "invalid"
|
2740
|
+
},
|
2741
|
+
{
|
2742
|
+
"description": "Fired when the form is reset",
|
2743
|
+
"name": "reset"
|
2744
|
+
},
|
2745
|
+
{
|
2746
|
+
"description": "{detail: {expanded: boolean}} Fired when the select dropdown is toggled",
|
2747
|
+
"name": "skf-select:dropdown"
|
2748
|
+
},
|
2749
|
+
{
|
2750
|
+
"description": "{detail: {value: string | null, option: SkfSelectOption}} Fired when the select dropdown is toggled",
|
2751
|
+
"name": "skf-select-option:select"
|
2752
|
+
}
|
2753
|
+
],
|
2754
|
+
"attributes": [
|
2755
|
+
{
|
2756
|
+
"type": {
|
2757
|
+
"text": "boolean"
|
2758
|
+
},
|
2759
|
+
"description": "If true, the select is disabled\t`default: false`",
|
2760
|
+
"name": "disabled"
|
2761
|
+
},
|
2762
|
+
{
|
2763
|
+
"name": "button-label",
|
2764
|
+
"type": {
|
2765
|
+
"text": "string"
|
2766
|
+
},
|
2767
|
+
"default": "'Select an option'",
|
2768
|
+
"description": "Sets the first visible text on the component",
|
2769
|
+
"fieldName": "buttonLabel"
|
2770
|
+
},
|
2771
|
+
{
|
2772
|
+
"name": "custom-invalid",
|
2773
|
+
"type": {
|
2774
|
+
"text": "string | undefined"
|
2775
|
+
},
|
2776
|
+
"description": "If defined, forces component to invalid state until removed",
|
2777
|
+
"fieldName": "customInvalid"
|
2778
|
+
},
|
2779
|
+
{
|
2780
|
+
"name": "hide-label",
|
2781
|
+
"type": {
|
2782
|
+
"text": "boolean | undefined"
|
2783
|
+
},
|
2784
|
+
"description": "If true, hides the label visually",
|
2785
|
+
"fieldName": "hideLabel"
|
2786
|
+
},
|
2787
|
+
{
|
2788
|
+
"name": "hide-tags",
|
2789
|
+
"type": {
|
2790
|
+
"text": "boolean | undefined"
|
2791
|
+
},
|
2792
|
+
"description": "If true and mulltiple is true, no tags are displayed under the select",
|
2793
|
+
"fieldName": "hideTags"
|
2794
|
+
},
|
2795
|
+
{
|
2796
|
+
"name": "hint",
|
2797
|
+
"type": {
|
2798
|
+
"text": "string | undefined"
|
2799
|
+
},
|
2800
|
+
"description": "If defined, sets the hint text under the select component in the form",
|
2801
|
+
"fieldName": "hint"
|
2802
|
+
},
|
2803
|
+
{
|
2804
|
+
"name": "label",
|
2805
|
+
"type": {
|
2806
|
+
"text": "string | undefined"
|
2807
|
+
},
|
2808
|
+
"description": "If defined, displays provided label",
|
2809
|
+
"fieldName": "label"
|
2810
|
+
},
|
2811
|
+
{
|
2812
|
+
"name": "max",
|
2813
|
+
"type": {
|
2814
|
+
"text": "number | undefined"
|
2815
|
+
},
|
2816
|
+
"description": "If defined, limits the number of selectable options",
|
2817
|
+
"fieldName": "max"
|
2818
|
+
},
|
2819
|
+
{
|
2820
|
+
"name": "min",
|
2821
|
+
"type": {
|
2822
|
+
"text": "number | undefined"
|
2823
|
+
},
|
2824
|
+
"description": "If defined, sets the minimum number of required options",
|
2825
|
+
"fieldName": "min"
|
2826
|
+
},
|
2827
|
+
{
|
2828
|
+
"name": "multiple",
|
2829
|
+
"type": {
|
2830
|
+
"text": "boolean | undefined"
|
2831
|
+
},
|
2832
|
+
"description": "If true, allows for multiple options to be selected",
|
2833
|
+
"fieldName": "multiple"
|
2834
|
+
},
|
2835
|
+
{
|
2836
|
+
"name": "name",
|
2837
|
+
"type": {
|
2838
|
+
"text": "string | undefined"
|
2839
|
+
},
|
2840
|
+
"description": "If defined, set name of the component",
|
2841
|
+
"fieldName": "name"
|
2842
|
+
},
|
2843
|
+
{
|
2844
|
+
"name": "required-label",
|
2845
|
+
"type": {
|
2846
|
+
"text": "string | undefined"
|
2847
|
+
},
|
2848
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2849
|
+
"fieldName": "requiredLabel"
|
2850
|
+
},
|
2851
|
+
{
|
2852
|
+
"name": "severity",
|
2853
|
+
"type": {
|
2854
|
+
"text": "FormFieldBaseProps['severity'] | undefined"
|
2855
|
+
},
|
2856
|
+
"description": "If defined, displays provided severity state",
|
2857
|
+
"fieldName": "severity"
|
2858
|
+
},
|
2859
|
+
{
|
2860
|
+
"name": "show-valid",
|
2861
|
+
"type": {
|
2862
|
+
"text": "boolean | undefined"
|
2863
|
+
},
|
2864
|
+
"description": "If true, displays valid state after interaction",
|
2865
|
+
"fieldName": "showValid"
|
2866
|
+
},
|
2867
|
+
{
|
2868
|
+
"name": "size",
|
2869
|
+
"type": {
|
2870
|
+
"text": "'sm' | 'md'"
|
2871
|
+
},
|
2872
|
+
"default": "'md'",
|
2873
|
+
"description": "Size of the Select",
|
2874
|
+
"fieldName": "size"
|
2875
|
+
}
|
2876
|
+
],
|
2877
|
+
"superclass": {
|
2878
|
+
"name": "FormBase",
|
2879
|
+
"package": "@internal/components/formBase.js"
|
2880
|
+
},
|
2881
|
+
"tagName": "skf-select",
|
2882
|
+
"customElement": true
|
2883
|
+
}
|
2884
|
+
],
|
2885
|
+
"exports": [
|
2886
|
+
{
|
2887
|
+
"kind": "js",
|
2888
|
+
"name": "SkfSelect",
|
2889
|
+
"declaration": {
|
2890
|
+
"name": "SkfSelect",
|
2891
|
+
"module": "src/components/select/select.component.ts"
|
2892
|
+
}
|
2893
|
+
}
|
2894
|
+
]
|
2895
|
+
},
|
2896
|
+
{
|
2897
|
+
"kind": "javascript-module",
|
2898
|
+
"path": "src/components/select-option/select-option.component.ts",
|
2899
|
+
"declarations": [
|
2900
|
+
{
|
2901
|
+
"kind": "class",
|
2902
|
+
"description": "The `<skf-select-option>` is a component is used nested in a skf-select or skf-select-option-group.",
|
2903
|
+
"name": "SkfSelectOption",
|
2904
|
+
"slots": [
|
2905
|
+
{
|
2906
|
+
"description": "The option's text content",
|
2907
|
+
"name": ""
|
2908
|
+
},
|
2909
|
+
{
|
2910
|
+
"description": "The option's slot for icon or custom meta information (svg).",
|
2911
|
+
"name": "icon"
|
2912
|
+
}
|
2913
|
+
],
|
2914
|
+
"members": [
|
2915
|
+
{
|
2916
|
+
"kind": "field",
|
2917
|
+
"name": "shadowRootOptions",
|
2918
|
+
"type": {
|
2919
|
+
"text": "object"
|
2920
|
+
},
|
2921
|
+
"static": true,
|
2922
|
+
"default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
|
2923
|
+
},
|
2924
|
+
{
|
2925
|
+
"kind": "field",
|
2926
|
+
"name": "disabled",
|
2927
|
+
"type": {
|
2928
|
+
"text": "boolean | undefined"
|
2929
|
+
},
|
2930
|
+
"description": "If true, prevents interaction with the option",
|
2931
|
+
"attribute": "disabled",
|
2294
2932
|
"reflects": true
|
2295
2933
|
},
|
2296
2934
|
{
|
2297
2935
|
"kind": "field",
|
2298
|
-
"name": "
|
2936
|
+
"name": "icon",
|
2299
2937
|
"type": {
|
2300
|
-
"text": "
|
2938
|
+
"text": "SkfIcon['name'] | undefined"
|
2301
2939
|
},
|
2302
|
-
"description": "If
|
2303
|
-
"attribute": "
|
2940
|
+
"description": "If defined, set an icon",
|
2941
|
+
"attribute": "icon",
|
2942
|
+
"reflects": true
|
2304
2943
|
},
|
2305
2944
|
{
|
2306
2945
|
"kind": "field",
|
2307
|
-
"name": "
|
2946
|
+
"name": "iconColor",
|
2308
2947
|
"type": {
|
2309
|
-
"text": "
|
2948
|
+
"text": "IconColor | undefined"
|
2310
2949
|
},
|
2311
|
-
"
|
2312
|
-
"
|
2313
|
-
"attribute": "hide-label",
|
2950
|
+
"description": "If defined, sets provided color on the icon",
|
2951
|
+
"attribute": "icon-color",
|
2314
2952
|
"reflects": true
|
2315
2953
|
},
|
2316
2954
|
{
|
2317
2955
|
"kind": "field",
|
2318
|
-
"name": "
|
2956
|
+
"name": "selected",
|
2319
2957
|
"type": {
|
2320
|
-
"text": "
|
2958
|
+
"text": "boolean | undefined"
|
2321
2959
|
},
|
2322
|
-
"description": "
|
2323
|
-
"attribute": "
|
2960
|
+
"description": "If true, sets the option as selected",
|
2961
|
+
"attribute": "selected",
|
2962
|
+
"reflects": true
|
2324
2963
|
},
|
2325
2964
|
{
|
2326
2965
|
"kind": "field",
|
2327
|
-
"name": "
|
2966
|
+
"name": "shortLabel",
|
2328
2967
|
"type": {
|
2329
2968
|
"text": "string | undefined"
|
2330
2969
|
},
|
2331
|
-
"description": "If
|
2332
|
-
"attribute": "
|
2970
|
+
"description": "If defined, sets a short label",
|
2971
|
+
"attribute": "short-label",
|
2972
|
+
"reflects": true
|
2333
2973
|
},
|
2334
2974
|
{
|
2335
2975
|
"kind": "field",
|
2336
|
-
"name": "
|
2337
|
-
"
|
2338
|
-
"text": "string | undefined"
|
2339
|
-
},
|
2340
|
-
"description": "If provided, renders an alternative A11y text for the asterisk",
|
2341
|
-
"attribute": "required-label"
|
2976
|
+
"name": "text",
|
2977
|
+
"description": "The option's label text (equivalent to the tags textContent)"
|
2342
2978
|
},
|
2343
2979
|
{
|
2344
2980
|
"kind": "field",
|
2345
|
-
"name": "
|
2346
|
-
"
|
2347
|
-
|
2348
|
-
},
|
2349
|
-
"default": "'md'",
|
2350
|
-
"description": "If provided, displays an alternative size",
|
2351
|
-
"attribute": "size",
|
2981
|
+
"name": "value",
|
2982
|
+
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
2983
|
+
"attribute": "value",
|
2352
2984
|
"reflects": true
|
2353
2985
|
},
|
2354
2986
|
{
|
2355
2987
|
"kind": "field",
|
2356
|
-
"name": "
|
2988
|
+
"name": "role",
|
2357
2989
|
"type": {
|
2358
|
-
"text": "
|
2990
|
+
"text": "string"
|
2359
2991
|
},
|
2360
|
-
"
|
2361
|
-
"attribute": "severity",
|
2362
|
-
"reflects": true
|
2992
|
+
"default": "'option'"
|
2363
2993
|
},
|
2364
2994
|
{
|
2365
2995
|
"kind": "field",
|
2366
|
-
"name": "
|
2367
|
-
"type": {
|
2368
|
-
"text": "boolean | undefined"
|
2369
|
-
},
|
2370
|
-
"description": "If provided, displays valid state after interaction",
|
2371
|
-
"attribute": "show-valid"
|
2996
|
+
"name": "_parent"
|
2372
2997
|
},
|
2373
2998
|
{
|
2374
2999
|
"kind": "field",
|
2375
|
-
"name": "
|
3000
|
+
"name": "_shortcutUpdate",
|
2376
3001
|
"type": {
|
2377
|
-
"text": "
|
3002
|
+
"text": "boolean"
|
2378
3003
|
},
|
2379
|
-
"default": "
|
2380
|
-
"description": "The current value of the input field",
|
2381
|
-
"attribute": "value"
|
2382
|
-
},
|
2383
|
-
{
|
2384
|
-
"kind": "method",
|
2385
|
-
"name": "debugOutput"
|
3004
|
+
"default": "false"
|
2386
3005
|
}
|
2387
3006
|
],
|
2388
3007
|
"events": [
|
2389
3008
|
{
|
2390
|
-
"description": "{
|
2391
|
-
"name": "
|
3009
|
+
"description": "{detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.",
|
3010
|
+
"name": "skf-select-option:select"
|
2392
3011
|
}
|
2393
3012
|
],
|
2394
3013
|
"attributes": [
|
2395
3014
|
{
|
2396
|
-
"
|
2397
|
-
"text": "boolean"
|
2398
|
-
},
|
2399
|
-
"description": "If true, sets disabled state",
|
2400
|
-
"name": "disabled"
|
2401
|
-
},
|
2402
|
-
{
|
2403
|
-
"type": {
|
2404
|
-
"text": "boolean"
|
2405
|
-
},
|
2406
|
-
"description": "If true, value is required or must be checked for the form to be submittable",
|
2407
|
-
"name": "required"
|
2408
|
-
},
|
2409
|
-
{
|
2410
|
-
"name": "debug",
|
2411
|
-
"type": {
|
2412
|
-
"text": "boolean"
|
2413
|
-
},
|
2414
|
-
"default": "false",
|
2415
|
-
"description": "If provided, outputs helping hints in console",
|
2416
|
-
"fieldName": "debug"
|
2417
|
-
},
|
2418
|
-
{
|
2419
|
-
"name": "checked",
|
2420
|
-
"type": {
|
2421
|
-
"text": "boolean | undefined"
|
2422
|
-
},
|
2423
|
-
"description": "If true, outputs helping hints in console",
|
2424
|
-
"fieldName": "checked"
|
2425
|
-
},
|
2426
|
-
{
|
2427
|
-
"name": "custom-invalid",
|
3015
|
+
"name": "disabled",
|
2428
3016
|
"type": {
|
2429
3017
|
"text": "boolean | undefined"
|
2430
3018
|
},
|
2431
|
-
"description": "If true,
|
2432
|
-
"fieldName": "
|
3019
|
+
"description": "If true, prevents interaction with the option",
|
3020
|
+
"fieldName": "disabled"
|
2433
3021
|
},
|
2434
3022
|
{
|
2435
|
-
"name": "
|
3023
|
+
"name": "icon",
|
2436
3024
|
"type": {
|
2437
|
-
"text": "
|
3025
|
+
"text": "SkfIcon['name'] | undefined"
|
2438
3026
|
},
|
2439
|
-
"
|
2440
|
-
"
|
2441
|
-
"fieldName": "hideLabel"
|
3027
|
+
"description": "If defined, set an icon",
|
3028
|
+
"fieldName": "icon"
|
2442
3029
|
},
|
2443
3030
|
{
|
2444
|
-
"name": "
|
3031
|
+
"name": "icon-color",
|
2445
3032
|
"type": {
|
2446
|
-
"text": "
|
3033
|
+
"text": "IconColor | undefined"
|
2447
3034
|
},
|
2448
|
-
"description": "
|
2449
|
-
"fieldName": "
|
3035
|
+
"description": "If defined, sets provided color on the icon",
|
3036
|
+
"fieldName": "iconColor"
|
2450
3037
|
},
|
2451
3038
|
{
|
2452
|
-
"name": "
|
3039
|
+
"name": "selected",
|
2453
3040
|
"type": {
|
2454
|
-
"text": "
|
3041
|
+
"text": "boolean | undefined"
|
2455
3042
|
},
|
2456
|
-
"description": "If
|
2457
|
-
"fieldName": "
|
3043
|
+
"description": "If true, sets the option as selected",
|
3044
|
+
"fieldName": "selected"
|
2458
3045
|
},
|
2459
3046
|
{
|
2460
|
-
"name": "
|
3047
|
+
"name": "short-label",
|
2461
3048
|
"type": {
|
2462
3049
|
"text": "string | undefined"
|
2463
3050
|
},
|
2464
|
-
"description": "If
|
2465
|
-
"fieldName": "
|
3051
|
+
"description": "If defined, sets a short label",
|
3052
|
+
"fieldName": "shortLabel"
|
2466
3053
|
},
|
2467
3054
|
{
|
2468
|
-
"name": "
|
2469
|
-
"
|
2470
|
-
|
2471
|
-
|
2472
|
-
|
2473
|
-
|
2474
|
-
|
2475
|
-
|
3055
|
+
"name": "value",
|
3056
|
+
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
3057
|
+
"fieldName": "value"
|
3058
|
+
}
|
3059
|
+
],
|
3060
|
+
"superclass": {
|
3061
|
+
"name": "SkfElement",
|
3062
|
+
"package": "@internal/components/skf-element.js"
|
3063
|
+
},
|
3064
|
+
"tagName": "skf-select-option",
|
3065
|
+
"customElement": true
|
3066
|
+
}
|
3067
|
+
],
|
3068
|
+
"exports": [
|
3069
|
+
{
|
3070
|
+
"kind": "js",
|
3071
|
+
"name": "SkfSelectOption",
|
3072
|
+
"declaration": {
|
3073
|
+
"name": "SkfSelectOption",
|
3074
|
+
"module": "src/components/select-option/select-option.component.ts"
|
3075
|
+
}
|
3076
|
+
}
|
3077
|
+
]
|
3078
|
+
},
|
3079
|
+
{
|
3080
|
+
"kind": "javascript-module",
|
3081
|
+
"path": "src/components/select-option-group/select-option-group.component.ts",
|
3082
|
+
"declarations": [
|
3083
|
+
{
|
3084
|
+
"kind": "class",
|
3085
|
+
"description": "The `<skf-select-option-group>` is a component that groups select-options",
|
3086
|
+
"name": "SkfSelectOptionGroup",
|
3087
|
+
"slots": [
|
2476
3088
|
{
|
2477
|
-
"
|
2478
|
-
"
|
2479
|
-
|
2480
|
-
|
2481
|
-
|
2482
|
-
"fieldName": "severity"
|
2483
|
-
},
|
3089
|
+
"description": "The component's placeholder content",
|
3090
|
+
"name": ""
|
3091
|
+
}
|
3092
|
+
],
|
3093
|
+
"members": [
|
2484
3094
|
{
|
2485
|
-
"
|
3095
|
+
"kind": "field",
|
3096
|
+
"name": "label",
|
2486
3097
|
"type": {
|
2487
|
-
"text": "
|
3098
|
+
"text": "string"
|
2488
3099
|
},
|
2489
|
-
"
|
2490
|
-
"
|
2491
|
-
|
3100
|
+
"default": "'Default label'",
|
3101
|
+
"attribute": "label",
|
3102
|
+
"reflects": true
|
3103
|
+
}
|
3104
|
+
],
|
3105
|
+
"attributes": [
|
2492
3106
|
{
|
2493
|
-
"name": "
|
3107
|
+
"name": "label",
|
2494
3108
|
"type": {
|
2495
3109
|
"text": "string"
|
2496
3110
|
},
|
2497
|
-
"default": "''",
|
2498
|
-
"
|
2499
|
-
"fieldName": "value"
|
3111
|
+
"default": "'Default label'",
|
3112
|
+
"fieldName": "label"
|
2500
3113
|
}
|
2501
3114
|
],
|
2502
3115
|
"superclass": {
|
2503
|
-
"name": "
|
2504
|
-
"package": "@internal/components/
|
3116
|
+
"name": "SkfElement",
|
3117
|
+
"package": "@internal/components/skf-element"
|
2505
3118
|
},
|
2506
|
-
"tagName": "skf-
|
3119
|
+
"tagName": "skf-select-option-group",
|
2507
3120
|
"customElement": true
|
2508
3121
|
}
|
2509
3122
|
],
|
2510
3123
|
"exports": [
|
2511
3124
|
{
|
2512
3125
|
"kind": "js",
|
2513
|
-
"name": "
|
3126
|
+
"name": "SkfSelectOptionGroup",
|
2514
3127
|
"declaration": {
|
2515
|
-
"name": "
|
2516
|
-
"module": "src/components/
|
3128
|
+
"name": "SkfSelectOptionGroup",
|
3129
|
+
"module": "src/components/select-option-group/select-option-group.component.ts"
|
2517
3130
|
}
|
2518
3131
|
}
|
2519
3132
|
]
|
@@ -2528,11 +3141,20 @@
|
|
2528
3141
|
"name": "SkfSwitch",
|
2529
3142
|
"slots": [
|
2530
3143
|
{
|
2531
|
-
"description": "The
|
3144
|
+
"description": "The Switchs label. Alternatively, you can use the `label` attribute.",
|
2532
3145
|
"name": ""
|
2533
3146
|
}
|
2534
3147
|
],
|
2535
3148
|
"members": [
|
3149
|
+
{
|
3150
|
+
"kind": "field",
|
3151
|
+
"name": "_initialChecked",
|
3152
|
+
"type": {
|
3153
|
+
"text": "boolean | undefined"
|
3154
|
+
},
|
3155
|
+
"privacy": "private",
|
3156
|
+
"default": "false"
|
3157
|
+
},
|
2536
3158
|
{
|
2537
3159
|
"kind": "field",
|
2538
3160
|
"name": "debug",
|
@@ -2568,7 +3190,7 @@
|
|
2568
3190
|
"type": {
|
2569
3191
|
"text": "string | undefined"
|
2570
3192
|
},
|
2571
|
-
"description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
|
3193
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
2572
3194
|
"attribute": "label"
|
2573
3195
|
},
|
2574
3196
|
{
|
@@ -2659,7 +3281,7 @@
|
|
2659
3281
|
"type": {
|
2660
3282
|
"text": "string | undefined"
|
2661
3283
|
},
|
2662
|
-
"description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
|
3284
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
2663
3285
|
"fieldName": "label"
|
2664
3286
|
},
|
2665
3287
|
{
|
@@ -2731,6 +3353,22 @@
|
|
2731
3353
|
}
|
2732
3354
|
],
|
2733
3355
|
"members": [
|
3356
|
+
{
|
3357
|
+
"kind": "field",
|
3358
|
+
"name": "_onClick",
|
3359
|
+
"type": {
|
3360
|
+
"text": "(event: Event) => void | undefined"
|
3361
|
+
},
|
3362
|
+
"privacy": "private"
|
3363
|
+
},
|
3364
|
+
{
|
3365
|
+
"kind": "field",
|
3366
|
+
"name": "_onRemove",
|
3367
|
+
"type": {
|
3368
|
+
"text": "(event: Event) => void | undefined"
|
3369
|
+
},
|
3370
|
+
"privacy": "protected"
|
3371
|
+
},
|
2734
3372
|
{
|
2735
3373
|
"kind": "field",
|
2736
3374
|
"name": "size",
|
@@ -2738,7 +3376,7 @@
|
|
2738
3376
|
"text": "'sm' | 'md' | 'lg'"
|
2739
3377
|
},
|
2740
3378
|
"default": "'md'",
|
2741
|
-
"description": "Specifies Tag size
|
3379
|
+
"description": "Specifies Tag size",
|
2742
3380
|
"attribute": "size",
|
2743
3381
|
"reflects": true
|
2744
3382
|
},
|
@@ -2748,7 +3386,7 @@
|
|
2748
3386
|
"type": {
|
2749
3387
|
"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\""
|
2750
3388
|
},
|
2751
|
-
"description": "If defined, displays leading/provided icon
|
3389
|
+
"description": "If defined, displays leading/provided icon",
|
2752
3390
|
"attribute": "icon"
|
2753
3391
|
},
|
2754
3392
|
{
|
@@ -2757,10 +3395,20 @@
|
|
2757
3395
|
"type": {
|
2758
3396
|
"text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
|
2759
3397
|
},
|
2760
|
-
"description": "If defined, gives the supplied appearance
|
3398
|
+
"description": "If defined, gives the supplied appearance",
|
2761
3399
|
"attribute": "color",
|
2762
3400
|
"reflects": true
|
2763
3401
|
},
|
3402
|
+
{
|
3403
|
+
"kind": "field",
|
3404
|
+
"name": "onClick",
|
3405
|
+
"description": "If defined, accepts a function that runs on click"
|
3406
|
+
},
|
3407
|
+
{
|
3408
|
+
"kind": "field",
|
3409
|
+
"name": "onRemove",
|
3410
|
+
"description": "If defined, accepts a function that runs on click. Self removal can be overridden by using `event.stopPropagation()`."
|
3411
|
+
},
|
2764
3412
|
{
|
2765
3413
|
"kind": "field",
|
2766
3414
|
"name": "removable",
|
@@ -2768,7 +3416,24 @@
|
|
2768
3416
|
"text": "boolean | undefined"
|
2769
3417
|
},
|
2770
3418
|
"description": "If true, adds trailing button to remove tag",
|
2771
|
-
"attribute": "removable"
|
3419
|
+
"attribute": "removable",
|
3420
|
+
"reflects": true
|
3421
|
+
},
|
3422
|
+
{
|
3423
|
+
"kind": "field",
|
3424
|
+
"name": "_handleKeyDown",
|
3425
|
+
"privacy": "protected"
|
3426
|
+
},
|
3427
|
+
{
|
3428
|
+
"kind": "field",
|
3429
|
+
"name": "_handleRemove",
|
3430
|
+
"privacy": "protected",
|
3431
|
+
"description": "run externally provided callback (if any) first. Let click propagate to handleClick."
|
3432
|
+
},
|
3433
|
+
{
|
3434
|
+
"kind": "field",
|
3435
|
+
"name": "_handleClick",
|
3436
|
+
"privacy": "protected"
|
2772
3437
|
}
|
2773
3438
|
],
|
2774
3439
|
"attributes": [
|
@@ -2778,7 +3443,7 @@
|
|
2778
3443
|
"text": "'sm' | 'md' | 'lg'"
|
2779
3444
|
},
|
2780
3445
|
"default": "'md'",
|
2781
|
-
"description": "Specifies Tag size
|
3446
|
+
"description": "Specifies Tag size",
|
2782
3447
|
"fieldName": "size"
|
2783
3448
|
},
|
2784
3449
|
{
|
@@ -2786,7 +3451,7 @@
|
|
2786
3451
|
"type": {
|
2787
3452
|
"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\""
|
2788
3453
|
},
|
2789
|
-
"description": "If defined, displays leading/provided icon
|
3454
|
+
"description": "If defined, displays leading/provided icon",
|
2790
3455
|
"fieldName": "icon"
|
2791
3456
|
},
|
2792
3457
|
{
|
@@ -2794,7 +3459,7 @@
|
|
2794
3459
|
"type": {
|
2795
3460
|
"text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
|
2796
3461
|
},
|
2797
|
-
"description": "If defined, gives the supplied appearance
|
3462
|
+
"description": "If defined, gives the supplied appearance",
|
2798
3463
|
"fieldName": "color"
|
2799
3464
|
},
|
2800
3465
|
{
|
@@ -2835,8 +3500,8 @@
|
|
2835
3500
|
"name": "SkfTextArea",
|
2836
3501
|
"slots": [
|
2837
3502
|
{
|
2838
|
-
"description": "textareas label. Alternatively, you can use the `label` attribute.",
|
2839
|
-
"name": "
|
3503
|
+
"description": "The textareas label. Alternatively, you can use the `label` attribute.",
|
3504
|
+
"name": ""
|
2840
3505
|
}
|
2841
3506
|
],
|
2842
3507
|
"members": [
|
@@ -2852,16 +3517,15 @@
|
|
2852
3517
|
"kind": "field",
|
2853
3518
|
"name": "cols",
|
2854
3519
|
"type": {
|
2855
|
-
"text": "number"
|
3520
|
+
"text": "number | undefined"
|
2856
3521
|
},
|
2857
|
-
"
|
2858
|
-
"description": "If provided, sets the cols of the textarea",
|
3522
|
+
"description": "If defined, sets the cols of the textarea",
|
2859
3523
|
"attribute": "cols"
|
2860
3524
|
},
|
2861
3525
|
{
|
2862
3526
|
"kind": "field",
|
2863
3527
|
"name": "customInvalid",
|
2864
|
-
"description": "If
|
3528
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
2865
3529
|
"attribute": "custom-invalid",
|
2866
3530
|
"reflects": true
|
2867
3531
|
},
|
@@ -2869,20 +3533,18 @@
|
|
2869
3533
|
"kind": "field",
|
2870
3534
|
"name": "debug",
|
2871
3535
|
"type": {
|
2872
|
-
"text": "boolean"
|
3536
|
+
"text": "boolean | undefined"
|
2873
3537
|
},
|
2874
|
-
"
|
2875
|
-
"description": "If provided, outputs helping hints in console",
|
3538
|
+
"description": "If true, outputs helping hints in console",
|
2876
3539
|
"attribute": "debug"
|
2877
3540
|
},
|
2878
3541
|
{
|
2879
3542
|
"kind": "field",
|
2880
3543
|
"name": "hideLabel",
|
2881
3544
|
"type": {
|
2882
|
-
"text": "boolean"
|
3545
|
+
"text": "boolean | undefined"
|
2883
3546
|
},
|
2884
|
-
"
|
2885
|
-
"description": "hide-label - If true, hides the label visually",
|
3547
|
+
"description": "If true, hides the label visually",
|
2886
3548
|
"attribute": "hide-label"
|
2887
3549
|
},
|
2888
3550
|
{
|
@@ -2891,17 +3553,16 @@
|
|
2891
3553
|
"type": {
|
2892
3554
|
"text": "string | undefined"
|
2893
3555
|
},
|
2894
|
-
"description": "If
|
3556
|
+
"description": "If defined, displays informational text below the field",
|
2895
3557
|
"attribute": "hint"
|
2896
3558
|
},
|
2897
3559
|
{
|
2898
3560
|
"kind": "field",
|
2899
3561
|
"name": "label",
|
2900
3562
|
"type": {
|
2901
|
-
"text": "string"
|
3563
|
+
"text": "string | undefined"
|
2902
3564
|
},
|
2903
|
-
"
|
2904
|
-
"description": "The input's label. Alternatively, you can use the component slot.",
|
3565
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
2905
3566
|
"attribute": "label"
|
2906
3567
|
},
|
2907
3568
|
{
|
@@ -2910,7 +3571,7 @@
|
|
2910
3571
|
"type": {
|
2911
3572
|
"text": "string | undefined"
|
2912
3573
|
},
|
2913
|
-
"description": "If
|
3574
|
+
"description": "If defined, adds name to the input-element",
|
2914
3575
|
"attribute": "name"
|
2915
3576
|
},
|
2916
3577
|
{
|
@@ -2919,7 +3580,7 @@
|
|
2919
3580
|
"type": {
|
2920
3581
|
"text": "number | undefined"
|
2921
3582
|
},
|
2922
|
-
"description": "If
|
3583
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
2923
3584
|
"attribute": "maxlength"
|
2924
3585
|
},
|
2925
3586
|
{
|
@@ -2928,7 +3589,7 @@
|
|
2928
3589
|
"type": {
|
2929
3590
|
"text": "number | undefined"
|
2930
3591
|
},
|
2931
|
-
"description": "If
|
3592
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
2932
3593
|
"attribute": "minlength"
|
2933
3594
|
},
|
2934
3595
|
{
|
@@ -2937,7 +3598,7 @@
|
|
2937
3598
|
"type": {
|
2938
3599
|
"text": "string | undefined"
|
2939
3600
|
},
|
2940
|
-
"description": "If
|
3601
|
+
"description": "If defined, displays placeholder text",
|
2941
3602
|
"attribute": "placeholder"
|
2942
3603
|
},
|
2943
3604
|
{
|
@@ -2955,26 +3616,25 @@
|
|
2955
3616
|
"type": {
|
2956
3617
|
"text": "string | undefined"
|
2957
3618
|
},
|
2958
|
-
"description": "If
|
3619
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
2959
3620
|
"attribute": "required-label"
|
2960
3621
|
},
|
2961
3622
|
{
|
2962
3623
|
"kind": "field",
|
2963
3624
|
"name": "rows",
|
2964
3625
|
"type": {
|
2965
|
-
"text": "number"
|
3626
|
+
"text": "number | undefined"
|
2966
3627
|
},
|
2967
|
-
"
|
2968
|
-
"description": "If provided, sets the rows of the textarea",
|
3628
|
+
"description": "If defined, sets the rows of the textarea",
|
2969
3629
|
"attribute": "rows"
|
2970
3630
|
},
|
2971
3631
|
{
|
2972
3632
|
"kind": "field",
|
2973
3633
|
"name": "severity",
|
2974
3634
|
"type": {
|
2975
|
-
"text": "\"success\" | \"
|
3635
|
+
"text": "\"success\" | \"info\" | \"warning\" | \"alert\""
|
2976
3636
|
},
|
2977
|
-
"description": "If
|
3637
|
+
"description": "If defined, displays provided severity state",
|
2978
3638
|
"attribute": "severity"
|
2979
3639
|
},
|
2980
3640
|
{
|
@@ -2993,7 +3653,7 @@
|
|
2993
3653
|
"text": "'sm' | 'md' | undefined"
|
2994
3654
|
},
|
2995
3655
|
"default": "'md'",
|
2996
|
-
"description": "
|
3656
|
+
"description": "Size of the Textarea",
|
2997
3657
|
"attribute": "size",
|
2998
3658
|
"reflects": true
|
2999
3659
|
},
|
@@ -3001,10 +3661,10 @@
|
|
3001
3661
|
"kind": "field",
|
3002
3662
|
"name": "validateOn",
|
3003
3663
|
"type": {
|
3004
|
-
"text": "'input' | 'change' | 'submit'
|
3664
|
+
"text": "'input' | 'change' | 'submit'"
|
3005
3665
|
},
|
3006
3666
|
"default": "'change'",
|
3007
|
-
"description": "
|
3667
|
+
"description": "Sets validation start",
|
3008
3668
|
"attribute": "validate-on"
|
3009
3669
|
},
|
3010
3670
|
{
|
@@ -3046,33 +3706,30 @@
|
|
3046
3706
|
{
|
3047
3707
|
"name": "cols",
|
3048
3708
|
"type": {
|
3049
|
-
"text": "number"
|
3709
|
+
"text": "number | undefined"
|
3050
3710
|
},
|
3051
|
-
"
|
3052
|
-
"description": "If provided, sets the cols of the textarea",
|
3711
|
+
"description": "If defined, sets the cols of the textarea",
|
3053
3712
|
"fieldName": "cols"
|
3054
3713
|
},
|
3055
3714
|
{
|
3056
3715
|
"name": "custom-invalid",
|
3057
|
-
"description": "If
|
3716
|
+
"description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
|
3058
3717
|
"fieldName": "customInvalid"
|
3059
3718
|
},
|
3060
3719
|
{
|
3061
3720
|
"name": "debug",
|
3062
3721
|
"type": {
|
3063
|
-
"text": "boolean"
|
3722
|
+
"text": "boolean | undefined"
|
3064
3723
|
},
|
3065
|
-
"
|
3066
|
-
"description": "If provided, outputs helping hints in console",
|
3724
|
+
"description": "If true, outputs helping hints in console",
|
3067
3725
|
"fieldName": "debug"
|
3068
3726
|
},
|
3069
3727
|
{
|
3070
3728
|
"name": "hide-label",
|
3071
3729
|
"type": {
|
3072
|
-
"text": "boolean"
|
3730
|
+
"text": "boolean | undefined"
|
3073
3731
|
},
|
3074
|
-
"
|
3075
|
-
"description": "hide-label - If true, hides the label visually",
|
3732
|
+
"description": "If true, hides the label visually",
|
3076
3733
|
"fieldName": "hideLabel"
|
3077
3734
|
},
|
3078
3735
|
{
|
@@ -3080,16 +3737,15 @@
|
|
3080
3737
|
"type": {
|
3081
3738
|
"text": "string | undefined"
|
3082
3739
|
},
|
3083
|
-
"description": "If
|
3740
|
+
"description": "If defined, displays informational text below the field",
|
3084
3741
|
"fieldName": "hint"
|
3085
3742
|
},
|
3086
3743
|
{
|
3087
3744
|
"name": "label",
|
3088
3745
|
"type": {
|
3089
|
-
"text": "string"
|
3746
|
+
"text": "string | undefined"
|
3090
3747
|
},
|
3091
|
-
"
|
3092
|
-
"description": "The input's label. Alternatively, you can use the component slot.",
|
3748
|
+
"description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
|
3093
3749
|
"fieldName": "label"
|
3094
3750
|
},
|
3095
3751
|
{
|
@@ -3097,7 +3753,7 @@
|
|
3097
3753
|
"type": {
|
3098
3754
|
"text": "string | undefined"
|
3099
3755
|
},
|
3100
|
-
"description": "If
|
3756
|
+
"description": "If defined, adds name to the input-element",
|
3101
3757
|
"fieldName": "name"
|
3102
3758
|
},
|
3103
3759
|
{
|
@@ -3105,7 +3761,7 @@
|
|
3105
3761
|
"type": {
|
3106
3762
|
"text": "number | undefined"
|
3107
3763
|
},
|
3108
|
-
"description": "If
|
3764
|
+
"description": "If defined, sets the maximum character length to accept for this input",
|
3109
3765
|
"fieldName": "maxLength"
|
3110
3766
|
},
|
3111
3767
|
{
|
@@ -3113,7 +3769,7 @@
|
|
3113
3769
|
"type": {
|
3114
3770
|
"text": "number | undefined"
|
3115
3771
|
},
|
3116
|
-
"description": "If
|
3772
|
+
"description": "If defined, sets the minimum character length to accept for this input",
|
3117
3773
|
"fieldName": "minLength"
|
3118
3774
|
},
|
3119
3775
|
{
|
@@ -3121,7 +3777,7 @@
|
|
3121
3777
|
"type": {
|
3122
3778
|
"text": "string | undefined"
|
3123
3779
|
},
|
3124
|
-
"description": "If
|
3780
|
+
"description": "If defined, displays placeholder text",
|
3125
3781
|
"fieldName": "placeholder"
|
3126
3782
|
},
|
3127
3783
|
{
|
@@ -3137,24 +3793,23 @@
|
|
3137
3793
|
"type": {
|
3138
3794
|
"text": "string | undefined"
|
3139
3795
|
},
|
3140
|
-
"description": "If
|
3796
|
+
"description": "If defined, renders an alternative A11y text for the asterisk",
|
3141
3797
|
"fieldName": "requiredLabel"
|
3142
3798
|
},
|
3143
3799
|
{
|
3144
3800
|
"name": "rows",
|
3145
3801
|
"type": {
|
3146
|
-
"text": "number"
|
3802
|
+
"text": "number | undefined"
|
3147
3803
|
},
|
3148
|
-
"
|
3149
|
-
"description": "If provided, sets the rows of the textarea",
|
3804
|
+
"description": "If defined, sets the rows of the textarea",
|
3150
3805
|
"fieldName": "rows"
|
3151
3806
|
},
|
3152
3807
|
{
|
3153
3808
|
"name": "severity",
|
3154
3809
|
"type": {
|
3155
|
-
"text": "\"success\" | \"
|
3810
|
+
"text": "\"success\" | \"info\" | \"warning\" | \"alert\""
|
3156
3811
|
},
|
3157
|
-
"description": "If
|
3812
|
+
"description": "If defined, displays provided severity state",
|
3158
3813
|
"fieldName": "severity"
|
3159
3814
|
},
|
3160
3815
|
{
|
@@ -3171,16 +3826,16 @@
|
|
3171
3826
|
"text": "'sm' | 'md' | undefined"
|
3172
3827
|
},
|
3173
3828
|
"default": "'md'",
|
3174
|
-
"description": "
|
3829
|
+
"description": "Size of the Textarea",
|
3175
3830
|
"fieldName": "size"
|
3176
3831
|
},
|
3177
3832
|
{
|
3178
3833
|
"name": "validate-on",
|
3179
3834
|
"type": {
|
3180
|
-
"text": "'input' | 'change' | 'submit'
|
3835
|
+
"text": "'input' | 'change' | 'submit'"
|
3181
3836
|
},
|
3182
3837
|
"default": "'change'",
|
3183
|
-
"description": "
|
3838
|
+
"description": "Sets validation start",
|
3184
3839
|
"fieldName": "validateOn"
|
3185
3840
|
},
|
3186
3841
|
{
|