@skf-design-system/ui-components 1.0.0-alpha.29 → 1.0.0-alpha.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/accordion/accordion-item.d.ts +1 -1
- package/dist/components/accordion/accordion.component.d.ts +4 -4
- package/dist/components/accordion/accordion.component.js +18 -17
- package/dist/components/accordion/accordion.styles.d.ts +1 -2
- package/dist/components/accordion/accordion.styles.js +5 -4
- package/dist/components/alert/alert.component.d.ts +3 -3
- package/dist/components/alert/alert.component.js +44 -33
- package/dist/components/alert/alert.styles.d.ts +1 -2
- package/dist/components/alert/alert.styles.js +29 -24
- package/dist/components/button/button.component.d.ts +6 -4
- package/dist/components/button/button.component.js +59 -47
- package/dist/components/button/button.styles.js +55 -45
- package/dist/components/card/card.component.d.ts +4 -4
- package/dist/components/card/card.component.js +35 -24
- package/dist/components/card/card.styles.d.ts +1 -2
- package/dist/components/card/card.styles.js +14 -12
- package/dist/components/checkbox/checkbox.component.d.ts +3 -3
- package/dist/components/collapse/collapse.component.d.ts +8 -8
- package/dist/components/collapse/collapse.component.js +42 -34
- package/dist/components/collapse/collapse.styles.js +15 -14
- package/dist/components/dialog/dialog.component.d.ts +75 -0
- package/dist/components/dialog/dialog.component.js +189 -0
- package/dist/components/dialog/dialog.d.ts +8 -0
- package/dist/components/dialog/dialog.js +6 -0
- package/dist/components/dialog/dialog.styles.d.ts +1 -0
- package/dist/components/dialog/dialog.styles.js +91 -0
- package/dist/components/divider/divider.component.d.ts +3 -3
- package/dist/components/divider/divider.component.js +39 -27
- package/dist/components/divider/divider.styles.d.ts +1 -2
- package/dist/components/divider/divider.styles.js +26 -26
- package/dist/components/heading/heading.component.d.ts +2 -2
- package/dist/components/icon/icon.component.d.ts +7 -8
- package/dist/components/icon/icon.component.js +51 -29
- package/dist/components/icon/icon.styles.js +53 -47
- package/dist/components/input/input.component.d.ts +4 -4
- package/dist/components/link/link.component.d.ts +7 -6
- package/dist/components/link/link.component.js +33 -27
- package/dist/components/link/link.styles.js +36 -40
- package/dist/components/loader/loader.component.d.ts +2 -2
- package/dist/components/loader/loader.component.js +32 -25
- package/dist/components/loader/loader.styles.js +11 -10
- package/dist/components/logo/logo.component.d.ts +3 -3
- package/dist/components/logo/logo.component.js +25 -14
- package/dist/components/logo/logo.styles.d.ts +1 -2
- package/dist/components/logo/logo.styles.js +11 -9
- package/dist/components/menu/menu.component.d.ts +24 -0
- package/dist/components/menu/menu.component.js +18 -0
- package/dist/components/menu/menu.d.ts +8 -0
- package/dist/components/menu/menu.js +6 -0
- package/dist/components/menu/menu.styles.d.ts +1 -0
- package/dist/components/menu/menu.styles.js +11 -0
- package/dist/components/menu-item/menu-item.component.d.ts +25 -0
- package/dist/components/menu-item/menu-item.component.js +13 -0
- package/dist/components/menu-item/menu-item.d.ts +8 -0
- package/dist/components/menu-item/menu-item.js +6 -0
- package/dist/components/menu-item/menu-item.styles.d.ts +1 -0
- package/dist/components/menu-item/menu-item.styles.js +19 -0
- package/dist/components/popover/popover.component.d.ts +29 -0
- package/dist/components/popover/popover.component.js +37 -0
- package/dist/components/popover/popover.d.ts +8 -0
- package/dist/components/popover/popover.js +6 -0
- package/dist/components/popover/popover.styles.d.ts +1 -0
- package/dist/components/popover/popover.styles.js +12 -0
- package/dist/components/progress/progress.component.d.ts +2 -2
- package/dist/components/progress/progress.component.js +31 -22
- package/dist/components/progress/progress.styles.js +19 -18
- package/dist/components/radio/radio.component.d.ts +3 -3
- package/dist/components/select/select.component.d.ts +10 -12
- package/dist/components/select/select.component.js +115 -118
- package/dist/components/select/select.controllers.d.ts +1 -26
- package/dist/components/select/select.controllers.js +35 -95
- package/dist/components/select-option/select-option.component.d.ts +1 -1
- package/dist/components/select-option/select-option.controllers.d.ts +1 -1
- package/dist/components/select-option-group/select-option-group.component.d.ts +1 -1
- package/dist/components/stepper/stepper.component.d.ts +38 -0
- package/dist/components/stepper/stepper.component.js +91 -0
- package/dist/components/stepper/stepper.d.ts +8 -0
- package/dist/components/stepper/stepper.helpers.d.ts +16 -0
- package/dist/components/stepper/stepper.helpers.js +18 -0
- package/dist/components/stepper/stepper.js +6 -0
- package/dist/components/stepper/stepper.styles.d.ts +1 -0
- package/dist/components/stepper/stepper.styles.js +15 -0
- package/dist/components/stepper-item/stepper-item.component.d.ts +47 -0
- package/dist/components/stepper-item/stepper-item.component.js +113 -0
- package/dist/components/stepper-item/stepper-item.d.ts +8 -0
- package/dist/components/stepper-item/stepper-item.js +6 -0
- package/dist/components/stepper-item/stepper-item.styles.d.ts +1 -0
- package/dist/components/stepper-item/stepper-item.styles.js +98 -0
- package/dist/components/switch/switch.component.d.ts +2 -2
- package/dist/components/switch/switch.component.js +13 -6
- package/dist/components/switch/switch.styles.js +16 -13
- package/dist/components/tab/tab.component.d.ts +2 -2
- package/dist/components/tab-group/tab-group.component.d.ts +2 -2
- package/dist/components/tab-panel/tab-panel.component.d.ts +1 -1
- package/dist/components/tag/tag.component.d.ts +2 -2
- package/dist/components/tag/tag.component.js +61 -45
- package/dist/components/tag/tag.styles.js +30 -28
- package/dist/components/textarea/textarea.component.d.ts +4 -4
- package/dist/components/toast/toast.component.d.ts +1 -1
- package/dist/components/toast/toast.singleton.d.ts +3 -3
- package/dist/components/toast-item/toast-item.component.d.ts +1 -1
- package/dist/components/toast-wrapper/toast-wrapper.component.d.ts +2 -2
- package/dist/components/tooltip/tooltip.component.d.ts +24 -0
- package/dist/components/tooltip/tooltip.component.js +18 -0
- package/dist/components/tooltip/tooltip.d.ts +8 -0
- package/dist/components/tooltip/tooltip.js +6 -0
- package/dist/components/tooltip/tooltip.styles.d.ts +1 -0
- package/dist/components/tooltip/tooltip.styles.js +12 -0
- package/dist/custom-elements.json +1329 -79
- package/dist/index.d.ts +7 -0
- package/dist/index.js +73 -52
- package/dist/internal/base-classes/popover/popover.base.d.ts +29 -0
- package/dist/internal/base-classes/popover/popover.base.js +116 -0
- package/dist/internal/base-classes/popover/popover.styles.d.ts +1 -0
- package/dist/internal/base-classes/popover/popover.styles.js +29 -0
- package/dist/internal/components/hint/hint.component.d.ts +2 -2
- package/dist/internal/components/skf-element.js +26 -25
- package/dist/internal/controllers/popover.controller.d.ts +16 -0
- package/dist/internal/controllers/popover.controller.js +44 -0
- package/dist/internal/helpers/hintSeverity.d.ts +2 -2
- package/dist/internal/templates/asterisk.d.ts +1 -1
- package/dist/internal/templates/asterisk.js +7 -6
- package/dist/react/index.d.ts +7 -0
- package/dist/react/index.js +7 -0
- package/dist/react/skf-dialog/index.d.ts +15 -0
- package/dist/react/skf-dialog/index.js +19 -0
- package/dist/react/skf-menu/index.d.ts +12 -0
- package/dist/react/skf-menu/index.js +18 -0
- package/dist/react/skf-menu-item/index.d.ts +27 -0
- package/dist/react/skf-menu-item/index.js +23 -0
- package/dist/react/skf-popover/index.d.ts +12 -0
- package/dist/react/skf-popover/index.js +18 -0
- package/dist/react/skf-stepper/index.d.ts +9 -0
- package/dist/react/skf-stepper/index.js +17 -0
- package/dist/react/skf-stepper-item/index.d.ts +9 -0
- package/dist/react/skf-stepper-item/index.js +17 -0
- package/dist/react/skf-tooltip/index.d.ts +12 -0
- package/dist/react/skf-tooltip/index.js +18 -0
- package/dist/styles/component.styles.js +15 -2
- package/dist/types/jsx/custom-element-jsx.d.ts +1263 -228
- package/dist/types/vue/index.d.ts +260 -2
- package/dist/vscode.html-custom-data.json +335 -8
- package/dist/web-types.json +623 -38
- package/package.json +31 -30
- package/custom-elements.json +0 -18265
@@ -41,8 +41,9 @@
|
|
41
41
|
"kind": "field",
|
42
42
|
"name": "gap",
|
43
43
|
"type": {
|
44
|
-
"text": "boolean
|
44
|
+
"text": "boolean"
|
45
45
|
},
|
46
|
+
"default": "false",
|
46
47
|
"description": "If true, adds a gap between each item",
|
47
48
|
"attribute": "gap",
|
48
49
|
"reflects": true
|
@@ -111,8 +112,9 @@
|
|
111
112
|
{
|
112
113
|
"name": "gap",
|
113
114
|
"type": {
|
114
|
-
"text": "boolean
|
115
|
+
"text": "boolean"
|
115
116
|
},
|
117
|
+
"default": "false",
|
116
118
|
"description": "If true, adds a gap between each item",
|
117
119
|
"fieldName": "gap"
|
118
120
|
},
|
@@ -341,6 +343,16 @@
|
|
341
343
|
"description": "If provided, renders an icon before or after the text",
|
342
344
|
"attribute": "icon"
|
343
345
|
},
|
346
|
+
{
|
347
|
+
"kind": "field",
|
348
|
+
"name": "iconOnly",
|
349
|
+
"type": {
|
350
|
+
"text": "boolean"
|
351
|
+
},
|
352
|
+
"default": "false",
|
353
|
+
"description": "If true, removes border",
|
354
|
+
"attribute": "iconOnly"
|
355
|
+
},
|
344
356
|
{
|
345
357
|
"kind": "field",
|
346
358
|
"name": "iconPosition",
|
@@ -441,6 +453,15 @@
|
|
441
453
|
"description": "If provided, renders an icon before or after the text",
|
442
454
|
"fieldName": "icon"
|
443
455
|
},
|
456
|
+
{
|
457
|
+
"name": "iconOnly",
|
458
|
+
"type": {
|
459
|
+
"text": "boolean"
|
460
|
+
},
|
461
|
+
"default": "false",
|
462
|
+
"description": "If true, removes border",
|
463
|
+
"fieldName": "iconOnly"
|
464
|
+
},
|
444
465
|
{
|
445
466
|
"name": "icon-position",
|
446
467
|
"type": {
|
@@ -533,8 +554,9 @@
|
|
533
554
|
"kind": "field",
|
534
555
|
"name": "noBorder",
|
535
556
|
"type": {
|
536
|
-
"text": "boolean
|
557
|
+
"text": "boolean"
|
537
558
|
},
|
559
|
+
"default": "false",
|
538
560
|
"description": "If true, removes border",
|
539
561
|
"attribute": "no-border"
|
540
562
|
},
|
@@ -542,8 +564,9 @@
|
|
542
564
|
"kind": "field",
|
543
565
|
"name": "noPadding",
|
544
566
|
"type": {
|
545
|
-
"text": "boolean
|
567
|
+
"text": "boolean"
|
546
568
|
},
|
569
|
+
"default": "false",
|
547
570
|
"description": "If true, removes padding",
|
548
571
|
"attribute": "no-padding"
|
549
572
|
},
|
@@ -551,8 +574,9 @@
|
|
551
574
|
"kind": "field",
|
552
575
|
"name": "stretch",
|
553
576
|
"type": {
|
554
|
-
"text": "boolean
|
577
|
+
"text": "boolean"
|
555
578
|
},
|
579
|
+
"default": "false",
|
556
580
|
"description": "If true, the Card fills the parent element height",
|
557
581
|
"attribute": "stretch",
|
558
582
|
"reflects": true
|
@@ -562,24 +586,27 @@
|
|
562
586
|
{
|
563
587
|
"name": "no-border",
|
564
588
|
"type": {
|
565
|
-
"text": "boolean
|
589
|
+
"text": "boolean"
|
566
590
|
},
|
591
|
+
"default": "false",
|
567
592
|
"description": "If true, removes border",
|
568
593
|
"fieldName": "noBorder"
|
569
594
|
},
|
570
595
|
{
|
571
596
|
"name": "no-padding",
|
572
597
|
"type": {
|
573
|
-
"text": "boolean
|
598
|
+
"text": "boolean"
|
574
599
|
},
|
600
|
+
"default": "false",
|
575
601
|
"description": "If true, removes padding",
|
576
602
|
"fieldName": "noPadding"
|
577
603
|
},
|
578
604
|
{
|
579
605
|
"name": "stretch",
|
580
606
|
"type": {
|
581
|
-
"text": "boolean
|
607
|
+
"text": "boolean"
|
582
608
|
},
|
609
|
+
"default": "false",
|
583
610
|
"description": "If true, the Card fills the parent element height",
|
584
611
|
"fieldName": "stretch"
|
585
612
|
}
|
@@ -887,8 +914,9 @@
|
|
887
914
|
"kind": "field",
|
888
915
|
"name": "animated",
|
889
916
|
"type": {
|
890
|
-
"text": "boolean
|
917
|
+
"text": "boolean"
|
891
918
|
},
|
919
|
+
"default": "false",
|
892
920
|
"description": "If true, will animate the expand/collapse state",
|
893
921
|
"attribute": "animated",
|
894
922
|
"reflects": true
|
@@ -897,8 +925,9 @@
|
|
897
925
|
"kind": "field",
|
898
926
|
"name": "expanded",
|
899
927
|
"type": {
|
900
|
-
"text": "boolean
|
928
|
+
"text": "boolean"
|
901
929
|
},
|
930
|
+
"default": "false",
|
902
931
|
"description": "If true, will set the collapse to be expanded by default",
|
903
932
|
"attribute": "expanded",
|
904
933
|
"reflects": true
|
@@ -916,7 +945,7 @@
|
|
916
945
|
"kind": "field",
|
917
946
|
"name": "headingAs",
|
918
947
|
"type": {
|
919
|
-
"text": "\"
|
948
|
+
"text": "\"h2\" | \"h3\" | \"h4\""
|
920
949
|
},
|
921
950
|
"default": "'h2'",
|
922
951
|
"description": "Defines which heading element will be rendered",
|
@@ -926,8 +955,9 @@
|
|
926
955
|
"kind": "field",
|
927
956
|
"name": "small",
|
928
957
|
"type": {
|
929
|
-
"text": "boolean
|
958
|
+
"text": "boolean"
|
930
959
|
},
|
960
|
+
"default": "false",
|
931
961
|
"description": "If true, renders the small version",
|
932
962
|
"attribute": "small",
|
933
963
|
"reflects": true
|
@@ -936,8 +966,9 @@
|
|
936
966
|
"kind": "field",
|
937
967
|
"name": "truncate",
|
938
968
|
"type": {
|
939
|
-
"text": "boolean
|
969
|
+
"text": "boolean"
|
940
970
|
},
|
971
|
+
"default": "false",
|
941
972
|
"description": "If true, will truncate the heading in collapsed state",
|
942
973
|
"attribute": "truncate",
|
943
974
|
"reflects": true
|
@@ -966,16 +997,18 @@
|
|
966
997
|
{
|
967
998
|
"name": "animated",
|
968
999
|
"type": {
|
969
|
-
"text": "boolean
|
1000
|
+
"text": "boolean"
|
970
1001
|
},
|
1002
|
+
"default": "false",
|
971
1003
|
"description": "If true, will animate the expand/collapse state",
|
972
1004
|
"fieldName": "animated"
|
973
1005
|
},
|
974
1006
|
{
|
975
1007
|
"name": "expanded",
|
976
1008
|
"type": {
|
977
|
-
"text": "boolean
|
1009
|
+
"text": "boolean"
|
978
1010
|
},
|
1011
|
+
"default": "false",
|
979
1012
|
"description": "If true, will set the collapse to be expanded by default",
|
980
1013
|
"fieldName": "expanded"
|
981
1014
|
},
|
@@ -990,7 +1023,7 @@
|
|
990
1023
|
{
|
991
1024
|
"name": "heading-as",
|
992
1025
|
"type": {
|
993
|
-
"text": "\"
|
1026
|
+
"text": "\"h2\" | \"h3\" | \"h4\""
|
994
1027
|
},
|
995
1028
|
"default": "'h2'",
|
996
1029
|
"description": "Defines which heading element will be rendered",
|
@@ -999,16 +1032,18 @@
|
|
999
1032
|
{
|
1000
1033
|
"name": "small",
|
1001
1034
|
"type": {
|
1002
|
-
"text": "boolean
|
1035
|
+
"text": "boolean"
|
1003
1036
|
},
|
1037
|
+
"default": "false",
|
1004
1038
|
"description": "If true, renders the small version",
|
1005
1039
|
"fieldName": "small"
|
1006
1040
|
},
|
1007
1041
|
{
|
1008
1042
|
"name": "truncate",
|
1009
1043
|
"type": {
|
1010
|
-
"text": "boolean
|
1044
|
+
"text": "boolean"
|
1011
1045
|
},
|
1046
|
+
"default": "false",
|
1012
1047
|
"description": "If true, will truncate the heading in collapsed state",
|
1013
1048
|
"fieldName": "truncate"
|
1014
1049
|
}
|
@@ -1032,6 +1067,205 @@
|
|
1032
1067
|
}
|
1033
1068
|
]
|
1034
1069
|
},
|
1070
|
+
{
|
1071
|
+
"kind": "javascript-module",
|
1072
|
+
"path": "src/components/dialog/dialog.component.ts",
|
1073
|
+
"declarations": [
|
1074
|
+
{
|
1075
|
+
"kind": "class",
|
1076
|
+
"description": "The `<skf-dialog>` is a component that open up a dialog with the content provided",
|
1077
|
+
"name": "SkfDialog",
|
1078
|
+
"cssProperties": [
|
1079
|
+
{
|
1080
|
+
"description": "A custom height for the Dialog. Pass valid CSS **block-size** values",
|
1081
|
+
"name": "--skf-dialog-height"
|
1082
|
+
},
|
1083
|
+
{
|
1084
|
+
"description": "A custom width for the Dialog Pass valid CSS **inline-size** values",
|
1085
|
+
"name": "--skf-dialog-width"
|
1086
|
+
}
|
1087
|
+
],
|
1088
|
+
"slots": [
|
1089
|
+
{
|
1090
|
+
"description": "The dialog component's content",
|
1091
|
+
"name": ""
|
1092
|
+
},
|
1093
|
+
{
|
1094
|
+
"description": "The dialog component's heading",
|
1095
|
+
"name": "heading"
|
1096
|
+
},
|
1097
|
+
{
|
1098
|
+
"description": "The dialog component's buttons goes here",
|
1099
|
+
"name": "footer"
|
1100
|
+
}
|
1101
|
+
],
|
1102
|
+
"members": [
|
1103
|
+
{
|
1104
|
+
"kind": "field",
|
1105
|
+
"name": "closeButtonAriaLabel",
|
1106
|
+
"type": {
|
1107
|
+
"text": "string | undefined"
|
1108
|
+
},
|
1109
|
+
"description": "If defined, sets the aria-label for the close button",
|
1110
|
+
"attribute": "close-button-aria-label"
|
1111
|
+
},
|
1112
|
+
{
|
1113
|
+
"kind": "field",
|
1114
|
+
"name": "heading",
|
1115
|
+
"type": {
|
1116
|
+
"text": "string | undefined"
|
1117
|
+
},
|
1118
|
+
"description": "Title for the modal/dialog",
|
1119
|
+
"attribute": "heading"
|
1120
|
+
},
|
1121
|
+
{
|
1122
|
+
"kind": "field",
|
1123
|
+
"name": "fullscreen",
|
1124
|
+
"type": {
|
1125
|
+
"text": "boolean"
|
1126
|
+
},
|
1127
|
+
"default": "false",
|
1128
|
+
"description": "If true, makes the dialog stretch edge to edge on screen",
|
1129
|
+
"attribute": "fullscreen"
|
1130
|
+
},
|
1131
|
+
{
|
1132
|
+
"kind": "field",
|
1133
|
+
"name": "noCloseButton",
|
1134
|
+
"type": {
|
1135
|
+
"text": "boolean"
|
1136
|
+
},
|
1137
|
+
"default": "false",
|
1138
|
+
"description": "If true, removes the close button",
|
1139
|
+
"attribute": "no-close-button"
|
1140
|
+
},
|
1141
|
+
{
|
1142
|
+
"kind": "field",
|
1143
|
+
"name": "noPadding",
|
1144
|
+
"type": {
|
1145
|
+
"text": "boolean"
|
1146
|
+
},
|
1147
|
+
"default": "false",
|
1148
|
+
"description": "If defined, removes the inner padding",
|
1149
|
+
"attribute": "no-padding"
|
1150
|
+
},
|
1151
|
+
{
|
1152
|
+
"kind": "field",
|
1153
|
+
"name": "open",
|
1154
|
+
"type": {
|
1155
|
+
"text": "boolean | null | undefined"
|
1156
|
+
},
|
1157
|
+
"attribute": "open",
|
1158
|
+
"reflects": true
|
1159
|
+
},
|
1160
|
+
{
|
1161
|
+
"kind": "field",
|
1162
|
+
"name": "onClose",
|
1163
|
+
"type": {
|
1164
|
+
"text": "((event: Event) => void) | null | undefined"
|
1165
|
+
},
|
1166
|
+
"default": "null",
|
1167
|
+
"description": "If provided, will run function on dialog close"
|
1168
|
+
},
|
1169
|
+
{
|
1170
|
+
"kind": "method",
|
1171
|
+
"name": "handleOpenChange"
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"kind": "field",
|
1175
|
+
"name": "showModal",
|
1176
|
+
"description": "Method that opens the dialog in modal state"
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"kind": "field",
|
1180
|
+
"name": "close",
|
1181
|
+
"description": "Method that closes the dialog"
|
1182
|
+
}
|
1183
|
+
],
|
1184
|
+
"events": [
|
1185
|
+
{
|
1186
|
+
"description": "Fires when the dialog is opened (after transitioned in)",
|
1187
|
+
"name": "skf-dialog-open"
|
1188
|
+
},
|
1189
|
+
{
|
1190
|
+
"description": "Fires when the dialog is closed (before transitioned out)",
|
1191
|
+
"name": "skf-dialog-close"
|
1192
|
+
},
|
1193
|
+
{
|
1194
|
+
"description": "Fires when the dialog is closed (after transitioned out)",
|
1195
|
+
"name": "close"
|
1196
|
+
}
|
1197
|
+
],
|
1198
|
+
"attributes": [
|
1199
|
+
{
|
1200
|
+
"name": "close-button-aria-label",
|
1201
|
+
"type": {
|
1202
|
+
"text": "string | undefined"
|
1203
|
+
},
|
1204
|
+
"description": "If defined, sets the aria-label for the close button",
|
1205
|
+
"fieldName": "closeButtonAriaLabel"
|
1206
|
+
},
|
1207
|
+
{
|
1208
|
+
"name": "heading",
|
1209
|
+
"type": {
|
1210
|
+
"text": "string | undefined"
|
1211
|
+
},
|
1212
|
+
"description": "Title for the modal/dialog",
|
1213
|
+
"fieldName": "heading"
|
1214
|
+
},
|
1215
|
+
{
|
1216
|
+
"name": "fullscreen",
|
1217
|
+
"type": {
|
1218
|
+
"text": "boolean"
|
1219
|
+
},
|
1220
|
+
"default": "false",
|
1221
|
+
"description": "If true, makes the dialog stretch edge to edge on screen",
|
1222
|
+
"fieldName": "fullscreen"
|
1223
|
+
},
|
1224
|
+
{
|
1225
|
+
"name": "no-close-button",
|
1226
|
+
"type": {
|
1227
|
+
"text": "boolean"
|
1228
|
+
},
|
1229
|
+
"default": "false",
|
1230
|
+
"description": "If true, removes the close button",
|
1231
|
+
"fieldName": "noCloseButton"
|
1232
|
+
},
|
1233
|
+
{
|
1234
|
+
"name": "no-padding",
|
1235
|
+
"type": {
|
1236
|
+
"text": "boolean"
|
1237
|
+
},
|
1238
|
+
"default": "false",
|
1239
|
+
"description": "If defined, removes the inner padding",
|
1240
|
+
"fieldName": "noPadding"
|
1241
|
+
},
|
1242
|
+
{
|
1243
|
+
"name": "open",
|
1244
|
+
"type": {
|
1245
|
+
"text": "boolean | null | undefined"
|
1246
|
+
},
|
1247
|
+
"fieldName": "open"
|
1248
|
+
}
|
1249
|
+
],
|
1250
|
+
"superclass": {
|
1251
|
+
"name": "SkfElement",
|
1252
|
+
"package": "@internal/components/skf-element"
|
1253
|
+
},
|
1254
|
+
"tagName": "skf-dialog",
|
1255
|
+
"customElement": true
|
1256
|
+
}
|
1257
|
+
],
|
1258
|
+
"exports": [
|
1259
|
+
{
|
1260
|
+
"kind": "js",
|
1261
|
+
"name": "SkfDialog",
|
1262
|
+
"declaration": {
|
1263
|
+
"name": "SkfDialog",
|
1264
|
+
"module": "src/components/dialog/dialog.component.ts"
|
1265
|
+
}
|
1266
|
+
}
|
1267
|
+
]
|
1268
|
+
},
|
1035
1269
|
{
|
1036
1270
|
"kind": "javascript-module",
|
1037
1271
|
"path": "src/components/divider/divider.component.ts",
|
@@ -1074,8 +1308,9 @@
|
|
1074
1308
|
"kind": "field",
|
1075
1309
|
"name": "decorative",
|
1076
1310
|
"type": {
|
1077
|
-
"text": "boolean
|
1311
|
+
"text": "boolean"
|
1078
1312
|
},
|
1313
|
+
"default": "false",
|
1079
1314
|
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
1080
1315
|
"attribute": "decorative"
|
1081
1316
|
},
|
@@ -1083,8 +1318,9 @@
|
|
1083
1318
|
"kind": "field",
|
1084
1319
|
"name": "vertical",
|
1085
1320
|
"type": {
|
1086
|
-
"text": "boolean
|
1321
|
+
"text": "boolean"
|
1087
1322
|
},
|
1323
|
+
"default": "false",
|
1088
1324
|
"description": "If true, renders the divider vertically",
|
1089
1325
|
"attribute": "vertical",
|
1090
1326
|
"reflects": true
|
@@ -1103,16 +1339,18 @@
|
|
1103
1339
|
{
|
1104
1340
|
"name": "decorative",
|
1105
1341
|
"type": {
|
1106
|
-
"text": "boolean
|
1342
|
+
"text": "boolean"
|
1107
1343
|
},
|
1344
|
+
"default": "false",
|
1108
1345
|
"description": "If true, renders a div for presentational purpose instead of the semantic hr-element",
|
1109
1346
|
"fieldName": "decorative"
|
1110
1347
|
},
|
1111
1348
|
{
|
1112
1349
|
"name": "vertical",
|
1113
1350
|
"type": {
|
1114
|
-
"text": "boolean
|
1351
|
+
"text": "boolean"
|
1115
1352
|
},
|
1353
|
+
"default": "false",
|
1116
1354
|
"description": "If true, renders the divider vertically",
|
1117
1355
|
"fieldName": "vertical"
|
1118
1356
|
}
|
@@ -1219,15 +1457,6 @@
|
|
1219
1457
|
"description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text",
|
1220
1458
|
"name": "SkfIcon",
|
1221
1459
|
"members": [
|
1222
|
-
{
|
1223
|
-
"kind": "field",
|
1224
|
-
"name": "_rootId",
|
1225
|
-
"type": {
|
1226
|
-
"text": "string"
|
1227
|
-
},
|
1228
|
-
"privacy": "private",
|
1229
|
-
"default": "'root'"
|
1230
|
-
},
|
1231
1460
|
{
|
1232
1461
|
"kind": "field",
|
1233
1462
|
"name": "color",
|
@@ -1257,6 +1486,19 @@
|
|
1257
1486
|
"description": "Name of the icon to display",
|
1258
1487
|
"attribute": "name"
|
1259
1488
|
},
|
1489
|
+
{
|
1490
|
+
"kind": "field",
|
1491
|
+
"name": "_icon",
|
1492
|
+
"type": {
|
1493
|
+
"text": "TemplateResult"
|
1494
|
+
},
|
1495
|
+
"privacy": "private",
|
1496
|
+
"default": "html``"
|
1497
|
+
},
|
1498
|
+
{
|
1499
|
+
"kind": "method",
|
1500
|
+
"name": "handleNameChanged"
|
1501
|
+
},
|
1260
1502
|
{
|
1261
1503
|
"kind": "field",
|
1262
1504
|
"name": "size",
|
@@ -1267,16 +1509,6 @@
|
|
1267
1509
|
"description": "Size of the icon",
|
1268
1510
|
"attribute": "size",
|
1269
1511
|
"reflects": true
|
1270
|
-
},
|
1271
|
-
{
|
1272
|
-
"kind": "field",
|
1273
|
-
"name": "renderDecorativeIcon",
|
1274
|
-
"privacy": "private"
|
1275
|
-
},
|
1276
|
-
{
|
1277
|
-
"kind": "field",
|
1278
|
-
"name": "renderInformativeIcon",
|
1279
|
-
"privacy": "private"
|
1280
1512
|
}
|
1281
1513
|
],
|
1282
1514
|
"attributes": [
|
@@ -1890,6 +2122,15 @@
|
|
1890
2122
|
}
|
1891
2123
|
],
|
1892
2124
|
"members": [
|
2125
|
+
{
|
2126
|
+
"kind": "field",
|
2127
|
+
"name": "classMap",
|
2128
|
+
"type": {
|
2129
|
+
"text": "object"
|
2130
|
+
},
|
2131
|
+
"static": true,
|
2132
|
+
"default": "{}"
|
2133
|
+
},
|
1893
2134
|
{
|
1894
2135
|
"kind": "field",
|
1895
2136
|
"name": "_onClick",
|
@@ -1946,8 +2187,7 @@
|
|
1946
2187
|
"text": "string | undefined"
|
1947
2188
|
},
|
1948
2189
|
"description": "If defined, loads url on click",
|
1949
|
-
"attribute": "href"
|
1950
|
-
"reflects": true
|
2190
|
+
"attribute": "href"
|
1951
2191
|
},
|
1952
2192
|
{
|
1953
2193
|
"kind": "field",
|
@@ -1973,10 +2213,9 @@
|
|
1973
2213
|
"kind": "field",
|
1974
2214
|
"name": "rel",
|
1975
2215
|
"type": {
|
1976
|
-
"text": "string"
|
2216
|
+
"text": "string | undefined"
|
1977
2217
|
},
|
1978
|
-
"
|
1979
|
-
"description": "Defines the relationship of the target object to the link object",
|
2218
|
+
"description": "If defined, describes the relationship between a linked resource and the current document",
|
1980
2219
|
"attribute": "rel"
|
1981
2220
|
},
|
1982
2221
|
{
|
@@ -1993,8 +2232,9 @@
|
|
1993
2232
|
"kind": "field",
|
1994
2233
|
"name": "stretch",
|
1995
2234
|
"type": {
|
1996
|
-
"text": "boolean
|
2235
|
+
"text": "boolean"
|
1997
2236
|
},
|
2237
|
+
"default": "false",
|
1998
2238
|
"description": "If true, fills the parents horizontal axis",
|
1999
2239
|
"attribute": "stretch",
|
2000
2240
|
"reflects": true
|
@@ -2090,10 +2330,9 @@
|
|
2090
2330
|
{
|
2091
2331
|
"name": "rel",
|
2092
2332
|
"type": {
|
2093
|
-
"text": "string"
|
2333
|
+
"text": "string | undefined"
|
2094
2334
|
},
|
2095
|
-
"
|
2096
|
-
"description": "Defines the relationship of the target object to the link object",
|
2335
|
+
"description": "If defined, describes the relationship between a linked resource and the current document",
|
2097
2336
|
"fieldName": "rel"
|
2098
2337
|
},
|
2099
2338
|
{
|
@@ -2107,8 +2346,9 @@
|
|
2107
2346
|
{
|
2108
2347
|
"name": "stretch",
|
2109
2348
|
"type": {
|
2110
|
-
"text": "boolean
|
2349
|
+
"text": "boolean"
|
2111
2350
|
},
|
2351
|
+
"default": "false",
|
2112
2352
|
"description": "If true, fills the parents horizontal axis",
|
2113
2353
|
"fieldName": "stretch"
|
2114
2354
|
},
|
@@ -2181,8 +2421,9 @@
|
|
2181
2421
|
"kind": "field",
|
2182
2422
|
"name": "invert",
|
2183
2423
|
"type": {
|
2184
|
-
"text": "boolean
|
2424
|
+
"text": "boolean"
|
2185
2425
|
},
|
2426
|
+
"default": "false",
|
2186
2427
|
"description": "If true, inverts the color (to be used on colored backgrounds)",
|
2187
2428
|
"attribute": "invert"
|
2188
2429
|
},
|
@@ -2227,8 +2468,9 @@
|
|
2227
2468
|
{
|
2228
2469
|
"name": "invert",
|
2229
2470
|
"type": {
|
2230
|
-
"text": "boolean
|
2471
|
+
"text": "boolean"
|
2231
2472
|
},
|
2473
|
+
"default": "false",
|
2232
2474
|
"description": "If true, inverts the color (to be used on colored backgrounds)",
|
2233
2475
|
"fieldName": "invert"
|
2234
2476
|
},
|
@@ -2287,51 +2529,744 @@
|
|
2287
2529
|
"attribute": "title"
|
2288
2530
|
},
|
2289
2531
|
{
|
2290
|
-
"kind": "field",
|
2291
|
-
"name": "color",
|
2292
|
-
"type": {
|
2293
|
-
"text": "\"primary\" | \"secondary\" | \"inverse\""
|
2294
|
-
},
|
2295
|
-
"default": "'primary'",
|
2296
|
-
"description": "
|
2297
|
-
"attribute": "color"
|
2532
|
+
"kind": "field",
|
2533
|
+
"name": "color",
|
2534
|
+
"type": {
|
2535
|
+
"text": "\"primary\" | \"secondary\" | \"inverse\""
|
2536
|
+
},
|
2537
|
+
"default": "'primary'",
|
2538
|
+
"description": "Defines the color of the logo",
|
2539
|
+
"attribute": "color"
|
2540
|
+
}
|
2541
|
+
],
|
2542
|
+
"attributes": [
|
2543
|
+
{
|
2544
|
+
"name": "title",
|
2545
|
+
"type": {
|
2546
|
+
"text": "string"
|
2547
|
+
},
|
2548
|
+
"default": "'SKF logotype'",
|
2549
|
+
"description": "Defines the title of the logo",
|
2550
|
+
"fieldName": "title"
|
2551
|
+
},
|
2552
|
+
{
|
2553
|
+
"name": "color",
|
2554
|
+
"type": {
|
2555
|
+
"text": "\"primary\" | \"secondary\" | \"inverse\""
|
2556
|
+
},
|
2557
|
+
"default": "'primary'",
|
2558
|
+
"description": "Defines the color of the logo",
|
2559
|
+
"fieldName": "color"
|
2560
|
+
}
|
2561
|
+
],
|
2562
|
+
"superclass": {
|
2563
|
+
"name": "SkfElement",
|
2564
|
+
"package": "@internal/components/skf-element.js"
|
2565
|
+
},
|
2566
|
+
"tagName": "skf-logo",
|
2567
|
+
"customElement": true
|
2568
|
+
}
|
2569
|
+
],
|
2570
|
+
"exports": [
|
2571
|
+
{
|
2572
|
+
"kind": "js",
|
2573
|
+
"name": "SkfLogo",
|
2574
|
+
"declaration": {
|
2575
|
+
"name": "SkfLogo",
|
2576
|
+
"module": "src/components/logo/logo.component.ts"
|
2577
|
+
}
|
2578
|
+
}
|
2579
|
+
]
|
2580
|
+
},
|
2581
|
+
{
|
2582
|
+
"kind": "javascript-module",
|
2583
|
+
"path": "src/components/menu/menu.component.ts",
|
2584
|
+
"declarations": [
|
2585
|
+
{
|
2586
|
+
"kind": "class",
|
2587
|
+
"description": "The `<skf-menu>` is a component that displays a list of actions or options.",
|
2588
|
+
"name": "SkfMenu",
|
2589
|
+
"slots": [
|
2590
|
+
{
|
2591
|
+
"description": "The menu popover content",
|
2592
|
+
"name": ""
|
2593
|
+
}
|
2594
|
+
],
|
2595
|
+
"members": [
|
2596
|
+
{
|
2597
|
+
"kind": "method",
|
2598
|
+
"name": "addEventListeners",
|
2599
|
+
"return": {
|
2600
|
+
"type": {
|
2601
|
+
"text": "void"
|
2602
|
+
}
|
2603
|
+
},
|
2604
|
+
"parameters": [
|
2605
|
+
{
|
2606
|
+
"name": "$element",
|
2607
|
+
"type": {
|
2608
|
+
"text": "HTMLElement | Element"
|
2609
|
+
}
|
2610
|
+
}
|
2611
|
+
]
|
2612
|
+
},
|
2613
|
+
{
|
2614
|
+
"kind": "method",
|
2615
|
+
"name": "removeEventListeners",
|
2616
|
+
"return": {
|
2617
|
+
"type": {
|
2618
|
+
"text": "void"
|
2619
|
+
}
|
2620
|
+
},
|
2621
|
+
"parameters": [
|
2622
|
+
{
|
2623
|
+
"name": "$element",
|
2624
|
+
"type": {
|
2625
|
+
"text": "HTMLElement | Element"
|
2626
|
+
}
|
2627
|
+
}
|
2628
|
+
]
|
2629
|
+
},
|
2630
|
+
{
|
2631
|
+
"kind": "field",
|
2632
|
+
"name": "placement",
|
2633
|
+
"type": {
|
2634
|
+
"text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
|
2635
|
+
},
|
2636
|
+
"default": "'bottom-start'",
|
2637
|
+
"description": "The placement of the menu"
|
2638
|
+
},
|
2639
|
+
{
|
2640
|
+
"type": {
|
2641
|
+
"text": "boolean"
|
2642
|
+
},
|
2643
|
+
"description": "Whether the menu is open",
|
2644
|
+
"name": "isOpen",
|
2645
|
+
"default": "false",
|
2646
|
+
"kind": "field"
|
2647
|
+
},
|
2648
|
+
{
|
2649
|
+
"type": {
|
2650
|
+
"text": "string"
|
2651
|
+
},
|
2652
|
+
"description": "The id of the element the menu will be anchored to",
|
2653
|
+
"name": "anchor",
|
2654
|
+
"kind": "field"
|
2655
|
+
}
|
2656
|
+
],
|
2657
|
+
"events": [
|
2658
|
+
{
|
2659
|
+
"description": "Fired when the menu is opened",
|
2660
|
+
"name": "open"
|
2661
|
+
},
|
2662
|
+
{
|
2663
|
+
"description": "Fired when the menu is closed",
|
2664
|
+
"name": "close"
|
2665
|
+
}
|
2666
|
+
],
|
2667
|
+
"superclass": {
|
2668
|
+
"name": "SkfPopoverBase",
|
2669
|
+
"package": "@internal/base-classes/popover/popover.base.js"
|
2670
|
+
},
|
2671
|
+
"tagName": "skf-menu",
|
2672
|
+
"customElement": true
|
2673
|
+
}
|
2674
|
+
],
|
2675
|
+
"exports": [
|
2676
|
+
{
|
2677
|
+
"kind": "js",
|
2678
|
+
"name": "SkfMenu",
|
2679
|
+
"declaration": {
|
2680
|
+
"name": "SkfMenu",
|
2681
|
+
"module": "src/components/menu/menu.component.ts"
|
2682
|
+
}
|
2683
|
+
}
|
2684
|
+
]
|
2685
|
+
},
|
2686
|
+
{
|
2687
|
+
"kind": "javascript-module",
|
2688
|
+
"path": "src/components/menu-item/menu-item.component.ts",
|
2689
|
+
"declarations": [
|
2690
|
+
{
|
2691
|
+
"kind": "class",
|
2692
|
+
"description": "The `<skf-menu-item>` is a component that displays a list of actions or options.",
|
2693
|
+
"name": "SkfMenuItem",
|
2694
|
+
"slots": [
|
2695
|
+
{
|
2696
|
+
"description": "The component's main content",
|
2697
|
+
"name": "",
|
2698
|
+
"inheritedFrom": {
|
2699
|
+
"name": "SkfLink",
|
2700
|
+
"module": "src/components/link/link.component.ts"
|
2701
|
+
}
|
2702
|
+
},
|
2703
|
+
{
|
2704
|
+
"description": "A named slot of the component",
|
2705
|
+
"name": "my-named-slot"
|
2706
|
+
}
|
2707
|
+
],
|
2708
|
+
"members": [
|
2709
|
+
{
|
2710
|
+
"kind": "field",
|
2711
|
+
"name": "classMap",
|
2712
|
+
"type": {
|
2713
|
+
"text": "object"
|
2714
|
+
},
|
2715
|
+
"static": true,
|
2716
|
+
"default": "{ 'menu-item': true }",
|
2717
|
+
"inheritedFrom": {
|
2718
|
+
"name": "SkfLink",
|
2719
|
+
"module": "src/components/link/link.component.ts"
|
2720
|
+
}
|
2721
|
+
},
|
2722
|
+
{
|
2723
|
+
"kind": "field",
|
2724
|
+
"name": "_onClick",
|
2725
|
+
"type": {
|
2726
|
+
"text": "(event: Event, route?: string) => void | undefined"
|
2727
|
+
},
|
2728
|
+
"privacy": "private",
|
2729
|
+
"inheritedFrom": {
|
2730
|
+
"name": "SkfLink",
|
2731
|
+
"module": "src/components/link/link.component.ts"
|
2732
|
+
}
|
2733
|
+
},
|
2734
|
+
{
|
2735
|
+
"kind": "field",
|
2736
|
+
"name": "as",
|
2737
|
+
"type": {
|
2738
|
+
"text": "'button' | 'a'"
|
2739
|
+
},
|
2740
|
+
"default": "'a'",
|
2741
|
+
"description": "Defines the semantic element to render",
|
2742
|
+
"attribute": "as",
|
2743
|
+
"reflects": true,
|
2744
|
+
"inheritedFrom": {
|
2745
|
+
"name": "SkfLink",
|
2746
|
+
"module": "src/components/link/link.component.ts"
|
2747
|
+
}
|
2748
|
+
},
|
2749
|
+
{
|
2750
|
+
"kind": "field",
|
2751
|
+
"name": "color",
|
2752
|
+
"type": {
|
2753
|
+
"text": "'primary' | 'inverse'"
|
2754
|
+
},
|
2755
|
+
"default": "'primary'",
|
2756
|
+
"description": "Defines the text-color",
|
2757
|
+
"attribute": "color",
|
2758
|
+
"reflects": true,
|
2759
|
+
"inheritedFrom": {
|
2760
|
+
"name": "SkfLink",
|
2761
|
+
"module": "src/components/link/link.component.ts"
|
2762
|
+
}
|
2763
|
+
},
|
2764
|
+
{
|
2765
|
+
"kind": "field",
|
2766
|
+
"name": "disabled",
|
2767
|
+
"type": {
|
2768
|
+
"text": "boolean | undefined"
|
2769
|
+
},
|
2770
|
+
"description": "If true, disables the link",
|
2771
|
+
"attribute": "disabled",
|
2772
|
+
"reflects": true,
|
2773
|
+
"inheritedFrom": {
|
2774
|
+
"name": "SkfLink",
|
2775
|
+
"module": "src/components/link/link.component.ts"
|
2776
|
+
}
|
2777
|
+
},
|
2778
|
+
{
|
2779
|
+
"kind": "field",
|
2780
|
+
"name": "download",
|
2781
|
+
"type": {
|
2782
|
+
"text": "string | undefined"
|
2783
|
+
},
|
2784
|
+
"description": "If defined, downloads the url",
|
2785
|
+
"attribute": "download",
|
2786
|
+
"inheritedFrom": {
|
2787
|
+
"name": "SkfLink",
|
2788
|
+
"module": "src/components/link/link.component.ts"
|
2789
|
+
}
|
2790
|
+
},
|
2791
|
+
{
|
2792
|
+
"kind": "field",
|
2793
|
+
"name": "href",
|
2794
|
+
"type": {
|
2795
|
+
"text": "string | undefined"
|
2796
|
+
},
|
2797
|
+
"description": "If defined, loads url on click",
|
2798
|
+
"attribute": "href",
|
2799
|
+
"inheritedFrom": {
|
2800
|
+
"name": "SkfLink",
|
2801
|
+
"module": "src/components/link/link.component.ts"
|
2802
|
+
}
|
2803
|
+
},
|
2804
|
+
{
|
2805
|
+
"kind": "field",
|
2806
|
+
"name": "icon",
|
2807
|
+
"type": {
|
2808
|
+
"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\""
|
2809
|
+
},
|
2810
|
+
"description": "If defined, renders an icon before or after the text",
|
2811
|
+
"attribute": "icon",
|
2812
|
+
"inheritedFrom": {
|
2813
|
+
"name": "SkfLink",
|
2814
|
+
"module": "src/components/link/link.component.ts"
|
2815
|
+
}
|
2816
|
+
},
|
2817
|
+
{
|
2818
|
+
"kind": "field",
|
2819
|
+
"name": "iconPlacement",
|
2820
|
+
"type": {
|
2821
|
+
"text": "'left' | 'right'"
|
2822
|
+
},
|
2823
|
+
"default": "'left'",
|
2824
|
+
"description": "Defines the position of the icon in relation to the text",
|
2825
|
+
"attribute": "icon-placement",
|
2826
|
+
"reflects": true,
|
2827
|
+
"inheritedFrom": {
|
2828
|
+
"name": "SkfLink",
|
2829
|
+
"module": "src/components/link/link.component.ts"
|
2830
|
+
}
|
2831
|
+
},
|
2832
|
+
{
|
2833
|
+
"kind": "field",
|
2834
|
+
"name": "rel",
|
2835
|
+
"type": {
|
2836
|
+
"text": "string | undefined"
|
2837
|
+
},
|
2838
|
+
"description": "If defined, describes the relationship between a linked resource and the current document",
|
2839
|
+
"attribute": "rel",
|
2840
|
+
"inheritedFrom": {
|
2841
|
+
"name": "SkfLink",
|
2842
|
+
"module": "src/components/link/link.component.ts"
|
2843
|
+
}
|
2844
|
+
},
|
2845
|
+
{
|
2846
|
+
"kind": "field",
|
2847
|
+
"name": "route",
|
2848
|
+
"type": {
|
2849
|
+
"text": "string | undefined"
|
2850
|
+
},
|
2851
|
+
"description": "If defined, used on conjunction with onClick property, second argument",
|
2852
|
+
"attribute": "route",
|
2853
|
+
"reflects": true,
|
2854
|
+
"inheritedFrom": {
|
2855
|
+
"name": "SkfLink",
|
2856
|
+
"module": "src/components/link/link.component.ts"
|
2857
|
+
}
|
2858
|
+
},
|
2859
|
+
{
|
2860
|
+
"kind": "field",
|
2861
|
+
"name": "stretch",
|
2862
|
+
"type": {
|
2863
|
+
"text": "boolean"
|
2864
|
+
},
|
2865
|
+
"default": "false",
|
2866
|
+
"description": "If true, fills the parents horizontal axis",
|
2867
|
+
"attribute": "stretch",
|
2868
|
+
"reflects": true,
|
2869
|
+
"inheritedFrom": {
|
2870
|
+
"name": "SkfLink",
|
2871
|
+
"module": "src/components/link/link.component.ts"
|
2872
|
+
}
|
2873
|
+
},
|
2874
|
+
{
|
2875
|
+
"kind": "field",
|
2876
|
+
"name": "target",
|
2877
|
+
"type": {
|
2878
|
+
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
2879
|
+
},
|
2880
|
+
"description": "If defined, specifies where to open the linked document",
|
2881
|
+
"attribute": "target",
|
2882
|
+
"inheritedFrom": {
|
2883
|
+
"name": "SkfLink",
|
2884
|
+
"module": "src/components/link/link.component.ts"
|
2885
|
+
}
|
2886
|
+
},
|
2887
|
+
{
|
2888
|
+
"kind": "field",
|
2889
|
+
"name": "type",
|
2890
|
+
"type": {
|
2891
|
+
"text": "'button' | 'submit' | 'reset'"
|
2892
|
+
},
|
2893
|
+
"default": "'button'",
|
2894
|
+
"description": "Defines the type of button",
|
2895
|
+
"attribute": "type",
|
2896
|
+
"inheritedFrom": {
|
2897
|
+
"name": "SkfLink",
|
2898
|
+
"module": "src/components/link/link.component.ts"
|
2899
|
+
}
|
2900
|
+
},
|
2901
|
+
{
|
2902
|
+
"kind": "field",
|
2903
|
+
"name": "onClick",
|
2904
|
+
"description": "If provided, custom function triggered by click where the second return parameter enables custom routing.",
|
2905
|
+
"type": {
|
2906
|
+
"text": "function"
|
2907
|
+
},
|
2908
|
+
"inheritedFrom": {
|
2909
|
+
"name": "SkfLink",
|
2910
|
+
"module": "src/components/link/link.component.ts"
|
2911
|
+
}
|
2912
|
+
}
|
2913
|
+
],
|
2914
|
+
"events": [
|
2915
|
+
{
|
2916
|
+
"type": {
|
2917
|
+
"text": "CustomEvent"
|
2918
|
+
},
|
2919
|
+
"description": "Fired when something happens",
|
2920
|
+
"name": "my-tag-my-event"
|
2921
|
+
},
|
2922
|
+
{
|
2923
|
+
"description": "Fired when the component is clicked",
|
2924
|
+
"name": "click"
|
2925
|
+
},
|
2926
|
+
{
|
2927
|
+
"description": "Fired when the mouse is over the component",
|
2928
|
+
"name": "mouseover"
|
2929
|
+
},
|
2930
|
+
{
|
2931
|
+
"description": "Fired when the mouse is out of the component",
|
2932
|
+
"name": "mouseout"
|
2933
|
+
},
|
2934
|
+
{
|
2935
|
+
"description": "Fired when the component is focused",
|
2936
|
+
"name": "focus"
|
2937
|
+
},
|
2938
|
+
{
|
2939
|
+
"description": "Fired when the component is blurred",
|
2940
|
+
"name": "blur"
|
2941
|
+
},
|
2942
|
+
{
|
2943
|
+
"description": "Fired when the component's value changes",
|
2944
|
+
"name": "change"
|
2945
|
+
}
|
2946
|
+
],
|
2947
|
+
"superclass": {
|
2948
|
+
"name": "SkfLink",
|
2949
|
+
"package": "@components/link/link.component.js"
|
2950
|
+
},
|
2951
|
+
"tagName": "skf-menu-item",
|
2952
|
+
"customElement": true,
|
2953
|
+
"attributes": [
|
2954
|
+
{
|
2955
|
+
"name": "as",
|
2956
|
+
"type": {
|
2957
|
+
"text": "'button' | 'a'"
|
2958
|
+
},
|
2959
|
+
"default": "'a'",
|
2960
|
+
"description": "Defines the semantic element to render",
|
2961
|
+
"fieldName": "as",
|
2962
|
+
"inheritedFrom": {
|
2963
|
+
"name": "SkfLink",
|
2964
|
+
"module": "src/components/link/link.component.ts"
|
2965
|
+
}
|
2966
|
+
},
|
2967
|
+
{
|
2968
|
+
"name": "color",
|
2969
|
+
"type": {
|
2970
|
+
"text": "'primary' | 'inverse'"
|
2971
|
+
},
|
2972
|
+
"default": "'primary'",
|
2973
|
+
"description": "Defines the text-color",
|
2974
|
+
"fieldName": "color",
|
2975
|
+
"inheritedFrom": {
|
2976
|
+
"name": "SkfLink",
|
2977
|
+
"module": "src/components/link/link.component.ts"
|
2978
|
+
}
|
2979
|
+
},
|
2980
|
+
{
|
2981
|
+
"name": "disabled",
|
2982
|
+
"type": {
|
2983
|
+
"text": "boolean | undefined"
|
2984
|
+
},
|
2985
|
+
"description": "If true, disables the link",
|
2986
|
+
"fieldName": "disabled",
|
2987
|
+
"inheritedFrom": {
|
2988
|
+
"name": "SkfLink",
|
2989
|
+
"module": "src/components/link/link.component.ts"
|
2990
|
+
}
|
2991
|
+
},
|
2992
|
+
{
|
2993
|
+
"name": "download",
|
2994
|
+
"type": {
|
2995
|
+
"text": "string | undefined"
|
2996
|
+
},
|
2997
|
+
"description": "If defined, downloads the url",
|
2998
|
+
"fieldName": "download",
|
2999
|
+
"inheritedFrom": {
|
3000
|
+
"name": "SkfLink",
|
3001
|
+
"module": "src/components/link/link.component.ts"
|
3002
|
+
}
|
3003
|
+
},
|
3004
|
+
{
|
3005
|
+
"name": "href",
|
3006
|
+
"type": {
|
3007
|
+
"text": "string | undefined"
|
3008
|
+
},
|
3009
|
+
"description": "If defined, loads url on click",
|
3010
|
+
"fieldName": "href",
|
3011
|
+
"inheritedFrom": {
|
3012
|
+
"name": "SkfLink",
|
3013
|
+
"module": "src/components/link/link.component.ts"
|
3014
|
+
}
|
3015
|
+
},
|
3016
|
+
{
|
3017
|
+
"name": "icon",
|
3018
|
+
"type": {
|
3019
|
+
"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\""
|
3020
|
+
},
|
3021
|
+
"description": "If defined, renders an icon before or after the text",
|
3022
|
+
"fieldName": "icon",
|
3023
|
+
"inheritedFrom": {
|
3024
|
+
"name": "SkfLink",
|
3025
|
+
"module": "src/components/link/link.component.ts"
|
3026
|
+
}
|
3027
|
+
},
|
3028
|
+
{
|
3029
|
+
"name": "icon-placement",
|
3030
|
+
"type": {
|
3031
|
+
"text": "'left' | 'right'"
|
3032
|
+
},
|
3033
|
+
"default": "'left'",
|
3034
|
+
"description": "Defines the position of the icon in relation to the text",
|
3035
|
+
"fieldName": "iconPlacement",
|
3036
|
+
"inheritedFrom": {
|
3037
|
+
"name": "SkfLink",
|
3038
|
+
"module": "src/components/link/link.component.ts"
|
3039
|
+
}
|
3040
|
+
},
|
3041
|
+
{
|
3042
|
+
"name": "rel",
|
3043
|
+
"type": {
|
3044
|
+
"text": "string | undefined"
|
3045
|
+
},
|
3046
|
+
"description": "If defined, describes the relationship between a linked resource and the current document",
|
3047
|
+
"fieldName": "rel",
|
3048
|
+
"inheritedFrom": {
|
3049
|
+
"name": "SkfLink",
|
3050
|
+
"module": "src/components/link/link.component.ts"
|
3051
|
+
}
|
3052
|
+
},
|
3053
|
+
{
|
3054
|
+
"name": "route",
|
3055
|
+
"type": {
|
3056
|
+
"text": "string | undefined"
|
3057
|
+
},
|
3058
|
+
"description": "If defined, used on conjunction with onClick property, second argument",
|
3059
|
+
"fieldName": "route",
|
3060
|
+
"inheritedFrom": {
|
3061
|
+
"name": "SkfLink",
|
3062
|
+
"module": "src/components/link/link.component.ts"
|
3063
|
+
}
|
3064
|
+
},
|
3065
|
+
{
|
3066
|
+
"name": "stretch",
|
3067
|
+
"type": {
|
3068
|
+
"text": "boolean"
|
3069
|
+
},
|
3070
|
+
"default": "false",
|
3071
|
+
"description": "If true, fills the parents horizontal axis",
|
3072
|
+
"fieldName": "stretch",
|
3073
|
+
"inheritedFrom": {
|
3074
|
+
"name": "SkfLink",
|
3075
|
+
"module": "src/components/link/link.component.ts"
|
3076
|
+
}
|
3077
|
+
},
|
3078
|
+
{
|
3079
|
+
"name": "target",
|
3080
|
+
"type": {
|
3081
|
+
"text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
|
3082
|
+
},
|
3083
|
+
"description": "If defined, specifies where to open the linked document",
|
3084
|
+
"fieldName": "target",
|
3085
|
+
"inheritedFrom": {
|
3086
|
+
"name": "SkfLink",
|
3087
|
+
"module": "src/components/link/link.component.ts"
|
3088
|
+
}
|
3089
|
+
},
|
3090
|
+
{
|
3091
|
+
"name": "type",
|
3092
|
+
"type": {
|
3093
|
+
"text": "'button' | 'submit' | 'reset'"
|
3094
|
+
},
|
3095
|
+
"default": "'button'",
|
3096
|
+
"description": "Defines the type of button",
|
3097
|
+
"fieldName": "type",
|
3098
|
+
"inheritedFrom": {
|
3099
|
+
"name": "SkfLink",
|
3100
|
+
"module": "src/components/link/link.component.ts"
|
3101
|
+
}
|
3102
|
+
}
|
3103
|
+
]
|
3104
|
+
}
|
3105
|
+
],
|
3106
|
+
"exports": [
|
3107
|
+
{
|
3108
|
+
"kind": "js",
|
3109
|
+
"name": "SkfMenuItem",
|
3110
|
+
"declaration": {
|
3111
|
+
"name": "SkfMenuItem",
|
3112
|
+
"module": "src/components/menu-item/menu-item.component.ts"
|
3113
|
+
}
|
3114
|
+
}
|
3115
|
+
]
|
3116
|
+
},
|
3117
|
+
{
|
3118
|
+
"kind": "javascript-module",
|
3119
|
+
"path": "src/components/popover/popover.component.ts",
|
3120
|
+
"declarations": [
|
3121
|
+
{
|
3122
|
+
"kind": "class",
|
3123
|
+
"description": "The `<skf-popover>` is a general purpose component that displays the slot content.",
|
3124
|
+
"name": "SkfPopover",
|
3125
|
+
"slots": [
|
3126
|
+
{
|
3127
|
+
"description": "The popover content",
|
3128
|
+
"name": ""
|
3129
|
+
}
|
3130
|
+
],
|
3131
|
+
"members": [
|
3132
|
+
{
|
3133
|
+
"kind": "field",
|
3134
|
+
"name": "offset",
|
3135
|
+
"type": {
|
3136
|
+
"text": "number"
|
3137
|
+
},
|
3138
|
+
"default": "8",
|
3139
|
+
"description": "If defined, sets a custom offset for the popover",
|
3140
|
+
"attribute": "offset"
|
3141
|
+
},
|
3142
|
+
{
|
3143
|
+
"kind": "field",
|
3144
|
+
"name": "hideArrow",
|
3145
|
+
"type": {
|
3146
|
+
"text": "boolean"
|
3147
|
+
},
|
3148
|
+
"default": "false",
|
3149
|
+
"description": "If true, hides the arrow",
|
3150
|
+
"attribute": "hideArrow"
|
3151
|
+
},
|
3152
|
+
{
|
3153
|
+
"kind": "method",
|
3154
|
+
"name": "hideArrowChanged"
|
3155
|
+
},
|
3156
|
+
{
|
3157
|
+
"kind": "method",
|
3158
|
+
"name": "addEventListeners",
|
3159
|
+
"return": {
|
3160
|
+
"type": {
|
3161
|
+
"text": "void"
|
3162
|
+
}
|
3163
|
+
},
|
3164
|
+
"parameters": [
|
3165
|
+
{
|
3166
|
+
"name": "$element",
|
3167
|
+
"type": {
|
3168
|
+
"text": "HTMLElement | Element"
|
3169
|
+
}
|
3170
|
+
}
|
3171
|
+
]
|
3172
|
+
},
|
3173
|
+
{
|
3174
|
+
"kind": "method",
|
3175
|
+
"name": "removeEventListeners",
|
3176
|
+
"return": {
|
3177
|
+
"type": {
|
3178
|
+
"text": "void"
|
3179
|
+
}
|
3180
|
+
},
|
3181
|
+
"parameters": [
|
3182
|
+
{
|
3183
|
+
"name": "$element",
|
3184
|
+
"type": {
|
3185
|
+
"text": "HTMLElement | Element"
|
3186
|
+
}
|
3187
|
+
}
|
3188
|
+
]
|
3189
|
+
},
|
3190
|
+
{
|
3191
|
+
"kind": "field",
|
3192
|
+
"name": "arrow",
|
3193
|
+
"type": {
|
3194
|
+
"text": "boolean"
|
3195
|
+
},
|
3196
|
+
"default": "!this.hideArrow"
|
3197
|
+
},
|
3198
|
+
{
|
3199
|
+
"kind": "field",
|
3200
|
+
"name": "placement",
|
3201
|
+
"type": {
|
3202
|
+
"text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
|
3203
|
+
},
|
3204
|
+
"default": "'bottom-start'",
|
3205
|
+
"description": "The placement of the menu"
|
3206
|
+
},
|
3207
|
+
{
|
3208
|
+
"type": {
|
3209
|
+
"text": "boolean"
|
3210
|
+
},
|
3211
|
+
"description": "Whether the menu is open",
|
3212
|
+
"name": "isOpen",
|
3213
|
+
"default": "false",
|
3214
|
+
"kind": "field"
|
3215
|
+
},
|
3216
|
+
{
|
3217
|
+
"type": {
|
3218
|
+
"text": "string"
|
3219
|
+
},
|
3220
|
+
"description": "The id of the element the menu will be anchored to",
|
3221
|
+
"name": "anchor",
|
3222
|
+
"kind": "field"
|
3223
|
+
}
|
3224
|
+
],
|
3225
|
+
"events": [
|
3226
|
+
{
|
3227
|
+
"description": "Fired when the menu is opened",
|
3228
|
+
"name": "open"
|
3229
|
+
},
|
3230
|
+
{
|
3231
|
+
"description": "Fired when the menu is closed",
|
3232
|
+
"name": "close"
|
2298
3233
|
}
|
2299
3234
|
],
|
2300
3235
|
"attributes": [
|
2301
3236
|
{
|
2302
|
-
"name": "
|
3237
|
+
"name": "offset",
|
2303
3238
|
"type": {
|
2304
|
-
"text": "
|
3239
|
+
"text": "number"
|
2305
3240
|
},
|
2306
|
-
"default": "
|
2307
|
-
"description": "
|
2308
|
-
"fieldName": "
|
3241
|
+
"default": "8",
|
3242
|
+
"description": "If defined, sets a custom offset for the popover",
|
3243
|
+
"fieldName": "offset"
|
2309
3244
|
},
|
2310
3245
|
{
|
2311
|
-
"name": "
|
3246
|
+
"name": "hideArrow",
|
2312
3247
|
"type": {
|
2313
|
-
"text": "
|
3248
|
+
"text": "boolean"
|
2314
3249
|
},
|
2315
|
-
"default": "
|
2316
|
-
"description": "If
|
2317
|
-
"fieldName": "
|
3250
|
+
"default": "false",
|
3251
|
+
"description": "If true, hides the arrow",
|
3252
|
+
"fieldName": "hideArrow"
|
2318
3253
|
}
|
2319
3254
|
],
|
2320
3255
|
"superclass": {
|
2321
|
-
"name": "
|
2322
|
-
"package": "@internal/
|
3256
|
+
"name": "SkfPopoverBase",
|
3257
|
+
"package": "@internal/base-classes/popover/popover.base.js"
|
2323
3258
|
},
|
2324
|
-
"tagName": "skf-
|
3259
|
+
"tagName": "skf-popover",
|
2325
3260
|
"customElement": true
|
2326
3261
|
}
|
2327
3262
|
],
|
2328
3263
|
"exports": [
|
2329
3264
|
{
|
2330
3265
|
"kind": "js",
|
2331
|
-
"name": "
|
3266
|
+
"name": "SkfPopover",
|
2332
3267
|
"declaration": {
|
2333
|
-
"name": "
|
2334
|
-
"module": "src/components/
|
3268
|
+
"name": "SkfPopover",
|
3269
|
+
"module": "src/components/popover/popover.component.ts"
|
2335
3270
|
}
|
2336
3271
|
}
|
2337
3272
|
]
|
@@ -2358,8 +3293,9 @@
|
|
2358
3293
|
"kind": "field",
|
2359
3294
|
"name": "animated",
|
2360
3295
|
"type": {
|
2361
|
-
"text": "boolean
|
3296
|
+
"text": "boolean"
|
2362
3297
|
},
|
3298
|
+
"default": "false",
|
2363
3299
|
"description": "If true, the progress-bar's fill value is animated",
|
2364
3300
|
"attribute": "animated",
|
2365
3301
|
"reflects": true
|
@@ -2389,8 +3325,9 @@
|
|
2389
3325
|
{
|
2390
3326
|
"name": "animated",
|
2391
3327
|
"type": {
|
2392
|
-
"text": "boolean
|
3328
|
+
"text": "boolean"
|
2393
3329
|
},
|
3330
|
+
"default": "false",
|
2394
3331
|
"description": "If true, the progress-bar's fill value is animated",
|
2395
3332
|
"fieldName": "animated"
|
2396
3333
|
},
|
@@ -2853,6 +3790,10 @@
|
|
2853
3790
|
"name": "value",
|
2854
3791
|
"description": "Read only, returns the selected value. (if multiple: in a comma separated string)"
|
2855
3792
|
},
|
3793
|
+
{
|
3794
|
+
"kind": "method",
|
3795
|
+
"name": "handleExpandedChange"
|
3796
|
+
},
|
2856
3797
|
{
|
2857
3798
|
"kind": "field",
|
2858
3799
|
"name": "_selectedOptions",
|
@@ -3264,6 +4205,202 @@
|
|
3264
4205
|
}
|
3265
4206
|
]
|
3266
4207
|
},
|
4208
|
+
{
|
4209
|
+
"kind": "javascript-module",
|
4210
|
+
"path": "src/components/stepper/stepper.component.ts",
|
4211
|
+
"declarations": [
|
4212
|
+
{
|
4213
|
+
"kind": "class",
|
4214
|
+
"description": "The `<skf-stepper>` is a component that displays a list of actions or options.",
|
4215
|
+
"name": "SkfStepper",
|
4216
|
+
"slots": [
|
4217
|
+
{
|
4218
|
+
"description": "One or more `<skf-stepper-item>`",
|
4219
|
+
"name": ""
|
4220
|
+
}
|
4221
|
+
],
|
4222
|
+
"members": [
|
4223
|
+
{
|
4224
|
+
"kind": "field",
|
4225
|
+
"name": "activeIndex",
|
4226
|
+
"type": {
|
4227
|
+
"text": "number"
|
4228
|
+
},
|
4229
|
+
"default": "-1",
|
4230
|
+
"description": "Sets the active item",
|
4231
|
+
"attribute": "activeIndex"
|
4232
|
+
},
|
4233
|
+
{
|
4234
|
+
"kind": "field",
|
4235
|
+
"name": "linear",
|
4236
|
+
"type": {
|
4237
|
+
"text": "boolean"
|
4238
|
+
},
|
4239
|
+
"default": "false",
|
4240
|
+
"description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
|
4241
|
+
"attribute": "linear"
|
4242
|
+
},
|
4243
|
+
{
|
4244
|
+
"kind": "field",
|
4245
|
+
"name": "_handleSelected",
|
4246
|
+
"privacy": "private"
|
4247
|
+
}
|
4248
|
+
],
|
4249
|
+
"events": [
|
4250
|
+
{
|
4251
|
+
"description": "Dispatched when the stepper item is selected",
|
4252
|
+
"name": "skf-stepper-item-select"
|
4253
|
+
}
|
4254
|
+
],
|
4255
|
+
"attributes": [
|
4256
|
+
{
|
4257
|
+
"name": "activeIndex",
|
4258
|
+
"type": {
|
4259
|
+
"text": "number"
|
4260
|
+
},
|
4261
|
+
"default": "-1",
|
4262
|
+
"description": "Sets the active item",
|
4263
|
+
"fieldName": "activeIndex"
|
4264
|
+
},
|
4265
|
+
{
|
4266
|
+
"name": "linear",
|
4267
|
+
"type": {
|
4268
|
+
"text": "boolean"
|
4269
|
+
},
|
4270
|
+
"default": "false",
|
4271
|
+
"description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
|
4272
|
+
"fieldName": "linear"
|
4273
|
+
}
|
4274
|
+
],
|
4275
|
+
"superclass": {
|
4276
|
+
"name": "SkfElement",
|
4277
|
+
"package": "@internal/components/skf-element"
|
4278
|
+
},
|
4279
|
+
"tagName": "skf-stepper",
|
4280
|
+
"customElement": true
|
4281
|
+
}
|
4282
|
+
],
|
4283
|
+
"exports": [
|
4284
|
+
{
|
4285
|
+
"kind": "js",
|
4286
|
+
"name": "SkfStepper",
|
4287
|
+
"declaration": {
|
4288
|
+
"name": "SkfStepper",
|
4289
|
+
"module": "src/components/stepper/stepper.component.ts"
|
4290
|
+
}
|
4291
|
+
}
|
4292
|
+
]
|
4293
|
+
},
|
4294
|
+
{
|
4295
|
+
"kind": "javascript-module",
|
4296
|
+
"path": "src/components/stepper-item/stepper-item.component.ts",
|
4297
|
+
"declarations": [
|
4298
|
+
{
|
4299
|
+
"kind": "class",
|
4300
|
+
"description": "The `<skf-stepper-item>` is used in conjunction with the `<skf-stepper>` component",
|
4301
|
+
"name": "SkfStepperItem",
|
4302
|
+
"slots": [
|
4303
|
+
{
|
4304
|
+
"description": "Label of the stepper item",
|
4305
|
+
"name": ""
|
4306
|
+
}
|
4307
|
+
],
|
4308
|
+
"members": [
|
4309
|
+
{
|
4310
|
+
"kind": "field",
|
4311
|
+
"name": "#muteEvents",
|
4312
|
+
"privacy": "private",
|
4313
|
+
"type": {
|
4314
|
+
"text": "boolean"
|
4315
|
+
},
|
4316
|
+
"default": "false"
|
4317
|
+
},
|
4318
|
+
{
|
4319
|
+
"kind": "field",
|
4320
|
+
"name": "#triggerActiveIndexUpdate",
|
4321
|
+
"privacy": "private",
|
4322
|
+
"type": {
|
4323
|
+
"text": "boolean"
|
4324
|
+
},
|
4325
|
+
"default": "false"
|
4326
|
+
},
|
4327
|
+
{
|
4328
|
+
"kind": "field",
|
4329
|
+
"name": "state",
|
4330
|
+
"type": {
|
4331
|
+
"text": "Extract<SkfStepperItemState, 'active' | 'completed'> | undefined"
|
4332
|
+
},
|
4333
|
+
"description": "If defined, gives the supplied appearance",
|
4334
|
+
"attribute": "state",
|
4335
|
+
"reflects": true
|
4336
|
+
},
|
4337
|
+
{
|
4338
|
+
"kind": "field",
|
4339
|
+
"name": "completed",
|
4340
|
+
"type": {
|
4341
|
+
"text": "boolean"
|
4342
|
+
},
|
4343
|
+
"default": "false",
|
4344
|
+
"description": "If true, item marked as completed",
|
4345
|
+
"attribute": "completed"
|
4346
|
+
},
|
4347
|
+
{
|
4348
|
+
"kind": "field",
|
4349
|
+
"name": "_setInternalState"
|
4350
|
+
},
|
4351
|
+
{
|
4352
|
+
"kind": "field",
|
4353
|
+
"name": "role",
|
4354
|
+
"type": {
|
4355
|
+
"text": "string"
|
4356
|
+
},
|
4357
|
+
"default": "'listitem'"
|
4358
|
+
}
|
4359
|
+
],
|
4360
|
+
"events": [
|
4361
|
+
{
|
4362
|
+
"description": "Dispatched when the stepper item is selected",
|
4363
|
+
"name": "skf-stepper-item-select"
|
4364
|
+
}
|
4365
|
+
],
|
4366
|
+
"attributes": [
|
4367
|
+
{
|
4368
|
+
"name": "state",
|
4369
|
+
"type": {
|
4370
|
+
"text": "Extract<SkfStepperItemState, 'active' | 'completed'> | undefined"
|
4371
|
+
},
|
4372
|
+
"description": "If defined, gives the supplied appearance",
|
4373
|
+
"fieldName": "state"
|
4374
|
+
},
|
4375
|
+
{
|
4376
|
+
"name": "completed",
|
4377
|
+
"type": {
|
4378
|
+
"text": "boolean"
|
4379
|
+
},
|
4380
|
+
"default": "false",
|
4381
|
+
"description": "If true, item marked as completed",
|
4382
|
+
"fieldName": "completed"
|
4383
|
+
}
|
4384
|
+
],
|
4385
|
+
"superclass": {
|
4386
|
+
"name": "SkfElement",
|
4387
|
+
"package": "@internal/components/skf-element"
|
4388
|
+
},
|
4389
|
+
"tagName": "skf-stepper-item",
|
4390
|
+
"customElement": true
|
4391
|
+
}
|
4392
|
+
],
|
4393
|
+
"exports": [
|
4394
|
+
{
|
4395
|
+
"kind": "js",
|
4396
|
+
"name": "SkfStepperItem",
|
4397
|
+
"declaration": {
|
4398
|
+
"name": "SkfStepperItem",
|
4399
|
+
"module": "src/components/stepper-item/stepper-item.component.ts"
|
4400
|
+
}
|
4401
|
+
}
|
4402
|
+
]
|
4403
|
+
},
|
3267
4404
|
{
|
3268
4405
|
"kind": "javascript-module",
|
3269
4406
|
"path": "src/components/switch/switch.component.ts",
|
@@ -4741,6 +5878,119 @@
|
|
4741
5878
|
}
|
4742
5879
|
}
|
4743
5880
|
]
|
5881
|
+
},
|
5882
|
+
{
|
5883
|
+
"kind": "javascript-module",
|
5884
|
+
"path": "src/components/tooltip/tooltip.component.ts",
|
5885
|
+
"declarations": [
|
5886
|
+
{
|
5887
|
+
"kind": "class",
|
5888
|
+
"description": "The `<skf-tooltip>` is a component that displays a list of actions or options.",
|
5889
|
+
"name": "SkfTooltip",
|
5890
|
+
"slots": [
|
5891
|
+
{
|
5892
|
+
"description": "The tooltip popover content",
|
5893
|
+
"name": ""
|
5894
|
+
}
|
5895
|
+
],
|
5896
|
+
"members": [
|
5897
|
+
{
|
5898
|
+
"kind": "method",
|
5899
|
+
"name": "addEventListeners",
|
5900
|
+
"return": {
|
5901
|
+
"type": {
|
5902
|
+
"text": "void"
|
5903
|
+
}
|
5904
|
+
},
|
5905
|
+
"parameters": [
|
5906
|
+
{
|
5907
|
+
"name": "$element",
|
5908
|
+
"type": {
|
5909
|
+
"text": "HTMLElement | Element"
|
5910
|
+
}
|
5911
|
+
}
|
5912
|
+
]
|
5913
|
+
},
|
5914
|
+
{
|
5915
|
+
"kind": "method",
|
5916
|
+
"name": "removeEventListeners",
|
5917
|
+
"return": {
|
5918
|
+
"type": {
|
5919
|
+
"text": "void"
|
5920
|
+
}
|
5921
|
+
},
|
5922
|
+
"parameters": [
|
5923
|
+
{
|
5924
|
+
"name": "$element",
|
5925
|
+
"type": {
|
5926
|
+
"text": "HTMLElement | Element"
|
5927
|
+
}
|
5928
|
+
}
|
5929
|
+
]
|
5930
|
+
},
|
5931
|
+
{
|
5932
|
+
"kind": "field",
|
5933
|
+
"name": "offset",
|
5934
|
+
"type": {
|
5935
|
+
"text": "number"
|
5936
|
+
},
|
5937
|
+
"default": "8"
|
5938
|
+
},
|
5939
|
+
{
|
5940
|
+
"kind": "field",
|
5941
|
+
"name": "placement",
|
5942
|
+
"type": {
|
5943
|
+
"text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
|
5944
|
+
},
|
5945
|
+
"default": "'top'",
|
5946
|
+
"description": "The placement of the dropdown"
|
5947
|
+
},
|
5948
|
+
{
|
5949
|
+
"type": {
|
5950
|
+
"text": "boolean"
|
5951
|
+
},
|
5952
|
+
"description": "Whether the dropdown is open",
|
5953
|
+
"name": "isOpen",
|
5954
|
+
"default": "false",
|
5955
|
+
"kind": "field"
|
5956
|
+
},
|
5957
|
+
{
|
5958
|
+
"type": {
|
5959
|
+
"text": "string"
|
5960
|
+
},
|
5961
|
+
"description": "The id of the element the dropdown will be anchored to",
|
5962
|
+
"name": "anchor",
|
5963
|
+
"kind": "field"
|
5964
|
+
}
|
5965
|
+
],
|
5966
|
+
"events": [
|
5967
|
+
{
|
5968
|
+
"description": "Fired when the dropdown is opened",
|
5969
|
+
"name": "open"
|
5970
|
+
},
|
5971
|
+
{
|
5972
|
+
"description": "Fired when the dropdown is closed",
|
5973
|
+
"name": "close"
|
5974
|
+
}
|
5975
|
+
],
|
5976
|
+
"superclass": {
|
5977
|
+
"name": "SkfPopoverBase",
|
5978
|
+
"package": "@internal/base-classes/popover/popover.base.js"
|
5979
|
+
},
|
5980
|
+
"tagName": "skf-tooltip",
|
5981
|
+
"customElement": true
|
5982
|
+
}
|
5983
|
+
],
|
5984
|
+
"exports": [
|
5985
|
+
{
|
5986
|
+
"kind": "js",
|
5987
|
+
"name": "SkfTooltip",
|
5988
|
+
"declaration": {
|
5989
|
+
"name": "SkfTooltip",
|
5990
|
+
"module": "src/components/tooltip/tooltip.component.ts"
|
5991
|
+
}
|
5992
|
+
}
|
5993
|
+
]
|
4744
5994
|
}
|
4745
5995
|
]
|
4746
5996
|
}
|