@skf-design-system/ui-components 1.0.0-alpha.34 → 1.0.0-alpha.35
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 +20 -27
- package/dist/components/accordion/accordion-item.component.d.ts +36 -0
- package/dist/components/accordion/accordion-item.component.js +98 -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 +8 -9
- 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 +12 -12
- package/dist/components/alert/alert.component.js +57 -55
- package/dist/components/alert/alert.styles.js +50 -51
- package/dist/components/breadcrumb/breadcrumb-item.component.js +60 -0
- package/dist/components/{breadcrumb-item → breadcrumb}/breadcrumb-item.d.ts +2 -2
- package/dist/components/breadcrumb/breadcrumb-item.js +6 -0
- package/dist/components/breadcrumb/breadcrumb-item.styles.js +63 -0
- package/dist/components/breadcrumb/breadcrumb.component.d.ts +7 -4
- package/dist/components/breadcrumb/breadcrumb.component.js +65 -0
- package/dist/components/breadcrumb/breadcrumb.d.ts +2 -2
- package/dist/components/breadcrumb/breadcrumb.js +6 -0
- package/dist/components/breadcrumb/breadcrumb.styles.js +25 -0
- package/dist/components/button/button.component.d.ts +17 -14
- package/dist/components/button/button.component.js +73 -61
- package/dist/components/button/button.styles.d.ts +1 -2
- package/dist/components/button/button.styles.js +13 -3
- package/dist/components/card/card.component.d.ts +4 -1
- package/dist/components/card/card.component.js +46 -36
- package/dist/components/card/card.styles.js +36 -23
- package/dist/components/checkbox/checkbox.component.d.ts +17 -13
- package/dist/components/checkbox/checkbox.component.js +74 -61
- package/dist/components/checkbox/checkbox.styles.d.ts +1 -2
- package/dist/components/checkbox/checkbox.styles.js +1 -5
- package/dist/components/datepicker/datepicker-calendar.component.d.ts +80 -0
- package/dist/components/datepicker/datepicker-calendar.component.js +415 -0
- package/dist/components/datepicker/datepicker-calendar.d.ts +8 -0
- package/dist/components/datepicker/datepicker-calendar.js +6 -0
- package/dist/components/datepicker/datepicker-calendar.styles.js +202 -0
- package/dist/components/datepicker/datepicker-popup.component.d.ts +64 -0
- package/dist/components/datepicker/datepicker-popup.component.js +261 -0
- package/dist/components/datepicker/datepicker-popup.d.ts +8 -0
- package/dist/components/datepicker/datepicker-popup.helpers.d.ts +41 -0
- package/dist/components/datepicker/datepicker-popup.helpers.js +83 -0
- package/dist/components/datepicker/datepicker-popup.js +6 -0
- package/dist/components/datepicker/datepicker-popup.styles.js +87 -0
- package/dist/components/datepicker/datepicker.component.d.ts +121 -0
- package/dist/components/datepicker/datepicker.component.js +455 -0
- package/dist/components/datepicker/datepicker.d.ts +8 -0
- package/dist/components/datepicker/datepicker.helpers.d.ts +38 -0
- package/dist/components/datepicker/datepicker.helpers.js +31 -0
- package/dist/components/datepicker/datepicker.js +6 -0
- package/dist/components/datepicker/datepicker.styles.d.ts +1 -0
- package/dist/components/datepicker/datepicker.styles.js +18 -0
- package/dist/components/dialog/dialog.component.d.ts +20 -29
- package/dist/components/dialog/dialog.component.js +85 -75
- package/dist/components/dialog/dialog.d.ts +2 -2
- 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 +8 -12
- package/dist/components/heading/heading.component.js +52 -24
- package/dist/components/heading/heading.styles.d.ts +1 -2
- package/dist/components/heading/heading.styles.js +35 -37
- package/dist/components/icon/icon.component.d.ts +19 -18
- package/dist/components/icon/icon.component.js +64 -43
- package/dist/components/icon/icon.styles.d.ts +1 -2
- package/dist/components/icon/icon.styles.js +61 -60
- package/dist/components/input/input.component.d.ts +31 -31
- package/dist/components/input/input.component.js +166 -146
- 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 +8 -6
- package/dist/components/logo/logo.component.js +55 -51
- package/dist/components/logo/logo.styles.js +26 -16
- 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-item → menu}/menu-item.d.ts +2 -2
- package/dist/components/menu/menu.component.d.ts +10 -8
- package/dist/components/menu/menu.component.js +8 -10
- package/dist/components/menu/menu.d.ts +2 -2
- 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.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/popover/popover.d.ts +2 -2
- package/dist/components/progress/progress.component.d.ts +2 -2
- package/dist/components/progress/progress.component.js +31 -37
- package/dist/components/progress/progress.d.ts +2 -2
- package/dist/components/progress/progress.styles.js +42 -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-option-group → select}/select-option-group.d.ts +2 -2
- package/dist/components/select/select-option-group.style.d.ts +1 -0
- package/dist/components/{select-option → select}/select-option.component.d.ts +9 -10
- package/dist/components/{select-option → select}/select-option.component.js +23 -23
- 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 +18 -17
- package/dist/components/select/select.component.js +22 -23
- package/dist/components/select/select.controllers.d.ts +21 -10
- package/dist/components/select/select.controllers.js +27 -22
- package/dist/components/select/stories/select.stories.icons.d.ts +7 -0
- package/dist/components/{stepper-item → stepper}/stepper-item.component.js +48 -48
- package/dist/components/{stepper-item → stepper}/stepper-item.d.ts +2 -2
- 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.d.ts +2 -2
- 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/switch/switch.d.ts +2 -2
- package/dist/components/{tab-panel → tabs}/tab-panel.component.js +1 -1
- package/dist/components/{tab-panel → tabs}/tab-panel.d.ts +2 -2
- package/dist/components/tabs/tab-panel.styles.d.ts +1 -0
- package/dist/components/{tab → tabs}/tab.component.d.ts +2 -2
- package/dist/components/{tab → tabs}/tab.component.js +1 -1
- package/dist/components/{tab → tabs}/tab.d.ts +2 -2
- package/dist/components/tabs/tab.styles.d.ts +1 -0
- package/dist/components/{tab-group/tab-group.component.d.ts → tabs/tabs.component.d.ts} +3 -4
- package/dist/components/{tab-group/tab-group.component.js → tabs/tabs.component.js} +36 -37
- package/dist/components/tabs/tabs.d.ts +8 -0
- package/dist/components/tabs/tabs.js +6 -0
- package/dist/components/tabs/tabs.styles.d.ts +1 -0
- package/dist/components/{tab-group/tab-group.styles.js → tabs/tabs.styles.js} +16 -16
- package/dist/components/tag/tag.component.d.ts +20 -17
- package/dist/components/tag/tag.component.js +68 -67
- package/dist/components/tag/tag.d.ts +2 -2
- package/dist/components/tag/tag.styles.js +63 -50
- 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.component.js +15 -15
- 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/toast-item.styles.js +18 -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 +9 -5
- package/dist/components/toast/toast.component.js +32 -28
- package/dist/components/toast/toast.singleton.d.ts +6 -11
- package/dist/components/toast/toast.singleton.js +23 -23
- package/dist/components/tooltip/tooltip.component.d.ts +7 -7
- package/dist/components/tooltip/tooltip.component.js +16 -11
- package/dist/components/tooltip/tooltip.d.ts +2 -2
- package/dist/custom-elements.json +4091 -2539
- package/dist/index.d.ts +22 -9
- package/dist/index.js +111 -74
- 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/components/skf-element.d.ts +1 -3
- package/dist/internal/components/skf-element.js +4 -9
- 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 -6
- package/dist/internal/controllers/popover.controller.js +9 -14
- package/dist/internal/helpers/dateFormatter.d.ts +2 -0
- package/dist/internal/helpers/hintSeverity.d.ts +2 -2
- package/dist/internal/helpers/hintSeverity.js +1 -1
- package/dist/internal/helpers/stateMap.d.ts +14 -0
- package/dist/internal/helpers/stateMap.js +68 -0
- package/dist/internal/helpers/utilityTypes.d.ts +22 -0
- package/dist/internal/helpers/uuid.d.ts +15 -0
- package/dist/internal/helpers/uuid.js +14 -0
- package/dist/internal/helpers/watch.d.ts +1 -1
- package/dist/internal/helpers/watch.js +12 -12
- 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 +38 -37
- package/dist/styles/form-field.styles.js +11 -6
- package/dist/styles/global-alt.css +1 -0
- package/dist/styles/global.css +1 -1
- package/dist/types/jsx/custom-element-jsx.d.ts +740 -1294
- package/dist/types/vue/index.d.ts +543 -322
- package/dist/vscode.html-custom-data.json +526 -1076
- package/dist/web-types.json +1237 -761
- package/package.json +45 -61
- package/dist/components/accordion/accordion.test.d.ts +0 -1
- package/dist/components/checkbox/checkbox.test.d.ts +0 -1
- 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/collapse/collapse.test.d.ts +0 -1
- package/dist/components/input/input.test.d.ts +0 -1
- package/dist/components/menu-item/menu-item.component.d.ts +0 -25
- package/dist/components/radio/radio.test.d.ts +0 -1
- package/dist/components/select-option/select-option.controllers.d.ts +0 -9
- package/dist/components/switch/switch.test.d.ts +0 -1
- package/dist/components/tab-group/tab-group.d.ts +0 -8
- package/dist/components/tab-group/tab-group.js +0 -6
- package/dist/components/toast-item/toast-item.styles.js +0 -16
- package/dist/internal/constants/heading.d.ts +0 -2
- package/dist/internal/playwright/index.d.ts +0 -1
- package/dist/react/index.d.ts +0 -35
- package/dist/react/index.js +0 -35
- 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-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/{breadcrumb-item → breadcrumb}/breadcrumb-item.component.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 → datepicker/datepicker-calendar.styles.d.ts} +0 -0
- /package/dist/components/{select-option/select-option.styles.d.ts → datepicker/datepicker-popup.styles.d.ts} +0 -0
- /package/dist/components/{stepper-item/stepper-item.styles.d.ts → drawer/drawer.styles.d.ts} +0 -0
- /package/dist/components/{tab-group/tab-group.styles.d.ts → header/header.styles.d.ts} +0 -0
- /package/dist/components/{menu-item → menu}/menu-item.js +0 -0
- /package/dist/components/{tab-panel/tab-panel.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/{tab/tab.styles.d.ts → nav/nav-item.styles.d.ts} +0 -0
- /package/dist/components/{toast-wrapper/toast-wrapper.styles.d.ts → nav/nav.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.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.js +0 -0
- /package/dist/components/{stepper-item → stepper}/stepper-item.styles.js +0 -0
- /package/dist/components/{tab-panel → tabs}/tab-panel.component.d.ts +0 -0
- /package/dist/components/{tab-panel → tabs}/tab-panel.js +0 -0
- /package/dist/components/{tab-panel → tabs}/tab-panel.styles.js +0 -0
- /package/dist/components/{tab → tabs}/tab.js +0 -0
- /package/dist/components/{tab → tabs}/tab.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.styles.d.ts +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
@@ -1,12 +1,12 @@
|
|
1
1
|
import { SkfLink as s } from "../link/link.component.js";
|
2
2
|
import "lit";
|
3
|
-
import { styles as
|
3
|
+
import { styles as e } from "./menu-item.styles.js";
|
4
4
|
const t = class t extends s {
|
5
5
|
constructor() {
|
6
|
-
super(), s.classMap = { "menu-item": !0 };
|
6
|
+
super(), this.role = "menuitem", s.classMap = { "menu-item": !0 };
|
7
7
|
}
|
8
8
|
};
|
9
|
-
t.styles = [s.styles,
|
9
|
+
t.styles = [s.styles, e];
|
10
10
|
let r = t;
|
11
11
|
export {
|
12
12
|
r as SkfMenuItem
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { SkfMenuItem } from './menu-item.component';
|
2
|
-
export * from './menu-item.component';
|
1
|
+
import { SkfMenuItem } from './menu-item.component.js';
|
2
|
+
export * from './menu-item.component.js';
|
3
3
|
export default SkfMenuItem;
|
4
4
|
declare global {
|
5
5
|
interface HTMLElementTagNameMap {
|
@@ -1,16 +1,18 @@
|
|
1
1
|
import { SkfPopoverBase } from '../../internal/base-classes/popover/popover.base.js';
|
2
2
|
import type { CSSResultGroup } from 'lit';
|
3
3
|
/**
|
4
|
-
*
|
4
|
+
* For a popover menu like skf-menu containing skf-menu-item elements, the correct ARIA role is menu. This role indicates that the element represents a menu, typically triggered by a button or another interactive element, like in a popover context. The menu role is suitable for context menus or secondary menus. Each skf-menu-item will implicitly have the correct menuitem role. It's important to make sure the menu is properly linked to its trigger using ARIA attributes like aria-haspopup and aria-expanded on the trigger and aria-controls on the menu to establish the relationship between the trigger and the menu for assistive technologies. Setting the menu role directly on the skf-menu element is the right way to go here.
|
5
|
+
*/
|
6
|
+
/**
|
7
|
+
* The `<skf-menu>` is a component that displays a list of actions or options
|
5
8
|
*
|
6
|
-
*
|
9
|
+
* See [zeroheight](https://zeroheight.com/853e936c9/p/983e5d-popover) for design principles
|
7
10
|
*
|
8
|
-
* @
|
9
|
-
* @
|
10
|
-
* @property {string} [anchor] - The id of the element the menu will be anchored to
|
11
|
+
* @attribute {"top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end"} [placement='bottom-start'] - The placement of the menu
|
12
|
+
* @attribute {string} anchor - The id of the element the menu will be anchored to
|
11
13
|
*
|
12
|
-
* @event
|
13
|
-
* @event
|
14
|
+
* @event {CustomEvent} skf-opened - Fired when the menu is opened
|
15
|
+
* @event {CustomEvent} skf-closed - Fired when the menu is closed
|
14
16
|
*
|
15
17
|
* @slot - The menu popover content
|
16
18
|
*
|
@@ -19,6 +21,6 @@ import type { CSSResultGroup } from 'lit';
|
|
19
21
|
export declare class SkfMenu extends SkfPopoverBase {
|
20
22
|
static styles: CSSResultGroup;
|
21
23
|
constructor();
|
24
|
+
/** @internal */
|
22
25
|
addEventListeners($element: HTMLElement | Element): void;
|
23
|
-
removeEventListeners($element: HTMLElement | Element): void;
|
24
26
|
}
|
@@ -1,18 +1,16 @@
|
|
1
1
|
import { SkfPopoverBase as t } from "../../internal/base-classes/popover/popover.base.js";
|
2
|
-
import { styles as
|
2
|
+
import { styles as r } from "./menu.styles.js";
|
3
3
|
const s = class s extends t {
|
4
4
|
constructor() {
|
5
|
-
super(), this.placement = "bottom-start", t.classMap = { menu: !0 };
|
5
|
+
super(), this.placement = "bottom-start", this.role = "menu", this.triggerEvent = "click", this.variant = "menu", t.classMap = { menu: !0 };
|
6
6
|
}
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
removeEventListeners(e) {
|
11
|
-
e.removeEventListener("mouseenter", this.open);
|
7
|
+
/** @internal */
|
8
|
+
addEventListeners(i) {
|
9
|
+
i.addEventListener(this.triggerEvent, this.open.bind(this), { signal: this.signal });
|
12
10
|
}
|
13
11
|
};
|
14
|
-
s.styles = [t.styles,
|
15
|
-
let
|
12
|
+
s.styles = [t.styles, r];
|
13
|
+
let e = s;
|
16
14
|
export {
|
17
|
-
|
15
|
+
e as SkfMenu
|
18
16
|
};
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import '../link/link.js';
|
2
|
+
import { SkfElement } from '../../internal/components/skf-element';
|
3
|
+
import type { Icon } from '../../internal/types.js';
|
4
|
+
import { type CSSResultGroup } from 'lit';
|
5
|
+
/**
|
6
|
+
* The `<skf-nav>` is a component that displays a list of <nav-items>.
|
7
|
+
*
|
8
|
+
* @slot - The component's main content
|
9
|
+
*
|
10
|
+
* @tagname skf-nav-item
|
11
|
+
*/
|
12
|
+
export declare class SkfNavItem extends SkfElement {
|
13
|
+
static styles: CSSResultGroup;
|
14
|
+
href: string;
|
15
|
+
icon?: Icon;
|
16
|
+
connectedCallback(): void;
|
17
|
+
render(): import("lit").TemplateResult<1>;
|
18
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import "../link/link.js";
|
2
|
+
import { SkfElement as m } from "../../internal/components/skf-element.js";
|
3
|
+
import { componentStyles as c } from "../../styles/component.styles.js";
|
4
|
+
import { html as h } from "lit";
|
5
|
+
import { property as f } from "lit/decorators.js";
|
6
|
+
import { ifDefined as u } from "lit/directives/if-defined.js";
|
7
|
+
import { styles as a } from "./nav-item.styles.js";
|
8
|
+
var d = Object.defineProperty, p = (i, s, n, y) => {
|
9
|
+
for (var r = void 0, t = i.length - 1, l; t >= 0; t--)
|
10
|
+
(l = i[t]) && (r = l(s, n, r) || r);
|
11
|
+
return r && d(s, n, r), r;
|
12
|
+
};
|
13
|
+
const o = class o extends m {
|
14
|
+
constructor() {
|
15
|
+
super(...arguments), this.href = "#";
|
16
|
+
}
|
17
|
+
connectedCallback() {
|
18
|
+
super.connectedCallback(), this.role = "menuitem";
|
19
|
+
}
|
20
|
+
render() {
|
21
|
+
return h`
|
22
|
+
<skf-link color="inverse" href=${this.href} icon=${u(this.icon)}>
|
23
|
+
<slot></slot>
|
24
|
+
</skf-link>
|
25
|
+
`;
|
26
|
+
}
|
27
|
+
};
|
28
|
+
o.styles = [c, a];
|
29
|
+
let e = o;
|
30
|
+
p([
|
31
|
+
f({ reflect: !0 })
|
32
|
+
], e.prototype, "href");
|
33
|
+
p([
|
34
|
+
f()
|
35
|
+
], e.prototype, "icon");
|
36
|
+
export {
|
37
|
+
e as SkfNavItem
|
38
|
+
};
|
@@ -0,0 +1,39 @@
|
|
1
|
+
import { css as t } from "lit";
|
2
|
+
const s = t`
|
3
|
+
@layer components {
|
4
|
+
skf-link::part(root) {
|
5
|
+
block-size: var(--skf-header-height);
|
6
|
+
display: flex;
|
7
|
+
padding-inline: var(--skf-spacing-100);
|
8
|
+
position: relative;
|
9
|
+
}
|
10
|
+
|
11
|
+
skf-link::part(root)::after {
|
12
|
+
content: '';
|
13
|
+
position: absolute;
|
14
|
+
transition: translate calc(var(--skf-motion-duration-fast) * 1ms)
|
15
|
+
var(--skf-motion-easing-ease-in);
|
16
|
+
}
|
17
|
+
|
18
|
+
skf-link::part(root):hover::after {
|
19
|
+
--_skf-nav-link-translate: 0;
|
20
|
+
}
|
21
|
+
|
22
|
+
:host-context(skf-nav:not([vertical])) skf-link::part(root)::after {
|
23
|
+
border-bottom: var(--skf-size-4) solid var(--skf-border-color-inverse);
|
24
|
+
inset-block-end: 0;
|
25
|
+
inset-inline: 0;
|
26
|
+
translate: 0 var(--_skf-nav-link-translate, 100%);
|
27
|
+
}
|
28
|
+
|
29
|
+
:host-context(skf-nav[vertical]) skf-link::part(root)::after {
|
30
|
+
border-left: var(--skf-size-4) solid var(--skf-border-color-inverse);
|
31
|
+
inset-block: 0;
|
32
|
+
inset-inline-start: 0;
|
33
|
+
translate: var(--_skf-nav-link-translate, -100%) 0;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
`;
|
37
|
+
export {
|
38
|
+
s as styles
|
39
|
+
};
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { SkfElement } from '../../internal/components/skf-element';
|
2
|
+
import { type CSSResultGroup } from 'lit';
|
3
|
+
/**
|
4
|
+
* The `<skf-nav>` is a component that displays a list of <nav-items>.
|
5
|
+
*
|
6
|
+
* @documentation See [zeroheight](https://zeroheight.com/****) for design principles
|
7
|
+
*
|
8
|
+
* @slot - The component's main content
|
9
|
+
*
|
10
|
+
* @tagname skf-nav
|
11
|
+
*/
|
12
|
+
export declare class SkfNav extends SkfElement {
|
13
|
+
static styles: CSSResultGroup;
|
14
|
+
vertical: boolean;
|
15
|
+
connectedCallback(): void;
|
16
|
+
render(): import("lit").TemplateResult<1>;
|
17
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import { SkfElement as s } from "../../internal/components/skf-element.js";
|
2
|
+
import { componentStyles as m } from "../../styles/component.styles.js";
|
3
|
+
import { html as p } from "lit";
|
4
|
+
import { property as c } from "lit/decorators.js";
|
5
|
+
import { ifDefined as f } from "lit/directives/if-defined.js";
|
6
|
+
import { styles as u } from "./nav.styles.js";
|
7
|
+
var v = Object.defineProperty, d = (i, a, l, h) => {
|
8
|
+
for (var e = void 0, r = i.length - 1, n; r >= 0; r--)
|
9
|
+
(n = i[r]) && (e = n(a, l, e) || e);
|
10
|
+
return e && v(a, l, e), e;
|
11
|
+
};
|
12
|
+
const o = class o extends s {
|
13
|
+
constructor() {
|
14
|
+
super(...arguments), this.vertical = !1;
|
15
|
+
}
|
16
|
+
connectedCallback() {
|
17
|
+
super.connectedCallback(), this.ariaLabel = this.ariaLabel ?? "Main navigation", this.role = "nav";
|
18
|
+
}
|
19
|
+
render() {
|
20
|
+
return p`
|
21
|
+
<ul aria-orientation=${f(this.vertical ? "vertical" : void 0)} role="menubar">
|
22
|
+
<slot></slot>
|
23
|
+
</ul>
|
24
|
+
`;
|
25
|
+
}
|
26
|
+
};
|
27
|
+
o.styles = [m, u];
|
28
|
+
let t = o;
|
29
|
+
d([
|
30
|
+
c({ type: Boolean, reflect: !0 })
|
31
|
+
], t.prototype, "vertical");
|
32
|
+
export {
|
33
|
+
t as SkfNav
|
34
|
+
};
|
@@ -1,16 +1,18 @@
|
|
1
1
|
import { SkfPopoverBase } from '../../internal/base-classes/popover/popover.base.js';
|
2
2
|
import type { CSSResultGroup } from 'lit';
|
3
3
|
/**
|
4
|
-
* The
|
4
|
+
* The most appropriate ARIA role is dialog. Even though it's light-dismissible, the presence of an interactive element (the link) suggests it functions more like a dialog presenting options or actions. Since it is light-dismissible and not truly modal (doesn't prevent interaction with the rest of the page while open), you should also set aria-modal="false" to accurately reflect its behavior. Don't forget to include a label with aria-labelledby (pointing to a visible label) or aria-label if a visible label isn't present.
|
5
|
+
*/
|
6
|
+
/**
|
7
|
+
* The `<skf-popover>` is a general purpose component that displays the slot content in a popover.
|
5
8
|
*
|
6
|
-
*
|
9
|
+
* See [zeroheight](https://zeroheight.com/853e936c9/p/983e5d-popover) for design principles
|
7
10
|
*
|
8
|
-
* @
|
9
|
-
* @
|
10
|
-
* @property {string} [anchor] - The id of the element the menu will be anchored to
|
11
|
+
* @attribute {"top" | "right" | "bottom" | "left" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end"} [placement='bottom-start'] - The placement of the popover
|
12
|
+
* @attribute {string} anchor - The id of the element the menu will be anchored to
|
11
13
|
*
|
12
|
-
* @event
|
13
|
-
* @event
|
14
|
+
* @event {CustomEvent} skf-opened - Fired when the menu is opened
|
15
|
+
* @event {CustomEvent} skf-closed - Fired when the menu is closed
|
14
16
|
*
|
15
17
|
* @slot - The popover content
|
16
18
|
*
|
@@ -23,7 +25,8 @@ export declare class SkfPopover extends SkfPopoverBase {
|
|
23
25
|
/** If true, hides the arrow */
|
24
26
|
hideArrow: boolean;
|
25
27
|
constructor();
|
28
|
+
/** @internal */
|
26
29
|
hideArrowChanged(): void;
|
30
|
+
/** @internal */
|
27
31
|
addEventListeners($element: HTMLElement | Element): void;
|
28
|
-
removeEventListeners($element: HTMLElement | Element): void;
|
29
32
|
}
|
@@ -1,37 +1,35 @@
|
|
1
1
|
import { SkfPopoverBase as h } from "../../internal/base-classes/popover/popover.base.js";
|
2
|
-
import { watch as
|
3
|
-
import { property as
|
4
|
-
import { styles as
|
5
|
-
var
|
6
|
-
for (var
|
7
|
-
(p =
|
8
|
-
return
|
2
|
+
import { watch as f } from "../../internal/helpers/watch.js";
|
3
|
+
import { property as d } from "lit/decorators.js";
|
4
|
+
import { styles as w } from "./popover.styles.js";
|
5
|
+
var c = Object.defineProperty, m = Object.getOwnPropertyDescriptor, a = (l, r, o, s) => {
|
6
|
+
for (var t = s > 1 ? void 0 : s ? m(r, o) : r, i = l.length - 1, p; i >= 0; i--)
|
7
|
+
(p = l[i]) && (t = (s ? p(r, o, t) : p(t)) || t);
|
8
|
+
return s && t && c(r, o, t), t;
|
9
9
|
};
|
10
|
-
const
|
10
|
+
const n = class n extends h {
|
11
11
|
constructor() {
|
12
|
-
super(), this.offset = 8, this.hideArrow = !1, this.arrow = !this.hideArrow, this.placement = "bottom-start", h.classMap = { popover: !0 };
|
12
|
+
super(), this.offset = 8, this.hideArrow = !1, this.arrow = !this.hideArrow, this.placement = "bottom-start", this.triggerEvent = "click", this.variant = "popup", h.classMap = { popover: !0 };
|
13
13
|
}
|
14
14
|
hideArrowChanged() {
|
15
15
|
this.arrow = !this.hideArrow;
|
16
16
|
}
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
removeEventListeners(e) {
|
21
|
-
e.removeEventListener("mouseenter", this.open);
|
17
|
+
/** @internal */
|
18
|
+
addEventListeners(r) {
|
19
|
+
r.addEventListener(this.triggerEvent, this.open.bind(this), { signal: this.signal });
|
22
20
|
}
|
23
21
|
};
|
24
|
-
|
25
|
-
let
|
26
|
-
|
27
|
-
|
28
|
-
],
|
29
|
-
|
30
|
-
|
31
|
-
],
|
32
|
-
|
33
|
-
|
34
|
-
],
|
22
|
+
n.styles = [h.styles, w];
|
23
|
+
let e = n;
|
24
|
+
a([
|
25
|
+
d({ type: Number })
|
26
|
+
], e.prototype, "offset", 2);
|
27
|
+
a([
|
28
|
+
d({ type: Boolean })
|
29
|
+
], e.prototype, "hideArrow", 2);
|
30
|
+
a([
|
31
|
+
f("hideArrow")
|
32
|
+
], e.prototype, "hideArrowChanged", 1);
|
35
33
|
export {
|
36
|
-
|
34
|
+
e as SkfPopover
|
37
35
|
};
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { SkfPopover } from './popover.component';
|
2
|
-
export * from './popover.component';
|
1
|
+
import { SkfPopover } from './popover.component.js';
|
2
|
+
export * from './popover.component.js';
|
3
3
|
export default SkfPopover;
|
4
4
|
declare global {
|
5
5
|
interface HTMLElementTagNameMap {
|
@@ -3,7 +3,7 @@ import { type CSSResultGroup } from 'lit';
|
|
3
3
|
/**
|
4
4
|
* The `<skf-progress>` element displays an indicator showing the completion progress of a task, typically displayed as a progress bar
|
5
5
|
*
|
6
|
-
* @documentation See [zeroheight](https://zeroheight.com
|
6
|
+
* @documentation See [zeroheight](https://zeroheight.com/853e936c9/p/36d674-progress-bar) for design principles
|
7
7
|
*
|
8
8
|
* @tagname skf-progress
|
9
9
|
*/
|
@@ -17,6 +17,6 @@ export declare class SkfProgress extends SkfElement {
|
|
17
17
|
max: number;
|
18
18
|
/** Specifies how much of the task that has been completed */
|
19
19
|
value: number;
|
20
|
-
|
20
|
+
connectedCallback(): void;
|
21
21
|
render(): import("lit").TemplateResult<1>;
|
22
22
|
}
|
@@ -1,49 +1,43 @@
|
|
1
|
-
var
|
1
|
+
var u = (t) => {
|
2
2
|
throw TypeError(t);
|
3
3
|
};
|
4
|
-
var
|
5
|
-
var
|
4
|
+
var d = (t, e, r) => e.has(t) || u("Cannot " + r);
|
5
|
+
var h = (t, e, r) => (d(t, e, "read from private field"), r ? r.call(t) : e.get(t)), f = (t, e, r) => e.has(t) ? u("Cannot add the same private member more than once") : e instanceof WeakSet ? e.add(t) : e.set(t, r), v = (t, e, r, l) => (d(t, e, "write to private field"), l ? l.call(t, r) : e.set(t, r), r);
|
6
6
|
import { SkfElement as y } from "../../internal/components/skf-element.js";
|
7
|
-
import
|
8
|
-
import { html as
|
9
|
-
import { property as
|
10
|
-
import {
|
11
|
-
|
12
|
-
var
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
}, o;
|
7
|
+
import { componentStyles as b } from "../../styles/component.styles.js";
|
8
|
+
import { html as x } from "lit";
|
9
|
+
import { property as n } from "lit/decorators.js";
|
10
|
+
import { styles as C } from "./progress.styles.js";
|
11
|
+
var _ = Object.defineProperty, m = (t, e, r, l) => {
|
12
|
+
for (var s = void 0, p = t.length - 1, c; p >= 0; p--)
|
13
|
+
(c = t[p]) && (s = c(e, r, s) || s);
|
14
|
+
return s && _(e, r, s), s;
|
15
|
+
}, a;
|
17
16
|
const i = class i extends y {
|
18
17
|
constructor() {
|
19
|
-
super();
|
20
|
-
|
21
|
-
this.animated = !1, this.max = 1, this.value = 0
|
18
|
+
super(...arguments);
|
19
|
+
f(this, a);
|
20
|
+
v(this, a, this.attachInternals()), this.animated = !1, this.max = 1, this.value = 0;
|
21
|
+
}
|
22
|
+
connectedCallback() {
|
23
|
+
super.connectedCallback(), h(this, a).role = "progressbar";
|
22
24
|
}
|
23
25
|
render() {
|
24
26
|
const r = this.value / this.max * 100;
|
25
|
-
return
|
26
|
-
<div
|
27
|
-
class=${_({
|
28
|
-
progress: !0,
|
29
|
-
"progress--animated": this.animated
|
30
|
-
})}
|
31
|
-
style="--_skf-progress-value: ${r}%"
|
32
|
-
></div>
|
33
|
-
`;
|
27
|
+
return x`<div id="root" style="--_skf-progress-value: ${r}%"></div>`;
|
34
28
|
}
|
35
29
|
};
|
36
|
-
|
37
|
-
let
|
38
|
-
|
39
|
-
|
40
|
-
],
|
41
|
-
|
42
|
-
|
43
|
-
],
|
44
|
-
|
45
|
-
|
46
|
-
],
|
30
|
+
a = new WeakMap(), i.styles = [b, C], i.formAssociated = !0;
|
31
|
+
let o = i;
|
32
|
+
m([
|
33
|
+
n({ type: Boolean, reflect: !0 })
|
34
|
+
], o.prototype, "animated");
|
35
|
+
m([
|
36
|
+
n({ type: Number })
|
37
|
+
], o.prototype, "max");
|
38
|
+
m([
|
39
|
+
n({ type: Number })
|
40
|
+
], o.prototype, "value");
|
47
41
|
export {
|
48
|
-
|
42
|
+
o as SkfProgress
|
49
43
|
};
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { SkfProgress } from './progress.component';
|
2
|
-
export * from './progress.component';
|
1
|
+
import { SkfProgress } from './progress.component.js';
|
2
|
+
export * from './progress.component.js';
|
3
3
|
export default SkfProgress;
|
4
4
|
declare global {
|
5
5
|
interface HTMLElementTagNameMap {
|
@@ -1,48 +1,55 @@
|
|
1
1
|
import { css as r } from "lit";
|
2
|
-
const
|
3
|
-
/* stylelint-disable selector-class-pattern */
|
2
|
+
const o = r`
|
4
3
|
@layer components {
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
border-radius: 0.25rem; /* Missing token */
|
9
|
-
overflow: hidden;
|
4
|
+
@layer base {
|
5
|
+
#root {
|
6
|
+
--_skf-progress-value: 0%;
|
10
7
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
8
|
+
background: var(--skf-bg-color-neutral-3);
|
9
|
+
block-size: var(--skf-size-8);
|
10
|
+
border-radius: 0.25rem; /* Missing token */
|
11
|
+
overflow: hidden;
|
12
|
+
|
13
|
+
&::after {
|
14
|
+
background-color: var(--skf-bg-color-emphasised);
|
15
|
+
block-size: inherit;
|
16
|
+
border-radius: inherit;
|
17
|
+
content: '';
|
18
|
+
display: block;
|
19
|
+
inline-size: var(--_skf-progress-value);
|
20
|
+
transition: inline-size calc(var(--skf-motion-duration-slow) * 1ms)
|
21
|
+
cubic-bezier(0.4, 0.93, 0.71, 0.89);
|
22
|
+
}
|
20
23
|
}
|
21
24
|
}
|
22
25
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
26
|
+
@layer mods {
|
27
|
+
:host([animated]) {
|
28
|
+
#root::after {
|
29
|
+
animation: skf-progress-animation calc(var(--skf-motion-duration-slow) * 1ms) linear
|
30
|
+
infinite reverse;
|
31
|
+
background-image: linear-gradient(
|
32
|
+
-45deg,
|
33
|
+
rgb(255 255 255 / 20%) 25%,
|
34
|
+
transparent 25%,
|
35
|
+
transparent 50%,
|
36
|
+
rgb(255 255 255 / 20%) 50%,
|
37
|
+
rgb(255 255 255 / 20%) 75%,
|
38
|
+
transparent 75%,
|
39
|
+
transparent
|
40
|
+
);
|
41
|
+
background-size: 50px 50px;
|
42
|
+
}
|
43
|
+
}
|
37
44
|
}
|
45
|
+
}
|
38
46
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
}
|
47
|
+
@keyframes skf-progress-animation {
|
48
|
+
to {
|
49
|
+
background-position: 50px 50px;
|
43
50
|
}
|
44
51
|
}
|
45
52
|
`;
|
46
53
|
export {
|
47
|
-
|
54
|
+
o as styles
|
48
55
|
};
|