@skf-design-system/ui-components 0.0.1-beta.3 → 1.0.0-beta.3

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 (105) 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 -5
  6. package/dist/components/alert/alert.component.js +61 -0
  7. package/dist/components/alert/alert.js +6 -0
  8. package/dist/components/alert/alert.styles.js +63 -0
  9. package/dist/components/button/button.component.js +1 -1
  10. package/dist/components/button/button.styles.js +1 -1
  11. package/dist/components/card/card.component.d.ts +3 -3
  12. package/dist/components/card/card.component.js +16 -19
  13. package/dist/components/card/card.styles.js +11 -3
  14. package/dist/components/checkbox/checkbox.component.d.ts +9 -6
  15. package/dist/components/checkbox/checkbox.component.js +8 -8
  16. package/dist/components/checkbox/checkbox.styles.js +1 -1
  17. package/dist/components/checkbox/checkbox.test.d.ts +1 -0
  18. package/dist/components/collapse/collapse.component.d.ts +9 -6
  19. package/dist/components/collapse/collapse.component.js +39 -36
  20. package/dist/components/collapse/collapse.styles.js +3 -3
  21. package/dist/components/collapse/collapse.test.d.ts +1 -0
  22. package/dist/components/divider/divider.component.d.ts +13 -10
  23. package/dist/components/divider/divider.component.js +34 -29
  24. package/dist/components/divider/divider.styles.js +1 -5
  25. package/dist/components/heading/heading.component.d.ts +12 -2
  26. package/dist/components/heading/heading.component.js +34 -0
  27. package/dist/components/heading/heading.js +6 -0
  28. package/dist/components/heading/heading.styles.js +62 -0
  29. package/dist/components/icon/icon.component.d.ts +14 -8
  30. package/dist/components/icon/icon.component.js +6 -6
  31. package/dist/components/icon/icon.styles.js +1 -1
  32. package/dist/components/input/input.component.d.ts +34 -29
  33. package/dist/components/input/input.component.js +36 -36
  34. package/dist/components/link/link.component.d.ts +15 -12
  35. package/dist/components/link/link.component.js +7 -7
  36. package/dist/components/link/link.styles.js +1 -1
  37. package/dist/components/loader/loader.component.d.ts +7 -7
  38. package/dist/components/loader/loader.component.js +35 -61
  39. package/dist/components/loader/loader.styles.js +42 -10
  40. package/dist/components/logo/logo.component.d.ts +5 -3
  41. package/dist/components/logo/logo.component.js +8 -8
  42. package/dist/components/logo/logo.styles.js +2 -2
  43. package/dist/components/radio/radio.component.d.ts +15 -13
  44. package/dist/components/radio/radio.component.js +3 -3
  45. package/dist/components/radio/radio.styles.js +3 -3
  46. package/dist/components/select/select.component.d.ts +137 -0
  47. package/dist/components/select/select.component.js +311 -0
  48. package/dist/components/select/select.controllers.d.ts +59 -0
  49. package/dist/components/select/select.controllers.js +169 -0
  50. package/dist/components/select/select.d.ts +8 -0
  51. package/dist/components/select/select.js +6 -0
  52. package/dist/components/select/select.styles.d.ts +1 -0
  53. package/dist/components/select/select.styles.js +116 -0
  54. package/dist/components/select-option/select-option.component.d.ts +77 -0
  55. package/dist/components/select-option/select-option.component.js +117 -0
  56. package/dist/components/select-option/select-option.controllers.d.ts +9 -0
  57. package/dist/components/select-option/select-option.d.ts +8 -0
  58. package/dist/components/select-option/select-option.js +6 -0
  59. package/dist/components/select-option/select-option.styles.d.ts +1 -0
  60. package/dist/components/select-option/select-option.styles.js +53 -0
  61. package/dist/components/select-option-group/select-option-group.component.d.ts +16 -0
  62. package/dist/components/select-option-group/select-option-group.component.js +31 -0
  63. package/dist/components/select-option-group/select-option-group.d.ts +8 -0
  64. package/dist/components/select-option-group/select-option-group.js +6 -0
  65. package/dist/components/select-option-group/select-option-group.style.d.ts +1 -0
  66. package/dist/components/select-option-group/select-option-group.style.js +18 -0
  67. package/dist/components/switch/switch.component.d.ts +2 -3
  68. package/dist/components/switch/switch.component.js +106 -0
  69. package/dist/components/switch/switch.js +6 -0
  70. package/dist/components/switch/switch.styles.js +80 -0
  71. package/dist/components/switch/switch.test.d.ts +1 -0
  72. package/dist/components/tag/tag.component.d.ts +25 -4
  73. package/dist/components/tag/tag.component.js +66 -29
  74. package/dist/components/tag/tag.styles.js +6 -5
  75. package/dist/components/textarea/textarea.component.d.ts +26 -23
  76. package/dist/components/textarea/textarea.component.js +15 -12
  77. package/dist/custom-elements.json +960 -305
  78. package/dist/index.d.ts +6 -0
  79. package/dist/index.js +48 -30
  80. package/dist/internal/components/formBase.d.ts +18 -1
  81. package/dist/internal/components/formBase.js +25 -13
  82. package/dist/internal/components/skf-element.d.ts +4 -4
  83. package/dist/internal/components/skf-element.js +15 -19
  84. package/dist/internal/helpers/array.d.ts +4 -0
  85. package/dist/internal/helpers/findMatchingTags.d.ts +2 -0
  86. package/dist/internal/helpers/findMatchingTags.js +12 -0
  87. package/dist/internal/helpers/hintSeverity.d.ts +2 -0
  88. package/dist/internal/helpers/hintSeverity.js +6 -0
  89. package/dist/internal/helpers/raiseError.d.ts +28 -0
  90. package/dist/internal/helpers/raiseError.js +29 -0
  91. package/dist/internal/storybook/shadowRootTraverser.d.ts +16 -6
  92. package/dist/react/index.d.ts +3 -0
  93. package/dist/react/index.js +3 -0
  94. package/dist/react/skf-select/index.d.ts +21 -0
  95. package/dist/react/skf-select/index.js +21 -0
  96. package/dist/react/skf-select-option/index.d.ts +9 -0
  97. package/dist/react/skf-select-option/index.js +17 -0
  98. package/dist/react/skf-select-option-group/index.d.ts +3 -0
  99. package/dist/react/skf-select-option-group/index.js +13 -0
  100. package/dist/styles/form-field.styles.js +7 -7
  101. package/dist/types/jsx/custom-element-jsx.d.ts +290 -140
  102. package/dist/types/vue/index.d.ts +223 -90
  103. package/dist/vscode.html-custom-data.json +294 -97
  104. package/dist/web-types.json +614 -242
  105. 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": [
@@ -660,22 +655,11 @@
660
655
  "description": "If defined, renders an alternative A11y text for the asterisk",
661
656
  "attribute": "required-label"
662
657
  },
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
658
  {
675
659
  "kind": "field",
676
660
  "name": "severity",
677
661
  "type": {
678
- "text": "FormFieldBaseProps['severity'] | undefined"
662
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
679
663
  },
680
664
  "description": "If defined, styles checkbox using provided severity",
681
665
  "attribute": "severity",
@@ -687,9 +671,20 @@
687
671
  "type": {
688
672
  "text": "boolean | undefined"
689
673
  },
690
- "description": "If defined, displays valid state after interaction",
674
+ "description": "If true, displays valid state after interaction",
691
675
  "attribute": "show-valid"
692
676
  },
677
+ {
678
+ "kind": "field",
679
+ "name": "size",
680
+ "type": {
681
+ "text": "'sm' | 'md'"
682
+ },
683
+ "default": "'md'",
684
+ "description": "Size of the checkbox",
685
+ "attribute": "size",
686
+ "reflects": true
687
+ },
693
688
  {
694
689
  "kind": "field",
695
690
  "name": "value",
@@ -790,19 +785,10 @@
790
785
  "description": "If defined, renders an alternative A11y text for the asterisk",
791
786
  "fieldName": "requiredLabel"
792
787
  },
793
- {
794
- "name": "size",
795
- "type": {
796
- "text": "'sm' | 'md'"
797
- },
798
- "default": "'md'",
799
- "description": "Size of the checkbox",
800
- "fieldName": "size"
801
- },
802
788
  {
803
789
  "name": "severity",
804
790
  "type": {
805
- "text": "FormFieldBaseProps['severity'] | undefined"
791
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
806
792
  },
807
793
  "description": "If defined, styles checkbox using provided severity",
808
794
  "fieldName": "severity"
@@ -812,9 +798,18 @@
812
798
  "type": {
813
799
  "text": "boolean | undefined"
814
800
  },
815
- "description": "If defined, displays valid state after interaction",
801
+ "description": "If true, displays valid state after interaction",
816
802
  "fieldName": "showValid"
817
803
  },
804
+ {
805
+ "name": "size",
806
+ "type": {
807
+ "text": "'sm' | 'md'"
808
+ },
809
+ "default": "'md'",
810
+ "description": "Size of the checkbox",
811
+ "fieldName": "size"
812
+ },
818
813
  {
819
814
  "name": "value",
820
815
  "type": {
@@ -850,7 +845,7 @@
850
845
  "declarations": [
851
846
  {
852
847
  "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.",
848
+ "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
849
  "name": "SkfCollapse",
855
850
  "slots": [
856
851
  {
@@ -863,9 +858,8 @@
863
858
  "kind": "field",
864
859
  "name": "animated",
865
860
  "type": {
866
- "text": "boolean"
861
+ "text": "boolean | undefined"
867
862
  },
868
- "default": "false",
869
863
  "description": "If true, will animate the expand/collapse state",
870
864
  "attribute": "animated",
871
865
  "reflects": true
@@ -874,9 +868,8 @@
874
868
  "kind": "field",
875
869
  "name": "expanded",
876
870
  "type": {
877
- "text": "boolean"
871
+ "text": "boolean | undefined"
878
872
  },
879
- "default": "false",
880
873
  "description": "If true, will set the collapse to be expanded by default",
881
874
  "attribute": "expanded",
882
875
  "reflects": true
@@ -894,19 +887,18 @@
894
887
  "kind": "field",
895
888
  "name": "headingAs",
896
889
  "type": {
897
- "text": "Exclude<HeadingType, 'h1'>"
890
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
898
891
  },
899
892
  "default": "'h2'",
900
- "description": "Controls which heading element will be rendered",
893
+ "description": "Defines which heading element will be rendered",
901
894
  "attribute": "heading-as"
902
895
  },
903
896
  {
904
897
  "kind": "field",
905
898
  "name": "small",
906
899
  "type": {
907
- "text": "boolean"
900
+ "text": "boolean | undefined"
908
901
  },
909
- "default": "false",
910
902
  "description": "If true, renders the small version",
911
903
  "attribute": "small",
912
904
  "reflects": true
@@ -915,9 +907,8 @@
915
907
  "kind": "field",
916
908
  "name": "truncate",
917
909
  "type": {
918
- "text": "boolean"
910
+ "text": "boolean | undefined"
919
911
  },
920
- "default": "false",
921
912
  "description": "If true, will truncate the heading in collapsed state",
922
913
  "attribute": "truncate",
923
914
  "reflects": true
@@ -946,18 +937,16 @@
946
937
  {
947
938
  "name": "animated",
948
939
  "type": {
949
- "text": "boolean"
940
+ "text": "boolean | undefined"
950
941
  },
951
- "default": "false",
952
942
  "description": "If true, will animate the expand/collapse state",
953
943
  "fieldName": "animated"
954
944
  },
955
945
  {
956
946
  "name": "expanded",
957
947
  "type": {
958
- "text": "boolean"
948
+ "text": "boolean | undefined"
959
949
  },
960
- "default": "false",
961
950
  "description": "If true, will set the collapse to be expanded by default",
962
951
  "fieldName": "expanded"
963
952
  },
@@ -972,27 +961,25 @@
972
961
  {
973
962
  "name": "heading-as",
974
963
  "type": {
975
- "text": "Exclude<HeadingType, 'h1'>"
964
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
976
965
  },
977
966
  "default": "'h2'",
978
- "description": "Controls which heading element will be rendered",
967
+ "description": "Defines which heading element will be rendered",
979
968
  "fieldName": "headingAs"
980
969
  },
981
970
  {
982
971
  "name": "small",
983
972
  "type": {
984
- "text": "boolean"
973
+ "text": "boolean | undefined"
985
974
  },
986
- "default": "false",
987
975
  "description": "If true, renders the small version",
988
976
  "fieldName": "small"
989
977
  },
990
978
  {
991
979
  "name": "truncate",
992
980
  "type": {
993
- "text": "boolean"
981
+ "text": "boolean | undefined"
994
982
  },
995
- "default": "false",
996
983
  "description": "If true, will truncate the heading in collapsed state",
997
984
  "fieldName": "truncate"
998
985
  }
@@ -1022,7 +1009,7 @@
1022
1009
  "declarations": [
1023
1010
  {
1024
1011
  "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.",
1012
+ "description": "The `<Divider>` component can separate items from each other, to visually emphasize their lack of a relationship between groups of information",
1026
1013
  "name": "SkfDivider",
1027
1014
  "cssProperties": [
1028
1015
  {
@@ -1035,6 +1022,14 @@
1035
1022
  }
1036
1023
  ],
1037
1024
  "members": [
1025
+ {
1026
+ "kind": "field",
1027
+ "name": "#internals",
1028
+ "privacy": "private",
1029
+ "type": {
1030
+ "text": "ElementInternals"
1031
+ }
1032
+ },
1038
1033
  {
1039
1034
  "kind": "field",
1040
1035
  "name": "color",
@@ -1042,7 +1037,7 @@
1042
1037
  "text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
1043
1038
  },
1044
1039
  "default": "'primary'",
1045
- "description": "If provided, alters the Divider color",
1040
+ "description": "Defines the Divider color",
1046
1041
  "attribute": "color",
1047
1042
  "reflects": true
1048
1043
  },
@@ -1050,9 +1045,8 @@
1050
1045
  "kind": "field",
1051
1046
  "name": "decorative",
1052
1047
  "type": {
1053
- "text": "boolean"
1048
+ "text": "boolean | undefined"
1054
1049
  },
1055
- "default": "false",
1056
1050
  "description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
1057
1051
  "attribute": "decorative"
1058
1052
  },
@@ -1060,9 +1054,8 @@
1060
1054
  "kind": "field",
1061
1055
  "name": "vertical",
1062
1056
  "type": {
1063
- "text": "boolean"
1057
+ "text": "boolean | undefined"
1064
1058
  },
1065
- "default": "false",
1066
1059
  "description": "If true, renders the divider vertically",
1067
1060
  "attribute": "vertical",
1068
1061
  "reflects": true
@@ -1075,24 +1068,22 @@
1075
1068
  "text": "\"emphasised\" | \"primary\" | \"secondary\" | \"tertiary\" | \"inverse\""
1076
1069
  },
1077
1070
  "default": "'primary'",
1078
- "description": "If provided, alters the Divider color",
1071
+ "description": "Defines the Divider color",
1079
1072
  "fieldName": "color"
1080
1073
  },
1081
1074
  {
1082
1075
  "name": "decorative",
1083
1076
  "type": {
1084
- "text": "boolean"
1077
+ "text": "boolean | undefined"
1085
1078
  },
1086
- "default": "false",
1087
1079
  "description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
1088
1080
  "fieldName": "decorative"
1089
1081
  },
1090
1082
  {
1091
1083
  "name": "vertical",
1092
1084
  "type": {
1093
- "text": "boolean"
1085
+ "text": "boolean | undefined"
1094
1086
  },
1095
- "default": "false",
1096
1087
  "description": "If true, renders the divider vertically",
1097
1088
  "fieldName": "vertical"
1098
1089
  }
@@ -1124,15 +1115,21 @@
1124
1115
  "kind": "class",
1125
1116
  "description": "The `<Heading>` component is to deliniate content on a page. When using, take note not to skip heading levels.<br>\nIt extends the interface of native html `<h1>` to `<h4>` elements.",
1126
1117
  "name": "SkfHeading",
1118
+ "slots": [
1119
+ {
1120
+ "description": "The headings content",
1121
+ "name": ""
1122
+ }
1123
+ ],
1127
1124
  "members": [
1128
1125
  {
1129
1126
  "kind": "field",
1130
1127
  "name": "as",
1131
1128
  "type": {
1132
- "text": "HeadingType"
1129
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1133
1130
  },
1134
1131
  "default": "'h1'",
1135
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance.",
1132
+ "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
1136
1133
  "attribute": "as",
1137
1134
  "reflects": true
1138
1135
  },
@@ -1140,7 +1137,7 @@
1140
1137
  "kind": "field",
1141
1138
  "name": "styledAs",
1142
1139
  "type": {
1143
- "text": "HeadingType | undefined"
1140
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1144
1141
  },
1145
1142
  "description": "If provided, changes the appearance of the heading",
1146
1143
  "attribute": "styled-as"
@@ -1150,16 +1147,16 @@
1150
1147
  {
1151
1148
  "name": "as",
1152
1149
  "type": {
1153
- "text": "HeadingType"
1150
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1154
1151
  },
1155
1152
  "default": "'h1'",
1156
- "description": "Controls which heading element will be rendered. Should not be used to affect appearance.",
1153
+ "description": "Controls which heading element will be rendered. Should not be used to affect appearance",
1157
1154
  "fieldName": "as"
1158
1155
  },
1159
1156
  {
1160
1157
  "name": "styled-as",
1161
1158
  "type": {
1162
- "text": "HeadingType | undefined"
1159
+ "text": "\"h1\" | \"h2\" | \"h3\" | \"h4\""
1163
1160
  },
1164
1161
  "description": "If provided, changes the appearance of the heading",
1165
1162
  "fieldName": "styledAs"
@@ -1193,6 +1190,15 @@
1193
1190
  "description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text",
1194
1191
  "name": "SkfIcon",
1195
1192
  "members": [
1193
+ {
1194
+ "kind": "field",
1195
+ "name": "_rootId",
1196
+ "type": {
1197
+ "text": "string"
1198
+ },
1199
+ "privacy": "private",
1200
+ "default": "'root'"
1201
+ },
1196
1202
  {
1197
1203
  "kind": "field",
1198
1204
  "name": "color",
@@ -1200,6 +1206,7 @@
1200
1206
  "text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
1201
1207
  },
1202
1208
  "default": "'primary'",
1209
+ "description": "Sets the color of the icon",
1203
1210
  "attribute": "color",
1204
1211
  "reflects": true
1205
1212
  },
@@ -1209,7 +1216,7 @@
1209
1216
  "type": {
1210
1217
  "text": "string | undefined"
1211
1218
  },
1212
- "description": "If provided, adds an alternate description to use for assistive devices",
1219
+ "description": "If defined, adds an alternate description to use for assistive devices",
1213
1220
  "attribute": "label"
1214
1221
  },
1215
1222
  {
@@ -1218,6 +1225,7 @@
1218
1225
  "type": {
1219
1226
  "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
1220
1227
  },
1228
+ "description": "Name of the icon to display",
1221
1229
  "attribute": "name"
1222
1230
  },
1223
1231
  {
@@ -1227,8 +1235,19 @@
1227
1235
  "text": "\"xs\" | \"sm\" | \"md\" | \"lg\""
1228
1236
  },
1229
1237
  "default": "'md'",
1238
+ "description": "Size of the icon",
1230
1239
  "attribute": "size",
1231
1240
  "reflects": true
1241
+ },
1242
+ {
1243
+ "kind": "field",
1244
+ "name": "renderDecorativeIcon",
1245
+ "privacy": "private"
1246
+ },
1247
+ {
1248
+ "kind": "field",
1249
+ "name": "renderInformativeIcon",
1250
+ "privacy": "private"
1232
1251
  }
1233
1252
  ],
1234
1253
  "attributes": [
@@ -1238,6 +1257,7 @@
1238
1257
  "text": "\"primary\" | \"inverse\" | \"emphasised\" | \"secondary\" | \"success\" | \"info\" | \"warning\" | \"error\" | \"alert\""
1239
1258
  },
1240
1259
  "default": "'primary'",
1260
+ "description": "Sets the color of the icon",
1241
1261
  "fieldName": "color"
1242
1262
  },
1243
1263
  {
@@ -1245,7 +1265,7 @@
1245
1265
  "type": {
1246
1266
  "text": "string | undefined"
1247
1267
  },
1248
- "description": "If provided, adds an alternate description to use for assistive devices",
1268
+ "description": "If defined, adds an alternate description to use for assistive devices",
1249
1269
  "fieldName": "label"
1250
1270
  },
1251
1271
  {
@@ -1253,6 +1273,7 @@
1253
1273
  "type": {
1254
1274
  "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
1255
1275
  },
1276
+ "description": "Name of the icon to display",
1256
1277
  "fieldName": "name"
1257
1278
  },
1258
1279
  {
@@ -1261,6 +1282,7 @@
1261
1282
  "text": "\"xs\" | \"sm\" | \"md\" | \"lg\""
1262
1283
  },
1263
1284
  "default": "'md'",
1285
+ "description": "Size of the icon",
1264
1286
  "fieldName": "size"
1265
1287
  }
1266
1288
  ],
@@ -1293,8 +1315,8 @@
1293
1315
  "name": "SkfInput",
1294
1316
  "slots": [
1295
1317
  {
1296
- "description": " Alternatively, you can use the `label` attribute",
1297
- "name": "Default"
1318
+ "description": "The Inputs label. Alternatively, you can use the `label` attribute.",
1319
+ "name": ""
1298
1320
  }
1299
1321
  ],
1300
1322
  "members": [
@@ -1313,7 +1335,7 @@
1313
1335
  "text": "string"
1314
1336
  },
1315
1337
  "default": "'Clear input'",
1316
- "description": "If provided, renders a custom aria-label for the clear button **Notice!** Only applicable to type=search.",
1338
+ "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
1317
1339
  "attribute": "button-aria-label-clear"
1318
1340
  },
1319
1341
  {
@@ -1323,7 +1345,7 @@
1323
1345
  "text": "string"
1324
1346
  },
1325
1347
  "default": "'Hide password'",
1326
- "description": "If provided, renders a custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
1348
+ "description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
1327
1349
  "attribute": "button-aria-label-hide"
1328
1350
  },
1329
1351
  {
@@ -1333,13 +1355,13 @@
1333
1355
  "text": "string"
1334
1356
  },
1335
1357
  "default": "'Show password'",
1336
- "description": "If provided, renders a custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
1358
+ "description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
1337
1359
  "attribute": "button-aria-label-show"
1338
1360
  },
1339
1361
  {
1340
1362
  "kind": "field",
1341
1363
  "name": "customInvalid",
1342
- "description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
1364
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
1343
1365
  "attribute": "custom-invalid",
1344
1366
  "reflects": true
1345
1367
  },
@@ -1347,19 +1369,17 @@
1347
1369
  "kind": "field",
1348
1370
  "name": "debug",
1349
1371
  "type": {
1350
- "text": "boolean"
1372
+ "text": "boolean | undefined"
1351
1373
  },
1352
- "default": "false",
1353
- "description": "If provided, outputs helping hints in console",
1374
+ "description": "If true, outputs helping hints in console",
1354
1375
  "attribute": "debug"
1355
1376
  },
1356
1377
  {
1357
1378
  "kind": "field",
1358
1379
  "name": "hideLabel",
1359
1380
  "type": {
1360
- "text": "boolean"
1381
+ "text": "boolean | undefined"
1361
1382
  },
1362
- "default": "false",
1363
1383
  "description": "If true, hides the label visually",
1364
1384
  "attribute": "hide-label"
1365
1385
  },
@@ -1369,7 +1389,7 @@
1369
1389
  "type": {
1370
1390
  "text": "string | undefined"
1371
1391
  },
1372
- "description": "If provided, displays informational text below the field",
1392
+ "description": "If defined, displays informational text below the field",
1373
1393
  "attribute": "hint"
1374
1394
  },
1375
1395
  {
@@ -1379,7 +1399,7 @@
1379
1399
  "text": "'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'"
1380
1400
  },
1381
1401
  "default": "'text'",
1382
- "description": "If provided, tells what keyboard to use if applicable",
1402
+ "description": "Tells what keyboard to use if applicable",
1383
1403
  "attribute": "inputmode"
1384
1404
  },
1385
1405
  {
@@ -1388,7 +1408,7 @@
1388
1408
  "type": {
1389
1409
  "text": "string | undefined"
1390
1410
  },
1391
- "description": "The input's label. Alternatively, you can use the `label` attribute.",
1411
+ "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
1392
1412
  "attribute": "label"
1393
1413
  },
1394
1414
  {
@@ -1397,7 +1417,7 @@
1397
1417
  "type": {
1398
1418
  "text": "string | undefined"
1399
1419
  },
1400
- "description": "If provided, displays a prefix/adornment before the input-element",
1420
+ "description": "If defined, displays a prefix/adornment before the input-element",
1401
1421
  "attribute": "leading"
1402
1422
  },
1403
1423
  {
@@ -1406,7 +1426,7 @@
1406
1426
  "type": {
1407
1427
  "text": "number | string | undefined"
1408
1428
  },
1409
- "description": "If provided, sets the maximum value to accept for this input",
1429
+ "description": "If defined, sets the maximum value to accept for this input",
1410
1430
  "attribute": "max"
1411
1431
  },
1412
1432
  {
@@ -1415,7 +1435,7 @@
1415
1435
  "type": {
1416
1436
  "text": "number | undefined"
1417
1437
  },
1418
- "description": "If provided, sets the maximum character length to accept for this input",
1438
+ "description": "If defined, sets the maximum character length to accept for this input",
1419
1439
  "attribute": "maxlength"
1420
1440
  },
1421
1441
  {
@@ -1424,7 +1444,7 @@
1424
1444
  "type": {
1425
1445
  "text": "number | string | undefined"
1426
1446
  },
1427
- "description": "If provided, sets the minimum value to accept for this input",
1447
+ "description": "If defined, sets the minimum value to accept for this input",
1428
1448
  "attribute": "min"
1429
1449
  },
1430
1450
  {
@@ -1433,7 +1453,7 @@
1433
1453
  "type": {
1434
1454
  "text": "number | undefined"
1435
1455
  },
1436
- "description": "If provided, sets the minimum character length to accept for this input",
1456
+ "description": "If defined, sets the minimum character length to accept for this input",
1437
1457
  "attribute": "minlength"
1438
1458
  },
1439
1459
  {
@@ -1442,7 +1462,7 @@
1442
1462
  "type": {
1443
1463
  "text": "string | undefined"
1444
1464
  },
1445
- "description": "If provided, adds name to the input-element",
1465
+ "description": "If defined, adds name to the input-element",
1446
1466
  "attribute": "name"
1447
1467
  },
1448
1468
  {
@@ -1451,7 +1471,7 @@
1451
1471
  "type": {
1452
1472
  "text": "string | undefined"
1453
1473
  },
1454
- "description": "If provided, adds name to the input-element",
1474
+ "description": "If defined, adds name to the input-element",
1455
1475
  "attribute": "pattern"
1456
1476
  },
1457
1477
  {
@@ -1460,7 +1480,7 @@
1460
1480
  "type": {
1461
1481
  "text": "string | undefined"
1462
1482
  },
1463
- "description": "If provided, displays placeholder text",
1483
+ "description": "If defined, displays placeholder text",
1464
1484
  "attribute": "placeholder"
1465
1485
  },
1466
1486
  {
@@ -1478,17 +1498,18 @@
1478
1498
  "type": {
1479
1499
  "text": "string | undefined"
1480
1500
  },
1481
- "description": "If provided, renders an alternative A11y text for the asterisk",
1501
+ "description": "If defined, renders an alternative A11y text for the asterisk",
1482
1502
  "attribute": "required-label"
1483
1503
  },
1484
1504
  {
1485
1505
  "kind": "field",
1486
1506
  "name": "severity",
1487
1507
  "type": {
1488
- "text": "FormFieldBaseProps['severity'] | undefined"
1508
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
1489
1509
  },
1490
- "description": "If provided, displays provided severity state",
1491
- "attribute": "severity"
1510
+ "description": "If defined, displays provided severity state",
1511
+ "attribute": "severity",
1512
+ "reflects": true
1492
1513
  },
1493
1514
  {
1494
1515
  "kind": "field",
@@ -1496,17 +1517,17 @@
1496
1517
  "type": {
1497
1518
  "text": "boolean | undefined"
1498
1519
  },
1499
- "description": "If provided, displays provided severity state",
1520
+ "description": "If true, displays valid state after interaction",
1500
1521
  "attribute": "show-valid"
1501
1522
  },
1502
1523
  {
1503
1524
  "kind": "field",
1504
1525
  "name": "size",
1505
1526
  "type": {
1506
- "text": "'sm' | 'md' | undefined"
1527
+ "text": "'sm' | 'md'"
1507
1528
  },
1508
1529
  "default": "'md'",
1509
- "description": "If provided, displays an alternative size",
1530
+ "description": "Size of the input",
1510
1531
  "attribute": "size",
1511
1532
  "reflects": true
1512
1533
  },
@@ -1516,27 +1537,27 @@
1516
1537
  "type": {
1517
1538
  "text": "string | undefined"
1518
1539
  },
1519
- "description": "If provided, displays a suffix/adornment after the input-element",
1540
+ "description": "If defined, displays a suffix/adornment after the input-element",
1520
1541
  "attribute": "trailing"
1521
1542
  },
1522
1543
  {
1523
1544
  "kind": "field",
1524
1545
  "name": "type",
1525
1546
  "type": {
1526
- "text": "Exclude<FormFieldBaseProps['type'], 'checkbox' | 'radio'> | undefined"
1547
+ "text": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
1527
1548
  },
1528
1549
  "default": "'text'",
1529
- "description": "If provided, changes the type of form control",
1550
+ "description": "Type of input control",
1530
1551
  "attribute": "type"
1531
1552
  },
1532
1553
  {
1533
1554
  "kind": "field",
1534
1555
  "name": "validateOn",
1535
1556
  "type": {
1536
- "text": "'input' | 'change' | 'submit' | undefined"
1557
+ "text": "'input' | 'change' | 'submit'"
1537
1558
  },
1538
1559
  "default": "'change'",
1539
- "description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
1560
+ "description": "Sets validation start",
1540
1561
  "attribute": "validate-on"
1541
1562
  },
1542
1563
  {
@@ -1548,16 +1569,6 @@
1548
1569
  "default": "''",
1549
1570
  "description": "The current value of the input field",
1550
1571
  "attribute": "value"
1551
- },
1552
- {
1553
- "kind": "field",
1554
- "name": "_numberController",
1555
- "default": "new InputNumberController(this)"
1556
- },
1557
- {
1558
- "kind": "field",
1559
- "name": "_passwordController",
1560
- "default": "new InputPasswordController(this)"
1561
1572
  }
1562
1573
  ],
1563
1574
  "events": [
@@ -1591,7 +1602,7 @@
1591
1602
  "text": "string"
1592
1603
  },
1593
1604
  "default": "'Clear input'",
1594
- "description": "If provided, renders a custom aria-label for the clear button **Notice!** Only applicable to type=search.",
1605
+ "description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
1595
1606
  "fieldName": "buttonAriaLabelClear"
1596
1607
  },
1597
1608
  {
@@ -1600,7 +1611,7 @@
1600
1611
  "text": "string"
1601
1612
  },
1602
1613
  "default": "'Hide password'",
1603
- "description": "If provided, renders a custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
1614
+ "description": "Custom aria-label for the visibility button. **Notice!** Only applicable to type=password.",
1604
1615
  "fieldName": "buttonAriaLabelHide"
1605
1616
  },
1606
1617
  {
@@ -1609,29 +1620,27 @@
1609
1620
  "text": "string"
1610
1621
  },
1611
1622
  "default": "'Show password'",
1612
- "description": "If provided, renders a custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
1623
+ "description": "Custom aria-label for the visibility button **Notice!** Only applicable to type=password.",
1613
1624
  "fieldName": "buttonAriaLabelShow"
1614
1625
  },
1615
1626
  {
1616
1627
  "name": "custom-invalid",
1617
- "description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
1628
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
1618
1629
  "fieldName": "customInvalid"
1619
1630
  },
1620
1631
  {
1621
1632
  "name": "debug",
1622
1633
  "type": {
1623
- "text": "boolean"
1634
+ "text": "boolean | undefined"
1624
1635
  },
1625
- "default": "false",
1626
- "description": "If provided, outputs helping hints in console",
1636
+ "description": "If true, outputs helping hints in console",
1627
1637
  "fieldName": "debug"
1628
1638
  },
1629
1639
  {
1630
1640
  "name": "hide-label",
1631
1641
  "type": {
1632
- "text": "boolean"
1642
+ "text": "boolean | undefined"
1633
1643
  },
1634
- "default": "false",
1635
1644
  "description": "If true, hides the label visually",
1636
1645
  "fieldName": "hideLabel"
1637
1646
  },
@@ -1640,7 +1649,7 @@
1640
1649
  "type": {
1641
1650
  "text": "string | undefined"
1642
1651
  },
1643
- "description": "If provided, displays informational text below the field",
1652
+ "description": "If defined, displays informational text below the field",
1644
1653
  "fieldName": "hint"
1645
1654
  },
1646
1655
  {
@@ -1649,7 +1658,7 @@
1649
1658
  "text": "'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'"
1650
1659
  },
1651
1660
  "default": "'text'",
1652
- "description": "If provided, tells what keyboard to use if applicable",
1661
+ "description": "Tells what keyboard to use if applicable",
1653
1662
  "fieldName": "inputmode"
1654
1663
  },
1655
1664
  {
@@ -1657,7 +1666,7 @@
1657
1666
  "type": {
1658
1667
  "text": "string | undefined"
1659
1668
  },
1660
- "description": "The input's label. Alternatively, you can use the `label` attribute.",
1669
+ "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
1661
1670
  "fieldName": "label"
1662
1671
  },
1663
1672
  {
@@ -1665,7 +1674,7 @@
1665
1674
  "type": {
1666
1675
  "text": "string | undefined"
1667
1676
  },
1668
- "description": "If provided, displays a prefix/adornment before the input-element",
1677
+ "description": "If defined, displays a prefix/adornment before the input-element",
1669
1678
  "fieldName": "leading"
1670
1679
  },
1671
1680
  {
@@ -1673,7 +1682,7 @@
1673
1682
  "type": {
1674
1683
  "text": "number | string | undefined"
1675
1684
  },
1676
- "description": "If provided, sets the maximum value to accept for this input",
1685
+ "description": "If defined, sets the maximum value to accept for this input",
1677
1686
  "fieldName": "max"
1678
1687
  },
1679
1688
  {
@@ -1681,7 +1690,7 @@
1681
1690
  "type": {
1682
1691
  "text": "number | undefined"
1683
1692
  },
1684
- "description": "If provided, sets the maximum character length to accept for this input",
1693
+ "description": "If defined, sets the maximum character length to accept for this input",
1685
1694
  "fieldName": "maxLength"
1686
1695
  },
1687
1696
  {
@@ -1689,7 +1698,7 @@
1689
1698
  "type": {
1690
1699
  "text": "number | string | undefined"
1691
1700
  },
1692
- "description": "If provided, sets the minimum value to accept for this input",
1701
+ "description": "If defined, sets the minimum value to accept for this input",
1693
1702
  "fieldName": "min"
1694
1703
  },
1695
1704
  {
@@ -1697,7 +1706,7 @@
1697
1706
  "type": {
1698
1707
  "text": "number | undefined"
1699
1708
  },
1700
- "description": "If provided, sets the minimum character length to accept for this input",
1709
+ "description": "If defined, sets the minimum character length to accept for this input",
1701
1710
  "fieldName": "minLength"
1702
1711
  },
1703
1712
  {
@@ -1705,7 +1714,7 @@
1705
1714
  "type": {
1706
1715
  "text": "string | undefined"
1707
1716
  },
1708
- "description": "If provided, adds name to the input-element",
1717
+ "description": "If defined, adds name to the input-element",
1709
1718
  "fieldName": "name"
1710
1719
  },
1711
1720
  {
@@ -1713,7 +1722,7 @@
1713
1722
  "type": {
1714
1723
  "text": "string | undefined"
1715
1724
  },
1716
- "description": "If provided, adds name to the input-element",
1725
+ "description": "If defined, adds name to the input-element",
1717
1726
  "fieldName": "pattern"
1718
1727
  },
1719
1728
  {
@@ -1721,7 +1730,7 @@
1721
1730
  "type": {
1722
1731
  "text": "string | undefined"
1723
1732
  },
1724
- "description": "If provided, displays placeholder text",
1733
+ "description": "If defined, displays placeholder text",
1725
1734
  "fieldName": "placeholder"
1726
1735
  },
1727
1736
  {
@@ -1737,15 +1746,15 @@
1737
1746
  "type": {
1738
1747
  "text": "string | undefined"
1739
1748
  },
1740
- "description": "If provided, renders an alternative A11y text for the asterisk",
1749
+ "description": "If defined, renders an alternative A11y text for the asterisk",
1741
1750
  "fieldName": "requiredLabel"
1742
1751
  },
1743
1752
  {
1744
1753
  "name": "severity",
1745
1754
  "type": {
1746
- "text": "FormFieldBaseProps['severity'] | undefined"
1755
+ "text": "\"alert\" | \"success\" | \"info\" | \"warning\""
1747
1756
  },
1748
- "description": "If provided, displays provided severity state",
1757
+ "description": "If defined, displays provided severity state",
1749
1758
  "fieldName": "severity"
1750
1759
  },
1751
1760
  {
@@ -1753,16 +1762,16 @@
1753
1762
  "type": {
1754
1763
  "text": "boolean | undefined"
1755
1764
  },
1756
- "description": "If provided, displays provided severity state",
1765
+ "description": "If true, displays valid state after interaction",
1757
1766
  "fieldName": "showValid"
1758
1767
  },
1759
1768
  {
1760
1769
  "name": "size",
1761
1770
  "type": {
1762
- "text": "'sm' | 'md' | undefined"
1771
+ "text": "'sm' | 'md'"
1763
1772
  },
1764
1773
  "default": "'md'",
1765
- "description": "If provided, displays an alternative size",
1774
+ "description": "Size of the input",
1766
1775
  "fieldName": "size"
1767
1776
  },
1768
1777
  {
@@ -1770,25 +1779,25 @@
1770
1779
  "type": {
1771
1780
  "text": "string | undefined"
1772
1781
  },
1773
- "description": "If provided, displays a suffix/adornment after the input-element",
1782
+ "description": "If defined, displays a suffix/adornment after the input-element",
1774
1783
  "fieldName": "trailing"
1775
1784
  },
1776
1785
  {
1777
1786
  "name": "type",
1778
1787
  "type": {
1779
- "text": "Exclude<FormFieldBaseProps['type'], 'checkbox' | 'radio'> | undefined"
1788
+ "text": "'button' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'"
1780
1789
  },
1781
1790
  "default": "'text'",
1782
- "description": "If provided, changes the type of form control",
1791
+ "description": "Type of input control",
1783
1792
  "fieldName": "type"
1784
1793
  },
1785
1794
  {
1786
1795
  "name": "validate-on",
1787
1796
  "type": {
1788
- "text": "'input' | 'change' | 'submit' | undefined"
1797
+ "text": "'input' | 'change' | 'submit'"
1789
1798
  },
1790
1799
  "default": "'change'",
1791
- "description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
1800
+ "description": "Sets validation start",
1792
1801
  "fieldName": "validateOn"
1793
1802
  },
1794
1803
  {
@@ -1830,9 +1839,6 @@
1830
1839
  "name": "SkfLink",
1831
1840
  "slots": [
1832
1841
  {
1833
- "type": {
1834
- "text": "string"
1835
- },
1836
1842
  "description": "The links' main content",
1837
1843
  "name": ""
1838
1844
  }
@@ -1853,7 +1859,7 @@
1853
1859
  "text": "'button' | 'a'"
1854
1860
  },
1855
1861
  "default": "'a'",
1856
- "description": "Specifies semantic element to render -",
1862
+ "description": "Defines the semantic element to render",
1857
1863
  "attribute": "as",
1858
1864
  "reflects": true
1859
1865
  },
@@ -1864,6 +1870,7 @@
1864
1870
  "text": "'primary' | 'inverse'"
1865
1871
  },
1866
1872
  "default": "'primary'",
1873
+ "description": "Defines the text-color",
1867
1874
  "attribute": "color",
1868
1875
  "reflects": true
1869
1876
  },
@@ -1883,7 +1890,7 @@
1883
1890
  "type": {
1884
1891
  "text": "string | undefined"
1885
1892
  },
1886
- "description": "If provided, downloads the url",
1893
+ "description": "If defined, downloads the url",
1887
1894
  "attribute": "download"
1888
1895
  },
1889
1896
  {
@@ -1892,7 +1899,7 @@
1892
1899
  "type": {
1893
1900
  "text": "string | undefined"
1894
1901
  },
1895
- "description": "If provided, loads url on click",
1902
+ "description": "If defined, loads url on click",
1896
1903
  "attribute": "href",
1897
1904
  "reflects": true
1898
1905
  },
@@ -1902,7 +1909,7 @@
1902
1909
  "type": {
1903
1910
  "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
1904
1911
  },
1905
- "description": "If provided, renders an icon before or after the text",
1912
+ "description": "If defined, renders an icon before or after the text",
1906
1913
  "attribute": "icon"
1907
1914
  },
1908
1915
  {
@@ -1912,7 +1919,7 @@
1912
1919
  "text": "'left' | 'right'"
1913
1920
  },
1914
1921
  "default": "'left'",
1915
- "description": "Position of the icon in relation to the text -",
1922
+ "description": "Defines the position of the icon in relation to the text",
1916
1923
  "attribute": "icon-placement",
1917
1924
  "reflects": true
1918
1925
  },
@@ -1923,7 +1930,7 @@
1923
1930
  "text": "string"
1924
1931
  },
1925
1932
  "default": "'noreferrer noopener'",
1926
- "description": "Specifies the relationship of the target object to the link object -",
1933
+ "description": "Defines the relationship of the target object to the link object",
1927
1934
  "attribute": "rel"
1928
1935
  },
1929
1936
  {
@@ -1932,7 +1939,7 @@
1932
1939
  "type": {
1933
1940
  "text": "string | undefined"
1934
1941
  },
1935
- "description": "If provided, used on conjunction with onClick property, second argument",
1942
+ "description": "If defined, used on conjunction with onClick property, second argument",
1936
1943
  "attribute": "route",
1937
1944
  "reflects": true
1938
1945
  },
@@ -1952,7 +1959,7 @@
1952
1959
  "type": {
1953
1960
  "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
1954
1961
  },
1955
- "description": "If provided, specifies where to open the linked document",
1962
+ "description": "If defined, specifies where to open the linked document",
1956
1963
  "attribute": "target"
1957
1964
  },
1958
1965
  {
@@ -1962,7 +1969,7 @@
1962
1969
  "text": "'button' | 'submit' | 'reset'"
1963
1970
  },
1964
1971
  "default": "'button'",
1965
- "description": "Type of button -",
1972
+ "description": "Defines the type of button",
1966
1973
  "attribute": "type"
1967
1974
  },
1968
1975
  {
@@ -1981,7 +1988,7 @@
1981
1988
  "text": "'button' | 'a'"
1982
1989
  },
1983
1990
  "default": "'a'",
1984
- "description": "Specifies semantic element to render -",
1991
+ "description": "Defines the semantic element to render",
1985
1992
  "fieldName": "as"
1986
1993
  },
1987
1994
  {
@@ -1990,6 +1997,7 @@
1990
1997
  "text": "'primary' | 'inverse'"
1991
1998
  },
1992
1999
  "default": "'primary'",
2000
+ "description": "Defines the text-color",
1993
2001
  "fieldName": "color"
1994
2002
  },
1995
2003
  {
@@ -2005,7 +2013,7 @@
2005
2013
  "type": {
2006
2014
  "text": "string | undefined"
2007
2015
  },
2008
- "description": "If provided, downloads the url",
2016
+ "description": "If defined, downloads the url",
2009
2017
  "fieldName": "download"
2010
2018
  },
2011
2019
  {
@@ -2013,7 +2021,7 @@
2013
2021
  "type": {
2014
2022
  "text": "string | undefined"
2015
2023
  },
2016
- "description": "If provided, loads url on click",
2024
+ "description": "If defined, loads url on click",
2017
2025
  "fieldName": "href"
2018
2026
  },
2019
2027
  {
@@ -2021,7 +2029,7 @@
2021
2029
  "type": {
2022
2030
  "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
2023
2031
  },
2024
- "description": "If provided, renders an icon before or after the text",
2032
+ "description": "If defined, renders an icon before or after the text",
2025
2033
  "fieldName": "icon"
2026
2034
  },
2027
2035
  {
@@ -2030,7 +2038,7 @@
2030
2038
  "text": "'left' | 'right'"
2031
2039
  },
2032
2040
  "default": "'left'",
2033
- "description": "Position of the icon in relation to the text -",
2041
+ "description": "Defines the position of the icon in relation to the text",
2034
2042
  "fieldName": "iconPlacement"
2035
2043
  },
2036
2044
  {
@@ -2039,7 +2047,7 @@
2039
2047
  "text": "string"
2040
2048
  },
2041
2049
  "default": "'noreferrer noopener'",
2042
- "description": "Specifies the relationship of the target object to the link object -",
2050
+ "description": "Defines the relationship of the target object to the link object",
2043
2051
  "fieldName": "rel"
2044
2052
  },
2045
2053
  {
@@ -2047,7 +2055,7 @@
2047
2055
  "type": {
2048
2056
  "text": "string | undefined"
2049
2057
  },
2050
- "description": "If provided, used on conjunction with onClick property, second argument",
2058
+ "description": "If defined, used on conjunction with onClick property, second argument",
2051
2059
  "fieldName": "route"
2052
2060
  },
2053
2061
  {
@@ -2063,7 +2071,7 @@
2063
2071
  "type": {
2064
2072
  "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
2065
2073
  },
2066
- "description": "If provided, specifies where to open the linked document",
2074
+ "description": "If defined, specifies where to open the linked document",
2067
2075
  "fieldName": "target"
2068
2076
  },
2069
2077
  {
@@ -2072,7 +2080,7 @@
2072
2080
  "text": "'button' | 'submit' | 'reset'"
2073
2081
  },
2074
2082
  "default": "'button'",
2075
- "description": "Type of button -",
2083
+ "description": "Defines the type of button",
2076
2084
  "fieldName": "type"
2077
2085
  }
2078
2086
  ],
@@ -2101,9 +2109,17 @@
2101
2109
  "declarations": [
2102
2110
  {
2103
2111
  "kind": "class",
2104
- "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities.",
2112
+ "description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities",
2105
2113
  "name": "SkfLoader",
2106
2114
  "members": [
2115
+ {
2116
+ "kind": "field",
2117
+ "name": "#internals",
2118
+ "privacy": "private",
2119
+ "type": {
2120
+ "text": "ElementInternals"
2121
+ }
2122
+ },
2107
2123
  {
2108
2124
  "kind": "field",
2109
2125
  "name": "ariaLabel",
@@ -2111,6 +2127,7 @@
2111
2127
  "text": "string"
2112
2128
  },
2113
2129
  "default": "'Loading...'",
2130
+ "description": "Defines the aria-label",
2114
2131
  "attribute": "aria-label",
2115
2132
  "reflects": true
2116
2133
  },
@@ -2118,9 +2135,8 @@
2118
2135
  "kind": "field",
2119
2136
  "name": "invert",
2120
2137
  "type": {
2121
- "text": "boolean"
2138
+ "text": "boolean | undefined"
2122
2139
  },
2123
- "default": "false",
2124
2140
  "description": "If true, inverts the color (to be used on colored backgrounds)",
2125
2141
  "attribute": "invert"
2126
2142
  },
@@ -2131,9 +2147,25 @@
2131
2147
  "text": "'md' | 'sm' | undefined"
2132
2148
  },
2133
2149
  "default": "'md'",
2134
- "description": "If provided, displays an alternative size",
2150
+ "description": "Defines the size of the loader",
2135
2151
  "attribute": "size",
2136
2152
  "reflects": true
2153
+ },
2154
+ {
2155
+ "kind": "field",
2156
+ "name": "role",
2157
+ "type": {
2158
+ "text": "string"
2159
+ },
2160
+ "default": "'progressbar'"
2161
+ },
2162
+ {
2163
+ "kind": "field",
2164
+ "name": "ariaLive",
2165
+ "type": {
2166
+ "text": "string"
2167
+ },
2168
+ "default": "'polite'"
2137
2169
  }
2138
2170
  ],
2139
2171
  "attributes": [
@@ -2143,14 +2175,14 @@
2143
2175
  "text": "string"
2144
2176
  },
2145
2177
  "default": "'Loading...'",
2178
+ "description": "Defines the aria-label",
2146
2179
  "fieldName": "ariaLabel"
2147
2180
  },
2148
2181
  {
2149
2182
  "name": "invert",
2150
2183
  "type": {
2151
- "text": "boolean"
2184
+ "text": "boolean | undefined"
2152
2185
  },
2153
- "default": "false",
2154
2186
  "description": "If true, inverts the color (to be used on colored backgrounds)",
2155
2187
  "fieldName": "invert"
2156
2188
  },
@@ -2160,7 +2192,7 @@
2160
2192
  "text": "'md' | 'sm' | undefined"
2161
2193
  },
2162
2194
  "default": "'md'",
2163
- "description": "If provided, displays an alternative size",
2195
+ "description": "Defines the size of the loader",
2164
2196
  "fieldName": "size"
2165
2197
  }
2166
2198
  ],
@@ -2205,7 +2237,7 @@
2205
2237
  "text": "string"
2206
2238
  },
2207
2239
  "default": "'SKF logotype'",
2208
- "description": "The title of the logo",
2240
+ "description": "Defines the title of the logo",
2209
2241
  "attribute": "title"
2210
2242
  },
2211
2243
  {
@@ -2215,7 +2247,7 @@
2215
2247
  "text": "\"primary\" | \"secondary\" | \"inverse\""
2216
2248
  },
2217
2249
  "default": "'primary'",
2218
- "description": "If provided, sets color of the logo",
2250
+ "description": "If defined, sets color of the logo",
2219
2251
  "attribute": "color"
2220
2252
  }
2221
2253
  ],
@@ -2226,7 +2258,7 @@
2226
2258
  "text": "string"
2227
2259
  },
2228
2260
  "default": "'SKF logotype'",
2229
- "description": "The title of the logo",
2261
+ "description": "Defines the title of the logo",
2230
2262
  "fieldName": "title"
2231
2263
  },
2232
2264
  {
@@ -2235,7 +2267,7 @@
2235
2267
  "text": "\"primary\" | \"secondary\" | \"inverse\""
2236
2268
  },
2237
2269
  "default": "'primary'",
2238
- "description": "If provided, sets color of the logo",
2270
+ "description": "If defined, sets color of the logo",
2239
2271
  "fieldName": "color"
2240
2272
  }
2241
2273
  ],
@@ -2268,19 +2300,27 @@
2268
2300
  "name": "SkfRadio",
2269
2301
  "slots": [
2270
2302
  {
2271
- "description": " Alternatively, you can use the `label` attribute",
2272
- "name": "Default"
2303
+ "description": "The radios label. Alternatively, you can use the `label` attribute.",
2304
+ "name": ""
2273
2305
  }
2274
2306
  ],
2275
2307
  "members": [
2308
+ {
2309
+ "kind": "field",
2310
+ "name": "_initialChecked",
2311
+ "type": {
2312
+ "text": "boolean | undefined"
2313
+ },
2314
+ "privacy": "private",
2315
+ "default": "false"
2316
+ },
2276
2317
  {
2277
2318
  "kind": "field",
2278
2319
  "name": "debug",
2279
2320
  "type": {
2280
- "text": "boolean"
2321
+ "text": "boolean | undefined"
2281
2322
  },
2282
- "default": "false",
2283
- "description": "If provided, outputs helping hints in console",
2323
+ "description": "If true, outputs helping hints in console",
2284
2324
  "attribute": "debug"
2285
2325
  },
2286
2326
  {
@@ -2306,9 +2346,8 @@
2306
2346
  "kind": "field",
2307
2347
  "name": "hideLabel",
2308
2348
  "type": {
2309
- "text": "boolean"
2349
+ "text": "boolean | undefined"
2310
2350
  },
2311
- "default": "false",
2312
2351
  "description": "If true, hides the label visually",
2313
2352
  "attribute": "hide-label",
2314
2353
  "reflects": true
@@ -2319,7 +2358,7 @@
2319
2358
  "type": {
2320
2359
  "text": "string | undefined"
2321
2360
  },
2322
- "description": "The input's label. Alternatively, you can use the `label` attribute.",
2361
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2323
2362
  "attribute": "label"
2324
2363
  },
2325
2364
  {
@@ -2328,7 +2367,7 @@
2328
2367
  "type": {
2329
2368
  "text": "string | undefined"
2330
2369
  },
2331
- "description": "If provided, adds name to the input-element",
2370
+ "description": "If defined, adds name to the input-element",
2332
2371
  "attribute": "name"
2333
2372
  },
2334
2373
  {
@@ -2337,17 +2376,17 @@
2337
2376
  "type": {
2338
2377
  "text": "string | undefined"
2339
2378
  },
2340
- "description": "If provided, renders an alternative A11y text for the asterisk",
2379
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2341
2380
  "attribute": "required-label"
2342
2381
  },
2343
2382
  {
2344
2383
  "kind": "field",
2345
2384
  "name": "size",
2346
2385
  "type": {
2347
- "text": "'sm' | 'md' | undefined"
2386
+ "text": "'sm' | 'md'"
2348
2387
  },
2349
2388
  "default": "'md'",
2350
- "description": "If provided, displays an alternative size",
2389
+ "description": "Size of the Radio",
2351
2390
  "attribute": "size",
2352
2391
  "reflects": true
2353
2392
  },
@@ -2355,11 +2394,10 @@
2355
2394
  "kind": "field",
2356
2395
  "name": "severity",
2357
2396
  "type": {
2358
- "text": "FormFieldBaseProps['severity'] | undefined"
2397
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
2359
2398
  },
2360
- "description": "If provided, displays provided severity state",
2361
- "attribute": "severity",
2362
- "reflects": true
2399
+ "description": "If defined, displays provided severity state",
2400
+ "attribute": "severity"
2363
2401
  },
2364
2402
  {
2365
2403
  "kind": "field",
@@ -2367,7 +2405,7 @@
2367
2405
  "type": {
2368
2406
  "text": "boolean | undefined"
2369
2407
  },
2370
- "description": "If provided, displays valid state after interaction",
2408
+ "description": "If true, displays valid state after interaction",
2371
2409
  "attribute": "show-valid"
2372
2410
  },
2373
2411
  {
@@ -2409,10 +2447,9 @@
2409
2447
  {
2410
2448
  "name": "debug",
2411
2449
  "type": {
2412
- "text": "boolean"
2450
+ "text": "boolean | undefined"
2413
2451
  },
2414
- "default": "false",
2415
- "description": "If provided, outputs helping hints in console",
2452
+ "description": "If true, outputs helping hints in console",
2416
2453
  "fieldName": "debug"
2417
2454
  },
2418
2455
  {
@@ -2434,9 +2471,8 @@
2434
2471
  {
2435
2472
  "name": "hide-label",
2436
2473
  "type": {
2437
- "text": "boolean"
2474
+ "text": "boolean | undefined"
2438
2475
  },
2439
- "default": "false",
2440
2476
  "description": "If true, hides the label visually",
2441
2477
  "fieldName": "hideLabel"
2442
2478
  },
@@ -2445,7 +2481,7 @@
2445
2481
  "type": {
2446
2482
  "text": "string | undefined"
2447
2483
  },
2448
- "description": "The input's label. Alternatively, you can use the `label` attribute.",
2484
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2449
2485
  "fieldName": "label"
2450
2486
  },
2451
2487
  {
@@ -2453,7 +2489,7 @@
2453
2489
  "type": {
2454
2490
  "text": "string | undefined"
2455
2491
  },
2456
- "description": "If provided, adds name to the input-element",
2492
+ "description": "If defined, adds name to the input-element",
2457
2493
  "fieldName": "name"
2458
2494
  },
2459
2495
  {
@@ -2461,24 +2497,24 @@
2461
2497
  "type": {
2462
2498
  "text": "string | undefined"
2463
2499
  },
2464
- "description": "If provided, renders an alternative A11y text for the asterisk",
2500
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2465
2501
  "fieldName": "requiredLabel"
2466
2502
  },
2467
2503
  {
2468
2504
  "name": "size",
2469
2505
  "type": {
2470
- "text": "'sm' | 'md' | undefined"
2506
+ "text": "'sm' | 'md'"
2471
2507
  },
2472
2508
  "default": "'md'",
2473
- "description": "If provided, displays an alternative size",
2509
+ "description": "Size of the Radio",
2474
2510
  "fieldName": "size"
2475
2511
  },
2476
2512
  {
2477
2513
  "name": "severity",
2478
2514
  "type": {
2479
- "text": "FormFieldBaseProps['severity'] | undefined"
2515
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
2480
2516
  },
2481
- "description": "If provided, displays provided severity state",
2517
+ "description": "If defined, displays provided severity state",
2482
2518
  "fieldName": "severity"
2483
2519
  },
2484
2520
  {
@@ -2486,7 +2522,7 @@
2486
2522
  "type": {
2487
2523
  "text": "boolean | undefined"
2488
2524
  },
2489
- "description": "If provided, displays valid state after interaction",
2525
+ "description": "If true, displays valid state after interaction",
2490
2526
  "fieldName": "showValid"
2491
2527
  },
2492
2528
  {
@@ -2520,36 +2556,622 @@
2520
2556
  },
2521
2557
  {
2522
2558
  "kind": "javascript-module",
2523
- "path": "src/components/switch/switch.component.ts",
2559
+ "path": "src/components/select/select.component.ts",
2524
2560
  "declarations": [
2525
2561
  {
2526
2562
  "kind": "class",
2527
- "description": "The `<skf-switch>` is a component that displays a list of actions or options",
2528
- "name": "SkfSwitch",
2563
+ "description": "The `<skf-select>` is a component that displays a list of actions or options. A click in the options list toggle the selected state of the option. Use it together with the ´skf-select-option` tag.",
2564
+ "name": "SkfSelect",
2529
2565
  "slots": [
2530
2566
  {
2531
- "description": "The component's placeholder content",
2567
+ "description": "The select's placeholder content",
2532
2568
  "name": ""
2533
2569
  }
2534
2570
  ],
2535
2571
  "members": [
2536
2572
  {
2537
2573
  "kind": "field",
2538
- "name": "debug",
2574
+ "name": "buttonLabel",
2539
2575
  "type": {
2540
- "text": "boolean | undefined"
2576
+ "text": "string"
2541
2577
  },
2542
- "description": "If true, outputs helping hints in console",
2543
- "attribute": "debug"
2578
+ "default": "'Select an option'",
2579
+ "description": "Sets the first visible text on the component",
2580
+ "attribute": "button-label",
2581
+ "reflects": true
2544
2582
  },
2545
2583
  {
2546
2584
  "kind": "field",
2547
- "name": "checked",
2585
+ "name": "customInvalid",
2548
2586
  "type": {
2549
- "text": "boolean | undefined"
2587
+ "text": "string | undefined"
2550
2588
  },
2551
- "description": "If true, outputs helping hints in console",
2552
- "attribute": "checked",
2589
+ "description": "If defined, forces component to invalid state until removed",
2590
+ "attribute": "custom-invalid"
2591
+ },
2592
+ {
2593
+ "kind": "field",
2594
+ "name": "hideLabel",
2595
+ "type": {
2596
+ "text": "boolean | undefined"
2597
+ },
2598
+ "description": "If true, hides the label visually",
2599
+ "attribute": "hide-label"
2600
+ },
2601
+ {
2602
+ "kind": "field",
2603
+ "name": "hideTags",
2604
+ "type": {
2605
+ "text": "boolean | undefined"
2606
+ },
2607
+ "description": "If true and mulltiple is true, no tags are displayed under the select",
2608
+ "attribute": "hide-tags",
2609
+ "reflects": true
2610
+ },
2611
+ {
2612
+ "kind": "field",
2613
+ "name": "hint",
2614
+ "type": {
2615
+ "text": "string | undefined"
2616
+ },
2617
+ "description": "If defined, sets the hint text under the select component in the form",
2618
+ "attribute": "hint"
2619
+ },
2620
+ {
2621
+ "kind": "field",
2622
+ "name": "getSelectedValues",
2623
+ "description": "A readonly property that returns the selected value(s) in a array",
2624
+ "readonly": true
2625
+ },
2626
+ {
2627
+ "kind": "field",
2628
+ "name": "getSelectedOptionsText",
2629
+ "description": "A readonly property that returns the selected slot(s) text content in a array",
2630
+ "readonly": true
2631
+ },
2632
+ {
2633
+ "kind": "field",
2634
+ "name": "label",
2635
+ "type": {
2636
+ "text": "string | undefined"
2637
+ },
2638
+ "description": "If defined, displays provided label",
2639
+ "attribute": "label",
2640
+ "reflects": true
2641
+ },
2642
+ {
2643
+ "kind": "field",
2644
+ "name": "max",
2645
+ "type": {
2646
+ "text": "number | undefined"
2647
+ },
2648
+ "description": "If defined, limits the number of selectable options",
2649
+ "attribute": "max"
2650
+ },
2651
+ {
2652
+ "kind": "field",
2653
+ "name": "min",
2654
+ "type": {
2655
+ "text": "number | undefined"
2656
+ },
2657
+ "description": "If defined, sets the minimum number of required options",
2658
+ "attribute": "min"
2659
+ },
2660
+ {
2661
+ "kind": "field",
2662
+ "name": "multiple",
2663
+ "type": {
2664
+ "text": "boolean | undefined"
2665
+ },
2666
+ "description": "If true, allows for multiple options to be selected",
2667
+ "attribute": "multiple",
2668
+ "reflects": true
2669
+ },
2670
+ {
2671
+ "kind": "field",
2672
+ "name": "name",
2673
+ "type": {
2674
+ "text": "string | undefined"
2675
+ },
2676
+ "description": "If defined, set name of the component",
2677
+ "attribute": "name"
2678
+ },
2679
+ {
2680
+ "kind": "field",
2681
+ "name": "requiredLabel",
2682
+ "type": {
2683
+ "text": "string | undefined"
2684
+ },
2685
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2686
+ "attribute": "required-label"
2687
+ },
2688
+ {
2689
+ "kind": "field",
2690
+ "name": "severity",
2691
+ "type": {
2692
+ "text": "FormFieldBaseProps['severity'] | undefined"
2693
+ },
2694
+ "description": "If defined, displays provided severity state",
2695
+ "attribute": "severity"
2696
+ },
2697
+ {
2698
+ "kind": "field",
2699
+ "name": "showValid",
2700
+ "type": {
2701
+ "text": "boolean | undefined"
2702
+ },
2703
+ "description": "If true, displays valid state after interaction",
2704
+ "attribute": "show-valid"
2705
+ },
2706
+ {
2707
+ "kind": "field",
2708
+ "name": "size",
2709
+ "type": {
2710
+ "text": "'sm' | 'md'"
2711
+ },
2712
+ "default": "'md'",
2713
+ "description": "Size of the Select",
2714
+ "attribute": "size",
2715
+ "reflects": true
2716
+ },
2717
+ {
2718
+ "kind": "field",
2719
+ "name": "value",
2720
+ "description": "Read only, returns the selected value. (if multiple: in a comma separated string)",
2721
+ "readonly": true
2722
+ },
2723
+ {
2724
+ "kind": "field",
2725
+ "name": "_selectedOptions",
2726
+ "type": {
2727
+ "text": "array"
2728
+ },
2729
+ "default": "[]"
2730
+ }
2731
+ ],
2732
+ "events": [
2733
+ {
2734
+ "description": "Fired when the selected option(s) changes",
2735
+ "name": "change"
2736
+ },
2737
+ {
2738
+ "description": "Fired when the select is invalid",
2739
+ "name": "invalid"
2740
+ },
2741
+ {
2742
+ "description": "Fired when the form is reset",
2743
+ "name": "reset"
2744
+ },
2745
+ {
2746
+ "description": "{detail: {expanded: boolean}} Fired when the select dropdown is toggled",
2747
+ "name": "skf-select:dropdown"
2748
+ },
2749
+ {
2750
+ "description": "{detail: {value: string | null, option: SkfSelectOption}} Fired when the select dropdown is toggled",
2751
+ "name": "skf-select-option:select"
2752
+ }
2753
+ ],
2754
+ "attributes": [
2755
+ {
2756
+ "type": {
2757
+ "text": "boolean"
2758
+ },
2759
+ "description": "If true, the select is disabled\t`default: false`",
2760
+ "name": "disabled"
2761
+ },
2762
+ {
2763
+ "name": "button-label",
2764
+ "type": {
2765
+ "text": "string"
2766
+ },
2767
+ "default": "'Select an option'",
2768
+ "description": "Sets the first visible text on the component",
2769
+ "fieldName": "buttonLabel"
2770
+ },
2771
+ {
2772
+ "name": "custom-invalid",
2773
+ "type": {
2774
+ "text": "string | undefined"
2775
+ },
2776
+ "description": "If defined, forces component to invalid state until removed",
2777
+ "fieldName": "customInvalid"
2778
+ },
2779
+ {
2780
+ "name": "hide-label",
2781
+ "type": {
2782
+ "text": "boolean | undefined"
2783
+ },
2784
+ "description": "If true, hides the label visually",
2785
+ "fieldName": "hideLabel"
2786
+ },
2787
+ {
2788
+ "name": "hide-tags",
2789
+ "type": {
2790
+ "text": "boolean | undefined"
2791
+ },
2792
+ "description": "If true and mulltiple is true, no tags are displayed under the select",
2793
+ "fieldName": "hideTags"
2794
+ },
2795
+ {
2796
+ "name": "hint",
2797
+ "type": {
2798
+ "text": "string | undefined"
2799
+ },
2800
+ "description": "If defined, sets the hint text under the select component in the form",
2801
+ "fieldName": "hint"
2802
+ },
2803
+ {
2804
+ "name": "label",
2805
+ "type": {
2806
+ "text": "string | undefined"
2807
+ },
2808
+ "description": "If defined, displays provided label",
2809
+ "fieldName": "label"
2810
+ },
2811
+ {
2812
+ "name": "max",
2813
+ "type": {
2814
+ "text": "number | undefined"
2815
+ },
2816
+ "description": "If defined, limits the number of selectable options",
2817
+ "fieldName": "max"
2818
+ },
2819
+ {
2820
+ "name": "min",
2821
+ "type": {
2822
+ "text": "number | undefined"
2823
+ },
2824
+ "description": "If defined, sets the minimum number of required options",
2825
+ "fieldName": "min"
2826
+ },
2827
+ {
2828
+ "name": "multiple",
2829
+ "type": {
2830
+ "text": "boolean | undefined"
2831
+ },
2832
+ "description": "If true, allows for multiple options to be selected",
2833
+ "fieldName": "multiple"
2834
+ },
2835
+ {
2836
+ "name": "name",
2837
+ "type": {
2838
+ "text": "string | undefined"
2839
+ },
2840
+ "description": "If defined, set name of the component",
2841
+ "fieldName": "name"
2842
+ },
2843
+ {
2844
+ "name": "required-label",
2845
+ "type": {
2846
+ "text": "string | undefined"
2847
+ },
2848
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2849
+ "fieldName": "requiredLabel"
2850
+ },
2851
+ {
2852
+ "name": "severity",
2853
+ "type": {
2854
+ "text": "FormFieldBaseProps['severity'] | undefined"
2855
+ },
2856
+ "description": "If defined, displays provided severity state",
2857
+ "fieldName": "severity"
2858
+ },
2859
+ {
2860
+ "name": "show-valid",
2861
+ "type": {
2862
+ "text": "boolean | undefined"
2863
+ },
2864
+ "description": "If true, displays valid state after interaction",
2865
+ "fieldName": "showValid"
2866
+ },
2867
+ {
2868
+ "name": "size",
2869
+ "type": {
2870
+ "text": "'sm' | 'md'"
2871
+ },
2872
+ "default": "'md'",
2873
+ "description": "Size of the Select",
2874
+ "fieldName": "size"
2875
+ }
2876
+ ],
2877
+ "superclass": {
2878
+ "name": "FormBase",
2879
+ "package": "@internal/components/formBase.js"
2880
+ },
2881
+ "tagName": "skf-select",
2882
+ "customElement": true
2883
+ }
2884
+ ],
2885
+ "exports": [
2886
+ {
2887
+ "kind": "js",
2888
+ "name": "SkfSelect",
2889
+ "declaration": {
2890
+ "name": "SkfSelect",
2891
+ "module": "src/components/select/select.component.ts"
2892
+ }
2893
+ }
2894
+ ]
2895
+ },
2896
+ {
2897
+ "kind": "javascript-module",
2898
+ "path": "src/components/select-option/select-option.component.ts",
2899
+ "declarations": [
2900
+ {
2901
+ "kind": "class",
2902
+ "description": "The `<skf-select-option>` is a component is used nested in a skf-select or skf-select-option-group.",
2903
+ "name": "SkfSelectOption",
2904
+ "slots": [
2905
+ {
2906
+ "description": "The option's text content",
2907
+ "name": ""
2908
+ },
2909
+ {
2910
+ "description": "The option's slot for icon or custom meta information (svg).",
2911
+ "name": "icon"
2912
+ }
2913
+ ],
2914
+ "members": [
2915
+ {
2916
+ "kind": "field",
2917
+ "name": "shadowRootOptions",
2918
+ "type": {
2919
+ "text": "object"
2920
+ },
2921
+ "static": true,
2922
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
2923
+ },
2924
+ {
2925
+ "kind": "field",
2926
+ "name": "disabled",
2927
+ "type": {
2928
+ "text": "boolean | undefined"
2929
+ },
2930
+ "description": "If true, prevents interaction with the option",
2931
+ "attribute": "disabled",
2932
+ "reflects": true
2933
+ },
2934
+ {
2935
+ "kind": "field",
2936
+ "name": "icon",
2937
+ "type": {
2938
+ "text": "SkfIcon['name'] | undefined"
2939
+ },
2940
+ "description": "If defined, set an icon",
2941
+ "attribute": "icon",
2942
+ "reflects": true
2943
+ },
2944
+ {
2945
+ "kind": "field",
2946
+ "name": "iconColor",
2947
+ "type": {
2948
+ "text": "IconColor | undefined"
2949
+ },
2950
+ "description": "If defined, sets provided color on the icon",
2951
+ "attribute": "icon-color",
2952
+ "reflects": true
2953
+ },
2954
+ {
2955
+ "kind": "field",
2956
+ "name": "selected",
2957
+ "type": {
2958
+ "text": "boolean | undefined"
2959
+ },
2960
+ "description": "If true, sets the option as selected",
2961
+ "attribute": "selected",
2962
+ "reflects": true
2963
+ },
2964
+ {
2965
+ "kind": "field",
2966
+ "name": "shortLabel",
2967
+ "type": {
2968
+ "text": "string | undefined"
2969
+ },
2970
+ "description": "If defined, sets a short label",
2971
+ "attribute": "short-label",
2972
+ "reflects": true
2973
+ },
2974
+ {
2975
+ "kind": "field",
2976
+ "name": "text",
2977
+ "description": "The option's label text (equivalent to the tags textContent)"
2978
+ },
2979
+ {
2980
+ "kind": "field",
2981
+ "name": "value",
2982
+ "description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
2983
+ "attribute": "value",
2984
+ "reflects": true
2985
+ },
2986
+ {
2987
+ "kind": "field",
2988
+ "name": "role",
2989
+ "type": {
2990
+ "text": "string"
2991
+ },
2992
+ "default": "'option'"
2993
+ },
2994
+ {
2995
+ "kind": "field",
2996
+ "name": "_parent"
2997
+ },
2998
+ {
2999
+ "kind": "field",
3000
+ "name": "_shortcutUpdate",
3001
+ "type": {
3002
+ "text": "boolean"
3003
+ },
3004
+ "default": "false"
3005
+ }
3006
+ ],
3007
+ "events": [
3008
+ {
3009
+ "description": "{detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.",
3010
+ "name": "skf-select-option:select"
3011
+ }
3012
+ ],
3013
+ "attributes": [
3014
+ {
3015
+ "name": "disabled",
3016
+ "type": {
3017
+ "text": "boolean | undefined"
3018
+ },
3019
+ "description": "If true, prevents interaction with the option",
3020
+ "fieldName": "disabled"
3021
+ },
3022
+ {
3023
+ "name": "icon",
3024
+ "type": {
3025
+ "text": "SkfIcon['name'] | undefined"
3026
+ },
3027
+ "description": "If defined, set an icon",
3028
+ "fieldName": "icon"
3029
+ },
3030
+ {
3031
+ "name": "icon-color",
3032
+ "type": {
3033
+ "text": "IconColor | undefined"
3034
+ },
3035
+ "description": "If defined, sets provided color on the icon",
3036
+ "fieldName": "iconColor"
3037
+ },
3038
+ {
3039
+ "name": "selected",
3040
+ "type": {
3041
+ "text": "boolean | undefined"
3042
+ },
3043
+ "description": "If true, sets the option as selected",
3044
+ "fieldName": "selected"
3045
+ },
3046
+ {
3047
+ "name": "short-label",
3048
+ "type": {
3049
+ "text": "string | undefined"
3050
+ },
3051
+ "description": "If defined, sets a short label",
3052
+ "fieldName": "shortLabel"
3053
+ },
3054
+ {
3055
+ "name": "value",
3056
+ "description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
3057
+ "fieldName": "value"
3058
+ }
3059
+ ],
3060
+ "superclass": {
3061
+ "name": "SkfElement",
3062
+ "package": "@internal/components/skf-element.js"
3063
+ },
3064
+ "tagName": "skf-select-option",
3065
+ "customElement": true
3066
+ }
3067
+ ],
3068
+ "exports": [
3069
+ {
3070
+ "kind": "js",
3071
+ "name": "SkfSelectOption",
3072
+ "declaration": {
3073
+ "name": "SkfSelectOption",
3074
+ "module": "src/components/select-option/select-option.component.ts"
3075
+ }
3076
+ }
3077
+ ]
3078
+ },
3079
+ {
3080
+ "kind": "javascript-module",
3081
+ "path": "src/components/select-option-group/select-option-group.component.ts",
3082
+ "declarations": [
3083
+ {
3084
+ "kind": "class",
3085
+ "description": "The `<skf-select-option-group>` is a component that groups select-options",
3086
+ "name": "SkfSelectOptionGroup",
3087
+ "slots": [
3088
+ {
3089
+ "description": "The component's placeholder content",
3090
+ "name": ""
3091
+ }
3092
+ ],
3093
+ "members": [
3094
+ {
3095
+ "kind": "field",
3096
+ "name": "label",
3097
+ "type": {
3098
+ "text": "string"
3099
+ },
3100
+ "default": "'Default label'",
3101
+ "attribute": "label",
3102
+ "reflects": true
3103
+ }
3104
+ ],
3105
+ "attributes": [
3106
+ {
3107
+ "name": "label",
3108
+ "type": {
3109
+ "text": "string"
3110
+ },
3111
+ "default": "'Default label'",
3112
+ "fieldName": "label"
3113
+ }
3114
+ ],
3115
+ "superclass": {
3116
+ "name": "SkfElement",
3117
+ "package": "@internal/components/skf-element"
3118
+ },
3119
+ "tagName": "skf-select-option-group",
3120
+ "customElement": true
3121
+ }
3122
+ ],
3123
+ "exports": [
3124
+ {
3125
+ "kind": "js",
3126
+ "name": "SkfSelectOptionGroup",
3127
+ "declaration": {
3128
+ "name": "SkfSelectOptionGroup",
3129
+ "module": "src/components/select-option-group/select-option-group.component.ts"
3130
+ }
3131
+ }
3132
+ ]
3133
+ },
3134
+ {
3135
+ "kind": "javascript-module",
3136
+ "path": "src/components/switch/switch.component.ts",
3137
+ "declarations": [
3138
+ {
3139
+ "kind": "class",
3140
+ "description": "The `<skf-switch>` is a component that displays a list of actions or options",
3141
+ "name": "SkfSwitch",
3142
+ "slots": [
3143
+ {
3144
+ "description": "The Switchs label. Alternatively, you can use the `label` attribute.",
3145
+ "name": ""
3146
+ }
3147
+ ],
3148
+ "members": [
3149
+ {
3150
+ "kind": "field",
3151
+ "name": "_initialChecked",
3152
+ "type": {
3153
+ "text": "boolean | undefined"
3154
+ },
3155
+ "privacy": "private",
3156
+ "default": "false"
3157
+ },
3158
+ {
3159
+ "kind": "field",
3160
+ "name": "debug",
3161
+ "type": {
3162
+ "text": "boolean | undefined"
3163
+ },
3164
+ "description": "If true, outputs helping hints in console",
3165
+ "attribute": "debug"
3166
+ },
3167
+ {
3168
+ "kind": "field",
3169
+ "name": "checked",
3170
+ "type": {
3171
+ "text": "boolean | undefined"
3172
+ },
3173
+ "description": "If true, outputs helping hints in console",
3174
+ "attribute": "checked",
2553
3175
  "reflects": true
2554
3176
  },
2555
3177
  {
@@ -2568,7 +3190,7 @@
2568
3190
  "type": {
2569
3191
  "text": "string | undefined"
2570
3192
  },
2571
- "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
3193
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2572
3194
  "attribute": "label"
2573
3195
  },
2574
3196
  {
@@ -2659,7 +3281,7 @@
2659
3281
  "type": {
2660
3282
  "text": "string | undefined"
2661
3283
  },
2662
- "description": "If defined, sets the input's label. Alternatively, you can use the `label` attribute.",
3284
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2663
3285
  "fieldName": "label"
2664
3286
  },
2665
3287
  {
@@ -2731,6 +3353,22 @@
2731
3353
  }
2732
3354
  ],
2733
3355
  "members": [
3356
+ {
3357
+ "kind": "field",
3358
+ "name": "_onClick",
3359
+ "type": {
3360
+ "text": "(event: Event) => void | undefined"
3361
+ },
3362
+ "privacy": "private"
3363
+ },
3364
+ {
3365
+ "kind": "field",
3366
+ "name": "_onRemove",
3367
+ "type": {
3368
+ "text": "(event: Event) => void | undefined"
3369
+ },
3370
+ "privacy": "protected"
3371
+ },
2734
3372
  {
2735
3373
  "kind": "field",
2736
3374
  "name": "size",
@@ -2738,7 +3376,7 @@
2738
3376
  "text": "'sm' | 'md' | 'lg'"
2739
3377
  },
2740
3378
  "default": "'md'",
2741
- "description": "Specifies Tag size -",
3379
+ "description": "Specifies Tag size",
2742
3380
  "attribute": "size",
2743
3381
  "reflects": true
2744
3382
  },
@@ -2748,7 +3386,7 @@
2748
3386
  "type": {
2749
3387
  "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
2750
3388
  },
2751
- "description": "If defined, displays leading/provided icon -",
3389
+ "description": "If defined, displays leading/provided icon",
2752
3390
  "attribute": "icon"
2753
3391
  },
2754
3392
  {
@@ -2757,10 +3395,20 @@
2757
3395
  "type": {
2758
3396
  "text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
2759
3397
  },
2760
- "description": "If defined, gives the supplied appearance -",
3398
+ "description": "If defined, gives the supplied appearance",
2761
3399
  "attribute": "color",
2762
3400
  "reflects": true
2763
3401
  },
3402
+ {
3403
+ "kind": "field",
3404
+ "name": "onClick",
3405
+ "description": "If defined, accepts a function that runs on click"
3406
+ },
3407
+ {
3408
+ "kind": "field",
3409
+ "name": "onRemove",
3410
+ "description": "If defined, accepts a function that runs on click. Self removal can be overridden by using `event.stopPropagation()`."
3411
+ },
2764
3412
  {
2765
3413
  "kind": "field",
2766
3414
  "name": "removable",
@@ -2768,7 +3416,24 @@
2768
3416
  "text": "boolean | undefined"
2769
3417
  },
2770
3418
  "description": "If true, adds trailing button to remove tag",
2771
- "attribute": "removable"
3419
+ "attribute": "removable",
3420
+ "reflects": true
3421
+ },
3422
+ {
3423
+ "kind": "field",
3424
+ "name": "_handleKeyDown",
3425
+ "privacy": "protected"
3426
+ },
3427
+ {
3428
+ "kind": "field",
3429
+ "name": "_handleRemove",
3430
+ "privacy": "protected",
3431
+ "description": "run externally provided callback (if any) first. Let click propagate to handleClick."
3432
+ },
3433
+ {
3434
+ "kind": "field",
3435
+ "name": "_handleClick",
3436
+ "privacy": "protected"
2772
3437
  }
2773
3438
  ],
2774
3439
  "attributes": [
@@ -2778,7 +3443,7 @@
2778
3443
  "text": "'sm' | 'md' | 'lg'"
2779
3444
  },
2780
3445
  "default": "'md'",
2781
- "description": "Specifies Tag size -",
3446
+ "description": "Specifies Tag size",
2782
3447
  "fieldName": "size"
2783
3448
  },
2784
3449
  {
@@ -2786,7 +3451,7 @@
2786
3451
  "type": {
2787
3452
  "text": "\"arrowDown\" | \"arrowDownUp\" | \"arrowLeft\" | \"arrowRight\" | \"arrowUp\" | \"article\" | \"artificialIntelligence\" | \"asset\" | \"attachment\" | \"bandCursor\" | \"bands\" | \"batteryEmpty\" | \"batteryFull\" | \"batteryLow\" | \"bearingFault\" | \"book\" | \"bulb\" | \"burger\" | \"cPM\" | \"calendar\" | \"calendarBooked\" | \"calendarEmpty\" | \"calendarNotBooked\" | \"calendarRecurring\" | \"caretDown\" | \"caretUp\" | \"caretUpDown\" | \"chat\" | \"check\" | \"checkCircle\" | \"checkSmall\" | \"chevronDown\" | \"chevronLeft\" | \"chevronRight\" | \"chevronUp\" | \"chevronUpDown\" | \"close\" | \"closeAllFaults\" | \"closeFault\" | \"closeSmall\" | \"columnGraph\" | \"comment\" | \"connection1\" | \"connection2\" | \"connection3\" | \"connection4\" | \"danger\" | \"defectFrequencies\" | \"defectFrequenciesAlternative\" | \"doubleChevronLeft\" | \"doubleChevronRight\" | \"download\" | \"draft\" | \"draftFilled\" | \"draftOutlined\" | \"dragNDrop\" | \"drop\" | \"duplicate\" | \"edit\" | \"emailFilled\" | \"emailOutlined\" | \"exclamation\" | \"eye\" | \"eyeHidden\" | \"eyeVisible\" | \"filter\" | \"forbidden\" | \"fullScreen\" | \"fullScreenExit\" | \"functionalLocation\" | \"harmonicCursor\" | \"heatmap\" | \"hierarchy\" | \"history\" | \"historyAlt\" | \"hourglassFramedFilled\" | \"hourglassFramedOutlined\" | \"hourglassOutlined\" | \"hz\" | \"iMX\" | \"image\" | \"infoCircleFilled\" | \"infoCircleOutlined\" | \"integration\" | \"kebab\" | \"link\" | \"listGroup\" | \"listItem\" | \"locationPin\" | \"lock\" | \"logOut\" | \"meatballs\" | \"microphone\" | \"minus\" | \"minusSmall\" | \"noData\" | \"o\" | \"openInNew\" | \"overlayBaseline\" | \"pDF\" | \"paper\" | \"pause\" | \"pieChart\" | \"pin\" | \"play\" | \"plus\" | \"powerOff\" | \"printer\" | \"proCollect\" | \"recAction\" | \"received\" | \"refresh\" | \"reorder\" | \"replace\" | \"reply\" | \"rewalkableRoute\" | \"routes\" | \"search\" | \"send\" | \"sensorA\" | \"sensorB\" | \"settings\" | \"sidebandCursor\" | \"singleCursor\" | \"spectrum\" | \"starFilled\" | \"starOutlined\" | \"statusCircle\" | \"stop\" | \"structuralVibration\" | \"sync\" | \"timewave\" | \"trash\" | \"trend\" | \"trendingUp\" | \"undo\" | \"unknownCircle\" | \"unknownDiamond\" | \"unlink\" | \"unlock\" | \"unscheduledAction\" | \"upload\" | \"user\" | \"viewFull\" | \"viewHorizontal\" | \"viewVertical\" | \"warning\" | \"warningCircle\" | \"warningDiamond\" | \"zoomIn\" | \"zoomOut\""
2788
3453
  },
2789
- "description": "If defined, displays leading/provided icon -",
3454
+ "description": "If defined, displays leading/provided icon",
2790
3455
  "fieldName": "icon"
2791
3456
  },
2792
3457
  {
@@ -2794,7 +3459,7 @@
2794
3459
  "type": {
2795
3460
  "text": "\"warning\" | \"success\" | \"info\" | \"error\" | \"alert\""
2796
3461
  },
2797
- "description": "If defined, gives the supplied appearance -",
3462
+ "description": "If defined, gives the supplied appearance",
2798
3463
  "fieldName": "color"
2799
3464
  },
2800
3465
  {
@@ -2835,8 +3500,8 @@
2835
3500
  "name": "SkfTextArea",
2836
3501
  "slots": [
2837
3502
  {
2838
- "description": "textareas label. Alternatively, you can use the `label` attribute.",
2839
- "name": "The"
3503
+ "description": "The textareas label. Alternatively, you can use the `label` attribute.",
3504
+ "name": ""
2840
3505
  }
2841
3506
  ],
2842
3507
  "members": [
@@ -2852,16 +3517,15 @@
2852
3517
  "kind": "field",
2853
3518
  "name": "cols",
2854
3519
  "type": {
2855
- "text": "number"
3520
+ "text": "number | undefined"
2856
3521
  },
2857
- "default": "20",
2858
- "description": "If provided, sets the cols of the textarea",
3522
+ "description": "If defined, sets the cols of the textarea",
2859
3523
  "attribute": "cols"
2860
3524
  },
2861
3525
  {
2862
3526
  "kind": "field",
2863
3527
  "name": "customInvalid",
2864
- "description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
3528
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
2865
3529
  "attribute": "custom-invalid",
2866
3530
  "reflects": true
2867
3531
  },
@@ -2869,20 +3533,18 @@
2869
3533
  "kind": "field",
2870
3534
  "name": "debug",
2871
3535
  "type": {
2872
- "text": "boolean"
3536
+ "text": "boolean | undefined"
2873
3537
  },
2874
- "default": "false",
2875
- "description": "If provided, outputs helping hints in console",
3538
+ "description": "If true, outputs helping hints in console",
2876
3539
  "attribute": "debug"
2877
3540
  },
2878
3541
  {
2879
3542
  "kind": "field",
2880
3543
  "name": "hideLabel",
2881
3544
  "type": {
2882
- "text": "boolean"
3545
+ "text": "boolean | undefined"
2883
3546
  },
2884
- "default": "false",
2885
- "description": "hide-label - If true, hides the label visually",
3547
+ "description": "If true, hides the label visually",
2886
3548
  "attribute": "hide-label"
2887
3549
  },
2888
3550
  {
@@ -2891,17 +3553,16 @@
2891
3553
  "type": {
2892
3554
  "text": "string | undefined"
2893
3555
  },
2894
- "description": "If provided, displays informational text below the field",
3556
+ "description": "If defined, displays informational text below the field",
2895
3557
  "attribute": "hint"
2896
3558
  },
2897
3559
  {
2898
3560
  "kind": "field",
2899
3561
  "name": "label",
2900
3562
  "type": {
2901
- "text": "string"
3563
+ "text": "string | undefined"
2902
3564
  },
2903
- "default": "'Default label'",
2904
- "description": "The input's label. Alternatively, you can use the component slot.",
3565
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
2905
3566
  "attribute": "label"
2906
3567
  },
2907
3568
  {
@@ -2910,7 +3571,7 @@
2910
3571
  "type": {
2911
3572
  "text": "string | undefined"
2912
3573
  },
2913
- "description": "If provided, adds name to the input-element",
3574
+ "description": "If defined, adds name to the input-element",
2914
3575
  "attribute": "name"
2915
3576
  },
2916
3577
  {
@@ -2919,7 +3580,7 @@
2919
3580
  "type": {
2920
3581
  "text": "number | undefined"
2921
3582
  },
2922
- "description": "If provided, sets the maximum character length to accept for this input",
3583
+ "description": "If defined, sets the maximum character length to accept for this input",
2923
3584
  "attribute": "maxlength"
2924
3585
  },
2925
3586
  {
@@ -2928,7 +3589,7 @@
2928
3589
  "type": {
2929
3590
  "text": "number | undefined"
2930
3591
  },
2931
- "description": "If provided, sets the minimum character length to accept for this input",
3592
+ "description": "If defined, sets the minimum character length to accept for this input",
2932
3593
  "attribute": "minlength"
2933
3594
  },
2934
3595
  {
@@ -2937,7 +3598,7 @@
2937
3598
  "type": {
2938
3599
  "text": "string | undefined"
2939
3600
  },
2940
- "description": "If provided, displays placeholder text",
3601
+ "description": "If defined, displays placeholder text",
2941
3602
  "attribute": "placeholder"
2942
3603
  },
2943
3604
  {
@@ -2955,26 +3616,25 @@
2955
3616
  "type": {
2956
3617
  "text": "string | undefined"
2957
3618
  },
2958
- "description": "If provided, renders an alternative A11y text for the asterisk",
3619
+ "description": "If defined, renders an alternative A11y text for the asterisk",
2959
3620
  "attribute": "required-label"
2960
3621
  },
2961
3622
  {
2962
3623
  "kind": "field",
2963
3624
  "name": "rows",
2964
3625
  "type": {
2965
- "text": "number"
3626
+ "text": "number | undefined"
2966
3627
  },
2967
- "default": "2",
2968
- "description": "If provided, sets the rows of the textarea",
3628
+ "description": "If defined, sets the rows of the textarea",
2969
3629
  "attribute": "rows"
2970
3630
  },
2971
3631
  {
2972
3632
  "kind": "field",
2973
3633
  "name": "severity",
2974
3634
  "type": {
2975
- "text": "\"success\" | \"error\""
3635
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
2976
3636
  },
2977
- "description": "If provided, displays provided severity state",
3637
+ "description": "If defined, displays provided severity state",
2978
3638
  "attribute": "severity"
2979
3639
  },
2980
3640
  {
@@ -2993,7 +3653,7 @@
2993
3653
  "text": "'sm' | 'md' | undefined"
2994
3654
  },
2995
3655
  "default": "'md'",
2996
- "description": "If provided, displays an alternative size",
3656
+ "description": "Size of the Textarea",
2997
3657
  "attribute": "size",
2998
3658
  "reflects": true
2999
3659
  },
@@ -3001,10 +3661,10 @@
3001
3661
  "kind": "field",
3002
3662
  "name": "validateOn",
3003
3663
  "type": {
3004
- "text": "'input' | 'change' | 'submit' | undefined"
3664
+ "text": "'input' | 'change' | 'submit'"
3005
3665
  },
3006
3666
  "default": "'change'",
3007
- "description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
3667
+ "description": "Sets validation start",
3008
3668
  "attribute": "validate-on"
3009
3669
  },
3010
3670
  {
@@ -3046,33 +3706,30 @@
3046
3706
  {
3047
3707
  "name": "cols",
3048
3708
  "type": {
3049
- "text": "number"
3709
+ "text": "number | undefined"
3050
3710
  },
3051
- "default": "20",
3052
- "description": "If provided, sets the cols of the textarea",
3711
+ "description": "If defined, sets the cols of the textarea",
3053
3712
  "fieldName": "cols"
3054
3713
  },
3055
3714
  {
3056
3715
  "name": "custom-invalid",
3057
- "description": "If provided, forces component to invalid state until removed. Its value is used as hint text.",
3716
+ "description": "If defined, forces component to invalid state until removed. Its value is used as hint text.",
3058
3717
  "fieldName": "customInvalid"
3059
3718
  },
3060
3719
  {
3061
3720
  "name": "debug",
3062
3721
  "type": {
3063
- "text": "boolean"
3722
+ "text": "boolean | undefined"
3064
3723
  },
3065
- "default": "false",
3066
- "description": "If provided, outputs helping hints in console",
3724
+ "description": "If true, outputs helping hints in console",
3067
3725
  "fieldName": "debug"
3068
3726
  },
3069
3727
  {
3070
3728
  "name": "hide-label",
3071
3729
  "type": {
3072
- "text": "boolean"
3730
+ "text": "boolean | undefined"
3073
3731
  },
3074
- "default": "false",
3075
- "description": "hide-label - If true, hides the label visually",
3732
+ "description": "If true, hides the label visually",
3076
3733
  "fieldName": "hideLabel"
3077
3734
  },
3078
3735
  {
@@ -3080,16 +3737,15 @@
3080
3737
  "type": {
3081
3738
  "text": "string | undefined"
3082
3739
  },
3083
- "description": "If provided, displays informational text below the field",
3740
+ "description": "If defined, displays informational text below the field",
3084
3741
  "fieldName": "hint"
3085
3742
  },
3086
3743
  {
3087
3744
  "name": "label",
3088
3745
  "type": {
3089
- "text": "string"
3746
+ "text": "string | undefined"
3090
3747
  },
3091
- "default": "'Default label'",
3092
- "description": "The input's label. Alternatively, you can use the component slot.",
3748
+ "description": "If defined, sets the input's label unless the default slot is used. Alternatively, you can use the `label` attribute.",
3093
3749
  "fieldName": "label"
3094
3750
  },
3095
3751
  {
@@ -3097,7 +3753,7 @@
3097
3753
  "type": {
3098
3754
  "text": "string | undefined"
3099
3755
  },
3100
- "description": "If provided, adds name to the input-element",
3756
+ "description": "If defined, adds name to the input-element",
3101
3757
  "fieldName": "name"
3102
3758
  },
3103
3759
  {
@@ -3105,7 +3761,7 @@
3105
3761
  "type": {
3106
3762
  "text": "number | undefined"
3107
3763
  },
3108
- "description": "If provided, sets the maximum character length to accept for this input",
3764
+ "description": "If defined, sets the maximum character length to accept for this input",
3109
3765
  "fieldName": "maxLength"
3110
3766
  },
3111
3767
  {
@@ -3113,7 +3769,7 @@
3113
3769
  "type": {
3114
3770
  "text": "number | undefined"
3115
3771
  },
3116
- "description": "If provided, sets the minimum character length to accept for this input",
3772
+ "description": "If defined, sets the minimum character length to accept for this input",
3117
3773
  "fieldName": "minLength"
3118
3774
  },
3119
3775
  {
@@ -3121,7 +3777,7 @@
3121
3777
  "type": {
3122
3778
  "text": "string | undefined"
3123
3779
  },
3124
- "description": "If provided, displays placeholder text",
3780
+ "description": "If defined, displays placeholder text",
3125
3781
  "fieldName": "placeholder"
3126
3782
  },
3127
3783
  {
@@ -3137,24 +3793,23 @@
3137
3793
  "type": {
3138
3794
  "text": "string | undefined"
3139
3795
  },
3140
- "description": "If provided, renders an alternative A11y text for the asterisk",
3796
+ "description": "If defined, renders an alternative A11y text for the asterisk",
3141
3797
  "fieldName": "requiredLabel"
3142
3798
  },
3143
3799
  {
3144
3800
  "name": "rows",
3145
3801
  "type": {
3146
- "text": "number"
3802
+ "text": "number | undefined"
3147
3803
  },
3148
- "default": "2",
3149
- "description": "If provided, sets the rows of the textarea",
3804
+ "description": "If defined, sets the rows of the textarea",
3150
3805
  "fieldName": "rows"
3151
3806
  },
3152
3807
  {
3153
3808
  "name": "severity",
3154
3809
  "type": {
3155
- "text": "\"success\" | \"error\""
3810
+ "text": "\"success\" | \"info\" | \"warning\" | \"alert\""
3156
3811
  },
3157
- "description": "If provided, displays provided severity state",
3812
+ "description": "If defined, displays provided severity state",
3158
3813
  "fieldName": "severity"
3159
3814
  },
3160
3815
  {
@@ -3171,16 +3826,16 @@
3171
3826
  "text": "'sm' | 'md' | undefined"
3172
3827
  },
3173
3828
  "default": "'md'",
3174
- "description": "If provided, displays an alternative size",
3829
+ "description": "Size of the Textarea",
3175
3830
  "fieldName": "size"
3176
3831
  },
3177
3832
  {
3178
3833
  "name": "validate-on",
3179
3834
  "type": {
3180
- "text": "'input' | 'change' | 'submit' | undefined"
3835
+ "text": "'input' | 'change' | 'submit'"
3181
3836
  },
3182
3837
  "default": "'change'",
3183
- "description": "If provided, sets validation start, \"input\", \"change\" or \"submit\"",
3838
+ "description": "Sets validation start",
3184
3839
  "fieldName": "validateOn"
3185
3840
  },
3186
3841
  {