@skf-design-system/ui-components 1.0.2-beta.0 → 1.0.2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -8
- package/dist/components/accordion/accordion-item.component.d.ts +36 -0
- package/dist/components/accordion/accordion-item.component.js +87 -0
- package/dist/components/accordion/accordion-item.d.ts +3 -3
- package/dist/components/accordion/accordion-item.js +4 -5
- package/dist/components/accordion/accordion-item.styles.js +77 -0
- package/dist/components/accordion/accordion.component.d.ts +5 -9
- package/dist/components/accordion/accordion.component.js +4 -5
- package/dist/components/accordion/accordion.d.ts +0 -1
- package/dist/components/accordion/accordion.js +0 -2
- package/dist/components/alert/alert.component.d.ts +4 -7
- package/dist/components/alert/alert.component.js +8 -9
- package/dist/components/alert/alert.styles.js +0 -5
- package/dist/components/breadcrumb/breadcrumb-item.component.js +61 -0
- package/dist/components/breadcrumb/breadcrumb-item.js +6 -0
- package/dist/components/breadcrumb/breadcrumb-item.styles.js +62 -0
- package/dist/components/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/dist/components/breadcrumb/breadcrumb.component.js +60 -0
- package/dist/components/breadcrumb/breadcrumb.js +6 -0
- package/dist/components/breadcrumb/breadcrumb.styles.js +22 -0
- package/dist/components/button/button.component.d.ts +13 -10
- package/dist/components/button/button.component.js +83 -76
- package/dist/components/button/button.styles.d.ts +1 -2
- package/dist/components/button/button.styles.js +1 -1
- package/dist/components/card/card.component.d.ts +1 -1
- package/dist/components/card/card.component.js +1 -1
- package/dist/components/checkbox/checkbox.component.d.ts +8 -6
- package/dist/components/checkbox/checkbox.component.js +2 -2
- package/dist/components/checkbox/checkbox.styles.d.ts +1 -2
- package/dist/components/checkbox/checkbox.styles.js +1 -5
- package/dist/components/date-picker/datepicker.calendar.component.js +1 -1
- package/dist/components/date-picker/datepicker.component.js +1 -1
- package/dist/components/date-picker-input/datepicker-input.component.d.ts +1 -0
- package/dist/components/date-picker-input/datepicker-input.component.js +3 -2
- package/dist/components/dialog/dialog.component.d.ts +5 -4
- package/dist/components/dialog/dialog.component.js +44 -44
- package/dist/components/dialog/dialog.styles.js +4 -4
- package/dist/components/divider/divider.component.js +1 -1
- package/dist/components/drawer/drawer.component.d.ts +12 -8
- package/dist/components/drawer/drawer.component.js +5 -4
- package/dist/components/header/header.component.d.ts +3 -2
- package/dist/components/header/header.component.js +34 -28
- package/dist/components/heading/heading.component.d.ts +3 -5
- package/dist/components/heading/heading.component.js +22 -21
- package/dist/components/icon/icon.component.d.ts +11 -17
- package/dist/components/icon/icon.component.js +2 -2
- package/dist/components/icon/icon.styles.d.ts +1 -2
- package/dist/components/icon/icon.styles.js +1 -1
- package/dist/components/input/input.component.d.ts +30 -31
- package/dist/components/input/input.component.js +136 -123
- package/dist/components/link/link.component.d.ts +12 -14
- package/dist/components/link/link.component.js +34 -34
- package/dist/components/link/link.styles.d.ts +1 -2
- package/dist/components/link/link.styles.js +2 -2
- package/dist/components/loader/loader.component.d.ts +1 -1
- package/dist/components/loader/loader.component.js +36 -40
- package/dist/components/loader/loader.styles.d.ts +1 -2
- package/dist/components/loader/loader.styles.js +40 -32
- package/dist/components/logo/logo.component.d.ts +4 -5
- package/dist/components/logo/logo.component.js +1 -1
- package/dist/components/menu/menu-item.component.d.ts +13 -0
- package/dist/components/{menu-item → menu}/menu-item.component.js +3 -3
- package/dist/components/menu/menu.component.d.ts +9 -6
- package/dist/components/menu/menu.component.js +8 -10
- package/dist/components/{nav-item → nav}/nav-item.component.d.ts +0 -2
- package/dist/components/{nav-item → nav}/nav-item.component.js +1 -1
- package/dist/components/nav/nav.component.js +1 -1
- package/dist/components/popover/popover.component.d.ts +10 -6
- package/dist/components/popover/popover.component.js +22 -24
- package/dist/components/progress/progress.component.d.ts +2 -2
- package/dist/components/progress/progress.component.js +31 -37
- package/dist/components/progress/progress.styles.js +40 -35
- package/dist/components/radio/radio.component.d.ts +9 -7
- package/dist/components/radio/radio.component.js +2 -2
- package/dist/components/{segmented-button-item → segmented-button}/segmented-button-item.component.d.ts +4 -4
- package/dist/components/segmented-button/segmented-button-item.component.js +56 -0
- package/dist/components/segmented-button/segmented-button-item.js +6 -0
- package/dist/components/segmented-button/segmented-button-item.styles.js +62 -0
- package/dist/components/segmented-button/segmented-button.component.d.ts +0 -2
- package/dist/components/segmented-button/segmented-button.component.js +73 -0
- package/dist/components/segmented-button/segmented-button.js +6 -0
- package/dist/components/segmented-button/segmented-button.styles.js +16 -0
- package/dist/components/{select-option-group → select}/select-option-group.component.js +1 -1
- package/dist/components/{select-option → select}/select-option.component.d.ts +7 -8
- package/dist/components/{select-option → select}/select-option.component.js +15 -15
- package/dist/components/select/select.component.d.ts +16 -15
- package/dist/components/select/select.component.js +17 -17
- package/dist/components/select/select.controllers.d.ts +1 -1
- package/dist/components/select/select.controllers.js +14 -11
- package/dist/components/select/select.stories.icons.d.ts +7 -0
- package/dist/components/{stepper-item → stepper}/stepper-item.component.js +8 -8
- package/dist/components/stepper/stepper.component.d.ts +2 -2
- package/dist/components/stepper/stepper.component.js +15 -15
- package/dist/components/stepper/stepper.helpers.d.ts +1 -1
- package/dist/components/switch/switch.component.js +15 -15
- package/dist/components/tab/tab.component.js +1 -1
- package/dist/components/tab-group/tab-group.component.js +1 -1
- package/dist/components/tab-panel/tab-panel.component.js +1 -1
- package/dist/components/tag/tag.component.d.ts +10 -14
- package/dist/components/tag/tag.component.js +32 -35
- package/dist/components/textarea/textarea.component.d.ts +10 -11
- package/dist/components/textarea/textarea.component.js +62 -64
- package/dist/components/{toast-item → toast}/toast-item.d.ts +2 -0
- package/dist/components/{toast-item → toast}/toast-item.js +4 -0
- package/dist/components/{toast-wrapper → toast}/toast-wrapper.component.js +1 -1
- package/dist/components/toast/toast-wrapper.styles.d.ts +1 -0
- package/dist/components/toast/toast.component.d.ts +5 -4
- package/dist/components/toast/toast.component.js +15 -15
- package/dist/components/toast/toast.singleton.d.ts +4 -4
- package/dist/components/toast/toast.singleton.js +12 -12
- package/dist/components/tooltip/tooltip.component.d.ts +2 -1
- package/dist/components/tooltip/tooltip.component.js +15 -10
- package/dist/custom-elements.json +733 -820
- package/dist/index.d.ts +13 -7
- package/dist/index.js +100 -84
- package/dist/internal/base-classes/popover/popover.base.d.ts +10 -5
- package/dist/internal/base-classes/popover/popover.base.js +77 -60
- package/dist/internal/components/hint/hint.component.d.ts +2 -2
- package/dist/internal/components/hint/hint.component.js +2 -2
- package/dist/internal/components/hint/hint.styles.d.ts +1 -2
- package/dist/internal/components/hint/hint.styles.js +1 -1
- package/dist/internal/constants/iconSeverity.d.ts +3 -2
- package/dist/internal/constants/iconSeverity.js +2 -3
- package/dist/internal/helpers/hintSeverity.d.ts +2 -2
- package/dist/internal/helpers/hintSeverity.js +1 -1
- package/dist/internal/types/formField.d.ts +1 -1
- package/dist/internal/types.d.ts +18 -0
- package/dist/styles/component.styles.d.ts +1 -2
- package/dist/styles/component.styles.js +1 -1
- package/dist/styles/global.css +1 -1
- package/dist/types/jsx/custom-element-jsx.d.ts +162 -180
- package/dist/types/vue/index.d.ts +162 -180
- package/dist/vscode.html-custom-data.json +133 -1091
- package/dist/web-types.json +368 -424
- package/package.json +24 -25
- package/dist/components/collapse/collapse.component.d.ts +0 -40
- package/dist/components/collapse/collapse.component.js +0 -86
- package/dist/components/collapse/collapse.d.ts +0 -8
- package/dist/components/collapse/collapse.js +0 -6
- package/dist/components/collapse/collapse.styles.d.ts +0 -2
- package/dist/components/collapse/collapse.styles.js +0 -77
- package/dist/components/menu-item/menu-item.component.d.ts +0 -25
- package/dist/internal/constants/heading.d.ts +0 -2
- /package/dist/components/{breadcrumb-item/breadcrumb-item.styles.d.ts → accordion/accordion-item.styles.d.ts} +0 -0
- /package/dist/components/{collapse/collapse.test.d.ts → accordion/accordion-item.test.d.ts} +0 -0
- /package/dist/components/{breadcrumb-item → breadcrumb}/breadcrumb-item.component.d.ts +0 -0
- /package/dist/components/{breadcrumb-item → breadcrumb}/breadcrumb-item.d.ts +0 -0
- /package/dist/components/{menu-item/menu-item.styles.d.ts → breadcrumb/breadcrumb-item.styles.d.ts} +0 -0
- /package/dist/components/{menu-item → menu}/menu-item.d.ts +0 -0
- /package/dist/components/{menu-item → menu}/menu-item.js +0 -0
- /package/dist/components/{nav-item/nav-item.styles.d.ts → menu/menu-item.styles.d.ts} +0 -0
- /package/dist/components/{menu-item → menu}/menu-item.styles.js +0 -0
- /package/dist/components/{nav-item → nav}/nav-item.d.ts +0 -0
- /package/dist/components/{nav-item → nav}/nav-item.js +0 -0
- /package/dist/components/{segmented-button-item/segmented-button-item.styles.d.ts → nav/nav-item.styles.d.ts} +0 -0
- /package/dist/components/{nav-item → nav}/nav-item.styles.js +0 -0
- /package/dist/components/{segmented-button-item → segmented-button}/segmented-button-item.d.ts +0 -0
- /package/dist/components/{select-option-group/select-option-group.style.d.ts → segmented-button/segmented-button-item.styles.d.ts} +0 -0
- /package/dist/components/{select-option-group → select}/select-option-group.component.d.ts +0 -0
- /package/dist/components/{select-option-group → select}/select-option-group.d.ts +0 -0
- /package/dist/components/{select-option-group → select}/select-option-group.js +0 -0
- /package/dist/components/{select-option/select-option.styles.d.ts → select/select-option-group.style.d.ts} +0 -0
- /package/dist/components/{select-option-group → select}/select-option-group.style.js +0 -0
- /package/dist/components/{select-option → select}/select-option.controllers.d.ts +0 -0
- /package/dist/components/{select-option → select}/select-option.d.ts +0 -0
- /package/dist/components/{select-option → select}/select-option.js +0 -0
- /package/dist/components/{stepper-item/stepper-item.styles.d.ts → select/select-option.styles.d.ts} +0 -0
- /package/dist/components/{select-option → select}/select-option.styles.js +0 -0
- /package/dist/components/{stepper-item → stepper}/stepper-item.component.d.ts +0 -0
- /package/dist/components/{stepper-item → stepper}/stepper-item.d.ts +0 -0
- /package/dist/components/{stepper-item → stepper}/stepper-item.js +0 -0
- /package/dist/components/{toast-wrapper/toast-wrapper.styles.d.ts → stepper/stepper-item.styles.d.ts} +0 -0
- /package/dist/components/{stepper-item → stepper}/stepper-item.styles.js +0 -0
- /package/dist/components/{toast-item → toast}/toast-item.component.d.ts +0 -0
- /package/dist/components/{toast-item → toast}/toast-item.component.js +0 -0
- /package/dist/components/{toast-item → toast}/toast-item.styles.d.ts +0 -0
- /package/dist/components/{toast-item → toast}/toast-item.styles.js +0 -0
- /package/dist/components/{toast-wrapper → toast}/toast-wrapper.component.d.ts +0 -0
- /package/dist/components/{toast-wrapper → toast}/toast-wrapper.d.ts +0 -0
- /package/dist/components/{toast-wrapper → toast}/toast-wrapper.js +0 -0
- /package/dist/components/{toast-wrapper → toast}/toast-wrapper.styles.js +0 -0
@@ -8,19 +8,22 @@
|
|
8
8
|
"declarations": [
|
9
9
|
{
|
10
10
|
"kind": "class",
|
11
|
-
"description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text",
|
11
|
+
"description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text.",
|
12
12
|
"name": "SkfIcon",
|
13
13
|
"members": [
|
14
14
|
{
|
15
15
|
"kind": "field",
|
16
16
|
"name": "color",
|
17
17
|
"type": {
|
18
|
-
"text": "
|
18
|
+
"text": "IconColor"
|
19
19
|
},
|
20
20
|
"default": "'primary'",
|
21
21
|
"description": "Sets the color of the icon",
|
22
22
|
"attribute": "color",
|
23
|
-
"reflects": true
|
23
|
+
"reflects": true,
|
24
|
+
"expandedType": {
|
25
|
+
"text": "'error' | 'info' | 'warning' | 'primary' | 'inverse' | 'emphasised' | 'secondary' | 'success'"
|
26
|
+
}
|
24
27
|
},
|
25
28
|
{
|
26
29
|
"kind": "field",
|
@@ -35,32 +38,41 @@
|
|
35
38
|
"kind": "field",
|
36
39
|
"name": "name",
|
37
40
|
"type": {
|
38
|
-
"text": "
|
41
|
+
"text": "Icon"
|
39
42
|
},
|
40
43
|
"description": "Name of the icon to display",
|
41
|
-
"attribute": "name"
|
44
|
+
"attribute": "name",
|
45
|
+
"expandedType": {
|
46
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut'"
|
47
|
+
}
|
42
48
|
},
|
43
49
|
{
|
44
50
|
"kind": "field",
|
45
51
|
"name": "size",
|
46
52
|
"type": {
|
47
|
-
"text": "
|
53
|
+
"text": "SkfIconSize"
|
48
54
|
},
|
49
55
|
"default": "'md'",
|
50
56
|
"description": "Size of the icon",
|
51
57
|
"attribute": "size",
|
52
|
-
"reflects": true
|
58
|
+
"reflects": true,
|
59
|
+
"expandedType": {
|
60
|
+
"text": "'xs' | 'sm' | 'md' | 'lg'"
|
61
|
+
}
|
53
62
|
}
|
54
63
|
],
|
55
64
|
"attributes": [
|
56
65
|
{
|
57
66
|
"name": "color",
|
58
67
|
"type": {
|
59
|
-
"text": "
|
68
|
+
"text": "IconColor"
|
60
69
|
},
|
61
70
|
"default": "'primary'",
|
62
71
|
"description": "Sets the color of the icon",
|
63
|
-
"fieldName": "color"
|
72
|
+
"fieldName": "color",
|
73
|
+
"expandedType": {
|
74
|
+
"text": "'error' | 'info' | 'warning' | 'primary' | 'inverse' | 'emphasised' | 'secondary' | 'success'"
|
75
|
+
}
|
64
76
|
},
|
65
77
|
{
|
66
78
|
"name": "label",
|
@@ -73,19 +85,25 @@
|
|
73
85
|
{
|
74
86
|
"name": "name",
|
75
87
|
"type": {
|
76
|
-
"text": "
|
88
|
+
"text": "Icon"
|
77
89
|
},
|
78
90
|
"description": "Name of the icon to display",
|
79
|
-
"fieldName": "name"
|
91
|
+
"fieldName": "name",
|
92
|
+
"expandedType": {
|
93
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut'"
|
94
|
+
}
|
80
95
|
},
|
81
96
|
{
|
82
97
|
"name": "size",
|
83
98
|
"type": {
|
84
|
-
"text": "
|
99
|
+
"text": "SkfIconSize"
|
85
100
|
},
|
86
101
|
"default": "'md'",
|
87
102
|
"description": "Size of the icon",
|
88
|
-
"fieldName": "size"
|
103
|
+
"fieldName": "size",
|
104
|
+
"expandedType": {
|
105
|
+
"text": "'xs' | 'sm' | 'md' | 'lg'"
|
106
|
+
}
|
89
107
|
}
|
90
108
|
],
|
91
109
|
"superclass": {
|
@@ -110,12 +128,12 @@
|
|
110
128
|
},
|
111
129
|
{
|
112
130
|
"kind": "javascript-module",
|
113
|
-
"path": "components/
|
131
|
+
"path": "components/accordion/accordion-item.js",
|
114
132
|
"declarations": [
|
115
133
|
{
|
116
134
|
"kind": "class",
|
117
|
-
"description": "The `<skf-
|
118
|
-
"name": "
|
135
|
+
"description": "The `<skf-accordion-item>` is used in conjunction with the `<skf-accordion>` component",
|
136
|
+
"name": "SkfAccordionItem",
|
119
137
|
"slots": [
|
120
138
|
{
|
121
139
|
"description": "Main content",
|
@@ -130,7 +148,7 @@
|
|
130
148
|
"text": "boolean"
|
131
149
|
},
|
132
150
|
"default": "false",
|
133
|
-
"description": "If true, will animate the expand/
|
151
|
+
"description": "If true, will animate the expand/accordion-item state",
|
134
152
|
"attribute": "animated",
|
135
153
|
"reflects": true
|
136
154
|
},
|
@@ -141,7 +159,7 @@
|
|
141
159
|
"text": "boolean"
|
142
160
|
},
|
143
161
|
"default": "false",
|
144
|
-
"description": "If true, will set the
|
162
|
+
"description": "If true, will set the accordion-item to be expanded by default",
|
145
163
|
"attribute": "expanded",
|
146
164
|
"reflects": true
|
147
165
|
},
|
@@ -151,18 +169,21 @@
|
|
151
169
|
"type": {
|
152
170
|
"text": "string | undefined"
|
153
171
|
},
|
154
|
-
"description": "Heading for the
|
172
|
+
"description": "Heading for the accordion-item",
|
155
173
|
"attribute": "heading"
|
156
174
|
},
|
157
175
|
{
|
158
176
|
"kind": "field",
|
159
177
|
"name": "headingAs",
|
160
178
|
"type": {
|
161
|
-
"text": "
|
179
|
+
"text": "SkfAccordionItemHeadingType"
|
162
180
|
},
|
163
181
|
"default": "'h2'",
|
164
182
|
"description": "Defines which heading element will be rendered",
|
165
|
-
"attribute": "heading-as"
|
183
|
+
"attribute": "heading-as",
|
184
|
+
"expandedType": {
|
185
|
+
"text": "'h2' | 'h3' | 'h4'"
|
186
|
+
}
|
166
187
|
},
|
167
188
|
{
|
168
189
|
"kind": "field",
|
@@ -182,7 +203,7 @@
|
|
182
203
|
"text": "boolean"
|
183
204
|
},
|
184
205
|
"default": "false",
|
185
|
-
"description": "If true, will truncate the heading in
|
206
|
+
"description": "If true, will truncate the heading in accordion-item state",
|
186
207
|
"attribute": "truncate",
|
187
208
|
"reflects": true
|
188
209
|
},
|
@@ -203,7 +224,7 @@
|
|
203
224
|
"text": "CustomEvent"
|
204
225
|
},
|
205
226
|
"description": "Event emitted when toggled",
|
206
|
-
"name": "skf-
|
227
|
+
"name": "skf-accordion-item-toggle"
|
207
228
|
}
|
208
229
|
],
|
209
230
|
"attributes": [
|
@@ -213,7 +234,7 @@
|
|
213
234
|
"text": "boolean"
|
214
235
|
},
|
215
236
|
"default": "false",
|
216
|
-
"description": "If true, will animate the expand/
|
237
|
+
"description": "If true, will animate the expand/accordion-item state",
|
217
238
|
"fieldName": "animated"
|
218
239
|
},
|
219
240
|
{
|
@@ -222,7 +243,7 @@
|
|
222
243
|
"text": "boolean"
|
223
244
|
},
|
224
245
|
"default": "false",
|
225
|
-
"description": "If true, will set the
|
246
|
+
"description": "If true, will set the accordion-item to be expanded by default",
|
226
247
|
"fieldName": "expanded"
|
227
248
|
},
|
228
249
|
{
|
@@ -230,17 +251,20 @@
|
|
230
251
|
"type": {
|
231
252
|
"text": "string | undefined"
|
232
253
|
},
|
233
|
-
"description": "Heading for the
|
254
|
+
"description": "Heading for the accordion-item",
|
234
255
|
"fieldName": "heading"
|
235
256
|
},
|
236
257
|
{
|
237
258
|
"name": "heading-as",
|
238
259
|
"type": {
|
239
|
-
"text": "
|
260
|
+
"text": "SkfAccordionItemHeadingType"
|
240
261
|
},
|
241
262
|
"default": "'h2'",
|
242
263
|
"description": "Defines which heading element will be rendered",
|
243
|
-
"fieldName": "headingAs"
|
264
|
+
"fieldName": "headingAs",
|
265
|
+
"expandedType": {
|
266
|
+
"text": "'h2' | 'h3' | 'h4'"
|
267
|
+
}
|
244
268
|
},
|
245
269
|
{
|
246
270
|
"name": "small",
|
@@ -257,7 +281,7 @@
|
|
257
281
|
"text": "boolean"
|
258
282
|
},
|
259
283
|
"default": "false",
|
260
|
-
"description": "If true, will truncate the heading in
|
284
|
+
"description": "If true, will truncate the heading in accordion-item state",
|
261
285
|
"fieldName": "truncate"
|
262
286
|
}
|
263
287
|
],
|
@@ -265,21 +289,21 @@
|
|
265
289
|
"name": "SkfElement",
|
266
290
|
"package": "@internal/components/skf-element.js"
|
267
291
|
},
|
268
|
-
"tagName": "skf-
|
292
|
+
"tagName": "skf-accordion-item",
|
269
293
|
"customElement": true
|
270
294
|
}
|
271
295
|
],
|
272
296
|
"exports": [
|
273
297
|
{
|
274
298
|
"kind": "js",
|
275
|
-
"name": "
|
299
|
+
"name": "SkfAccordionItem",
|
276
300
|
"declaration": {
|
277
|
-
"name": "
|
278
|
-
"module": "src/components/
|
301
|
+
"name": "SkfAccordionItem",
|
302
|
+
"module": "src/components/accordion/accordion-item.component.ts"
|
279
303
|
}
|
280
304
|
}
|
281
305
|
],
|
282
|
-
"typeDefinitionPath": "components/
|
306
|
+
"typeDefinitionPath": "components/accordion/accordion-item.d.ts"
|
283
307
|
},
|
284
308
|
{
|
285
309
|
"kind": "javascript-module",
|
@@ -287,7 +311,7 @@
|
|
287
311
|
"declarations": [
|
288
312
|
{
|
289
313
|
"kind": "class",
|
290
|
-
"description": "The `<skf-accordion>` component consists of
|
314
|
+
"description": "The `<skf-accordion>` component consists of one or more `<skf-accordion-item>` item(s) working together\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/6590bf-accordion) for design principles",
|
291
315
|
"name": "SkfAccordion",
|
292
316
|
"slots": [
|
293
317
|
{
|
@@ -311,11 +335,14 @@
|
|
311
335
|
"kind": "field",
|
312
336
|
"name": "headingAs",
|
313
337
|
"type": {
|
314
|
-
"text": "
|
338
|
+
"text": "SkfAccordionItemHeadingType"
|
315
339
|
},
|
316
340
|
"default": "'h2'",
|
317
341
|
"description": "Defines which heading element will be rendered",
|
318
|
-
"attribute": "heading-as"
|
342
|
+
"attribute": "heading-as",
|
343
|
+
"expandedType": {
|
344
|
+
"text": "'h2' | 'h3' | 'h4'"
|
345
|
+
}
|
319
346
|
},
|
320
347
|
{
|
321
348
|
"kind": "field",
|
@@ -387,11 +414,14 @@
|
|
387
414
|
{
|
388
415
|
"name": "heading-as",
|
389
416
|
"type": {
|
390
|
-
"text": "
|
417
|
+
"text": "SkfAccordionItemHeadingType"
|
391
418
|
},
|
392
419
|
"default": "'h2'",
|
393
420
|
"description": "Defines which heading element will be rendered",
|
394
|
-
"fieldName": "headingAs"
|
421
|
+
"fieldName": "headingAs",
|
422
|
+
"expandedType": {
|
423
|
+
"text": "'h2' | 'h3' | 'h4'"
|
424
|
+
}
|
395
425
|
},
|
396
426
|
{
|
397
427
|
"name": "gap",
|
@@ -456,7 +486,7 @@
|
|
456
486
|
"declarations": [
|
457
487
|
{
|
458
488
|
"kind": "class",
|
459
|
-
"description": "The `<skf-alert>` is a type of notification that appears in-line",
|
489
|
+
"description": "The `<skf-alert>` is a type of notification that appears in-line\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/990ec5-alert) for design principles",
|
460
490
|
"name": "SkfAlert",
|
461
491
|
"slots": [
|
462
492
|
{
|
@@ -483,11 +513,11 @@
|
|
483
513
|
"kind": "field",
|
484
514
|
"name": "icon",
|
485
515
|
"type": {
|
486
|
-
"text": "
|
516
|
+
"text": "Icon | undefined"
|
487
517
|
},
|
488
518
|
"description": "If defined, displays leading icon",
|
489
519
|
"attribute": "icon",
|
490
|
-
"
|
520
|
+
"expandedType": {
|
491
521
|
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
492
522
|
}
|
493
523
|
},
|
@@ -506,13 +536,13 @@
|
|
506
536
|
"kind": "field",
|
507
537
|
"name": "severity",
|
508
538
|
"type": {
|
509
|
-
"text": "
|
539
|
+
"text": "Severity | undefined"
|
510
540
|
},
|
511
541
|
"description": "If defined, gives the supplied appearance",
|
512
542
|
"attribute": "severity",
|
513
543
|
"reflects": true,
|
514
|
-
"
|
515
|
-
"text": "'error' | 'info' | 'warning' | 'success' |
|
544
|
+
"expandedType": {
|
545
|
+
"text": "'error' | 'info' | 'warning' | 'success' | undefined"
|
516
546
|
}
|
517
547
|
}
|
518
548
|
],
|
@@ -535,11 +565,11 @@
|
|
535
565
|
{
|
536
566
|
"name": "icon",
|
537
567
|
"type": {
|
538
|
-
"text": "
|
568
|
+
"text": "Icon | undefined"
|
539
569
|
},
|
540
570
|
"description": "If defined, displays leading icon",
|
541
571
|
"fieldName": "icon",
|
542
|
-
"
|
572
|
+
"expandedType": {
|
543
573
|
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
544
574
|
}
|
545
575
|
},
|
@@ -555,12 +585,12 @@
|
|
555
585
|
{
|
556
586
|
"name": "severity",
|
557
587
|
"type": {
|
558
|
-
"text": "
|
588
|
+
"text": "Severity | undefined"
|
559
589
|
},
|
560
590
|
"description": "If defined, gives the supplied appearance",
|
561
591
|
"fieldName": "severity",
|
562
|
-
"
|
563
|
-
"text": "'error' | 'info' | 'warning' | 'success' |
|
592
|
+
"expandedType": {
|
593
|
+
"text": "'error' | 'info' | 'warning' | 'success' | undefined"
|
564
594
|
}
|
565
595
|
}
|
566
596
|
],
|
@@ -586,7 +616,7 @@
|
|
586
616
|
},
|
587
617
|
{
|
588
618
|
"kind": "javascript-module",
|
589
|
-
"path": "components/breadcrumb
|
619
|
+
"path": "components/breadcrumb/breadcrumb-item.js",
|
590
620
|
"declarations": [
|
591
621
|
{
|
592
622
|
"kind": "class",
|
@@ -646,11 +676,11 @@
|
|
646
676
|
"name": "SkfBreadcrumbItem",
|
647
677
|
"declaration": {
|
648
678
|
"name": "SkfBreadcrumbItem",
|
649
|
-
"module": "src/components/breadcrumb
|
679
|
+
"module": "src/components/breadcrumb/breadcrumb-item.component.ts"
|
650
680
|
}
|
651
681
|
}
|
652
682
|
],
|
653
|
-
"typeDefinitionPath": "components/breadcrumb
|
683
|
+
"typeDefinitionPath": "components/breadcrumb/breadcrumb-item.d.ts"
|
654
684
|
},
|
655
685
|
{
|
656
686
|
"kind": "javascript-module",
|
@@ -744,14 +774,6 @@
|
|
744
774
|
"description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities",
|
745
775
|
"name": "SkfLoader",
|
746
776
|
"members": [
|
747
|
-
{
|
748
|
-
"kind": "field",
|
749
|
-
"name": "#internals",
|
750
|
-
"privacy": "private",
|
751
|
-
"type": {
|
752
|
-
"text": "ElementInternals"
|
753
|
-
}
|
754
|
-
},
|
755
777
|
{
|
756
778
|
"kind": "field",
|
757
779
|
"name": "ariaLabel",
|
@@ -783,22 +805,6 @@
|
|
783
805
|
"description": "Defines the size of the loader",
|
784
806
|
"attribute": "size",
|
785
807
|
"reflects": true
|
786
|
-
},
|
787
|
-
{
|
788
|
-
"kind": "field",
|
789
|
-
"name": "role",
|
790
|
-
"type": {
|
791
|
-
"text": "string"
|
792
|
-
},
|
793
|
-
"default": "'progressbar'"
|
794
|
-
},
|
795
|
-
{
|
796
|
-
"kind": "field",
|
797
|
-
"name": "ariaLive",
|
798
|
-
"type": {
|
799
|
-
"text": "string"
|
800
|
-
},
|
801
|
-
"default": "'polite'"
|
802
808
|
}
|
803
809
|
],
|
804
810
|
"attributes": [
|
@@ -856,7 +862,7 @@
|
|
856
862
|
"declarations": [
|
857
863
|
{
|
858
864
|
"kind": "class",
|
859
|
-
"description": "Component to be used in forms or for interactivity",
|
865
|
+
"description": "Component to be used in forms or for interactivity\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/02493d-buttons) for design principles",
|
860
866
|
"name": "SkfButton",
|
861
867
|
"slots": [
|
862
868
|
{
|
@@ -907,10 +913,13 @@
|
|
907
913
|
"kind": "field",
|
908
914
|
"name": "icon",
|
909
915
|
"type": {
|
910
|
-
"text": "
|
916
|
+
"text": "Icon | undefined"
|
911
917
|
},
|
912
918
|
"description": "If provided, renders an icon before or after the text",
|
913
|
-
"attribute": "icon"
|
919
|
+
"attribute": "icon",
|
920
|
+
"expandedType": {
|
921
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
922
|
+
}
|
914
923
|
},
|
915
924
|
{
|
916
925
|
"kind": "field",
|
@@ -919,8 +928,8 @@
|
|
919
928
|
"text": "boolean"
|
920
929
|
},
|
921
930
|
"default": "false",
|
922
|
-
"description": "If true,
|
923
|
-
"attribute": "
|
931
|
+
"description": "If true, button will take a square shape",
|
932
|
+
"attribute": "icon-only"
|
924
933
|
},
|
925
934
|
{
|
926
935
|
"kind": "field",
|
@@ -956,7 +965,7 @@
|
|
956
965
|
"kind": "field",
|
957
966
|
"name": "size",
|
958
967
|
"type": {
|
959
|
-
"text": "'sm' | 'md' | 'lg'"
|
968
|
+
"text": "'sm' | 'md' | 'lg' | undefined"
|
960
969
|
},
|
961
970
|
"default": "'md'",
|
962
971
|
"description": "If provided, displays an alternative size",
|
@@ -967,11 +976,14 @@
|
|
967
976
|
"kind": "field",
|
968
977
|
"name": "type",
|
969
978
|
"type": {
|
970
|
-
"text": "
|
979
|
+
"text": "SkfButtonType"
|
971
980
|
},
|
972
981
|
"default": "'button'",
|
973
982
|
"description": "If provided, changes the button type",
|
974
|
-
"attribute": "type"
|
983
|
+
"attribute": "type",
|
984
|
+
"expandedType": {
|
985
|
+
"text": "'submit' | 'reset' | 'button'"
|
986
|
+
}
|
975
987
|
},
|
976
988
|
{
|
977
989
|
"kind": "field",
|
@@ -984,10 +996,6 @@
|
|
984
996
|
"attribute": "variant",
|
985
997
|
"reflects": true
|
986
998
|
},
|
987
|
-
{
|
988
|
-
"kind": "method",
|
989
|
-
"name": "_handleLoadingChange"
|
990
|
-
},
|
991
999
|
{
|
992
1000
|
"kind": "method",
|
993
1001
|
"name": "click",
|
@@ -996,6 +1004,9 @@
|
|
996
1004
|
],
|
997
1005
|
"events": [
|
998
1006
|
{
|
1007
|
+
"type": {
|
1008
|
+
"text": "CustomEvent"
|
1009
|
+
},
|
999
1010
|
"description": "Fires when the button is clicked",
|
1000
1011
|
"name": "click"
|
1001
1012
|
}
|
@@ -1022,18 +1033,21 @@
|
|
1022
1033
|
{
|
1023
1034
|
"name": "icon",
|
1024
1035
|
"type": {
|
1025
|
-
"text": "
|
1036
|
+
"text": "Icon | undefined"
|
1026
1037
|
},
|
1027
1038
|
"description": "If provided, renders an icon before or after the text",
|
1028
|
-
"fieldName": "icon"
|
1039
|
+
"fieldName": "icon",
|
1040
|
+
"expandedType": {
|
1041
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
1042
|
+
}
|
1029
1043
|
},
|
1030
1044
|
{
|
1031
|
-
"name": "
|
1045
|
+
"name": "icon-only",
|
1032
1046
|
"type": {
|
1033
1047
|
"text": "boolean"
|
1034
1048
|
},
|
1035
1049
|
"default": "false",
|
1036
|
-
"description": "If true,
|
1050
|
+
"description": "If true, button will take a square shape",
|
1037
1051
|
"fieldName": "iconOnly"
|
1038
1052
|
},
|
1039
1053
|
{
|
@@ -1065,7 +1079,7 @@
|
|
1065
1079
|
{
|
1066
1080
|
"name": "size",
|
1067
1081
|
"type": {
|
1068
|
-
"text": "'sm' | 'md' | 'lg'"
|
1082
|
+
"text": "'sm' | 'md' | 'lg' | undefined"
|
1069
1083
|
},
|
1070
1084
|
"default": "'md'",
|
1071
1085
|
"description": "If provided, displays an alternative size",
|
@@ -1074,11 +1088,14 @@
|
|
1074
1088
|
{
|
1075
1089
|
"name": "type",
|
1076
1090
|
"type": {
|
1077
|
-
"text": "
|
1091
|
+
"text": "SkfButtonType"
|
1078
1092
|
},
|
1079
1093
|
"default": "'button'",
|
1080
1094
|
"description": "If provided, changes the button type",
|
1081
|
-
"fieldName": "type"
|
1095
|
+
"fieldName": "type",
|
1096
|
+
"expandedType": {
|
1097
|
+
"text": "'submit' | 'reset' | 'button'"
|
1098
|
+
}
|
1082
1099
|
},
|
1083
1100
|
{
|
1084
1101
|
"name": "variant",
|
@@ -1116,7 +1133,7 @@
|
|
1116
1133
|
"declarations": [
|
1117
1134
|
{
|
1118
1135
|
"kind": "class",
|
1119
|
-
"description": "The `<skf-card>` can be used to group related subjects in a container",
|
1136
|
+
"description": "The `<skf-card>` can be used to group related subjects in a container\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/021eed-card) for design principles",
|
1120
1137
|
"name": "SkfCard",
|
1121
1138
|
"slots": [
|
1122
1139
|
{
|
@@ -1293,7 +1310,7 @@
|
|
1293
1310
|
"kind": "field",
|
1294
1311
|
"name": "severity",
|
1295
1312
|
"type": {
|
1296
|
-
"text": "
|
1313
|
+
"text": "FormFieldSeverity | undefined"
|
1297
1314
|
},
|
1298
1315
|
"description": "If defined, styles checkbox using provided severity",
|
1299
1316
|
"attribute": "severity",
|
@@ -1329,27 +1346,14 @@
|
|
1329
1346
|
"default": "''",
|
1330
1347
|
"description": "The current value of the input field",
|
1331
1348
|
"attribute": "value"
|
1332
|
-
},
|
1333
|
-
{
|
1334
|
-
"kind": "method",
|
1335
|
-
"name": "handleCheckedChange"
|
1336
|
-
},
|
1337
|
-
{
|
1338
|
-
"kind": "method",
|
1339
|
-
"name": "handleInvalidChange"
|
1340
|
-
},
|
1341
|
-
{
|
1342
|
-
"kind": "method",
|
1343
|
-
"name": "handleDebugInvalid"
|
1344
|
-
},
|
1345
|
-
{
|
1346
|
-
"kind": "method",
|
1347
|
-
"name": "handleCustomInvalidChange"
|
1348
1349
|
}
|
1349
1350
|
],
|
1350
1351
|
"events": [
|
1351
1352
|
{
|
1352
|
-
"
|
1353
|
+
"type": {
|
1354
|
+
"text": "Event"
|
1355
|
+
},
|
1356
|
+
"description": "When the value of the input changes",
|
1353
1357
|
"name": "change"
|
1354
1358
|
}
|
1355
1359
|
],
|
@@ -1429,7 +1433,7 @@
|
|
1429
1433
|
{
|
1430
1434
|
"name": "severity",
|
1431
1435
|
"type": {
|
1432
|
-
"text": "
|
1436
|
+
"text": "FormFieldSeverity | undefined"
|
1433
1437
|
},
|
1434
1438
|
"description": "If defined, styles checkbox using provided severity",
|
1435
1439
|
"fieldName": "severity"
|
@@ -2327,13 +2331,13 @@
|
|
2327
2331
|
"kind": "field",
|
2328
2332
|
"name": "as",
|
2329
2333
|
"type": {
|
2330
|
-
"text": "
|
2334
|
+
"text": "HeadingType"
|
2331
2335
|
},
|
2332
|
-
"default": "'
|
2336
|
+
"default": "'h2'",
|
2333
2337
|
"description": "Controls which heading element will be rendered. Should not be used to affect appearance",
|
2334
2338
|
"attribute": "as",
|
2335
2339
|
"reflects": true,
|
2336
|
-
"
|
2340
|
+
"expandedType": {
|
2337
2341
|
"text": "'h1' | 'h2' | 'h3' | 'h4'"
|
2338
2342
|
}
|
2339
2343
|
},
|
@@ -2341,12 +2345,12 @@
|
|
2341
2345
|
"kind": "field",
|
2342
2346
|
"name": "styledAs",
|
2343
2347
|
"type": {
|
2344
|
-
"text": "
|
2348
|
+
"text": "HeadingType | undefined"
|
2345
2349
|
},
|
2346
2350
|
"description": "If defined, changes the appearance of the heading",
|
2347
2351
|
"attribute": "styled-as",
|
2348
2352
|
"reflects": true,
|
2349
|
-
"
|
2353
|
+
"expandedType": {
|
2350
2354
|
"text": "'h1' | 'h2' | 'h3' | 'h4' | undefined"
|
2351
2355
|
}
|
2352
2356
|
}
|
@@ -2355,23 +2359,23 @@
|
|
2355
2359
|
{
|
2356
2360
|
"name": "as",
|
2357
2361
|
"type": {
|
2358
|
-
"text": "
|
2362
|
+
"text": "HeadingType"
|
2359
2363
|
},
|
2360
|
-
"default": "'
|
2364
|
+
"default": "'h2'",
|
2361
2365
|
"description": "Controls which heading element will be rendered. Should not be used to affect appearance",
|
2362
2366
|
"fieldName": "as",
|
2363
|
-
"
|
2367
|
+
"expandedType": {
|
2364
2368
|
"text": "'h1' | 'h2' | 'h3' | 'h4'"
|
2365
2369
|
}
|
2366
2370
|
},
|
2367
2371
|
{
|
2368
2372
|
"name": "styled-as",
|
2369
2373
|
"type": {
|
2370
|
-
"text": "
|
2374
|
+
"text": "HeadingType | undefined"
|
2371
2375
|
},
|
2372
2376
|
"description": "If defined, changes the appearance of the heading",
|
2373
2377
|
"fieldName": "styledAs",
|
2374
|
-
"
|
2378
|
+
"expandedType": {
|
2375
2379
|
"text": "'h1' | 'h2' | 'h3' | 'h4' | undefined"
|
2376
2380
|
}
|
2377
2381
|
}
|
@@ -2484,10 +2488,6 @@
|
|
2484
2488
|
"attribute": "open",
|
2485
2489
|
"reflects": true
|
2486
2490
|
},
|
2487
|
-
{
|
2488
|
-
"kind": "method",
|
2489
|
-
"name": "handleOpenChange"
|
2490
|
-
},
|
2491
2491
|
{
|
2492
2492
|
"kind": "method",
|
2493
2493
|
"name": "showModal",
|
@@ -2501,14 +2501,23 @@
|
|
2501
2501
|
],
|
2502
2502
|
"events": [
|
2503
2503
|
{
|
2504
|
+
"type": {
|
2505
|
+
"text": "CustomEvent"
|
2506
|
+
},
|
2504
2507
|
"description": "Fires when the dialog is opened (after transitioned in)",
|
2505
2508
|
"name": "skf-dialog-opened"
|
2506
2509
|
},
|
2507
2510
|
{
|
2508
|
-
"
|
2511
|
+
"type": {
|
2512
|
+
"text": "CustomEvent"
|
2513
|
+
},
|
2514
|
+
"description": "Fires when the dialog is closing (before transitioned out)",
|
2509
2515
|
"name": "skf-dialog-closing"
|
2510
2516
|
},
|
2511
2517
|
{
|
2518
|
+
"type": {
|
2519
|
+
"text": "CustomEvent"
|
2520
|
+
},
|
2512
2521
|
"description": "Fires when the dialog is closed (after transitioned out)",
|
2513
2522
|
"name": "skf-dialog-closed"
|
2514
2523
|
}
|
@@ -2616,8 +2625,8 @@
|
|
2616
2625
|
"description": "Defines the Divider color",
|
2617
2626
|
"attribute": "color",
|
2618
2627
|
"reflects": true,
|
2619
|
-
"
|
2620
|
-
"text": "'
|
2628
|
+
"expandedType": {
|
2629
|
+
"text": "'primary' | 'inverse' | 'emphasised' | 'secondary' | 'tertiary'"
|
2621
2630
|
}
|
2622
2631
|
},
|
2623
2632
|
{
|
@@ -2651,8 +2660,8 @@
|
|
2651
2660
|
"default": "'primary'",
|
2652
2661
|
"description": "Defines the Divider color",
|
2653
2662
|
"fieldName": "color",
|
2654
|
-
"
|
2655
|
-
"text": "'
|
2663
|
+
"expandedType": {
|
2664
|
+
"text": "'primary' | 'inverse' | 'emphasised' | 'secondary' | 'tertiary'"
|
2656
2665
|
}
|
2657
2666
|
},
|
2658
2667
|
{
|
@@ -2700,7 +2709,7 @@
|
|
2700
2709
|
"declarations": [
|
2701
2710
|
{
|
2702
2711
|
"kind": "class",
|
2703
|
-
"description": "The `<skf-drawer>` is a modal component that displays content and toggle by sliding from left/right viewport edge
|
2712
|
+
"description": "The `<skf-drawer>` is a modal component that displays content and toggle by sliding from left/right viewport edge",
|
2704
2713
|
"name": "SkfDrawer",
|
2705
2714
|
"slots": [
|
2706
2715
|
{
|
@@ -2761,40 +2770,6 @@
|
|
2761
2770
|
"attribute": "placement",
|
2762
2771
|
"reflects": true
|
2763
2772
|
},
|
2764
|
-
{
|
2765
|
-
"kind": "method",
|
2766
|
-
"name": "clickIsInsideElement",
|
2767
|
-
"parameters": [
|
2768
|
-
{
|
2769
|
-
"name": "event",
|
2770
|
-
"type": {
|
2771
|
-
"text": "MouseEvent"
|
2772
|
-
}
|
2773
|
-
},
|
2774
|
-
{
|
2775
|
-
"name": "el",
|
2776
|
-
"type": {
|
2777
|
-
"text": "HTMLElement"
|
2778
|
-
}
|
2779
|
-
}
|
2780
|
-
]
|
2781
|
-
},
|
2782
|
-
{
|
2783
|
-
"kind": "field",
|
2784
|
-
"name": "_clickstartInDialog",
|
2785
|
-
"type": {
|
2786
|
-
"text": "boolean"
|
2787
|
-
},
|
2788
|
-
"default": "false"
|
2789
|
-
},
|
2790
|
-
{
|
2791
|
-
"kind": "field",
|
2792
|
-
"name": "_handleMouseDown"
|
2793
|
-
},
|
2794
|
-
{
|
2795
|
-
"kind": "field",
|
2796
|
-
"name": "_handleMouseUp"
|
2797
|
-
},
|
2798
2773
|
{
|
2799
2774
|
"kind": "method",
|
2800
2775
|
"name": "close"
|
@@ -2802,14 +2777,23 @@
|
|
2802
2777
|
],
|
2803
2778
|
"events": [
|
2804
2779
|
{
|
2780
|
+
"type": {
|
2781
|
+
"text": "CustomEvent"
|
2782
|
+
},
|
2805
2783
|
"description": "Fires when the drawer is opened (after transitioned in)",
|
2806
2784
|
"name": "skf-drawer-opened"
|
2807
2785
|
},
|
2808
2786
|
{
|
2809
|
-
"
|
2787
|
+
"type": {
|
2788
|
+
"text": "CustomEvent"
|
2789
|
+
},
|
2790
|
+
"description": "Fires when the drawer is closing (before transitioned out)",
|
2810
2791
|
"name": "skf-drawer-closing"
|
2811
2792
|
},
|
2812
2793
|
{
|
2794
|
+
"type": {
|
2795
|
+
"text": "CustomEvent"
|
2796
|
+
},
|
2813
2797
|
"description": "Fires when the drawer is closed (after transitioned out)",
|
2814
2798
|
"name": "skf-drawer-closed"
|
2815
2799
|
}
|
@@ -2909,11 +2893,14 @@
|
|
2909
2893
|
"kind": "field",
|
2910
2894
|
"name": "color",
|
2911
2895
|
"type": {
|
2912
|
-
"text": "
|
2896
|
+
"text": "SkfLogoColor"
|
2913
2897
|
},
|
2914
2898
|
"default": "'primary'",
|
2915
2899
|
"description": "Defines the color of the logo",
|
2916
|
-
"attribute": "color"
|
2900
|
+
"attribute": "color",
|
2901
|
+
"expandedType": {
|
2902
|
+
"text": "'primary' | 'inverse' | 'secondary'"
|
2903
|
+
}
|
2917
2904
|
}
|
2918
2905
|
],
|
2919
2906
|
"attributes": [
|
@@ -2929,11 +2916,14 @@
|
|
2929
2916
|
{
|
2930
2917
|
"name": "color",
|
2931
2918
|
"type": {
|
2932
|
-
"text": "
|
2919
|
+
"text": "SkfLogoColor"
|
2933
2920
|
},
|
2934
2921
|
"default": "'primary'",
|
2935
2922
|
"description": "Defines the color of the logo",
|
2936
|
-
"fieldName": "color"
|
2923
|
+
"fieldName": "color",
|
2924
|
+
"expandedType": {
|
2925
|
+
"text": "'primary' | 'inverse' | 'secondary'"
|
2926
|
+
}
|
2937
2927
|
}
|
2938
2928
|
],
|
2939
2929
|
"superclass": {
|
@@ -3018,7 +3008,7 @@
|
|
3018
3008
|
"declarations": [
|
3019
3009
|
{
|
3020
3010
|
"kind": "class",
|
3021
|
-
"description": "The `<skf-header>` component is to be used as the site-header in the app",
|
3011
|
+
"description": "The `<skf-header>` component is to be used as the site-header in the app. The navigation will be collapsed to mobile-view if the menu items exceed the available width.",
|
3022
3012
|
"name": "SkfHeader",
|
3023
3013
|
"slots": [
|
3024
3014
|
{
|
@@ -3030,10 +3020,6 @@
|
|
3030
3020
|
{
|
3031
3021
|
"kind": "field",
|
3032
3022
|
"name": "compact",
|
3033
|
-
"type": {
|
3034
|
-
"text": "boolean"
|
3035
|
-
},
|
3036
|
-
"default": "false",
|
3037
3023
|
"description": "If true, sets header to display in compact mode only (hanburger menu and drawer)",
|
3038
3024
|
"attribute": "compact",
|
3039
3025
|
"reflects": true
|
@@ -3070,10 +3056,6 @@
|
|
3070
3056
|
"attributes": [
|
3071
3057
|
{
|
3072
3058
|
"name": "compact",
|
3073
|
-
"type": {
|
3074
|
-
"text": "boolean"
|
3075
|
-
},
|
3076
|
-
"default": "false",
|
3077
3059
|
"description": "If true, sets header to display in compact mode only (hanburger menu and drawer)",
|
3078
3060
|
"fieldName": "compact"
|
3079
3061
|
},
|
@@ -3129,7 +3111,7 @@
|
|
3129
3111
|
"declarations": [
|
3130
3112
|
{
|
3131
3113
|
"kind": "class",
|
3132
|
-
"description": "The skf-text-field is used to create a text input field. It can be used inside a form element or standalone.",
|
3114
|
+
"description": "The skf-text-field is used to create a text input field. It can be used inside a form element or standalone\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/9481fa-input-field) for design principles",
|
3133
3115
|
"name": "SkfInput",
|
3134
3116
|
"slots": [
|
3135
3117
|
{
|
@@ -3150,9 +3132,9 @@
|
|
3150
3132
|
"kind": "field",
|
3151
3133
|
"name": "autocomplete",
|
3152
3134
|
"type": {
|
3153
|
-
"text": "'
|
3135
|
+
"text": "HTMLInputElement['autocomplete'] | undefined"
|
3154
3136
|
},
|
3155
|
-
"description": "
|
3137
|
+
"description": "Indicates whether the value of the control can be automatically completed by the browser. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/autocomplete) for details.",
|
3156
3138
|
"attribute": "autocomplete"
|
3157
3139
|
},
|
3158
3140
|
{
|
@@ -3196,8 +3178,9 @@
|
|
3196
3178
|
"kind": "field",
|
3197
3179
|
"name": "debug",
|
3198
3180
|
"type": {
|
3199
|
-
"text": "boolean
|
3181
|
+
"text": "boolean"
|
3200
3182
|
},
|
3183
|
+
"default": "false",
|
3201
3184
|
"description": "If true, outputs helping hints in console",
|
3202
3185
|
"attribute": "debug"
|
3203
3186
|
},
|
@@ -3205,8 +3188,9 @@
|
|
3205
3188
|
"kind": "field",
|
3206
3189
|
"name": "hideLabel",
|
3207
3190
|
"type": {
|
3208
|
-
"text": "boolean
|
3191
|
+
"text": "boolean"
|
3209
3192
|
},
|
3193
|
+
"default": "false",
|
3210
3194
|
"description": "If true, hides the label visually",
|
3211
3195
|
"attribute": "hide-label"
|
3212
3196
|
},
|
@@ -3223,10 +3207,10 @@
|
|
3223
3207
|
"kind": "field",
|
3224
3208
|
"name": "inputmode",
|
3225
3209
|
"type": {
|
3226
|
-
"text": "'
|
3210
|
+
"text": "HTMLInputElement['inputMode']"
|
3227
3211
|
},
|
3228
3212
|
"default": "'text'",
|
3229
|
-
"description": "
|
3213
|
+
"description": "Provides a hint about the type of data that might be entered by the user while editing the element or its contents. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inputMode) for details.",
|
3230
3214
|
"attribute": "inputmode"
|
3231
3215
|
},
|
3232
3216
|
{
|
@@ -3315,8 +3299,9 @@
|
|
3315
3299
|
"kind": "field",
|
3316
3300
|
"name": "readonly",
|
3317
3301
|
"type": {
|
3318
|
-
"text": "boolean
|
3302
|
+
"text": "boolean"
|
3319
3303
|
},
|
3304
|
+
"default": "false",
|
3320
3305
|
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
3321
3306
|
"attribute": "readonly"
|
3322
3307
|
},
|
@@ -3333,7 +3318,7 @@
|
|
3333
3318
|
"kind": "field",
|
3334
3319
|
"name": "severity",
|
3335
3320
|
"type": {
|
3336
|
-
"text": "
|
3321
|
+
"text": "FormFieldSeverity | undefined"
|
3337
3322
|
},
|
3338
3323
|
"description": "If defined, displays provided severity state",
|
3339
3324
|
"attribute": "severity",
|
@@ -3343,8 +3328,9 @@
|
|
3343
3328
|
"kind": "field",
|
3344
3329
|
"name": "showValid",
|
3345
3330
|
"type": {
|
3346
|
-
"text": "boolean
|
3331
|
+
"text": "boolean"
|
3347
3332
|
},
|
3333
|
+
"default": "false",
|
3348
3334
|
"description": "If true, displays valid state after interaction",
|
3349
3335
|
"attribute": "show-valid"
|
3350
3336
|
},
|
@@ -3372,10 +3358,10 @@
|
|
3372
3358
|
"kind": "field",
|
3373
3359
|
"name": "type",
|
3374
3360
|
"type": {
|
3375
|
-
"text": "'
|
3361
|
+
"text": "'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url'"
|
3376
3362
|
},
|
3377
3363
|
"default": "'text'",
|
3378
|
-
"description": "Type of input
|
3364
|
+
"description": "Type of input",
|
3379
3365
|
"attribute": "type"
|
3380
3366
|
},
|
3381
3367
|
{
|
@@ -3391,25 +3377,22 @@
|
|
3391
3377
|
{
|
3392
3378
|
"kind": "field",
|
3393
3379
|
"name": "value",
|
3394
|
-
"type": {
|
3395
|
-
"text": "string"
|
3396
|
-
},
|
3397
|
-
"default": "''",
|
3398
3380
|
"description": "The current value of the input field",
|
3399
|
-
"attribute": "value"
|
3400
|
-
"reflects": true
|
3401
|
-
},
|
3402
|
-
{
|
3403
|
-
"kind": "method",
|
3404
|
-
"name": "valueChanged"
|
3381
|
+
"attribute": "value"
|
3405
3382
|
}
|
3406
3383
|
],
|
3407
3384
|
"events": [
|
3408
3385
|
{
|
3386
|
+
"type": {
|
3387
|
+
"text": "CustomEvent"
|
3388
|
+
},
|
3409
3389
|
"description": "Fires when the value of the input changes",
|
3410
3390
|
"name": "change"
|
3411
3391
|
},
|
3412
3392
|
{
|
3393
|
+
"type": {
|
3394
|
+
"text": "CustomEvent"
|
3395
|
+
},
|
3413
3396
|
"description": "Fires when the input is invalid",
|
3414
3397
|
"name": "invalid"
|
3415
3398
|
}
|
@@ -3420,21 +3403,23 @@
|
|
3420
3403
|
"text": "boolean"
|
3421
3404
|
},
|
3422
3405
|
"description": "If true, sets disabled state",
|
3423
|
-
"name": "disabled"
|
3406
|
+
"name": "disabled",
|
3407
|
+
"default": "false"
|
3424
3408
|
},
|
3425
3409
|
{
|
3426
3410
|
"type": {
|
3427
3411
|
"text": "boolean"
|
3428
3412
|
},
|
3429
3413
|
"description": "If true, value is required or must be checked for the form to be submittable",
|
3430
|
-
"name": "required"
|
3414
|
+
"name": "required",
|
3415
|
+
"default": "false"
|
3431
3416
|
},
|
3432
3417
|
{
|
3433
3418
|
"name": "autocomplete",
|
3434
3419
|
"type": {
|
3435
|
-
"text": "'
|
3420
|
+
"text": "HTMLInputElement['autocomplete'] | undefined"
|
3436
3421
|
},
|
3437
|
-
"description": "
|
3422
|
+
"description": "Indicates whether the value of the control can be automatically completed by the browser. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement/autocomplete) for details.",
|
3438
3423
|
"fieldName": "autocomplete"
|
3439
3424
|
},
|
3440
3425
|
{
|
@@ -3472,16 +3457,18 @@
|
|
3472
3457
|
{
|
3473
3458
|
"name": "debug",
|
3474
3459
|
"type": {
|
3475
|
-
"text": "boolean
|
3460
|
+
"text": "boolean"
|
3476
3461
|
},
|
3462
|
+
"default": "false",
|
3477
3463
|
"description": "If true, outputs helping hints in console",
|
3478
3464
|
"fieldName": "debug"
|
3479
3465
|
},
|
3480
3466
|
{
|
3481
3467
|
"name": "hide-label",
|
3482
3468
|
"type": {
|
3483
|
-
"text": "boolean
|
3469
|
+
"text": "boolean"
|
3484
3470
|
},
|
3471
|
+
"default": "false",
|
3485
3472
|
"description": "If true, hides the label visually",
|
3486
3473
|
"fieldName": "hideLabel"
|
3487
3474
|
},
|
@@ -3496,10 +3483,10 @@
|
|
3496
3483
|
{
|
3497
3484
|
"name": "inputmode",
|
3498
3485
|
"type": {
|
3499
|
-
"text": "'
|
3486
|
+
"text": "HTMLInputElement['inputMode']"
|
3500
3487
|
},
|
3501
3488
|
"default": "'text'",
|
3502
|
-
"description": "
|
3489
|
+
"description": "Provides a hint about the type of data that might be entered by the user while editing the element or its contents. See\n[MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inputMode) for details.",
|
3503
3490
|
"fieldName": "inputmode"
|
3504
3491
|
},
|
3505
3492
|
{
|
@@ -3577,8 +3564,9 @@
|
|
3577
3564
|
{
|
3578
3565
|
"name": "readonly",
|
3579
3566
|
"type": {
|
3580
|
-
"text": "boolean
|
3567
|
+
"text": "boolean"
|
3581
3568
|
},
|
3569
|
+
"default": "false",
|
3582
3570
|
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
3583
3571
|
"fieldName": "readonly"
|
3584
3572
|
},
|
@@ -3593,7 +3581,7 @@
|
|
3593
3581
|
{
|
3594
3582
|
"name": "severity",
|
3595
3583
|
"type": {
|
3596
|
-
"text": "
|
3584
|
+
"text": "FormFieldSeverity | undefined"
|
3597
3585
|
},
|
3598
3586
|
"description": "If defined, displays provided severity state",
|
3599
3587
|
"fieldName": "severity"
|
@@ -3601,8 +3589,9 @@
|
|
3601
3589
|
{
|
3602
3590
|
"name": "show-valid",
|
3603
3591
|
"type": {
|
3604
|
-
"text": "boolean
|
3592
|
+
"text": "boolean"
|
3605
3593
|
},
|
3594
|
+
"default": "false",
|
3606
3595
|
"description": "If true, displays valid state after interaction",
|
3607
3596
|
"fieldName": "showValid"
|
3608
3597
|
},
|
@@ -3626,10 +3615,10 @@
|
|
3626
3615
|
{
|
3627
3616
|
"name": "type",
|
3628
3617
|
"type": {
|
3629
|
-
"text": "'
|
3618
|
+
"text": "'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url'"
|
3630
3619
|
},
|
3631
3620
|
"default": "'text'",
|
3632
|
-
"description": "Type of input
|
3621
|
+
"description": "Type of input",
|
3633
3622
|
"fieldName": "type"
|
3634
3623
|
},
|
3635
3624
|
{
|
@@ -3643,10 +3632,6 @@
|
|
3643
3632
|
},
|
3644
3633
|
{
|
3645
3634
|
"name": "value",
|
3646
|
-
"type": {
|
3647
|
-
"text": "string"
|
3648
|
-
},
|
3649
|
-
"default": "''",
|
3650
3635
|
"description": "The current value of the input field",
|
3651
3636
|
"fieldName": "value"
|
3652
3637
|
}
|
@@ -3695,14 +3680,6 @@
|
|
3695
3680
|
"static": true,
|
3696
3681
|
"default": "{}"
|
3697
3682
|
},
|
3698
|
-
{
|
3699
|
-
"kind": "field",
|
3700
|
-
"name": "_onClick",
|
3701
|
-
"type": {
|
3702
|
-
"text": "(event: Event, route?: string) => void | undefined"
|
3703
|
-
},
|
3704
|
-
"privacy": "private"
|
3705
|
-
},
|
3706
3683
|
{
|
3707
3684
|
"kind": "field",
|
3708
3685
|
"name": "as",
|
@@ -3729,8 +3706,9 @@
|
|
3729
3706
|
"kind": "field",
|
3730
3707
|
"name": "disabled",
|
3731
3708
|
"type": {
|
3732
|
-
"text": "boolean
|
3709
|
+
"text": "boolean"
|
3733
3710
|
},
|
3711
|
+
"default": "false",
|
3734
3712
|
"description": "If true, disables the link",
|
3735
3713
|
"attribute": "disabled",
|
3736
3714
|
"reflects": true
|
@@ -3757,10 +3735,13 @@
|
|
3757
3735
|
"kind": "field",
|
3758
3736
|
"name": "icon",
|
3759
3737
|
"type": {
|
3760
|
-
"text": "
|
3738
|
+
"text": "Icon | undefined"
|
3761
3739
|
},
|
3762
3740
|
"description": "If defined, renders an icon before or after the text",
|
3763
|
-
"attribute": "icon"
|
3741
|
+
"attribute": "icon",
|
3742
|
+
"expandedType": {
|
3743
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
3744
|
+
}
|
3764
3745
|
},
|
3765
3746
|
{
|
3766
3747
|
"kind": "field",
|
@@ -3773,6 +3754,11 @@
|
|
3773
3754
|
"attribute": "icon-placement",
|
3774
3755
|
"reflects": true
|
3775
3756
|
},
|
3757
|
+
{
|
3758
|
+
"kind": "field",
|
3759
|
+
"name": "onClick",
|
3760
|
+
"description": "If defined, accepts a function that runs on click. Forwards optional route as second argument."
|
3761
|
+
},
|
3776
3762
|
{
|
3777
3763
|
"kind": "field",
|
3778
3764
|
"name": "rel",
|
@@ -3816,18 +3802,13 @@
|
|
3816
3802
|
"kind": "field",
|
3817
3803
|
"name": "type",
|
3818
3804
|
"type": {
|
3819
|
-
"text": "
|
3805
|
+
"text": "SkfLinkType"
|
3820
3806
|
},
|
3821
3807
|
"default": "'button'",
|
3822
3808
|
"description": "Defines the type of button",
|
3823
|
-
"attribute": "type"
|
3824
|
-
|
3825
|
-
|
3826
|
-
"kind": "field",
|
3827
|
-
"name": "onClick",
|
3828
|
-
"description": "If provided, custom function triggered by click where the second return parameter enables custom routing.",
|
3829
|
-
"type": {
|
3830
|
-
"text": "function"
|
3809
|
+
"attribute": "type",
|
3810
|
+
"expandedType": {
|
3811
|
+
"text": "'submit' | 'reset' | 'button'"
|
3831
3812
|
}
|
3832
3813
|
}
|
3833
3814
|
],
|
@@ -3853,8 +3834,9 @@
|
|
3853
3834
|
{
|
3854
3835
|
"name": "disabled",
|
3855
3836
|
"type": {
|
3856
|
-
"text": "boolean
|
3837
|
+
"text": "boolean"
|
3857
3838
|
},
|
3839
|
+
"default": "false",
|
3858
3840
|
"description": "If true, disables the link",
|
3859
3841
|
"fieldName": "disabled"
|
3860
3842
|
},
|
@@ -3877,10 +3859,13 @@
|
|
3877
3859
|
{
|
3878
3860
|
"name": "icon",
|
3879
3861
|
"type": {
|
3880
|
-
"text": "
|
3862
|
+
"text": "Icon | undefined"
|
3881
3863
|
},
|
3882
3864
|
"description": "If defined, renders an icon before or after the text",
|
3883
|
-
"fieldName": "icon"
|
3865
|
+
"fieldName": "icon",
|
3866
|
+
"expandedType": {
|
3867
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
3868
|
+
}
|
3884
3869
|
},
|
3885
3870
|
{
|
3886
3871
|
"name": "icon-placement",
|
@@ -3927,11 +3912,14 @@
|
|
3927
3912
|
{
|
3928
3913
|
"name": "type",
|
3929
3914
|
"type": {
|
3930
|
-
"text": "
|
3915
|
+
"text": "SkfLinkType"
|
3931
3916
|
},
|
3932
3917
|
"default": "'button'",
|
3933
3918
|
"description": "Defines the type of button",
|
3934
|
-
"fieldName": "type"
|
3919
|
+
"fieldName": "type",
|
3920
|
+
"expandedType": {
|
3921
|
+
"text": "'submit' | 'reset' | 'button'"
|
3922
|
+
}
|
3935
3923
|
}
|
3936
3924
|
],
|
3937
3925
|
"superclass": {
|
@@ -3956,140 +3944,31 @@
|
|
3956
3944
|
},
|
3957
3945
|
{
|
3958
3946
|
"kind": "javascript-module",
|
3959
|
-
"path": "components/menu/menu.js",
|
3947
|
+
"path": "components/menu/menu-item.js",
|
3960
3948
|
"declarations": [
|
3961
3949
|
{
|
3962
3950
|
"kind": "class",
|
3963
|
-
"description": "The `<skf-menu>` is
|
3964
|
-
"name": "
|
3951
|
+
"description": "The `<skf-menu-item>` is used in conjunction with the `<skf-menu>` component",
|
3952
|
+
"name": "SkfMenuItem",
|
3965
3953
|
"slots": [
|
3966
3954
|
{
|
3967
|
-
"description": "The
|
3968
|
-
"name": ""
|
3955
|
+
"description": "The component's main content",
|
3956
|
+
"name": "",
|
3957
|
+
"inheritedFrom": {
|
3958
|
+
"name": "SkfLink",
|
3959
|
+
"module": "src/components/link/link.component.ts"
|
3960
|
+
}
|
3969
3961
|
}
|
3970
3962
|
],
|
3971
3963
|
"members": [
|
3972
3964
|
{
|
3973
|
-
"kind": "
|
3974
|
-
"name": "
|
3975
|
-
"
|
3976
|
-
"
|
3977
|
-
"text": "void"
|
3978
|
-
}
|
3965
|
+
"kind": "field",
|
3966
|
+
"name": "role",
|
3967
|
+
"type": {
|
3968
|
+
"text": "string"
|
3979
3969
|
},
|
3980
|
-
"
|
3981
|
-
{
|
3982
|
-
"name": "$element",
|
3983
|
-
"type": {
|
3984
|
-
"text": "HTMLElement | Element"
|
3985
|
-
}
|
3986
|
-
}
|
3987
|
-
]
|
3988
|
-
},
|
3989
|
-
{
|
3990
|
-
"kind": "method",
|
3991
|
-
"name": "removeEventListeners",
|
3992
|
-
"return": {
|
3993
|
-
"type": {
|
3994
|
-
"text": "void"
|
3995
|
-
}
|
3996
|
-
},
|
3997
|
-
"parameters": [
|
3998
|
-
{
|
3999
|
-
"name": "$element",
|
4000
|
-
"type": {
|
4001
|
-
"text": "HTMLElement | Element"
|
4002
|
-
}
|
4003
|
-
}
|
4004
|
-
]
|
3970
|
+
"default": "'menuitem'"
|
4005
3971
|
},
|
4006
|
-
{
|
4007
|
-
"kind": "field",
|
4008
|
-
"name": "placement",
|
4009
|
-
"type": {
|
4010
|
-
"text": "string"
|
4011
|
-
},
|
4012
|
-
"default": "'bottom-start'"
|
4013
|
-
},
|
4014
|
-
{
|
4015
|
-
"kind": "field",
|
4016
|
-
"name": "triggerEvent",
|
4017
|
-
"type": {
|
4018
|
-
"text": "string"
|
4019
|
-
},
|
4020
|
-
"default": "'click'"
|
4021
|
-
}
|
4022
|
-
],
|
4023
|
-
"events": [
|
4024
|
-
{
|
4025
|
-
"description": "Fired when the menu is opened",
|
4026
|
-
"name": "skf-opened"
|
4027
|
-
},
|
4028
|
-
{
|
4029
|
-
"description": "Fired when the menu is closed",
|
4030
|
-
"name": "skf-closed"
|
4031
|
-
}
|
4032
|
-
],
|
4033
|
-
"attributes": [
|
4034
|
-
{
|
4035
|
-
"type": {
|
4036
|
-
"text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
|
4037
|
-
},
|
4038
|
-
"description": "The placement of the menu",
|
4039
|
-
"name": "placement",
|
4040
|
-
"default": "'bottom-start'"
|
4041
|
-
},
|
4042
|
-
{
|
4043
|
-
"type": {
|
4044
|
-
"text": "string"
|
4045
|
-
},
|
4046
|
-
"description": "The id of the element the menu will be anchored to",
|
4047
|
-
"name": "anchor"
|
4048
|
-
}
|
4049
|
-
],
|
4050
|
-
"superclass": {
|
4051
|
-
"name": "SkfPopoverBase",
|
4052
|
-
"package": "@internal/base-classes/popover/popover.base.js"
|
4053
|
-
},
|
4054
|
-
"tagName": "skf-menu",
|
4055
|
-
"customElement": true
|
4056
|
-
}
|
4057
|
-
],
|
4058
|
-
"exports": [
|
4059
|
-
{
|
4060
|
-
"kind": "js",
|
4061
|
-
"name": "SkfMenu",
|
4062
|
-
"declaration": {
|
4063
|
-
"name": "SkfMenu",
|
4064
|
-
"module": "src/components/menu/menu.component.ts"
|
4065
|
-
}
|
4066
|
-
}
|
4067
|
-
],
|
4068
|
-
"typeDefinitionPath": "components/menu/menu.d.ts"
|
4069
|
-
},
|
4070
|
-
{
|
4071
|
-
"kind": "javascript-module",
|
4072
|
-
"path": "components/menu-item/menu-item.js",
|
4073
|
-
"declarations": [
|
4074
|
-
{
|
4075
|
-
"kind": "class",
|
4076
|
-
"description": "The `<skf-menu-item>` is a component that displays a list of actions or options.",
|
4077
|
-
"name": "SkfMenuItem",
|
4078
|
-
"slots": [
|
4079
|
-
{
|
4080
|
-
"description": "The component's main content",
|
4081
|
-
"name": "",
|
4082
|
-
"inheritedFrom": {
|
4083
|
-
"name": "SkfLink",
|
4084
|
-
"module": "src/components/link/link.component.ts"
|
4085
|
-
}
|
4086
|
-
},
|
4087
|
-
{
|
4088
|
-
"description": "A named slot of the component",
|
4089
|
-
"name": "my-named-slot"
|
4090
|
-
}
|
4091
|
-
],
|
4092
|
-
"members": [
|
4093
3972
|
{
|
4094
3973
|
"kind": "field",
|
4095
3974
|
"name": "classMap",
|
@@ -4103,18 +3982,6 @@
|
|
4103
3982
|
"module": "src/components/link/link.component.ts"
|
4104
3983
|
}
|
4105
3984
|
},
|
4106
|
-
{
|
4107
|
-
"kind": "field",
|
4108
|
-
"name": "_onClick",
|
4109
|
-
"type": {
|
4110
|
-
"text": "(event: Event, route?: string) => void | undefined"
|
4111
|
-
},
|
4112
|
-
"privacy": "private",
|
4113
|
-
"inheritedFrom": {
|
4114
|
-
"name": "SkfLink",
|
4115
|
-
"module": "src/components/link/link.component.ts"
|
4116
|
-
}
|
4117
|
-
},
|
4118
3985
|
{
|
4119
3986
|
"kind": "field",
|
4120
3987
|
"name": "as",
|
@@ -4149,8 +4016,9 @@
|
|
4149
4016
|
"kind": "field",
|
4150
4017
|
"name": "disabled",
|
4151
4018
|
"type": {
|
4152
|
-
"text": "boolean
|
4019
|
+
"text": "boolean"
|
4153
4020
|
},
|
4021
|
+
"default": "false",
|
4154
4022
|
"description": "If true, disables the link",
|
4155
4023
|
"attribute": "disabled",
|
4156
4024
|
"reflects": true,
|
@@ -4189,10 +4057,13 @@
|
|
4189
4057
|
"kind": "field",
|
4190
4058
|
"name": "icon",
|
4191
4059
|
"type": {
|
4192
|
-
"text": "
|
4060
|
+
"text": "Icon | undefined"
|
4193
4061
|
},
|
4194
4062
|
"description": "If defined, renders an icon before or after the text",
|
4195
4063
|
"attribute": "icon",
|
4064
|
+
"expandedType": {
|
4065
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
4066
|
+
},
|
4196
4067
|
"inheritedFrom": {
|
4197
4068
|
"name": "SkfLink",
|
4198
4069
|
"module": "src/components/link/link.component.ts"
|
@@ -4213,6 +4084,15 @@
|
|
4213
4084
|
"module": "src/components/link/link.component.ts"
|
4214
4085
|
}
|
4215
4086
|
},
|
4087
|
+
{
|
4088
|
+
"kind": "field",
|
4089
|
+
"name": "onClick",
|
4090
|
+
"description": "If defined, accepts a function that runs on click. Forwards optional route as second argument.",
|
4091
|
+
"inheritedFrom": {
|
4092
|
+
"name": "SkfLink",
|
4093
|
+
"module": "src/components/link/link.component.ts"
|
4094
|
+
}
|
4095
|
+
},
|
4216
4096
|
{
|
4217
4097
|
"kind": "field",
|
4218
4098
|
"name": "rel",
|
@@ -4272,22 +4152,13 @@
|
|
4272
4152
|
"kind": "field",
|
4273
4153
|
"name": "type",
|
4274
4154
|
"type": {
|
4275
|
-
"text": "
|
4155
|
+
"text": "SkfLinkType"
|
4276
4156
|
},
|
4277
4157
|
"default": "'button'",
|
4278
4158
|
"description": "Defines the type of button",
|
4279
4159
|
"attribute": "type",
|
4280
|
-
"
|
4281
|
-
"
|
4282
|
-
"module": "src/components/link/link.component.ts"
|
4283
|
-
}
|
4284
|
-
},
|
4285
|
-
{
|
4286
|
-
"kind": "field",
|
4287
|
-
"name": "onClick",
|
4288
|
-
"description": "If provided, custom function triggered by click where the second return parameter enables custom routing.",
|
4289
|
-
"type": {
|
4290
|
-
"text": "function"
|
4160
|
+
"expandedType": {
|
4161
|
+
"text": "'submit' | 'reset' | 'button'"
|
4291
4162
|
},
|
4292
4163
|
"inheritedFrom": {
|
4293
4164
|
"name": "SkfLink",
|
@@ -4295,39 +4166,6 @@
|
|
4295
4166
|
}
|
4296
4167
|
}
|
4297
4168
|
],
|
4298
|
-
"events": [
|
4299
|
-
{
|
4300
|
-
"type": {
|
4301
|
-
"text": "CustomEvent"
|
4302
|
-
},
|
4303
|
-
"description": "Fired when something happens",
|
4304
|
-
"name": "my-tag-my-event"
|
4305
|
-
},
|
4306
|
-
{
|
4307
|
-
"description": "Fired when the component is clicked",
|
4308
|
-
"name": "click"
|
4309
|
-
},
|
4310
|
-
{
|
4311
|
-
"description": "Fired when the mouse is over the component",
|
4312
|
-
"name": "mouseover"
|
4313
|
-
},
|
4314
|
-
{
|
4315
|
-
"description": "Fired when the mouse is out of the component",
|
4316
|
-
"name": "mouseout"
|
4317
|
-
},
|
4318
|
-
{
|
4319
|
-
"description": "Fired when the component is focused",
|
4320
|
-
"name": "focus"
|
4321
|
-
},
|
4322
|
-
{
|
4323
|
-
"description": "Fired when the component is blurred",
|
4324
|
-
"name": "blur"
|
4325
|
-
},
|
4326
|
-
{
|
4327
|
-
"description": "Fired when the component's value changes",
|
4328
|
-
"name": "change"
|
4329
|
-
}
|
4330
|
-
],
|
4331
4169
|
"superclass": {
|
4332
4170
|
"name": "SkfLink",
|
4333
4171
|
"package": "@components/link/link.component.js"
|
@@ -4364,8 +4202,9 @@
|
|
4364
4202
|
{
|
4365
4203
|
"name": "disabled",
|
4366
4204
|
"type": {
|
4367
|
-
"text": "boolean
|
4205
|
+
"text": "boolean"
|
4368
4206
|
},
|
4207
|
+
"default": "false",
|
4369
4208
|
"description": "If true, disables the link",
|
4370
4209
|
"fieldName": "disabled",
|
4371
4210
|
"inheritedFrom": {
|
@@ -4400,10 +4239,13 @@
|
|
4400
4239
|
{
|
4401
4240
|
"name": "icon",
|
4402
4241
|
"type": {
|
4403
|
-
"text": "
|
4242
|
+
"text": "Icon | undefined"
|
4404
4243
|
},
|
4405
4244
|
"description": "If defined, renders an icon before or after the text",
|
4406
4245
|
"fieldName": "icon",
|
4246
|
+
"expandedType": {
|
4247
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
4248
|
+
},
|
4407
4249
|
"inheritedFrom": {
|
4408
4250
|
"name": "SkfLink",
|
4409
4251
|
"module": "src/components/link/link.component.ts"
|
@@ -4474,11 +4316,14 @@
|
|
4474
4316
|
{
|
4475
4317
|
"name": "type",
|
4476
4318
|
"type": {
|
4477
|
-
"text": "
|
4319
|
+
"text": "SkfLinkType"
|
4478
4320
|
},
|
4479
4321
|
"default": "'button'",
|
4480
4322
|
"description": "Defines the type of button",
|
4481
4323
|
"fieldName": "type",
|
4324
|
+
"expandedType": {
|
4325
|
+
"text": "'submit' | 'reset' | 'button'"
|
4326
|
+
},
|
4482
4327
|
"inheritedFrom": {
|
4483
4328
|
"name": "SkfLink",
|
4484
4329
|
"module": "src/components/link/link.component.ts"
|
@@ -4493,15 +4338,83 @@
|
|
4493
4338
|
"name": "SkfMenuItem",
|
4494
4339
|
"declaration": {
|
4495
4340
|
"name": "SkfMenuItem",
|
4496
|
-
"module": "src/components/menu
|
4341
|
+
"module": "src/components/menu/menu-item.component.ts"
|
4497
4342
|
}
|
4498
4343
|
}
|
4499
4344
|
],
|
4500
|
-
"typeDefinitionPath": "components/menu
|
4345
|
+
"typeDefinitionPath": "components/menu/menu-item.d.ts"
|
4501
4346
|
},
|
4502
4347
|
{
|
4503
4348
|
"kind": "javascript-module",
|
4504
|
-
"path": "components/
|
4349
|
+
"path": "components/menu/menu.js",
|
4350
|
+
"declarations": [
|
4351
|
+
{
|
4352
|
+
"kind": "class",
|
4353
|
+
"description": "The `<skf-menu>` is a component that displays a list of actions or options\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/983e5d-popover) for design principles",
|
4354
|
+
"name": "SkfMenu",
|
4355
|
+
"slots": [
|
4356
|
+
{
|
4357
|
+
"description": "The menu popover content",
|
4358
|
+
"name": ""
|
4359
|
+
}
|
4360
|
+
],
|
4361
|
+
"members": [],
|
4362
|
+
"events": [
|
4363
|
+
{
|
4364
|
+
"type": {
|
4365
|
+
"text": "CustomEvent"
|
4366
|
+
},
|
4367
|
+
"description": "Fired when the menu is opened",
|
4368
|
+
"name": "skf-opened"
|
4369
|
+
},
|
4370
|
+
{
|
4371
|
+
"type": {
|
4372
|
+
"text": "CustomEvent"
|
4373
|
+
},
|
4374
|
+
"description": "Fired when the menu is closed",
|
4375
|
+
"name": "skf-closed"
|
4376
|
+
}
|
4377
|
+
],
|
4378
|
+
"attributes": [
|
4379
|
+
{
|
4380
|
+
"type": {
|
4381
|
+
"text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
|
4382
|
+
},
|
4383
|
+
"description": "The placement of the menu",
|
4384
|
+
"name": "placement",
|
4385
|
+
"default": "'bottom-start'"
|
4386
|
+
},
|
4387
|
+
{
|
4388
|
+
"type": {
|
4389
|
+
"text": "string"
|
4390
|
+
},
|
4391
|
+
"description": "The id of the element the menu will be anchored to",
|
4392
|
+
"name": "anchor"
|
4393
|
+
}
|
4394
|
+
],
|
4395
|
+
"superclass": {
|
4396
|
+
"name": "SkfPopoverBase",
|
4397
|
+
"package": "@internal/base-classes/popover/popover.base.js"
|
4398
|
+
},
|
4399
|
+
"tagName": "skf-menu",
|
4400
|
+
"customElement": true
|
4401
|
+
}
|
4402
|
+
],
|
4403
|
+
"exports": [
|
4404
|
+
{
|
4405
|
+
"kind": "js",
|
4406
|
+
"name": "SkfMenu",
|
4407
|
+
"declaration": {
|
4408
|
+
"name": "SkfMenu",
|
4409
|
+
"module": "src/components/menu/menu.component.ts"
|
4410
|
+
}
|
4411
|
+
}
|
4412
|
+
],
|
4413
|
+
"typeDefinitionPath": "components/menu/menu.d.ts"
|
4414
|
+
},
|
4415
|
+
{
|
4416
|
+
"kind": "javascript-module",
|
4417
|
+
"path": "components/nav/nav-item.js",
|
4505
4418
|
"declarations": [
|
4506
4419
|
{
|
4507
4420
|
"kind": "class",
|
@@ -4564,11 +4477,11 @@
|
|
4564
4477
|
"name": "SkfNavItem",
|
4565
4478
|
"declaration": {
|
4566
4479
|
"name": "SkfNavItem",
|
4567
|
-
"module": "src/components/nav
|
4480
|
+
"module": "src/components/nav/nav-item.component.ts"
|
4568
4481
|
}
|
4569
4482
|
}
|
4570
4483
|
],
|
4571
|
-
"typeDefinitionPath": "components/nav
|
4484
|
+
"typeDefinitionPath": "components/nav/nav-item.d.ts"
|
4572
4485
|
},
|
4573
4486
|
{
|
4574
4487
|
"kind": "javascript-module",
|
@@ -4576,7 +4489,7 @@
|
|
4576
4489
|
"declarations": [
|
4577
4490
|
{
|
4578
4491
|
"kind": "class",
|
4579
|
-
"description": "The `<skf-popover>` is a general purpose component that displays the slot content in a popover.",
|
4492
|
+
"description": "The `<skf-popover>` is a general purpose component that displays the slot content in a popover.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/983e5d-popover) for design principles",
|
4580
4493
|
"name": "SkfPopover",
|
4581
4494
|
"slots": [
|
4582
4495
|
{
|
@@ -4604,76 +4517,20 @@
|
|
4604
4517
|
"default": "false",
|
4605
4518
|
"description": "If true, hides the arrow",
|
4606
4519
|
"attribute": "hideArrow"
|
4607
|
-
},
|
4608
|
-
{
|
4609
|
-
"kind": "method",
|
4610
|
-
"name": "hideArrowChanged"
|
4611
|
-
},
|
4612
|
-
{
|
4613
|
-
"kind": "method",
|
4614
|
-
"name": "addEventListeners",
|
4615
|
-
"return": {
|
4616
|
-
"type": {
|
4617
|
-
"text": "void"
|
4618
|
-
}
|
4619
|
-
},
|
4620
|
-
"parameters": [
|
4621
|
-
{
|
4622
|
-
"name": "$element",
|
4623
|
-
"type": {
|
4624
|
-
"text": "HTMLElement | Element"
|
4625
|
-
}
|
4626
|
-
}
|
4627
|
-
]
|
4628
|
-
},
|
4629
|
-
{
|
4630
|
-
"kind": "method",
|
4631
|
-
"name": "removeEventListeners",
|
4632
|
-
"return": {
|
4633
|
-
"type": {
|
4634
|
-
"text": "void"
|
4635
|
-
}
|
4636
|
-
},
|
4637
|
-
"parameters": [
|
4638
|
-
{
|
4639
|
-
"name": "$element",
|
4640
|
-
"type": {
|
4641
|
-
"text": "HTMLElement | Element"
|
4642
|
-
}
|
4643
|
-
}
|
4644
|
-
]
|
4645
|
-
},
|
4646
|
-
{
|
4647
|
-
"kind": "field",
|
4648
|
-
"name": "arrow",
|
4649
|
-
"type": {
|
4650
|
-
"text": "boolean"
|
4651
|
-
},
|
4652
|
-
"default": "!this.hideArrow"
|
4653
|
-
},
|
4654
|
-
{
|
4655
|
-
"kind": "field",
|
4656
|
-
"name": "placement",
|
4657
|
-
"type": {
|
4658
|
-
"text": "string"
|
4659
|
-
},
|
4660
|
-
"default": "'bottom-start'"
|
4661
|
-
},
|
4662
|
-
{
|
4663
|
-
"kind": "field",
|
4664
|
-
"name": "triggerEvent",
|
4665
|
-
"type": {
|
4666
|
-
"text": "string"
|
4667
|
-
},
|
4668
|
-
"default": "'click'"
|
4669
4520
|
}
|
4670
4521
|
],
|
4671
4522
|
"events": [
|
4672
4523
|
{
|
4524
|
+
"type": {
|
4525
|
+
"text": "CustomEvent"
|
4526
|
+
},
|
4673
4527
|
"description": "Fired when the menu is opened",
|
4674
4528
|
"name": "skf-opened"
|
4675
4529
|
},
|
4676
4530
|
{
|
4531
|
+
"type": {
|
4532
|
+
"text": "CustomEvent"
|
4533
|
+
},
|
4677
4534
|
"description": "Fired when the menu is closed",
|
4678
4535
|
"name": "skf-closed"
|
4679
4536
|
}
|
@@ -4683,7 +4540,7 @@
|
|
4683
4540
|
"type": {
|
4684
4541
|
"text": "\"top\" | \"right\" | \"bottom\" | \"left\" | \"top-start\" | \"top-end\" | \"right-start\" | \"right-end\" | \"bottom-start\" | \"bottom-end\" | \"left-start\" | \"left-end\""
|
4685
4542
|
},
|
4686
|
-
"description": "The placement of the
|
4543
|
+
"description": "The placement of the popover",
|
4687
4544
|
"name": "placement",
|
4688
4545
|
"default": "'bottom-start'"
|
4689
4546
|
},
|
@@ -4838,7 +4695,7 @@
|
|
4838
4695
|
"declarations": [
|
4839
4696
|
{
|
4840
4697
|
"kind": "class",
|
4841
|
-
"description": "The `<skf-radio>` component is used to create a radio input",
|
4698
|
+
"description": "The `<skf-radio>` component is used to create a radio input\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/78d5dd-radio-button) for design principles",
|
4842
4699
|
"name": "SkfRadio",
|
4843
4700
|
"slots": [
|
4844
4701
|
{
|
@@ -4920,7 +4777,7 @@
|
|
4920
4777
|
"kind": "field",
|
4921
4778
|
"name": "severity",
|
4922
4779
|
"type": {
|
4923
|
-
"text": "
|
4780
|
+
"text": "FormFieldSeverity | undefined"
|
4924
4781
|
},
|
4925
4782
|
"description": "If defined, displays provided severity state",
|
4926
4783
|
"attribute": "severity"
|
@@ -4938,33 +4795,20 @@
|
|
4938
4795
|
{
|
4939
4796
|
"kind": "field",
|
4940
4797
|
"name": "value",
|
4941
|
-
"type": {
|
4942
|
-
"text": "string"
|
4943
|
-
},
|
4944
|
-
"default": "''",
|
4945
|
-
"description": "The current value of the input field",
|
4946
|
-
"attribute": "value"
|
4947
|
-
},
|
4948
|
-
{
|
4949
|
-
"kind": "method",
|
4950
|
-
"name": "handleInvalidChange"
|
4951
|
-
},
|
4952
|
-
{
|
4953
|
-
"kind": "method",
|
4954
|
-
"name": "handleDebugInvalid"
|
4955
|
-
},
|
4956
|
-
{
|
4957
|
-
"kind": "method",
|
4958
|
-
"name": "handleCheckedChanged"
|
4959
|
-
},
|
4960
|
-
{
|
4961
|
-
"kind": "method",
|
4962
|
-
"name": "handleCustomInvalidChange"
|
4798
|
+
"type": {
|
4799
|
+
"text": "string"
|
4800
|
+
},
|
4801
|
+
"default": "''",
|
4802
|
+
"description": "The current value of the input field",
|
4803
|
+
"attribute": "value"
|
4963
4804
|
}
|
4964
4805
|
],
|
4965
4806
|
"events": [
|
4966
4807
|
{
|
4967
|
-
"
|
4808
|
+
"type": {
|
4809
|
+
"text": "Event"
|
4810
|
+
},
|
4811
|
+
"description": "When the value of the input changes",
|
4968
4812
|
"name": "change"
|
4969
4813
|
}
|
4970
4814
|
],
|
@@ -5048,7 +4892,7 @@
|
|
5048
4892
|
{
|
5049
4893
|
"name": "severity",
|
5050
4894
|
"type": {
|
5051
|
-
"text": "
|
4895
|
+
"text": "FormFieldSeverity | undefined"
|
5052
4896
|
},
|
5053
4897
|
"description": "If defined, displays provided severity state",
|
5054
4898
|
"fieldName": "severity"
|
@@ -5094,7 +4938,7 @@
|
|
5094
4938
|
},
|
5095
4939
|
{
|
5096
4940
|
"kind": "javascript-module",
|
5097
|
-
"path": "components/segmented-button
|
4941
|
+
"path": "components/segmented-button/segmented-button-item.js",
|
5098
4942
|
"declarations": [
|
5099
4943
|
{
|
5100
4944
|
"kind": "class",
|
@@ -5102,7 +4946,7 @@
|
|
5102
4946
|
"name": "SkfSegmentedButtonItem",
|
5103
4947
|
"slots": [
|
5104
4948
|
{
|
5105
|
-
"description": "
|
4949
|
+
"description": "Label for the button",
|
5106
4950
|
"name": ""
|
5107
4951
|
}
|
5108
4952
|
],
|
@@ -5127,6 +4971,17 @@
|
|
5127
4971
|
"attribute": "disabled",
|
5128
4972
|
"reflects": true
|
5129
4973
|
},
|
4974
|
+
{
|
4975
|
+
"kind": "field",
|
4976
|
+
"name": "selected",
|
4977
|
+
"type": {
|
4978
|
+
"text": "boolean"
|
4979
|
+
},
|
4980
|
+
"default": "false",
|
4981
|
+
"description": "If true, items is marked as selected",
|
4982
|
+
"attribute": "selected",
|
4983
|
+
"reflects": true
|
4984
|
+
},
|
5130
4985
|
{
|
5131
4986
|
"kind": "field",
|
5132
4987
|
"name": "value",
|
@@ -5144,8 +4999,8 @@
|
|
5144
4999
|
"type": {
|
5145
5000
|
"text": "CustomEvent"
|
5146
5001
|
},
|
5147
|
-
"description": "Fired when
|
5148
|
-
"name": "
|
5002
|
+
"description": "Fired when selected",
|
5003
|
+
"name": "skf-segmented-button-item-select"
|
5149
5004
|
}
|
5150
5005
|
],
|
5151
5006
|
"attributes": [
|
@@ -5158,6 +5013,15 @@
|
|
5158
5013
|
"description": "If true, items is marked as disabled",
|
5159
5014
|
"fieldName": "disabled"
|
5160
5015
|
},
|
5016
|
+
{
|
5017
|
+
"name": "selected",
|
5018
|
+
"type": {
|
5019
|
+
"text": "boolean"
|
5020
|
+
},
|
5021
|
+
"default": "false",
|
5022
|
+
"description": "If true, items is marked as selected",
|
5023
|
+
"fieldName": "selected"
|
5024
|
+
},
|
5161
5025
|
{
|
5162
5026
|
"name": "value",
|
5163
5027
|
"type": {
|
@@ -5182,11 +5046,11 @@
|
|
5182
5046
|
"name": "SkfSegmentedButtonItem",
|
5183
5047
|
"declaration": {
|
5184
5048
|
"name": "SkfSegmentedButtonItem",
|
5185
|
-
"module": "src/components/segmented-button
|
5049
|
+
"module": "src/components/segmented-button/segmented-button-item.component.ts"
|
5186
5050
|
}
|
5187
5051
|
}
|
5188
5052
|
],
|
5189
|
-
"typeDefinitionPath": "components/segmented-button
|
5053
|
+
"typeDefinitionPath": "components/segmented-button/segmented-button-item.d.ts"
|
5190
5054
|
},
|
5191
5055
|
{
|
5192
5056
|
"kind": "javascript-module",
|
@@ -5203,16 +5067,6 @@
|
|
5203
5067
|
}
|
5204
5068
|
],
|
5205
5069
|
"members": [
|
5206
|
-
{
|
5207
|
-
"kind": "field",
|
5208
|
-
"name": "defaultSelected",
|
5209
|
-
"type": {
|
5210
|
-
"text": "number"
|
5211
|
-
},
|
5212
|
-
"default": "0",
|
5213
|
-
"description": "Sets the default selected control",
|
5214
|
-
"attribute": "default-selected"
|
5215
|
-
},
|
5216
5070
|
{
|
5217
5071
|
"kind": "field",
|
5218
5072
|
"name": "multiple",
|
@@ -5225,15 +5079,6 @@
|
|
5225
5079
|
}
|
5226
5080
|
],
|
5227
5081
|
"attributes": [
|
5228
|
-
{
|
5229
|
-
"name": "default-selected",
|
5230
|
-
"type": {
|
5231
|
-
"text": "number"
|
5232
|
-
},
|
5233
|
-
"default": "0",
|
5234
|
-
"description": "Sets the default selected control",
|
5235
|
-
"fieldName": "defaultSelected"
|
5236
|
-
},
|
5237
5082
|
{
|
5238
5083
|
"name": "multiple",
|
5239
5084
|
"type": {
|
@@ -5266,187 +5111,59 @@
|
|
5266
5111
|
},
|
5267
5112
|
{
|
5268
5113
|
"kind": "javascript-module",
|
5269
|
-
"path": "components/select
|
5114
|
+
"path": "components/select/select-option-group.js",
|
5270
5115
|
"declarations": [
|
5271
5116
|
{
|
5272
5117
|
"kind": "class",
|
5273
|
-
"description": "The `<skf-select-option>` is a component
|
5274
|
-
"name": "
|
5118
|
+
"description": "The `<skf-select-option-group>` is a component that groups select-options",
|
5119
|
+
"name": "SkfSelectOptionGroup",
|
5275
5120
|
"slots": [
|
5276
5121
|
{
|
5277
|
-
"description": "The
|
5122
|
+
"description": "The component's placeholder content",
|
5278
5123
|
"name": ""
|
5279
|
-
},
|
5280
|
-
{
|
5281
|
-
"description": "The option's slot for icon or custom meta information (svg).",
|
5282
|
-
"name": "icon"
|
5283
5124
|
}
|
5284
5125
|
],
|
5285
5126
|
"members": [
|
5286
5127
|
{
|
5287
5128
|
"kind": "field",
|
5288
|
-
"name": "
|
5289
|
-
"type": {
|
5290
|
-
"text": "object"
|
5291
|
-
},
|
5292
|
-
"static": true,
|
5293
|
-
"default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
|
5294
|
-
},
|
5295
|
-
{
|
5296
|
-
"kind": "field",
|
5297
|
-
"name": "disabled",
|
5298
|
-
"type": {
|
5299
|
-
"text": "boolean | undefined"
|
5300
|
-
},
|
5301
|
-
"description": "If true, prevents interaction with the option",
|
5302
|
-
"attribute": "disabled",
|
5303
|
-
"reflects": true
|
5304
|
-
},
|
5305
|
-
{
|
5306
|
-
"kind": "field",
|
5307
|
-
"name": "icon",
|
5308
|
-
"type": {
|
5309
|
-
"text": "SkfIcon['name'] | undefined"
|
5310
|
-
},
|
5311
|
-
"description": "If defined, set an icon",
|
5312
|
-
"attribute": "icon",
|
5313
|
-
"reflects": true
|
5314
|
-
},
|
5315
|
-
{
|
5316
|
-
"kind": "field",
|
5317
|
-
"name": "iconColor",
|
5318
|
-
"type": {
|
5319
|
-
"text": "SeverityFgColor | undefined"
|
5320
|
-
},
|
5321
|
-
"description": "If defined, sets provided color on the icon",
|
5322
|
-
"attribute": "icon-color",
|
5323
|
-
"reflects": true
|
5324
|
-
},
|
5325
|
-
{
|
5326
|
-
"kind": "field",
|
5327
|
-
"name": "selected",
|
5328
|
-
"type": {
|
5329
|
-
"text": "boolean | undefined"
|
5330
|
-
},
|
5331
|
-
"description": "If true, sets the option as selected",
|
5332
|
-
"attribute": "selected",
|
5333
|
-
"reflects": true
|
5334
|
-
},
|
5335
|
-
{
|
5336
|
-
"kind": "field",
|
5337
|
-
"name": "shortLabel",
|
5338
|
-
"type": {
|
5339
|
-
"text": "string | undefined"
|
5340
|
-
},
|
5341
|
-
"description": "If defined, sets a short label",
|
5342
|
-
"attribute": "short-label",
|
5343
|
-
"reflects": true
|
5344
|
-
},
|
5345
|
-
{
|
5346
|
-
"kind": "field",
|
5347
|
-
"name": "text",
|
5348
|
-
"description": "The option's label text (equivalent to the tags textContent)"
|
5349
|
-
},
|
5350
|
-
{
|
5351
|
-
"kind": "field",
|
5352
|
-
"name": "value",
|
5353
|
-
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
5354
|
-
"attribute": "value",
|
5355
|
-
"reflects": true
|
5356
|
-
},
|
5357
|
-
{
|
5358
|
-
"kind": "field",
|
5359
|
-
"name": "role",
|
5129
|
+
"name": "label",
|
5360
5130
|
"type": {
|
5361
5131
|
"text": "string"
|
5362
5132
|
},
|
5363
|
-
"default": "'
|
5364
|
-
|
5365
|
-
|
5366
|
-
"kind": "field",
|
5367
|
-
"name": "_parent"
|
5368
|
-
},
|
5369
|
-
{
|
5370
|
-
"kind": "field",
|
5371
|
-
"name": "_shortcutUpdate",
|
5372
|
-
"type": {
|
5373
|
-
"text": "boolean"
|
5374
|
-
},
|
5375
|
-
"default": "false"
|
5376
|
-
}
|
5377
|
-
],
|
5378
|
-
"events": [
|
5379
|
-
{
|
5380
|
-
"description": "{detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.",
|
5381
|
-
"name": "skf-select-option:select"
|
5133
|
+
"default": "'Default label'",
|
5134
|
+
"attribute": "label",
|
5135
|
+
"reflects": true
|
5382
5136
|
}
|
5383
5137
|
],
|
5384
5138
|
"attributes": [
|
5385
5139
|
{
|
5386
|
-
"name": "
|
5387
|
-
"type": {
|
5388
|
-
"text": "boolean | undefined"
|
5389
|
-
},
|
5390
|
-
"description": "If true, prevents interaction with the option",
|
5391
|
-
"fieldName": "disabled"
|
5392
|
-
},
|
5393
|
-
{
|
5394
|
-
"name": "icon",
|
5395
|
-
"type": {
|
5396
|
-
"text": "SkfIcon['name'] | undefined"
|
5397
|
-
},
|
5398
|
-
"description": "If defined, set an icon",
|
5399
|
-
"fieldName": "icon"
|
5400
|
-
},
|
5401
|
-
{
|
5402
|
-
"name": "icon-color",
|
5403
|
-
"type": {
|
5404
|
-
"text": "SeverityFgColor | undefined"
|
5405
|
-
},
|
5406
|
-
"description": "If defined, sets provided color on the icon",
|
5407
|
-
"fieldName": "iconColor"
|
5408
|
-
},
|
5409
|
-
{
|
5410
|
-
"name": "selected",
|
5411
|
-
"type": {
|
5412
|
-
"text": "boolean | undefined"
|
5413
|
-
},
|
5414
|
-
"description": "If true, sets the option as selected",
|
5415
|
-
"fieldName": "selected"
|
5416
|
-
},
|
5417
|
-
{
|
5418
|
-
"name": "short-label",
|
5140
|
+
"name": "label",
|
5419
5141
|
"type": {
|
5420
|
-
"text": "string
|
5142
|
+
"text": "string"
|
5421
5143
|
},
|
5422
|
-
"
|
5423
|
-
"fieldName": "
|
5424
|
-
},
|
5425
|
-
{
|
5426
|
-
"name": "value",
|
5427
|
-
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
5428
|
-
"fieldName": "value"
|
5144
|
+
"default": "'Default label'",
|
5145
|
+
"fieldName": "label"
|
5429
5146
|
}
|
5430
5147
|
],
|
5431
5148
|
"superclass": {
|
5432
5149
|
"name": "SkfElement",
|
5433
|
-
"package": "@internal/components/skf-element
|
5150
|
+
"package": "@internal/components/skf-element"
|
5434
5151
|
},
|
5435
|
-
"tagName": "skf-select-option",
|
5152
|
+
"tagName": "skf-select-option-group",
|
5436
5153
|
"customElement": true
|
5437
5154
|
}
|
5438
5155
|
],
|
5439
5156
|
"exports": [
|
5440
5157
|
{
|
5441
5158
|
"kind": "js",
|
5442
|
-
"name": "
|
5159
|
+
"name": "SkfSelectOptionGroup",
|
5443
5160
|
"declaration": {
|
5444
|
-
"name": "
|
5445
|
-
"module": "src/components/select
|
5161
|
+
"name": "SkfSelectOptionGroup",
|
5162
|
+
"module": "src/components/select/select-option-group.component.ts"
|
5446
5163
|
}
|
5447
5164
|
}
|
5448
5165
|
],
|
5449
|
-
"typeDefinitionPath": "components/select
|
5166
|
+
"typeDefinitionPath": "components/select/select-option-group.d.ts"
|
5450
5167
|
},
|
5451
5168
|
{
|
5452
5169
|
"kind": "javascript-module",
|
@@ -5478,20 +5195,26 @@
|
|
5478
5195
|
"kind": "field",
|
5479
5196
|
"name": "icon",
|
5480
5197
|
"type": {
|
5481
|
-
"text": "
|
5198
|
+
"text": "Icon | undefined"
|
5482
5199
|
},
|
5483
5200
|
"description": "If defined, displays leading/provided icon",
|
5484
|
-
"attribute": "icon"
|
5201
|
+
"attribute": "icon",
|
5202
|
+
"expandedType": {
|
5203
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
5204
|
+
}
|
5485
5205
|
},
|
5486
5206
|
{
|
5487
5207
|
"kind": "field",
|
5488
5208
|
"name": "color",
|
5489
5209
|
"type": {
|
5490
|
-
"text": "
|
5210
|
+
"text": "Severity | undefined"
|
5491
5211
|
},
|
5492
5212
|
"description": "If defined, gives the supplied appearance",
|
5493
5213
|
"attribute": "color",
|
5494
|
-
"reflects": true
|
5214
|
+
"reflects": true,
|
5215
|
+
"expandedType": {
|
5216
|
+
"text": "'error' | 'info' | 'warning' | 'success' | undefined"
|
5217
|
+
}
|
5495
5218
|
},
|
5496
5219
|
{
|
5497
5220
|
"kind": "field",
|
@@ -5513,22 +5236,6 @@
|
|
5513
5236
|
"description": "If true, adds trailing button to remove tag",
|
5514
5237
|
"attribute": "removable",
|
5515
5238
|
"reflects": true
|
5516
|
-
},
|
5517
|
-
{
|
5518
|
-
"kind": "field",
|
5519
|
-
"name": "_handleKeyDown",
|
5520
|
-
"privacy": "protected"
|
5521
|
-
},
|
5522
|
-
{
|
5523
|
-
"kind": "field",
|
5524
|
-
"name": "_handleRemove",
|
5525
|
-
"privacy": "protected",
|
5526
|
-
"description": "run externally provided callback (if any) first. Let click propagate to handleClick."
|
5527
|
-
},
|
5528
|
-
{
|
5529
|
-
"kind": "field",
|
5530
|
-
"name": "_handleClick",
|
5531
|
-
"privacy": "protected"
|
5532
5239
|
}
|
5533
5240
|
],
|
5534
5241
|
"attributes": [
|
@@ -5544,18 +5251,24 @@
|
|
5544
5251
|
{
|
5545
5252
|
"name": "icon",
|
5546
5253
|
"type": {
|
5547
|
-
"text": "
|
5254
|
+
"text": "Icon | undefined"
|
5548
5255
|
},
|
5549
5256
|
"description": "If defined, displays leading/provided icon",
|
5550
|
-
"fieldName": "icon"
|
5257
|
+
"fieldName": "icon",
|
5258
|
+
"expandedType": {
|
5259
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
5260
|
+
}
|
5551
5261
|
},
|
5552
5262
|
{
|
5553
5263
|
"name": "color",
|
5554
5264
|
"type": {
|
5555
|
-
"text": "
|
5265
|
+
"text": "Severity | undefined"
|
5556
5266
|
},
|
5557
5267
|
"description": "If defined, gives the supplied appearance",
|
5558
|
-
"fieldName": "color"
|
5268
|
+
"fieldName": "color",
|
5269
|
+
"expandedType": {
|
5270
|
+
"text": "'error' | 'info' | 'warning' | 'success' | undefined"
|
5271
|
+
}
|
5559
5272
|
},
|
5560
5273
|
{
|
5561
5274
|
"name": "removable",
|
@@ -5593,7 +5306,7 @@
|
|
5593
5306
|
"declarations": [
|
5594
5307
|
{
|
5595
5308
|
"kind": "class",
|
5596
|
-
"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.",
|
5309
|
+
"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.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/91c9f0-select-and-combobox) for design principles",
|
5597
5310
|
"name": "SkfSelect",
|
5598
5311
|
"slots": [
|
5599
5312
|
{
|
@@ -5626,8 +5339,9 @@
|
|
5626
5339
|
"kind": "field",
|
5627
5340
|
"name": "hideLabel",
|
5628
5341
|
"type": {
|
5629
|
-
"text": "boolean
|
5342
|
+
"text": "boolean"
|
5630
5343
|
},
|
5344
|
+
"default": "false",
|
5631
5345
|
"description": "If true, hides the label visually",
|
5632
5346
|
"attribute": "hide-label"
|
5633
5347
|
},
|
@@ -5635,8 +5349,9 @@
|
|
5635
5349
|
"kind": "field",
|
5636
5350
|
"name": "hideTags",
|
5637
5351
|
"type": {
|
5638
|
-
"text": "boolean
|
5352
|
+
"text": "boolean"
|
5639
5353
|
},
|
5354
|
+
"default": "false",
|
5640
5355
|
"description": "If true and mulltiple is true, no tags are displayed under the select",
|
5641
5356
|
"attribute": "hide-tags",
|
5642
5357
|
"reflects": true
|
@@ -5692,8 +5407,9 @@
|
|
5692
5407
|
"kind": "field",
|
5693
5408
|
"name": "multiple",
|
5694
5409
|
"type": {
|
5695
|
-
"text": "boolean
|
5410
|
+
"text": "boolean"
|
5696
5411
|
},
|
5412
|
+
"default": "false",
|
5697
5413
|
"description": "If true, allows for multiple options to be selected",
|
5698
5414
|
"attribute": "multiple",
|
5699
5415
|
"reflects": true
|
@@ -5720,7 +5436,7 @@
|
|
5720
5436
|
"kind": "field",
|
5721
5437
|
"name": "severity",
|
5722
5438
|
"type": {
|
5723
|
-
"text": "
|
5439
|
+
"text": "FormFieldSeverity | undefined"
|
5724
5440
|
},
|
5725
5441
|
"description": "If defined, displays provided severity state",
|
5726
5442
|
"attribute": "severity"
|
@@ -5729,8 +5445,9 @@
|
|
5729
5445
|
"kind": "field",
|
5730
5446
|
"name": "showValid",
|
5731
5447
|
"type": {
|
5732
|
-
"text": "boolean
|
5448
|
+
"text": "boolean"
|
5733
5449
|
},
|
5450
|
+
"default": "false",
|
5734
5451
|
"description": "If true, displays valid state after interaction",
|
5735
5452
|
"attribute": "show-valid"
|
5736
5453
|
},
|
@@ -5765,24 +5482,39 @@
|
|
5765
5482
|
],
|
5766
5483
|
"events": [
|
5767
5484
|
{
|
5485
|
+
"type": {
|
5486
|
+
"text": "Event"
|
5487
|
+
},
|
5768
5488
|
"description": "Fired when the selected option(s) changes",
|
5769
5489
|
"name": "change"
|
5770
5490
|
},
|
5771
5491
|
{
|
5492
|
+
"type": {
|
5493
|
+
"text": "Event"
|
5494
|
+
},
|
5772
5495
|
"description": "Fired when the select is invalid",
|
5773
5496
|
"name": "invalid"
|
5774
5497
|
},
|
5775
5498
|
{
|
5499
|
+
"type": {
|
5500
|
+
"text": "Event"
|
5501
|
+
},
|
5776
5502
|
"description": "Fired when the form is reset",
|
5777
5503
|
"name": "reset"
|
5778
5504
|
},
|
5779
5505
|
{
|
5506
|
+
"type": {
|
5507
|
+
"text": "CustomEvent"
|
5508
|
+
},
|
5780
5509
|
"description": "{detail: {expanded: boolean}} Fired when the select dropdown is toggled",
|
5781
|
-
"name": "skf-select
|
5510
|
+
"name": "skf-select-dropdown"
|
5782
5511
|
},
|
5783
5512
|
{
|
5513
|
+
"type": {
|
5514
|
+
"text": "CustomEvent"
|
5515
|
+
},
|
5784
5516
|
"description": "{detail: {value: string | null, option: SkfSelectOption}} Fired when the select dropdown is toggled",
|
5785
|
-
"name": "skf-select-option
|
5517
|
+
"name": "skf-select-option-select"
|
5786
5518
|
}
|
5787
5519
|
],
|
5788
5520
|
"attributes": [
|
@@ -5790,8 +5522,17 @@
|
|
5790
5522
|
"type": {
|
5791
5523
|
"text": "boolean"
|
5792
5524
|
},
|
5793
|
-
"description": "If true, the select is disabled
|
5794
|
-
"name": "disabled"
|
5525
|
+
"description": "If true, the select is disabled",
|
5526
|
+
"name": "disabled",
|
5527
|
+
"default": "false"
|
5528
|
+
},
|
5529
|
+
{
|
5530
|
+
"type": {
|
5531
|
+
"text": "boolean"
|
5532
|
+
},
|
5533
|
+
"description": "If true, the select is required",
|
5534
|
+
"name": "required",
|
5535
|
+
"default": "false"
|
5795
5536
|
},
|
5796
5537
|
{
|
5797
5538
|
"name": "button-label",
|
@@ -5813,16 +5554,18 @@
|
|
5813
5554
|
{
|
5814
5555
|
"name": "hide-label",
|
5815
5556
|
"type": {
|
5816
|
-
"text": "boolean
|
5557
|
+
"text": "boolean"
|
5817
5558
|
},
|
5559
|
+
"default": "false",
|
5818
5560
|
"description": "If true, hides the label visually",
|
5819
5561
|
"fieldName": "hideLabel"
|
5820
5562
|
},
|
5821
5563
|
{
|
5822
5564
|
"name": "hide-tags",
|
5823
5565
|
"type": {
|
5824
|
-
"text": "boolean
|
5566
|
+
"text": "boolean"
|
5825
5567
|
},
|
5568
|
+
"default": "false",
|
5826
5569
|
"description": "If true and mulltiple is true, no tags are displayed under the select",
|
5827
5570
|
"fieldName": "hideTags"
|
5828
5571
|
},
|
@@ -5861,8 +5604,9 @@
|
|
5861
5604
|
{
|
5862
5605
|
"name": "multiple",
|
5863
5606
|
"type": {
|
5864
|
-
"text": "boolean
|
5607
|
+
"text": "boolean"
|
5865
5608
|
},
|
5609
|
+
"default": "false",
|
5866
5610
|
"description": "If true, allows for multiple options to be selected",
|
5867
5611
|
"fieldName": "multiple"
|
5868
5612
|
},
|
@@ -5885,7 +5629,7 @@
|
|
5885
5629
|
{
|
5886
5630
|
"name": "severity",
|
5887
5631
|
"type": {
|
5888
|
-
"text": "
|
5632
|
+
"text": "FormFieldSeverity | undefined"
|
5889
5633
|
},
|
5890
5634
|
"description": "If defined, displays provided severity state",
|
5891
5635
|
"fieldName": "severity"
|
@@ -5893,8 +5637,9 @@
|
|
5893
5637
|
{
|
5894
5638
|
"name": "show-valid",
|
5895
5639
|
"type": {
|
5896
|
-
"text": "boolean
|
5640
|
+
"text": "boolean"
|
5897
5641
|
},
|
5642
|
+
"default": "false",
|
5898
5643
|
"description": "If true, displays valid state after interaction",
|
5899
5644
|
"fieldName": "showValid"
|
5900
5645
|
},
|
@@ -5930,63 +5675,207 @@
|
|
5930
5675
|
},
|
5931
5676
|
{
|
5932
5677
|
"kind": "javascript-module",
|
5933
|
-
"path": "components/select
|
5678
|
+
"path": "components/select/select-option.js",
|
5934
5679
|
"declarations": [
|
5935
5680
|
{
|
5936
5681
|
"kind": "class",
|
5937
|
-
"description": "The `<skf-select-option
|
5938
|
-
"name": "
|
5682
|
+
"description": "The `<skf-select-option>` is a component is used nested in a skf-select or skf-select-option-group.",
|
5683
|
+
"name": "SkfSelectOption",
|
5939
5684
|
"slots": [
|
5940
5685
|
{
|
5941
|
-
"description": "The
|
5686
|
+
"description": "The option's text content",
|
5942
5687
|
"name": ""
|
5688
|
+
},
|
5689
|
+
{
|
5690
|
+
"description": "The option's slot for icon or custom meta information (svg).",
|
5691
|
+
"name": "icon"
|
5943
5692
|
}
|
5944
5693
|
],
|
5945
5694
|
"members": [
|
5946
5695
|
{
|
5947
5696
|
"kind": "field",
|
5948
|
-
"name": "
|
5697
|
+
"name": "shadowRootOptions",
|
5949
5698
|
"type": {
|
5950
|
-
"text": "
|
5699
|
+
"text": "object"
|
5951
5700
|
},
|
5952
|
-
"
|
5953
|
-
"
|
5701
|
+
"static": true,
|
5702
|
+
"default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true }"
|
5703
|
+
},
|
5704
|
+
{
|
5705
|
+
"kind": "field",
|
5706
|
+
"name": "disabled",
|
5707
|
+
"type": {
|
5708
|
+
"text": "boolean"
|
5709
|
+
},
|
5710
|
+
"default": "false",
|
5711
|
+
"description": "If true, prevents interaction with the option",
|
5712
|
+
"attribute": "disabled",
|
5713
|
+
"reflects": true
|
5714
|
+
},
|
5715
|
+
{
|
5716
|
+
"kind": "field",
|
5717
|
+
"name": "icon",
|
5718
|
+
"type": {
|
5719
|
+
"text": "Icon | undefined"
|
5720
|
+
},
|
5721
|
+
"description": "If defined, set an icon",
|
5722
|
+
"attribute": "icon",
|
5723
|
+
"reflects": true,
|
5724
|
+
"expandedType": {
|
5725
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
5726
|
+
}
|
5727
|
+
},
|
5728
|
+
{
|
5729
|
+
"kind": "field",
|
5730
|
+
"name": "iconColor",
|
5731
|
+
"type": {
|
5732
|
+
"text": "IconColor | undefined"
|
5733
|
+
},
|
5734
|
+
"description": "If defined, sets provided color on the icon",
|
5735
|
+
"attribute": "icon-color",
|
5736
|
+
"reflects": true,
|
5737
|
+
"expandedType": {
|
5738
|
+
"text": "'error' | 'info' | 'warning' | 'primary' | 'inverse' | 'emphasised' | 'secondary' | 'success' | undefined"
|
5739
|
+
}
|
5740
|
+
},
|
5741
|
+
{
|
5742
|
+
"kind": "field",
|
5743
|
+
"name": "selected",
|
5744
|
+
"type": {
|
5745
|
+
"text": "boolean"
|
5746
|
+
},
|
5747
|
+
"default": "false",
|
5748
|
+
"description": "If true, sets the option as selected",
|
5749
|
+
"attribute": "selected",
|
5750
|
+
"reflects": true
|
5751
|
+
},
|
5752
|
+
{
|
5753
|
+
"kind": "field",
|
5754
|
+
"name": "shortLabel",
|
5755
|
+
"type": {
|
5756
|
+
"text": "string | undefined"
|
5757
|
+
},
|
5758
|
+
"description": "If defined, sets a short label",
|
5759
|
+
"attribute": "short-label",
|
5760
|
+
"reflects": true
|
5761
|
+
},
|
5762
|
+
{
|
5763
|
+
"kind": "field",
|
5764
|
+
"name": "text",
|
5765
|
+
"description": "The option's label text (equivalent to the tags textContent)"
|
5766
|
+
},
|
5767
|
+
{
|
5768
|
+
"kind": "field",
|
5769
|
+
"name": "value",
|
5770
|
+
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
5771
|
+
"attribute": "value",
|
5954
5772
|
"reflects": true
|
5773
|
+
},
|
5774
|
+
{
|
5775
|
+
"kind": "field",
|
5776
|
+
"name": "role",
|
5777
|
+
"type": {
|
5778
|
+
"text": "string"
|
5779
|
+
},
|
5780
|
+
"default": "'option'"
|
5781
|
+
},
|
5782
|
+
{
|
5783
|
+
"kind": "field",
|
5784
|
+
"name": "_parent"
|
5785
|
+
},
|
5786
|
+
{
|
5787
|
+
"kind": "field",
|
5788
|
+
"name": "_shortcutUpdate",
|
5789
|
+
"type": {
|
5790
|
+
"text": "boolean"
|
5791
|
+
},
|
5792
|
+
"default": "false"
|
5793
|
+
}
|
5794
|
+
],
|
5795
|
+
"events": [
|
5796
|
+
{
|
5797
|
+
"description": "{detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.",
|
5798
|
+
"name": "skf-select-option-select"
|
5955
5799
|
}
|
5956
5800
|
],
|
5957
5801
|
"attributes": [
|
5958
5802
|
{
|
5959
|
-
"name": "
|
5803
|
+
"name": "disabled",
|
5960
5804
|
"type": {
|
5961
|
-
"text": "
|
5805
|
+
"text": "boolean"
|
5962
5806
|
},
|
5963
|
-
"default": "
|
5964
|
-
"
|
5807
|
+
"default": "false",
|
5808
|
+
"description": "If true, prevents interaction with the option",
|
5809
|
+
"fieldName": "disabled"
|
5810
|
+
},
|
5811
|
+
{
|
5812
|
+
"name": "icon",
|
5813
|
+
"type": {
|
5814
|
+
"text": "Icon | undefined"
|
5815
|
+
},
|
5816
|
+
"description": "If defined, set an icon",
|
5817
|
+
"fieldName": "icon",
|
5818
|
+
"expandedType": {
|
5819
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
5820
|
+
}
|
5821
|
+
},
|
5822
|
+
{
|
5823
|
+
"name": "icon-color",
|
5824
|
+
"type": {
|
5825
|
+
"text": "IconColor | undefined"
|
5826
|
+
},
|
5827
|
+
"description": "If defined, sets provided color on the icon",
|
5828
|
+
"fieldName": "iconColor",
|
5829
|
+
"expandedType": {
|
5830
|
+
"text": "'error' | 'info' | 'warning' | 'primary' | 'inverse' | 'emphasised' | 'secondary' | 'success' | undefined"
|
5831
|
+
}
|
5832
|
+
},
|
5833
|
+
{
|
5834
|
+
"name": "selected",
|
5835
|
+
"type": {
|
5836
|
+
"text": "boolean"
|
5837
|
+
},
|
5838
|
+
"default": "false",
|
5839
|
+
"description": "If true, sets the option as selected",
|
5840
|
+
"fieldName": "selected"
|
5841
|
+
},
|
5842
|
+
{
|
5843
|
+
"name": "short-label",
|
5844
|
+
"type": {
|
5845
|
+
"text": "string | undefined"
|
5846
|
+
},
|
5847
|
+
"description": "If defined, sets a short label",
|
5848
|
+
"fieldName": "shortLabel"
|
5849
|
+
},
|
5850
|
+
{
|
5851
|
+
"name": "value",
|
5852
|
+
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
5853
|
+
"fieldName": "value"
|
5965
5854
|
}
|
5966
5855
|
],
|
5967
5856
|
"superclass": {
|
5968
5857
|
"name": "SkfElement",
|
5969
|
-
"package": "@internal/components/skf-element"
|
5858
|
+
"package": "@internal/components/skf-element.js"
|
5970
5859
|
},
|
5971
|
-
"tagName": "skf-select-option
|
5860
|
+
"tagName": "skf-select-option",
|
5972
5861
|
"customElement": true
|
5973
5862
|
}
|
5974
5863
|
],
|
5975
5864
|
"exports": [
|
5976
5865
|
{
|
5977
5866
|
"kind": "js",
|
5978
|
-
"name": "
|
5867
|
+
"name": "SkfSelectOption",
|
5979
5868
|
"declaration": {
|
5980
|
-
"name": "
|
5981
|
-
"module": "src/components/select
|
5869
|
+
"name": "SkfSelectOption",
|
5870
|
+
"module": "src/components/select/select-option.component.ts"
|
5982
5871
|
}
|
5983
5872
|
}
|
5984
5873
|
],
|
5985
|
-
"typeDefinitionPath": "components/select
|
5874
|
+
"typeDefinitionPath": "components/select/select-option.d.ts"
|
5986
5875
|
},
|
5987
5876
|
{
|
5988
5877
|
"kind": "javascript-module",
|
5989
|
-
"path": "components/stepper
|
5878
|
+
"path": "components/stepper/stepper-item.js",
|
5990
5879
|
"declarations": [
|
5991
5880
|
{
|
5992
5881
|
"kind": "class",
|
@@ -6089,11 +5978,11 @@
|
|
6089
5978
|
"name": "SkfStepperItem",
|
6090
5979
|
"declaration": {
|
6091
5980
|
"name": "SkfStepperItem",
|
6092
|
-
"module": "src/components/stepper
|
5981
|
+
"module": "src/components/stepper/stepper-item.component.ts"
|
6093
5982
|
}
|
6094
5983
|
}
|
6095
5984
|
],
|
6096
|
-
"typeDefinitionPath": "components/stepper
|
5985
|
+
"typeDefinitionPath": "components/stepper/stepper-item.d.ts"
|
6097
5986
|
},
|
6098
5987
|
{
|
6099
5988
|
"kind": "javascript-module",
|
@@ -6118,7 +6007,7 @@
|
|
6118
6007
|
},
|
6119
6008
|
"default": "-1",
|
6120
6009
|
"description": "Sets the active item",
|
6121
|
-
"attribute": "
|
6010
|
+
"attribute": "active-index"
|
6122
6011
|
},
|
6123
6012
|
{
|
6124
6013
|
"kind": "field",
|
@@ -6133,13 +6022,16 @@
|
|
6133
6022
|
],
|
6134
6023
|
"events": [
|
6135
6024
|
{
|
6025
|
+
"type": {
|
6026
|
+
"text": "CustomEvent"
|
6027
|
+
},
|
6136
6028
|
"description": "Dispatched when the stepper item is selected",
|
6137
6029
|
"name": "skf-stepper-item-select"
|
6138
6030
|
}
|
6139
6031
|
],
|
6140
6032
|
"attributes": [
|
6141
6033
|
{
|
6142
|
-
"name": "
|
6034
|
+
"name": "active-index",
|
6143
6035
|
"type": {
|
6144
6036
|
"text": "number"
|
6145
6037
|
},
|
@@ -6705,14 +6597,6 @@
|
|
6705
6597
|
}
|
6706
6598
|
],
|
6707
6599
|
"members": [
|
6708
|
-
{
|
6709
|
-
"kind": "field",
|
6710
|
-
"name": "customError",
|
6711
|
-
"type": {
|
6712
|
-
"text": "string | undefined"
|
6713
|
-
},
|
6714
|
-
"privacy": "private"
|
6715
|
-
},
|
6716
6600
|
{
|
6717
6601
|
"kind": "field",
|
6718
6602
|
"name": "cols",
|
@@ -6733,8 +6617,9 @@
|
|
6733
6617
|
"kind": "field",
|
6734
6618
|
"name": "debug",
|
6735
6619
|
"type": {
|
6736
|
-
"text": "boolean
|
6620
|
+
"text": "boolean"
|
6737
6621
|
},
|
6622
|
+
"default": "false",
|
6738
6623
|
"description": "If true, outputs helping hints in console",
|
6739
6624
|
"attribute": "debug"
|
6740
6625
|
},
|
@@ -6742,8 +6627,9 @@
|
|
6742
6627
|
"kind": "field",
|
6743
6628
|
"name": "hideLabel",
|
6744
6629
|
"type": {
|
6745
|
-
"text": "boolean
|
6630
|
+
"text": "boolean"
|
6746
6631
|
},
|
6632
|
+
"default": "false",
|
6747
6633
|
"description": "If true, hides the label visually",
|
6748
6634
|
"attribute": "hide-label"
|
6749
6635
|
},
|
@@ -6805,8 +6691,9 @@
|
|
6805
6691
|
"kind": "field",
|
6806
6692
|
"name": "readonly",
|
6807
6693
|
"type": {
|
6808
|
-
"text": "boolean
|
6694
|
+
"text": "boolean"
|
6809
6695
|
},
|
6696
|
+
"default": "false",
|
6810
6697
|
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
6811
6698
|
"attribute": "readonly"
|
6812
6699
|
},
|
@@ -6832,7 +6719,7 @@
|
|
6832
6719
|
"kind": "field",
|
6833
6720
|
"name": "severity",
|
6834
6721
|
"type": {
|
6835
|
-
"text": "
|
6722
|
+
"text": "FormFieldSeverity | undefined"
|
6836
6723
|
},
|
6837
6724
|
"description": "If defined, displays provided severity state",
|
6838
6725
|
"attribute": "severity"
|
@@ -6841,8 +6728,9 @@
|
|
6841
6728
|
"kind": "field",
|
6842
6729
|
"name": "showValid",
|
6843
6730
|
"type": {
|
6844
|
-
"text": "boolean
|
6731
|
+
"text": "boolean"
|
6845
6732
|
},
|
6733
|
+
"default": "false",
|
6846
6734
|
"description": "If true, displays valid state after interaction",
|
6847
6735
|
"attribute": "show-valid"
|
6848
6736
|
},
|
@@ -6894,14 +6782,16 @@
|
|
6894
6782
|
"text": "boolean"
|
6895
6783
|
},
|
6896
6784
|
"description": "If true, sets disabled state",
|
6897
|
-
"name": "disabled"
|
6785
|
+
"name": "disabled",
|
6786
|
+
"default": "false"
|
6898
6787
|
},
|
6899
6788
|
{
|
6900
6789
|
"type": {
|
6901
6790
|
"text": "boolean"
|
6902
6791
|
},
|
6903
6792
|
"description": "If true, value is required or must be checked for the form to be submittable",
|
6904
|
-
"name": "required"
|
6793
|
+
"name": "required",
|
6794
|
+
"default": "false"
|
6905
6795
|
},
|
6906
6796
|
{
|
6907
6797
|
"name": "cols",
|
@@ -6919,16 +6809,18 @@
|
|
6919
6809
|
{
|
6920
6810
|
"name": "debug",
|
6921
6811
|
"type": {
|
6922
|
-
"text": "boolean
|
6812
|
+
"text": "boolean"
|
6923
6813
|
},
|
6814
|
+
"default": "false",
|
6924
6815
|
"description": "If true, outputs helping hints in console",
|
6925
6816
|
"fieldName": "debug"
|
6926
6817
|
},
|
6927
6818
|
{
|
6928
6819
|
"name": "hide-label",
|
6929
6820
|
"type": {
|
6930
|
-
"text": "boolean
|
6821
|
+
"text": "boolean"
|
6931
6822
|
},
|
6823
|
+
"default": "false",
|
6932
6824
|
"description": "If true, hides the label visually",
|
6933
6825
|
"fieldName": "hideLabel"
|
6934
6826
|
},
|
@@ -6983,8 +6875,9 @@
|
|
6983
6875
|
{
|
6984
6876
|
"name": "readonly",
|
6985
6877
|
"type": {
|
6986
|
-
"text": "boolean
|
6878
|
+
"text": "boolean"
|
6987
6879
|
},
|
6880
|
+
"default": "false",
|
6988
6881
|
"description": "If true, makes the element not mutable, meaning the user can not edit the control",
|
6989
6882
|
"fieldName": "readonly"
|
6990
6883
|
},
|
@@ -7007,7 +6900,7 @@
|
|
7007
6900
|
{
|
7008
6901
|
"name": "severity",
|
7009
6902
|
"type": {
|
7010
|
-
"text": "
|
6903
|
+
"text": "FormFieldSeverity | undefined"
|
7011
6904
|
},
|
7012
6905
|
"description": "If defined, displays provided severity state",
|
7013
6906
|
"fieldName": "severity"
|
@@ -7015,8 +6908,9 @@
|
|
7015
6908
|
{
|
7016
6909
|
"name": "show-valid",
|
7017
6910
|
"type": {
|
7018
|
-
"text": "boolean
|
6911
|
+
"text": "boolean"
|
7019
6912
|
},
|
6913
|
+
"default": "false",
|
7020
6914
|
"description": "If true, displays valid state after interaction",
|
7021
6915
|
"fieldName": "showValid"
|
7022
6916
|
},
|
@@ -7070,7 +6964,7 @@
|
|
7070
6964
|
},
|
7071
6965
|
{
|
7072
6966
|
"kind": "javascript-module",
|
7073
|
-
"path": "src/components/toast
|
6967
|
+
"path": "src/components/toast/toast-item.component.ts",
|
7074
6968
|
"declarations": [
|
7075
6969
|
{
|
7076
6970
|
"kind": "class",
|
@@ -7182,11 +7076,11 @@
|
|
7182
7076
|
"kind": "field",
|
7183
7077
|
"name": "icon",
|
7184
7078
|
"type": {
|
7185
|
-
"text": "
|
7079
|
+
"text": "Icon | undefined"
|
7186
7080
|
},
|
7187
7081
|
"description": "If defined, displays leading icon",
|
7188
7082
|
"attribute": "icon",
|
7189
|
-
"
|
7083
|
+
"expandedType": {
|
7190
7084
|
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
7191
7085
|
},
|
7192
7086
|
"inheritedFrom": {
|
@@ -7213,13 +7107,13 @@
|
|
7213
7107
|
"kind": "field",
|
7214
7108
|
"name": "severity",
|
7215
7109
|
"type": {
|
7216
|
-
"text": "
|
7110
|
+
"text": "Severity | undefined"
|
7217
7111
|
},
|
7218
7112
|
"description": "If defined, gives the supplied appearance",
|
7219
7113
|
"attribute": "severity",
|
7220
7114
|
"reflects": true,
|
7221
|
-
"
|
7222
|
-
"text": "'error' | 'info' | 'warning' | 'success' |
|
7115
|
+
"expandedType": {
|
7116
|
+
"text": "'error' | 'info' | 'warning' | 'success' | undefined"
|
7223
7117
|
},
|
7224
7118
|
"inheritedFrom": {
|
7225
7119
|
"name": "SkfAlert",
|
@@ -7252,11 +7146,11 @@
|
|
7252
7146
|
{
|
7253
7147
|
"name": "icon",
|
7254
7148
|
"type": {
|
7255
|
-
"text": "
|
7149
|
+
"text": "Icon | undefined"
|
7256
7150
|
},
|
7257
7151
|
"description": "If defined, displays leading icon",
|
7258
7152
|
"fieldName": "icon",
|
7259
|
-
"
|
7153
|
+
"expandedType": {
|
7260
7154
|
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
7261
7155
|
},
|
7262
7156
|
"inheritedFrom": {
|
@@ -7280,12 +7174,12 @@
|
|
7280
7174
|
{
|
7281
7175
|
"name": "severity",
|
7282
7176
|
"type": {
|
7283
|
-
"text": "
|
7177
|
+
"text": "Severity | undefined"
|
7284
7178
|
},
|
7285
7179
|
"description": "If defined, gives the supplied appearance",
|
7286
7180
|
"fieldName": "severity",
|
7287
|
-
"
|
7288
|
-
"text": "'error' | 'info' | 'warning' | 'success' |
|
7181
|
+
"expandedType": {
|
7182
|
+
"text": "'error' | 'info' | 'warning' | 'success' | undefined"
|
7289
7183
|
},
|
7290
7184
|
"inheritedFrom": {
|
7291
7185
|
"name": "SkfAlert",
|
@@ -7333,14 +7227,14 @@
|
|
7333
7227
|
"name": "SkfToastItem",
|
7334
7228
|
"declaration": {
|
7335
7229
|
"name": "SkfToastItem",
|
7336
|
-
"module": "src/components/toast
|
7230
|
+
"module": "src/components/toast/toast-item.component.ts"
|
7337
7231
|
}
|
7338
7232
|
}
|
7339
7233
|
]
|
7340
7234
|
},
|
7341
7235
|
{
|
7342
7236
|
"kind": "javascript-module",
|
7343
|
-
"path": "components/toast
|
7237
|
+
"path": "components/toast/toast-wrapper.js",
|
7344
7238
|
"declarations": [
|
7345
7239
|
{
|
7346
7240
|
"kind": "class",
|
@@ -7388,11 +7282,11 @@
|
|
7388
7282
|
"name": "SkfToastWrapper",
|
7389
7283
|
"declaration": {
|
7390
7284
|
"name": "SkfToastWrapper",
|
7391
|
-
"module": "src/components/toast
|
7285
|
+
"module": "src/components/toast/toast-wrapper.component.ts"
|
7392
7286
|
}
|
7393
7287
|
}
|
7394
7288
|
],
|
7395
|
-
"typeDefinitionPath": "components/toast
|
7289
|
+
"typeDefinitionPath": "components/toast/toast-wrapper.d.ts"
|
7396
7290
|
},
|
7397
7291
|
{
|
7398
7292
|
"kind": "javascript-module",
|
@@ -7422,16 +7316,19 @@
|
|
7422
7316
|
"kind": "field",
|
7423
7317
|
"name": "icon",
|
7424
7318
|
"type": {
|
7425
|
-
"text": "
|
7319
|
+
"text": "Icon | undefined"
|
7426
7320
|
},
|
7427
7321
|
"description": "If defined, displays leading icon",
|
7428
|
-
"attribute": "icon"
|
7322
|
+
"attribute": "icon",
|
7323
|
+
"expandedType": {
|
7324
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
7325
|
+
}
|
7429
7326
|
},
|
7430
7327
|
{
|
7431
7328
|
"kind": "field",
|
7432
7329
|
"name": "persistent",
|
7433
7330
|
"type": {
|
7434
|
-
"text": "
|
7331
|
+
"text": "boolean"
|
7435
7332
|
},
|
7436
7333
|
"default": "false",
|
7437
7334
|
"description": "If true, renders with an close button and sets aria-role to `status`",
|
@@ -7441,11 +7338,14 @@
|
|
7441
7338
|
"kind": "field",
|
7442
7339
|
"name": "severity",
|
7443
7340
|
"type": {
|
7444
|
-
"text": "
|
7341
|
+
"text": "Severity"
|
7445
7342
|
},
|
7446
7343
|
"default": "'info'",
|
7447
7344
|
"description": "If defined, gives the supplied appearance",
|
7448
|
-
"attribute": "severity"
|
7345
|
+
"attribute": "severity",
|
7346
|
+
"expandedType": {
|
7347
|
+
"text": "'error' | 'info' | 'warning' | 'success'"
|
7348
|
+
}
|
7449
7349
|
},
|
7450
7350
|
{
|
7451
7351
|
"kind": "field",
|
@@ -7479,15 +7379,18 @@
|
|
7479
7379
|
{
|
7480
7380
|
"name": "icon",
|
7481
7381
|
"type": {
|
7482
|
-
"text": "
|
7382
|
+
"text": "Icon | undefined"
|
7483
7383
|
},
|
7484
7384
|
"description": "If defined, displays leading icon",
|
7485
|
-
"fieldName": "icon"
|
7385
|
+
"fieldName": "icon",
|
7386
|
+
"expandedType": {
|
7387
|
+
"text": "'addCircleOutline' | 'addCircle' | 'addPlus' | 'arrowBackIos' | 'arrowBack' | 'arrowDown' | 'arrowForwardIos' | 'arrowForward' | 'arrowLeft' | 'arrowRight' | 'arrowUpDown' | 'arrowUp' | 'article' | 'asset' | 'attachment' | 'bandCursor' | 'bands' | 'batteryEmpty' | 'batteryFull' | 'batteryLow' | 'bearingFault' | 'bluetoothDisabled' | 'bluetooth' | 'book' | 'bookmarkOutline' | 'bookmark' | 'calculator' | 'calendarBusy' | 'calendarCheck' | 'calendarEmpty' | 'calendarMonth' | 'calendarReccuring' | 'call' | 'caretDown' | 'caretUpDown' | 'caretUp' | 'chat' | 'checkCircleOutline' | 'checkCircle' | 'checkSmall' | 'check' | 'chevronDownUp' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUpDown' | 'chevronUp' | 'chip' | 'circleStatus' | 'closeAll' | 'closeAlt' | 'close' | 'columnGraph' | 'comment' | 'connection0' | 'connection1' | 'connection2' | 'connection3' | 'connection4' | 'contentPaste' | 'copy' | 'cpmCyclesPerMinute' | 'dangerOutline' | 'danger' | 'defectFrequenciesAlt' | 'defectFrequencies' | 'deleteOutline' | 'delete' | 'devices' | 'directions' | 'doubleChevronLeft' | 'doubleChevronRight' | 'downloadDone' | 'download' | 'draftOutline' | 'draft' | 'dragDrop' | 'drop' | 'duplicate' | 'editOutline' | 'edit' | 'emailOutline' | 'emailPdf' | 'email' | 'errorOutline' | 'error' | 'exclamation' | 'facebook' | 'filterOutline' | 'filter' | 'findReplace' | 'forbidden' | 'frequencyHz' | 'fullScreen' | 'fullscreenExit' | 'functionalGroup' | 'hamburgerMenu' | 'harmonicCursor' | 'heatmap' | 'hierarchy' | 'history' | 'homeOutline' | 'home' | 'hourglassOutline' | 'hourglass' | 'image' | 'imx' | 'infoOutline' | 'info' | 'instagram' | 'integration' | 'iosShare' | 'kebabMore' | 'language' | 'lightbulbOutline' | 'lightbulb' | 'link' | 'linkedin' | 'listGroup' | 'list' | 'locationPin' | 'lockOutline' | 'lock' | 'logOut' | 'login' | 'meatballsMoreCircle' | 'meatballsMore' | 'microphone' | 'nearMe' | 'noData' | 'notificationsBellOutline' | 'notificationsBell' | 'o' | 'offer' | 'openInNew' | 'overlaysBaseline' | 'pan360' | 'paper' | 'pause' | 'pdfOutline' | 'pdf' | 'person' | 'photoCameraOutline' | 'photoCamera' | 'pieChart' | 'pinOutline' | 'pin' | 'play' | 'powerOff' | 'printOutline' | 'print' | 'privacyPolicyOutline' | 'privacyPolicy' | 'proCollect' | 'recAction' | 'refresh' | 'removeMinus' | 'reorder' | 'reply' | 'report' | 'rewakableRoute' | 'route' | 'search' | 'sendOutline' | 'send' | 'sensorAlt' | 'sensor' | 'settingsOutline' | 'settings' | 'share' | 'shoppingCart' | 'sidebandCursor' | 'singleCursor' | 'skfBearing' | 'spectrum' | 'starOutline' | 'star' | 'stop' | 'sync' | 'time' | 'timewave' | 'translate' | 'trend' | 'trendingUp' | 'twitter' | 'undo' | 'unknownDiamondOutline' | 'unknownDiamond' | 'unknownOutline' | 'unknown' | 'unlink' | 'unlockOutline' | 'unlock' | 'unscheduledAction' | 'upload' | 'vibrationAlt' | 'vibration' | 'view3D' | 'viewFull' | 'viewHorizontal' | 'viewVertical' | 'visibilityOffOutline' | 'visibilityOff' | 'visibilityOutline' | 'visibility' | 'warningDiamondOutline' | 'warningDiamond' | 'warningOutline' | 'warning' | 'youtube' | 'zoomIn' | 'zoomOut' | undefined"
|
7388
|
+
}
|
7486
7389
|
},
|
7487
7390
|
{
|
7488
7391
|
"name": "persistent",
|
7489
7392
|
"type": {
|
7490
|
-
"text": "
|
7393
|
+
"text": "boolean"
|
7491
7394
|
},
|
7492
7395
|
"default": "false",
|
7493
7396
|
"description": "If true, renders with an close button and sets aria-role to `status`",
|
@@ -7496,11 +7399,14 @@
|
|
7496
7399
|
{
|
7497
7400
|
"name": "severity",
|
7498
7401
|
"type": {
|
7499
|
-
"text": "
|
7402
|
+
"text": "Severity"
|
7500
7403
|
},
|
7501
7404
|
"default": "'info'",
|
7502
7405
|
"description": "If defined, gives the supplied appearance",
|
7503
|
-
"fieldName": "severity"
|
7406
|
+
"fieldName": "severity",
|
7407
|
+
"expandedType": {
|
7408
|
+
"text": "'error' | 'info' | 'warning' | 'success'"
|
7409
|
+
}
|
7504
7410
|
},
|
7505
7411
|
{
|
7506
7412
|
"name": "timer",
|
@@ -7555,6 +7461,14 @@
|
|
7555
7461
|
}
|
7556
7462
|
],
|
7557
7463
|
"members": [
|
7464
|
+
{
|
7465
|
+
"kind": "method",
|
7466
|
+
"name": "openExtended"
|
7467
|
+
},
|
7468
|
+
{
|
7469
|
+
"kind": "method",
|
7470
|
+
"name": "closeExtended"
|
7471
|
+
},
|
7558
7472
|
{
|
7559
7473
|
"kind": "method",
|
7560
7474
|
"name": "addEventListeners",
|
@@ -7573,21 +7487,12 @@
|
|
7573
7487
|
]
|
7574
7488
|
},
|
7575
7489
|
{
|
7576
|
-
"kind": "
|
7577
|
-
"name": "
|
7578
|
-
"
|
7579
|
-
"
|
7580
|
-
"text": "void"
|
7581
|
-
}
|
7490
|
+
"kind": "field",
|
7491
|
+
"name": "role",
|
7492
|
+
"type": {
|
7493
|
+
"text": "string"
|
7582
7494
|
},
|
7583
|
-
"
|
7584
|
-
{
|
7585
|
-
"name": "$element",
|
7586
|
-
"type": {
|
7587
|
-
"text": "HTMLElement | Element"
|
7588
|
-
}
|
7589
|
-
}
|
7590
|
-
]
|
7495
|
+
"default": "'tooltip'"
|
7591
7496
|
},
|
7592
7497
|
{
|
7593
7498
|
"kind": "field",
|
@@ -7604,6 +7509,14 @@
|
|
7604
7509
|
"text": "string"
|
7605
7510
|
},
|
7606
7511
|
"default": "'top'"
|
7512
|
+
},
|
7513
|
+
{
|
7514
|
+
"kind": "field",
|
7515
|
+
"name": "variant",
|
7516
|
+
"type": {
|
7517
|
+
"text": "string"
|
7518
|
+
},
|
7519
|
+
"default": "'tooltip'"
|
7607
7520
|
}
|
7608
7521
|
],
|
7609
7522
|
"events": [
|