@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
@@ -4,22 +4,12 @@
|
|
4
4
|
"tags": [
|
5
5
|
{
|
6
6
|
"name": "skf-icon",
|
7
|
-
"description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text
|
7
|
+
"description": "The `<skf-icon>` component is used to clarify interface elements. When used, should always be paired with (possibly invisible) text.\n---\n",
|
8
8
|
"attributes": [
|
9
9
|
{
|
10
10
|
"name": "color",
|
11
11
|
"description": "Sets the color of the icon",
|
12
|
-
"values": [
|
13
|
-
{ "name": "primary" },
|
14
|
-
{ "name": "inverse" },
|
15
|
-
{ "name": "emphasised" },
|
16
|
-
{ "name": "secondary" },
|
17
|
-
{ "name": "success" },
|
18
|
-
{ "name": "info" },
|
19
|
-
{ "name": "warning" },
|
20
|
-
{ "name": "error" },
|
21
|
-
{ "name": "alert" }
|
22
|
-
]
|
12
|
+
"values": [{ "name": "IconColor" }]
|
23
13
|
},
|
24
14
|
{
|
25
15
|
"name": "label",
|
@@ -29,257 +19,39 @@
|
|
29
19
|
{
|
30
20
|
"name": "name",
|
31
21
|
"description": "Name of the icon to display",
|
32
|
-
"values": [
|
33
|
-
{ "name": "addCircleOutline" },
|
34
|
-
{ "name": "addCircle" },
|
35
|
-
{ "name": "addPlus" },
|
36
|
-
{ "name": "arrowBackIos" },
|
37
|
-
{ "name": "arrowBack" },
|
38
|
-
{ "name": "arrowDown" },
|
39
|
-
{ "name": "arrowForwardIos" },
|
40
|
-
{ "name": "arrowForward" },
|
41
|
-
{ "name": "arrowLeft" },
|
42
|
-
{ "name": "arrowRight" },
|
43
|
-
{ "name": "arrowUpDown" },
|
44
|
-
{ "name": "arrowUp" },
|
45
|
-
{ "name": "article" },
|
46
|
-
{ "name": "asset" },
|
47
|
-
{ "name": "attachment" },
|
48
|
-
{ "name": "bandCursor" },
|
49
|
-
{ "name": "bands" },
|
50
|
-
{ "name": "batteryEmpty" },
|
51
|
-
{ "name": "batteryFull" },
|
52
|
-
{ "name": "batteryLow" },
|
53
|
-
{ "name": "bearingFault" },
|
54
|
-
{ "name": "bluetoothDisabled" },
|
55
|
-
{ "name": "bluetooth" },
|
56
|
-
{ "name": "book" },
|
57
|
-
{ "name": "bookmarkOutline" },
|
58
|
-
{ "name": "bookmark" },
|
59
|
-
{ "name": "calculator" },
|
60
|
-
{ "name": "calendarBusy" },
|
61
|
-
{ "name": "calendarCheck" },
|
62
|
-
{ "name": "calendarEmpty" },
|
63
|
-
{ "name": "calendarMonth" },
|
64
|
-
{ "name": "calendarReccuring" },
|
65
|
-
{ "name": "call" },
|
66
|
-
{ "name": "caretDown" },
|
67
|
-
{ "name": "caretUpDown" },
|
68
|
-
{ "name": "caretUp" },
|
69
|
-
{ "name": "chat" },
|
70
|
-
{ "name": "checkCircleOutline" },
|
71
|
-
{ "name": "checkCircle" },
|
72
|
-
{ "name": "checkSmall" },
|
73
|
-
{ "name": "check" },
|
74
|
-
{ "name": "chevronDownUp" },
|
75
|
-
{ "name": "chevronDown" },
|
76
|
-
{ "name": "chevronLeft" },
|
77
|
-
{ "name": "chevronRight" },
|
78
|
-
{ "name": "chevronUpDown" },
|
79
|
-
{ "name": "chevronUp" },
|
80
|
-
{ "name": "chip" },
|
81
|
-
{ "name": "circleStatus" },
|
82
|
-
{ "name": "closeAll" },
|
83
|
-
{ "name": "closeAlt" },
|
84
|
-
{ "name": "close" },
|
85
|
-
{ "name": "columnGraph" },
|
86
|
-
{ "name": "comment" },
|
87
|
-
{ "name": "connection0" },
|
88
|
-
{ "name": "connection1" },
|
89
|
-
{ "name": "connection2" },
|
90
|
-
{ "name": "connection3" },
|
91
|
-
{ "name": "connection4" },
|
92
|
-
{ "name": "contentPaste" },
|
93
|
-
{ "name": "copy" },
|
94
|
-
{ "name": "cpmCyclesPerMinute" },
|
95
|
-
{ "name": "dangerOutline" },
|
96
|
-
{ "name": "danger" },
|
97
|
-
{ "name": "defectFrequenciesAlt" },
|
98
|
-
{ "name": "defectFrequencies" },
|
99
|
-
{ "name": "deleteOutline" },
|
100
|
-
{ "name": "delete" },
|
101
|
-
{ "name": "devices" },
|
102
|
-
{ "name": "directions" },
|
103
|
-
{ "name": "doubleChevronLeft" },
|
104
|
-
{ "name": "doubleChevronRight" },
|
105
|
-
{ "name": "downloadDone" },
|
106
|
-
{ "name": "download" },
|
107
|
-
{ "name": "draftOutline" },
|
108
|
-
{ "name": "draft" },
|
109
|
-
{ "name": "dragDrop" },
|
110
|
-
{ "name": "drop" },
|
111
|
-
{ "name": "duplicate" },
|
112
|
-
{ "name": "editOutline" },
|
113
|
-
{ "name": "edit" },
|
114
|
-
{ "name": "emailOutline" },
|
115
|
-
{ "name": "emailPdf" },
|
116
|
-
{ "name": "email" },
|
117
|
-
{ "name": "errorOutline" },
|
118
|
-
{ "name": "error" },
|
119
|
-
{ "name": "exclamation" },
|
120
|
-
{ "name": "facebook" },
|
121
|
-
{ "name": "filterOutline" },
|
122
|
-
{ "name": "filter" },
|
123
|
-
{ "name": "findReplace" },
|
124
|
-
{ "name": "forbidden" },
|
125
|
-
{ "name": "frequencyHz" },
|
126
|
-
{ "name": "fullScreen" },
|
127
|
-
{ "name": "fullscreenExit" },
|
128
|
-
{ "name": "functionalGroup" },
|
129
|
-
{ "name": "hamburgerMenu" },
|
130
|
-
{ "name": "harmonicCursor" },
|
131
|
-
{ "name": "heatmap" },
|
132
|
-
{ "name": "hierarchy" },
|
133
|
-
{ "name": "history" },
|
134
|
-
{ "name": "homeOutline" },
|
135
|
-
{ "name": "home" },
|
136
|
-
{ "name": "hourglassOutline" },
|
137
|
-
{ "name": "hourglass" },
|
138
|
-
{ "name": "image" },
|
139
|
-
{ "name": "imx" },
|
140
|
-
{ "name": "infoOutline" },
|
141
|
-
{ "name": "info" },
|
142
|
-
{ "name": "instagram" },
|
143
|
-
{ "name": "integration" },
|
144
|
-
{ "name": "iosShare" },
|
145
|
-
{ "name": "kebabMore" },
|
146
|
-
{ "name": "language" },
|
147
|
-
{ "name": "lightbulbOutline" },
|
148
|
-
{ "name": "lightbulb" },
|
149
|
-
{ "name": "link" },
|
150
|
-
{ "name": "linkedin" },
|
151
|
-
{ "name": "listGroup" },
|
152
|
-
{ "name": "list" },
|
153
|
-
{ "name": "locationPin" },
|
154
|
-
{ "name": "lockOutline" },
|
155
|
-
{ "name": "lock" },
|
156
|
-
{ "name": "logOut" },
|
157
|
-
{ "name": "login" },
|
158
|
-
{ "name": "meatballsMoreCircle" },
|
159
|
-
{ "name": "meatballsMore" },
|
160
|
-
{ "name": "microphone" },
|
161
|
-
{ "name": "nearMe" },
|
162
|
-
{ "name": "noData" },
|
163
|
-
{ "name": "notificationsBellOutline" },
|
164
|
-
{ "name": "notificationsBell" },
|
165
|
-
{ "name": "o" },
|
166
|
-
{ "name": "offer" },
|
167
|
-
{ "name": "openInNew" },
|
168
|
-
{ "name": "overlaysBaseline" },
|
169
|
-
{ "name": "pan360" },
|
170
|
-
{ "name": "paper" },
|
171
|
-
{ "name": "pause" },
|
172
|
-
{ "name": "pdfOutline" },
|
173
|
-
{ "name": "pdf" },
|
174
|
-
{ "name": "person" },
|
175
|
-
{ "name": "photoCameraOutline" },
|
176
|
-
{ "name": "photoCamera" },
|
177
|
-
{ "name": "pieChart" },
|
178
|
-
{ "name": "pinOutline" },
|
179
|
-
{ "name": "pin" },
|
180
|
-
{ "name": "play" },
|
181
|
-
{ "name": "powerOff" },
|
182
|
-
{ "name": "printOutline" },
|
183
|
-
{ "name": "print" },
|
184
|
-
{ "name": "privacyPolicyOutline" },
|
185
|
-
{ "name": "privacyPolicy" },
|
186
|
-
{ "name": "proCollect" },
|
187
|
-
{ "name": "recAction" },
|
188
|
-
{ "name": "refresh" },
|
189
|
-
{ "name": "removeMinus" },
|
190
|
-
{ "name": "reorder" },
|
191
|
-
{ "name": "reply" },
|
192
|
-
{ "name": "report" },
|
193
|
-
{ "name": "rewakableRoute" },
|
194
|
-
{ "name": "route" },
|
195
|
-
{ "name": "search" },
|
196
|
-
{ "name": "sendOutline" },
|
197
|
-
{ "name": "send" },
|
198
|
-
{ "name": "sensorAlt" },
|
199
|
-
{ "name": "sensor" },
|
200
|
-
{ "name": "settingsOutline" },
|
201
|
-
{ "name": "settings" },
|
202
|
-
{ "name": "share" },
|
203
|
-
{ "name": "shoppingCart" },
|
204
|
-
{ "name": "sidebandCursor" },
|
205
|
-
{ "name": "singleCursor" },
|
206
|
-
{ "name": "skfBearing" },
|
207
|
-
{ "name": "spectrum" },
|
208
|
-
{ "name": "starOutline" },
|
209
|
-
{ "name": "star" },
|
210
|
-
{ "name": "stop" },
|
211
|
-
{ "name": "sync" },
|
212
|
-
{ "name": "time" },
|
213
|
-
{ "name": "timewave" },
|
214
|
-
{ "name": "translate" },
|
215
|
-
{ "name": "trend" },
|
216
|
-
{ "name": "trendingUp" },
|
217
|
-
{ "name": "twitter" },
|
218
|
-
{ "name": "undo" },
|
219
|
-
{ "name": "unknownDiamondOutline" },
|
220
|
-
{ "name": "unknownDiamond" },
|
221
|
-
{ "name": "unknownOutline" },
|
222
|
-
{ "name": "unknown" },
|
223
|
-
{ "name": "unlink" },
|
224
|
-
{ "name": "unlockOutline" },
|
225
|
-
{ "name": "unlock" },
|
226
|
-
{ "name": "unscheduledAction" },
|
227
|
-
{ "name": "upload" },
|
228
|
-
{ "name": "vibrationAlt" },
|
229
|
-
{ "name": "vibration" },
|
230
|
-
{ "name": "view3D" },
|
231
|
-
{ "name": "viewFull" },
|
232
|
-
{ "name": "viewHorizontal" },
|
233
|
-
{ "name": "viewVertical" },
|
234
|
-
{ "name": "visibilityOffOutline" },
|
235
|
-
{ "name": "visibilityOff" },
|
236
|
-
{ "name": "visibilityOutline" },
|
237
|
-
{ "name": "visibility" },
|
238
|
-
{ "name": "warningDiamondOutline" },
|
239
|
-
{ "name": "warningDiamond" },
|
240
|
-
{ "name": "warningOutline" },
|
241
|
-
{ "name": "warning" },
|
242
|
-
{ "name": "youtube" },
|
243
|
-
{ "name": "zoomIn" },
|
244
|
-
{ "name": "zoomOut" }
|
245
|
-
]
|
22
|
+
"values": [{ "name": "Icon" }]
|
246
23
|
},
|
247
24
|
{
|
248
25
|
"name": "size",
|
249
26
|
"description": "Size of the icon",
|
250
|
-
"values": [
|
251
|
-
{ "name": "xs" },
|
252
|
-
{ "name": "sm" },
|
253
|
-
{ "name": "md" },
|
254
|
-
{ "name": "lg" }
|
255
|
-
]
|
27
|
+
"values": [{ "name": "SkfIconSize" }]
|
256
28
|
}
|
257
29
|
],
|
258
30
|
"references": []
|
259
31
|
},
|
260
32
|
{
|
261
|
-
"name": "skf-
|
262
|
-
"description": "The `<skf-
|
33
|
+
"name": "skf-accordion-item",
|
34
|
+
"description": "The `<skf-accordion-item>` is used in conjunction with the `<skf-accordion>` component\n---\n\n\n### **Events:**\n - **skf-accordion-item-toggle** - Event emitted when toggled\n\n### **Methods:**\n - **setClose()** - Class method as alternative to manipulate attribute\n- **setOpen()** - Class method as alternative to manipulate attribute\n\n### **Slots:**\n - _default_ - Main content",
|
263
35
|
"attributes": [
|
264
36
|
{
|
265
37
|
"name": "animated",
|
266
|
-
"description": "If true, will animate the expand/
|
38
|
+
"description": "If true, will animate the expand/accordion-item state",
|
267
39
|
"values": []
|
268
40
|
},
|
269
41
|
{
|
270
42
|
"name": "expanded",
|
271
|
-
"description": "If true, will set the
|
43
|
+
"description": "If true, will set the accordion-item to be expanded by default",
|
272
44
|
"values": []
|
273
45
|
},
|
274
46
|
{
|
275
47
|
"name": "heading",
|
276
|
-
"description": "Heading for the
|
48
|
+
"description": "Heading for the accordion-item",
|
277
49
|
"values": []
|
278
50
|
},
|
279
51
|
{
|
280
52
|
"name": "heading-as",
|
281
53
|
"description": "Defines which heading element will be rendered",
|
282
|
-
"values": [{ "name": "
|
54
|
+
"values": [{ "name": "SkfAccordionItemHeadingType" }]
|
283
55
|
},
|
284
56
|
{
|
285
57
|
"name": "small",
|
@@ -288,7 +60,7 @@
|
|
288
60
|
},
|
289
61
|
{
|
290
62
|
"name": "truncate",
|
291
|
-
"description": "If true, will truncate the heading in
|
63
|
+
"description": "If true, will truncate the heading in accordion-item state",
|
292
64
|
"values": []
|
293
65
|
}
|
294
66
|
],
|
@@ -296,7 +68,7 @@
|
|
296
68
|
},
|
297
69
|
{
|
298
70
|
"name": "skf-accordion",
|
299
|
-
"description": "The `<skf-accordion>` component consists of
|
71
|
+
"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\n---\n\n\n### **Slots:**\n - _default_ - Expects one or more <skf-accordion-item> element(s)",
|
300
72
|
"attributes": [
|
301
73
|
{
|
302
74
|
"name": "animated",
|
@@ -306,12 +78,7 @@
|
|
306
78
|
{
|
307
79
|
"name": "heading-as",
|
308
80
|
"description": "Defines which heading element will be rendered",
|
309
|
-
"values": [
|
310
|
-
{ "name": "h1" },
|
311
|
-
{ "name": "h2" },
|
312
|
-
{ "name": "h3" },
|
313
|
-
{ "name": "h4" }
|
314
|
-
]
|
81
|
+
"values": [{ "name": "SkfAccordionItemHeadingType" }]
|
315
82
|
},
|
316
83
|
{
|
317
84
|
"name": "gap",
|
@@ -338,7 +105,7 @@
|
|
338
105
|
},
|
339
106
|
{
|
340
107
|
"name": "skf-alert",
|
341
|
-
"description": "The `<skf-alert>` is a type of notification that appears in-line\n---\n\n\n### **Events:**\n - **skf-alert-close** - Fires when the close button is clicked\n\n### **Slots:**\n - _default_ - Alert message. **Notice!** See design principles for approved content\n- **link** - Slot for the link",
|
108
|
+
"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\n---\n\n\n### **Events:**\n - **skf-alert-close** - Fires when the close button is clicked\n\n### **Slots:**\n - _default_ - Alert message. **Notice!** See design principles for approved content\n- **link** - Slot for the link",
|
342
109
|
"attributes": [
|
343
110
|
{
|
344
111
|
"name": "button-label",
|
@@ -348,7 +115,7 @@
|
|
348
115
|
{
|
349
116
|
"name": "icon",
|
350
117
|
"description": "If defined, displays leading icon",
|
351
|
-
"values": [{ "name": "
|
118
|
+
"values": [{ "name": "Icon" }]
|
352
119
|
},
|
353
120
|
{
|
354
121
|
"name": "persistent",
|
@@ -358,7 +125,7 @@
|
|
358
125
|
{
|
359
126
|
"name": "severity",
|
360
127
|
"description": "If defined, gives the supplied appearance",
|
361
|
-
"values": [{ "name": "
|
128
|
+
"values": [{ "name": "Severity" }]
|
362
129
|
}
|
363
130
|
],
|
364
131
|
"references": []
|
@@ -416,7 +183,7 @@
|
|
416
183
|
},
|
417
184
|
{
|
418
185
|
"name": "skf-button",
|
419
|
-
"description": "Component to be used in forms or for interactivity\n---\n\n\n### **Events:**\n - **click** - Fires when the button is clicked\n\n### **Methods:**\n - **click()** - Simulates a click on the button.\n\n### **Slots:**\n - _default_ - The Primary content",
|
186
|
+
"description": "Component to be used in forms or for interactivity\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/02493d-buttons) for design principles\n---\n\n\n### **Events:**\n - **click** - Fires when the button is clicked\n\n### **Methods:**\n - **click()** - Simulates a click on the button.\n\n### **Slots:**\n - _default_ - The Primary content",
|
420
187
|
"attributes": [
|
421
188
|
{
|
422
189
|
"name": "destructive",
|
@@ -431,163 +198,11 @@
|
|
431
198
|
{
|
432
199
|
"name": "icon",
|
433
200
|
"description": "If provided, renders an icon before or after the text",
|
434
|
-
"values": [
|
435
|
-
{ "name": "arrowDown" },
|
436
|
-
{ "name": "arrowDownUp" },
|
437
|
-
{ "name": "arrowLeft" },
|
438
|
-
{ "name": "arrowRight" },
|
439
|
-
{ "name": "arrowUp" },
|
440
|
-
{ "name": "article" },
|
441
|
-
{ "name": "artificialIntelligence" },
|
442
|
-
{ "name": "asset" },
|
443
|
-
{ "name": "attachment" },
|
444
|
-
{ "name": "bandCursor" },
|
445
|
-
{ "name": "bands" },
|
446
|
-
{ "name": "batteryEmpty" },
|
447
|
-
{ "name": "batteryFull" },
|
448
|
-
{ "name": "batteryLow" },
|
449
|
-
{ "name": "bearingFault" },
|
450
|
-
{ "name": "book" },
|
451
|
-
{ "name": "bulb" },
|
452
|
-
{ "name": "burger" },
|
453
|
-
{ "name": "cPM" },
|
454
|
-
{ "name": "calendar" },
|
455
|
-
{ "name": "calendarBooked" },
|
456
|
-
{ "name": "calendarEmpty" },
|
457
|
-
{ "name": "calendarNotBooked" },
|
458
|
-
{ "name": "calendarRecurring" },
|
459
|
-
{ "name": "caretDown" },
|
460
|
-
{ "name": "caretUp" },
|
461
|
-
{ "name": "caretUpDown" },
|
462
|
-
{ "name": "chat" },
|
463
|
-
{ "name": "check" },
|
464
|
-
{ "name": "checkCircle" },
|
465
|
-
{ "name": "checkSmall" },
|
466
|
-
{ "name": "chevronDown" },
|
467
|
-
{ "name": "chevronLeft" },
|
468
|
-
{ "name": "chevronRight" },
|
469
|
-
{ "name": "chevronUp" },
|
470
|
-
{ "name": "chevronUpDown" },
|
471
|
-
{ "name": "close" },
|
472
|
-
{ "name": "closeAllFaults" },
|
473
|
-
{ "name": "closeFault" },
|
474
|
-
{ "name": "closeSmall" },
|
475
|
-
{ "name": "columnGraph" },
|
476
|
-
{ "name": "comment" },
|
477
|
-
{ "name": "connection1" },
|
478
|
-
{ "name": "connection2" },
|
479
|
-
{ "name": "connection3" },
|
480
|
-
{ "name": "connection4" },
|
481
|
-
{ "name": "danger" },
|
482
|
-
{ "name": "defectFrequencies" },
|
483
|
-
{ "name": "defectFrequenciesAlternative" },
|
484
|
-
{ "name": "doubleChevronLeft" },
|
485
|
-
{ "name": "doubleChevronRight" },
|
486
|
-
{ "name": "download" },
|
487
|
-
{ "name": "draft" },
|
488
|
-
{ "name": "draftFilled" },
|
489
|
-
{ "name": "draftOutlined" },
|
490
|
-
{ "name": "dragNDrop" },
|
491
|
-
{ "name": "drop" },
|
492
|
-
{ "name": "duplicate" },
|
493
|
-
{ "name": "edit" },
|
494
|
-
{ "name": "emailFilled" },
|
495
|
-
{ "name": "emailOutlined" },
|
496
|
-
{ "name": "exclamation" },
|
497
|
-
{ "name": "eye" },
|
498
|
-
{ "name": "eyeHidden" },
|
499
|
-
{ "name": "eyeVisible" },
|
500
|
-
{ "name": "filter" },
|
501
|
-
{ "name": "forbidden" },
|
502
|
-
{ "name": "fullScreen" },
|
503
|
-
{ "name": "fullScreenExit" },
|
504
|
-
{ "name": "functionalLocation" },
|
505
|
-
{ "name": "harmonicCursor" },
|
506
|
-
{ "name": "heatmap" },
|
507
|
-
{ "name": "hierarchy" },
|
508
|
-
{ "name": "history" },
|
509
|
-
{ "name": "historyAlt" },
|
510
|
-
{ "name": "hourglassFramedFilled" },
|
511
|
-
{ "name": "hourglassFramedOutlined" },
|
512
|
-
{ "name": "hourglassOutlined" },
|
513
|
-
{ "name": "hz" },
|
514
|
-
{ "name": "iMX" },
|
515
|
-
{ "name": "image" },
|
516
|
-
{ "name": "infoCircleFilled" },
|
517
|
-
{ "name": "infoCircleOutlined" },
|
518
|
-
{ "name": "integration" },
|
519
|
-
{ "name": "kebab" },
|
520
|
-
{ "name": "link" },
|
521
|
-
{ "name": "listGroup" },
|
522
|
-
{ "name": "listItem" },
|
523
|
-
{ "name": "locationPin" },
|
524
|
-
{ "name": "lock" },
|
525
|
-
{ "name": "logOut" },
|
526
|
-
{ "name": "meatballs" },
|
527
|
-
{ "name": "microphone" },
|
528
|
-
{ "name": "minus" },
|
529
|
-
{ "name": "minusSmall" },
|
530
|
-
{ "name": "noData" },
|
531
|
-
{ "name": "o" },
|
532
|
-
{ "name": "openInNew" },
|
533
|
-
{ "name": "overlayBaseline" },
|
534
|
-
{ "name": "pDF" },
|
535
|
-
{ "name": "paper" },
|
536
|
-
{ "name": "pause" },
|
537
|
-
{ "name": "pieChart" },
|
538
|
-
{ "name": "pin" },
|
539
|
-
{ "name": "play" },
|
540
|
-
{ "name": "plus" },
|
541
|
-
{ "name": "powerOff" },
|
542
|
-
{ "name": "printer" },
|
543
|
-
{ "name": "proCollect" },
|
544
|
-
{ "name": "recAction" },
|
545
|
-
{ "name": "received" },
|
546
|
-
{ "name": "refresh" },
|
547
|
-
{ "name": "reorder" },
|
548
|
-
{ "name": "replace" },
|
549
|
-
{ "name": "reply" },
|
550
|
-
{ "name": "rewalkableRoute" },
|
551
|
-
{ "name": "routes" },
|
552
|
-
{ "name": "search" },
|
553
|
-
{ "name": "send" },
|
554
|
-
{ "name": "sensorA" },
|
555
|
-
{ "name": "sensorB" },
|
556
|
-
{ "name": "settings" },
|
557
|
-
{ "name": "sidebandCursor" },
|
558
|
-
{ "name": "singleCursor" },
|
559
|
-
{ "name": "spectrum" },
|
560
|
-
{ "name": "starFilled" },
|
561
|
-
{ "name": "starOutlined" },
|
562
|
-
{ "name": "statusCircle" },
|
563
|
-
{ "name": "stop" },
|
564
|
-
{ "name": "structuralVibration" },
|
565
|
-
{ "name": "sync" },
|
566
|
-
{ "name": "timewave" },
|
567
|
-
{ "name": "trash" },
|
568
|
-
{ "name": "trend" },
|
569
|
-
{ "name": "trendingUp" },
|
570
|
-
{ "name": "undo" },
|
571
|
-
{ "name": "unknownCircle" },
|
572
|
-
{ "name": "unknownDiamond" },
|
573
|
-
{ "name": "unlink" },
|
574
|
-
{ "name": "unlock" },
|
575
|
-
{ "name": "unscheduledAction" },
|
576
|
-
{ "name": "upload" },
|
577
|
-
{ "name": "user" },
|
578
|
-
{ "name": "viewFull" },
|
579
|
-
{ "name": "viewHorizontal" },
|
580
|
-
{ "name": "viewVertical" },
|
581
|
-
{ "name": "warning" },
|
582
|
-
{ "name": "warningCircle" },
|
583
|
-
{ "name": "warningDiamond" },
|
584
|
-
{ "name": "zoomIn" },
|
585
|
-
{ "name": "zoomOut" }
|
586
|
-
]
|
201
|
+
"values": [{ "name": "Icon" }]
|
587
202
|
},
|
588
203
|
{
|
589
|
-
"name": "
|
590
|
-
"description": "If true,
|
204
|
+
"name": "icon-only",
|
205
|
+
"description": "If true, button will take a square shape",
|
591
206
|
"values": []
|
592
207
|
},
|
593
208
|
{
|
@@ -609,11 +224,7 @@
|
|
609
224
|
{
|
610
225
|
"name": "type",
|
611
226
|
"description": "If provided, changes the button type",
|
612
|
-
"values": [
|
613
|
-
{ "name": "button" },
|
614
|
-
{ "name": "submit" },
|
615
|
-
{ "name": "reset" }
|
616
|
-
]
|
227
|
+
"values": [{ "name": "SkfButtonType" }]
|
617
228
|
},
|
618
229
|
{
|
619
230
|
"name": "variant",
|
@@ -629,7 +240,7 @@
|
|
629
240
|
},
|
630
241
|
{
|
631
242
|
"name": "skf-card",
|
632
|
-
"description": "The `<skf-card>` can be used to group related subjects in a container\n---\n\n\n### **Slots:**\n - _default_ - The card's main content",
|
243
|
+
"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\n---\n\n\n### **Slots:**\n - _default_ - The card's main content",
|
633
244
|
"attributes": [
|
634
245
|
{
|
635
246
|
"name": "no-border",
|
@@ -651,7 +262,7 @@
|
|
651
262
|
},
|
652
263
|
{
|
653
264
|
"name": "skf-checkbox",
|
654
|
-
"description": "The `<skf-checkbox>` component is used to create a checkbox input\n---\n\n\n### **Events:**\n - **change** -
|
265
|
+
"description": "The `<skf-checkbox>` component is used to create a checkbox input\n---\n\n\n### **Events:**\n - **change** - When the value of the input changes\n\n### **Slots:**\n - _default_ - The Radios label. Alternatively, you can use the `label` attribute.",
|
655
266
|
"attributes": [
|
656
267
|
{
|
657
268
|
"name": "disabled",
|
@@ -701,12 +312,7 @@
|
|
701
312
|
{
|
702
313
|
"name": "severity",
|
703
314
|
"description": "If defined, styles checkbox using provided severity",
|
704
|
-
"values": [
|
705
|
-
{ "name": "alert" },
|
706
|
-
{ "name": "success" },
|
707
|
-
{ "name": "info" },
|
708
|
-
{ "name": "warning" }
|
709
|
-
]
|
315
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
710
316
|
},
|
711
317
|
{
|
712
318
|
"name": "show-valid",
|
@@ -771,19 +377,19 @@
|
|
771
377
|
{
|
772
378
|
"name": "as",
|
773
379
|
"description": "Controls which heading element will be rendered. Should not be used to affect appearance",
|
774
|
-
"values": [{ "name": "
|
380
|
+
"values": [{ "name": "HeadingType" }]
|
775
381
|
},
|
776
382
|
{
|
777
383
|
"name": "styled-as",
|
778
384
|
"description": "If defined, changes the appearance of the heading",
|
779
|
-
"values": [{ "name": "
|
385
|
+
"values": [{ "name": "HeadingType" }]
|
780
386
|
}
|
781
387
|
],
|
782
388
|
"references": []
|
783
389
|
},
|
784
390
|
{
|
785
391
|
"name": "skf-dialog",
|
786
|
-
"description": "The `<skf-dialog>` is a component that open up a dialog of type modal with the content provided. (MDN refrains from opening the dialog using the `open` attribute, however skf-dialog does not have that limitation)\n---\n\n\n### **Events:**\n - **skf-dialog-opened** - Fires when the dialog is opened (after transitioned in)\n- **skf-dialog-closing** - Fires when the dialog is
|
392
|
+
"description": "The `<skf-dialog>` is a component that open up a dialog of type modal with the content provided. (MDN refrains from opening the dialog using the `open` attribute, however skf-dialog does not have that limitation)\n---\n\n\n### **Events:**\n - **skf-dialog-opened** - Fires when the dialog is opened (after transitioned in)\n- **skf-dialog-closing** - Fires when the dialog is closing (before transitioned out)\n- **skf-dialog-closed** - Fires when the dialog is closed (after transitioned out)\n\n### **Methods:**\n - **showModal()** - Method that opens the dialog in modal state\n- **close()** - Method that closes the dialog\n\n### **Slots:**\n - _default_ - The dialog component's content\n- **footer** - The dialog component's buttons goes here\n\n### **CSS Properties:**\n - **--skf-dialog-height** - A custom height for the Dialog. Pass valid CSS **block-size** values _(default: undefined)_\n- **--skf-dialog-width** - A custom width for the Dialog Pass valid CSS **inline-size** values _(default: undefined)_",
|
787
393
|
"attributes": [
|
788
394
|
{
|
789
395
|
"name": "close-button-aria-label",
|
@@ -842,7 +448,7 @@
|
|
842
448
|
},
|
843
449
|
{
|
844
450
|
"name": "skf-drawer",
|
845
|
-
"description": "The `<skf-drawer>` is a modal component that displays content and toggle by sliding from left/right viewport edge
|
451
|
+
"description": "The `<skf-drawer>` is a modal component that displays content and toggle by sliding from left/right viewport edge\n---\n\n\n### **Events:**\n - **skf-drawer-opened** - Fires when the drawer is opened (after transitioned in)\n- **skf-drawer-closing** - Fires when the drawer is closing (before transitioned out)\n- **skf-drawer-closed** - Fires when the drawer is closed (after transitioned out)\n\n### **Slots:**\n - _default_ - The Drawer's main content",
|
846
452
|
"attributes": [
|
847
453
|
{
|
848
454
|
"name": "close-button-aria-label",
|
@@ -884,11 +490,7 @@
|
|
884
490
|
{
|
885
491
|
"name": "color",
|
886
492
|
"description": "Defines the color of the logo",
|
887
|
-
"values": [
|
888
|
-
{ "name": "primary" },
|
889
|
-
{ "name": "secondary" },
|
890
|
-
{ "name": "inverse" }
|
891
|
-
]
|
493
|
+
"values": [{ "name": "SkfLogoColor" }]
|
892
494
|
}
|
893
495
|
],
|
894
496
|
"references": []
|
@@ -901,7 +503,7 @@
|
|
901
503
|
},
|
902
504
|
{
|
903
505
|
"name": "skf-header",
|
904
|
-
"description": "The `<skf-header>` component is to be used as the site-header in the app
|
506
|
+
"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.\n---\n\n\n### **Slots:**\n - _default_ - Navigation items",
|
905
507
|
"attributes": [
|
906
508
|
{
|
907
509
|
"name": "compact",
|
@@ -928,7 +530,7 @@
|
|
928
530
|
},
|
929
531
|
{
|
930
532
|
"name": "skf-input",
|
931
|
-
"description": "The skf-text-field is used to create a text input field. It can be used inside a form element or standalone
|
533
|
+
"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\n---\n\n\n### **Events:**\n - **change** - Fires when the value of the input changes\n- **invalid** - Fires when the input is invalid\n\n### **Slots:**\n - _default_ - The Inputs label. Alternatively, you can use the `label` attribute.",
|
932
534
|
"attributes": [
|
933
535
|
{
|
934
536
|
"name": "disabled",
|
@@ -942,67 +544,8 @@
|
|
942
544
|
},
|
943
545
|
{
|
944
546
|
"name": "autocomplete",
|
945
|
-
"description": "
|
946
|
-
"values": [
|
947
|
-
{ "name": "on" },
|
948
|
-
{ "name": "off" },
|
949
|
-
{ "name": "name" },
|
950
|
-
{ "name": "honorific-prefix" },
|
951
|
-
{ "name": "given-name" },
|
952
|
-
{ "name": "additional-name" },
|
953
|
-
{ "name": "family-name" },
|
954
|
-
{ "name": "honorific-suffix" },
|
955
|
-
{ "name": "nickname" },
|
956
|
-
{ "name": "username" },
|
957
|
-
{ "name": "new-password" },
|
958
|
-
{ "name": "current-password" },
|
959
|
-
{ "name": "one-time-code" },
|
960
|
-
{ "name": "organization-title" },
|
961
|
-
{ "name": "organization" },
|
962
|
-
{ "name": "street-address" },
|
963
|
-
{ "name": "address-line1" },
|
964
|
-
{ "name": "address-line2" },
|
965
|
-
{ "name": "address-line3" },
|
966
|
-
{ "name": "address-level4" },
|
967
|
-
{ "name": "address-level3" },
|
968
|
-
{ "name": "address-level2" },
|
969
|
-
{ "name": "address-level1" },
|
970
|
-
{ "name": "country" },
|
971
|
-
{ "name": "country-name" },
|
972
|
-
{ "name": "postal-code" },
|
973
|
-
{ "name": "cc-name" },
|
974
|
-
{ "name": "cc-given-name" },
|
975
|
-
{ "name": "cc-additional-name" },
|
976
|
-
{ "name": "cc-family-name" },
|
977
|
-
{ "name": "cc-number" },
|
978
|
-
{ "name": "cc-exp" },
|
979
|
-
{ "name": "cc-exp-month" },
|
980
|
-
{ "name": "cc-exp-year" },
|
981
|
-
{ "name": "cc-csc" },
|
982
|
-
{ "name": "cc-type" },
|
983
|
-
{ "name": "transaction-amount" },
|
984
|
-
{ "name": "transaction-currency" },
|
985
|
-
{ "name": "language" },
|
986
|
-
{ "name": "bday" },
|
987
|
-
{ "name": "bday-day" },
|
988
|
-
{ "name": "bday-month" },
|
989
|
-
{ "name": "bday-year" },
|
990
|
-
{ "name": "sex" },
|
991
|
-
{ "name": "url" },
|
992
|
-
{ "name": "photo" },
|
993
|
-
{ "name": "tel" },
|
994
|
-
{ "name": "tel-country-code" },
|
995
|
-
{ "name": "tel-national" },
|
996
|
-
{ "name": "tel-area-code" },
|
997
|
-
{ "name": "tel-local" },
|
998
|
-
{ "name": "tel-extension" },
|
999
|
-
{ "name": "email" },
|
1000
|
-
{ "name": "impp" },
|
1001
|
-
{ "name": "password" },
|
1002
|
-
{ "name": "webauthn" },
|
1003
|
-
{ "name": "work" },
|
1004
|
-
{ "name": "(string & {})" }
|
1005
|
-
]
|
547
|
+
"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.",
|
548
|
+
"values": [{ "name": "HTMLInputElement['autocomplete']" }]
|
1006
549
|
},
|
1007
550
|
{
|
1008
551
|
"name": "button-aria-label-clear",
|
@@ -1041,17 +584,8 @@
|
|
1041
584
|
},
|
1042
585
|
{
|
1043
586
|
"name": "inputmode",
|
1044
|
-
"description": "
|
1045
|
-
"values": [
|
1046
|
-
{ "name": "none" },
|
1047
|
-
{ "name": "text" },
|
1048
|
-
{ "name": "tel" },
|
1049
|
-
{ "name": "url" },
|
1050
|
-
{ "name": "email" },
|
1051
|
-
{ "name": "numeric" },
|
1052
|
-
{ "name": "decimal" },
|
1053
|
-
{ "name": "search" }
|
1054
|
-
]
|
587
|
+
"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.",
|
588
|
+
"values": [{ "name": "HTMLInputElement['inputMode']" }]
|
1055
589
|
},
|
1056
590
|
{
|
1057
591
|
"name": "label",
|
@@ -1111,11 +645,7 @@
|
|
1111
645
|
{
|
1112
646
|
"name": "severity",
|
1113
647
|
"description": "If defined, displays provided severity state",
|
1114
|
-
"values": [
|
1115
|
-
{ "name": "success" },
|
1116
|
-
{ "name": "info" },
|
1117
|
-
{ "name": "warning" }
|
1118
|
-
]
|
648
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
1119
649
|
},
|
1120
650
|
{
|
1121
651
|
"name": "show-valid",
|
@@ -1134,28 +664,15 @@
|
|
1134
664
|
},
|
1135
665
|
{
|
1136
666
|
"name": "type",
|
1137
|
-
"description": "Type of input
|
667
|
+
"description": "Type of input",
|
1138
668
|
"values": [
|
1139
|
-
{ "name": "button" },
|
1140
|
-
{ "name": "color" },
|
1141
|
-
{ "name": "date" },
|
1142
|
-
{ "name": "datetime-local" },
|
1143
669
|
{ "name": "email" },
|
1144
|
-
{ "name": "file" },
|
1145
|
-
{ "name": "hidden" },
|
1146
|
-
{ "name": "image" },
|
1147
|
-
{ "name": "month" },
|
1148
670
|
{ "name": "number" },
|
1149
671
|
{ "name": "password" },
|
1150
|
-
{ "name": "range" },
|
1151
|
-
{ "name": "reset" },
|
1152
672
|
{ "name": "search" },
|
1153
|
-
{ "name": "submit" },
|
1154
673
|
{ "name": "tel" },
|
1155
674
|
{ "name": "text" },
|
1156
|
-
{ "name": "
|
1157
|
-
{ "name": "url" },
|
1158
|
-
{ "name": "week" }
|
675
|
+
{ "name": "url" }
|
1159
676
|
]
|
1160
677
|
},
|
1161
678
|
{
|
@@ -1207,159 +724,7 @@
|
|
1207
724
|
{
|
1208
725
|
"name": "icon",
|
1209
726
|
"description": "If defined, renders an icon before or after the text",
|
1210
|
-
"values": [
|
1211
|
-
{ "name": "arrowDown" },
|
1212
|
-
{ "name": "arrowDownUp" },
|
1213
|
-
{ "name": "arrowLeft" },
|
1214
|
-
{ "name": "arrowRight" },
|
1215
|
-
{ "name": "arrowUp" },
|
1216
|
-
{ "name": "article" },
|
1217
|
-
{ "name": "artificialIntelligence" },
|
1218
|
-
{ "name": "asset" },
|
1219
|
-
{ "name": "attachment" },
|
1220
|
-
{ "name": "bandCursor" },
|
1221
|
-
{ "name": "bands" },
|
1222
|
-
{ "name": "batteryEmpty" },
|
1223
|
-
{ "name": "batteryFull" },
|
1224
|
-
{ "name": "batteryLow" },
|
1225
|
-
{ "name": "bearingFault" },
|
1226
|
-
{ "name": "book" },
|
1227
|
-
{ "name": "bulb" },
|
1228
|
-
{ "name": "burger" },
|
1229
|
-
{ "name": "cPM" },
|
1230
|
-
{ "name": "calendar" },
|
1231
|
-
{ "name": "calendarBooked" },
|
1232
|
-
{ "name": "calendarEmpty" },
|
1233
|
-
{ "name": "calendarNotBooked" },
|
1234
|
-
{ "name": "calendarRecurring" },
|
1235
|
-
{ "name": "caretDown" },
|
1236
|
-
{ "name": "caretUp" },
|
1237
|
-
{ "name": "caretUpDown" },
|
1238
|
-
{ "name": "chat" },
|
1239
|
-
{ "name": "check" },
|
1240
|
-
{ "name": "checkCircle" },
|
1241
|
-
{ "name": "checkSmall" },
|
1242
|
-
{ "name": "chevronDown" },
|
1243
|
-
{ "name": "chevronLeft" },
|
1244
|
-
{ "name": "chevronRight" },
|
1245
|
-
{ "name": "chevronUp" },
|
1246
|
-
{ "name": "chevronUpDown" },
|
1247
|
-
{ "name": "close" },
|
1248
|
-
{ "name": "closeAllFaults" },
|
1249
|
-
{ "name": "closeFault" },
|
1250
|
-
{ "name": "closeSmall" },
|
1251
|
-
{ "name": "columnGraph" },
|
1252
|
-
{ "name": "comment" },
|
1253
|
-
{ "name": "connection1" },
|
1254
|
-
{ "name": "connection2" },
|
1255
|
-
{ "name": "connection3" },
|
1256
|
-
{ "name": "connection4" },
|
1257
|
-
{ "name": "danger" },
|
1258
|
-
{ "name": "defectFrequencies" },
|
1259
|
-
{ "name": "defectFrequenciesAlternative" },
|
1260
|
-
{ "name": "doubleChevronLeft" },
|
1261
|
-
{ "name": "doubleChevronRight" },
|
1262
|
-
{ "name": "download" },
|
1263
|
-
{ "name": "draft" },
|
1264
|
-
{ "name": "draftFilled" },
|
1265
|
-
{ "name": "draftOutlined" },
|
1266
|
-
{ "name": "dragNDrop" },
|
1267
|
-
{ "name": "drop" },
|
1268
|
-
{ "name": "duplicate" },
|
1269
|
-
{ "name": "edit" },
|
1270
|
-
{ "name": "emailFilled" },
|
1271
|
-
{ "name": "emailOutlined" },
|
1272
|
-
{ "name": "exclamation" },
|
1273
|
-
{ "name": "eye" },
|
1274
|
-
{ "name": "eyeHidden" },
|
1275
|
-
{ "name": "eyeVisible" },
|
1276
|
-
{ "name": "filter" },
|
1277
|
-
{ "name": "forbidden" },
|
1278
|
-
{ "name": "fullScreen" },
|
1279
|
-
{ "name": "fullScreenExit" },
|
1280
|
-
{ "name": "functionalLocation" },
|
1281
|
-
{ "name": "harmonicCursor" },
|
1282
|
-
{ "name": "heatmap" },
|
1283
|
-
{ "name": "hierarchy" },
|
1284
|
-
{ "name": "history" },
|
1285
|
-
{ "name": "historyAlt" },
|
1286
|
-
{ "name": "hourglassFramedFilled" },
|
1287
|
-
{ "name": "hourglassFramedOutlined" },
|
1288
|
-
{ "name": "hourglassOutlined" },
|
1289
|
-
{ "name": "hz" },
|
1290
|
-
{ "name": "iMX" },
|
1291
|
-
{ "name": "image" },
|
1292
|
-
{ "name": "infoCircleFilled" },
|
1293
|
-
{ "name": "infoCircleOutlined" },
|
1294
|
-
{ "name": "integration" },
|
1295
|
-
{ "name": "kebab" },
|
1296
|
-
{ "name": "link" },
|
1297
|
-
{ "name": "listGroup" },
|
1298
|
-
{ "name": "listItem" },
|
1299
|
-
{ "name": "locationPin" },
|
1300
|
-
{ "name": "lock" },
|
1301
|
-
{ "name": "logOut" },
|
1302
|
-
{ "name": "meatballs" },
|
1303
|
-
{ "name": "microphone" },
|
1304
|
-
{ "name": "minus" },
|
1305
|
-
{ "name": "minusSmall" },
|
1306
|
-
{ "name": "noData" },
|
1307
|
-
{ "name": "o" },
|
1308
|
-
{ "name": "openInNew" },
|
1309
|
-
{ "name": "overlayBaseline" },
|
1310
|
-
{ "name": "pDF" },
|
1311
|
-
{ "name": "paper" },
|
1312
|
-
{ "name": "pause" },
|
1313
|
-
{ "name": "pieChart" },
|
1314
|
-
{ "name": "pin" },
|
1315
|
-
{ "name": "play" },
|
1316
|
-
{ "name": "plus" },
|
1317
|
-
{ "name": "powerOff" },
|
1318
|
-
{ "name": "printer" },
|
1319
|
-
{ "name": "proCollect" },
|
1320
|
-
{ "name": "recAction" },
|
1321
|
-
{ "name": "received" },
|
1322
|
-
{ "name": "refresh" },
|
1323
|
-
{ "name": "reorder" },
|
1324
|
-
{ "name": "replace" },
|
1325
|
-
{ "name": "reply" },
|
1326
|
-
{ "name": "rewalkableRoute" },
|
1327
|
-
{ "name": "routes" },
|
1328
|
-
{ "name": "search" },
|
1329
|
-
{ "name": "send" },
|
1330
|
-
{ "name": "sensorA" },
|
1331
|
-
{ "name": "sensorB" },
|
1332
|
-
{ "name": "settings" },
|
1333
|
-
{ "name": "sidebandCursor" },
|
1334
|
-
{ "name": "singleCursor" },
|
1335
|
-
{ "name": "spectrum" },
|
1336
|
-
{ "name": "starFilled" },
|
1337
|
-
{ "name": "starOutlined" },
|
1338
|
-
{ "name": "statusCircle" },
|
1339
|
-
{ "name": "stop" },
|
1340
|
-
{ "name": "structuralVibration" },
|
1341
|
-
{ "name": "sync" },
|
1342
|
-
{ "name": "timewave" },
|
1343
|
-
{ "name": "trash" },
|
1344
|
-
{ "name": "trend" },
|
1345
|
-
{ "name": "trendingUp" },
|
1346
|
-
{ "name": "undo" },
|
1347
|
-
{ "name": "unknownCircle" },
|
1348
|
-
{ "name": "unknownDiamond" },
|
1349
|
-
{ "name": "unlink" },
|
1350
|
-
{ "name": "unlock" },
|
1351
|
-
{ "name": "unscheduledAction" },
|
1352
|
-
{ "name": "upload" },
|
1353
|
-
{ "name": "user" },
|
1354
|
-
{ "name": "viewFull" },
|
1355
|
-
{ "name": "viewHorizontal" },
|
1356
|
-
{ "name": "viewVertical" },
|
1357
|
-
{ "name": "warning" },
|
1358
|
-
{ "name": "warningCircle" },
|
1359
|
-
{ "name": "warningDiamond" },
|
1360
|
-
{ "name": "zoomIn" },
|
1361
|
-
{ "name": "zoomOut" }
|
1362
|
-
]
|
727
|
+
"values": [{ "name": "Icon" }]
|
1363
728
|
},
|
1364
729
|
{
|
1365
730
|
"name": "icon-placement",
|
@@ -1394,48 +759,14 @@
|
|
1394
759
|
{
|
1395
760
|
"name": "type",
|
1396
761
|
"description": "Defines the type of button",
|
1397
|
-
"values": [
|
1398
|
-
{ "name": "button" },
|
1399
|
-
{ "name": "submit" },
|
1400
|
-
{ "name": "reset" }
|
1401
|
-
]
|
1402
|
-
}
|
1403
|
-
],
|
1404
|
-
"references": []
|
1405
|
-
},
|
1406
|
-
{
|
1407
|
-
"name": "skf-menu",
|
1408
|
-
"description": "The `<skf-menu>` is a component that displays a list of actions or options.\n---\n\n\n### **Events:**\n - **skf-opened** - Fired when the menu is opened\n- **skf-closed** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The menu popover content",
|
1409
|
-
"attributes": [
|
1410
|
-
{
|
1411
|
-
"name": "placement",
|
1412
|
-
"description": "The placement of the menu",
|
1413
|
-
"values": [
|
1414
|
-
{ "name": "top" },
|
1415
|
-
{ "name": "right" },
|
1416
|
-
{ "name": "bottom" },
|
1417
|
-
{ "name": "left" },
|
1418
|
-
{ "name": "top-start" },
|
1419
|
-
{ "name": "top-end" },
|
1420
|
-
{ "name": "right-start" },
|
1421
|
-
{ "name": "right-end" },
|
1422
|
-
{ "name": "bottom-start" },
|
1423
|
-
{ "name": "bottom-end" },
|
1424
|
-
{ "name": "left-start" },
|
1425
|
-
{ "name": "left-end" }
|
1426
|
-
]
|
1427
|
-
},
|
1428
|
-
{
|
1429
|
-
"name": "anchor",
|
1430
|
-
"description": "The id of the element the menu will be anchored to",
|
1431
|
-
"values": []
|
762
|
+
"values": [{ "name": "SkfLinkType" }]
|
1432
763
|
}
|
1433
764
|
],
|
1434
765
|
"references": []
|
1435
766
|
},
|
1436
767
|
{
|
1437
768
|
"name": "skf-menu-item",
|
1438
|
-
"description": "The `<skf-menu-item>` is
|
769
|
+
"description": "The `<skf-menu-item>` is used in conjunction with the `<skf-menu>` component\n---\n\n\n### **Slots:**\n - _default_ - The component's main content",
|
1439
770
|
"attributes": [
|
1440
771
|
{
|
1441
772
|
"name": "as",
|
@@ -1465,159 +796,7 @@
|
|
1465
796
|
{
|
1466
797
|
"name": "icon",
|
1467
798
|
"description": "If defined, renders an icon before or after the text",
|
1468
|
-
"values": [
|
1469
|
-
{ "name": "arrowDown" },
|
1470
|
-
{ "name": "arrowDownUp" },
|
1471
|
-
{ "name": "arrowLeft" },
|
1472
|
-
{ "name": "arrowRight" },
|
1473
|
-
{ "name": "arrowUp" },
|
1474
|
-
{ "name": "article" },
|
1475
|
-
{ "name": "artificialIntelligence" },
|
1476
|
-
{ "name": "asset" },
|
1477
|
-
{ "name": "attachment" },
|
1478
|
-
{ "name": "bandCursor" },
|
1479
|
-
{ "name": "bands" },
|
1480
|
-
{ "name": "batteryEmpty" },
|
1481
|
-
{ "name": "batteryFull" },
|
1482
|
-
{ "name": "batteryLow" },
|
1483
|
-
{ "name": "bearingFault" },
|
1484
|
-
{ "name": "book" },
|
1485
|
-
{ "name": "bulb" },
|
1486
|
-
{ "name": "burger" },
|
1487
|
-
{ "name": "cPM" },
|
1488
|
-
{ "name": "calendar" },
|
1489
|
-
{ "name": "calendarBooked" },
|
1490
|
-
{ "name": "calendarEmpty" },
|
1491
|
-
{ "name": "calendarNotBooked" },
|
1492
|
-
{ "name": "calendarRecurring" },
|
1493
|
-
{ "name": "caretDown" },
|
1494
|
-
{ "name": "caretUp" },
|
1495
|
-
{ "name": "caretUpDown" },
|
1496
|
-
{ "name": "chat" },
|
1497
|
-
{ "name": "check" },
|
1498
|
-
{ "name": "checkCircle" },
|
1499
|
-
{ "name": "checkSmall" },
|
1500
|
-
{ "name": "chevronDown" },
|
1501
|
-
{ "name": "chevronLeft" },
|
1502
|
-
{ "name": "chevronRight" },
|
1503
|
-
{ "name": "chevronUp" },
|
1504
|
-
{ "name": "chevronUpDown" },
|
1505
|
-
{ "name": "close" },
|
1506
|
-
{ "name": "closeAllFaults" },
|
1507
|
-
{ "name": "closeFault" },
|
1508
|
-
{ "name": "closeSmall" },
|
1509
|
-
{ "name": "columnGraph" },
|
1510
|
-
{ "name": "comment" },
|
1511
|
-
{ "name": "connection1" },
|
1512
|
-
{ "name": "connection2" },
|
1513
|
-
{ "name": "connection3" },
|
1514
|
-
{ "name": "connection4" },
|
1515
|
-
{ "name": "danger" },
|
1516
|
-
{ "name": "defectFrequencies" },
|
1517
|
-
{ "name": "defectFrequenciesAlternative" },
|
1518
|
-
{ "name": "doubleChevronLeft" },
|
1519
|
-
{ "name": "doubleChevronRight" },
|
1520
|
-
{ "name": "download" },
|
1521
|
-
{ "name": "draft" },
|
1522
|
-
{ "name": "draftFilled" },
|
1523
|
-
{ "name": "draftOutlined" },
|
1524
|
-
{ "name": "dragNDrop" },
|
1525
|
-
{ "name": "drop" },
|
1526
|
-
{ "name": "duplicate" },
|
1527
|
-
{ "name": "edit" },
|
1528
|
-
{ "name": "emailFilled" },
|
1529
|
-
{ "name": "emailOutlined" },
|
1530
|
-
{ "name": "exclamation" },
|
1531
|
-
{ "name": "eye" },
|
1532
|
-
{ "name": "eyeHidden" },
|
1533
|
-
{ "name": "eyeVisible" },
|
1534
|
-
{ "name": "filter" },
|
1535
|
-
{ "name": "forbidden" },
|
1536
|
-
{ "name": "fullScreen" },
|
1537
|
-
{ "name": "fullScreenExit" },
|
1538
|
-
{ "name": "functionalLocation" },
|
1539
|
-
{ "name": "harmonicCursor" },
|
1540
|
-
{ "name": "heatmap" },
|
1541
|
-
{ "name": "hierarchy" },
|
1542
|
-
{ "name": "history" },
|
1543
|
-
{ "name": "historyAlt" },
|
1544
|
-
{ "name": "hourglassFramedFilled" },
|
1545
|
-
{ "name": "hourglassFramedOutlined" },
|
1546
|
-
{ "name": "hourglassOutlined" },
|
1547
|
-
{ "name": "hz" },
|
1548
|
-
{ "name": "iMX" },
|
1549
|
-
{ "name": "image" },
|
1550
|
-
{ "name": "infoCircleFilled" },
|
1551
|
-
{ "name": "infoCircleOutlined" },
|
1552
|
-
{ "name": "integration" },
|
1553
|
-
{ "name": "kebab" },
|
1554
|
-
{ "name": "link" },
|
1555
|
-
{ "name": "listGroup" },
|
1556
|
-
{ "name": "listItem" },
|
1557
|
-
{ "name": "locationPin" },
|
1558
|
-
{ "name": "lock" },
|
1559
|
-
{ "name": "logOut" },
|
1560
|
-
{ "name": "meatballs" },
|
1561
|
-
{ "name": "microphone" },
|
1562
|
-
{ "name": "minus" },
|
1563
|
-
{ "name": "minusSmall" },
|
1564
|
-
{ "name": "noData" },
|
1565
|
-
{ "name": "o" },
|
1566
|
-
{ "name": "openInNew" },
|
1567
|
-
{ "name": "overlayBaseline" },
|
1568
|
-
{ "name": "pDF" },
|
1569
|
-
{ "name": "paper" },
|
1570
|
-
{ "name": "pause" },
|
1571
|
-
{ "name": "pieChart" },
|
1572
|
-
{ "name": "pin" },
|
1573
|
-
{ "name": "play" },
|
1574
|
-
{ "name": "plus" },
|
1575
|
-
{ "name": "powerOff" },
|
1576
|
-
{ "name": "printer" },
|
1577
|
-
{ "name": "proCollect" },
|
1578
|
-
{ "name": "recAction" },
|
1579
|
-
{ "name": "received" },
|
1580
|
-
{ "name": "refresh" },
|
1581
|
-
{ "name": "reorder" },
|
1582
|
-
{ "name": "replace" },
|
1583
|
-
{ "name": "reply" },
|
1584
|
-
{ "name": "rewalkableRoute" },
|
1585
|
-
{ "name": "routes" },
|
1586
|
-
{ "name": "search" },
|
1587
|
-
{ "name": "send" },
|
1588
|
-
{ "name": "sensorA" },
|
1589
|
-
{ "name": "sensorB" },
|
1590
|
-
{ "name": "settings" },
|
1591
|
-
{ "name": "sidebandCursor" },
|
1592
|
-
{ "name": "singleCursor" },
|
1593
|
-
{ "name": "spectrum" },
|
1594
|
-
{ "name": "starFilled" },
|
1595
|
-
{ "name": "starOutlined" },
|
1596
|
-
{ "name": "statusCircle" },
|
1597
|
-
{ "name": "stop" },
|
1598
|
-
{ "name": "structuralVibration" },
|
1599
|
-
{ "name": "sync" },
|
1600
|
-
{ "name": "timewave" },
|
1601
|
-
{ "name": "trash" },
|
1602
|
-
{ "name": "trend" },
|
1603
|
-
{ "name": "trendingUp" },
|
1604
|
-
{ "name": "undo" },
|
1605
|
-
{ "name": "unknownCircle" },
|
1606
|
-
{ "name": "unknownDiamond" },
|
1607
|
-
{ "name": "unlink" },
|
1608
|
-
{ "name": "unlock" },
|
1609
|
-
{ "name": "unscheduledAction" },
|
1610
|
-
{ "name": "upload" },
|
1611
|
-
{ "name": "user" },
|
1612
|
-
{ "name": "viewFull" },
|
1613
|
-
{ "name": "viewHorizontal" },
|
1614
|
-
{ "name": "viewVertical" },
|
1615
|
-
{ "name": "warning" },
|
1616
|
-
{ "name": "warningCircle" },
|
1617
|
-
{ "name": "warningDiamond" },
|
1618
|
-
{ "name": "zoomIn" },
|
1619
|
-
{ "name": "zoomOut" }
|
1620
|
-
]
|
799
|
+
"values": [{ "name": "Icon" }]
|
1621
800
|
},
|
1622
801
|
{
|
1623
802
|
"name": "icon-placement",
|
@@ -1652,11 +831,37 @@
|
|
1652
831
|
{
|
1653
832
|
"name": "type",
|
1654
833
|
"description": "Defines the type of button",
|
834
|
+
"values": [{ "name": "SkfLinkType" }]
|
835
|
+
}
|
836
|
+
],
|
837
|
+
"references": []
|
838
|
+
},
|
839
|
+
{
|
840
|
+
"name": "skf-menu",
|
841
|
+
"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\n---\n\n\n### **Events:**\n - **skf-opened** - Fired when the menu is opened\n- **skf-closed** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The menu popover content",
|
842
|
+
"attributes": [
|
843
|
+
{
|
844
|
+
"name": "placement",
|
845
|
+
"description": "The placement of the menu",
|
1655
846
|
"values": [
|
1656
|
-
{ "name": "
|
1657
|
-
{ "name": "
|
1658
|
-
{ "name": "
|
847
|
+
{ "name": "top" },
|
848
|
+
{ "name": "right" },
|
849
|
+
{ "name": "bottom" },
|
850
|
+
{ "name": "left" },
|
851
|
+
{ "name": "top-start" },
|
852
|
+
{ "name": "top-end" },
|
853
|
+
{ "name": "right-start" },
|
854
|
+
{ "name": "right-end" },
|
855
|
+
{ "name": "bottom-start" },
|
856
|
+
{ "name": "bottom-end" },
|
857
|
+
{ "name": "left-start" },
|
858
|
+
{ "name": "left-end" }
|
1659
859
|
]
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"name": "anchor",
|
863
|
+
"description": "The id of the element the menu will be anchored to",
|
864
|
+
"values": []
|
1660
865
|
}
|
1661
866
|
],
|
1662
867
|
"references": []
|
@@ -1672,11 +877,11 @@
|
|
1672
877
|
},
|
1673
878
|
{
|
1674
879
|
"name": "skf-popover",
|
1675
|
-
"description": "The `<skf-popover>` is a general purpose component that displays the slot content in a popover.\n---\n\n\n### **Events:**\n - **skf-opened** - Fired when the menu is opened\n- **skf-closed** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The popover content",
|
880
|
+
"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\n---\n\n\n### **Events:**\n - **skf-opened** - Fired when the menu is opened\n- **skf-closed** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The popover content",
|
1676
881
|
"attributes": [
|
1677
882
|
{
|
1678
883
|
"name": "placement",
|
1679
|
-
"description": "The placement of the
|
884
|
+
"description": "The placement of the popover",
|
1680
885
|
"values": [
|
1681
886
|
{ "name": "top" },
|
1682
887
|
{ "name": "right" },
|
@@ -1734,7 +939,7 @@
|
|
1734
939
|
},
|
1735
940
|
{
|
1736
941
|
"name": "skf-radio",
|
1737
|
-
"description": "The `<skf-radio>` component is used to create a radio input\n---\n\n\n### **Events:**\n - **change** -
|
942
|
+
"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\n---\n\n\n### **Events:**\n - **change** - When the value of the input changes\n\n### **Slots:**\n - _default_ - The radios label. Alternatively, you can use the `label` attribute.",
|
1738
943
|
"attributes": [
|
1739
944
|
{
|
1740
945
|
"name": "disabled",
|
@@ -1784,12 +989,7 @@
|
|
1784
989
|
{
|
1785
990
|
"name": "severity",
|
1786
991
|
"description": "If defined, displays provided severity state",
|
1787
|
-
"values": [
|
1788
|
-
{ "name": "success" },
|
1789
|
-
{ "name": "info" },
|
1790
|
-
{ "name": "warning" },
|
1791
|
-
{ "name": "alert" }
|
1792
|
-
]
|
992
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
1793
993
|
},
|
1794
994
|
{
|
1795
995
|
"name": "show-valid",
|
@@ -1806,13 +1006,18 @@
|
|
1806
1006
|
},
|
1807
1007
|
{
|
1808
1008
|
"name": "skf-segmented-button-item",
|
1809
|
-
"description": "The `<skf-segmented-button-item>` is used in conjunction with the `<skf-segmented-button>` component\n---\n\n\n### **Events:**\n - **
|
1009
|
+
"description": "The `<skf-segmented-button-item>` is used in conjunction with the `<skf-segmented-button>` component\n---\n\n\n### **Events:**\n - **skf-segmented-button-item-select** - Fired when selected\n\n### **Slots:**\n - _default_ - Label for the button",
|
1810
1010
|
"attributes": [
|
1811
1011
|
{
|
1812
1012
|
"name": "disabled",
|
1813
1013
|
"description": "If true, items is marked as disabled",
|
1814
1014
|
"values": []
|
1815
1015
|
},
|
1016
|
+
{
|
1017
|
+
"name": "selected",
|
1018
|
+
"description": "If true, items is marked as selected",
|
1019
|
+
"values": []
|
1020
|
+
},
|
1816
1021
|
{ "name": "value", "description": "Sets the item value", "values": [] }
|
1817
1022
|
],
|
1818
1023
|
"references": []
|
@@ -1821,11 +1026,6 @@
|
|
1821
1026
|
"name": "skf-segmented-button",
|
1822
1027
|
"description": "The `<skf-segmented-button>` component consists of multiple `<skf-segmented-button-item>`, working together.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/68ff54-segmented-buttons) for design principles\n---\n\n\n### **Slots:**\n - _default_ - One or more `<skf-segmented-button-item>`",
|
1823
1028
|
"attributes": [
|
1824
|
-
{
|
1825
|
-
"name": "default-selected",
|
1826
|
-
"description": "Sets the default selected control",
|
1827
|
-
"values": []
|
1828
|
-
},
|
1829
1029
|
{
|
1830
1030
|
"name": "multiple",
|
1831
1031
|
"description": "If true, allowes multiple items to be selected",
|
@@ -1835,40 +1035,9 @@
|
|
1835
1035
|
"references": []
|
1836
1036
|
},
|
1837
1037
|
{
|
1838
|
-
"name": "skf-select-option",
|
1839
|
-
"description": "The `<skf-select-option>` is a component
|
1840
|
-
"attributes": [
|
1841
|
-
{
|
1842
|
-
"name": "disabled",
|
1843
|
-
"description": "If true, prevents interaction with the option",
|
1844
|
-
"values": []
|
1845
|
-
},
|
1846
|
-
{
|
1847
|
-
"name": "icon",
|
1848
|
-
"description": "If defined, set an icon",
|
1849
|
-
"values": [{ "name": "SkfIcon['name']" }]
|
1850
|
-
},
|
1851
|
-
{
|
1852
|
-
"name": "icon-color",
|
1853
|
-
"description": "If defined, sets provided color on the icon",
|
1854
|
-
"values": [{ "name": "SeverityFgColor" }]
|
1855
|
-
},
|
1856
|
-
{
|
1857
|
-
"name": "selected",
|
1858
|
-
"description": "If true, sets the option as selected",
|
1859
|
-
"values": []
|
1860
|
-
},
|
1861
|
-
{
|
1862
|
-
"name": "short-label",
|
1863
|
-
"description": "If defined, sets a short label",
|
1864
|
-
"values": []
|
1865
|
-
},
|
1866
|
-
{
|
1867
|
-
"name": "value",
|
1868
|
-
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
1869
|
-
"values": []
|
1870
|
-
}
|
1871
|
-
],
|
1038
|
+
"name": "skf-select-option-group",
|
1039
|
+
"description": "The `<skf-select-option-group>` is a component that groups select-options\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
|
1040
|
+
"attributes": [{ "name": "label", "values": [] }],
|
1872
1041
|
"references": []
|
1873
1042
|
},
|
1874
1043
|
{
|
@@ -1883,170 +1052,12 @@
|
|
1883
1052
|
{
|
1884
1053
|
"name": "icon",
|
1885
1054
|
"description": "If defined, displays leading/provided icon",
|
1886
|
-
"values": [
|
1887
|
-
{ "name": "arrowDown" },
|
1888
|
-
{ "name": "arrowDownUp" },
|
1889
|
-
{ "name": "arrowLeft" },
|
1890
|
-
{ "name": "arrowRight" },
|
1891
|
-
{ "name": "arrowUp" },
|
1892
|
-
{ "name": "article" },
|
1893
|
-
{ "name": "artificialIntelligence" },
|
1894
|
-
{ "name": "asset" },
|
1895
|
-
{ "name": "attachment" },
|
1896
|
-
{ "name": "bandCursor" },
|
1897
|
-
{ "name": "bands" },
|
1898
|
-
{ "name": "batteryEmpty" },
|
1899
|
-
{ "name": "batteryFull" },
|
1900
|
-
{ "name": "batteryLow" },
|
1901
|
-
{ "name": "bearingFault" },
|
1902
|
-
{ "name": "book" },
|
1903
|
-
{ "name": "bulb" },
|
1904
|
-
{ "name": "burger" },
|
1905
|
-
{ "name": "cPM" },
|
1906
|
-
{ "name": "calendar" },
|
1907
|
-
{ "name": "calendarBooked" },
|
1908
|
-
{ "name": "calendarEmpty" },
|
1909
|
-
{ "name": "calendarNotBooked" },
|
1910
|
-
{ "name": "calendarRecurring" },
|
1911
|
-
{ "name": "caretDown" },
|
1912
|
-
{ "name": "caretUp" },
|
1913
|
-
{ "name": "caretUpDown" },
|
1914
|
-
{ "name": "chat" },
|
1915
|
-
{ "name": "check" },
|
1916
|
-
{ "name": "checkCircle" },
|
1917
|
-
{ "name": "checkSmall" },
|
1918
|
-
{ "name": "chevronDown" },
|
1919
|
-
{ "name": "chevronLeft" },
|
1920
|
-
{ "name": "chevronRight" },
|
1921
|
-
{ "name": "chevronUp" },
|
1922
|
-
{ "name": "chevronUpDown" },
|
1923
|
-
{ "name": "close" },
|
1924
|
-
{ "name": "closeAllFaults" },
|
1925
|
-
{ "name": "closeFault" },
|
1926
|
-
{ "name": "closeSmall" },
|
1927
|
-
{ "name": "columnGraph" },
|
1928
|
-
{ "name": "comment" },
|
1929
|
-
{ "name": "connection1" },
|
1930
|
-
{ "name": "connection2" },
|
1931
|
-
{ "name": "connection3" },
|
1932
|
-
{ "name": "connection4" },
|
1933
|
-
{ "name": "danger" },
|
1934
|
-
{ "name": "defectFrequencies" },
|
1935
|
-
{ "name": "defectFrequenciesAlternative" },
|
1936
|
-
{ "name": "doubleChevronLeft" },
|
1937
|
-
{ "name": "doubleChevronRight" },
|
1938
|
-
{ "name": "download" },
|
1939
|
-
{ "name": "draft" },
|
1940
|
-
{ "name": "draftFilled" },
|
1941
|
-
{ "name": "draftOutlined" },
|
1942
|
-
{ "name": "dragNDrop" },
|
1943
|
-
{ "name": "drop" },
|
1944
|
-
{ "name": "duplicate" },
|
1945
|
-
{ "name": "edit" },
|
1946
|
-
{ "name": "emailFilled" },
|
1947
|
-
{ "name": "emailOutlined" },
|
1948
|
-
{ "name": "exclamation" },
|
1949
|
-
{ "name": "eye" },
|
1950
|
-
{ "name": "eyeHidden" },
|
1951
|
-
{ "name": "eyeVisible" },
|
1952
|
-
{ "name": "filter" },
|
1953
|
-
{ "name": "forbidden" },
|
1954
|
-
{ "name": "fullScreen" },
|
1955
|
-
{ "name": "fullScreenExit" },
|
1956
|
-
{ "name": "functionalLocation" },
|
1957
|
-
{ "name": "harmonicCursor" },
|
1958
|
-
{ "name": "heatmap" },
|
1959
|
-
{ "name": "hierarchy" },
|
1960
|
-
{ "name": "history" },
|
1961
|
-
{ "name": "historyAlt" },
|
1962
|
-
{ "name": "hourglassFramedFilled" },
|
1963
|
-
{ "name": "hourglassFramedOutlined" },
|
1964
|
-
{ "name": "hourglassOutlined" },
|
1965
|
-
{ "name": "hz" },
|
1966
|
-
{ "name": "iMX" },
|
1967
|
-
{ "name": "image" },
|
1968
|
-
{ "name": "infoCircleFilled" },
|
1969
|
-
{ "name": "infoCircleOutlined" },
|
1970
|
-
{ "name": "integration" },
|
1971
|
-
{ "name": "kebab" },
|
1972
|
-
{ "name": "link" },
|
1973
|
-
{ "name": "listGroup" },
|
1974
|
-
{ "name": "listItem" },
|
1975
|
-
{ "name": "locationPin" },
|
1976
|
-
{ "name": "lock" },
|
1977
|
-
{ "name": "logOut" },
|
1978
|
-
{ "name": "meatballs" },
|
1979
|
-
{ "name": "microphone" },
|
1980
|
-
{ "name": "minus" },
|
1981
|
-
{ "name": "minusSmall" },
|
1982
|
-
{ "name": "noData" },
|
1983
|
-
{ "name": "o" },
|
1984
|
-
{ "name": "openInNew" },
|
1985
|
-
{ "name": "overlayBaseline" },
|
1986
|
-
{ "name": "pDF" },
|
1987
|
-
{ "name": "paper" },
|
1988
|
-
{ "name": "pause" },
|
1989
|
-
{ "name": "pieChart" },
|
1990
|
-
{ "name": "pin" },
|
1991
|
-
{ "name": "play" },
|
1992
|
-
{ "name": "plus" },
|
1993
|
-
{ "name": "powerOff" },
|
1994
|
-
{ "name": "printer" },
|
1995
|
-
{ "name": "proCollect" },
|
1996
|
-
{ "name": "recAction" },
|
1997
|
-
{ "name": "received" },
|
1998
|
-
{ "name": "refresh" },
|
1999
|
-
{ "name": "reorder" },
|
2000
|
-
{ "name": "replace" },
|
2001
|
-
{ "name": "reply" },
|
2002
|
-
{ "name": "rewalkableRoute" },
|
2003
|
-
{ "name": "routes" },
|
2004
|
-
{ "name": "search" },
|
2005
|
-
{ "name": "send" },
|
2006
|
-
{ "name": "sensorA" },
|
2007
|
-
{ "name": "sensorB" },
|
2008
|
-
{ "name": "settings" },
|
2009
|
-
{ "name": "sidebandCursor" },
|
2010
|
-
{ "name": "singleCursor" },
|
2011
|
-
{ "name": "spectrum" },
|
2012
|
-
{ "name": "starFilled" },
|
2013
|
-
{ "name": "starOutlined" },
|
2014
|
-
{ "name": "statusCircle" },
|
2015
|
-
{ "name": "stop" },
|
2016
|
-
{ "name": "structuralVibration" },
|
2017
|
-
{ "name": "sync" },
|
2018
|
-
{ "name": "timewave" },
|
2019
|
-
{ "name": "trash" },
|
2020
|
-
{ "name": "trend" },
|
2021
|
-
{ "name": "trendingUp" },
|
2022
|
-
{ "name": "undo" },
|
2023
|
-
{ "name": "unknownCircle" },
|
2024
|
-
{ "name": "unknownDiamond" },
|
2025
|
-
{ "name": "unlink" },
|
2026
|
-
{ "name": "unlock" },
|
2027
|
-
{ "name": "unscheduledAction" },
|
2028
|
-
{ "name": "upload" },
|
2029
|
-
{ "name": "user" },
|
2030
|
-
{ "name": "viewFull" },
|
2031
|
-
{ "name": "viewHorizontal" },
|
2032
|
-
{ "name": "viewVertical" },
|
2033
|
-
{ "name": "warning" },
|
2034
|
-
{ "name": "warningCircle" },
|
2035
|
-
{ "name": "warningDiamond" },
|
2036
|
-
{ "name": "zoomIn" },
|
2037
|
-
{ "name": "zoomOut" }
|
2038
|
-
]
|
1055
|
+
"values": [{ "name": "Icon" }]
|
2039
1056
|
},
|
2040
1057
|
{
|
2041
1058
|
"name": "color",
|
2042
1059
|
"description": "If defined, gives the supplied appearance",
|
2043
|
-
"values": [
|
2044
|
-
{ "name": "warning" },
|
2045
|
-
{ "name": "success" },
|
2046
|
-
{ "name": "info" },
|
2047
|
-
{ "name": "error" },
|
2048
|
-
{ "name": "alert" }
|
2049
|
-
]
|
1060
|
+
"values": [{ "name": "Severity" }]
|
2050
1061
|
},
|
2051
1062
|
{
|
2052
1063
|
"name": "removable",
|
@@ -2058,11 +1069,16 @@
|
|
2058
1069
|
},
|
2059
1070
|
{
|
2060
1071
|
"name": "skf-select",
|
2061
|
-
"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---\n\n\n### **Events:**\n - **change** - Fired when the selected option(s) changes\n- **invalid** - Fired when the select is invalid\n- **reset** - Fired when the form is reset\n- **skf-select
|
1072
|
+
"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\n---\n\n\n### **Events:**\n - **change** - Fired when the selected option(s) changes\n- **invalid** - Fired when the select is invalid\n- **reset** - Fired when the form is reset\n- **skf-select-dropdown** - {detail: {expanded: boolean}} Fired when the select dropdown is toggled\n- **skf-select-option-select** - {detail: {value: string | null, option: SkfSelectOption}} Fired when the select dropdown is toggled\n\n### **Slots:**\n - _default_ - The select's placeholder content",
|
2062
1073
|
"attributes": [
|
2063
1074
|
{
|
2064
1075
|
"name": "disabled",
|
2065
|
-
"description": "If true, the select is disabled
|
1076
|
+
"description": "If true, the select is disabled",
|
1077
|
+
"values": []
|
1078
|
+
},
|
1079
|
+
{
|
1080
|
+
"name": "required",
|
1081
|
+
"description": "If true, the select is required",
|
2066
1082
|
"values": []
|
2067
1083
|
},
|
2068
1084
|
{
|
@@ -2123,7 +1139,7 @@
|
|
2123
1139
|
{
|
2124
1140
|
"name": "severity",
|
2125
1141
|
"description": "If defined, displays provided severity state",
|
2126
|
-
"values": [{ "name": "
|
1142
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
2127
1143
|
},
|
2128
1144
|
{
|
2129
1145
|
"name": "show-valid",
|
@@ -2139,9 +1155,40 @@
|
|
2139
1155
|
"references": []
|
2140
1156
|
},
|
2141
1157
|
{
|
2142
|
-
"name": "skf-select-option
|
2143
|
-
"description": "The `<skf-select-option
|
2144
|
-
"attributes": [
|
1158
|
+
"name": "skf-select-option",
|
1159
|
+
"description": "The `<skf-select-option>` is a component is used nested in a skf-select or skf-select-option-group.\n---\n\n\n### **Events:**\n - **skf-select-option-select** - {detail: { value: string | null, option: SkfSelectOption }} Fires when the option is selected/deselected.\n\n### **Slots:**\n - _default_ - The option's text content\n- **icon** - The option's slot for icon or custom meta information (svg).",
|
1160
|
+
"attributes": [
|
1161
|
+
{
|
1162
|
+
"name": "disabled",
|
1163
|
+
"description": "If true, prevents interaction with the option",
|
1164
|
+
"values": []
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
"name": "icon",
|
1168
|
+
"description": "If defined, set an icon",
|
1169
|
+
"values": [{ "name": "Icon" }]
|
1170
|
+
},
|
1171
|
+
{
|
1172
|
+
"name": "icon-color",
|
1173
|
+
"description": "If defined, sets provided color on the icon",
|
1174
|
+
"values": [{ "name": "IconColor" }]
|
1175
|
+
},
|
1176
|
+
{
|
1177
|
+
"name": "selected",
|
1178
|
+
"description": "If true, sets the option as selected",
|
1179
|
+
"values": []
|
1180
|
+
},
|
1181
|
+
{
|
1182
|
+
"name": "short-label",
|
1183
|
+
"description": "If defined, sets a short label",
|
1184
|
+
"values": []
|
1185
|
+
},
|
1186
|
+
{
|
1187
|
+
"name": "value",
|
1188
|
+
"description": "Returns or sets the tags value. If value is omitted, defaults to the tags text.",
|
1189
|
+
"values": []
|
1190
|
+
}
|
1191
|
+
],
|
2145
1192
|
"references": []
|
2146
1193
|
},
|
2147
1194
|
{
|
@@ -2169,7 +1216,7 @@
|
|
2169
1216
|
"description": "The `<skf-stepper>` is a component that displays a list of actions or options.\n---\n\n\n### **Events:**\n - **skf-stepper-item-select** - Dispatched when the stepper item is selected\n\n### **Slots:**\n - _default_ - One or more `<skf-stepper-item>`",
|
2170
1217
|
"attributes": [
|
2171
1218
|
{
|
2172
|
-
"name": "
|
1219
|
+
"name": "active-index",
|
2173
1220
|
"description": "Sets the active item",
|
2174
1221
|
"values": []
|
2175
1222
|
},
|
@@ -2372,12 +1419,7 @@
|
|
2372
1419
|
{
|
2373
1420
|
"name": "severity",
|
2374
1421
|
"description": "If defined, displays provided severity state",
|
2375
|
-
"values": [
|
2376
|
-
{ "name": "success" },
|
2377
|
-
{ "name": "info" },
|
2378
|
-
{ "name": "warning" },
|
2379
|
-
{ "name": "alert" }
|
2380
|
-
]
|
1422
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
2381
1423
|
},
|
2382
1424
|
{
|
2383
1425
|
"name": "show-valid",
|
@@ -2420,17 +1462,17 @@
|
|
2420
1462
|
{
|
2421
1463
|
"name": "icon",
|
2422
1464
|
"description": "If defined, displays leading icon",
|
2423
|
-
"values": [{ "name": "
|
1465
|
+
"values": [{ "name": "Icon" }]
|
2424
1466
|
},
|
2425
1467
|
{
|
2426
1468
|
"name": "persistent",
|
2427
1469
|
"description": "If true, renders with an close button and sets aria-role to `status`",
|
2428
|
-
"values": [
|
1470
|
+
"values": []
|
2429
1471
|
},
|
2430
1472
|
{
|
2431
1473
|
"name": "severity",
|
2432
1474
|
"description": "If defined, gives the supplied appearance",
|
2433
|
-
"values": [{ "name": "
|
1475
|
+
"values": [{ "name": "Severity" }]
|
2434
1476
|
},
|
2435
1477
|
{
|
2436
1478
|
"name": "timer",
|