@sk-web-gui/core 2.2.2 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/aria-plugin.js +47 -0
- package/dist/cjs/aria-plugin.js.map +1 -0
- package/dist/cjs/components/accordion.js +0 -5
- package/dist/cjs/components/accordion.js.map +1 -1
- package/dist/cjs/components/chip.js.map +1 -1
- package/dist/cjs/components/combobox.js.map +1 -1
- package/dist/cjs/components/forms.js.map +1 -1
- package/dist/cjs/components/input.js.map +1 -1
- package/dist/cjs/components/label.js.map +1 -1
- package/dist/cjs/components/list.js.map +1 -1
- package/dist/cjs/components/logo.js.map +1 -1
- package/dist/cjs/components/menu-vertical.js.map +1 -1
- package/dist/cjs/components/menubar.js.map +1 -1
- package/dist/cjs/components/popup-menu.js.map +1 -1
- package/dist/cjs/components/progress-bar.js.map +1 -1
- package/dist/cjs/components/progress-stepper.js +11 -1
- package/dist/cjs/components/progress-stepper.js.map +1 -1
- package/dist/cjs/components/search-field.js.map +1 -1
- package/dist/cjs/components/select.js.map +1 -1
- package/dist/cjs/components/spinner.js.map +1 -1
- package/dist/cjs/components/table-autotable.js.map +1 -1
- package/dist/cjs/components/tabs.js.map +1 -1
- package/dist/cjs/components/tooltip.js.map +1 -1
- package/dist/cjs/data-plugin.js +30 -0
- package/dist/cjs/data-plugin.js.map +1 -0
- package/dist/cjs/index.js +4 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/plugin.js.map +1 -1
- package/dist/cjs/preset.js +5 -1
- package/dist/cjs/preset.js.map +1 -1
- package/dist/cjs/theme.js.map +1 -1
- package/dist/cjs/units.js.map +1 -1
- package/dist/esm/aria-plugin.js +42 -0
- package/dist/esm/aria-plugin.js.map +1 -0
- package/dist/esm/components/accordion.js +0 -5
- package/dist/esm/components/accordion.js.map +1 -1
- package/dist/esm/components/chip.js.map +1 -1
- package/dist/esm/components/combobox.js.map +1 -1
- package/dist/esm/components/forms.js.map +1 -1
- package/dist/esm/components/input.js.map +1 -1
- package/dist/esm/components/label.js.map +1 -1
- package/dist/esm/components/list.js.map +1 -1
- package/dist/esm/components/logo.js.map +1 -1
- package/dist/esm/components/menu-vertical.js.map +1 -1
- package/dist/esm/components/menubar.js.map +1 -1
- package/dist/esm/components/popup-menu.js.map +1 -1
- package/dist/esm/components/progress-bar.js.map +1 -1
- package/dist/esm/components/progress-stepper.js +11 -1
- package/dist/esm/components/progress-stepper.js.map +1 -1
- package/dist/esm/components/search-field.js.map +1 -1
- package/dist/esm/components/select.js.map +1 -1
- package/dist/esm/components/spinner.js.map +1 -1
- package/dist/esm/components/table-autotable.js.map +1 -1
- package/dist/esm/components/tabs.js.map +1 -1
- package/dist/esm/components/tooltip.js.map +1 -1
- package/dist/esm/data-plugin.js +27 -0
- package/dist/esm/data-plugin.js.map +1 -0
- package/dist/esm/index.js +3 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/plugin.js.map +1 -1
- package/dist/esm/preset.js +5 -1
- package/dist/esm/preset.js.map +1 -1
- package/dist/esm/theme.js.map +1 -1
- package/dist/esm/units.js.map +1 -1
- package/dist/types/accordion/index.d.ts +2 -0
- package/dist/types/accordion/src/accordion/accordion-item.d.ts +8 -0
- package/dist/types/accordion/src/accordion/accordion.d.ts +25 -0
- package/dist/types/accordion/src/accordion/index.d.ts +10 -0
- package/dist/types/accordion/src/disclosure/disclosure.d.ts +53 -0
- package/dist/types/accordion/src/disclosure/index.d.ts +4 -0
- package/dist/types/accordion/src/disclosure/styles.d.ts +1 -0
- package/dist/types/accordion/src/index.d.ts +4 -0
- package/dist/types/accordion/stories/accordion.stories.d.ts +8 -0
- package/dist/types/accordion/stories/disclosure.stories.d.ts +9 -0
- package/dist/types/aria-plugin.d.ts +4 -0
- package/dist/types/avatar/index.d.ts +2 -0
- package/dist/types/avatar/src/avatar.d.ts +17 -0
- package/dist/types/avatar/src/index.d.ts +8 -0
- package/dist/types/avatar/stories/avatar.stories.d.ts +8 -0
- package/dist/types/badge/index.d.ts +2 -0
- package/dist/types/badge/src/badge.d.ts +12 -0
- package/dist/types/badge/src/index.d.ts +8 -0
- package/dist/types/badge/stories/badge.stories.d.ts +8 -0
- package/dist/types/breadcrumb/index.d.ts +2 -0
- package/dist/types/breadcrumb/src/breadcrumb.d.ts +41 -0
- package/dist/types/breadcrumb/src/index.d.ts +11 -0
- package/dist/types/breadcrumb/stories/breadcrumb.stories.d.ts +7 -0
- package/dist/types/button/index.d.ts +2 -0
- package/dist/types/button/src/button-group.d.ts +15 -0
- package/dist/types/button/src/button.d.ts +49 -0
- package/dist/types/button/src/index.d.ts +11 -0
- package/dist/types/button/src/styles.d.ts +1 -0
- package/dist/types/button/stories/announcement.d.ts +5 -0
- package/dist/types/button/stories/button-group.stories.d.ts +8 -0
- package/dist/types/button/stories/button.stories.d.ts +7 -0
- package/dist/types/card/index.d.ts +2 -0
- package/dist/types/card/src/card.d.ts +60 -0
- package/dist/types/card/src/index.d.ts +21 -0
- package/dist/types/card/src/meta-card.d.ts +42 -0
- package/dist/types/card/stories/card.stories.d.ts +4 -0
- package/dist/types/card/stories/meta-card.stories.d.ts +4 -0
- package/dist/types/chip/index.d.ts +2 -0
- package/dist/types/chip/src/chip.d.ts +7 -0
- package/dist/types/chip/src/index.d.ts +4 -0
- package/dist/types/chip/stories/chip.stories.d.ts +12 -0
- package/dist/types/components/accordion.d.ts +0 -5
- package/dist/types/components/progress-stepper.d.ts +10 -0
- package/dist/types/cookie-consent/index.d.ts +2 -0
- package/dist/types/cookie-consent/src/cookie-consent.d.ts +32 -0
- package/dist/types/cookie-consent/src/index.d.ts +15 -0
- package/dist/types/cookie-consent/stories/cookie-consent.stories.d.ts +7 -0
- package/dist/types/core/src/aria-plugin.d.ts +4 -0
- package/dist/types/core/src/base.d.ts +53 -0
- package/dist/types/core/src/colors.d.ts +643 -0
- package/dist/types/core/src/components/accordion.d.ts +164 -0
- package/dist/types/core/src/components/alert.d.ts +21 -0
- package/dist/types/core/src/components/avatar.d.ts +26 -0
- package/dist/types/core/src/components/badge.d.ts +21 -0
- package/dist/types/core/src/components/breadcrumb.d.ts +28 -0
- package/dist/types/core/src/components/button-group.d.ts +25 -0
- package/dist/types/core/src/components/button.d.ts +201 -0
- package/dist/types/core/src/components/card.d.ts +135 -0
- package/dist/types/core/src/components/checkbox.d.ts +108 -0
- package/dist/types/core/src/components/chip.d.ts +34 -0
- package/dist/types/core/src/components/code.d.ts +8 -0
- package/dist/types/core/src/components/combobox.d.ts +72 -0
- package/dist/types/core/src/components/cookie-consent.d.ts +35 -0
- package/dist/types/core/src/components/dialog.d.ts +5 -0
- package/dist/types/core/src/components/divider.d.ts +50 -0
- package/dist/types/core/src/components/dot.d.ts +43 -0
- package/dist/types/core/src/components/filter.d.ts +14 -0
- package/dist/types/core/src/components/footer.d.ts +27 -0
- package/dist/types/core/src/components/forms.d.ts +24 -0
- package/dist/types/core/src/components/header.d.ts +28 -0
- package/dist/types/core/src/components/icon.d.ts +38 -0
- package/dist/types/core/src/components/input.d.ts +214 -0
- package/dist/types/core/src/components/kbd.d.ts +7 -0
- package/dist/types/core/src/components/label.d.ts +27 -0
- package/dist/types/core/src/components/link.d.ts +43 -0
- package/dist/types/core/src/components/list.d.ts +52 -0
- package/dist/types/core/src/components/logo.d.ts +48 -0
- package/dist/types/core/src/components/menu-vertical.d.ts +215 -0
- package/dist/types/core/src/components/menubar.d.ts +35 -0
- package/dist/types/core/src/components/modal.d.ts +45 -0
- package/dist/types/core/src/components/pagination.d.ts +101 -0
- package/dist/types/core/src/components/popup-menu.d.ts +138 -0
- package/dist/types/core/src/components/progress-bar.d.ts +13 -0
- package/dist/types/core/src/components/progress-stepper.d.ts +60 -0
- package/dist/types/core/src/components/radio.d.ts +125 -0
- package/dist/types/core/src/components/search-field.d.ts +34 -0
- package/dist/types/core/src/components/select.d.ts +141 -0
- package/dist/types/core/src/components/snackbar.d.ts +30 -0
- package/dist/types/core/src/components/spinner.d.ts +10 -0
- package/dist/types/core/src/components/switch.d.ts +64 -0
- package/dist/types/core/src/components/table-autotable.d.ts +221 -0
- package/dist/types/core/src/components/table.d.ts +11 -0
- package/dist/types/core/src/components/tabs.d.ts +14 -0
- package/dist/types/core/src/components/tooltip.d.ts +53 -0
- package/dist/types/core/src/components/user-menu.d.ts +14 -0
- package/dist/types/core/src/data-plugin.d.ts +4 -0
- package/dist/types/core/src/index.d.ts +6 -0
- package/dist/types/core/src/plugin.d.ts +12 -0
- package/dist/types/core/src/preset.d.ts +18 -0
- package/dist/types/core/src/theme.d.ts +4 -0
- package/dist/types/core/src/units.d.ts +251 -0
- package/dist/types/core/src/with-opacity.d.ts +4 -0
- package/dist/types/data-plugin.d.ts +4 -0
- package/dist/types/divider/index.d.ts +2 -0
- package/dist/types/divider/src/divider-section.d.ts +12 -0
- package/dist/types/divider/src/divider.d.ts +8 -0
- package/dist/types/divider/src/index.d.ts +10 -0
- package/dist/types/divider/src/styles.d.ts +1 -0
- package/dist/types/divider/stories/divider-section.stories.d.ts +8 -0
- package/dist/types/divider/stories/divider.stories.d.ts +8 -0
- package/dist/types/filter/index.d.ts +2 -0
- package/dist/types/filter/src/filter-item.d.ts +7 -0
- package/dist/types/filter/src/filter-label.d.ts +7 -0
- package/dist/types/filter/src/filter.d.ts +6 -0
- package/dist/types/filter/src/index.d.ts +12 -0
- package/dist/types/filter/stories/filter.stories.d.ts +7 -0
- package/dist/types/forms/index.d.ts +2 -0
- package/dist/types/forms/src/checkbox/checkbox-group.d.ts +46 -0
- package/dist/types/forms/src/checkbox/checkbox.d.ts +39 -0
- package/dist/types/forms/src/checkbox/index.d.ts +10 -0
- package/dist/types/forms/src/checkbox/styles.d.ts +2 -0
- package/dist/types/forms/src/combobox/combobox-context.d.ts +42 -0
- package/dist/types/forms/src/combobox/combobox-input.d.ts +44 -0
- package/dist/types/forms/src/combobox/combobox-list.d.ts +8 -0
- package/dist/types/forms/src/combobox/combobox-option.d.ts +11 -0
- package/dist/types/forms/src/combobox/combobox.d.ts +6 -0
- package/dist/types/forms/src/combobox/index.d.ts +15 -0
- package/dist/types/forms/src/combobox/styles.d.ts +1 -0
- package/dist/types/forms/src/date-picker/date-picker.d.ts +7 -0
- package/dist/types/forms/src/date-picker/index.d.ts +8 -0
- package/dist/types/forms/src/form-control/index.d.ts +40 -0
- package/dist/types/forms/src/form-error-message/index.d.ts +8 -0
- package/dist/types/forms/src/form-helper-text/index.d.ts +8 -0
- package/dist/types/forms/src/form-label/index.d.ts +20 -0
- package/dist/types/forms/src/index.d.ts +26 -0
- package/dist/types/forms/src/input/index.d.ts +13 -0
- package/dist/types/forms/src/input/input.d.ts +26 -0
- package/dist/types/forms/src/input/styles.d.ts +1 -0
- package/dist/types/forms/src/input-addin/index.d.ts +12 -0
- package/dist/types/forms/src/input-group/index.d.ts +11 -0
- package/dist/types/forms/src/input-group/styles.d.ts +1 -0
- package/dist/types/forms/src/radio/index.d.ts +10 -0
- package/dist/types/forms/src/radio/radio-group.d.ts +48 -0
- package/dist/types/forms/src/radio/radio.d.ts +32 -0
- package/dist/types/forms/src/radio/styles.d.ts +3 -0
- package/dist/types/forms/src/select/index.d.ts +18 -0
- package/dist/types/forms/src/select/styles.d.ts +1 -0
- package/dist/types/forms/src/switch/index.d.ts +8 -0
- package/dist/types/forms/src/switch/switchcomponent.d.ts +9 -0
- package/dist/types/forms/src/text-field/index.d.ts +8 -0
- package/dist/types/forms/src/text-field/text-field.d.ts +6 -0
- package/dist/types/forms/src/textarea/index.d.ts +12 -0
- package/dist/types/forms/stories/check.d.ts +5 -0
- package/dist/types/forms/stories/checkbox-group.stories.d.ts +11 -0
- package/dist/types/forms/stories/checkbox.stories.d.ts +8 -0
- package/dist/types/forms/stories/combobox.stories.d.ts +19 -0
- package/dist/types/forms/stories/date-picker.stories.d.ts +21 -0
- package/dist/types/forms/stories/form-control.stories.d.ts +10 -0
- package/dist/types/forms/stories/input.stories.d.ts +21 -0
- package/dist/types/forms/stories/radio-group.stories.d.ts +11 -0
- package/dist/types/forms/stories/radio.stories.d.ts +14 -0
- package/dist/types/forms/stories/select.stories.d.ts +10 -0
- package/dist/types/forms/stories/switch.stories.d.ts +8 -0
- package/dist/types/forms/stories/text-field.stories.d.ts +18 -0
- package/dist/types/forms/stories/textarea.stories.d.ts +42 -0
- package/dist/types/icon/index.d.ts +2 -0
- package/dist/types/icon/src/icon-padded.d.ts +4 -0
- package/dist/types/icon/src/icon.d.ts +20 -0
- package/dist/types/icon/src/index.d.ts +10 -0
- package/dist/types/icon/stories/icon-padded.stories.d.ts +8 -0
- package/dist/types/icon/stories/icon.stories.d.ts +8 -0
- package/dist/types/image/index.d.ts +2 -0
- package/dist/types/image/src/image.d.ts +28 -0
- package/dist/types/image/src/index.d.ts +4 -0
- package/dist/types/image/src/use-image.d.ts +52 -0
- package/dist/types/image/stories/image.stories.d.ts +8 -0
- package/dist/types/index.d.ts +3 -1
- package/dist/types/label/index.d.ts +2 -0
- package/dist/types/label/src/index.d.ts +8 -0
- package/dist/types/label/src/label.d.ts +8 -0
- package/dist/types/label/stories/label.stories.d.ts +8 -0
- package/dist/types/layout/index.d.ts +2 -0
- package/dist/types/layout/src/footer/footer-list-item.d.ts +4 -0
- package/dist/types/layout/src/footer/footer-list.d.ts +4 -0
- package/dist/types/layout/src/footer/footer.d.ts +6 -0
- package/dist/types/layout/src/footer/index.d.ts +14 -0
- package/dist/types/layout/src/header/header.d.ts +17 -0
- package/dist/types/layout/src/header/index.d.ts +8 -0
- package/dist/types/layout/src/index.d.ts +4 -0
- package/dist/types/layout/stories/footer.stories.d.ts +7 -0
- package/dist/types/layout/stories/header.stories.d.ts +5 -0
- package/dist/types/link/index.d.ts +2 -0
- package/dist/types/link/src/index.d.ts +12 -0
- package/dist/types/link/src/link.d.ts +21 -0
- package/dist/types/link/src/styles.d.ts +1 -0
- package/dist/types/link/stories/link.stories.d.ts +12 -0
- package/dist/types/list/index.d.ts +2 -0
- package/dist/types/list/src/index.d.ts +12 -0
- package/dist/types/list/src/list.d.ts +28 -0
- package/dist/types/list/stories/list.stories.d.ts +7 -0
- package/dist/types/logo/index.d.ts +2 -0
- package/dist/types/logo/src/assets/index.d.ts +2 -0
- package/dist/types/logo/src/assets/logo-svg.d.ts +2 -0
- package/dist/types/logo/src/assets/symbol-svg.d.ts +2 -0
- package/dist/types/logo/src/index.d.ts +4 -0
- package/dist/types/logo/src/logo.d.ts +38 -0
- package/dist/types/logo/stories/logo.stories.d.ts +8 -0
- package/dist/types/menu-vertical/index.d.ts +2 -0
- package/dist/types/menu-vertical/src/index.d.ts +25 -0
- package/dist/types/menu-vertical/src/menu-vertical-backbutton.d.ts +9 -0
- package/dist/types/menu-vertical/src/menu-vertical-context.d.ts +62 -0
- package/dist/types/menu-vertical/src/menu-vertical-header.d.ts +9 -0
- package/dist/types/menu-vertical/src/menu-vertical-item.d.ts +26 -0
- package/dist/types/menu-vertical/src/menu-vertical-label.d.ts +7 -0
- package/dist/types/menu-vertical/src/menu-vertical-nav.d.ts +9 -0
- package/dist/types/menu-vertical/src/menu-vertical-sidebar.d.ts +9 -0
- package/dist/types/menu-vertical/src/menu-vertical-submenu-button.d.ts +25 -0
- package/dist/types/menu-vertical/src/menu-vertical-tool-item.d.ts +9 -0
- package/dist/types/menu-vertical/src/menu-vertical.d.ts +14 -0
- package/dist/types/menu-vertical/stories/menu-vertical-sidebar.stories.d.ts +8 -0
- package/dist/types/menu-vertical/stories/menu-vertical.stories.d.ts +8 -0
- package/dist/types/menubar/index.d.ts +2 -0
- package/dist/types/menubar/src/index.d.ts +11 -0
- package/dist/types/menubar/src/menubar-item.d.ts +15 -0
- package/dist/types/menubar/src/menubar.d.ts +18 -0
- package/dist/types/menubar/stories/menubar.stories.d.ts +7 -0
- package/dist/types/modal/index.d.ts +2 -0
- package/dist/types/modal/src/confirm/confirm.d.ts +17 -0
- package/dist/types/modal/src/confirm/index.d.ts +1 -0
- package/dist/types/modal/src/dialog/dialog-buttons.d.ts +6 -0
- package/dist/types/modal/src/dialog/dialog-content.d.ts +6 -0
- package/dist/types/modal/src/dialog/dialog.d.ts +7 -0
- package/dist/types/modal/src/dialog/index.d.ts +12 -0
- package/dist/types/modal/src/index.d.ts +6 -0
- package/dist/types/modal/src/modal/index.d.ts +13 -0
- package/dist/types/modal/src/modal/modal-content.d.ts +5 -0
- package/dist/types/modal/src/modal/modal-footer.d.ts +5 -0
- package/dist/types/modal/src/modal/modal.d.ts +27 -0
- package/dist/types/modal/stories/confirm.stories.d.ts +10 -0
- package/dist/types/modal/stories/dialog.stories.d.ts +6 -0
- package/dist/types/modal/stories/modal.stories.d.ts +7 -0
- package/dist/types/pagination/index.d.ts +2 -0
- package/dist/types/pagination/src/index.d.ts +8 -0
- package/dist/types/pagination/src/pagination.d.ts +19 -0
- package/dist/types/pagination/src/styles.d.ts +1 -0
- package/dist/types/pagination/stories/pagination.stories.d.ts +8 -0
- package/dist/types/popup-menu/index.d.ts +2 -0
- package/dist/types/popup-menu/src/index.d.ts +18 -0
- package/dist/types/popup-menu/src/popup-menu-button.d.ts +2 -0
- package/dist/types/popup-menu/src/popup-menu-group.d.ts +5 -0
- package/dist/types/popup-menu/src/popup-menu-item.d.ts +11 -0
- package/dist/types/popup-menu/src/popup-menu-items.d.ts +20 -0
- package/dist/types/popup-menu/src/popup-menu-panel.d.ts +6 -0
- package/dist/types/popup-menu/src/popup-menu.d.ts +53 -0
- package/dist/types/popup-menu/src/popupmenu-context.d.ts +18 -0
- package/dist/types/popup-menu/src/styles.d.ts +1 -0
- package/dist/types/popup-menu/stories/popup-menu.stories.d.ts +9 -0
- package/dist/types/preset.d.ts +2 -0
- package/dist/types/progress-bar/index.d.ts +2 -0
- package/dist/types/progress-bar/src/index.d.ts +8 -0
- package/dist/types/progress-bar/src/progress-bar.d.ts +18 -0
- package/dist/types/progress-bar/src/styles.d.ts +0 -0
- package/dist/types/progress-bar/stories/progress-bar.stories.d.ts +8 -0
- package/dist/types/progress-stepper/index.d.ts +2 -0
- package/dist/types/progress-stepper/src/index.d.ts +8 -0
- package/dist/types/progress-stepper/src/progress-step.d.ts +13 -0
- package/dist/types/progress-stepper/src/progress-stepper.d.ts +12 -0
- package/dist/types/progress-stepper/stories/progress-stepper.stories.d.ts +8 -0
- package/dist/types/react/index.d.ts +2 -0
- package/dist/types/react/src/index.d.ts +70 -0
- package/dist/types/searchfield/index.d.ts +2 -0
- package/dist/types/searchfield/src/index.d.ts +18 -0
- package/dist/types/searchfield/src/searchfield-suggestions-input.d.ts +9 -0
- package/dist/types/searchfield/src/searchfield-suggestions-list.d.ts +5 -0
- package/dist/types/searchfield/src/searchfield-suggestions-option.d.ts +5 -0
- package/dist/types/searchfield/src/searchfield-suggestions.d.ts +5 -0
- package/dist/types/searchfield/src/searchfield.d.ts +27 -0
- package/dist/types/searchfield/stories/searchfield-suggestions.stories.d.ts +8 -0
- package/dist/types/searchfield/stories/searchfield.stories.d.ts +6 -0
- package/dist/types/snackbar/index.d.ts +2 -0
- package/dist/types/snackbar/src/index.d.ts +8 -0
- package/dist/types/snackbar/src/snackbar.d.ts +11 -0
- package/dist/types/snackbar/stories/snackbar.stories.d.ts +8 -0
- package/dist/types/spinner/index.d.ts +2 -0
- package/dist/types/spinner/src/assets/spinner-square.d.ts +265 -0
- package/dist/types/spinner/src/index.d.ts +4 -0
- package/dist/types/spinner/src/spinner.d.ts +14 -0
- package/dist/types/spinner/stories/spinner.stories.d.ts +8 -0
- package/dist/types/table/index.d.ts +2 -0
- package/dist/types/table/src/auto-table.d.ts +48 -0
- package/dist/types/table/src/index.d.ts +24 -0
- package/dist/types/table/src/table-body.d.ts +2 -0
- package/dist/types/table/src/table-footer.d.ts +2 -0
- package/dist/types/table/src/table-header-column.d.ts +6 -0
- package/dist/types/table/src/table-header.d.ts +6 -0
- package/dist/types/table/src/table-row-column.d.ts +6 -0
- package/dist/types/table/src/table-row.d.ts +2 -0
- package/dist/types/table/src/table-sort-button.d.ts +8 -0
- package/dist/types/table/src/table.d.ts +9 -0
- package/dist/types/table/stories/autotable.stories.d.ts +10 -0
- package/dist/types/table/stories/table.stories.d.ts +11 -0
- package/dist/types/tabs/index.d.ts +2 -0
- package/dist/types/tabs/src/index.d.ts +15 -0
- package/dist/types/tabs/src/tabs-button.d.ts +7 -0
- package/dist/types/tabs/src/tabs-content.d.ts +6 -0
- package/dist/types/tabs/src/tabs-context.d.ts +8 -0
- package/dist/types/tabs/src/tabs-item.d.ts +6 -0
- package/dist/types/tabs/src/tabs.d.ts +11 -0
- package/dist/types/tabs/stories/tabs.stories.d.ts +12 -0
- package/dist/types/text/index.d.ts +2 -0
- package/dist/types/text/src/index.d.ts +8 -0
- package/dist/types/text/src/text.d.ts +10 -0
- package/dist/types/text/stories/text.stories.d.ts +7 -0
- package/dist/types/theme/index.d.ts +2 -0
- package/dist/types/theme/src/colors.d.ts +1410 -0
- package/dist/types/theme/src/create-memo-class.d.ts +1 -0
- package/dist/types/theme/src/create-theme-vars/calc.d.ts +19 -0
- package/dist/types/theme/src/create-theme-vars/create-theme-vars.d.ts +9 -0
- package/dist/types/theme/src/create-theme-vars/css-var.d.ts +7 -0
- package/dist/types/theme/src/create-theme-vars/index.d.ts +4 -0
- package/dist/types/theme/src/create-theme-vars/theme-tokens.d.ts +8 -0
- package/dist/types/theme/src/create-theme-vars/to-css-var.d.ts +2 -0
- package/dist/types/theme/src/default-theme.d.ts +4 -0
- package/dist/types/theme/src/gui-provider.d.ts +34 -0
- package/dist/types/theme/src/index.d.ts +14 -0
- package/dist/types/theme/src/types.d.ts +54 -0
- package/dist/types/theme/src/units.d.ts +226 -0
- package/dist/types/theme/src/use-safe-effect.d.ts +2 -0
- package/dist/types/theme/src/utils.d.ts +1 -0
- package/dist/types/toast/index.d.ts +2 -0
- package/dist/types/toast/src/index.d.ts +7 -0
- package/dist/types/toast/src/toast.d.ts +62 -0
- package/dist/types/toasted-notes/index.d.ts +2 -0
- package/dist/types/toasted-notes/src/Alert.d.ts +8 -0
- package/dist/types/toasted-notes/src/Message.d.ts +26 -0
- package/dist/types/toasted-notes/src/Positions.d.ts +9 -0
- package/dist/types/toasted-notes/src/Toast.d.ts +13 -0
- package/dist/types/toasted-notes/src/ToastManager.d.ts +45 -0
- package/dist/types/toasted-notes/src/index.d.ts +4 -0
- package/dist/types/toasted-notes/src/useTimeout.d.ts +3 -0
- package/dist/types/tooltip/index.d.ts +2 -0
- package/dist/types/tooltip/src/index.d.ts +8 -0
- package/dist/types/tooltip/src/tooltip.d.ts +14 -0
- package/dist/types/tooltip/stories/tooltip.stories.d.ts +9 -0
- package/dist/types/user-menu/index.d.ts +2 -0
- package/dist/types/user-menu/src/index.d.ts +8 -0
- package/dist/types/user-menu/src/user-menu.d.ts +32 -0
- package/dist/types/user-menu/stories/user-menu.stories.d.ts +8 -0
- package/dist/types/utils/index.d.ts +2 -0
- package/dist/types/utils/src/assertion.d.ts +5 -0
- package/dist/types/utils/src/children.d.ts +8 -0
- package/dist/types/utils/src/color.d.ts +10 -0
- package/dist/types/utils/src/index.d.ts +20 -0
- package/dist/types/utils/src/object.d.ts +6 -0
- package/dist/types/utils/src/refs.d.ts +5 -0
- package/dist/types/utils/src/slug.d.ts +1 -0
- package/dist/types/utils/src/types.d.ts +56 -0
- package/dist/types/utils/src/use-on-element-outside.d.ts +39 -0
- package/dist/types/utils/src/walk-object.d.ts +5 -0
- package/package.json +2 -2
- package/dist/cjs/components/alert-banner.js +0 -26
- package/dist/cjs/components/alert-banner.js.map +0 -1
- package/dist/cjs/components/calendar.js +0 -67
- package/dist/cjs/components/calendar.js.map +0 -1
- package/dist/cjs/components/comments.js +0 -32
- package/dist/cjs/components/comments.js.map +0 -1
- package/dist/cjs/components/context-menu.js +0 -13
- package/dist/cjs/components/context-menu.js.map +0 -1
- package/dist/cjs/components/dropdown-filter.js +0 -60
- package/dist/cjs/components/dropdown-filter.js.map +0 -1
- package/dist/cjs/components/message.js +0 -52
- package/dist/cjs/components/message.js.map +0 -1
- package/dist/cjs/components/notification.js +0 -51
- package/dist/cjs/components/notification.js.map +0 -1
- package/dist/cjs/components/profile-picture.js +0 -15
- package/dist/cjs/components/profile-picture.js.map +0 -1
- package/dist/cjs/components/profile.js +0 -34
- package/dist/cjs/components/profile.js.map +0 -1
- package/dist/cjs/components/search-bar.js +0 -8
- package/dist/cjs/components/search-bar.js.map +0 -1
- package/dist/cjs/components/side-menu.js +0 -221
- package/dist/cjs/components/side-menu.js.map +0 -1
- package/dist/cjs/components/tab-menu.js +0 -59
- package/dist/cjs/components/tab-menu.js.map +0 -1
- package/dist/cjs/components/tag.js +0 -72
- package/dist/cjs/components/tag.js.map +0 -1
- package/dist/cjs/components/zebratable.js +0 -158
- package/dist/cjs/components/zebratable.js.map +0 -1
- package/dist/esm/components/alert-banner.js +0 -24
- package/dist/esm/components/alert-banner.js.map +0 -1
- package/dist/esm/components/calendar.js +0 -65
- package/dist/esm/components/calendar.js.map +0 -1
- package/dist/esm/components/comments.js +0 -30
- package/dist/esm/components/comments.js.map +0 -1
- package/dist/esm/components/context-menu.js +0 -11
- package/dist/esm/components/context-menu.js.map +0 -1
- package/dist/esm/components/dropdown-filter.js +0 -58
- package/dist/esm/components/dropdown-filter.js.map +0 -1
- package/dist/esm/components/message.js +0 -50
- package/dist/esm/components/message.js.map +0 -1
- package/dist/esm/components/notification.js +0 -49
- package/dist/esm/components/notification.js.map +0 -1
- package/dist/esm/components/profile-picture.js +0 -13
- package/dist/esm/components/profile-picture.js.map +0 -1
- package/dist/esm/components/profile.js +0 -32
- package/dist/esm/components/profile.js.map +0 -1
- package/dist/esm/components/search-bar.js +0 -6
- package/dist/esm/components/search-bar.js.map +0 -1
- package/dist/esm/components/side-menu.js +0 -219
- package/dist/esm/components/side-menu.js.map +0 -1
- package/dist/esm/components/tab-menu.js +0 -57
- package/dist/esm/components/tab-menu.js.map +0 -1
- package/dist/esm/components/tag.js +0 -79
- package/dist/esm/components/tag.js.map +0 -1
- package/dist/esm/components/zebratable.js +0 -152
- package/dist/esm/components/zebratable.js.map +0 -1
- package/dist/types/components/zebratable.d.ts +0 -151
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
module.exports = TabMenu = () => ({
|
|
2
|
-
'.sk-tab-menu': {
|
|
3
|
-
'&-wrapper': {
|
|
4
|
-
display: 'flex',
|
|
5
|
-
flexDirection: 'row',
|
|
6
|
-
margin: 'auto'
|
|
7
|
-
},
|
|
8
|
-
'&-right': {
|
|
9
|
-
'@apply justify-end': {}
|
|
10
|
-
},
|
|
11
|
-
'&-center': {
|
|
12
|
-
'@apply justify-center': {}
|
|
13
|
-
},
|
|
14
|
-
'&-list': {
|
|
15
|
-
all: 'unset',
|
|
16
|
-
display: 'flex',
|
|
17
|
-
'&-stretch': {
|
|
18
|
-
'@apply w-full justify-between': {}
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
'&-underline': {
|
|
22
|
-
width: '100%',
|
|
23
|
-
height: 6,
|
|
24
|
-
'@apply bg-gray-light': {}
|
|
25
|
-
},
|
|
26
|
-
'&-item': {
|
|
27
|
-
all: 'unset',
|
|
28
|
-
height: 65,
|
|
29
|
-
display: 'flex',
|
|
30
|
-
padding: '0 1rem',
|
|
31
|
-
marginRight: '5rem',
|
|
32
|
-
alignItems: 'center',
|
|
33
|
-
position: 'relative',
|
|
34
|
-
cursor: 'pointer',
|
|
35
|
-
'&-stretch': {
|
|
36
|
-
'@apply mr-0': {}
|
|
37
|
-
},
|
|
38
|
-
'&-right': {
|
|
39
|
-
'@apply mr-0 ml-[5rem]': {}
|
|
40
|
-
},
|
|
41
|
-
'&-center:last-of-type': {
|
|
42
|
-
'@apply mr-0': {}
|
|
43
|
-
},
|
|
44
|
-
'&.active::after': {
|
|
45
|
-
content: '""',
|
|
46
|
-
display: 'block',
|
|
47
|
-
position: 'absolute',
|
|
48
|
-
width: '100%',
|
|
49
|
-
height: 6,
|
|
50
|
-
top: '100%',
|
|
51
|
-
left: 0,
|
|
52
|
-
'@apply bg-primary': {}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
});
|
|
57
|
-
//# sourceMappingURL=tab-menu.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tab-menu.js","names":["module","exports","TabMenu","display","flexDirection","margin","all","width","height","padding","marginRight","alignItems","position","cursor","content","top","left"],"sources":["../../../src/components/tab-menu.js"],"sourcesContent":["module.exports = TabMenu = () => ({\r\n '.sk-tab-menu': {\r\n '&-wrapper': {\r\n display: 'flex',\r\n flexDirection: 'row',\r\n margin: 'auto',\r\n },\r\n '&-right': {\r\n '@apply justify-end': {},\r\n },\r\n '&-center': {\r\n '@apply justify-center': {},\r\n },\r\n '&-list': {\r\n all: 'unset',\r\n display: 'flex',\r\n '&-stretch': {\r\n '@apply w-full justify-between': {},\r\n },\r\n },\r\n\r\n '&-underline': {\r\n width: '100%',\r\n height: 6,\r\n '@apply bg-gray-light': {},\r\n },\r\n '&-item': {\r\n all: 'unset',\r\n height: 65,\r\n display: 'flex',\r\n padding: '0 1rem',\r\n marginRight: '5rem',\r\n alignItems: 'center',\r\n position: 'relative',\r\n cursor: 'pointer',\r\n '&-stretch': {\r\n '@apply mr-0': {},\r\n },\r\n '&-right': {\r\n '@apply mr-0 ml-[5rem]': {},\r\n },\r\n '&-center:last-of-type': {\r\n '@apply mr-0': {},\r\n },\r\n\r\n '&.active::after': {\r\n content: '\"\"',\r\n display: 'block',\r\n position: 'absolute',\r\n width: '100%',\r\n height: 6,\r\n top: '100%',\r\n left: 0,\r\n '@apply bg-primary': {},\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":"AAAAA,MAAM,CAACC,OAAO,GAAGC,OAAO,GAAGA,CAAA,MAAO;EAChC,cAAc,EAAE;IACd,WAAW,EAAE;MACXC,OAAO,EAAE,MAAM;MACfC,aAAa,EAAE,KAAK;MACpBC,MAAM,EAAE;IACV,CAAC;IACD,SAAS,EAAE;MACT,oBAAoB,EAAE,CAAC;IACzB,CAAC;IACD,UAAU,EAAE;MACV,uBAAuB,EAAE,CAAC;IAC5B,CAAC;IACD,QAAQ,EAAE;MACRC,GAAG,EAAE,OAAO;MACZH,OAAO,EAAE,MAAM;MACf,WAAW,EAAE;QACX,+BAA+B,EAAE,CAAC;MACpC;IACF,CAAC;IAED,aAAa,EAAE;MACbI,KAAK,EAAE,MAAM;MACbC,MAAM,EAAE,CAAC;MACT,sBAAsB,EAAE,CAAC;IAC3B,CAAC;IACD,QAAQ,EAAE;MACRF,GAAG,EAAE,OAAO;MACZE,MAAM,EAAE,EAAE;MACVL,OAAO,EAAE,MAAM;MACfM,OAAO,EAAE,QAAQ;MACjBC,WAAW,EAAE,MAAM;MACnBC,UAAU,EAAE,QAAQ;MACpBC,QAAQ,EAAE,UAAU;MACpBC,MAAM,EAAE,SAAS;MACjB,WAAW,EAAE;QACX,aAAa,EAAE,CAAC;MAClB,CAAC;MACD,SAAS,EAAE;QACT,uBAAuB,EAAE,CAAC;MAC5B,CAAC;MACD,uBAAuB,EAAE;QACvB,aAAa,EAAE,CAAC;MAClB,CAAC;MAED,iBAAiB,EAAE;QACjBC,OAAO,EAAE,IAAI;QACbX,OAAO,EAAE,OAAO;QAChBS,QAAQ,EAAE,UAAU;QACpBL,KAAK,EAAE,MAAM;QACbC,MAAM,EAAE,CAAC;QACTO,GAAG,EAAE,MAAM;QACXC,IAAI,EAAE,CAAC;QACP,mBAAmB,EAAE,CAAC;MACxB;IACF;EACF;AACF,CAAC,CAAC"}
|
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
-
function tagOutline(colors) {
|
|
3
|
-
return {
|
|
4
|
-
'.tag-outline': {
|
|
5
|
-
'@apply border bg-transparent border-gray-stroke text-body': {},
|
|
6
|
-
'&[href]': {
|
|
7
|
-
["@apply hover:border-hover hover:text-white hover:bg-hover"]: {},
|
|
8
|
-
["@apply active:text-white active:bg-hover"]: {},
|
|
9
|
-
["@apply focus-visible:text-white focus-visible:ring-4 focus-visible:ring-black focus-visible:bg-hover"]: {}
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
};
|
|
13
|
-
}
|
|
14
|
-
function tagSolid(colors) {
|
|
15
|
-
return {
|
|
16
|
-
'.tag-solid': {
|
|
17
|
-
'@apply border bg-gray-stroke border-transparent text-white': {},
|
|
18
|
-
'&[href]': {
|
|
19
|
-
["@apply hover:text-white hover:bg-hover"]: {},
|
|
20
|
-
["@apply active:text-white active:bg-hover"]: {},
|
|
21
|
-
["@apply focus-visible:text-white focus-visible:ring-4 focus-visible:ring-black focus-visible:bg-hover"]: {}
|
|
22
|
-
},
|
|
23
|
-
'.tag-close-button': {
|
|
24
|
-
'@apply text-white hover:text-body': {}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
function tagLight(colors) {
|
|
30
|
-
return {
|
|
31
|
-
'.tag-light': {
|
|
32
|
-
'@apply border border-transparent text-body': {},
|
|
33
|
-
'&[href]': {
|
|
34
|
-
["@apply hover:border-hover"]: {},
|
|
35
|
-
["@apply active:border-hover"]: {},
|
|
36
|
-
["@apply focus-visible:border-hover focus-visible:ring-4 focus-visible:ring-black"]: {}
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
module.exports = Tag = colors => _extends({
|
|
42
|
-
'.tag': {
|
|
43
|
-
'@apply leading-none inline-flex items-center content-center max-h-full rounded-full font-normal outline-none whitespace-nowrap': {},
|
|
44
|
-
width: 'fit-content',
|
|
45
|
-
height: 'fit-content',
|
|
46
|
-
padding: '0 1.145em 0 1.145em',
|
|
47
|
-
borderRadius: '3.2rem',
|
|
48
|
-
'&-text': {
|
|
49
|
-
padding: '0.5em 0'
|
|
50
|
-
},
|
|
51
|
-
'&-sm': {
|
|
52
|
-
'@apply text-xs': {},
|
|
53
|
-
minWidth: '1.25rem'
|
|
54
|
-
},
|
|
55
|
-
'&-md': {
|
|
56
|
-
'@apply text-sm': {},
|
|
57
|
-
minWidth: '1.5rem'
|
|
58
|
-
},
|
|
59
|
-
'&-lg': {
|
|
60
|
-
'@apply text-base': {},
|
|
61
|
-
minWidth: '1.75rem'
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
}, tagOutline(colors), tagSolid(colors), tagLight(colors), {
|
|
65
|
-
'.tag-close-button': {
|
|
66
|
-
'@apply border-transparent cursor-base': {},
|
|
67
|
-
fontSize: '1em',
|
|
68
|
-
padding: '0.36em',
|
|
69
|
-
marginLeft: '0.25em',
|
|
70
|
-
marginRight: '-1em',
|
|
71
|
-
'&-icon': {
|
|
72
|
-
fontSize: '1em !important'
|
|
73
|
-
},
|
|
74
|
-
'&-disabled': {
|
|
75
|
-
'@apply disabled:opacity-40 disabled:cursor-not-allowed disabled:shadow-none': {}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
});
|
|
79
|
-
//# sourceMappingURL=tag.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"tag.js","names":["tagOutline","colors","tagSolid","tagLight","module","exports","Tag","_extends","width","height","padding","borderRadius","minWidth","fontSize","marginLeft","marginRight"],"sources":["../../../src/components/tag.js"],"sourcesContent":["function tagOutline(colors) {\r\n return {\r\n '.tag-outline': {\r\n '@apply border bg-transparent border-gray-stroke text-body': {},\r\n\r\n '&[href]': {\r\n [`@apply hover:border-hover hover:text-white hover:bg-hover`]: {},\r\n [`@apply active:text-white active:bg-hover`]: {},\r\n [`@apply focus-visible:text-white focus-visible:ring-4 focus-visible:ring-black focus-visible:bg-hover`]: {},\r\n },\r\n },\r\n };\r\n}\r\n\r\nfunction tagSolid(colors) {\r\n return {\r\n '.tag-solid': {\r\n '@apply border bg-gray-stroke border-transparent text-white': {},\r\n\r\n '&[href]': {\r\n [`@apply hover:text-white hover:bg-hover`]: {},\r\n [`@apply active:text-white active:bg-hover`]: {},\r\n [`@apply focus-visible:text-white focus-visible:ring-4 focus-visible:ring-black focus-visible:bg-hover`]: {},\r\n },\r\n\r\n '.tag-close-button': {\r\n '@apply text-white hover:text-body': {},\r\n },\r\n },\r\n };\r\n}\r\n\r\nfunction tagLight(colors) {\r\n return {\r\n '.tag-light': {\r\n '@apply border border-transparent text-body': {},\r\n\r\n '&[href]': {\r\n [`@apply hover:border-hover`]: {},\r\n [`@apply active:border-hover`]: {},\r\n [`@apply focus-visible:border-hover focus-visible:ring-4 focus-visible:ring-black`]: {},\r\n },\r\n },\r\n };\r\n}\r\n\r\nmodule.exports = Tag = (colors) => ({\r\n '.tag': {\r\n '@apply leading-none inline-flex items-center content-center max-h-full rounded-full font-normal outline-none whitespace-nowrap':\r\n {},\r\n width: 'fit-content',\r\n height: 'fit-content',\r\n padding: '0 1.145em 0 1.145em',\r\n borderRadius: '3.2rem',\r\n\r\n '&-text': {\r\n padding: '0.5em 0',\r\n },\r\n\r\n '&-sm': {\r\n '@apply text-xs': {},\r\n minWidth: '1.25rem',\r\n },\r\n\r\n '&-md': {\r\n '@apply text-sm': {},\r\n minWidth: '1.5rem',\r\n },\r\n\r\n '&-lg': {\r\n '@apply text-base': {},\r\n minWidth: '1.75rem',\r\n },\r\n },\r\n\r\n // variants\r\n ...tagOutline(colors),\r\n ...tagSolid(colors),\r\n ...tagLight(colors),\r\n\r\n '.tag-close-button': {\r\n '@apply border-transparent cursor-base': {},\r\n fontSize: '1em',\r\n padding: '0.36em',\r\n marginLeft: '0.25em',\r\n marginRight: '-1em',\r\n\r\n '&-icon': {\r\n fontSize: '1em !important',\r\n },\r\n\r\n '&-disabled': {\r\n '@apply disabled:opacity-40 disabled:cursor-not-allowed disabled:shadow-none': {},\r\n },\r\n },\r\n});\r\n"],"mappings":";AAAA,SAASA,UAAUA,CAACC,MAAM,EAAE;EAC1B,OAAO;IACL,cAAc,EAAE;MACd,2DAA2D,EAAE,CAAC,CAAC;MAE/D,SAAS,EAAE;QACT,+DAA+D,CAAC,CAAC;QACjE,8CAA8C,CAAC,CAAC;QAChD,0GAA0G,CAAC;MAC7G;IACF;EACF,CAAC;AACH;AAEA,SAASC,QAAQA,CAACD,MAAM,EAAE;EACxB,OAAO;IACL,YAAY,EAAE;MACZ,4DAA4D,EAAE,CAAC,CAAC;MAEhE,SAAS,EAAE;QACT,4CAA4C,CAAC,CAAC;QAC9C,8CAA8C,CAAC,CAAC;QAChD,0GAA0G,CAAC;MAC7G,CAAC;MAED,mBAAmB,EAAE;QACnB,mCAAmC,EAAE,CAAC;MACxC;IACF;EACF,CAAC;AACH;AAEA,SAASE,QAAQA,CAACF,MAAM,EAAE;EACxB,OAAO;IACL,YAAY,EAAE;MACZ,4CAA4C,EAAE,CAAC,CAAC;MAEhD,SAAS,EAAE;QACT,+BAA+B,CAAC,CAAC;QACjC,gCAAgC,CAAC,CAAC;QAClC,qFAAqF,CAAC;MACxF;IACF;EACF,CAAC;AACH;AAEAG,MAAM,CAACC,OAAO,GAAGC,GAAG,GAAIL,MAAM,IAAAM,QAAA;EAC5B,MAAM,EAAE;IACN,gIAAgI,EAC9H,CAAC,CAAC;IACJC,KAAK,EAAE,aAAa;IACpBC,MAAM,EAAE,aAAa;IACrBC,OAAO,EAAE,qBAAqB;IAC9BC,YAAY,EAAE,QAAQ;IAEtB,QAAQ,EAAE;MACRD,OAAO,EAAE;IACX,CAAC;IAED,MAAM,EAAE;MACN,gBAAgB,EAAE,CAAC,CAAC;MACpBE,QAAQ,EAAE;IACZ,CAAC;IAED,MAAM,EAAE;MACN,gBAAgB,EAAE,CAAC,CAAC;MACpBA,QAAQ,EAAE;IACZ,CAAC;IAED,MAAM,EAAE;MACN,kBAAkB,EAAE,CAAC,CAAC;MACtBA,QAAQ,EAAE;IACZ;EACF;AAAC,GAGEZ,UAAU,CAACC,MAAM,CAAC,EAClBC,QAAQ,CAACD,MAAM,CAAC,EAChBE,QAAQ,CAACF,MAAM,CAAC;EAEnB,mBAAmB,EAAE;IACnB,uCAAuC,EAAE,CAAC,CAAC;IAC3CY,QAAQ,EAAE,KAAK;IACfH,OAAO,EAAE,QAAQ;IACjBI,UAAU,EAAE,QAAQ;IACpBC,WAAW,EAAE,MAAM;IAEnB,QAAQ,EAAE;MACRF,QAAQ,EAAE;IACZ,CAAC;IAED,YAAY,EAAE;MACZ,6EAA6E,EAAE,CAAC;IAClF;EACF;AAAC,EACD"}
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
export var ZebraTable = () => ({
|
|
2
|
-
'.sk-zebratable-wrapper': {
|
|
3
|
-
'@apply rounded-groups': {},
|
|
4
|
-
'@apply border-1': {},
|
|
5
|
-
'@apply bg-background-content': {},
|
|
6
|
-
'&-inside': {
|
|
7
|
-
'@apply border-0 rounded-t-groups': {},
|
|
8
|
-
'@apply overflow-hidden': {}
|
|
9
|
-
},
|
|
10
|
-
'&[data-variant="table"]': {
|
|
11
|
-
'&:not([data-background="true"])': {
|
|
12
|
-
'@apply border-0': {},
|
|
13
|
-
'@apply bg-transparent': {}
|
|
14
|
-
},
|
|
15
|
-
'.sk-zebratable-wrapper-inside': {
|
|
16
|
-
'@apply border-0 rounded-b-groups': {}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
'.sk-zebratable': {
|
|
21
|
-
'@apply w-full text-left table-auto': {},
|
|
22
|
-
'@apply text-dark-secondary': {},
|
|
23
|
-
'&-thead': {
|
|
24
|
-
'@apply border-b-1 border-dark-primary': {},
|
|
25
|
-
'@apply h-48': {},
|
|
26
|
-
'&-tr': {
|
|
27
|
-
'@apply table-row': {},
|
|
28
|
-
'@apply text-label-small': {}
|
|
29
|
-
},
|
|
30
|
-
'&-th': {
|
|
31
|
-
'@apply py-4': {},
|
|
32
|
-
"&[data-isColumnSortable='true']": {
|
|
33
|
-
'@apply cursor-pointer': {}
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
'&-manualth': {
|
|
37
|
-
'@apply py-4': {},
|
|
38
|
-
'@apply px-16': {},
|
|
39
|
-
"&[data-isColumnSortable='true']": {
|
|
40
|
-
'@apply cursor-pointer': {}
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
'@apply bg-transparent': {},
|
|
44
|
-
'&[data-background="true"]': {
|
|
45
|
-
'@apply bg-vattjom-background-200 border-b-transparent': {}
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
'&-sortbutton': {
|
|
49
|
-
'@apply flex items-center': {},
|
|
50
|
-
'@apply focus-visible:ring ring-ring ring-offset-0': {},
|
|
51
|
-
'@apply focus-visible:bg-vattjom-background-200': {},
|
|
52
|
-
'@apply rounded-utility': {},
|
|
53
|
-
'@apply px-16': {},
|
|
54
|
-
'@apply h-40': {},
|
|
55
|
-
'&-icon': {
|
|
56
|
-
'@apply inline-flex pl-sm': {},
|
|
57
|
-
'&-sort': {
|
|
58
|
-
'@apply text-dark-secondary': {},
|
|
59
|
-
'@apply flex flex-col': {},
|
|
60
|
-
svg: {
|
|
61
|
-
'@apply h-16 w-16': {},
|
|
62
|
-
'@apply first-of-type:-mb-4': {},
|
|
63
|
-
'@apply last-of-type:-mt-4': {}
|
|
64
|
-
},
|
|
65
|
-
"&[data-sortmodeascending='true']": {
|
|
66
|
-
'> *': {
|
|
67
|
-
'@apply last-of-type:text-dark-ghost': {}
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"&[data-sortmodeascending='false']": {
|
|
71
|
-
'> *': {
|
|
72
|
-
'@apply first-of-type:text-dark-ghost': {}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
'&-tbody': {
|
|
79
|
-
'@apply text-dark-secondary bg-transparent': {},
|
|
80
|
-
'&-tr': {
|
|
81
|
-
'@apply bg-transparent': {},
|
|
82
|
-
'@apply hover:bg-background-100': {},
|
|
83
|
-
'@apply border-b-1': {},
|
|
84
|
-
'@apply last-of-type:border-b-transparent': {}
|
|
85
|
-
},
|
|
86
|
-
'&-td': {
|
|
87
|
-
'@apply text-small': {},
|
|
88
|
-
'&-content': {
|
|
89
|
-
'@apply inline-flex': {},
|
|
90
|
-
'@apply justify-start items-center': {},
|
|
91
|
-
'@apply gap-8': {},
|
|
92
|
-
'@apply py-8 px-18': {},
|
|
93
|
-
'@apply h-[6.3rem]': {},
|
|
94
|
-
'@apply min-h-[6.3rem]': {}
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
'&-manualtd': {
|
|
98
|
-
'@apply text-small': {},
|
|
99
|
-
'&-content': {
|
|
100
|
-
'@apply justify-start items-center': {},
|
|
101
|
-
'@apply gap-8': {},
|
|
102
|
-
'@apply py-8 px-18': {},
|
|
103
|
-
'@apply h-[6.3rem]': {},
|
|
104
|
-
'@apply min-h-[6.3rem]': {}
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
'&[data-dense="true"]': {
|
|
109
|
-
'.sk-zebratable': {
|
|
110
|
-
'&-thead': {
|
|
111
|
-
'&-th': {
|
|
112
|
-
'@apply py-4': {}
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
'&-tbody': {
|
|
116
|
-
'&-td-content': {
|
|
117
|
-
'@apply py-0': {},
|
|
118
|
-
'@apply h-[4.7rem]': {},
|
|
119
|
-
'@apply min-h-[4.7rem]': {}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
'&-paginationwrapper': {
|
|
125
|
-
'@apply w-full max-w-[60rem]': {},
|
|
126
|
-
'@apply shrink': {}
|
|
127
|
-
},
|
|
128
|
-
'&-bottom': {
|
|
129
|
-
'@apply py-14 px-16': {},
|
|
130
|
-
'@apply border-t-1': {},
|
|
131
|
-
'@apply flex flex-row': {},
|
|
132
|
-
'@apply gap-32': {},
|
|
133
|
-
'@apply justify-between items-center': {},
|
|
134
|
-
'&-section': {
|
|
135
|
-
'@apply shrink-0': {},
|
|
136
|
-
'@apply flex flex-row': {},
|
|
137
|
-
'@apply justify-start items-center': {},
|
|
138
|
-
'@apply gap-8': {},
|
|
139
|
-
'&-label': {
|
|
140
|
-
'@apply font-normal': {},
|
|
141
|
-
'@apply text-small': {},
|
|
142
|
-
'@apply shrink-0': {}
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
|
-
'&-pagination': {
|
|
146
|
-
'@apply grow': {},
|
|
147
|
-
'@apply shrink': {}
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
});
|
|
152
|
-
//# sourceMappingURL=zebratable.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"zebratable.js","names":["ZebraTable","svg"],"sources":["../../../src/components/zebratable.ts"],"sourcesContent":["export const ZebraTable = () => ({\r\n '.sk-zebratable-wrapper': {\r\n '@apply rounded-groups': {},\r\n '@apply border-1': {},\r\n '@apply bg-background-content': {},\r\n '&-inside': {\r\n '@apply border-0 rounded-t-groups': {},\r\n '@apply overflow-hidden': {},\r\n },\r\n '&[data-variant=\"table\"]': {\r\n '&:not([data-background=\"true\"])': {\r\n '@apply border-0': {},\r\n '@apply bg-transparent': {},\r\n },\r\n '.sk-zebratable-wrapper-inside': {\r\n '@apply border-0 rounded-b-groups': {},\r\n },\r\n },\r\n },\r\n '.sk-zebratable': {\r\n '@apply w-full text-left table-auto': {},\r\n '@apply text-dark-secondary': {},\r\n\r\n '&-thead': {\r\n '@apply border-b-1 border-dark-primary': {},\r\n '@apply h-48': {},\r\n '&-tr': {\r\n '@apply table-row': {},\r\n '@apply text-label-small': {},\r\n },\r\n\r\n '&-th': {\r\n '@apply py-4': {},\r\n\r\n \"&[data-isColumnSortable='true']\": {\r\n '@apply cursor-pointer': {},\r\n },\r\n },\r\n '&-manualth': {\r\n '@apply py-4': {},\r\n '@apply px-16': {},\r\n\r\n \"&[data-isColumnSortable='true']\": {\r\n '@apply cursor-pointer': {},\r\n },\r\n },\r\n '@apply bg-transparent': {},\r\n '&[data-background=\"true\"]': {\r\n '@apply bg-vattjom-background-200 border-b-transparent': {},\r\n },\r\n },\r\n\r\n '&-sortbutton': {\r\n '@apply flex items-center': {},\r\n '@apply focus-visible:ring ring-ring ring-offset-0': {},\r\n '@apply focus-visible:bg-vattjom-background-200': {},\r\n '@apply rounded-utility': {},\r\n '@apply px-16': {},\r\n '@apply h-40': {},\r\n\r\n '&-icon': {\r\n '@apply inline-flex pl-sm': {},\r\n\r\n '&-sort': {\r\n '@apply text-dark-secondary': {},\r\n '@apply flex flex-col': {},\r\n\r\n svg: {\r\n '@apply h-16 w-16': {},\r\n '@apply first-of-type:-mb-4': {},\r\n '@apply last-of-type:-mt-4': {},\r\n },\r\n\r\n \"&[data-sortmodeascending='true']\": {\r\n '> *': {\r\n '@apply last-of-type:text-dark-ghost': {},\r\n },\r\n },\r\n\r\n \"&[data-sortmodeascending='false']\": {\r\n '> *': {\r\n '@apply first-of-type:text-dark-ghost': {},\r\n },\r\n },\r\n },\r\n },\r\n },\r\n\r\n '&-tbody': {\r\n '@apply text-dark-secondary bg-transparent': {},\r\n\r\n '&-tr': {\r\n '@apply bg-transparent': {},\r\n '@apply hover:bg-background-100': {},\r\n '@apply border-b-1': {},\r\n '@apply last-of-type:border-b-transparent': {},\r\n },\r\n\r\n '&-td': {\r\n '@apply text-small': {},\r\n '&-content': {\r\n '@apply inline-flex': {},\r\n '@apply justify-start items-center': {},\r\n '@apply gap-8': {},\r\n '@apply py-8 px-18': {},\r\n '@apply h-[6.3rem]': {},\r\n '@apply min-h-[6.3rem]': {},\r\n },\r\n },\r\n '&-manualtd': {\r\n '@apply text-small': {},\r\n '&-content': {\r\n '@apply justify-start items-center': {},\r\n '@apply gap-8': {},\r\n '@apply py-8 px-18': {},\r\n '@apply h-[6.3rem]': {},\r\n '@apply min-h-[6.3rem]': {},\r\n },\r\n },\r\n },\r\n\r\n '&[data-dense=\"true\"]': {\r\n '.sk-zebratable': {\r\n '&-thead': {\r\n '&-th': {\r\n '@apply py-4': {},\r\n },\r\n },\r\n '&-tbody': {\r\n '&-td-content': {\r\n '@apply py-0': {},\r\n '@apply h-[4.7rem]': {},\r\n '@apply min-h-[4.7rem]': {},\r\n },\r\n },\r\n },\r\n },\r\n\r\n '&-paginationwrapper': {\r\n '@apply w-full max-w-[60rem]': {},\r\n '@apply shrink': {},\r\n },\r\n\r\n '&-bottom': {\r\n '@apply py-14 px-16': {},\r\n '@apply border-t-1': {},\r\n '@apply flex flex-row': {},\r\n '@apply gap-32': {},\r\n '@apply justify-between items-center': {},\r\n '&-section': {\r\n '@apply shrink-0': {},\r\n '@apply flex flex-row': {},\r\n '@apply justify-start items-center': {},\r\n '@apply gap-8': {},\r\n '&-label': {\r\n '@apply font-normal': {},\r\n '@apply text-small': {},\r\n '@apply shrink-0': {},\r\n },\r\n },\r\n '&-pagination': {\r\n '@apply grow': {},\r\n '@apply shrink': {},\r\n },\r\n },\r\n },\r\n});\r\n"],"mappings":"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"}
|
|
@@ -1,151 +0,0 @@
|
|
|
1
|
-
export declare const ZebraTable: () => {
|
|
2
|
-
'.sk-zebratable-wrapper': {
|
|
3
|
-
'@apply rounded-groups': {};
|
|
4
|
-
'@apply border-1': {};
|
|
5
|
-
'@apply bg-background-content': {};
|
|
6
|
-
'&-inside': {
|
|
7
|
-
'@apply border-0 rounded-t-groups': {};
|
|
8
|
-
'@apply overflow-hidden': {};
|
|
9
|
-
};
|
|
10
|
-
'&[data-variant="table"]': {
|
|
11
|
-
'&:not([data-background="true"])': {
|
|
12
|
-
'@apply border-0': {};
|
|
13
|
-
'@apply bg-transparent': {};
|
|
14
|
-
};
|
|
15
|
-
'.sk-zebratable-wrapper-inside': {
|
|
16
|
-
'@apply border-0 rounded-b-groups': {};
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
};
|
|
20
|
-
'.sk-zebratable': {
|
|
21
|
-
'@apply w-full text-left table-auto': {};
|
|
22
|
-
'@apply text-dark-secondary': {};
|
|
23
|
-
'&-thead': {
|
|
24
|
-
'@apply border-b-1 border-dark-primary': {};
|
|
25
|
-
'@apply h-48': {};
|
|
26
|
-
'&-tr': {
|
|
27
|
-
'@apply table-row': {};
|
|
28
|
-
'@apply text-label-small': {};
|
|
29
|
-
};
|
|
30
|
-
'&-th': {
|
|
31
|
-
'@apply py-4': {};
|
|
32
|
-
"&[data-isColumnSortable='true']": {
|
|
33
|
-
'@apply cursor-pointer': {};
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
'&-manualth': {
|
|
37
|
-
'@apply py-4': {};
|
|
38
|
-
'@apply px-16': {};
|
|
39
|
-
"&[data-isColumnSortable='true']": {
|
|
40
|
-
'@apply cursor-pointer': {};
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
'@apply bg-transparent': {};
|
|
44
|
-
'&[data-background="true"]': {
|
|
45
|
-
'@apply bg-vattjom-background-200 border-b-transparent': {};
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
'&-sortbutton': {
|
|
49
|
-
'@apply flex items-center': {};
|
|
50
|
-
'@apply focus-visible:ring ring-ring ring-offset-0': {};
|
|
51
|
-
'@apply focus-visible:bg-vattjom-background-200': {};
|
|
52
|
-
'@apply rounded-utility': {};
|
|
53
|
-
'@apply px-16': {};
|
|
54
|
-
'@apply h-40': {};
|
|
55
|
-
'&-icon': {
|
|
56
|
-
'@apply inline-flex pl-sm': {};
|
|
57
|
-
'&-sort': {
|
|
58
|
-
'@apply text-dark-secondary': {};
|
|
59
|
-
'@apply flex flex-col': {};
|
|
60
|
-
svg: {
|
|
61
|
-
'@apply h-16 w-16': {};
|
|
62
|
-
'@apply first-of-type:-mb-4': {};
|
|
63
|
-
'@apply last-of-type:-mt-4': {};
|
|
64
|
-
};
|
|
65
|
-
"&[data-sortmodeascending='true']": {
|
|
66
|
-
'> *': {
|
|
67
|
-
'@apply last-of-type:text-dark-ghost': {};
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
"&[data-sortmodeascending='false']": {
|
|
71
|
-
'> *': {
|
|
72
|
-
'@apply first-of-type:text-dark-ghost': {};
|
|
73
|
-
};
|
|
74
|
-
};
|
|
75
|
-
};
|
|
76
|
-
};
|
|
77
|
-
};
|
|
78
|
-
'&-tbody': {
|
|
79
|
-
'@apply text-dark-secondary bg-transparent': {};
|
|
80
|
-
'&-tr': {
|
|
81
|
-
'@apply bg-transparent': {};
|
|
82
|
-
'@apply hover:bg-background-100': {};
|
|
83
|
-
'@apply border-b-1': {};
|
|
84
|
-
'@apply last-of-type:border-b-transparent': {};
|
|
85
|
-
};
|
|
86
|
-
'&-td': {
|
|
87
|
-
'@apply text-small': {};
|
|
88
|
-
'&-content': {
|
|
89
|
-
'@apply inline-flex': {};
|
|
90
|
-
'@apply justify-start items-center': {};
|
|
91
|
-
'@apply gap-8': {};
|
|
92
|
-
'@apply py-8 px-18': {};
|
|
93
|
-
'@apply h-[6.3rem]': {};
|
|
94
|
-
'@apply min-h-[6.3rem]': {};
|
|
95
|
-
};
|
|
96
|
-
};
|
|
97
|
-
'&-manualtd': {
|
|
98
|
-
'@apply text-small': {};
|
|
99
|
-
'&-content': {
|
|
100
|
-
'@apply justify-start items-center': {};
|
|
101
|
-
'@apply gap-8': {};
|
|
102
|
-
'@apply py-8 px-18': {};
|
|
103
|
-
'@apply h-[6.3rem]': {};
|
|
104
|
-
'@apply min-h-[6.3rem]': {};
|
|
105
|
-
};
|
|
106
|
-
};
|
|
107
|
-
};
|
|
108
|
-
'&[data-dense="true"]': {
|
|
109
|
-
'.sk-zebratable': {
|
|
110
|
-
'&-thead': {
|
|
111
|
-
'&-th': {
|
|
112
|
-
'@apply py-4': {};
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
|
-
'&-tbody': {
|
|
116
|
-
'&-td-content': {
|
|
117
|
-
'@apply py-0': {};
|
|
118
|
-
'@apply h-[4.7rem]': {};
|
|
119
|
-
'@apply min-h-[4.7rem]': {};
|
|
120
|
-
};
|
|
121
|
-
};
|
|
122
|
-
};
|
|
123
|
-
};
|
|
124
|
-
'&-paginationwrapper': {
|
|
125
|
-
'@apply w-full max-w-[60rem]': {};
|
|
126
|
-
'@apply shrink': {};
|
|
127
|
-
};
|
|
128
|
-
'&-bottom': {
|
|
129
|
-
'@apply py-14 px-16': {};
|
|
130
|
-
'@apply border-t-1': {};
|
|
131
|
-
'@apply flex flex-row': {};
|
|
132
|
-
'@apply gap-32': {};
|
|
133
|
-
'@apply justify-between items-center': {};
|
|
134
|
-
'&-section': {
|
|
135
|
-
'@apply shrink-0': {};
|
|
136
|
-
'@apply flex flex-row': {};
|
|
137
|
-
'@apply justify-start items-center': {};
|
|
138
|
-
'@apply gap-8': {};
|
|
139
|
-
'&-label': {
|
|
140
|
-
'@apply font-normal': {};
|
|
141
|
-
'@apply text-small': {};
|
|
142
|
-
'@apply shrink-0': {};
|
|
143
|
-
};
|
|
144
|
-
};
|
|
145
|
-
'&-pagination': {
|
|
146
|
-
'@apply grow': {};
|
|
147
|
-
'@apply shrink': {};
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
};
|
|
151
|
-
};
|