@skf-design-system/ui-components 1.0.1-beta.1 → 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 +13 -26
- 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 +9 -13
- package/dist/components/accordion/accordion.component.js +12 -13
- 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 +6 -10
- package/dist/components/alert/alert.component.js +15 -16
- 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 +2 -2
- 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 +18 -30
- package/dist/components/card/card.styles.js +25 -28
- package/dist/components/checkbox/checkbox.component.d.ts +16 -14
- package/dist/components/checkbox/checkbox.component.js +5 -5
- 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.d.ts +5 -0
- package/dist/components/date-picker/datepicker.calendar.component.js +128 -95
- package/dist/components/date-picker/datepicker.calendar.styles.js +35 -25
- package/dist/components/date-picker/datepicker.component.d.ts +5 -0
- package/dist/components/date-picker/datepicker.component.js +117 -97
- package/dist/components/date-picker/datepicker.helpers.d.ts +3 -2
- package/dist/components/date-picker/datepicker.helpers.js +46 -39
- package/dist/components/date-picker/datepicker.styles.js +14 -26
- package/dist/components/date-picker-input/datepicker-input.component.d.ts +14 -5
- package/dist/components/date-picker-input/datepicker-input.component.js +264 -219
- package/dist/components/date-picker-input/datepicker-input.helpers.d.ts +36 -2
- package/dist/components/date-picker-input/datepicker-input.helpers.js +25 -23
- package/dist/components/date-picker-input/datepicker-input.styles.js +6 -10
- package/dist/components/dialog/dialog.component.d.ts +20 -29
- package/dist/components/dialog/dialog.component.js +85 -75
- package/dist/components/dialog/dialog.styles.js +4 -4
- package/dist/components/divider/divider.component.d.ts +4 -8
- package/dist/components/divider/divider.component.js +24 -46
- package/dist/components/divider/divider.styles.js +34 -30
- package/dist/components/drawer/drawer.component.d.ts +61 -0
- package/dist/components/drawer/drawer.component.js +125 -0
- package/dist/components/drawer/drawer.d.ts +8 -0
- package/dist/components/drawer/drawer.js +6 -0
- package/dist/components/drawer/drawer.styles.js +71 -0
- package/dist/components/header/header.component.d.ts +46 -0
- package/dist/components/header/header.component.js +116 -0
- package/dist/components/header/header.d.ts +8 -0
- package/dist/components/header/header.js +6 -0
- package/dist/components/header/header.styles.js +68 -0
- package/dist/components/heading/heading.component.d.ts +3 -11
- package/dist/components/heading/heading.component.js +24 -23
- package/dist/components/heading/heading.styles.d.ts +1 -2
- package/dist/components/heading/heading.styles.js +1 -1
- 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 +138 -125
- package/dist/components/input/input.controllers.d.ts +20 -6
- package/dist/components/input/input.controllers.js +14 -10
- package/dist/components/link/link.component.d.ts +12 -14
- package/dist/components/link/link.component.js +35 -34
- package/dist/components/link/link.styles.d.ts +1 -2
- package/dist/components/link/link.styles.js +24 -20
- 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 +10 -8
- package/dist/components/menu/menu.component.js +8 -10
- package/dist/components/nav/nav-item.component.d.ts +18 -0
- package/dist/components/nav/nav-item.component.js +38 -0
- package/dist/components/nav/nav-item.d.ts +8 -0
- package/dist/components/nav/nav-item.js +6 -0
- package/dist/components/nav/nav-item.styles.js +39 -0
- package/dist/components/nav/nav.component.d.ts +17 -0
- package/dist/components/nav/nav.component.js +34 -0
- package/dist/components/nav/nav.d.ts +8 -0
- package/dist/components/nav/nav.js +6 -0
- package/dist/components/nav/nav.styles.d.ts +1 -0
- package/dist/components/nav/nav.styles.js +17 -0
- package/dist/components/popover/popover.component.d.ts +11 -8
- package/dist/components/popover/popover.component.js +24 -26
- 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 +19 -13
- package/dist/components/radio/radio.component.js +12 -12
- package/dist/components/radio/radio.styles.d.ts +1 -2
- package/dist/components/radio/radio.styles.js +1 -1
- package/dist/components/segmented-button/segmented-button-item.component.d.ts +36 -0
- package/dist/components/segmented-button/segmented-button-item.component.js +56 -0
- package/dist/components/segmented-button/segmented-button-item.d.ts +8 -0
- package/dist/components/segmented-button/segmented-button-item.js +6 -0
- package/dist/components/segmented-button/segmented-button-item.styles.d.ts +1 -0
- package/dist/components/segmented-button/segmented-button-item.styles.js +62 -0
- package/dist/components/segmented-button/segmented-button.component.d.ts +30 -0
- package/dist/components/segmented-button/segmented-button.component.js +73 -0
- package/dist/components/segmented-button/segmented-button.d.ts +8 -0
- package/dist/components/segmented-button/segmented-button.js +6 -0
- package/dist/components/segmented-button/segmented-button.styles.d.ts +1 -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/select-option-group.style.d.ts +1 -0
- 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-option.controllers.d.ts +15 -0
- package/dist/components/select/select-option.styles.d.ts +1 -0
- package/dist/components/select/select.component.d.ts +16 -15
- package/dist/components/select/select.component.js +19 -19
- package/dist/components/select/select.controllers.d.ts +21 -10
- package/dist/components/select/select.controllers.js +31 -23
- 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-item.styles.d.ts +1 -0
- package/dist/components/stepper/stepper.component.d.ts +4 -3
- 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.d.ts +7 -6
- package/dist/components/switch/switch.component.js +21 -21
- 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 +14 -16
- package/dist/components/tag/tag.component.js +36 -39
- package/dist/components/textarea/textarea.component.d.ts +10 -11
- package/dist/components/textarea/textarea.component.js +65 -67
- 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 +6 -5
- 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 +7 -7
- package/dist/components/tooltip/tooltip.component.js +16 -11
- package/dist/custom-elements.json +2718 -2073
- package/dist/index.d.ts +16 -6
- package/dist/index.js +103 -75
- package/dist/internal/base-classes/popover/popover.base.d.ts +24 -9
- package/dist/internal/base-classes/popover/popover.base.js +138 -77
- package/dist/internal/base-classes/popover/popover.styles.js +14 -1
- 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/controllers/elementOverflowController.d.ts +13 -0
- package/dist/internal/controllers/popover.controller.d.ts +12 -7
- package/dist/internal/controllers/popover.controller.js +9 -14
- package/dist/internal/helpers/hintSeverity.d.ts +2 -2
- package/dist/internal/helpers/hintSeverity.js +1 -1
- package/dist/internal/helpers/utilityTypes.d.ts +1 -1
- package/dist/internal/helpers/uuid.d.ts +15 -0
- package/dist/internal/helpers/uuid.js +14 -0
- package/dist/internal/storybook/styles.d.ts +1 -0
- 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/form-field.styles.js +11 -6
- package/dist/styles/global.css +1 -1
- package/dist/types/jsx/custom-element-jsx.d.ts +673 -1310
- package/dist/types/vue/index.d.ts +456 -319
- package/dist/vscode.html-custom-data.json +402 -1080
- package/dist/web-types.json +986 -767
- package/package.json +44 -55
- 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/components/select-option/select-option.controllers.d.ts +0 -9
- package/dist/internal/constants/heading.d.ts +0 -2
- package/dist/react/index.d.ts +0 -36
- package/dist/react/index.js +0 -36
- package/dist/react/skf-accordion/index.d.ts +0 -3
- package/dist/react/skf-accordion/index.js +0 -13
- package/dist/react/skf-alert/index.d.ts +0 -9
- package/dist/react/skf-alert/index.js +0 -17
- package/dist/react/skf-breadcrumb/index.d.ts +0 -9
- package/dist/react/skf-breadcrumb/index.js +0 -17
- package/dist/react/skf-breadcrumb-item/index.d.ts +0 -3
- package/dist/react/skf-breadcrumb-item/index.js +0 -13
- package/dist/react/skf-button/index.d.ts +0 -9
- package/dist/react/skf-button/index.js +0 -17
- package/dist/react/skf-card/index.d.ts +0 -3
- package/dist/react/skf-card/index.js +0 -13
- package/dist/react/skf-checkbox/index.d.ts +0 -9
- package/dist/react/skf-checkbox/index.js +0 -17
- package/dist/react/skf-collapse/index.d.ts +0 -9
- package/dist/react/skf-collapse/index.js +0 -17
- package/dist/react/skf-datepicker/index.d.ts +0 -12
- package/dist/react/skf-datepicker/index.js +0 -18
- package/dist/react/skf-dialog/index.d.ts +0 -15
- package/dist/react/skf-dialog/index.js +0 -19
- package/dist/react/skf-divider/index.d.ts +0 -3
- package/dist/react/skf-divider/index.js +0 -13
- package/dist/react/skf-heading/index.d.ts +0 -3
- package/dist/react/skf-heading/index.js +0 -13
- package/dist/react/skf-icon/index.d.ts +0 -3
- package/dist/react/skf-icon/index.js +0 -13
- package/dist/react/skf-input/index.d.ts +0 -12
- package/dist/react/skf-input/index.js +0 -18
- package/dist/react/skf-link/index.d.ts +0 -3
- package/dist/react/skf-link/index.js +0 -13
- package/dist/react/skf-loader/index.d.ts +0 -3
- package/dist/react/skf-loader/index.js +0 -13
- package/dist/react/skf-logo/index.d.ts +0 -3
- package/dist/react/skf-logo/index.js +0 -13
- package/dist/react/skf-menu/index.d.ts +0 -12
- package/dist/react/skf-menu/index.js +0 -18
- package/dist/react/skf-menu-item/index.d.ts +0 -27
- package/dist/react/skf-menu-item/index.js +0 -23
- package/dist/react/skf-popover/index.d.ts +0 -12
- package/dist/react/skf-popover/index.js +0 -18
- package/dist/react/skf-progress/index.d.ts +0 -3
- package/dist/react/skf-progress/index.js +0 -13
- package/dist/react/skf-radio/index.d.ts +0 -9
- package/dist/react/skf-radio/index.js +0 -17
- package/dist/react/skf-select/index.d.ts +0 -21
- package/dist/react/skf-select/index.js +0 -21
- package/dist/react/skf-select-option/index.d.ts +0 -9
- package/dist/react/skf-select-option/index.js +0 -17
- package/dist/react/skf-select-option-group/index.d.ts +0 -3
- package/dist/react/skf-select-option-group/index.js +0 -13
- package/dist/react/skf-stepper/index.d.ts +0 -9
- package/dist/react/skf-stepper/index.js +0 -17
- package/dist/react/skf-stepper-item/index.d.ts +0 -9
- package/dist/react/skf-stepper-item/index.js +0 -17
- package/dist/react/skf-switch/index.d.ts +0 -3
- package/dist/react/skf-switch/index.js +0 -13
- package/dist/react/skf-tab/index.d.ts +0 -12
- package/dist/react/skf-tab/index.js +0 -18
- package/dist/react/skf-tab-group/index.d.ts +0 -3
- package/dist/react/skf-tab-group/index.js +0 -13
- package/dist/react/skf-tab-panel/index.d.ts +0 -3
- package/dist/react/skf-tab-panel/index.js +0 -13
- package/dist/react/skf-tag/index.d.ts +0 -3
- package/dist/react/skf-tag/index.js +0 -13
- package/dist/react/skf-textarea/index.d.ts +0 -12
- package/dist/react/skf-textarea/index.js +0 -18
- package/dist/react/skf-toast/index.d.ts +0 -3
- package/dist/react/skf-toast/index.js +0 -13
- package/dist/react/skf-toast-wrapper/index.d.ts +0 -3
- package/dist/react/skf-toast-wrapper/index.js +0 -13
- package/dist/react/skf-tooltip/index.d.ts +0 -12
- package/dist/react/skf-tooltip/index.js +0 -18
- /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/{select-option-group/select-option-group.style.d.ts → drawer/drawer.styles.d.ts} +0 -0
- /package/dist/components/{select-option/select-option.styles.d.ts → header/header.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/{stepper-item/stepper-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/{toast-wrapper/toast-wrapper.styles.d.ts → nav/nav-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-group → select}/select-option-group.style.js +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/{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/{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
@@ -2,9 +2,73 @@
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/microsoft/vscode-html-languageservice/main/docs/customData.schema.json",
|
3
3
|
"version": 1.1,
|
4
4
|
"tags": [
|
5
|
+
{
|
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.\n---\n",
|
8
|
+
"attributes": [
|
9
|
+
{
|
10
|
+
"name": "color",
|
11
|
+
"description": "Sets the color of the icon",
|
12
|
+
"values": [{ "name": "IconColor" }]
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"name": "label",
|
16
|
+
"description": "If defined, adds an alternate description to use for assistive devices",
|
17
|
+
"values": []
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"name": "name",
|
21
|
+
"description": "Name of the icon to display",
|
22
|
+
"values": [{ "name": "Icon" }]
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"name": "size",
|
26
|
+
"description": "Size of the icon",
|
27
|
+
"values": [{ "name": "SkfIconSize" }]
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"references": []
|
31
|
+
},
|
32
|
+
{
|
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",
|
35
|
+
"attributes": [
|
36
|
+
{
|
37
|
+
"name": "animated",
|
38
|
+
"description": "If true, will animate the expand/accordion-item state",
|
39
|
+
"values": []
|
40
|
+
},
|
41
|
+
{
|
42
|
+
"name": "expanded",
|
43
|
+
"description": "If true, will set the accordion-item to be expanded by default",
|
44
|
+
"values": []
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"name": "heading",
|
48
|
+
"description": "Heading for the accordion-item",
|
49
|
+
"values": []
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"name": "heading-as",
|
53
|
+
"description": "Defines which heading element will be rendered",
|
54
|
+
"values": [{ "name": "SkfAccordionItemHeadingType" }]
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"name": "small",
|
58
|
+
"description": "If true, renders the small version",
|
59
|
+
"values": []
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"name": "truncate",
|
63
|
+
"description": "If true, will truncate the heading in accordion-item state",
|
64
|
+
"values": []
|
65
|
+
}
|
66
|
+
],
|
67
|
+
"references": []
|
68
|
+
},
|
5
69
|
{
|
6
70
|
"name": "skf-accordion",
|
7
|
-
"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)",
|
8
72
|
"attributes": [
|
9
73
|
{
|
10
74
|
"name": "animated",
|
@@ -14,12 +78,7 @@
|
|
14
78
|
{
|
15
79
|
"name": "heading-as",
|
16
80
|
"description": "Defines which heading element will be rendered",
|
17
|
-
"values": [
|
18
|
-
{ "name": "h1" },
|
19
|
-
{ "name": "h2" },
|
20
|
-
{ "name": "h3" },
|
21
|
-
{ "name": "h4" }
|
22
|
-
]
|
81
|
+
"values": [{ "name": "SkfAccordionItemHeadingType" }]
|
23
82
|
},
|
24
83
|
{
|
25
84
|
"name": "gap",
|
@@ -46,7 +105,7 @@
|
|
46
105
|
},
|
47
106
|
{
|
48
107
|
"name": "skf-alert",
|
49
|
-
"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",
|
50
109
|
"attributes": [
|
51
110
|
{
|
52
111
|
"name": "button-label",
|
@@ -56,7 +115,7 @@
|
|
56
115
|
{
|
57
116
|
"name": "icon",
|
58
117
|
"description": "If defined, displays leading icon",
|
59
|
-
"values": [{ "name": "
|
118
|
+
"values": [{ "name": "Icon" }]
|
60
119
|
},
|
61
120
|
{
|
62
121
|
"name": "persistent",
|
@@ -66,20 +125,26 @@
|
|
66
125
|
{
|
67
126
|
"name": "severity",
|
68
127
|
"description": "If defined, gives the supplied appearance",
|
69
|
-
"values": [
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
128
|
+
"values": [{ "name": "Severity" }]
|
129
|
+
}
|
130
|
+
],
|
131
|
+
"references": []
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"name": "skf-breadcrumb-item",
|
135
|
+
"description": "The `<skf-breadcrumb-item>` is used in conjunction with the `<skf-breadcrumb>` component\n---\n\n\n### **Slots:**\n - _default_ - Label of the breadcrumb item",
|
136
|
+
"attributes": [
|
137
|
+
{
|
138
|
+
"name": "href",
|
139
|
+
"description": "If defined, loads url on click",
|
140
|
+
"values": []
|
76
141
|
}
|
77
142
|
],
|
78
143
|
"references": []
|
79
144
|
},
|
80
145
|
{
|
81
146
|
"name": "skf-breadcrumb",
|
82
|
-
"description": "The `<skf-breadcrumb>` component consists of multiple `<skf-breadcrumb-item>`, working together.\n---\n\n\n### **Events:**\n - **click** - Fired when the item is clicked\n\n### **Slots:**\n - _default_ - One or more `<skf-breadcrumb-item>`",
|
147
|
+
"description": "The `<skf-breadcrumb>` component consists of multiple `<skf-breadcrumb-item>`, working together.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/3338ef-breadcrumbs) for design principles.\n---\n\n\n### **Events:**\n - **click** - Fired when the item is clicked\n\n### **Slots:**\n - _default_ - One or more `<skf-breadcrumb-item>`",
|
83
148
|
"attributes": [
|
84
149
|
{
|
85
150
|
"name": "label",
|
@@ -95,20 +160,30 @@
|
|
95
160
|
"references": []
|
96
161
|
},
|
97
162
|
{
|
98
|
-
"name": "skf-
|
99
|
-
"description": "The `<skf-
|
163
|
+
"name": "skf-loader",
|
164
|
+
"description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
|
100
165
|
"attributes": [
|
101
166
|
{
|
102
|
-
"name": "
|
103
|
-
"description": "
|
167
|
+
"name": "aria-label",
|
168
|
+
"description": "Defines the aria-label",
|
169
|
+
"values": []
|
170
|
+
},
|
171
|
+
{
|
172
|
+
"name": "invert",
|
173
|
+
"description": "If true, inverts the color (to be used on colored backgrounds)",
|
104
174
|
"values": []
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"name": "size",
|
178
|
+
"description": "Defines the size of the loader",
|
179
|
+
"values": [{ "name": "md" }, { "name": "sm" }]
|
105
180
|
}
|
106
181
|
],
|
107
182
|
"references": []
|
108
183
|
},
|
109
184
|
{
|
110
185
|
"name": "skf-button",
|
111
|
-
"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",
|
112
187
|
"attributes": [
|
113
188
|
{
|
114
189
|
"name": "destructive",
|
@@ -123,163 +198,11 @@
|
|
123
198
|
{
|
124
199
|
"name": "icon",
|
125
200
|
"description": "If provided, renders an icon before or after the text",
|
126
|
-
"values": [
|
127
|
-
{ "name": "arrowDown" },
|
128
|
-
{ "name": "arrowDownUp" },
|
129
|
-
{ "name": "arrowLeft" },
|
130
|
-
{ "name": "arrowRight" },
|
131
|
-
{ "name": "arrowUp" },
|
132
|
-
{ "name": "article" },
|
133
|
-
{ "name": "artificialIntelligence" },
|
134
|
-
{ "name": "asset" },
|
135
|
-
{ "name": "attachment" },
|
136
|
-
{ "name": "bandCursor" },
|
137
|
-
{ "name": "bands" },
|
138
|
-
{ "name": "batteryEmpty" },
|
139
|
-
{ "name": "batteryFull" },
|
140
|
-
{ "name": "batteryLow" },
|
141
|
-
{ "name": "bearingFault" },
|
142
|
-
{ "name": "book" },
|
143
|
-
{ "name": "bulb" },
|
144
|
-
{ "name": "burger" },
|
145
|
-
{ "name": "cPM" },
|
146
|
-
{ "name": "calendar" },
|
147
|
-
{ "name": "calendarBooked" },
|
148
|
-
{ "name": "calendarEmpty" },
|
149
|
-
{ "name": "calendarNotBooked" },
|
150
|
-
{ "name": "calendarRecurring" },
|
151
|
-
{ "name": "caretDown" },
|
152
|
-
{ "name": "caretUp" },
|
153
|
-
{ "name": "caretUpDown" },
|
154
|
-
{ "name": "chat" },
|
155
|
-
{ "name": "check" },
|
156
|
-
{ "name": "checkCircle" },
|
157
|
-
{ "name": "checkSmall" },
|
158
|
-
{ "name": "chevronDown" },
|
159
|
-
{ "name": "chevronLeft" },
|
160
|
-
{ "name": "chevronRight" },
|
161
|
-
{ "name": "chevronUp" },
|
162
|
-
{ "name": "chevronUpDown" },
|
163
|
-
{ "name": "close" },
|
164
|
-
{ "name": "closeAllFaults" },
|
165
|
-
{ "name": "closeFault" },
|
166
|
-
{ "name": "closeSmall" },
|
167
|
-
{ "name": "columnGraph" },
|
168
|
-
{ "name": "comment" },
|
169
|
-
{ "name": "connection1" },
|
170
|
-
{ "name": "connection2" },
|
171
|
-
{ "name": "connection3" },
|
172
|
-
{ "name": "connection4" },
|
173
|
-
{ "name": "danger" },
|
174
|
-
{ "name": "defectFrequencies" },
|
175
|
-
{ "name": "defectFrequenciesAlternative" },
|
176
|
-
{ "name": "doubleChevronLeft" },
|
177
|
-
{ "name": "doubleChevronRight" },
|
178
|
-
{ "name": "download" },
|
179
|
-
{ "name": "draft" },
|
180
|
-
{ "name": "draftFilled" },
|
181
|
-
{ "name": "draftOutlined" },
|
182
|
-
{ "name": "dragNDrop" },
|
183
|
-
{ "name": "drop" },
|
184
|
-
{ "name": "duplicate" },
|
185
|
-
{ "name": "edit" },
|
186
|
-
{ "name": "emailFilled" },
|
187
|
-
{ "name": "emailOutlined" },
|
188
|
-
{ "name": "exclamation" },
|
189
|
-
{ "name": "eye" },
|
190
|
-
{ "name": "eyeHidden" },
|
191
|
-
{ "name": "eyeVisible" },
|
192
|
-
{ "name": "filter" },
|
193
|
-
{ "name": "forbidden" },
|
194
|
-
{ "name": "fullScreen" },
|
195
|
-
{ "name": "fullScreenExit" },
|
196
|
-
{ "name": "functionalLocation" },
|
197
|
-
{ "name": "harmonicCursor" },
|
198
|
-
{ "name": "heatmap" },
|
199
|
-
{ "name": "hierarchy" },
|
200
|
-
{ "name": "history" },
|
201
|
-
{ "name": "historyAlt" },
|
202
|
-
{ "name": "hourglassFramedFilled" },
|
203
|
-
{ "name": "hourglassFramedOutlined" },
|
204
|
-
{ "name": "hourglassOutlined" },
|
205
|
-
{ "name": "hz" },
|
206
|
-
{ "name": "iMX" },
|
207
|
-
{ "name": "image" },
|
208
|
-
{ "name": "infoCircleFilled" },
|
209
|
-
{ "name": "infoCircleOutlined" },
|
210
|
-
{ "name": "integration" },
|
211
|
-
{ "name": "kebab" },
|
212
|
-
{ "name": "link" },
|
213
|
-
{ "name": "listGroup" },
|
214
|
-
{ "name": "listItem" },
|
215
|
-
{ "name": "locationPin" },
|
216
|
-
{ "name": "lock" },
|
217
|
-
{ "name": "logOut" },
|
218
|
-
{ "name": "meatballs" },
|
219
|
-
{ "name": "microphone" },
|
220
|
-
{ "name": "minus" },
|
221
|
-
{ "name": "minusSmall" },
|
222
|
-
{ "name": "noData" },
|
223
|
-
{ "name": "o" },
|
224
|
-
{ "name": "openInNew" },
|
225
|
-
{ "name": "overlayBaseline" },
|
226
|
-
{ "name": "pDF" },
|
227
|
-
{ "name": "paper" },
|
228
|
-
{ "name": "pause" },
|
229
|
-
{ "name": "pieChart" },
|
230
|
-
{ "name": "pin" },
|
231
|
-
{ "name": "play" },
|
232
|
-
{ "name": "plus" },
|
233
|
-
{ "name": "powerOff" },
|
234
|
-
{ "name": "printer" },
|
235
|
-
{ "name": "proCollect" },
|
236
|
-
{ "name": "recAction" },
|
237
|
-
{ "name": "received" },
|
238
|
-
{ "name": "refresh" },
|
239
|
-
{ "name": "reorder" },
|
240
|
-
{ "name": "replace" },
|
241
|
-
{ "name": "reply" },
|
242
|
-
{ "name": "rewalkableRoute" },
|
243
|
-
{ "name": "routes" },
|
244
|
-
{ "name": "search" },
|
245
|
-
{ "name": "send" },
|
246
|
-
{ "name": "sensorA" },
|
247
|
-
{ "name": "sensorB" },
|
248
|
-
{ "name": "settings" },
|
249
|
-
{ "name": "sidebandCursor" },
|
250
|
-
{ "name": "singleCursor" },
|
251
|
-
{ "name": "spectrum" },
|
252
|
-
{ "name": "starFilled" },
|
253
|
-
{ "name": "starOutlined" },
|
254
|
-
{ "name": "statusCircle" },
|
255
|
-
{ "name": "stop" },
|
256
|
-
{ "name": "structuralVibration" },
|
257
|
-
{ "name": "sync" },
|
258
|
-
{ "name": "timewave" },
|
259
|
-
{ "name": "trash" },
|
260
|
-
{ "name": "trend" },
|
261
|
-
{ "name": "trendingUp" },
|
262
|
-
{ "name": "undo" },
|
263
|
-
{ "name": "unknownCircle" },
|
264
|
-
{ "name": "unknownDiamond" },
|
265
|
-
{ "name": "unlink" },
|
266
|
-
{ "name": "unlock" },
|
267
|
-
{ "name": "unscheduledAction" },
|
268
|
-
{ "name": "upload" },
|
269
|
-
{ "name": "user" },
|
270
|
-
{ "name": "viewFull" },
|
271
|
-
{ "name": "viewHorizontal" },
|
272
|
-
{ "name": "viewVertical" },
|
273
|
-
{ "name": "warning" },
|
274
|
-
{ "name": "warningCircle" },
|
275
|
-
{ "name": "warningDiamond" },
|
276
|
-
{ "name": "zoomIn" },
|
277
|
-
{ "name": "zoomOut" }
|
278
|
-
]
|
201
|
+
"values": [{ "name": "Icon" }]
|
279
202
|
},
|
280
203
|
{
|
281
|
-
"name": "
|
282
|
-
"description": "If true,
|
204
|
+
"name": "icon-only",
|
205
|
+
"description": "If true, button will take a square shape",
|
283
206
|
"values": []
|
284
207
|
},
|
285
208
|
{
|
@@ -301,11 +224,7 @@
|
|
301
224
|
{
|
302
225
|
"name": "type",
|
303
226
|
"description": "If provided, changes the button type",
|
304
|
-
"values": [
|
305
|
-
{ "name": "button" },
|
306
|
-
{ "name": "submit" },
|
307
|
-
{ "name": "reset" }
|
308
|
-
]
|
227
|
+
"values": [{ "name": "SkfButtonType" }]
|
309
228
|
},
|
310
229
|
{
|
311
230
|
"name": "variant",
|
@@ -321,7 +240,7 @@
|
|
321
240
|
},
|
322
241
|
{
|
323
242
|
"name": "skf-card",
|
324
|
-
"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",
|
325
244
|
"attributes": [
|
326
245
|
{
|
327
246
|
"name": "no-border",
|
@@ -343,7 +262,7 @@
|
|
343
262
|
},
|
344
263
|
{
|
345
264
|
"name": "skf-checkbox",
|
346
|
-
"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.",
|
347
266
|
"attributes": [
|
348
267
|
{
|
349
268
|
"name": "disabled",
|
@@ -393,12 +312,7 @@
|
|
393
312
|
{
|
394
313
|
"name": "severity",
|
395
314
|
"description": "If defined, styles checkbox using provided severity",
|
396
|
-
"values": [
|
397
|
-
{ "name": "alert" },
|
398
|
-
{ "name": "success" },
|
399
|
-
{ "name": "info" },
|
400
|
-
{ "name": "warning" }
|
401
|
-
]
|
315
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
402
316
|
},
|
403
317
|
{
|
404
318
|
"name": "show-valid",
|
@@ -418,46 +332,9 @@
|
|
418
332
|
],
|
419
333
|
"references": []
|
420
334
|
},
|
421
|
-
{
|
422
|
-
"name": "skf-collapse",
|
423
|
-
"description": "The `<skf-collapse>` component is a general purpose container for content that can be collapsed / expanded.\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/6590bf-accordion) for design principles.\n---\n\n\n### **Events:**\n - **skf-collapse-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",
|
424
|
-
"attributes": [
|
425
|
-
{
|
426
|
-
"name": "animated",
|
427
|
-
"description": "If true, will animate the expand/collapse state",
|
428
|
-
"values": []
|
429
|
-
},
|
430
|
-
{
|
431
|
-
"name": "expanded",
|
432
|
-
"description": "If true, will set the collapse to be expanded by default",
|
433
|
-
"values": []
|
434
|
-
},
|
435
|
-
{
|
436
|
-
"name": "heading",
|
437
|
-
"description": "Heading for the collapse",
|
438
|
-
"values": []
|
439
|
-
},
|
440
|
-
{
|
441
|
-
"name": "heading-as",
|
442
|
-
"description": "Defines which heading element will be rendered",
|
443
|
-
"values": [{ "name": "h2" }, { "name": "h3" }, { "name": "h4" }]
|
444
|
-
},
|
445
|
-
{
|
446
|
-
"name": "small",
|
447
|
-
"description": "If true, renders the small version",
|
448
|
-
"values": []
|
449
|
-
},
|
450
|
-
{
|
451
|
-
"name": "truncate",
|
452
|
-
"description": "If true, will truncate the heading in collapsed state",
|
453
|
-
"values": []
|
454
|
-
}
|
455
|
-
],
|
456
|
-
"references": []
|
457
|
-
},
|
458
335
|
{
|
459
336
|
"name": "skf-datepicker",
|
460
|
-
"description": "A date picker component that allows users to select a date or a range of dates.\n---\n\n\n### **Events:**\n - **selected-date-changed** - When a date is selected\n- **selected-date-range-changed** - When a range of dates is selected\n\n### **Slots:**\n - _default_ - Default hint content placed inside the date picker\n\n### **CSS Properties:**\n - **--max-width** - The maximum width of the date picker _(default: undefined)_",
|
337
|
+
"description": "A date picker component that allows users to select a date or a range of dates.\n---\n\n\n### **Events:**\n - **selected-date-changed** - When a date is selected\n- **selected-date-range-changed** - When a range of dates is selected\n\n### **Methods:**\n - **gotoDate(date: _Date | string_)** - Navigates to the given date.\n\n### **Slots:**\n - _default_ - Default hint content placed inside the date picker\n\n### **CSS Properties:**\n - **--max-width** - The maximum width of the date picker _(default: undefined)_",
|
461
338
|
"attributes": [
|
462
339
|
{
|
463
340
|
"name": "locale",
|
@@ -493,9 +370,26 @@
|
|
493
370
|
],
|
494
371
|
"references": []
|
495
372
|
},
|
373
|
+
{
|
374
|
+
"name": "skf-heading",
|
375
|
+
"description": "The `<Heading>` component is to deliniate content on a page. When using, take note not to skip heading levels.<br>\nIt extends the interface of native html `<h1>` to `<h4>` elements.\n---\n\n\n### **Slots:**\n - _default_ - The headings content",
|
376
|
+
"attributes": [
|
377
|
+
{
|
378
|
+
"name": "as",
|
379
|
+
"description": "Controls which heading element will be rendered. Should not be used to affect appearance",
|
380
|
+
"values": [{ "name": "HeadingType" }]
|
381
|
+
},
|
382
|
+
{
|
383
|
+
"name": "styled-as",
|
384
|
+
"description": "If defined, changes the appearance of the heading",
|
385
|
+
"values": [{ "name": "HeadingType" }]
|
386
|
+
}
|
387
|
+
],
|
388
|
+
"references": []
|
389
|
+
},
|
496
390
|
{
|
497
391
|
"name": "skf-dialog",
|
498
|
-
"description": "The `<skf-dialog>` is a component that open up a dialog with the content provided\n---\n\n\n### **Events:**\n - **skf-dialog-
|
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)_",
|
499
393
|
"attributes": [
|
500
394
|
{
|
501
395
|
"name": "close-button-aria-label",
|
@@ -522,7 +416,11 @@
|
|
522
416
|
"description": "If defined, removes the inner padding",
|
523
417
|
"values": []
|
524
418
|
},
|
525
|
-
{
|
419
|
+
{
|
420
|
+
"name": "open",
|
421
|
+
"description": "If true, indicates that the dialog is active and is available for interaction",
|
422
|
+
"values": []
|
423
|
+
}
|
526
424
|
],
|
527
425
|
"references": []
|
528
426
|
},
|
@@ -533,13 +431,7 @@
|
|
533
431
|
{
|
534
432
|
"name": "color",
|
535
433
|
"description": "Defines the Divider color",
|
536
|
-
"values": [
|
537
|
-
{ "name": "emphasised" },
|
538
|
-
{ "name": "primary" },
|
539
|
-
{ "name": "secondary" },
|
540
|
-
{ "name": "tertiary" },
|
541
|
-
{ "name": "inverse" }
|
542
|
-
]
|
434
|
+
"values": [{ "name": "SkfDividerColor" }]
|
543
435
|
},
|
544
436
|
{
|
545
437
|
"name": "decorative",
|
@@ -555,229 +447,90 @@
|
|
555
447
|
"references": []
|
556
448
|
},
|
557
449
|
{
|
558
|
-
"name": "skf-
|
559
|
-
"description": "The `<
|
450
|
+
"name": "skf-drawer",
|
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",
|
560
452
|
"attributes": [
|
561
453
|
{
|
562
|
-
"name": "
|
563
|
-
"description": "
|
564
|
-
"values": [
|
565
|
-
{ "name": "h1" },
|
566
|
-
{ "name": "h2" },
|
567
|
-
{ "name": "h3" },
|
568
|
-
{ "name": "h4" }
|
569
|
-
]
|
454
|
+
"name": "close-button-aria-label",
|
455
|
+
"description": "If defined, sets the aria-label for the close button",
|
456
|
+
"values": []
|
570
457
|
},
|
571
458
|
{
|
572
|
-
"name": "
|
573
|
-
"description": "
|
574
|
-
"values": [
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
]
|
459
|
+
"name": "heading",
|
460
|
+
"description": "Heading for the Drawer",
|
461
|
+
"values": []
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"name": "size",
|
465
|
+
"description": "Sets the max-width",
|
466
|
+
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
467
|
+
},
|
468
|
+
{
|
469
|
+
"name": "open",
|
470
|
+
"description": "If true, Drawer is open",
|
471
|
+
"values": []
|
472
|
+
},
|
473
|
+
{
|
474
|
+
"name": "placement",
|
475
|
+
"description": "Placement of the Drawer",
|
476
|
+
"values": [{ "name": "left" }, { "name": "right" }]
|
580
477
|
}
|
581
478
|
],
|
582
479
|
"references": []
|
583
480
|
},
|
584
481
|
{
|
585
|
-
"name": "skf-
|
586
|
-
"description": "The `<skf-
|
482
|
+
"name": "skf-logo",
|
483
|
+
"description": "The `<skf-logo>` component is used to display the SKF logo.\n---\n\n\n### **CSS Properties:**\n - **--skf-logo-height** - The height of the logo _(default: undefined)_",
|
587
484
|
"attributes": [
|
485
|
+
{
|
486
|
+
"name": "title",
|
487
|
+
"description": "Defines the title of the logo",
|
488
|
+
"values": []
|
489
|
+
},
|
588
490
|
{
|
589
491
|
"name": "color",
|
590
|
-
"description": "
|
591
|
-
"values": [
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
492
|
+
"description": "Defines the color of the logo",
|
493
|
+
"values": [{ "name": "SkfLogoColor" }]
|
494
|
+
}
|
495
|
+
],
|
496
|
+
"references": []
|
497
|
+
},
|
498
|
+
{
|
499
|
+
"name": "skf-nav",
|
500
|
+
"description": "The `<skf-nav>` is a component that displays a list of <nav-items>.\n---\n\n\n### **Slots:**\n - _default_ - The component's main content",
|
501
|
+
"attributes": [{ "name": "vertical", "values": [] }],
|
502
|
+
"references": []
|
503
|
+
},
|
504
|
+
{
|
505
|
+
"name": "skf-header",
|
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",
|
507
|
+
"attributes": [
|
508
|
+
{
|
509
|
+
"name": "compact",
|
510
|
+
"description": "If true, sets header to display in compact mode only (hanburger menu and drawer)",
|
511
|
+
"values": []
|
602
512
|
},
|
603
513
|
{
|
604
|
-
"name": "label",
|
605
|
-
"description": "If defined,
|
514
|
+
"name": "hamburger-aria-label",
|
515
|
+
"description": "If defined, sets the aria-label for the hamburger button",
|
606
516
|
"values": []
|
607
517
|
},
|
608
518
|
{
|
609
|
-
"name": "name",
|
610
|
-
"description": "
|
611
|
-
"values": [
|
612
|
-
{ "name": "arrowDown" },
|
613
|
-
{ "name": "arrowDownUp" },
|
614
|
-
{ "name": "arrowLeft" },
|
615
|
-
{ "name": "arrowRight" },
|
616
|
-
{ "name": "arrowUp" },
|
617
|
-
{ "name": "article" },
|
618
|
-
{ "name": "artificialIntelligence" },
|
619
|
-
{ "name": "asset" },
|
620
|
-
{ "name": "attachment" },
|
621
|
-
{ "name": "bandCursor" },
|
622
|
-
{ "name": "bands" },
|
623
|
-
{ "name": "batteryEmpty" },
|
624
|
-
{ "name": "batteryFull" },
|
625
|
-
{ "name": "batteryLow" },
|
626
|
-
{ "name": "bearingFault" },
|
627
|
-
{ "name": "book" },
|
628
|
-
{ "name": "bulb" },
|
629
|
-
{ "name": "burger" },
|
630
|
-
{ "name": "cPM" },
|
631
|
-
{ "name": "calendar" },
|
632
|
-
{ "name": "calendarBooked" },
|
633
|
-
{ "name": "calendarEmpty" },
|
634
|
-
{ "name": "calendarNotBooked" },
|
635
|
-
{ "name": "calendarRecurring" },
|
636
|
-
{ "name": "caretDown" },
|
637
|
-
{ "name": "caretUp" },
|
638
|
-
{ "name": "caretUpDown" },
|
639
|
-
{ "name": "chat" },
|
640
|
-
{ "name": "check" },
|
641
|
-
{ "name": "checkCircle" },
|
642
|
-
{ "name": "checkSmall" },
|
643
|
-
{ "name": "chevronDown" },
|
644
|
-
{ "name": "chevronLeft" },
|
645
|
-
{ "name": "chevronRight" },
|
646
|
-
{ "name": "chevronUp" },
|
647
|
-
{ "name": "chevronUpDown" },
|
648
|
-
{ "name": "close" },
|
649
|
-
{ "name": "closeAllFaults" },
|
650
|
-
{ "name": "closeFault" },
|
651
|
-
{ "name": "closeSmall" },
|
652
|
-
{ "name": "columnGraph" },
|
653
|
-
{ "name": "comment" },
|
654
|
-
{ "name": "connection1" },
|
655
|
-
{ "name": "connection2" },
|
656
|
-
{ "name": "connection3" },
|
657
|
-
{ "name": "connection4" },
|
658
|
-
{ "name": "danger" },
|
659
|
-
{ "name": "defectFrequencies" },
|
660
|
-
{ "name": "defectFrequenciesAlternative" },
|
661
|
-
{ "name": "doubleChevronLeft" },
|
662
|
-
{ "name": "doubleChevronRight" },
|
663
|
-
{ "name": "download" },
|
664
|
-
{ "name": "draft" },
|
665
|
-
{ "name": "draftFilled" },
|
666
|
-
{ "name": "draftOutlined" },
|
667
|
-
{ "name": "dragNDrop" },
|
668
|
-
{ "name": "drop" },
|
669
|
-
{ "name": "duplicate" },
|
670
|
-
{ "name": "edit" },
|
671
|
-
{ "name": "emailFilled" },
|
672
|
-
{ "name": "emailOutlined" },
|
673
|
-
{ "name": "exclamation" },
|
674
|
-
{ "name": "eye" },
|
675
|
-
{ "name": "eyeHidden" },
|
676
|
-
{ "name": "eyeVisible" },
|
677
|
-
{ "name": "filter" },
|
678
|
-
{ "name": "forbidden" },
|
679
|
-
{ "name": "fullScreen" },
|
680
|
-
{ "name": "fullScreenExit" },
|
681
|
-
{ "name": "functionalLocation" },
|
682
|
-
{ "name": "harmonicCursor" },
|
683
|
-
{ "name": "heatmap" },
|
684
|
-
{ "name": "hierarchy" },
|
685
|
-
{ "name": "history" },
|
686
|
-
{ "name": "historyAlt" },
|
687
|
-
{ "name": "hourglassFramedFilled" },
|
688
|
-
{ "name": "hourglassFramedOutlined" },
|
689
|
-
{ "name": "hourglassOutlined" },
|
690
|
-
{ "name": "hz" },
|
691
|
-
{ "name": "iMX" },
|
692
|
-
{ "name": "image" },
|
693
|
-
{ "name": "infoCircleFilled" },
|
694
|
-
{ "name": "infoCircleOutlined" },
|
695
|
-
{ "name": "integration" },
|
696
|
-
{ "name": "kebab" },
|
697
|
-
{ "name": "link" },
|
698
|
-
{ "name": "listGroup" },
|
699
|
-
{ "name": "listItem" },
|
700
|
-
{ "name": "locationPin" },
|
701
|
-
{ "name": "lock" },
|
702
|
-
{ "name": "logOut" },
|
703
|
-
{ "name": "meatballs" },
|
704
|
-
{ "name": "microphone" },
|
705
|
-
{ "name": "minus" },
|
706
|
-
{ "name": "minusSmall" },
|
707
|
-
{ "name": "noData" },
|
708
|
-
{ "name": "o" },
|
709
|
-
{ "name": "openInNew" },
|
710
|
-
{ "name": "overlayBaseline" },
|
711
|
-
{ "name": "pDF" },
|
712
|
-
{ "name": "paper" },
|
713
|
-
{ "name": "pause" },
|
714
|
-
{ "name": "pieChart" },
|
715
|
-
{ "name": "pin" },
|
716
|
-
{ "name": "play" },
|
717
|
-
{ "name": "plus" },
|
718
|
-
{ "name": "powerOff" },
|
719
|
-
{ "name": "printer" },
|
720
|
-
{ "name": "proCollect" },
|
721
|
-
{ "name": "recAction" },
|
722
|
-
{ "name": "received" },
|
723
|
-
{ "name": "refresh" },
|
724
|
-
{ "name": "reorder" },
|
725
|
-
{ "name": "replace" },
|
726
|
-
{ "name": "reply" },
|
727
|
-
{ "name": "rewalkableRoute" },
|
728
|
-
{ "name": "routes" },
|
729
|
-
{ "name": "search" },
|
730
|
-
{ "name": "send" },
|
731
|
-
{ "name": "sensorA" },
|
732
|
-
{ "name": "sensorB" },
|
733
|
-
{ "name": "settings" },
|
734
|
-
{ "name": "sidebandCursor" },
|
735
|
-
{ "name": "singleCursor" },
|
736
|
-
{ "name": "spectrum" },
|
737
|
-
{ "name": "starFilled" },
|
738
|
-
{ "name": "starOutlined" },
|
739
|
-
{ "name": "statusCircle" },
|
740
|
-
{ "name": "stop" },
|
741
|
-
{ "name": "structuralVibration" },
|
742
|
-
{ "name": "sync" },
|
743
|
-
{ "name": "timewave" },
|
744
|
-
{ "name": "trash" },
|
745
|
-
{ "name": "trend" },
|
746
|
-
{ "name": "trendingUp" },
|
747
|
-
{ "name": "undo" },
|
748
|
-
{ "name": "unknownCircle" },
|
749
|
-
{ "name": "unknownDiamond" },
|
750
|
-
{ "name": "unlink" },
|
751
|
-
{ "name": "unlock" },
|
752
|
-
{ "name": "unscheduledAction" },
|
753
|
-
{ "name": "upload" },
|
754
|
-
{ "name": "user" },
|
755
|
-
{ "name": "viewFull" },
|
756
|
-
{ "name": "viewHorizontal" },
|
757
|
-
{ "name": "viewVertical" },
|
758
|
-
{ "name": "warning" },
|
759
|
-
{ "name": "warningCircle" },
|
760
|
-
{ "name": "warningDiamond" },
|
761
|
-
{ "name": "zoomIn" },
|
762
|
-
{ "name": "zoomOut" }
|
763
|
-
]
|
519
|
+
"name": "site-name",
|
520
|
+
"description": "If defined, sets the app or site's name",
|
521
|
+
"values": []
|
764
522
|
},
|
765
523
|
{
|
766
|
-
"name": "
|
767
|
-
"description": "
|
768
|
-
"values": [
|
769
|
-
{ "name": "xs" },
|
770
|
-
{ "name": "sm" },
|
771
|
-
{ "name": "md" },
|
772
|
-
{ "name": "lg" }
|
773
|
-
]
|
524
|
+
"name": "site-url",
|
525
|
+
"description": "If defined, sets the site's base-url for the \"logo-link\"",
|
526
|
+
"values": []
|
774
527
|
}
|
775
528
|
],
|
776
529
|
"references": []
|
777
530
|
},
|
778
531
|
{
|
779
532
|
"name": "skf-input",
|
780
|
-
"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.",
|
781
534
|
"attributes": [
|
782
535
|
{
|
783
536
|
"name": "disabled",
|
@@ -789,7 +542,11 @@
|
|
789
542
|
"description": "If true, value is required or must be checked for the form to be submittable",
|
790
543
|
"values": []
|
791
544
|
},
|
792
|
-
{
|
545
|
+
{
|
546
|
+
"name": "autocomplete",
|
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']" }]
|
549
|
+
},
|
793
550
|
{
|
794
551
|
"name": "button-aria-label-clear",
|
795
552
|
"description": "Custom aria-label for the clear button. **Notice!** Only applicable to type=search.",
|
@@ -827,17 +584,8 @@
|
|
827
584
|
},
|
828
585
|
{
|
829
586
|
"name": "inputmode",
|
830
|
-
"description": "
|
831
|
-
"values": [
|
832
|
-
{ "name": "none" },
|
833
|
-
{ "name": "text" },
|
834
|
-
{ "name": "tel" },
|
835
|
-
{ "name": "url" },
|
836
|
-
{ "name": "email" },
|
837
|
-
{ "name": "numeric" },
|
838
|
-
{ "name": "decimal" },
|
839
|
-
{ "name": "search" }
|
840
|
-
]
|
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']" }]
|
841
589
|
},
|
842
590
|
{
|
843
591
|
"name": "label",
|
@@ -897,12 +645,7 @@
|
|
897
645
|
{
|
898
646
|
"name": "severity",
|
899
647
|
"description": "If defined, displays provided severity state",
|
900
|
-
"values": [
|
901
|
-
{ "name": "alert" },
|
902
|
-
{ "name": "success" },
|
903
|
-
{ "name": "info" },
|
904
|
-
{ "name": "warning" }
|
905
|
-
]
|
648
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
906
649
|
},
|
907
650
|
{
|
908
651
|
"name": "show-valid",
|
@@ -921,28 +664,15 @@
|
|
921
664
|
},
|
922
665
|
{
|
923
666
|
"name": "type",
|
924
|
-
"description": "Type of input
|
667
|
+
"description": "Type of input",
|
925
668
|
"values": [
|
926
|
-
{ "name": "button" },
|
927
|
-
{ "name": "color" },
|
928
|
-
{ "name": "date" },
|
929
|
-
{ "name": "datetime-local" },
|
930
669
|
{ "name": "email" },
|
931
|
-
{ "name": "file" },
|
932
|
-
{ "name": "hidden" },
|
933
|
-
{ "name": "image" },
|
934
|
-
{ "name": "month" },
|
935
670
|
{ "name": "number" },
|
936
671
|
{ "name": "password" },
|
937
|
-
{ "name": "range" },
|
938
|
-
{ "name": "reset" },
|
939
672
|
{ "name": "search" },
|
940
|
-
{ "name": "submit" },
|
941
673
|
{ "name": "tel" },
|
942
674
|
{ "name": "text" },
|
943
|
-
{ "name": "
|
944
|
-
{ "name": "url" },
|
945
|
-
{ "name": "week" }
|
675
|
+
{ "name": "url" }
|
946
676
|
]
|
947
677
|
},
|
948
678
|
{
|
@@ -994,159 +724,7 @@
|
|
994
724
|
{
|
995
725
|
"name": "icon",
|
996
726
|
"description": "If defined, renders an icon before or after the text",
|
997
|
-
"values": [
|
998
|
-
{ "name": "arrowDown" },
|
999
|
-
{ "name": "arrowDownUp" },
|
1000
|
-
{ "name": "arrowLeft" },
|
1001
|
-
{ "name": "arrowRight" },
|
1002
|
-
{ "name": "arrowUp" },
|
1003
|
-
{ "name": "article" },
|
1004
|
-
{ "name": "artificialIntelligence" },
|
1005
|
-
{ "name": "asset" },
|
1006
|
-
{ "name": "attachment" },
|
1007
|
-
{ "name": "bandCursor" },
|
1008
|
-
{ "name": "bands" },
|
1009
|
-
{ "name": "batteryEmpty" },
|
1010
|
-
{ "name": "batteryFull" },
|
1011
|
-
{ "name": "batteryLow" },
|
1012
|
-
{ "name": "bearingFault" },
|
1013
|
-
{ "name": "book" },
|
1014
|
-
{ "name": "bulb" },
|
1015
|
-
{ "name": "burger" },
|
1016
|
-
{ "name": "cPM" },
|
1017
|
-
{ "name": "calendar" },
|
1018
|
-
{ "name": "calendarBooked" },
|
1019
|
-
{ "name": "calendarEmpty" },
|
1020
|
-
{ "name": "calendarNotBooked" },
|
1021
|
-
{ "name": "calendarRecurring" },
|
1022
|
-
{ "name": "caretDown" },
|
1023
|
-
{ "name": "caretUp" },
|
1024
|
-
{ "name": "caretUpDown" },
|
1025
|
-
{ "name": "chat" },
|
1026
|
-
{ "name": "check" },
|
1027
|
-
{ "name": "checkCircle" },
|
1028
|
-
{ "name": "checkSmall" },
|
1029
|
-
{ "name": "chevronDown" },
|
1030
|
-
{ "name": "chevronLeft" },
|
1031
|
-
{ "name": "chevronRight" },
|
1032
|
-
{ "name": "chevronUp" },
|
1033
|
-
{ "name": "chevronUpDown" },
|
1034
|
-
{ "name": "close" },
|
1035
|
-
{ "name": "closeAllFaults" },
|
1036
|
-
{ "name": "closeFault" },
|
1037
|
-
{ "name": "closeSmall" },
|
1038
|
-
{ "name": "columnGraph" },
|
1039
|
-
{ "name": "comment" },
|
1040
|
-
{ "name": "connection1" },
|
1041
|
-
{ "name": "connection2" },
|
1042
|
-
{ "name": "connection3" },
|
1043
|
-
{ "name": "connection4" },
|
1044
|
-
{ "name": "danger" },
|
1045
|
-
{ "name": "defectFrequencies" },
|
1046
|
-
{ "name": "defectFrequenciesAlternative" },
|
1047
|
-
{ "name": "doubleChevronLeft" },
|
1048
|
-
{ "name": "doubleChevronRight" },
|
1049
|
-
{ "name": "download" },
|
1050
|
-
{ "name": "draft" },
|
1051
|
-
{ "name": "draftFilled" },
|
1052
|
-
{ "name": "draftOutlined" },
|
1053
|
-
{ "name": "dragNDrop" },
|
1054
|
-
{ "name": "drop" },
|
1055
|
-
{ "name": "duplicate" },
|
1056
|
-
{ "name": "edit" },
|
1057
|
-
{ "name": "emailFilled" },
|
1058
|
-
{ "name": "emailOutlined" },
|
1059
|
-
{ "name": "exclamation" },
|
1060
|
-
{ "name": "eye" },
|
1061
|
-
{ "name": "eyeHidden" },
|
1062
|
-
{ "name": "eyeVisible" },
|
1063
|
-
{ "name": "filter" },
|
1064
|
-
{ "name": "forbidden" },
|
1065
|
-
{ "name": "fullScreen" },
|
1066
|
-
{ "name": "fullScreenExit" },
|
1067
|
-
{ "name": "functionalLocation" },
|
1068
|
-
{ "name": "harmonicCursor" },
|
1069
|
-
{ "name": "heatmap" },
|
1070
|
-
{ "name": "hierarchy" },
|
1071
|
-
{ "name": "history" },
|
1072
|
-
{ "name": "historyAlt" },
|
1073
|
-
{ "name": "hourglassFramedFilled" },
|
1074
|
-
{ "name": "hourglassFramedOutlined" },
|
1075
|
-
{ "name": "hourglassOutlined" },
|
1076
|
-
{ "name": "hz" },
|
1077
|
-
{ "name": "iMX" },
|
1078
|
-
{ "name": "image" },
|
1079
|
-
{ "name": "infoCircleFilled" },
|
1080
|
-
{ "name": "infoCircleOutlined" },
|
1081
|
-
{ "name": "integration" },
|
1082
|
-
{ "name": "kebab" },
|
1083
|
-
{ "name": "link" },
|
1084
|
-
{ "name": "listGroup" },
|
1085
|
-
{ "name": "listItem" },
|
1086
|
-
{ "name": "locationPin" },
|
1087
|
-
{ "name": "lock" },
|
1088
|
-
{ "name": "logOut" },
|
1089
|
-
{ "name": "meatballs" },
|
1090
|
-
{ "name": "microphone" },
|
1091
|
-
{ "name": "minus" },
|
1092
|
-
{ "name": "minusSmall" },
|
1093
|
-
{ "name": "noData" },
|
1094
|
-
{ "name": "o" },
|
1095
|
-
{ "name": "openInNew" },
|
1096
|
-
{ "name": "overlayBaseline" },
|
1097
|
-
{ "name": "pDF" },
|
1098
|
-
{ "name": "paper" },
|
1099
|
-
{ "name": "pause" },
|
1100
|
-
{ "name": "pieChart" },
|
1101
|
-
{ "name": "pin" },
|
1102
|
-
{ "name": "play" },
|
1103
|
-
{ "name": "plus" },
|
1104
|
-
{ "name": "powerOff" },
|
1105
|
-
{ "name": "printer" },
|
1106
|
-
{ "name": "proCollect" },
|
1107
|
-
{ "name": "recAction" },
|
1108
|
-
{ "name": "received" },
|
1109
|
-
{ "name": "refresh" },
|
1110
|
-
{ "name": "reorder" },
|
1111
|
-
{ "name": "replace" },
|
1112
|
-
{ "name": "reply" },
|
1113
|
-
{ "name": "rewalkableRoute" },
|
1114
|
-
{ "name": "routes" },
|
1115
|
-
{ "name": "search" },
|
1116
|
-
{ "name": "send" },
|
1117
|
-
{ "name": "sensorA" },
|
1118
|
-
{ "name": "sensorB" },
|
1119
|
-
{ "name": "settings" },
|
1120
|
-
{ "name": "sidebandCursor" },
|
1121
|
-
{ "name": "singleCursor" },
|
1122
|
-
{ "name": "spectrum" },
|
1123
|
-
{ "name": "starFilled" },
|
1124
|
-
{ "name": "starOutlined" },
|
1125
|
-
{ "name": "statusCircle" },
|
1126
|
-
{ "name": "stop" },
|
1127
|
-
{ "name": "structuralVibration" },
|
1128
|
-
{ "name": "sync" },
|
1129
|
-
{ "name": "timewave" },
|
1130
|
-
{ "name": "trash" },
|
1131
|
-
{ "name": "trend" },
|
1132
|
-
{ "name": "trendingUp" },
|
1133
|
-
{ "name": "undo" },
|
1134
|
-
{ "name": "unknownCircle" },
|
1135
|
-
{ "name": "unknownDiamond" },
|
1136
|
-
{ "name": "unlink" },
|
1137
|
-
{ "name": "unlock" },
|
1138
|
-
{ "name": "unscheduledAction" },
|
1139
|
-
{ "name": "upload" },
|
1140
|
-
{ "name": "user" },
|
1141
|
-
{ "name": "viewFull" },
|
1142
|
-
{ "name": "viewHorizontal" },
|
1143
|
-
{ "name": "viewVertical" },
|
1144
|
-
{ "name": "warning" },
|
1145
|
-
{ "name": "warningCircle" },
|
1146
|
-
{ "name": "warningDiamond" },
|
1147
|
-
{ "name": "zoomIn" },
|
1148
|
-
{ "name": "zoomOut" }
|
1149
|
-
]
|
727
|
+
"values": [{ "name": "Icon" }]
|
1150
728
|
},
|
1151
729
|
{
|
1152
730
|
"name": "icon-placement",
|
@@ -1181,67 +759,14 @@
|
|
1181
759
|
{
|
1182
760
|
"name": "type",
|
1183
761
|
"description": "Defines the type of button",
|
1184
|
-
"values": [
|
1185
|
-
{ "name": "button" },
|
1186
|
-
{ "name": "submit" },
|
1187
|
-
{ "name": "reset" }
|
1188
|
-
]
|
1189
|
-
}
|
1190
|
-
],
|
1191
|
-
"references": []
|
1192
|
-
},
|
1193
|
-
{
|
1194
|
-
"name": "skf-loader",
|
1195
|
-
"description": "The `<skf-loader>` component is a progress indicator that uses circular indicators for short, indeterminate activities\n---\n",
|
1196
|
-
"attributes": [
|
1197
|
-
{
|
1198
|
-
"name": "aria-label",
|
1199
|
-
"description": "Defines the aria-label",
|
1200
|
-
"values": []
|
1201
|
-
},
|
1202
|
-
{
|
1203
|
-
"name": "invert",
|
1204
|
-
"description": "If true, inverts the color (to be used on colored backgrounds)",
|
1205
|
-
"values": []
|
1206
|
-
},
|
1207
|
-
{
|
1208
|
-
"name": "size",
|
1209
|
-
"description": "Defines the size of the loader",
|
1210
|
-
"values": [{ "name": "md" }, { "name": "sm" }]
|
1211
|
-
}
|
1212
|
-
],
|
1213
|
-
"references": []
|
1214
|
-
},
|
1215
|
-
{
|
1216
|
-
"name": "skf-logo",
|
1217
|
-
"description": "The `<skf-logo>` component is used to display the SKF logo.\n---\n\n\n### **CSS Properties:**\n - **--skf-logo-height** - The height of the logo _(default: undefined)_",
|
1218
|
-
"attributes": [
|
1219
|
-
{
|
1220
|
-
"name": "title",
|
1221
|
-
"description": "Defines the title of the logo",
|
1222
|
-
"values": []
|
1223
|
-
},
|
1224
|
-
{
|
1225
|
-
"name": "color",
|
1226
|
-
"description": "Defines the color of the logo",
|
1227
|
-
"values": [
|
1228
|
-
{ "name": "primary" },
|
1229
|
-
{ "name": "secondary" },
|
1230
|
-
{ "name": "inverse" }
|
1231
|
-
]
|
762
|
+
"values": [{ "name": "SkfLinkType" }]
|
1232
763
|
}
|
1233
764
|
],
|
1234
765
|
"references": []
|
1235
766
|
},
|
1236
|
-
{
|
1237
|
-
"name": "skf-menu",
|
1238
|
-
"description": "The `<skf-menu>` is a component that displays a list of actions or options.\n---\n\n\n### **Events:**\n - **open** - Fired when the menu is opened\n- **close** - Fired when the menu is closed\n\n### **Slots:**\n - _default_ - The menu popover content",
|
1239
|
-
"attributes": [],
|
1240
|
-
"references": []
|
1241
|
-
},
|
1242
767
|
{
|
1243
768
|
"name": "skf-menu-item",
|
1244
|
-
"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",
|
1245
770
|
"attributes": [
|
1246
771
|
{
|
1247
772
|
"name": "as",
|
@@ -1271,159 +796,7 @@
|
|
1271
796
|
{
|
1272
797
|
"name": "icon",
|
1273
798
|
"description": "If defined, renders an icon before or after the text",
|
1274
|
-
"values": [
|
1275
|
-
{ "name": "arrowDown" },
|
1276
|
-
{ "name": "arrowDownUp" },
|
1277
|
-
{ "name": "arrowLeft" },
|
1278
|
-
{ "name": "arrowRight" },
|
1279
|
-
{ "name": "arrowUp" },
|
1280
|
-
{ "name": "article" },
|
1281
|
-
{ "name": "artificialIntelligence" },
|
1282
|
-
{ "name": "asset" },
|
1283
|
-
{ "name": "attachment" },
|
1284
|
-
{ "name": "bandCursor" },
|
1285
|
-
{ "name": "bands" },
|
1286
|
-
{ "name": "batteryEmpty" },
|
1287
|
-
{ "name": "batteryFull" },
|
1288
|
-
{ "name": "batteryLow" },
|
1289
|
-
{ "name": "bearingFault" },
|
1290
|
-
{ "name": "book" },
|
1291
|
-
{ "name": "bulb" },
|
1292
|
-
{ "name": "burger" },
|
1293
|
-
{ "name": "cPM" },
|
1294
|
-
{ "name": "calendar" },
|
1295
|
-
{ "name": "calendarBooked" },
|
1296
|
-
{ "name": "calendarEmpty" },
|
1297
|
-
{ "name": "calendarNotBooked" },
|
1298
|
-
{ "name": "calendarRecurring" },
|
1299
|
-
{ "name": "caretDown" },
|
1300
|
-
{ "name": "caretUp" },
|
1301
|
-
{ "name": "caretUpDown" },
|
1302
|
-
{ "name": "chat" },
|
1303
|
-
{ "name": "check" },
|
1304
|
-
{ "name": "checkCircle" },
|
1305
|
-
{ "name": "checkSmall" },
|
1306
|
-
{ "name": "chevronDown" },
|
1307
|
-
{ "name": "chevronLeft" },
|
1308
|
-
{ "name": "chevronRight" },
|
1309
|
-
{ "name": "chevronUp" },
|
1310
|
-
{ "name": "chevronUpDown" },
|
1311
|
-
{ "name": "close" },
|
1312
|
-
{ "name": "closeAllFaults" },
|
1313
|
-
{ "name": "closeFault" },
|
1314
|
-
{ "name": "closeSmall" },
|
1315
|
-
{ "name": "columnGraph" },
|
1316
|
-
{ "name": "comment" },
|
1317
|
-
{ "name": "connection1" },
|
1318
|
-
{ "name": "connection2" },
|
1319
|
-
{ "name": "connection3" },
|
1320
|
-
{ "name": "connection4" },
|
1321
|
-
{ "name": "danger" },
|
1322
|
-
{ "name": "defectFrequencies" },
|
1323
|
-
{ "name": "defectFrequenciesAlternative" },
|
1324
|
-
{ "name": "doubleChevronLeft" },
|
1325
|
-
{ "name": "doubleChevronRight" },
|
1326
|
-
{ "name": "download" },
|
1327
|
-
{ "name": "draft" },
|
1328
|
-
{ "name": "draftFilled" },
|
1329
|
-
{ "name": "draftOutlined" },
|
1330
|
-
{ "name": "dragNDrop" },
|
1331
|
-
{ "name": "drop" },
|
1332
|
-
{ "name": "duplicate" },
|
1333
|
-
{ "name": "edit" },
|
1334
|
-
{ "name": "emailFilled" },
|
1335
|
-
{ "name": "emailOutlined" },
|
1336
|
-
{ "name": "exclamation" },
|
1337
|
-
{ "name": "eye" },
|
1338
|
-
{ "name": "eyeHidden" },
|
1339
|
-
{ "name": "eyeVisible" },
|
1340
|
-
{ "name": "filter" },
|
1341
|
-
{ "name": "forbidden" },
|
1342
|
-
{ "name": "fullScreen" },
|
1343
|
-
{ "name": "fullScreenExit" },
|
1344
|
-
{ "name": "functionalLocation" },
|
1345
|
-
{ "name": "harmonicCursor" },
|
1346
|
-
{ "name": "heatmap" },
|
1347
|
-
{ "name": "hierarchy" },
|
1348
|
-
{ "name": "history" },
|
1349
|
-
{ "name": "historyAlt" },
|
1350
|
-
{ "name": "hourglassFramedFilled" },
|
1351
|
-
{ "name": "hourglassFramedOutlined" },
|
1352
|
-
{ "name": "hourglassOutlined" },
|
1353
|
-
{ "name": "hz" },
|
1354
|
-
{ "name": "iMX" },
|
1355
|
-
{ "name": "image" },
|
1356
|
-
{ "name": "infoCircleFilled" },
|
1357
|
-
{ "name": "infoCircleOutlined" },
|
1358
|
-
{ "name": "integration" },
|
1359
|
-
{ "name": "kebab" },
|
1360
|
-
{ "name": "link" },
|
1361
|
-
{ "name": "listGroup" },
|
1362
|
-
{ "name": "listItem" },
|
1363
|
-
{ "name": "locationPin" },
|
1364
|
-
{ "name": "lock" },
|
1365
|
-
{ "name": "logOut" },
|
1366
|
-
{ "name": "meatballs" },
|
1367
|
-
{ "name": "microphone" },
|
1368
|
-
{ "name": "minus" },
|
1369
|
-
{ "name": "minusSmall" },
|
1370
|
-
{ "name": "noData" },
|
1371
|
-
{ "name": "o" },
|
1372
|
-
{ "name": "openInNew" },
|
1373
|
-
{ "name": "overlayBaseline" },
|
1374
|
-
{ "name": "pDF" },
|
1375
|
-
{ "name": "paper" },
|
1376
|
-
{ "name": "pause" },
|
1377
|
-
{ "name": "pieChart" },
|
1378
|
-
{ "name": "pin" },
|
1379
|
-
{ "name": "play" },
|
1380
|
-
{ "name": "plus" },
|
1381
|
-
{ "name": "powerOff" },
|
1382
|
-
{ "name": "printer" },
|
1383
|
-
{ "name": "proCollect" },
|
1384
|
-
{ "name": "recAction" },
|
1385
|
-
{ "name": "received" },
|
1386
|
-
{ "name": "refresh" },
|
1387
|
-
{ "name": "reorder" },
|
1388
|
-
{ "name": "replace" },
|
1389
|
-
{ "name": "reply" },
|
1390
|
-
{ "name": "rewalkableRoute" },
|
1391
|
-
{ "name": "routes" },
|
1392
|
-
{ "name": "search" },
|
1393
|
-
{ "name": "send" },
|
1394
|
-
{ "name": "sensorA" },
|
1395
|
-
{ "name": "sensorB" },
|
1396
|
-
{ "name": "settings" },
|
1397
|
-
{ "name": "sidebandCursor" },
|
1398
|
-
{ "name": "singleCursor" },
|
1399
|
-
{ "name": "spectrum" },
|
1400
|
-
{ "name": "starFilled" },
|
1401
|
-
{ "name": "starOutlined" },
|
1402
|
-
{ "name": "statusCircle" },
|
1403
|
-
{ "name": "stop" },
|
1404
|
-
{ "name": "structuralVibration" },
|
1405
|
-
{ "name": "sync" },
|
1406
|
-
{ "name": "timewave" },
|
1407
|
-
{ "name": "trash" },
|
1408
|
-
{ "name": "trend" },
|
1409
|
-
{ "name": "trendingUp" },
|
1410
|
-
{ "name": "undo" },
|
1411
|
-
{ "name": "unknownCircle" },
|
1412
|
-
{ "name": "unknownDiamond" },
|
1413
|
-
{ "name": "unlink" },
|
1414
|
-
{ "name": "unlock" },
|
1415
|
-
{ "name": "unscheduledAction" },
|
1416
|
-
{ "name": "upload" },
|
1417
|
-
{ "name": "user" },
|
1418
|
-
{ "name": "viewFull" },
|
1419
|
-
{ "name": "viewHorizontal" },
|
1420
|
-
{ "name": "viewVertical" },
|
1421
|
-
{ "name": "warning" },
|
1422
|
-
{ "name": "warningCircle" },
|
1423
|
-
{ "name": "warningDiamond" },
|
1424
|
-
{ "name": "zoomIn" },
|
1425
|
-
{ "name": "zoomOut" }
|
1426
|
-
]
|
799
|
+
"values": [{ "name": "Icon" }]
|
1427
800
|
},
|
1428
801
|
{
|
1429
802
|
"name": "icon-placement",
|
@@ -1458,19 +831,77 @@
|
|
1458
831
|
{
|
1459
832
|
"name": "type",
|
1460
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",
|
1461
846
|
"values": [
|
1462
|
-
{ "name": "
|
1463
|
-
{ "name": "
|
1464
|
-
{ "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" }
|
1465
859
|
]
|
860
|
+
},
|
861
|
+
{
|
862
|
+
"name": "anchor",
|
863
|
+
"description": "The id of the element the menu will be anchored to",
|
864
|
+
"values": []
|
1466
865
|
}
|
1467
866
|
],
|
1468
867
|
"references": []
|
1469
868
|
},
|
869
|
+
{
|
870
|
+
"name": "skf-nav-item",
|
871
|
+
"description": "The `<skf-nav>` is a component that displays a list of <nav-items>.\n---\n\n\n### **Slots:**\n - _default_ - The component's main content",
|
872
|
+
"attributes": [
|
873
|
+
{ "name": "href", "values": [] },
|
874
|
+
{ "name": "icon", "values": [{ "name": "SkfLink['icon']" }] }
|
875
|
+
],
|
876
|
+
"references": []
|
877
|
+
},
|
1470
878
|
{
|
1471
879
|
"name": "skf-popover",
|
1472
|
-
"description": "The `<skf-popover>` is a general purpose component that displays the slot content.\n---\n\n\n### **Events:**\n - **
|
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",
|
1473
881
|
"attributes": [
|
882
|
+
{
|
883
|
+
"name": "placement",
|
884
|
+
"description": "The placement of the popover",
|
885
|
+
"values": [
|
886
|
+
{ "name": "top" },
|
887
|
+
{ "name": "right" },
|
888
|
+
{ "name": "bottom" },
|
889
|
+
{ "name": "left" },
|
890
|
+
{ "name": "top-start" },
|
891
|
+
{ "name": "top-end" },
|
892
|
+
{ "name": "right-start" },
|
893
|
+
{ "name": "right-end" },
|
894
|
+
{ "name": "bottom-start" },
|
895
|
+
{ "name": "bottom-end" },
|
896
|
+
{ "name": "left-start" },
|
897
|
+
{ "name": "left-end" }
|
898
|
+
]
|
899
|
+
},
|
900
|
+
{
|
901
|
+
"name": "anchor",
|
902
|
+
"description": "The id of the element the menu will be anchored to",
|
903
|
+
"values": []
|
904
|
+
},
|
1474
905
|
{
|
1475
906
|
"name": "offset",
|
1476
907
|
"description": "If defined, sets a custom offset for the popover",
|
@@ -1508,7 +939,7 @@
|
|
1508
939
|
},
|
1509
940
|
{
|
1510
941
|
"name": "skf-radio",
|
1511
|
-
"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.",
|
1512
943
|
"attributes": [
|
1513
944
|
{
|
1514
945
|
"name": "disabled",
|
@@ -1558,12 +989,7 @@
|
|
1558
989
|
{
|
1559
990
|
"name": "severity",
|
1560
991
|
"description": "If defined, displays provided severity state",
|
1561
|
-
"values": [
|
1562
|
-
{ "name": "success" },
|
1563
|
-
{ "name": "info" },
|
1564
|
-
{ "name": "warning" },
|
1565
|
-
{ "name": "alert" }
|
1566
|
-
]
|
992
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
1567
993
|
},
|
1568
994
|
{
|
1569
995
|
"name": "show-valid",
|
@@ -1578,13 +1004,81 @@
|
|
1578
1004
|
],
|
1579
1005
|
"references": []
|
1580
1006
|
},
|
1007
|
+
{
|
1008
|
+
"name": "skf-segmented-button-item",
|
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",
|
1010
|
+
"attributes": [
|
1011
|
+
{
|
1012
|
+
"name": "disabled",
|
1013
|
+
"description": "If true, items is marked as disabled",
|
1014
|
+
"values": []
|
1015
|
+
},
|
1016
|
+
{
|
1017
|
+
"name": "selected",
|
1018
|
+
"description": "If true, items is marked as selected",
|
1019
|
+
"values": []
|
1020
|
+
},
|
1021
|
+
{ "name": "value", "description": "Sets the item value", "values": [] }
|
1022
|
+
],
|
1023
|
+
"references": []
|
1024
|
+
},
|
1025
|
+
{
|
1026
|
+
"name": "skf-segmented-button",
|
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>`",
|
1028
|
+
"attributes": [
|
1029
|
+
{
|
1030
|
+
"name": "multiple",
|
1031
|
+
"description": "If true, allowes multiple items to be selected",
|
1032
|
+
"values": []
|
1033
|
+
}
|
1034
|
+
],
|
1035
|
+
"references": []
|
1036
|
+
},
|
1037
|
+
{
|
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": [] }],
|
1041
|
+
"references": []
|
1042
|
+
},
|
1043
|
+
{
|
1044
|
+
"name": "skf-tag",
|
1045
|
+
"description": "The `<skf-tag>` is a component that displays a list of actions or options\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
|
1046
|
+
"attributes": [
|
1047
|
+
{
|
1048
|
+
"name": "size",
|
1049
|
+
"description": "Specifies Tag size",
|
1050
|
+
"values": [{ "name": "sm" }, { "name": "md" }]
|
1051
|
+
},
|
1052
|
+
{
|
1053
|
+
"name": "icon",
|
1054
|
+
"description": "If defined, displays leading/provided icon",
|
1055
|
+
"values": [{ "name": "Icon" }]
|
1056
|
+
},
|
1057
|
+
{
|
1058
|
+
"name": "color",
|
1059
|
+
"description": "If defined, gives the supplied appearance",
|
1060
|
+
"values": [{ "name": "Severity" }]
|
1061
|
+
},
|
1062
|
+
{
|
1063
|
+
"name": "removable",
|
1064
|
+
"description": "If true, adds trailing button to remove tag",
|
1065
|
+
"values": []
|
1066
|
+
}
|
1067
|
+
],
|
1068
|
+
"references": []
|
1069
|
+
},
|
1581
1070
|
{
|
1582
1071
|
"name": "skf-select",
|
1583
|
-
"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",
|
1584
1073
|
"attributes": [
|
1585
1074
|
{
|
1586
1075
|
"name": "disabled",
|
1587
|
-
"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",
|
1588
1082
|
"values": []
|
1589
1083
|
},
|
1590
1084
|
{
|
@@ -1645,7 +1139,7 @@
|
|
1645
1139
|
{
|
1646
1140
|
"name": "severity",
|
1647
1141
|
"description": "If defined, displays provided severity state",
|
1648
|
-
"values": [{ "name": "
|
1142
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
1649
1143
|
},
|
1650
1144
|
{
|
1651
1145
|
"name": "show-valid",
|
@@ -1662,7 +1156,7 @@
|
|
1662
1156
|
},
|
1663
1157
|
{
|
1664
1158
|
"name": "skf-select-option",
|
1665
|
-
"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
|
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).",
|
1666
1160
|
"attributes": [
|
1667
1161
|
{
|
1668
1162
|
"name": "disabled",
|
@@ -1672,12 +1166,12 @@
|
|
1672
1166
|
{
|
1673
1167
|
"name": "icon",
|
1674
1168
|
"description": "If defined, set an icon",
|
1675
|
-
"values": [{ "name": "
|
1169
|
+
"values": [{ "name": "Icon" }]
|
1676
1170
|
},
|
1677
1171
|
{
|
1678
1172
|
"name": "icon-color",
|
1679
1173
|
"description": "If defined, sets provided color on the icon",
|
1680
|
-
"values": [{ "name": "
|
1174
|
+
"values": [{ "name": "IconColor" }]
|
1681
1175
|
},
|
1682
1176
|
{
|
1683
1177
|
"name": "selected",
|
@@ -1697,29 +1191,6 @@
|
|
1697
1191
|
],
|
1698
1192
|
"references": []
|
1699
1193
|
},
|
1700
|
-
{
|
1701
|
-
"name": "skf-select-option-group",
|
1702
|
-
"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",
|
1703
|
-
"attributes": [{ "name": "label", "values": [] }],
|
1704
|
-
"references": []
|
1705
|
-
},
|
1706
|
-
{
|
1707
|
-
"name": "skf-stepper",
|
1708
|
-
"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>`",
|
1709
|
-
"attributes": [
|
1710
|
-
{
|
1711
|
-
"name": "activeIndex",
|
1712
|
-
"description": "Sets the active item",
|
1713
|
-
"values": []
|
1714
|
-
},
|
1715
|
-
{
|
1716
|
-
"name": "linear",
|
1717
|
-
"description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
|
1718
|
-
"values": []
|
1719
|
-
}
|
1720
|
-
],
|
1721
|
-
"references": []
|
1722
|
-
},
|
1723
1194
|
{
|
1724
1195
|
"name": "skf-stepper-item",
|
1725
1196
|
"description": "The `<skf-stepper-item>` is used in conjunction with the `<skf-stepper>` component\n---\n\n\n### **Events:**\n - **skf-stepper-item-select** - Dispatched when the stepper item is selected\n\n### **Slots:**\n - _default_ - Label of the stepper item",
|
@@ -1740,9 +1211,26 @@
|
|
1740
1211
|
],
|
1741
1212
|
"references": []
|
1742
1213
|
},
|
1214
|
+
{
|
1215
|
+
"name": "skf-stepper",
|
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>`",
|
1217
|
+
"attributes": [
|
1218
|
+
{
|
1219
|
+
"name": "active-index",
|
1220
|
+
"description": "Sets the active item",
|
1221
|
+
"values": []
|
1222
|
+
},
|
1223
|
+
{
|
1224
|
+
"name": "linear",
|
1225
|
+
"description": "If true, sets linear mode (user can't go back to completed steps due to dependencies)",
|
1226
|
+
"values": []
|
1227
|
+
}
|
1228
|
+
],
|
1229
|
+
"references": []
|
1230
|
+
},
|
1743
1231
|
{
|
1744
1232
|
"name": "skf-switch",
|
1745
|
-
"description": "The `<skf-switch>` is a component that displays a list of actions or options\n---\n\n\n### **Slots:**\n - _default_ - The Switchs label. Alternatively, you can use the `label` attribute.",
|
1233
|
+
"description": "The `<skf-switch>` is a component that displays a list of actions or options\n\nSee [zeroheight](https://zeroheight.com/853e936c9/p/7282a2-switch) for design principle\n---\n\n\n### **Slots:**\n - _default_ - The Switchs label. Alternatively, you can use the `label` attribute.",
|
1746
1234
|
"attributes": [
|
1747
1235
|
{
|
1748
1236
|
"name": "disabled",
|
@@ -1798,14 +1286,10 @@
|
|
1798
1286
|
"references": []
|
1799
1287
|
},
|
1800
1288
|
{
|
1801
|
-
"name": "skf-tab",
|
1802
|
-
"description": "The `<skf-tab>` is a component that displays a list of actions or options
|
1289
|
+
"name": "skf-tab-panel",
|
1290
|
+
"description": "The `<skf-tab-panel>` is a component that displays a list of actions or options.\n---\n\n\n### **Slots:**\n - _default_ - The tab panel's content",
|
1803
1291
|
"attributes": [
|
1804
|
-
{
|
1805
|
-
"name": "panel",
|
1806
|
-
"description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
|
1807
|
-
"values": []
|
1808
|
-
}
|
1292
|
+
{ "name": "name", "description": "The tab panel's name.", "values": [] }
|
1809
1293
|
],
|
1810
1294
|
"references": []
|
1811
1295
|
},
|
@@ -1842,193 +1326,12 @@
|
|
1842
1326
|
"references": []
|
1843
1327
|
},
|
1844
1328
|
{
|
1845
|
-
"name": "skf-tab
|
1846
|
-
"description": "The `<skf-tab
|
1847
|
-
"attributes": [
|
1848
|
-
{ "name": "name", "description": "The tab panel's name.", "values": [] }
|
1849
|
-
],
|
1850
|
-
"references": []
|
1851
|
-
},
|
1852
|
-
{
|
1853
|
-
"name": "skf-tag",
|
1854
|
-
"description": "The `<skf-tag>` is a component that displays a list of actions or options\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
|
1329
|
+
"name": "skf-tab",
|
1330
|
+
"description": "The `<skf-tab>` is a component that displays a list of actions or options\n---\n\n\n### **Events:**\n - **skf-tab-select** - {detail: { selected: true, tab: SkfTab }} Fires when the tab is selected\n- **click** - Fired when the component is clicked\n\n### **Slots:**\n - _default_ - The tab's label",
|
1855
1331
|
"attributes": [
|
1856
1332
|
{
|
1857
|
-
"name": "
|
1858
|
-
"description": "
|
1859
|
-
"values": [{ "name": "sm" }, { "name": "md" }, { "name": "lg" }]
|
1860
|
-
},
|
1861
|
-
{
|
1862
|
-
"name": "icon",
|
1863
|
-
"description": "If defined, displays leading/provided icon",
|
1864
|
-
"values": [
|
1865
|
-
{ "name": "arrowDown" },
|
1866
|
-
{ "name": "arrowDownUp" },
|
1867
|
-
{ "name": "arrowLeft" },
|
1868
|
-
{ "name": "arrowRight" },
|
1869
|
-
{ "name": "arrowUp" },
|
1870
|
-
{ "name": "article" },
|
1871
|
-
{ "name": "artificialIntelligence" },
|
1872
|
-
{ "name": "asset" },
|
1873
|
-
{ "name": "attachment" },
|
1874
|
-
{ "name": "bandCursor" },
|
1875
|
-
{ "name": "bands" },
|
1876
|
-
{ "name": "batteryEmpty" },
|
1877
|
-
{ "name": "batteryFull" },
|
1878
|
-
{ "name": "batteryLow" },
|
1879
|
-
{ "name": "bearingFault" },
|
1880
|
-
{ "name": "book" },
|
1881
|
-
{ "name": "bulb" },
|
1882
|
-
{ "name": "burger" },
|
1883
|
-
{ "name": "cPM" },
|
1884
|
-
{ "name": "calendar" },
|
1885
|
-
{ "name": "calendarBooked" },
|
1886
|
-
{ "name": "calendarEmpty" },
|
1887
|
-
{ "name": "calendarNotBooked" },
|
1888
|
-
{ "name": "calendarRecurring" },
|
1889
|
-
{ "name": "caretDown" },
|
1890
|
-
{ "name": "caretUp" },
|
1891
|
-
{ "name": "caretUpDown" },
|
1892
|
-
{ "name": "chat" },
|
1893
|
-
{ "name": "check" },
|
1894
|
-
{ "name": "checkCircle" },
|
1895
|
-
{ "name": "checkSmall" },
|
1896
|
-
{ "name": "chevronDown" },
|
1897
|
-
{ "name": "chevronLeft" },
|
1898
|
-
{ "name": "chevronRight" },
|
1899
|
-
{ "name": "chevronUp" },
|
1900
|
-
{ "name": "chevronUpDown" },
|
1901
|
-
{ "name": "close" },
|
1902
|
-
{ "name": "closeAllFaults" },
|
1903
|
-
{ "name": "closeFault" },
|
1904
|
-
{ "name": "closeSmall" },
|
1905
|
-
{ "name": "columnGraph" },
|
1906
|
-
{ "name": "comment" },
|
1907
|
-
{ "name": "connection1" },
|
1908
|
-
{ "name": "connection2" },
|
1909
|
-
{ "name": "connection3" },
|
1910
|
-
{ "name": "connection4" },
|
1911
|
-
{ "name": "danger" },
|
1912
|
-
{ "name": "defectFrequencies" },
|
1913
|
-
{ "name": "defectFrequenciesAlternative" },
|
1914
|
-
{ "name": "doubleChevronLeft" },
|
1915
|
-
{ "name": "doubleChevronRight" },
|
1916
|
-
{ "name": "download" },
|
1917
|
-
{ "name": "draft" },
|
1918
|
-
{ "name": "draftFilled" },
|
1919
|
-
{ "name": "draftOutlined" },
|
1920
|
-
{ "name": "dragNDrop" },
|
1921
|
-
{ "name": "drop" },
|
1922
|
-
{ "name": "duplicate" },
|
1923
|
-
{ "name": "edit" },
|
1924
|
-
{ "name": "emailFilled" },
|
1925
|
-
{ "name": "emailOutlined" },
|
1926
|
-
{ "name": "exclamation" },
|
1927
|
-
{ "name": "eye" },
|
1928
|
-
{ "name": "eyeHidden" },
|
1929
|
-
{ "name": "eyeVisible" },
|
1930
|
-
{ "name": "filter" },
|
1931
|
-
{ "name": "forbidden" },
|
1932
|
-
{ "name": "fullScreen" },
|
1933
|
-
{ "name": "fullScreenExit" },
|
1934
|
-
{ "name": "functionalLocation" },
|
1935
|
-
{ "name": "harmonicCursor" },
|
1936
|
-
{ "name": "heatmap" },
|
1937
|
-
{ "name": "hierarchy" },
|
1938
|
-
{ "name": "history" },
|
1939
|
-
{ "name": "historyAlt" },
|
1940
|
-
{ "name": "hourglassFramedFilled" },
|
1941
|
-
{ "name": "hourglassFramedOutlined" },
|
1942
|
-
{ "name": "hourglassOutlined" },
|
1943
|
-
{ "name": "hz" },
|
1944
|
-
{ "name": "iMX" },
|
1945
|
-
{ "name": "image" },
|
1946
|
-
{ "name": "infoCircleFilled" },
|
1947
|
-
{ "name": "infoCircleOutlined" },
|
1948
|
-
{ "name": "integration" },
|
1949
|
-
{ "name": "kebab" },
|
1950
|
-
{ "name": "link" },
|
1951
|
-
{ "name": "listGroup" },
|
1952
|
-
{ "name": "listItem" },
|
1953
|
-
{ "name": "locationPin" },
|
1954
|
-
{ "name": "lock" },
|
1955
|
-
{ "name": "logOut" },
|
1956
|
-
{ "name": "meatballs" },
|
1957
|
-
{ "name": "microphone" },
|
1958
|
-
{ "name": "minus" },
|
1959
|
-
{ "name": "minusSmall" },
|
1960
|
-
{ "name": "noData" },
|
1961
|
-
{ "name": "o" },
|
1962
|
-
{ "name": "openInNew" },
|
1963
|
-
{ "name": "overlayBaseline" },
|
1964
|
-
{ "name": "pDF" },
|
1965
|
-
{ "name": "paper" },
|
1966
|
-
{ "name": "pause" },
|
1967
|
-
{ "name": "pieChart" },
|
1968
|
-
{ "name": "pin" },
|
1969
|
-
{ "name": "play" },
|
1970
|
-
{ "name": "plus" },
|
1971
|
-
{ "name": "powerOff" },
|
1972
|
-
{ "name": "printer" },
|
1973
|
-
{ "name": "proCollect" },
|
1974
|
-
{ "name": "recAction" },
|
1975
|
-
{ "name": "received" },
|
1976
|
-
{ "name": "refresh" },
|
1977
|
-
{ "name": "reorder" },
|
1978
|
-
{ "name": "replace" },
|
1979
|
-
{ "name": "reply" },
|
1980
|
-
{ "name": "rewalkableRoute" },
|
1981
|
-
{ "name": "routes" },
|
1982
|
-
{ "name": "search" },
|
1983
|
-
{ "name": "send" },
|
1984
|
-
{ "name": "sensorA" },
|
1985
|
-
{ "name": "sensorB" },
|
1986
|
-
{ "name": "settings" },
|
1987
|
-
{ "name": "sidebandCursor" },
|
1988
|
-
{ "name": "singleCursor" },
|
1989
|
-
{ "name": "spectrum" },
|
1990
|
-
{ "name": "starFilled" },
|
1991
|
-
{ "name": "starOutlined" },
|
1992
|
-
{ "name": "statusCircle" },
|
1993
|
-
{ "name": "stop" },
|
1994
|
-
{ "name": "structuralVibration" },
|
1995
|
-
{ "name": "sync" },
|
1996
|
-
{ "name": "timewave" },
|
1997
|
-
{ "name": "trash" },
|
1998
|
-
{ "name": "trend" },
|
1999
|
-
{ "name": "trendingUp" },
|
2000
|
-
{ "name": "undo" },
|
2001
|
-
{ "name": "unknownCircle" },
|
2002
|
-
{ "name": "unknownDiamond" },
|
2003
|
-
{ "name": "unlink" },
|
2004
|
-
{ "name": "unlock" },
|
2005
|
-
{ "name": "unscheduledAction" },
|
2006
|
-
{ "name": "upload" },
|
2007
|
-
{ "name": "user" },
|
2008
|
-
{ "name": "viewFull" },
|
2009
|
-
{ "name": "viewHorizontal" },
|
2010
|
-
{ "name": "viewVertical" },
|
2011
|
-
{ "name": "warning" },
|
2012
|
-
{ "name": "warningCircle" },
|
2013
|
-
{ "name": "warningDiamond" },
|
2014
|
-
{ "name": "zoomIn" },
|
2015
|
-
{ "name": "zoomOut" }
|
2016
|
-
]
|
2017
|
-
},
|
2018
|
-
{
|
2019
|
-
"name": "color",
|
2020
|
-
"description": "If defined, gives the supplied appearance",
|
2021
|
-
"values": [
|
2022
|
-
{ "name": "warning" },
|
2023
|
-
{ "name": "success" },
|
2024
|
-
{ "name": "info" },
|
2025
|
-
{ "name": "error" },
|
2026
|
-
{ "name": "alert" }
|
2027
|
-
]
|
2028
|
-
},
|
2029
|
-
{
|
2030
|
-
"name": "removable",
|
2031
|
-
"description": "If true, adds trailing button to remove tag",
|
1333
|
+
"name": "panel",
|
1334
|
+
"description": "The name of the tab-panel this tab is associated with. The panel must be located in the same tab group.",
|
2032
1335
|
"values": []
|
2033
1336
|
}
|
2034
1337
|
],
|
@@ -2116,12 +1419,7 @@
|
|
2116
1419
|
{
|
2117
1420
|
"name": "severity",
|
2118
1421
|
"description": "If defined, displays provided severity state",
|
2119
|
-
"values": [
|
2120
|
-
{ "name": "success" },
|
2121
|
-
{ "name": "info" },
|
2122
|
-
{ "name": "warning" },
|
2123
|
-
{ "name": "alert" }
|
2124
|
-
]
|
1422
|
+
"values": [{ "name": "FormFieldSeverity" }]
|
2125
1423
|
},
|
2126
1424
|
{
|
2127
1425
|
"name": "show-valid",
|
@@ -2150,25 +1448,31 @@
|
|
2150
1448
|
],
|
2151
1449
|
"references": []
|
2152
1450
|
},
|
1451
|
+
{
|
1452
|
+
"name": "skf-toast-wrapper",
|
1453
|
+
"description": "The `<skf-toast-wrapper>` is a component without UI that positions where the toast shows up on the screen. The toast-wrapper is used internally by the toast component.\n---\n\n\n### **Slots:**\n - _default_ - The alert components that the toast creates will render here.",
|
1454
|
+
"attributes": [{ "name": "debug", "values": [] }],
|
1455
|
+
"references": []
|
1456
|
+
},
|
2153
1457
|
{
|
2154
1458
|
"name": "skf-toast",
|
2155
|
-
"description": "A simple toast component that displays a message to the user.
|
1459
|
+
"description": "A simple toast component that displays a message to the user. Invoke a toast message by appending a <skf-toast> tag to the DOM. Position in DOM is irrelevant. A transient toast will disappear after a set amount of time. Once toast is dismissed it will be removed from the DOM.\n---\n\n\n### **Slots:**\n - _default_ - The component's placeholder content",
|
2156
1460
|
"attributes": [
|
2157
1461
|
{ "name": "debug", "values": [] },
|
2158
1462
|
{
|
2159
1463
|
"name": "icon",
|
2160
1464
|
"description": "If defined, displays leading icon",
|
2161
|
-
"values": [{ "name": "
|
1465
|
+
"values": [{ "name": "Icon" }]
|
2162
1466
|
},
|
2163
1467
|
{
|
2164
1468
|
"name": "persistent",
|
2165
1469
|
"description": "If true, renders with an close button and sets aria-role to `status`",
|
2166
|
-
"values": [
|
1470
|
+
"values": []
|
2167
1471
|
},
|
2168
1472
|
{
|
2169
1473
|
"name": "severity",
|
2170
1474
|
"description": "If defined, gives the supplied appearance",
|
2171
|
-
"values": [{ "name": "
|
1475
|
+
"values": [{ "name": "Severity" }]
|
2172
1476
|
},
|
2173
1477
|
{
|
2174
1478
|
"name": "timer",
|
@@ -2183,16 +1487,34 @@
|
|
2183
1487
|
],
|
2184
1488
|
"references": []
|
2185
1489
|
},
|
2186
|
-
{
|
2187
|
-
"name": "skf-toast-wrapper",
|
2188
|
-
"description": "The `<skf-toast-wrapper>` is a component without UI that positions where the toast shows up on the screen. The toast-wrapper is used internally by the toast component.\n---\n\n\n### **Slots:**\n - _default_ - The alert components that the toast creates will render here.",
|
2189
|
-
"attributes": [{ "name": "debug", "values": [] }],
|
2190
|
-
"references": []
|
2191
|
-
},
|
2192
1490
|
{
|
2193
1491
|
"name": "skf-tooltip",
|
2194
|
-
"description": "The `<skf-tooltip>` is a component that displays a
|
2195
|
-
"attributes": [
|
1492
|
+
"description": "The `<skf-tooltip>` is a component that displays a tooltip.\n---\n\n\n### **Events:**\n - **skf-opened** - Fired when the dropdown is opened\n- **skf-closed** - Fired when the dropdown is closed\n\n### **Slots:**\n - _default_ - The tooltip popover content",
|
1493
|
+
"attributes": [
|
1494
|
+
{
|
1495
|
+
"name": "placement",
|
1496
|
+
"description": "The placement of the dropdown",
|
1497
|
+
"values": [
|
1498
|
+
{ "name": "top" },
|
1499
|
+
{ "name": "right" },
|
1500
|
+
{ "name": "bottom" },
|
1501
|
+
{ "name": "left" },
|
1502
|
+
{ "name": "top-start" },
|
1503
|
+
{ "name": "top-end" },
|
1504
|
+
{ "name": "right-start" },
|
1505
|
+
{ "name": "right-end" },
|
1506
|
+
{ "name": "bottom-start" },
|
1507
|
+
{ "name": "bottom-end" },
|
1508
|
+
{ "name": "left-start" },
|
1509
|
+
{ "name": "left-end" }
|
1510
|
+
]
|
1511
|
+
},
|
1512
|
+
{
|
1513
|
+
"name": "anchor",
|
1514
|
+
"description": "The id of the element the dropdown will be anchored to",
|
1515
|
+
"values": []
|
1516
|
+
}
|
1517
|
+
],
|
2196
1518
|
"references": []
|
2197
1519
|
}
|
2198
1520
|
]
|