@skf-design-system/ui-components 0.0.1-beta.4 → 1.0.0-alpha.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/dist/components/accordion/accordion.component.d.ts +9 -5
  2. package/dist/components/accordion/accordion.component.js +22 -19
  3. package/dist/components/accordion/accordion.d.ts +1 -1
  4. package/dist/components/accordion/accordion.styles.js +3 -3
  5. package/dist/components/alert/alert.component.d.ts +7 -4
  6. package/dist/components/alert/alert.component.js +1 -1
  7. package/dist/components/alert/alert.styles.js +1 -1
  8. package/dist/components/button/button.component.js +1 -1
  9. package/dist/components/button/button.styles.js +1 -1
  10. package/dist/components/card/card.component.d.ts +3 -3
  11. package/dist/components/card/card.component.js +16 -19
  12. package/dist/components/card/card.styles.js +11 -3
  13. package/dist/components/checkbox/checkbox.component.d.ts +16 -9
  14. package/dist/components/checkbox/checkbox.component.js +32 -31
  15. package/dist/components/checkbox/checkbox.styles.js +7 -2
  16. package/dist/components/checkbox/checkbox.test.d.ts +1 -0
  17. package/dist/components/collapse/collapse.component.d.ts +9 -6
  18. package/dist/components/collapse/collapse.component.js +39 -36
  19. package/dist/components/collapse/collapse.styles.js +3 -3
  20. package/dist/components/collapse/collapse.test.d.ts +1 -0
  21. package/dist/components/divider/divider.component.d.ts +13 -10
  22. package/dist/components/divider/divider.component.js +34 -29
  23. package/dist/components/divider/divider.styles.js +1 -5
  24. package/dist/components/heading/heading.component.d.ts +12 -2
  25. package/dist/components/heading/heading.component.js +14 -14
  26. package/dist/components/heading/heading.styles.js +1 -1
  27. package/dist/components/icon/icon.component.d.ts +14 -8
  28. package/dist/components/icon/icon.component.js +6 -6
  29. package/dist/components/icon/icon.styles.js +56 -54
  30. package/dist/components/input/input.component.d.ts +34 -29
  31. package/dist/components/input/input.component.js +43 -43
  32. package/dist/components/link/link.component.d.ts +15 -12
  33. package/dist/components/link/link.component.js +7 -7
  34. package/dist/components/link/link.styles.js +1 -1
  35. package/dist/components/loader/loader.component.d.ts +7 -7
  36. package/dist/components/loader/loader.component.js +35 -61
  37. package/dist/components/loader/loader.styles.js +42 -10
  38. package/dist/components/logo/logo.component.d.ts +5 -3
  39. package/dist/components/logo/logo.component.js +8 -8
  40. package/dist/components/logo/logo.styles.js +2 -2
  41. package/dist/components/radio/radio.component.d.ts +15 -13
  42. package/dist/components/radio/radio.component.js +3 -3
  43. package/dist/components/radio/radio.styles.js +6 -1
  44. package/dist/components/select/select.component.d.ts +137 -0
  45. package/dist/components/select/select.component.js +312 -0
  46. package/dist/components/select/select.controllers.d.ts +59 -0
  47. package/dist/components/select/select.controllers.js +169 -0
  48. package/dist/components/select/select.d.ts +8 -0
  49. package/dist/components/select/select.js +6 -0
  50. package/dist/components/select/select.styles.d.ts +1 -0
  51. package/dist/components/select/select.styles.js +131 -0
  52. package/dist/components/select-option/select-option.component.d.ts +77 -0
  53. package/dist/components/select-option/select-option.component.js +123 -0
  54. package/dist/components/select-option/select-option.controllers.d.ts +9 -0
  55. package/dist/components/select-option/select-option.d.ts +8 -0
  56. package/dist/components/select-option/select-option.js +6 -0
  57. package/dist/components/select-option/select-option.styles.d.ts +1 -0
  58. package/dist/components/select-option/select-option.styles.js +53 -0
  59. package/dist/components/select-option-group/select-option-group.component.d.ts +16 -0
  60. package/dist/components/select-option-group/select-option-group.component.js +31 -0
  61. package/dist/components/select-option-group/select-option-group.d.ts +8 -0
  62. package/dist/components/select-option-group/select-option-group.js +6 -0
  63. package/dist/components/select-option-group/select-option-group.style.d.ts +1 -0
  64. package/dist/components/select-option-group/select-option-group.style.js +18 -0
  65. package/dist/components/switch/switch.component.d.ts +2 -3
  66. package/dist/components/switch/switch.component.js +1 -1
  67. package/dist/components/switch/switch.styles.js +6 -1
  68. package/dist/components/switch/switch.test.d.ts +1 -0
  69. package/dist/components/tag/tag.component.d.ts +25 -4
  70. package/dist/components/tag/tag.component.js +66 -29
  71. package/dist/components/tag/tag.styles.js +6 -5
  72. package/dist/components/textarea/textarea.component.d.ts +26 -23
  73. package/dist/components/textarea/textarea.component.js +15 -12
  74. package/dist/custom-elements.json +969 -295
  75. package/dist/index.d.ts +3 -0
  76. package/dist/index.js +39 -30
  77. package/dist/internal/components/formBase.d.ts +18 -1
  78. package/dist/internal/components/formBase.js +25 -13
  79. package/dist/internal/components/hint/hint.component.js +12 -10
  80. package/dist/internal/components/hint/hint.styles.js +26 -10
  81. package/dist/internal/components/skf-element.d.ts +4 -4
  82. package/dist/internal/components/skf-element.js +15 -19
  83. package/dist/internal/helpers/array.d.ts +4 -0
  84. package/dist/internal/helpers/findMatchingTags.d.ts +2 -0
  85. package/dist/internal/helpers/findMatchingTags.js +12 -0
  86. package/dist/internal/helpers/hintSeverity.d.ts +2 -0
  87. package/dist/internal/helpers/hintSeverity.js +6 -0
  88. package/dist/internal/helpers/raiseError.d.ts +28 -0
  89. package/dist/internal/helpers/raiseError.js +29 -0
  90. package/dist/internal/storybook/shadowRootTraverser.d.ts +16 -6
  91. package/dist/react/index.d.ts +3 -0
  92. package/dist/react/index.js +3 -0
  93. package/dist/react/skf-select/index.d.ts +21 -0
  94. package/dist/react/skf-select/index.js +21 -0
  95. package/dist/react/skf-select-option/index.d.ts +9 -0
  96. package/dist/react/skf-select-option/index.js +17 -0
  97. package/dist/react/skf-select-option-group/index.d.ts +3 -0
  98. package/dist/react/skf-select-option-group/index.js +13 -0
  99. package/dist/styles/form-field.styles.js +11 -7
  100. package/dist/types/jsx/custom-element-jsx.d.ts +292 -140
  101. package/dist/types/vue/index.d.ts +225 -90
  102. package/dist/vscode.html-custom-data.json +299 -97
  103. package/dist/web-types.json +624 -242
  104. 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 [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6256cb1b44eba592d319d92e) for design principles.",
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": "Exclude<HeadingType, 'h1'>"
34
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
35
35
  },
36
36
  "default": "'h2'",
37
- "description": "Controls which heading element will be rendered",
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 provided, adds a gap between each item",
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": "Exclude<HeadingType, 'h1'>"
105
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
106
106
  },
107
107
  "default": "'h2'",
108
- "description": "Controls which heading element will be rendered",
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 provided, adds a gap between each item",
116
+ "description": "If true, adds a gap between each item",
117
117
  "fieldName": "gap"
118
118
  },
119
119
  {
@@ -174,7 +174,7 @@
174
174
  "name": ""
175
175
  },
176
176
  {
177
- "description": "lodjvodjvodjo",
177
+ "description": "Slot for the link",
178
178
  "name": "link"
179
179
  }
180
180
  ],
@@ -185,7 +185,7 @@
185
185
  "type": {
186
186
  "text": "boolean | undefined"
187
187
  },
188
- "description": "If true, alert is being used as a toast with an close button",
188
+ "description": "If true, alert is being used as a toast (alertdialog) with an close button",
189
189
  "attribute": "closeable"
190
190
  },
191
191
  {
@@ -211,7 +211,7 @@
211
211
  "kind": "field",
212
212
  "name": "severity",
213
213
  "type": {
214
- "text": "SeverityFgColor | undefined"
214
+ "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
215
215
  },
216
216
  "description": "If defined, gives the supplied appearance",
217
217
  "attribute": "severity"
@@ -229,7 +229,7 @@
229
229
  "type": {
230
230
  "text": "boolean | undefined"
231
231
  },
232
- "description": "If true, alert is being used as a toast with an close button",
232
+ "description": "If true, alert is being used as a toast (alertdialog) with an close button",
233
233
  "fieldName": "closeable"
234
234
  },
235
235
  {
@@ -252,7 +252,7 @@
252
252
  {
253
253
  "name": "severity",
254
254
  "type": {
255
- "text": "SeverityFgColor | undefined"
255
+ "text": "\"error\" | \"info\" | \"warning\" | \"success\" | \"alert\""
256
256
  },
257
257
  "description": "If defined, gives the supplied appearance",
258
258
  "fieldName": "severity"
@@ -495,9 +495,8 @@
495
495
  "kind": "field",
496
496
  "name": "noBorder",
497
497
  "type": {
498
- "text": "boolean"
498
+ "text": "boolean | undefined"
499
499
  },
500
- "default": "false",
501
500
  "description": "If true, removes border",
502
501
  "attribute": "no-border"
503
502
  },
@@ -505,9 +504,8 @@
505
504
  "kind": "field",
506
505
  "name": "noPadding",
507
506
  "type": {
508
- "text": "boolean"
507
+ "text": "boolean | undefined"
509
508
  },
510
- "default": "false",
511
509
  "description": "If true, removes padding",
512
510
  "attribute": "no-padding"
513
511
  },
@@ -515,38 +513,35 @@
515
513
  "kind": "field",
516
514
  "name": "stretch",
517
515
  "type": {
518
- "text": "boolean"
516
+ "text": "boolean | undefined"
519
517
  },
520
- "default": "false",
521
518
  "description": "If true, the Card fills the parent element height",
522
- "attribute": "stretch"
519
+ "attribute": "stretch",
520
+ "reflects": true
523
521
  }
524
522
  ],
525
523
  "attributes": [
526
524
  {
527
525
  "name": "no-border",
528
526
  "type": {
529
- "text": "boolean"
527
+ "text": "boolean | undefined"
530
528
  },
531
- "default": "false",
532
529
  "description": "If true, removes border",
533
530
  "fieldName": "noBorder"
534
531
  },
535
532
  {
536
533
  "name": "no-padding",
537
534
  "type": {
538
- "text": "boolean"
535
+ "text": "boolean | undefined"
539
536
  },
540
- "default": "false",
541
537
  "description": "If true, removes padding",
542
538
  "fieldName": "noPadding"
543
539
  },
544
540
  {
545
541
  "name": "stretch",
546
542
  "type": {
547
- "text": "boolean"
543
+ "text": "boolean | undefined"
548
544
  },
549
- "default": "false",
550
545
  "description": "If true, the Card fills the parent element height",
551
546
  "fieldName": "stretch"
552
547
  }
@@ -580,8 +575,8 @@
580
575
  "name": "SkfCheckbox",
581
576
  "slots": [
582
577
  {
583
- "description": "Alternatively, you can use the `label` attribute",
584
- "name": "Default"
578
+ "description": "The Radios label. Alternatively, you can use the `label` attribute.",
579
+ "name": ""
585
580
  }
586
581
  ],
587
582
  "members": [
@@ -611,7 +606,8 @@
611
606
  "text": "boolean | undefined"
612
607
  },
613
608
  "description": "If true, forces component to invalid state until removed",
614
- "attribute": "custom-invalid"
609
+ "attribute": "custom-invalid",
610
+ "reflects": true
615
611
  },
616
612
  {
617
613
  "kind": "field",
@@ -633,6 +629,16 @@
633
629
  "attribute": "indeterminate",
634
630
  "reflects": true
635
631
  },
632
+ {
633
+ "kind": "field",
634
+ "name": "invalid",
635
+ "type": {
636
+ "text": "boolean | undefined"
637
+ },
638
+ "description": "Read only indicator of the local state. Use custom-invalid to set it to invalid state.",
639
+ "attribute": "invalid",
640
+ "reflects": true
641
+ },
636
642
  {
637
643
  "kind": "field",
638
644
  "name": "label",
@@ -660,22 +666,11 @@
660
666
  "description": "If defined, renders an alternative A11y text for the asterisk",
661
667
  "attribute": "required-label"
662
668
  },
663
- {
664
- "kind": "field",
665
- "name": "size",
666
- "type": {
667
- "text": "'sm' | 'md'"
668
- },
669
- "default": "'md'",
670
- "description": "Size of the checkbox",
671
- "attribute": "size",
672
- "reflects": true
673
- },
674
669
  {
675
670
  "kind": "field",
676
671
  "name": "severity",
677
672
  "type": {
678
- "text": "FormFieldBaseProps['severity'] | undefined"
673
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
679
674
  },
680
675
  "description": "If defined, styles checkbox using provided severity",
681
676
  "attribute": "severity",
@@ -687,9 +682,20 @@
687
682
  "type": {
688
683
  "text": "boolean | undefined"
689
684
  },
690
- "description": "If defined, displays valid state after interaction",
685
+ "description": "If true, displays valid state after interaction",
691
686
  "attribute": "show-valid"
692
687
  },
688
+ {
689
+ "kind": "field",
690
+ "name": "size",
691
+ "type": {
692
+ "text": "'sm' | 'md'"
693
+ },
694
+ "default": "'md'",
695
+ "description": "Size of the checkbox",
696
+ "attribute": "size",
697
+ "reflects": true
698
+ },
693
699
  {
694
700
  "kind": "field",
695
701
  "name": "value",
@@ -766,6 +772,14 @@
766
772
  "description": "If true and the checkbox is unchecked, the checkbox will appear indeterminate",
767
773
  "fieldName": "indeterminate"
768
774
  },
775
+ {
776
+ "name": "invalid",
777
+ "type": {
778
+ "text": "boolean | undefined"
779
+ },
780
+ "description": "Read only indicator of the local state. Use custom-invalid to set it to invalid state.",
781
+ "fieldName": "invalid"
782
+ },
769
783
  {
770
784
  "name": "label",
771
785
  "type": {
@@ -790,19 +804,10 @@
790
804
  "description": "If defined, renders an alternative A11y text for the asterisk",
791
805
  "fieldName": "requiredLabel"
792
806
  },
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
807
  {
803
808
  "name": "severity",
804
809
  "type": {
805
- "text": "FormFieldBaseProps['severity'] | undefined"
810
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
806
811
  },
807
812
  "description": "If defined, styles checkbox using provided severity",
808
813
  "fieldName": "severity"
@@ -812,9 +817,18 @@
812
817
  "type": {
813
818
  "text": "boolean | undefined"
814
819
  },
815
- "description": "If defined, displays valid state after interaction",
820
+ "description": "If true, displays valid state after interaction",
816
821
  "fieldName": "showValid"
817
822
  },
823
+ {
824
+ "name": "size",
825
+ "type": {
826
+ "text": "'sm' | 'md'"
827
+ },
828
+ "default": "'md'",
829
+ "description": "Size of the checkbox",
830
+ "fieldName": "size"
831
+ },
818
832
  {
819
833
  "name": "value",
820
834
  "type": {
@@ -850,7 +864,7 @@
850
864
  "declarations": [
851
865
  {
852
866
  "kind": "class",
853
- "description": "The `<skf-collapse>` component is a general purpose container for content that can be collapsed / expanded.\n\nSee [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/6229e2eb8a8dacf366dc3243) for design principles.",
867
+ "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
868
  "name": "SkfCollapse",
855
869
  "slots": [
856
870
  {
@@ -863,9 +877,8 @@
863
877
  "kind": "field",
864
878
  "name": "animated",
865
879
  "type": {
866
- "text": "boolean"
880
+ "text": "boolean | undefined"
867
881
  },
868
- "default": "false",
869
882
  "description": "If true, will animate the expand/collapse state",
870
883
  "attribute": "animated",
871
884
  "reflects": true
@@ -874,9 +887,8 @@
874
887
  "kind": "field",
875
888
  "name": "expanded",
876
889
  "type": {
877
- "text": "boolean"
890
+ "text": "boolean | undefined"
878
891
  },
879
- "default": "false",
880
892
  "description": "If true, will set the collapse to be expanded by default",
881
893
  "attribute": "expanded",
882
894
  "reflects": true
@@ -894,19 +906,18 @@
894
906
  "kind": "field",
895
907
  "name": "headingAs",
896
908
  "type": {
897
- "text": "Exclude<HeadingType, 'h1'>"
909
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
898
910
  },
899
911
  "default": "'h2'",
900
- "description": "Controls which heading element will be rendered",
912
+ "description": "Defines which heading element will be rendered",
901
913
  "attribute": "heading-as"
902
914
  },
903
915
  {
904
916
  "kind": "field",
905
917
  "name": "small",
906
918
  "type": {
907
- "text": "boolean"
919
+ "text": "boolean | undefined"
908
920
  },
909
- "default": "false",
910
921
  "description": "If true, renders the small version",
911
922
  "attribute": "small",
912
923
  "reflects": true
@@ -915,9 +926,8 @@
915
926
  "kind": "field",
916
927
  "name": "truncate",
917
928
  "type": {
918
- "text": "boolean"
929
+ "text": "boolean | undefined"
919
930
  },
920
- "default": "false",
921
931
  "description": "If true, will truncate the heading in collapsed state",
922
932
  "attribute": "truncate",
923
933
  "reflects": true
@@ -946,18 +956,16 @@
946
956
  {
947
957
  "name": "animated",
948
958
  "type": {
949
- "text": "boolean"
959
+ "text": "boolean | undefined"
950
960
  },
951
- "default": "false",
952
961
  "description": "If true, will animate the expand/collapse state",
953
962
  "fieldName": "animated"
954
963
  },
955
964
  {
956
965
  "name": "expanded",
957
966
  "type": {
958
- "text": "boolean"
967
+ "text": "boolean | undefined"
959
968
  },
960
- "default": "false",
961
969
  "description": "If true, will set the collapse to be expanded by default",
962
970
  "fieldName": "expanded"
963
971
  },
@@ -972,27 +980,25 @@
972
980
  {
973
981
  "name": "heading-as",
974
982
  "type": {
975
- "text": "Exclude<HeadingType, 'h1'>"
983
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
976
984
  },
977
985
  "default": "'h2'",
978
- "description": "Controls which heading element will be rendered",
986
+ "description": "Defines which heading element will be rendered",
979
987
  "fieldName": "headingAs"
980
988
  },
981
989
  {
982
990
  "name": "small",
983
991
  "type": {
984
- "text": "boolean"
992
+ "text": "boolean | undefined"
985
993
  },
986
- "default": "false",
987
994
  "description": "If true, renders the small version",
988
995
  "fieldName": "small"
989
996
  },
990
997
  {
991
998
  "name": "truncate",
992
999
  "type": {
993
- "text": "boolean"
1000
+ "text": "boolean | undefined"
994
1001
  },
995
- "default": "false",
996
1002
  "description": "If true, will truncate the heading in collapsed state",
997
1003
  "fieldName": "truncate"
998
1004
  }
@@ -1022,7 +1028,7 @@
1022
1028
  "declarations": [
1023
1029
  {
1024
1030
  "kind": "class",
1025
- "description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information.",
1031
+ "description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information",
1026
1032
  "name": "SkfDivider",
1027
1033
  "cssProperties": [
1028
1034
  {
@@ -1035,6 +1041,14 @@
1035
1041
  }
1036
1042
  ],
1037
1043
  "members": [
1044
+ {
1045
+ "kind": "field",
1046
+ "name": "#internals",
1047
+ "privacy": "private",
1048
+ "type": {
1049
+ "text": "ElementInternals"
1050
+ }
1051
+ },
1038
1052
  {
1039
1053
  "kind": "field",
1040
1054
  "name": "color",
@@ -1042,7 +1056,7 @@
1042
1056
  "text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
1043
1057
  },
1044
1058
  "default": "'primary'",
1045
- "description": "If provided, alters the Divider color",
1059
+ "description": "Defines the Divider color",
1046
1060
  "attribute": "color",
1047
1061
  "reflects": true
1048
1062
  },
@@ -1050,9 +1064,8 @@
1050
1064
  "kind": "field",
1051
1065
  "name": "decorative",
1052
1066
  "type": {
1053
- "text": "boolean"
1067
+ "text": "boolean | undefined"
1054
1068
  },
1055
- "default": "false",
1056
1069
  "description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
1057
1070
  "attribute": "decorative"
1058
1071
  },
@@ -1060,9 +1073,8 @@
1060
1073
  "kind": "field",
1061
1074
  "name": "vertical",
1062
1075
  "type": {
1063
- "text": "boolean"
1076
+ "text": "boolean | undefined"
1064
1077
  },
1065
- "default": "false",
1066
1078
  "description": "If true, renders the divider vertically",
1067
1079
  "attribute": "vertical",
1068
1080
  "reflects": true
@@ -1075,24 +1087,22 @@
1075
1087
  "text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
1076
1088
  },
1077
1089
  "default": "'primary'",
1078
- "description": "If provided, alters the Divider color",
1090
+ "description": "Defines the Divider color",
1079
1091
  "fieldName": "color"
1080
1092
  },
1081
1093
  {
1082
1094
  "name": "decorative",
1083
1095
  "type": {
1084
- "text": "boolean"
1096
+ "text": "boolean | undefined"
1085
1097
  },
1086
- "default": "false",
1087
1098
  "description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
1088
1099
  "fieldName": "decorative"
1089
1100
  },
1090
1101
  {
1091
1102
  "name": "vertical",
1092
1103
  "type": {
1093
- "text": "boolean"
1104
+ "text": "boolean | undefined"
1094
1105
  },
1095
- "default": "false",
1096
1106
  "description": "If true, renders the divider vertically",
1097
1107
  "fieldName": "vertical"
1098
1108
  }
@@ -1124,15 +1134,21 @@
1124
1134
  "kind": "class",
1125
1135
  "description": "The `<Heading>` component is to deliniate content on a page. When using, take note not to skip heading levels.<br>\nIt extends the interface of native html `<h1>` to `<h4>` elements.",
1126
1136
  "name": "SkfHeading",
1137
+ "slots": [
1138
+ {
1139
+ "description": "The headings content",
1140
+ "name": ""
1141
+ }
1142
+ ],
1127
1143
  "members": [
1128
1144
  {
1129
1145
  "kind": "field",
1130
1146
  "name": "as",
1131
1147
  "type": {
1132
- "text": "HeadingType"
1148
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1133
1149
  },
1134
1150
  "default": "'h1'",
1135
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance.",
1151
+ "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
1136
1152
  "attribute": "as",
1137
1153
  "reflects": true
1138
1154
  },
@@ -1140,7 +1156,7 @@
1140
1156
  "kind": "field",
1141
1157
  "name": "styledAs",
1142
1158
  "type": {
1143
- "text": "HeadingType | undefined"
1159
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1144
1160
  },
1145
1161
  "description": "If provided, changes the appearance of the heading",
1146
1162
  "attribute": "styled-as"
@@ -1150,16 +1166,16 @@
1150
1166
  {
1151
1167
  "name": "as",
1152
1168
  "type": {
1153
- "text": "HeadingType"
1169
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1154
1170
  },
1155
1171
  "default": "'h1'",
1156
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance.",
1172
+ "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
1157
1173
  "fieldName": "as"
1158
1174
  },
1159
1175
  {
1160
1176
  "name": "styled-as",
1161
1177
  "type": {
1162
- "text": "HeadingType | undefined"
1178
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1163
1179
  },
1164
1180
  "description": "If provided, changes the appearance of the heading",
1165
1181
  "fieldName": "styledAs"
@@ -1193,6 +1209,15 @@
1193
1209
  "description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text",
1194
1210
  "name": "SkfIcon",
1195
1211
  "members": [
1212
+ {
1213
+ "kind": "field",
1214
+ "name": "_rootId",
1215
+ "type": {
1216
+ "text": "string"
1217
+ },
1218
+ "privacy": "private",
1219
+ "default": "'root'"
1220
+ },
1196
1221
  {
1197
1222
  "kind": "field",
1198
1223
  "name": "color",
@@ -1200,6 +1225,7 @@
1200
1225
  "text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
1201
1226
  },
1202
1227
  "default": "'primary'",
1228
+ "description": "Sets the color of the icon",
1203
1229
  "attribute": "color",
1204
1230
  "reflects": true
1205
1231
  },
@@ -1209,7 +1235,7 @@
1209
1235
  "type": {
1210
1236
  "text": "string | undefined"
1211
1237
  },
1212
- "description": "If provided, adds an alternate description to use for assistive devices",
1238
+ "description": "If defined, adds an alternate description to use for assistive devices",
1213
1239
  "attribute": "label"
1214
1240
  },
1215
1241
  {
@@ -1218,6 +1244,7 @@
1218
1244
  "type": {
1219
1245
  "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
1246
  },
1247
+ "description": "Name of the icon to display",
1221
1248
  "attribute": "name"
1222
1249
  },
1223
1250
  {
@@ -1227,8 +1254,19 @@
1227
1254
  "text": "\"xs\" | \"sm\" | \"md\" | \"lg\""
1228
1255
  },
1229
1256
  "default": "'md'",
1257
+ "description": "Size of the icon",
1230
1258
  "attribute": "size",
1231
1259
  "reflects": true
1260
+ },
1261
+ {
1262
+ "kind": "field",
1263
+ "name": "renderDecorativeIcon",
1264
+ "privacy": "private"
1265
+ },
1266
+ {
1267
+ "kind": "field",
1268
+ "name": "renderInformativeIcon",
1269
+ "privacy": "private"
1232
1270
  }
1233
1271
  ],
1234
1272
  "attributes": [
@@ -1238,6 +1276,7 @@
1238
1276
  "text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
1239
1277
  },
1240
1278
  "default": "'primary'",
1279
+ "description": "Sets the color of the icon",
1241
1280
  "fieldName": "color"
1242
1281
  },
1243
1282
  {
@@ -1245,7 +1284,7 @@
1245
1284
  "type": {
1246
1285
  "text": "string | undefined"
1247
1286
  },
1248
- "description": "If provided, adds an alternate description to use for assistive devices",
1287
+ "description": "If defined, adds an alternate description to use for assistive devices",
1249
1288
  "fieldName": "label"
1250
1289
  },
1251
1290
  {
@@ -1253,6 +1292,7 @@
1253
1292
  "type": {
1254
1293
  "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
1294
  },
1295
+ "description": "Name of the icon to display",
1256
1296
  "fieldName": "name"
1257
1297
  },
1258
1298
  {
@@ -1261,6 +1301,7 @@
1261
1301
  "text": "\"xs\" | \"sm\" | \"md\" | \"lg\""
1262
1302
  },
1263
1303
  "default": "'md'",
1304
+ "description": "Size of the icon",
1264
1305
  "fieldName": "size"
1265
1306
  }
1266
1307
  ],
@@ -1293,8 +1334,8 @@
1293
1334
  "name": "SkfInput",
1294
1335
  "slots": [
1295
1336
  {
1296
- "description": " Alternatively, you can use the `label` attribute",
1297
- "name": "Default"
1337
+ "description": "The Inputs label. Alternatively, you can use the `label` attribute.",
1338
+ "name": ""
1298
1339
  }
1299
1340
  ],
1300
1341
  "members": [
@@ -1313,7 +1354,7 @@
1313
1354
  "text": "string"
1314
1355
  },
1315
1356
  "default": "'Clear input'",
1316
- "description": "If provided, renders a custom aria-label for the clear button **Notice!** Only applicable to type=search.",
1357
+ "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
1317
1358
  "attribute": "button-aria-label-clear"
1318
1359
  },
1319
1360
  {
@@ -1323,7 +1364,7 @@
1323
1364
  "text": "string"
1324
1365
  },
1325
1366
  "default": "'Hide password'",
1326
- "description": "If provided, renders a custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
1367
+ "description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
1327
1368
  "attribute": "button-aria-label-hide"
1328
1369
  },
1329
1370
  {
@@ -1333,13 +1374,13 @@
1333
1374
  "text": "string"
1334
1375
  },
1335
1376
  "default": "'Show password'",
1336
- "description": "If provided, renders a custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
1377
+ "description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
1337
1378
  "attribute": "button-aria-label-show"
1338
1379
  },
1339
1380
  {
1340
1381
  "kind": "field",
1341
1382
  "name": "customInvalid",
1342
- "description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
1383
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
1343
1384
  "attribute": "custom-invalid",
1344
1385
  "reflects": true
1345
1386
  },
@@ -1347,19 +1388,17 @@
1347
1388
  "kind": "field",
1348
1389
  "name": "debug",
1349
1390
  "type": {
1350
- "text": "boolean"
1391
+ "text": "boolean | undefined"
1351
1392
  },
1352
- "default": "false",
1353
- "description": "If provided, outputs helping hints in console",
1393
+ "description": "If true, outputs helping hints in console",
1354
1394
  "attribute": "debug"
1355
1395
  },
1356
1396
  {
1357
1397
  "kind": "field",
1358
1398
  "name": "hideLabel",
1359
1399
  "type": {
1360
- "text": "boolean"
1400
+ "text": "boolean | undefined"
1361
1401
  },
1362
- "default": "false",
1363
1402
  "description": "If true, hides the label visually",
1364
1403
  "attribute": "hide-label"
1365
1404
  },
@@ -1369,7 +1408,7 @@
1369
1408
  "type": {
1370
1409
  "text": "string | undefined"
1371
1410
  },
1372
- "description": "If provided, displays informational text below the field",
1411
+ "description": "If defined, displays informational text below the field",
1373
1412
  "attribute": "hint"
1374
1413
  },
1375
1414
  {
@@ -1379,7 +1418,7 @@
1379
1418
  "text": "'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'"
1380
1419
  },
1381
1420
  "default": "'text'",
1382
- "description": "If provided, tells what keyboard to use if applicable",
1421
+ "description": "Tells what keyboard to use if applicable",
1383
1422
  "attribute": "inputmode"
1384
1423
  },
1385
1424
  {
@@ -1388,7 +1427,7 @@
1388
1427
  "type": {
1389
1428
  "text": "string | undefined"
1390
1429
  },
1391
- "description": "The input's label. Alternatively, you can use the `label` attribute.",
1430
+ "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
1392
1431
  "attribute": "label"
1393
1432
  },
1394
1433
  {
@@ -1397,7 +1436,7 @@
1397
1436
  "type": {
1398
1437
  "text": "string | undefined"
1399
1438
  },
1400
- "description": "If provided, displays a prefix/adornment before the input-element",
1439
+ "description": "If defined, displays a prefix/adornment before the input-element",
1401
1440
  "attribute": "leading"
1402
1441
  },
1403
1442
  {
@@ -1406,7 +1445,7 @@
1406
1445
  "type": {
1407
1446
  "text": "number | string | undefined"
1408
1447
  },
1409
- "description": "If provided, sets the maximum value to accept for this input",
1448
+ "description": "If defined, sets the maximum value to accept for this input",
1410
1449
  "attribute": "max"
1411
1450
  },
1412
1451
  {
@@ -1415,7 +1454,7 @@
1415
1454
  "type": {
1416
1455
  "text": "number | undefined"
1417
1456
  },
1418
- "description": "If provided, sets the maximum character length to accept for this input",
1457
+ "description": "If defined, sets the maximum character length to accept for this input",
1419
1458
  "attribute": "maxlength"
1420
1459
  },
1421
1460
  {
@@ -1424,7 +1463,7 @@
1424
1463
  "type": {
1425
1464
  "text": "number | string | undefined"
1426
1465
  },
1427
- "description": "If provided, sets the minimum value to accept for this input",
1466
+ "description": "If defined, sets the minimum value to accept for this input",
1428
1467
  "attribute": "min"
1429
1468
  },
1430
1469
  {
@@ -1433,7 +1472,7 @@
1433
1472
  "type": {
1434
1473
  "text": "number | undefined"
1435
1474
  },
1436
- "description": "If provided, sets the minimum character length to accept for this input",
1475
+ "description": "If defined, sets the minimum character length to accept for this input",
1437
1476
  "attribute": "minlength"
1438
1477
  },
1439
1478
  {
@@ -1442,7 +1481,7 @@
1442
1481
  "type": {
1443
1482
  "text": "string | undefined"
1444
1483
  },
1445
- "description": "If provided, adds name to the input-element",
1484
+ "description": "If defined, adds name to the input-element",
1446
1485
  "attribute": "name"
1447
1486
  },
1448
1487
  {
@@ -1451,7 +1490,7 @@
1451
1490
  "type": {
1452
1491
  "text": "string | undefined"
1453
1492
  },
1454
- "description": "If provided, adds name to the input-element",
1493
+ "description": "If defined, adds name to the input-element",
1455
1494
  "attribute": "pattern"
1456
1495
  },
1457
1496
  {
@@ -1460,7 +1499,7 @@
1460
1499
  "type": {
1461
1500
  "text": "string | undefined"
1462
1501
  },
1463
- "description": "If provided, displays placeholder text",
1502
+ "description": "If defined, displays placeholder text",
1464
1503
  "attribute": "placeholder"
1465
1504
  },
1466
1505
  {
@@ -1478,17 +1517,18 @@
1478
1517
  "type": {
1479
1518
  "text": "string | undefined"
1480
1519
  },
1481
- "description": "If provided, renders an alternative A11y text for the asterisk",
1520
+ "description": "If defined, renders an alternative A11y text for the asterisk",
1482
1521
  "attribute": "required-label"
1483
1522
  },
1484
1523
  {
1485
1524
  "kind": "field",
1486
1525
  "name": "severity",
1487
1526
  "type": {
1488
- "text": "FormFieldBaseProps['severity'] | undefined"
1527
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
1489
1528
  },
1490
- "description": "If provided, displays provided severity state",
1491
- "attribute": "severity"
1529
+ "description": "If defined, displays provided severity state",
1530
+ "attribute": "severity",
1531
+ "reflects": true
1492
1532
  },
1493
1533
  {
1494
1534
  "kind": "field",
@@ -1496,17 +1536,17 @@
1496
1536
  "type": {
1497
1537
  "text": "boolean | undefined"
1498
1538
  },
1499
- "description": "If provided, displays provided severity state",
1539
+ "description": "If true, displays valid state after interaction",
1500
1540
  "attribute": "show-valid"
1501
1541
  },
1502
1542
  {
1503
1543
  "kind": "field",
1504
1544
  "name": "size",
1505
1545
  "type": {
1506
- "text": "'sm' | 'md' | undefined"
1546
+ "text": "'sm' | 'md'"
1507
1547
  },
1508
1548
  "default": "'md'",
1509
- "description": "If provided, displays an alternative size",
1549
+ "description": "Size of the input",
1510
1550
  "attribute": "size",
1511
1551
  "reflects": true
1512
1552
  },
@@ -1516,27 +1556,27 @@
1516
1556
  "type": {
1517
1557
  "text": "string | undefined"
1518
1558
  },
1519
- "description": "If provided, displays a suffix/adornment after the input-element",
1559
+ "description": "If defined, displays a suffix/adornment after the input-element",
1520
1560
  "attribute": "trailing"
1521
1561
  },
1522
1562
  {
1523
1563
  "kind": "field",
1524
1564
  "name": "type",
1525
1565
  "type": {
1526
- "text": "Exclude<FormFieldBaseProps['type'], 'checkbox' | 'radio'> | undefined"
1566
+ "text": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
1527
1567
  },
1528
1568
  "default": "'text'",
1529
- "description": "If provided, changes the type of form control",
1569
+ "description": "Type of input control",
1530
1570
  "attribute": "type"
1531
1571
  },
1532
1572
  {
1533
1573
  "kind": "field",
1534
1574
  "name": "validateOn",
1535
1575
  "type": {
1536
- "text": "'input' | 'change' | 'submit' | undefined"
1576
+ "text": "'input' | 'change' | 'submit'"
1537
1577
  },
1538
1578
  "default": "'change'",
1539
- "description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
1579
+ "description": "Sets validation start",
1540
1580
  "attribute": "validate-on"
1541
1581
  },
1542
1582
  {
@@ -1548,16 +1588,6 @@
1548
1588
  "default": "''",
1549
1589
  "description": "The current value of the input field",
1550
1590
  "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
1591
  }
1562
1592
  ],
1563
1593
  "events": [
@@ -1591,7 +1621,7 @@
1591
1621
  "text": "string"
1592
1622
  },
1593
1623
  "default": "'Clear input'",
1594
- "description": "If provided, renders a custom aria-label for the clear button **Notice!** Only applicable to type=search.",
1624
+ "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
1595
1625
  "fieldName": "buttonAriaLabelClear"
1596
1626
  },
1597
1627
  {
@@ -1600,7 +1630,7 @@
1600
1630
  "text": "string"
1601
1631
  },
1602
1632
  "default": "'Hide password'",
1603
- "description": "If provided, renders a custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
1633
+ "description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
1604
1634
  "fieldName": "buttonAriaLabelHide"
1605
1635
  },
1606
1636
  {
@@ -1609,29 +1639,27 @@
1609
1639
  "text": "string"
1610
1640
  },
1611
1641
  "default": "'Show password'",
1612
- "description": "If provided, renders a custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
1642
+ "description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
1613
1643
  "fieldName": "buttonAriaLabelShow"
1614
1644
  },
1615
1645
  {
1616
1646
  "name": "custom-invalid",
1617
- "description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
1647
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
1618
1648
  "fieldName": "customInvalid"
1619
1649
  },
1620
1650
  {
1621
1651
  "name": "debug",
1622
1652
  "type": {
1623
- "text": "boolean"
1653
+ "text": "boolean | undefined"
1624
1654
  },
1625
- "default": "false",
1626
- "description": "If provided, outputs helping hints in console",
1655
+ "description": "If true, outputs helping hints in console",
1627
1656
  "fieldName": "debug"
1628
1657
  },
1629
1658
  {
1630
1659
  "name": "hide-label",
1631
1660
  "type": {
1632
- "text": "boolean"
1661
+ "text": "boolean | undefined"
1633
1662
  },
1634
- "default": "false",
1635
1663
  "description": "If true, hides the label visually",
1636
1664
  "fieldName": "hideLabel"
1637
1665
  },
@@ -1640,7 +1668,7 @@
1640
1668
  "type": {
1641
1669
  "text": "string | undefined"
1642
1670
  },
1643
- "description": "If provided, displays informational text below the field",
1671
+ "description": "If defined, displays informational text below the field",
1644
1672
  "fieldName": "hint"
1645
1673
  },
1646
1674
  {
@@ -1649,7 +1677,7 @@
1649
1677
  "text": "'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'"
1650
1678
  },
1651
1679
  "default": "'text'",
1652
- "description": "If provided, tells what keyboard to use if applicable",
1680
+ "description": "Tells what keyboard to use if applicable",
1653
1681
  "fieldName": "inputmode"
1654
1682
  },
1655
1683
  {
@@ -1657,7 +1685,7 @@
1657
1685
  "type": {
1658
1686
  "text": "string | undefined"
1659
1687
  },
1660
- "description": "The input's label. Alternatively, you can use the `label` attribute.",
1688
+ "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
1661
1689
  "fieldName": "label"
1662
1690
  },
1663
1691
  {
@@ -1665,7 +1693,7 @@
1665
1693
  "type": {
1666
1694
  "text": "string | undefined"
1667
1695
  },
1668
- "description": "If provided, displays a prefix/adornment before the input-element",
1696
+ "description": "If defined, displays a prefix/adornment before the input-element",
1669
1697
  "fieldName": "leading"
1670
1698
  },
1671
1699
  {
@@ -1673,7 +1701,7 @@
1673
1701
  "type": {
1674
1702
  "text": "number | string | undefined"
1675
1703
  },
1676
- "description": "If provided, sets the maximum value to accept for this input",
1704
+ "description": "If defined, sets the maximum value to accept for this input",
1677
1705
  "fieldName": "max"
1678
1706
  },
1679
1707
  {
@@ -1681,7 +1709,7 @@
1681
1709
  "type": {
1682
1710
  "text": "number | undefined"
1683
1711
  },
1684
- "description": "If provided, sets the maximum character length to accept for this input",
1712
+ "description": "If defined, sets the maximum character length to accept for this input",
1685
1713
  "fieldName": "maxLength"
1686
1714
  },
1687
1715
  {
@@ -1689,7 +1717,7 @@
1689
1717
  "type": {
1690
1718
  "text": "number | string | undefined"
1691
1719
  },
1692
- "description": "If provided, sets the minimum value to accept for this input",
1720
+ "description": "If defined, sets the minimum value to accept for this input",
1693
1721
  "fieldName": "min"
1694
1722
  },
1695
1723
  {
@@ -1697,7 +1725,7 @@
1697
1725
  "type": {
1698
1726
  "text": "number | undefined"
1699
1727
  },
1700
- "description": "If provided, sets the minimum character length to accept for this input",
1728
+ "description": "If defined, sets the minimum character length to accept for this input",
1701
1729
  "fieldName": "minLength"
1702
1730
  },
1703
1731
  {
@@ -1705,7 +1733,7 @@
1705
1733
  "type": {
1706
1734
  "text": "string | undefined"
1707
1735
  },
1708
- "description": "If provided, adds name to the input-element",
1736
+ "description": "If defined, adds name to the input-element",
1709
1737
  "fieldName": "name"
1710
1738
  },
1711
1739
  {
@@ -1713,7 +1741,7 @@
1713
1741
  "type": {
1714
1742
  "text": "string | undefined"
1715
1743
  },
1716
- "description": "If provided, adds name to the input-element",
1744
+ "description": "If defined, adds name to the input-element",
1717
1745
  "fieldName": "pattern"
1718
1746
  },
1719
1747
  {
@@ -1721,7 +1749,7 @@
1721
1749
  "type": {
1722
1750
  "text": "string | undefined"
1723
1751
  },
1724
- "description": "If provided, displays placeholder text",
1752
+ "description": "If defined, displays placeholder text",
1725
1753
  "fieldName": "placeholder"
1726
1754
  },
1727
1755
  {
@@ -1737,15 +1765,15 @@
1737
1765
  "type": {
1738
1766
  "text": "string | undefined"
1739
1767
  },
1740
- "description": "If provided, renders an alternative A11y text for the asterisk",
1768
+ "description": "If defined, renders an alternative A11y text for the asterisk",
1741
1769
  "fieldName": "requiredLabel"
1742
1770
  },
1743
1771
  {
1744
1772
  "name": "severity",
1745
1773
  "type": {
1746
- "text": "FormFieldBaseProps['severity'] | undefined"
1774
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
1747
1775
  },
1748
- "description": "If provided, displays provided severity state",
1776
+ "description": "If defined, displays provided severity state",
1749
1777
  "fieldName": "severity"
1750
1778
  },
1751
1779
  {
@@ -1753,16 +1781,16 @@
1753
1781
  "type": {
1754
1782
  "text": "boolean | undefined"
1755
1783
  },
1756
- "description": "If provided, displays provided severity state",
1784
+ "description": "If true, displays valid state after interaction",
1757
1785
  "fieldName": "showValid"
1758
1786
  },
1759
1787
  {
1760
1788
  "name": "size",
1761
1789
  "type": {
1762
- "text": "'sm' | 'md' | undefined"
1790
+ "text": "'sm' | 'md'"
1763
1791
  },
1764
1792
  "default": "'md'",
1765
- "description": "If provided, displays an alternative size",
1793
+ "description": "Size of the input",
1766
1794
  "fieldName": "size"
1767
1795
  },
1768
1796
  {
@@ -1770,25 +1798,25 @@
1770
1798
  "type": {
1771
1799
  "text": "string | undefined"
1772
1800
  },
1773
- "description": "If provided, displays a suffix/adornment after the input-element",
1801
+ "description": "If defined, displays a suffix/adornment after the input-element",
1774
1802
  "fieldName": "trailing"
1775
1803
  },
1776
1804
  {
1777
1805
  "name": "type",
1778
1806
  "type": {
1779
- "text": "Exclude<FormFieldBaseProps['type'], 'checkbox' | 'radio'> | undefined"
1807
+ "text": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
1780
1808
  },
1781
1809
  "default": "'text'",
1782
- "description": "If provided, changes the type of form control",
1810
+ "description": "Type of input control",
1783
1811
  "fieldName": "type"
1784
1812
  },
1785
1813
  {
1786
1814
  "name": "validate-on",
1787
1815
  "type": {
1788
- "text": "'input' | 'change' | 'submit' | undefined"
1816
+ "text": "'input' | 'change' | 'submit'"
1789
1817
  },
1790
1818
  "default": "'change'",
1791
- "description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
1819
+ "description": "Sets validation start",
1792
1820
  "fieldName": "validateOn"
1793
1821
  },
1794
1822
  {
@@ -1830,9 +1858,6 @@
1830
1858
  "name": "SkfLink",
1831
1859
  "slots": [
1832
1860
  {
1833
- "type": {
1834
- "text": "string"
1835
- },
1836
1861
  "description": "The links' main content",
1837
1862
  "name": ""
1838
1863
  }
@@ -1853,7 +1878,7 @@
1853
1878
  "text": "'button' | 'a'"
1854
1879
  },
1855
1880
  "default": "'a'",
1856
- "description": "Specifies semantic element to render -",
1881
+ "description": "Defines the semantic element to render",
1857
1882
  "attribute": "as",
1858
1883
  "reflects": true
1859
1884
  },
@@ -1864,6 +1889,7 @@
1864
1889
  "text": "'primary' | 'inverse'"
1865
1890
  },
1866
1891
  "default": "'primary'",
1892
+ "description": "Defines the text-color",
1867
1893
  "attribute": "color",
1868
1894
  "reflects": true
1869
1895
  },
@@ -1883,7 +1909,7 @@
1883
1909
  "type": {
1884
1910
  "text": "string | undefined"
1885
1911
  },
1886
- "description": "If provided, downloads the url",
1912
+ "description": "If defined, downloads the url",
1887
1913
  "attribute": "download"
1888
1914
  },
1889
1915
  {
@@ -1892,7 +1918,7 @@
1892
1918
  "type": {
1893
1919
  "text": "string | undefined"
1894
1920
  },
1895
- "description": "If provided, loads url on click",
1921
+ "description": "If defined, loads url on click",
1896
1922
  "attribute": "href",
1897
1923
  "reflects": true
1898
1924
  },
@@ -1902,7 +1928,7 @@
1902
1928
  "type": {
1903
1929
  "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
1930
  },
1905
- "description": "If provided, renders an icon before or after the text",
1931
+ "description": "If defined, renders an icon before or after the text",
1906
1932
  "attribute": "icon"
1907
1933
  },
1908
1934
  {
@@ -1912,7 +1938,7 @@
1912
1938
  "text": "'left' | 'right'"
1913
1939
  },
1914
1940
  "default": "'left'",
1915
- "description": "Position of the icon in relation to the text -",
1941
+ "description": "Defines the position of the icon in relation to the text",
1916
1942
  "attribute": "icon-placement",
1917
1943
  "reflects": true
1918
1944
  },
@@ -1923,7 +1949,7 @@
1923
1949
  "text": "string"
1924
1950
  },
1925
1951
  "default": "'noreferrer noopener'",
1926
- "description": "Specifies the relationship of the target object to the link object -",
1952
+ "description": "Defines the relationship of the target object to the link object",
1927
1953
  "attribute": "rel"
1928
1954
  },
1929
1955
  {
@@ -1932,7 +1958,7 @@
1932
1958
  "type": {
1933
1959
  "text": "string | undefined"
1934
1960
  },
1935
- "description": "If provided, used on conjunction with onClick property, second argument",
1961
+ "description": "If defined, used on conjunction with onClick property, second argument",
1936
1962
  "attribute": "route",
1937
1963
  "reflects": true
1938
1964
  },
@@ -1952,7 +1978,7 @@
1952
1978
  "type": {
1953
1979
  "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1954
1980
  },
1955
- "description": "If provided, specifies where to open the linked document",
1981
+ "description": "If defined, specifies where to open the linked document",
1956
1982
  "attribute": "target"
1957
1983
  },
1958
1984
  {
@@ -1962,7 +1988,7 @@
1962
1988
  "text": "'button' | 'submit' | 'reset'"
1963
1989
  },
1964
1990
  "default": "'button'",
1965
- "description": "Type of button -",
1991
+ "description": "Defines the type of button",
1966
1992
  "attribute": "type"
1967
1993
  },
1968
1994
  {
@@ -1981,7 +2007,7 @@
1981
2007
  "text": "'button' | 'a'"
1982
2008
  },
1983
2009
  "default": "'a'",
1984
- "description": "Specifies semantic element to render -",
2010
+ "description": "Defines the semantic element to render",
1985
2011
  "fieldName": "as"
1986
2012
  },
1987
2013
  {
@@ -1990,6 +2016,7 @@
1990
2016
  "text": "'primary' | 'inverse'"
1991
2017
  },
1992
2018
  "default": "'primary'",
2019
+ "description": "Defines the text-color",
1993
2020
  "fieldName": "color"
1994
2021
  },
1995
2022
  {
@@ -2005,7 +2032,7 @@
2005
2032
  "type": {
2006
2033
  "text": "string | undefined"
2007
2034
  },
2008
- "description": "If provided, downloads the url",
2035
+ "description": "If defined, downloads the url",
2009
2036
  "fieldName": "download"
2010
2037
  },
2011
2038
  {
@@ -2013,7 +2040,7 @@
2013
2040
  "type": {
2014
2041
  "text": "string | undefined"
2015
2042
  },
2016
- "description": "If provided, loads url on click",
2043
+ "description": "If defined, loads url on click",
2017
2044
  "fieldName": "href"
2018
2045
  },
2019
2046
  {
@@ -2021,7 +2048,7 @@
2021
2048
  "type": {
2022
2049
  "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
2050
  },
2024
- "description": "If provided, renders an icon before or after the text",
2051
+ "description": "If defined, renders an icon before or after the text",
2025
2052
  "fieldName": "icon"
2026
2053
  },
2027
2054
  {
@@ -2030,7 +2057,7 @@
2030
2057
  "text": "'left' | 'right'"
2031
2058
  },
2032
2059
  "default": "'left'",
2033
- "description": "Position of the icon in relation to the text -",
2060
+ "description": "Defines the position of the icon in relation to the text",
2034
2061
  "fieldName": "iconPlacement"
2035
2062
  },
2036
2063
  {
@@ -2039,7 +2066,7 @@
2039
2066
  "text": "string"
2040
2067
  },
2041
2068
  "default": "'noreferrer noopener'",
2042
- "description": "Specifies the relationship of the target object to the link object -",
2069
+ "description": "Defines the relationship of the target object to the link object",
2043
2070
  "fieldName": "rel"
2044
2071
  },
2045
2072
  {
@@ -2047,7 +2074,7 @@
2047
2074
  "type": {
2048
2075
  "text": "string | undefined"
2049
2076
  },
2050
- "description": "If provided, used on conjunction with onClick property, second argument",
2077
+ "description": "If defined, used on conjunction with onClick property, second argument",
2051
2078
  "fieldName": "route"
2052
2079
  },
2053
2080
  {
@@ -2063,7 +2090,7 @@
2063
2090
  "type": {
2064
2091
  "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
2065
2092
  },
2066
- "description": "If provided, specifies where to open the linked document",
2093
+ "description": "If defined, specifies where to open the linked document",
2067
2094
  "fieldName": "target"
2068
2095
  },
2069
2096
  {
@@ -2072,7 +2099,7 @@
2072
2099
  "text": "'button' | 'submit' | 'reset'"
2073
2100
  },
2074
2101
  "default": "'button'",
2075
- "description": "Type of button -",
2102
+ "description": "Defines the type of button",
2076
2103
  "fieldName": "type"
2077
2104
  }
2078
2105
  ],
@@ -2101,9 +2128,17 @@
2101
2128
  "declarations": [
2102
2129
  {
2103
2130
  "kind": "class",
2104
- "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities.",
2131
+ "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities",
2105
2132
  "name": "SkfLoader",
2106
2133
  "members": [
2134
+ {
2135
+ "kind": "field",
2136
+ "name": "#internals",
2137
+ "privacy": "private",
2138
+ "type": {
2139
+ "text": "ElementInternals"
2140
+ }
2141
+ },
2107
2142
  {
2108
2143
  "kind": "field",
2109
2144
  "name": "ariaLabel",
@@ -2111,6 +2146,7 @@
2111
2146
  "text": "string"
2112
2147
  },
2113
2148
  "default": "'Loading...'",
2149
+ "description": "Defines the aria-label",
2114
2150
  "attribute": "aria-label",
2115
2151
  "reflects": true
2116
2152
  },
@@ -2118,9 +2154,8 @@
2118
2154
  "kind": "field",
2119
2155
  "name": "invert",
2120
2156
  "type": {
2121
- "text": "boolean"
2157
+ "text": "boolean | undefined"
2122
2158
  },
2123
- "default": "false",
2124
2159
  "description": "If true, inverts the color (to be used on colored backgrounds)",
2125
2160
  "attribute": "invert"
2126
2161
  },
@@ -2131,9 +2166,25 @@
2131
2166
  "text": "'md' | 'sm' | undefined"
2132
2167
  },
2133
2168
  "default": "'md'",
2134
- "description": "If provided, displays an alternative size",
2169
+ "description": "Defines the size of the loader",
2135
2170
  "attribute": "size",
2136
2171
  "reflects": true
2172
+ },
2173
+ {
2174
+ "kind": "field",
2175
+ "name": "role",
2176
+ "type": {
2177
+ "text": "string"
2178
+ },
2179
+ "default": "'progressbar'"
2180
+ },
2181
+ {
2182
+ "kind": "field",
2183
+ "name": "ariaLive",
2184
+ "type": {
2185
+ "text": "string"
2186
+ },
2187
+ "default": "'polite'"
2137
2188
  }
2138
2189
  ],
2139
2190
  "attributes": [
@@ -2143,14 +2194,14 @@
2143
2194
  "text": "string"
2144
2195
  },
2145
2196
  "default": "'Loading...'",
2197
+ "description": "Defines the aria-label",
2146
2198
  "fieldName": "ariaLabel"
2147
2199
  },
2148
2200
  {
2149
2201
  "name": "invert",
2150
2202
  "type": {
2151
- "text": "boolean"
2203
+ "text": "boolean | undefined"
2152
2204
  },
2153
- "default": "false",
2154
2205
  "description": "If true, inverts the color (to be used on colored backgrounds)",
2155
2206
  "fieldName": "invert"
2156
2207
  },
@@ -2160,7 +2211,7 @@
2160
2211
  "text": "'md' | 'sm' | undefined"
2161
2212
  },
2162
2213
  "default": "'md'",
2163
- "description": "If provided, displays an alternative size",
2214
+ "description": "Defines the size of the loader",
2164
2215
  "fieldName": "size"
2165
2216
  }
2166
2217
  ],
@@ -2205,7 +2256,7 @@
2205
2256
  "text": "string"
2206
2257
  },
2207
2258
  "default": "'SKF logotype'",
2208
- "description": "The title of the logo",
2259
+ "description": "Defines the title of the logo",
2209
2260
  "attribute": "title"
2210
2261
  },
2211
2262
  {
@@ -2215,7 +2266,7 @@
2215
2266
  "text": "\"primary\" | \"secondary\" | \"inverse\""
2216
2267
  },
2217
2268
  "default": "'primary'",
2218
- "description": "If provided, sets color of the logo",
2269
+ "description": "If defined, sets color of the logo",
2219
2270
  "attribute": "color"
2220
2271
  }
2221
2272
  ],
@@ -2226,7 +2277,7 @@
2226
2277
  "text": "string"
2227
2278
  },
2228
2279
  "default": "'SKF logotype'",
2229
- "description": "The title of the logo",
2280
+ "description": "Defines the title of the logo",
2230
2281
  "fieldName": "title"
2231
2282
  },
2232
2283
  {
@@ -2235,7 +2286,7 @@
2235
2286
  "text": "\"primary\" | \"secondary\" | \"inverse\""
2236
2287
  },
2237
2288
  "default": "'primary'",
2238
- "description": "If provided, sets color of the logo",
2289
+ "description": "If defined, sets color of the logo",
2239
2290
  "fieldName": "color"
2240
2291
  }
2241
2292
  ],
@@ -2268,19 +2319,27 @@
2268
2319
  "name": "SkfRadio",
2269
2320
  "slots": [
2270
2321
  {
2271
- "description": " Alternatively, you can use the `label` attribute",
2272
- "name": "Default"
2322
+ "description": "The radios label. Alternatively, you can use the `label` attribute.",
2323
+ "name": ""
2273
2324
  }
2274
2325
  ],
2275
2326
  "members": [
2327
+ {
2328
+ "kind": "field",
2329
+ "name": "_initialChecked",
2330
+ "type": {
2331
+ "text": "boolean | undefined"
2332
+ },
2333
+ "privacy": "private",
2334
+ "default": "false"
2335
+ },
2276
2336
  {
2277
2337
  "kind": "field",
2278
2338
  "name": "debug",
2279
2339
  "type": {
2280
- "text": "boolean"
2340
+ "text": "boolean | undefined"
2281
2341
  },
2282
- "default": "false",
2283
- "description": "If provided, outputs helping hints in console",
2342
+ "description": "If true, outputs helping hints in console",
2284
2343
  "attribute": "debug"
2285
2344
  },
2286
2345
  {
@@ -2306,9 +2365,8 @@
2306
2365
  "kind": "field",
2307
2366
  "name": "hideLabel",
2308
2367
  "type": {
2309
- "text": "boolean"
2368
+ "text": "boolean | undefined"
2310
2369
  },
2311
- "default": "false",
2312
2370
  "description": "If true, hides the label visually",
2313
2371
  "attribute": "hide-label",
2314
2372
  "reflects": true
@@ -2319,7 +2377,7 @@
2319
2377
  "type": {
2320
2378
  "text": "string | undefined"
2321
2379
  },
2322
- "description": "The input's label. Alternatively, you can use the `label` attribute.",
2380
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2323
2381
  "attribute": "label"
2324
2382
  },
2325
2383
  {
@@ -2328,7 +2386,7 @@
2328
2386
  "type": {
2329
2387
  "text": "string | undefined"
2330
2388
  },
2331
- "description": "If provided, adds name to the input-element",
2389
+ "description": "If defined, adds name to the input-element",
2332
2390
  "attribute": "name"
2333
2391
  },
2334
2392
  {
@@ -2337,17 +2395,17 @@
2337
2395
  "type": {
2338
2396
  "text": "string | undefined"
2339
2397
  },
2340
- "description": "If provided, renders an alternative A11y text for the asterisk",
2398
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2341
2399
  "attribute": "required-label"
2342
2400
  },
2343
2401
  {
2344
2402
  "kind": "field",
2345
2403
  "name": "size",
2346
2404
  "type": {
2347
- "text": "'sm' | 'md' | undefined"
2405
+ "text": "'sm' | 'md'"
2348
2406
  },
2349
2407
  "default": "'md'",
2350
- "description": "If provided, displays an alternative size",
2408
+ "description": "Size of the Radio",
2351
2409
  "attribute": "size",
2352
2410
  "reflects": true
2353
2411
  },
@@ -2355,11 +2413,10 @@
2355
2413
  "kind": "field",
2356
2414
  "name": "severity",
2357
2415
  "type": {
2358
- "text": "FormFieldBaseProps['severity'] | undefined"
2416
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
2359
2417
  },
2360
- "description": "If provided, displays provided severity state",
2361
- "attribute": "severity",
2362
- "reflects": true
2418
+ "description": "If defined, displays provided severity state",
2419
+ "attribute": "severity"
2363
2420
  },
2364
2421
  {
2365
2422
  "kind": "field",
@@ -2367,7 +2424,7 @@
2367
2424
  "type": {
2368
2425
  "text": "boolean | undefined"
2369
2426
  },
2370
- "description": "If provided, displays valid state after interaction",
2427
+ "description": "If true, displays valid state after interaction",
2371
2428
  "attribute": "show-valid"
2372
2429
  },
2373
2430
  {
@@ -2409,10 +2466,9 @@
2409
2466
  {
2410
2467
  "name": "debug",
2411
2468
  "type": {
2412
- "text": "boolean"
2469
+ "text": "boolean | undefined"
2413
2470
  },
2414
- "default": "false",
2415
- "description": "If provided, outputs helping hints in console",
2471
+ "description": "If true, outputs helping hints in console",
2416
2472
  "fieldName": "debug"
2417
2473
  },
2418
2474
  {
@@ -2434,9 +2490,8 @@
2434
2490
  {
2435
2491
  "name": "hide-label",
2436
2492
  "type": {
2437
- "text": "boolean"
2493
+ "text": "boolean | undefined"
2438
2494
  },
2439
- "default": "false",
2440
2495
  "description": "If true, hides the label visually",
2441
2496
  "fieldName": "hideLabel"
2442
2497
  },
@@ -2445,7 +2500,7 @@
2445
2500
  "type": {
2446
2501
  "text": "string | undefined"
2447
2502
  },
2448
- "description": "The input's label. Alternatively, you can use the `label` attribute.",
2503
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2449
2504
  "fieldName": "label"
2450
2505
  },
2451
2506
  {
@@ -2453,7 +2508,7 @@
2453
2508
  "type": {
2454
2509
  "text": "string | undefined"
2455
2510
  },
2456
- "description": "If provided, adds name to the input-element",
2511
+ "description": "If defined, adds name to the input-element",
2457
2512
  "fieldName": "name"
2458
2513
  },
2459
2514
  {
@@ -2461,24 +2516,24 @@
2461
2516
  "type": {
2462
2517
  "text": "string | undefined"
2463
2518
  },
2464
- "description": "If provided, renders an alternative A11y text for the asterisk",
2519
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2465
2520
  "fieldName": "requiredLabel"
2466
2521
  },
2467
2522
  {
2468
2523
  "name": "size",
2469
2524
  "type": {
2470
- "text": "'sm' | 'md' | undefined"
2525
+ "text": "'sm' | 'md'"
2471
2526
  },
2472
2527
  "default": "'md'",
2473
- "description": "If provided, displays an alternative size",
2528
+ "description": "Size of the Radio",
2474
2529
  "fieldName": "size"
2475
2530
  },
2476
2531
  {
2477
2532
  "name": "severity",
2478
2533
  "type": {
2479
- "text": "FormFieldBaseProps['severity'] | undefined"
2534
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
2480
2535
  },
2481
- "description": "If provided, displays provided severity state",
2536
+ "description": "If defined, displays provided severity state",
2482
2537
  "fieldName": "severity"
2483
2538
  },
2484
2539
  {
@@ -2486,7 +2541,7 @@
2486
2541
  "type": {
2487
2542
  "text": "boolean | undefined"
2488
2543
  },
2489
- "description": "If provided, displays valid state after interaction",
2544
+ "description": "If true, displays valid state after interaction",
2490
2545
  "fieldName": "showValid"
2491
2546
  },
2492
2547
  {
@@ -2518,6 +2573,583 @@
2518
2573
  }
2519
2574
  ]
2520
2575
  },
2576
+ {
2577
+ "kind": "javascript-module",
2578
+ "path": "src/components/select/select.component.ts",
2579
+ "declarations": [
2580
+ {
2581
+ "kind": "class",
2582
+ "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.",
2583
+ "name": "SkfSelect",
2584
+ "slots": [
2585
+ {
2586
+ "description": "The select's placeholder content",
2587
+ "name": ""
2588
+ }
2589
+ ],
2590
+ "members": [
2591
+ {
2592
+ "kind": "field",
2593
+ "name": "buttonLabel",
2594
+ "type": {
2595
+ "text": "string"
2596
+ },
2597
+ "default": "'Select an option'",
2598
+ "description": "Sets the first visible text on the component",
2599
+ "attribute": "button-label",
2600
+ "reflects": true
2601
+ },
2602
+ {
2603
+ "kind": "field",
2604
+ "name": "customInvalid",
2605
+ "type": {
2606
+ "text": "string | undefined"
2607
+ },
2608
+ "description": "If defined, forces component to invalid state until removed",
2609
+ "attribute": "custom-invalid"
2610
+ },
2611
+ {
2612
+ "kind": "field",
2613
+ "name": "hideLabel",
2614
+ "type": {
2615
+ "text": "boolean | undefined"
2616
+ },
2617
+ "description": "If true, hides the label visually",
2618
+ "attribute": "hide-label"
2619
+ },
2620
+ {
2621
+ "kind": "field",
2622
+ "name": "hideTags",
2623
+ "type": {
2624
+ "text": "boolean | undefined"
2625
+ },
2626
+ "description": "If true and mulltiple is true, no tags are displayed under the select",
2627
+ "attribute": "hide-tags",
2628
+ "reflects": true
2629
+ },
2630
+ {
2631
+ "kind": "field",
2632
+ "name": "hint",
2633
+ "type": {
2634
+ "text": "string | undefined"
2635
+ },
2636
+ "description": "If defined, sets the hint text under the select component in the form",
2637
+ "attribute": "hint"
2638
+ },
2639
+ {
2640
+ "kind": "field",
2641
+ "name": "getSelectedValues",
2642
+ "description": "A readonly property that returns the selected value(s) in a array",
2643
+ "readonly": true
2644
+ },
2645
+ {
2646
+ "kind": "field",
2647
+ "name": "getSelectedOptionsText",
2648
+ "description": "A readonly property that returns the selected slot(s) text content in a array",
2649
+ "readonly": true
2650
+ },
2651
+ {
2652
+ "kind": "field",
2653
+ "name": "label",
2654
+ "type": {
2655
+ "text": "string | undefined"
2656
+ },
2657
+ "description": "If defined, displays provided label",
2658
+ "attribute": "label",
2659
+ "reflects": true
2660
+ },
2661
+ {
2662
+ "kind": "field",
2663
+ "name": "max",
2664
+ "type": {
2665
+ "text": "number | undefined"
2666
+ },
2667
+ "description": "If defined, limits the number of selectable options",
2668
+ "attribute": "max"
2669
+ },
2670
+ {
2671
+ "kind": "field",
2672
+ "name": "min",
2673
+ "type": {
2674
+ "text": "number | undefined"
2675
+ },
2676
+ "description": "If defined, sets the minimum number of required options",
2677
+ "attribute": "min"
2678
+ },
2679
+ {
2680
+ "kind": "field",
2681
+ "name": "multiple",
2682
+ "type": {
2683
+ "text": "boolean | undefined"
2684
+ },
2685
+ "description": "If true, allows for multiple options to be selected",
2686
+ "attribute": "multiple",
2687
+ "reflects": true
2688
+ },
2689
+ {
2690
+ "kind": "field",
2691
+ "name": "name",
2692
+ "type": {
2693
+ "text": "string | undefined"
2694
+ },
2695
+ "description": "If defined, set name of the component",
2696
+ "attribute": "name"
2697
+ },
2698
+ {
2699
+ "kind": "field",
2700
+ "name": "requiredLabel",
2701
+ "type": {
2702
+ "text": "string | undefined"
2703
+ },
2704
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2705
+ "attribute": "required-label"
2706
+ },
2707
+ {
2708
+ "kind": "field",
2709
+ "name": "severity",
2710
+ "type": {
2711
+ "text": "FormFieldBaseProps['severity'] | undefined"
2712
+ },
2713
+ "description": "If defined, displays provided severity state",
2714
+ "attribute": "severity"
2715
+ },
2716
+ {
2717
+ "kind": "field",
2718
+ "name": "showValid",
2719
+ "type": {
2720
+ "text": "boolean | undefined"
2721
+ },
2722
+ "description": "If true, displays valid state after interaction",
2723
+ "attribute": "show-valid"
2724
+ },
2725
+ {
2726
+ "kind": "field",
2727
+ "name": "size",
2728
+ "type": {
2729
+ "text": "'sm' | 'md'"
2730
+ },
2731
+ "default": "'md'",
2732
+ "description": "Size of the Select",
2733
+ "attribute": "size",
2734
+ "reflects": true
2735
+ },
2736
+ {
2737
+ "kind": "field",
2738
+ "name": "value",
2739
+ "description": "Read only, returns the selected value. (if multiple: in a comma separated string)",
2740
+ "readonly": true
2741
+ },
2742
+ {
2743
+ "kind": "field",
2744
+ "name": "_selectedOptions",
2745
+ "type": {
2746
+ "text": "array"
2747
+ },
2748
+ "default": "[]"
2749
+ }
2750
+ ],
2751
+ "events": [
2752
+ {
2753
+ "description": "Fired when the selected option(s) changes",
2754
+ "name": "change"
2755
+ },
2756
+ {
2757
+ "description": "Fired when the select is invalid",
2758
+ "name": "invalid"
2759
+ },
2760
+ {
2761
+ "description": "Fired when the form is reset",
2762
+ "name": "reset"
2763
+ },
2764
+ {
2765
+ "description": "{detail: {expanded: boolean}} Fired when the select dropdown is toggled",
2766
+ "name": "skf-select:dropdown"
2767
+ },
2768
+ {
2769
+ "description": "{detail: {value: string | null, option: SkfSelectOption}} Fired when the select dropdown is toggled",
2770
+ "name": "skf-select-option:select"
2771
+ }
2772
+ ],
2773
+ "attributes": [
2774
+ {
2775
+ "type": {
2776
+ "text": "boolean"
2777
+ },
2778
+ "description": "If true, the select is disabled\t`default: false`",
2779
+ "name": "disabled"
2780
+ },
2781
+ {
2782
+ "name": "button-label",
2783
+ "type": {
2784
+ "text": "string"
2785
+ },
2786
+ "default": "'Select an option'",
2787
+ "description": "Sets the first visible text on the component",
2788
+ "fieldName": "buttonLabel"
2789
+ },
2790
+ {
2791
+ "name": "custom-invalid",
2792
+ "type": {
2793
+ "text": "string | undefined"
2794
+ },
2795
+ "description": "If defined, forces component to invalid state until removed",
2796
+ "fieldName": "customInvalid"
2797
+ },
2798
+ {
2799
+ "name": "hide-label",
2800
+ "type": {
2801
+ "text": "boolean | undefined"
2802
+ },
2803
+ "description": "If true, hides the label visually",
2804
+ "fieldName": "hideLabel"
2805
+ },
2806
+ {
2807
+ "name": "hide-tags",
2808
+ "type": {
2809
+ "text": "boolean | undefined"
2810
+ },
2811
+ "description": "If true and mulltiple is true, no tags are displayed under the select",
2812
+ "fieldName": "hideTags"
2813
+ },
2814
+ {
2815
+ "name": "hint",
2816
+ "type": {
2817
+ "text": "string | undefined"
2818
+ },
2819
+ "description": "If defined, sets the hint text under the select component in the form",
2820
+ "fieldName": "hint"
2821
+ },
2822
+ {
2823
+ "name": "label",
2824
+ "type": {
2825
+ "text": "string | undefined"
2826
+ },
2827
+ "description": "If defined, displays provided label",
2828
+ "fieldName": "label"
2829
+ },
2830
+ {
2831
+ "name": "max",
2832
+ "type": {
2833
+ "text": "number | undefined"
2834
+ },
2835
+ "description": "If defined, limits the number of selectable options",
2836
+ "fieldName": "max"
2837
+ },
2838
+ {
2839
+ "name": "min",
2840
+ "type": {
2841
+ "text": "number | undefined"
2842
+ },
2843
+ "description": "If defined, sets the minimum number of required options",
2844
+ "fieldName": "min"
2845
+ },
2846
+ {
2847
+ "name": "multiple",
2848
+ "type": {
2849
+ "text": "boolean | undefined"
2850
+ },
2851
+ "description": "If true, allows for multiple options to be selected",
2852
+ "fieldName": "multiple"
2853
+ },
2854
+ {
2855
+ "name": "name",
2856
+ "type": {
2857
+ "text": "string | undefined"
2858
+ },
2859
+ "description": "If defined, set name of the component",
2860
+ "fieldName": "name"
2861
+ },
2862
+ {
2863
+ "name": "required-label",
2864
+ "type": {
2865
+ "text": "string | undefined"
2866
+ },
2867
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2868
+ "fieldName": "requiredLabel"
2869
+ },
2870
+ {
2871
+ "name": "severity",
2872
+ "type": {
2873
+ "text": "FormFieldBaseProps['severity'] | undefined"
2874
+ },
2875
+ "description": "If defined, displays provided severity state",
2876
+ "fieldName": "severity"
2877
+ },
2878
+ {
2879
+ "name": "show-valid",
2880
+ "type": {
2881
+ "text": "boolean | undefined"
2882
+ },
2883
+ "description": "If true, displays valid state after interaction",
2884
+ "fieldName": "showValid"
2885
+ },
2886
+ {
2887
+ "name": "size",
2888
+ "type": {
2889
+ "text": "'sm' | 'md'"
2890
+ },
2891
+ "default": "'md'",
2892
+ "description": "Size of the Select",
2893
+ "fieldName": "size"
2894
+ }
2895
+ ],
2896
+ "superclass": {
2897
+ "name": "FormBase",
2898
+ "package": "@internal/components/formBase.js"
2899
+ },
2900
+ "tagName": "skf-select",
2901
+ "customElement": true
2902
+ }
2903
+ ],
2904
+ "exports": [
2905
+ {
2906
+ "kind": "js",
2907
+ "name": "SkfSelect",
2908
+ "declaration": {
2909
+ "name": "SkfSelect",
2910
+ "module": "src/components/select/select.component.ts"
2911
+ }
2912
+ }
2913
+ ]
2914
+ },
2915
+ {
2916
+ "kind": "javascript-module",
2917
+ "path": "src/components/select-option/select-option.component.ts",
2918
+ "declarations": [
2919
+ {
2920
+ "kind": "class",
2921
+ "description": "The `<skf-select-option>` is a component is used nested in a skf-select or skf-select-option-group.",
2922
+ "name": "SkfSelectOption",
2923
+ "slots": [
2924
+ {
2925
+ "description": "The option's text content",
2926
+ "name": ""
2927
+ },
2928
+ {
2929
+ "description": "The option's slot for icon or custom meta information (svg).",
2930
+ "name": "icon"
2931
+ }
2932
+ ],
2933
+ "members": [
2934
+ {
2935
+ "kind": "field",
2936
+ "name": "shadowRootOptions",
2937
+ "type": {
2938
+ "text": "object"
2939
+ },
2940
+ "static": true,
2941
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
2942
+ },
2943
+ {
2944
+ "kind": "field",
2945
+ "name": "disabled",
2946
+ "type": {
2947
+ "text": "boolean | undefined"
2948
+ },
2949
+ "description": "If true, prevents interaction with the option",
2950
+ "attribute": "disabled",
2951
+ "reflects": true
2952
+ },
2953
+ {
2954
+ "kind": "field",
2955
+ "name": "icon",
2956
+ "type": {
2957
+ "text": "SkfIcon['name'] | undefined"
2958
+ },
2959
+ "description": "If defined, set an icon",
2960
+ "attribute": "icon",
2961
+ "reflects": true
2962
+ },
2963
+ {
2964
+ "kind": "field",
2965
+ "name": "iconColor",
2966
+ "type": {
2967
+ "text": "SeverityFgColor | undefined"
2968
+ },
2969
+ "description": "If defined, sets provided color on the icon",
2970
+ "attribute": "icon-color",
2971
+ "reflects": true
2972
+ },
2973
+ {
2974
+ "kind": "field",
2975
+ "name": "selected",
2976
+ "type": {
2977
+ "text": "boolean | undefined"
2978
+ },
2979
+ "description": "If true, sets the option as selected",
2980
+ "attribute": "selected",
2981
+ "reflects": true
2982
+ },
2983
+ {
2984
+ "kind": "field",
2985
+ "name": "shortLabel",
2986
+ "type": {
2987
+ "text": "string | undefined"
2988
+ },
2989
+ "description": "If defined, sets a short label",
2990
+ "attribute": "short-label",
2991
+ "reflects": true
2992
+ },
2993
+ {
2994
+ "kind": "field",
2995
+ "name": "text",
2996
+ "description": "The option's label text (equivalent to the tags textContent)"
2997
+ },
2998
+ {
2999
+ "kind": "field",
3000
+ "name": "value",
3001
+ "description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
3002
+ "attribute": "value",
3003
+ "reflects": true
3004
+ },
3005
+ {
3006
+ "kind": "field",
3007
+ "name": "role",
3008
+ "type": {
3009
+ "text": "string"
3010
+ },
3011
+ "default": "'option'"
3012
+ },
3013
+ {
3014
+ "kind": "field",
3015
+ "name": "_parent"
3016
+ },
3017
+ {
3018
+ "kind": "field",
3019
+ "name": "_shortcutUpdate",
3020
+ "type": {
3021
+ "text": "boolean"
3022
+ },
3023
+ "default": "false"
3024
+ }
3025
+ ],
3026
+ "events": [
3027
+ {
3028
+ "description": "{detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.",
3029
+ "name": "skf-select-option:select"
3030
+ }
3031
+ ],
3032
+ "attributes": [
3033
+ {
3034
+ "name": "disabled",
3035
+ "type": {
3036
+ "text": "boolean | undefined"
3037
+ },
3038
+ "description": "If true, prevents interaction with the option",
3039
+ "fieldName": "disabled"
3040
+ },
3041
+ {
3042
+ "name": "icon",
3043
+ "type": {
3044
+ "text": "SkfIcon['name'] | undefined"
3045
+ },
3046
+ "description": "If defined, set an icon",
3047
+ "fieldName": "icon"
3048
+ },
3049
+ {
3050
+ "name": "icon-color",
3051
+ "type": {
3052
+ "text": "SeverityFgColor | undefined"
3053
+ },
3054
+ "description": "If defined, sets provided color on the icon",
3055
+ "fieldName": "iconColor"
3056
+ },
3057
+ {
3058
+ "name": "selected",
3059
+ "type": {
3060
+ "text": "boolean | undefined"
3061
+ },
3062
+ "description": "If true, sets the option as selected",
3063
+ "fieldName": "selected"
3064
+ },
3065
+ {
3066
+ "name": "short-label",
3067
+ "type": {
3068
+ "text": "string | undefined"
3069
+ },
3070
+ "description": "If defined, sets a short label",
3071
+ "fieldName": "shortLabel"
3072
+ },
3073
+ {
3074
+ "name": "value",
3075
+ "description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
3076
+ "fieldName": "value"
3077
+ }
3078
+ ],
3079
+ "superclass": {
3080
+ "name": "SkfElement",
3081
+ "package": "@internal/components/skf-element.js"
3082
+ },
3083
+ "tagName": "skf-select-option",
3084
+ "customElement": true
3085
+ }
3086
+ ],
3087
+ "exports": [
3088
+ {
3089
+ "kind": "js",
3090
+ "name": "SkfSelectOption",
3091
+ "declaration": {
3092
+ "name": "SkfSelectOption",
3093
+ "module": "src/components/select-option/select-option.component.ts"
3094
+ }
3095
+ }
3096
+ ]
3097
+ },
3098
+ {
3099
+ "kind": "javascript-module",
3100
+ "path": "src/components/select-option-group/select-option-group.component.ts",
3101
+ "declarations": [
3102
+ {
3103
+ "kind": "class",
3104
+ "description": "The `<skf-select-option-group>` is a component that groups select-options",
3105
+ "name": "SkfSelectOptionGroup",
3106
+ "slots": [
3107
+ {
3108
+ "description": "The component's placeholder content",
3109
+ "name": ""
3110
+ }
3111
+ ],
3112
+ "members": [
3113
+ {
3114
+ "kind": "field",
3115
+ "name": "label",
3116
+ "type": {
3117
+ "text": "string"
3118
+ },
3119
+ "default": "'Default label'",
3120
+ "attribute": "label",
3121
+ "reflects": true
3122
+ }
3123
+ ],
3124
+ "attributes": [
3125
+ {
3126
+ "name": "label",
3127
+ "type": {
3128
+ "text": "string"
3129
+ },
3130
+ "default": "'Default label'",
3131
+ "fieldName": "label"
3132
+ }
3133
+ ],
3134
+ "superclass": {
3135
+ "name": "SkfElement",
3136
+ "package": "@internal/components/skf-element"
3137
+ },
3138
+ "tagName": "skf-select-option-group",
3139
+ "customElement": true
3140
+ }
3141
+ ],
3142
+ "exports": [
3143
+ {
3144
+ "kind": "js",
3145
+ "name": "SkfSelectOptionGroup",
3146
+ "declaration": {
3147
+ "name": "SkfSelectOptionGroup",
3148
+ "module": "src/components/select-option-group/select-option-group.component.ts"
3149
+ }
3150
+ }
3151
+ ]
3152
+ },
2521
3153
  {
2522
3154
  "kind": "javascript-module",
2523
3155
  "path": "src/components/switch/switch.component.ts",
@@ -2528,11 +3160,20 @@
2528
3160
  "name": "SkfSwitch",
2529
3161
  "slots": [
2530
3162
  {
2531
- "description": "The component's placeholder content",
3163
+ "description": "The Switchs label. Alternatively, you can use the `label` attribute.",
2532
3164
  "name": ""
2533
3165
  }
2534
3166
  ],
2535
3167
  "members": [
3168
+ {
3169
+ "kind": "field",
3170
+ "name": "_initialChecked",
3171
+ "type": {
3172
+ "text": "boolean | undefined"
3173
+ },
3174
+ "privacy": "private",
3175
+ "default": "false"
3176
+ },
2536
3177
  {
2537
3178
  "kind": "field",
2538
3179
  "name": "debug",
@@ -2568,7 +3209,7 @@
2568
3209
  "type": {
2569
3210
  "text": "string | undefined"
2570
3211
  },
2571
- "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
3212
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2572
3213
  "attribute": "label"
2573
3214
  },
2574
3215
  {
@@ -2659,7 +3300,7 @@
2659
3300
  "type": {
2660
3301
  "text": "string | undefined"
2661
3302
  },
2662
- "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
3303
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2663
3304
  "fieldName": "label"
2664
3305
  },
2665
3306
  {
@@ -2731,6 +3372,22 @@
2731
3372
  }
2732
3373
  ],
2733
3374
  "members": [
3375
+ {
3376
+ "kind": "field",
3377
+ "name": "_onClick",
3378
+ "type": {
3379
+ "text": "(event: Event) => void | undefined"
3380
+ },
3381
+ "privacy": "private"
3382
+ },
3383
+ {
3384
+ "kind": "field",
3385
+ "name": "_onRemove",
3386
+ "type": {
3387
+ "text": "(event: Event) => void | undefined"
3388
+ },
3389
+ "privacy": "protected"
3390
+ },
2734
3391
  {
2735
3392
  "kind": "field",
2736
3393
  "name": "size",
@@ -2738,7 +3395,7 @@
2738
3395
  "text": "'sm' | 'md' | 'lg'"
2739
3396
  },
2740
3397
  "default": "'md'",
2741
- "description": "Specifies Tag size -",
3398
+ "description": "Specifies Tag size",
2742
3399
  "attribute": "size",
2743
3400
  "reflects": true
2744
3401
  },
@@ -2748,7 +3405,7 @@
2748
3405
  "type": {
2749
3406
  "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
3407
  },
2751
- "description": "If defined, displays leading/provided icon -",
3408
+ "description": "If defined, displays leading/provided icon",
2752
3409
  "attribute": "icon"
2753
3410
  },
2754
3411
  {
@@ -2757,10 +3414,20 @@
2757
3414
  "type": {
2758
3415
  "text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
2759
3416
  },
2760
- "description": "If defined, gives the supplied appearance -",
3417
+ "description": "If defined, gives the supplied appearance",
2761
3418
  "attribute": "color",
2762
3419
  "reflects": true
2763
3420
  },
3421
+ {
3422
+ "kind": "field",
3423
+ "name": "onClick",
3424
+ "description": "If defined, accepts a function that runs on click"
3425
+ },
3426
+ {
3427
+ "kind": "field",
3428
+ "name": "onRemove",
3429
+ "description": "If defined, accepts a function that runs on click. Self removal can be overridden by using `event.stopPropagation()`."
3430
+ },
2764
3431
  {
2765
3432
  "kind": "field",
2766
3433
  "name": "removable",
@@ -2768,7 +3435,24 @@
2768
3435
  "text": "boolean | undefined"
2769
3436
  },
2770
3437
  "description": "If true, adds trailing button to remove tag",
2771
- "attribute": "removable"
3438
+ "attribute": "removable",
3439
+ "reflects": true
3440
+ },
3441
+ {
3442
+ "kind": "field",
3443
+ "name": "_handleKeyDown",
3444
+ "privacy": "protected"
3445
+ },
3446
+ {
3447
+ "kind": "field",
3448
+ "name": "_handleRemove",
3449
+ "privacy": "protected",
3450
+ "description": "run externally provided callback (if any) first. Let click propagate to handleClick."
3451
+ },
3452
+ {
3453
+ "kind": "field",
3454
+ "name": "_handleClick",
3455
+ "privacy": "protected"
2772
3456
  }
2773
3457
  ],
2774
3458
  "attributes": [
@@ -2778,7 +3462,7 @@
2778
3462
  "text": "'sm' | 'md' | 'lg'"
2779
3463
  },
2780
3464
  "default": "'md'",
2781
- "description": "Specifies Tag size -",
3465
+ "description": "Specifies Tag size",
2782
3466
  "fieldName": "size"
2783
3467
  },
2784
3468
  {
@@ -2786,7 +3470,7 @@
2786
3470
  "type": {
2787
3471
  "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
3472
  },
2789
- "description": "If defined, displays leading/provided icon -",
3473
+ "description": "If defined, displays leading/provided icon",
2790
3474
  "fieldName": "icon"
2791
3475
  },
2792
3476
  {
@@ -2794,7 +3478,7 @@
2794
3478
  "type": {
2795
3479
  "text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
2796
3480
  },
2797
- "description": "If defined, gives the supplied appearance -",
3481
+ "description": "If defined, gives the supplied appearance",
2798
3482
  "fieldName": "color"
2799
3483
  },
2800
3484
  {
@@ -2835,8 +3519,8 @@
2835
3519
  "name": "SkfTextArea",
2836
3520
  "slots": [
2837
3521
  {
2838
- "description": "textareas label. Alternatively, you can use the `label` attribute.",
2839
- "name": "The"
3522
+ "description": "The textareas label. Alternatively, you can use the `label` attribute.",
3523
+ "name": ""
2840
3524
  }
2841
3525
  ],
2842
3526
  "members": [
@@ -2852,16 +3536,15 @@
2852
3536
  "kind": "field",
2853
3537
  "name": "cols",
2854
3538
  "type": {
2855
- "text": "number"
3539
+ "text": "number | undefined"
2856
3540
  },
2857
- "default": "20",
2858
- "description": "If provided, sets the cols of the textarea",
3541
+ "description": "If defined, sets the cols of the textarea",
2859
3542
  "attribute": "cols"
2860
3543
  },
2861
3544
  {
2862
3545
  "kind": "field",
2863
3546
  "name": "customInvalid",
2864
- "description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
3547
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
2865
3548
  "attribute": "custom-invalid",
2866
3549
  "reflects": true
2867
3550
  },
@@ -2869,20 +3552,18 @@
2869
3552
  "kind": "field",
2870
3553
  "name": "debug",
2871
3554
  "type": {
2872
- "text": "boolean"
3555
+ "text": "boolean | undefined"
2873
3556
  },
2874
- "default": "false",
2875
- "description": "If provided, outputs helping hints in console",
3557
+ "description": "If true, outputs helping hints in console",
2876
3558
  "attribute": "debug"
2877
3559
  },
2878
3560
  {
2879
3561
  "kind": "field",
2880
3562
  "name": "hideLabel",
2881
3563
  "type": {
2882
- "text": "boolean"
3564
+ "text": "boolean | undefined"
2883
3565
  },
2884
- "default": "false",
2885
- "description": "hide-label - If true, hides the label visually",
3566
+ "description": "If true, hides the label visually",
2886
3567
  "attribute": "hide-label"
2887
3568
  },
2888
3569
  {
@@ -2891,17 +3572,16 @@
2891
3572
  "type": {
2892
3573
  "text": "string | undefined"
2893
3574
  },
2894
- "description": "If provided, displays informational text below the field",
3575
+ "description": "If defined, displays informational text below the field",
2895
3576
  "attribute": "hint"
2896
3577
  },
2897
3578
  {
2898
3579
  "kind": "field",
2899
3580
  "name": "label",
2900
3581
  "type": {
2901
- "text": "string"
3582
+ "text": "string | undefined"
2902
3583
  },
2903
- "default": "'Default label'",
2904
- "description": "The input's label. Alternatively, you can use the component slot.",
3584
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2905
3585
  "attribute": "label"
2906
3586
  },
2907
3587
  {
@@ -2910,7 +3590,7 @@
2910
3590
  "type": {
2911
3591
  "text": "string | undefined"
2912
3592
  },
2913
- "description": "If provided, adds name to the input-element",
3593
+ "description": "If defined, adds name to the input-element",
2914
3594
  "attribute": "name"
2915
3595
  },
2916
3596
  {
@@ -2919,7 +3599,7 @@
2919
3599
  "type": {
2920
3600
  "text": "number | undefined"
2921
3601
  },
2922
- "description": "If provided, sets the maximum character length to accept for this input",
3602
+ "description": "If defined, sets the maximum character length to accept for this input",
2923
3603
  "attribute": "maxlength"
2924
3604
  },
2925
3605
  {
@@ -2928,7 +3608,7 @@
2928
3608
  "type": {
2929
3609
  "text": "number | undefined"
2930
3610
  },
2931
- "description": "If provided, sets the minimum character length to accept for this input",
3611
+ "description": "If defined, sets the minimum character length to accept for this input",
2932
3612
  "attribute": "minlength"
2933
3613
  },
2934
3614
  {
@@ -2937,7 +3617,7 @@
2937
3617
  "type": {
2938
3618
  "text": "string | undefined"
2939
3619
  },
2940
- "description": "If provided, displays placeholder text",
3620
+ "description": "If defined, displays placeholder text",
2941
3621
  "attribute": "placeholder"
2942
3622
  },
2943
3623
  {
@@ -2955,26 +3635,25 @@
2955
3635
  "type": {
2956
3636
  "text": "string | undefined"
2957
3637
  },
2958
- "description": "If provided, renders an alternative A11y text for the asterisk",
3638
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2959
3639
  "attribute": "required-label"
2960
3640
  },
2961
3641
  {
2962
3642
  "kind": "field",
2963
3643
  "name": "rows",
2964
3644
  "type": {
2965
- "text": "number"
3645
+ "text": "number | undefined"
2966
3646
  },
2967
- "default": "2",
2968
- "description": "If provided, sets the rows of the textarea",
3647
+ "description": "If defined, sets the rows of the textarea",
2969
3648
  "attribute": "rows"
2970
3649
  },
2971
3650
  {
2972
3651
  "kind": "field",
2973
3652
  "name": "severity",
2974
3653
  "type": {
2975
- "text": "\"success\" | \"error\""
3654
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
2976
3655
  },
2977
- "description": "If provided, displays provided severity state",
3656
+ "description": "If defined, displays provided severity state",
2978
3657
  "attribute": "severity"
2979
3658
  },
2980
3659
  {
@@ -2993,7 +3672,7 @@
2993
3672
  "text": "'sm' | 'md' | undefined"
2994
3673
  },
2995
3674
  "default": "'md'",
2996
- "description": "If provided, displays an alternative size",
3675
+ "description": "Size of the Textarea",
2997
3676
  "attribute": "size",
2998
3677
  "reflects": true
2999
3678
  },
@@ -3001,10 +3680,10 @@
3001
3680
  "kind": "field",
3002
3681
  "name": "validateOn",
3003
3682
  "type": {
3004
- "text": "'input' | 'change' | 'submit' | undefined"
3683
+ "text": "'input' | 'change' | 'submit'"
3005
3684
  },
3006
3685
  "default": "'change'",
3007
- "description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
3686
+ "description": "Sets validation start",
3008
3687
  "attribute": "validate-on"
3009
3688
  },
3010
3689
  {
@@ -3046,33 +3725,30 @@
3046
3725
  {
3047
3726
  "name": "cols",
3048
3727
  "type": {
3049
- "text": "number"
3728
+ "text": "number | undefined"
3050
3729
  },
3051
- "default": "20",
3052
- "description": "If provided, sets the cols of the textarea",
3730
+ "description": "If defined, sets the cols of the textarea",
3053
3731
  "fieldName": "cols"
3054
3732
  },
3055
3733
  {
3056
3734
  "name": "custom-invalid",
3057
- "description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
3735
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
3058
3736
  "fieldName": "customInvalid"
3059
3737
  },
3060
3738
  {
3061
3739
  "name": "debug",
3062
3740
  "type": {
3063
- "text": "boolean"
3741
+ "text": "boolean | undefined"
3064
3742
  },
3065
- "default": "false",
3066
- "description": "If provided, outputs helping hints in console",
3743
+ "description": "If true, outputs helping hints in console",
3067
3744
  "fieldName": "debug"
3068
3745
  },
3069
3746
  {
3070
3747
  "name": "hide-label",
3071
3748
  "type": {
3072
- "text": "boolean"
3749
+ "text": "boolean | undefined"
3073
3750
  },
3074
- "default": "false",
3075
- "description": "hide-label - If true, hides the label visually",
3751
+ "description": "If true, hides the label visually",
3076
3752
  "fieldName": "hideLabel"
3077
3753
  },
3078
3754
  {
@@ -3080,16 +3756,15 @@
3080
3756
  "type": {
3081
3757
  "text": "string | undefined"
3082
3758
  },
3083
- "description": "If provided, displays informational text below the field",
3759
+ "description": "If defined, displays informational text below the field",
3084
3760
  "fieldName": "hint"
3085
3761
  },
3086
3762
  {
3087
3763
  "name": "label",
3088
3764
  "type": {
3089
- "text": "string"
3765
+ "text": "string | undefined"
3090
3766
  },
3091
- "default": "'Default label'",
3092
- "description": "The input's label. Alternatively, you can use the component slot.",
3767
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
3093
3768
  "fieldName": "label"
3094
3769
  },
3095
3770
  {
@@ -3097,7 +3772,7 @@
3097
3772
  "type": {
3098
3773
  "text": "string | undefined"
3099
3774
  },
3100
- "description": "If provided, adds name to the input-element",
3775
+ "description": "If defined, adds name to the input-element",
3101
3776
  "fieldName": "name"
3102
3777
  },
3103
3778
  {
@@ -3105,7 +3780,7 @@
3105
3780
  "type": {
3106
3781
  "text": "number | undefined"
3107
3782
  },
3108
- "description": "If provided, sets the maximum character length to accept for this input",
3783
+ "description": "If defined, sets the maximum character length to accept for this input",
3109
3784
  "fieldName": "maxLength"
3110
3785
  },
3111
3786
  {
@@ -3113,7 +3788,7 @@
3113
3788
  "type": {
3114
3789
  "text": "number | undefined"
3115
3790
  },
3116
- "description": "If provided, sets the minimum character length to accept for this input",
3791
+ "description": "If defined, sets the minimum character length to accept for this input",
3117
3792
  "fieldName": "minLength"
3118
3793
  },
3119
3794
  {
@@ -3121,7 +3796,7 @@
3121
3796
  "type": {
3122
3797
  "text": "string | undefined"
3123
3798
  },
3124
- "description": "If provided, displays placeholder text",
3799
+ "description": "If defined, displays placeholder text",
3125
3800
  "fieldName": "placeholder"
3126
3801
  },
3127
3802
  {
@@ -3137,24 +3812,23 @@
3137
3812
  "type": {
3138
3813
  "text": "string | undefined"
3139
3814
  },
3140
- "description": "If provided, renders an alternative A11y text for the asterisk",
3815
+ "description": "If defined, renders an alternative A11y text for the asterisk",
3141
3816
  "fieldName": "requiredLabel"
3142
3817
  },
3143
3818
  {
3144
3819
  "name": "rows",
3145
3820
  "type": {
3146
- "text": "number"
3821
+ "text": "number | undefined"
3147
3822
  },
3148
- "default": "2",
3149
- "description": "If provided, sets the rows of the textarea",
3823
+ "description": "If defined, sets the rows of the textarea",
3150
3824
  "fieldName": "rows"
3151
3825
  },
3152
3826
  {
3153
3827
  "name": "severity",
3154
3828
  "type": {
3155
- "text": "\"success\" | \"error\""
3829
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
3156
3830
  },
3157
- "description": "If provided, displays provided severity state",
3831
+ "description": "If defined, displays provided severity state",
3158
3832
  "fieldName": "severity"
3159
3833
  },
3160
3834
  {
@@ -3171,16 +3845,16 @@
3171
3845
  "text": "'sm' | 'md' | undefined"
3172
3846
  },
3173
3847
  "default": "'md'",
3174
- "description": "If provided, displays an alternative size",
3848
+ "description": "Size of the Textarea",
3175
3849
  "fieldName": "size"
3176
3850
  },
3177
3851
  {
3178
3852
  "name": "validate-on",
3179
3853
  "type": {
3180
- "text": "'input' | 'change' | 'submit' | undefined"
3854
+ "text": "'input' | 'change' | 'submit'"
3181
3855
  },
3182
3856
  "default": "'change'",
3183
- "description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
3857
+ "description": "Sets validation start",
3184
3858
  "fieldName": "validateOn"
3185
3859
  },
3186
3860
  {