@daikin-oss/design-system-web-components 0.7.0 → 1.1.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/CHANGELOG.md +127 -12
- package/README.md +2 -2
- package/dist/cjs/base/dds-element.cjs +8 -0
- package/dist/cjs/base/dds-element.d.cts +4 -0
- package/dist/cjs/base/decorators.cjs +13 -0
- package/dist/cjs/base/decorators.d.cts +2 -0
- package/dist/cjs/base/define.cjs +18 -0
- package/dist/cjs/base/define.d.cts +1 -0
- package/dist/cjs/base/index.cjs +8 -0
- package/dist/cjs/base/index.d.cts +3 -0
- package/dist/cjs/components/accordion/daikin-accordion.cjs +39 -6
- package/dist/cjs/components/accordion/daikin-accordion.d.cts +15 -2
- package/dist/cjs/components/accordion-item/daikin-accordion-item.cjs +37 -77
- package/dist/cjs/components/accordion-item/daikin-accordion-item.d.cts +10 -16
- package/dist/cjs/components/avatar/daikin-avatar.cjs +160 -0
- package/dist/cjs/components/avatar/daikin-avatar.d.cts +64 -0
- package/dist/cjs/components/avatar/index.cjs +7 -0
- package/dist/cjs/components/avatar/index.d.cts +1 -0
- package/dist/cjs/components/breadcrumb/daikin-breadcrumb.cjs +8 -5
- package/dist/cjs/components/breadcrumb/daikin-breadcrumb.d.cts +2 -2
- package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.cjs +8 -5
- package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.d.cts +2 -2
- package/dist/cjs/components/button/daikin-button.cjs +20 -8
- package/dist/cjs/components/button/daikin-button.d.cts +6 -3
- package/dist/cjs/components/card/daikin-card.cjs +11 -7
- package/dist/cjs/components/card/daikin-card.d.cts +8 -2
- package/dist/cjs/components/card-footer/daikin-card-footer.cjs +9 -9
- package/dist/cjs/components/card-footer/daikin-card-footer.d.cts +6 -2
- package/dist/cjs/components/card-header/daikin-card-header.cjs +10 -10
- package/dist/cjs/components/card-header/daikin-card-header.d.cts +6 -2
- package/dist/cjs/components/carousel/daikin-carousel.cjs +217 -0
- package/dist/cjs/components/carousel/daikin-carousel.d.cts +56 -0
- package/dist/cjs/components/carousel/index.cjs +7 -0
- package/dist/cjs/components/carousel/index.d.cts +1 -0
- package/dist/cjs/components/carousel-item/daikin-carousel-item.cjs +80 -0
- package/dist/cjs/components/carousel-item/daikin-carousel-item.d.cts +50 -0
- package/dist/cjs/components/carousel-item/index.cjs +7 -0
- package/dist/cjs/components/carousel-item/index.d.cts +1 -0
- package/dist/cjs/components/checkbox/daikin-checkbox.cjs +35 -16
- package/dist/cjs/components/checkbox/daikin-checkbox.d.cts +8 -2
- package/dist/cjs/components/dropdown/daikin-dropdown.cjs +161 -74
- package/dist/cjs/components/dropdown/daikin-dropdown.d.cts +64 -11
- package/dist/cjs/components/dropdown-item/daikin-dropdown-item.cjs +109 -41
- package/dist/cjs/components/dropdown-item/daikin-dropdown-item.d.cts +16 -3
- package/dist/cjs/components/icon/daikin-icon.cjs +8 -5
- package/dist/cjs/components/icon/daikin-icon.d.cts +2 -2
- package/dist/cjs/components/icon/icons.json.cjs +1 -70
- package/dist/cjs/components/icon/icons.json.d.cts +4 -8
- package/dist/cjs/components/icon-button/daikin-icon-button.cjs +8 -5
- package/dist/cjs/components/icon-button/daikin-icon-button.d.cts +2 -2
- package/dist/cjs/components/index.cjs +33 -3
- package/dist/cjs/components/index.d.cts +7 -1
- package/dist/cjs/components/inline-notification/daikin-inline-notification.cjs +92 -0
- package/dist/cjs/components/inline-notification/daikin-inline-notification.d.cts +55 -0
- package/dist/cjs/components/inline-notification/index.cjs +7 -0
- package/dist/cjs/components/inline-notification/index.d.cts +1 -0
- package/dist/cjs/components/input-group/daikin-input-group.cjs +12 -9
- package/dist/cjs/components/input-group/daikin-input-group.d.cts +15 -7
- package/dist/cjs/components/link/daikin-link.cjs +9 -6
- package/dist/cjs/components/link/daikin-link.d.cts +2 -2
- package/dist/cjs/components/list/daikin-list.cjs +9 -9
- package/dist/cjs/components/list/daikin-list.d.cts +7 -2
- package/dist/cjs/components/list-item/daikin-list-item.cjs +8 -5
- package/dist/cjs/components/list-item/daikin-list-item.d.cts +6 -2
- package/dist/cjs/components/loading/daikin-loading.cjs +91 -0
- package/dist/cjs/components/loading/daikin-loading.d.cts +32 -0
- package/dist/cjs/components/loading/index.cjs +7 -0
- package/dist/cjs/components/loading/index.d.cts +1 -0
- package/dist/cjs/components/pagination/daikin-pagination.cjs +22 -13
- package/dist/cjs/components/pagination/daikin-pagination.d.cts +6 -2
- package/dist/cjs/components/progress-bar/daikin-progress-bar.cjs +13 -8
- package/dist/cjs/components/progress-bar/daikin-progress-bar.d.cts +3 -2
- package/dist/cjs/components/progress-indicator/daikin-progress-indicator.cjs +16 -20
- package/dist/cjs/components/progress-indicator/daikin-progress-indicator.d.cts +12 -5
- package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.cjs +24 -25
- package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.d.cts +8 -4
- package/dist/cjs/components/radio/daikin-radio.cjs +45 -23
- package/dist/cjs/components/radio/daikin-radio.d.cts +18 -8
- package/dist/cjs/components/radio-group/daikin-radio-group.cjs +31 -11
- package/dist/cjs/components/radio-group/daikin-radio-group.d.cts +20 -14
- package/dist/cjs/components/select/daikin-select.cjs +15 -6
- package/dist/cjs/components/select/daikin-select.d.cts +11 -2
- package/dist/cjs/components/tab/daikin-tab.cjs +25 -10
- package/dist/cjs/components/tab/daikin-tab.d.cts +7 -2
- package/dist/cjs/components/tab-panels/daikin-tab-panels.cjs +9 -7
- package/dist/cjs/components/tab-panels/daikin-tab-panels.d.cts +2 -2
- package/dist/cjs/components/table/daikin-table.cjs +9 -6
- package/dist/cjs/components/table/daikin-table.d.cts +9 -2
- package/dist/cjs/components/table-cell/daikin-table-cell.cjs +8 -5
- package/dist/cjs/components/table-cell/daikin-table-cell.d.cts +6 -2
- package/dist/cjs/components/table-header-cell/daikin-table-header-cell.cjs +8 -5
- package/dist/cjs/components/table-header-cell/daikin-table-header-cell.d.cts +6 -2
- package/dist/cjs/components/tabs/daikin-tabs.cjs +25 -10
- package/dist/cjs/components/tabs/daikin-tabs.d.cts +8 -2
- package/dist/cjs/components/text-area/daikin-text-area.cjs +16 -7
- package/dist/cjs/components/text-area/daikin-text-area.d.cts +7 -2
- package/dist/cjs/components/text-field/daikin-text-field.cjs +16 -7
- package/dist/cjs/components/text-field/daikin-text-field.d.cts +7 -2
- package/dist/cjs/components/toast-notification/daikin-toast-notification.cjs +94 -0
- package/dist/cjs/components/toast-notification/daikin-toast-notification.d.cts +69 -0
- package/dist/cjs/components/toast-notification/index.cjs +7 -0
- package/dist/cjs/components/toast-notification/index.d.cts +1 -0
- package/dist/cjs/components/toast-notification-manager/daikin-toast-notification-manager.cjs +192 -0
- package/dist/cjs/components/toast-notification-manager/daikin-toast-notification-manager.d.cts +67 -0
- package/dist/cjs/components/toast-notification-manager/index.cjs +7 -0
- package/dist/cjs/components/toast-notification-manager/index.d.cts +1 -0
- package/dist/cjs/components/toggle/daikin-toggle.cjs +8 -5
- package/dist/cjs/components/toggle/daikin-toggle.d.cts +3 -2
- package/dist/cjs/components/tooltip/daikin-tooltip.cjs +42 -30
- package/dist/cjs/components/tooltip/daikin-tooltip.d.cts +16 -6
- package/dist/cjs/components/tree/daikin-tree.cjs +36 -37
- package/dist/cjs/components/tree/daikin-tree.d.cts +13 -14
- package/dist/cjs/components/tree-item/daikin-tree-item.cjs +22 -18
- package/dist/cjs/components/tree-item/daikin-tree-item.d.cts +9 -9
- package/dist/cjs/components/tree-section/daikin-tree-section.cjs +26 -41
- package/dist/cjs/components/tree-section/daikin-tree-section.d.cts +10 -20
- package/dist/cjs/controllers/click-outside.d.cts +1 -1
- package/dist/cjs/index.cjs +33 -3
- package/dist/cjs/tailwind.css.cjs +1 -1
- package/dist/cjs/utils/is-similar-to-click.cjs +4 -0
- package/dist/cjs/utils/is-similar-to-click.d.cts +1 -0
- package/dist/cjs/utils/notification-common.cjs +121 -0
- package/dist/cjs/utils/notification-common.d.cts +19 -0
- package/dist/cjs-dev/base/dds-element.cjs +8 -0
- package/dist/cjs-dev/base/dds-element.d.cts +4 -0
- package/dist/cjs-dev/base/decorators.cjs +13 -0
- package/dist/cjs-dev/base/decorators.d.cts +2 -0
- package/dist/cjs-dev/base/define.cjs +18 -0
- package/dist/cjs-dev/base/define.d.cts +1 -0
- package/dist/cjs-dev/base/index.cjs +8 -0
- package/dist/cjs-dev/base/index.d.cts +3 -0
- package/dist/cjs-dev/components/accordion/daikin-accordion.cjs +46 -6
- package/dist/cjs-dev/components/accordion/daikin-accordion.d.cts +15 -2
- package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.cjs +37 -77
- package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.d.cts +10 -16
- package/dist/cjs-dev/components/avatar/daikin-avatar.cjs +160 -0
- package/dist/cjs-dev/components/avatar/daikin-avatar.d.cts +64 -0
- package/dist/cjs-dev/components/avatar/index.cjs +7 -0
- package/dist/cjs-dev/components/avatar/index.d.cts +1 -0
- package/dist/cjs-dev/components/breadcrumb/daikin-breadcrumb.cjs +8 -5
- package/dist/cjs-dev/components/breadcrumb/daikin-breadcrumb.d.cts +2 -2
- package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.cjs +8 -5
- package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.d.cts +2 -2
- package/dist/cjs-dev/components/button/daikin-button.cjs +20 -8
- package/dist/cjs-dev/components/button/daikin-button.d.cts +6 -3
- package/dist/cjs-dev/components/card/daikin-card.cjs +11 -7
- package/dist/cjs-dev/components/card/daikin-card.d.cts +8 -2
- package/dist/cjs-dev/components/card-footer/daikin-card-footer.cjs +9 -9
- package/dist/cjs-dev/components/card-footer/daikin-card-footer.d.cts +6 -2
- package/dist/cjs-dev/components/card-header/daikin-card-header.cjs +10 -10
- package/dist/cjs-dev/components/card-header/daikin-card-header.d.cts +6 -2
- package/dist/cjs-dev/components/carousel/daikin-carousel.cjs +227 -0
- package/dist/cjs-dev/components/carousel/daikin-carousel.d.cts +56 -0
- package/dist/cjs-dev/components/carousel/index.cjs +7 -0
- package/dist/cjs-dev/components/carousel/index.d.cts +1 -0
- package/dist/cjs-dev/components/carousel-item/daikin-carousel-item.cjs +80 -0
- package/dist/cjs-dev/components/carousel-item/daikin-carousel-item.d.cts +50 -0
- package/dist/cjs-dev/components/carousel-item/index.cjs +7 -0
- package/dist/cjs-dev/components/carousel-item/index.d.cts +1 -0
- package/dist/cjs-dev/components/checkbox/daikin-checkbox.cjs +35 -16
- package/dist/cjs-dev/components/checkbox/daikin-checkbox.d.cts +8 -2
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.cjs +161 -74
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.d.cts +64 -11
- package/dist/cjs-dev/components/dropdown-item/daikin-dropdown-item.cjs +109 -41
- package/dist/cjs-dev/components/dropdown-item/daikin-dropdown-item.d.cts +16 -3
- package/dist/cjs-dev/components/icon/daikin-icon.cjs +8 -5
- package/dist/cjs-dev/components/icon/daikin-icon.d.cts +2 -2
- package/dist/cjs-dev/components/icon/icons.json.cjs +1 -70
- package/dist/cjs-dev/components/icon/icons.json.d.cts +4 -8
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.cjs +8 -5
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.d.cts +2 -2
- package/dist/cjs-dev/components/index.cjs +33 -3
- package/dist/cjs-dev/components/index.d.cts +7 -1
- package/dist/cjs-dev/components/inline-notification/daikin-inline-notification.cjs +92 -0
- package/dist/cjs-dev/components/inline-notification/daikin-inline-notification.d.cts +55 -0
- package/dist/cjs-dev/components/inline-notification/index.cjs +7 -0
- package/dist/cjs-dev/components/inline-notification/index.d.cts +1 -0
- package/dist/cjs-dev/components/input-group/daikin-input-group.cjs +12 -9
- package/dist/cjs-dev/components/input-group/daikin-input-group.d.cts +15 -7
- package/dist/cjs-dev/components/link/daikin-link.cjs +9 -6
- package/dist/cjs-dev/components/link/daikin-link.d.cts +2 -2
- package/dist/cjs-dev/components/list/daikin-list.cjs +9 -9
- package/dist/cjs-dev/components/list/daikin-list.d.cts +7 -2
- package/dist/cjs-dev/components/list-item/daikin-list-item.cjs +8 -5
- package/dist/cjs-dev/components/list-item/daikin-list-item.d.cts +6 -2
- package/dist/cjs-dev/components/loading/daikin-loading.cjs +91 -0
- package/dist/cjs-dev/components/loading/daikin-loading.d.cts +32 -0
- package/dist/cjs-dev/components/loading/index.cjs +7 -0
- package/dist/cjs-dev/components/loading/index.d.cts +1 -0
- package/dist/cjs-dev/components/pagination/daikin-pagination.cjs +22 -13
- package/dist/cjs-dev/components/pagination/daikin-pagination.d.cts +6 -2
- package/dist/cjs-dev/components/progress-bar/daikin-progress-bar.cjs +13 -8
- package/dist/cjs-dev/components/progress-bar/daikin-progress-bar.d.cts +3 -2
- package/dist/cjs-dev/components/progress-indicator/daikin-progress-indicator.cjs +16 -30
- package/dist/cjs-dev/components/progress-indicator/daikin-progress-indicator.d.cts +12 -5
- package/dist/cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.cjs +24 -25
- package/dist/cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.d.cts +8 -4
- package/dist/cjs-dev/components/radio/daikin-radio.cjs +45 -23
- package/dist/cjs-dev/components/radio/daikin-radio.d.cts +18 -8
- package/dist/cjs-dev/components/radio-group/daikin-radio-group.cjs +31 -11
- package/dist/cjs-dev/components/radio-group/daikin-radio-group.d.cts +20 -14
- package/dist/cjs-dev/components/select/daikin-select.cjs +15 -6
- package/dist/cjs-dev/components/select/daikin-select.d.cts +11 -2
- package/dist/cjs-dev/components/tab/daikin-tab.cjs +25 -10
- package/dist/cjs-dev/components/tab/daikin-tab.d.cts +7 -2
- package/dist/cjs-dev/components/tab-panels/daikin-tab-panels.cjs +9 -7
- package/dist/cjs-dev/components/tab-panels/daikin-tab-panels.d.cts +2 -2
- package/dist/cjs-dev/components/table/daikin-table.cjs +9 -6
- package/dist/cjs-dev/components/table/daikin-table.d.cts +9 -2
- package/dist/cjs-dev/components/table-cell/daikin-table-cell.cjs +8 -5
- package/dist/cjs-dev/components/table-cell/daikin-table-cell.d.cts +6 -2
- package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.cjs +8 -5
- package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.d.cts +6 -2
- package/dist/cjs-dev/components/tabs/daikin-tabs.cjs +25 -10
- package/dist/cjs-dev/components/tabs/daikin-tabs.d.cts +8 -2
- package/dist/cjs-dev/components/text-area/daikin-text-area.cjs +16 -7
- package/dist/cjs-dev/components/text-area/daikin-text-area.d.cts +7 -2
- package/dist/cjs-dev/components/text-field/daikin-text-field.cjs +16 -7
- package/dist/cjs-dev/components/text-field/daikin-text-field.d.cts +7 -2
- package/dist/cjs-dev/components/toast-notification/daikin-toast-notification.cjs +94 -0
- package/dist/cjs-dev/components/toast-notification/daikin-toast-notification.d.cts +69 -0
- package/dist/cjs-dev/components/toast-notification/index.cjs +7 -0
- package/dist/cjs-dev/components/toast-notification/index.d.cts +1 -0
- package/dist/cjs-dev/components/toast-notification-manager/daikin-toast-notification-manager.cjs +192 -0
- package/dist/cjs-dev/components/toast-notification-manager/daikin-toast-notification-manager.d.cts +67 -0
- package/dist/cjs-dev/components/toast-notification-manager/index.cjs +7 -0
- package/dist/cjs-dev/components/toast-notification-manager/index.d.cts +1 -0
- package/dist/cjs-dev/components/toggle/daikin-toggle.cjs +8 -5
- package/dist/cjs-dev/components/toggle/daikin-toggle.d.cts +3 -2
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.cjs +42 -30
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.d.cts +16 -6
- package/dist/cjs-dev/components/tree/daikin-tree.cjs +36 -37
- package/dist/cjs-dev/components/tree/daikin-tree.d.cts +13 -14
- package/dist/cjs-dev/components/tree-item/daikin-tree-item.cjs +22 -18
- package/dist/cjs-dev/components/tree-item/daikin-tree-item.d.cts +9 -9
- package/dist/cjs-dev/components/tree-section/daikin-tree-section.cjs +26 -41
- package/dist/cjs-dev/components/tree-section/daikin-tree-section.d.cts +10 -20
- package/dist/cjs-dev/controllers/click-outside.d.cts +1 -1
- package/dist/cjs-dev/index.cjs +33 -3
- package/dist/cjs-dev/tailwind.css.cjs +1 -1
- package/dist/cjs-dev/utils/is-similar-to-click.cjs +4 -0
- package/dist/cjs-dev/utils/is-similar-to-click.d.cts +1 -0
- package/dist/cjs-dev/utils/notification-common.cjs +124 -0
- package/dist/cjs-dev/utils/notification-common.d.cts +19 -0
- package/dist/es/base/dds-element.d.ts +4 -0
- package/dist/es/base/dds-element.js +8 -0
- package/dist/es/base/decorators.d.ts +2 -0
- package/dist/es/base/decorators.js +13 -0
- package/dist/es/base/define.d.ts +1 -0
- package/dist/es/base/define.js +18 -0
- package/dist/es/base/index.d.ts +3 -0
- package/dist/es/base/index.js +8 -0
- package/dist/es/components/accordion/daikin-accordion.d.ts +15 -2
- package/dist/es/components/accordion/daikin-accordion.js +38 -5
- package/dist/es/components/accordion-item/daikin-accordion-item.d.ts +10 -16
- package/dist/es/components/accordion-item/daikin-accordion-item.js +36 -76
- package/dist/es/components/avatar/daikin-avatar.d.ts +64 -0
- package/dist/es/components/avatar/daikin-avatar.js +161 -0
- package/dist/es/components/avatar/index.d.ts +1 -0
- package/dist/es/components/avatar/index.js +4 -0
- package/dist/es/components/breadcrumb/daikin-breadcrumb.d.ts +2 -2
- package/dist/es/components/breadcrumb/daikin-breadcrumb.js +7 -4
- package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.d.ts +2 -2
- package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.js +7 -4
- package/dist/es/components/button/daikin-button.d.ts +6 -3
- package/dist/es/components/button/daikin-button.js +19 -7
- package/dist/es/components/card/daikin-card.d.ts +8 -2
- package/dist/es/components/card/daikin-card.js +10 -6
- package/dist/es/components/card-footer/daikin-card-footer.d.ts +6 -2
- package/dist/es/components/card-footer/daikin-card-footer.js +7 -7
- package/dist/es/components/card-header/daikin-card-header.d.ts +6 -2
- package/dist/es/components/card-header/daikin-card-header.js +8 -8
- package/dist/es/components/carousel/daikin-carousel.d.ts +56 -0
- package/dist/es/components/carousel/daikin-carousel.js +218 -0
- package/dist/es/components/carousel/index.d.ts +1 -0
- package/dist/es/components/carousel/index.js +4 -0
- package/dist/es/components/carousel-item/daikin-carousel-item.d.ts +50 -0
- package/dist/es/components/carousel-item/daikin-carousel-item.js +81 -0
- package/dist/es/components/carousel-item/index.d.ts +1 -0
- package/dist/es/components/carousel-item/index.js +4 -0
- package/dist/es/components/checkbox/daikin-checkbox.d.ts +8 -2
- package/dist/es/components/checkbox/daikin-checkbox.js +34 -15
- package/dist/es/components/dropdown/daikin-dropdown.d.ts +64 -11
- package/dist/es/components/dropdown/daikin-dropdown.js +160 -73
- package/dist/es/components/dropdown-item/daikin-dropdown-item.d.ts +16 -3
- package/dist/es/components/dropdown-item/daikin-dropdown-item.js +108 -40
- package/dist/es/components/icon/daikin-icon.d.ts +2 -2
- package/dist/es/components/icon/daikin-icon.js +7 -4
- package/dist/es/components/icon/icons.json.d.ts +4 -8
- package/dist/es/components/icon/icons.json.js +1 -70
- package/dist/es/components/icon-button/daikin-icon-button.d.ts +2 -2
- package/dist/es/components/icon-button/daikin-icon-button.js +7 -4
- package/dist/es/components/index.d.ts +7 -1
- package/dist/es/components/index.js +14 -2
- package/dist/es/components/inline-notification/daikin-inline-notification.d.ts +55 -0
- package/dist/es/components/inline-notification/daikin-inline-notification.js +93 -0
- package/dist/es/components/inline-notification/index.d.ts +1 -0
- package/dist/es/components/inline-notification/index.js +4 -0
- package/dist/es/components/input-group/daikin-input-group.d.ts +15 -7
- package/dist/es/components/input-group/daikin-input-group.js +11 -8
- package/dist/es/components/link/daikin-link.d.ts +2 -2
- package/dist/es/components/link/daikin-link.js +8 -5
- package/dist/es/components/list/daikin-list.d.ts +7 -2
- package/dist/es/components/list/daikin-list.js +7 -7
- package/dist/es/components/list-item/daikin-list-item.d.ts +6 -2
- package/dist/es/components/list-item/daikin-list-item.js +7 -4
- package/dist/es/components/loading/daikin-loading.d.ts +32 -0
- package/dist/es/components/loading/daikin-loading.js +92 -0
- package/dist/es/components/loading/index.d.ts +1 -0
- package/dist/es/components/loading/index.js +4 -0
- package/dist/es/components/pagination/daikin-pagination.d.ts +6 -2
- package/dist/es/components/pagination/daikin-pagination.js +21 -12
- package/dist/es/components/progress-bar/daikin-progress-bar.d.ts +3 -2
- package/dist/es/components/progress-bar/daikin-progress-bar.js +12 -7
- package/dist/es/components/progress-indicator/daikin-progress-indicator.d.ts +12 -5
- package/dist/es/components/progress-indicator/daikin-progress-indicator.js +15 -19
- package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.d.ts +8 -4
- package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.js +23 -24
- package/dist/es/components/radio/daikin-radio.d.ts +18 -8
- package/dist/es/components/radio/daikin-radio.js +44 -22
- package/dist/es/components/radio-group/daikin-radio-group.d.ts +20 -14
- package/dist/es/components/radio-group/daikin-radio-group.js +30 -10
- package/dist/es/components/select/daikin-select.d.ts +11 -2
- package/dist/es/components/select/daikin-select.js +14 -5
- package/dist/es/components/tab/daikin-tab.d.ts +7 -2
- package/dist/es/components/tab/daikin-tab.js +24 -9
- package/dist/es/components/tab-panels/daikin-tab-panels.d.ts +2 -2
- package/dist/es/components/tab-panels/daikin-tab-panels.js +8 -6
- package/dist/es/components/table/daikin-table.d.ts +9 -2
- package/dist/es/components/table/daikin-table.js +8 -5
- package/dist/es/components/table-cell/daikin-table-cell.d.ts +6 -2
- package/dist/es/components/table-cell/daikin-table-cell.js +7 -4
- package/dist/es/components/table-header-cell/daikin-table-header-cell.d.ts +6 -2
- package/dist/es/components/table-header-cell/daikin-table-header-cell.js +7 -4
- package/dist/es/components/tabs/daikin-tabs.d.ts +8 -2
- package/dist/es/components/tabs/daikin-tabs.js +24 -9
- package/dist/es/components/text-area/daikin-text-area.d.ts +7 -2
- package/dist/es/components/text-area/daikin-text-area.js +15 -6
- package/dist/es/components/text-field/daikin-text-field.d.ts +7 -2
- package/dist/es/components/text-field/daikin-text-field.js +15 -6
- package/dist/es/components/toast-notification/daikin-toast-notification.d.ts +69 -0
- package/dist/es/components/toast-notification/daikin-toast-notification.js +95 -0
- package/dist/es/components/toast-notification/index.d.ts +1 -0
- package/dist/es/components/toast-notification/index.js +4 -0
- package/dist/es/components/toast-notification-manager/daikin-toast-notification-manager.d.ts +67 -0
- package/dist/es/components/toast-notification-manager/daikin-toast-notification-manager.js +193 -0
- package/dist/es/components/toast-notification-manager/index.d.ts +1 -0
- package/dist/es/components/toast-notification-manager/index.js +4 -0
- package/dist/es/components/toggle/daikin-toggle.d.ts +3 -2
- package/dist/es/components/toggle/daikin-toggle.js +7 -4
- package/dist/es/components/tooltip/daikin-tooltip.d.ts +16 -6
- package/dist/es/components/tooltip/daikin-tooltip.js +41 -29
- package/dist/es/components/tree/daikin-tree.d.ts +13 -14
- package/dist/es/components/tree/daikin-tree.js +35 -36
- package/dist/es/components/tree-item/daikin-tree-item.d.ts +9 -9
- package/dist/es/components/tree-item/daikin-tree-item.js +21 -17
- package/dist/es/components/tree-section/daikin-tree-section.d.ts +10 -20
- package/dist/es/components/tree-section/daikin-tree-section.js +25 -40
- package/dist/es/controllers/click-outside.d.ts +1 -1
- package/dist/es/index.js +14 -2
- package/dist/es/tailwind.css.js +1 -1
- package/dist/es/utils/is-similar-to-click.d.ts +1 -0
- package/dist/es/utils/is-similar-to-click.js +4 -0
- package/dist/es/utils/notification-common.d.ts +19 -0
- package/dist/es/utils/notification-common.js +121 -0
- package/dist/es-dev/base/dds-element.d.ts +4 -0
- package/dist/es-dev/base/dds-element.js +8 -0
- package/dist/es-dev/base/decorators.d.ts +2 -0
- package/dist/es-dev/base/decorators.js +13 -0
- package/dist/es-dev/base/define.d.ts +1 -0
- package/dist/es-dev/base/define.js +18 -0
- package/dist/es-dev/base/index.d.ts +3 -0
- package/dist/es-dev/base/index.js +8 -0
- package/dist/es-dev/components/accordion/daikin-accordion.d.ts +15 -2
- package/dist/es-dev/components/accordion/daikin-accordion.js +45 -5
- package/dist/es-dev/components/accordion-item/daikin-accordion-item.d.ts +10 -16
- package/dist/es-dev/components/accordion-item/daikin-accordion-item.js +36 -76
- package/dist/es-dev/components/avatar/daikin-avatar.d.ts +64 -0
- package/dist/es-dev/components/avatar/daikin-avatar.js +161 -0
- package/dist/es-dev/components/avatar/index.d.ts +1 -0
- package/dist/es-dev/components/avatar/index.js +4 -0
- package/dist/es-dev/components/breadcrumb/daikin-breadcrumb.d.ts +2 -2
- package/dist/es-dev/components/breadcrumb/daikin-breadcrumb.js +7 -4
- package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.d.ts +2 -2
- package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.js +7 -4
- package/dist/es-dev/components/button/daikin-button.d.ts +6 -3
- package/dist/es-dev/components/button/daikin-button.js +19 -7
- package/dist/es-dev/components/card/daikin-card.d.ts +8 -2
- package/dist/es-dev/components/card/daikin-card.js +10 -6
- package/dist/es-dev/components/card-footer/daikin-card-footer.d.ts +6 -2
- package/dist/es-dev/components/card-footer/daikin-card-footer.js +7 -7
- package/dist/es-dev/components/card-header/daikin-card-header.d.ts +6 -2
- package/dist/es-dev/components/card-header/daikin-card-header.js +8 -8
- package/dist/es-dev/components/carousel/daikin-carousel.d.ts +56 -0
- package/dist/es-dev/components/carousel/daikin-carousel.js +228 -0
- package/dist/es-dev/components/carousel/index.d.ts +1 -0
- package/dist/es-dev/components/carousel/index.js +4 -0
- package/dist/es-dev/components/carousel-item/daikin-carousel-item.d.ts +50 -0
- package/dist/es-dev/components/carousel-item/daikin-carousel-item.js +81 -0
- package/dist/es-dev/components/carousel-item/index.d.ts +1 -0
- package/dist/es-dev/components/carousel-item/index.js +4 -0
- package/dist/es-dev/components/checkbox/daikin-checkbox.d.ts +8 -2
- package/dist/es-dev/components/checkbox/daikin-checkbox.js +34 -15
- package/dist/es-dev/components/dropdown/daikin-dropdown.d.ts +64 -11
- package/dist/es-dev/components/dropdown/daikin-dropdown.js +160 -73
- package/dist/es-dev/components/dropdown-item/daikin-dropdown-item.d.ts +16 -3
- package/dist/es-dev/components/dropdown-item/daikin-dropdown-item.js +108 -40
- package/dist/es-dev/components/icon/daikin-icon.d.ts +2 -2
- package/dist/es-dev/components/icon/daikin-icon.js +7 -4
- package/dist/es-dev/components/icon/icons.json.d.ts +4 -8
- package/dist/es-dev/components/icon/icons.json.js +1 -70
- package/dist/es-dev/components/icon-button/daikin-icon-button.d.ts +2 -2
- package/dist/es-dev/components/icon-button/daikin-icon-button.js +7 -4
- package/dist/es-dev/components/index.d.ts +7 -1
- package/dist/es-dev/components/index.js +14 -2
- package/dist/es-dev/components/inline-notification/daikin-inline-notification.d.ts +55 -0
- package/dist/es-dev/components/inline-notification/daikin-inline-notification.js +93 -0
- package/dist/es-dev/components/inline-notification/index.d.ts +1 -0
- package/dist/es-dev/components/inline-notification/index.js +4 -0
- package/dist/es-dev/components/input-group/daikin-input-group.d.ts +15 -7
- package/dist/es-dev/components/input-group/daikin-input-group.js +11 -8
- package/dist/es-dev/components/link/daikin-link.d.ts +2 -2
- package/dist/es-dev/components/link/daikin-link.js +8 -5
- package/dist/es-dev/components/list/daikin-list.d.ts +7 -2
- package/dist/es-dev/components/list/daikin-list.js +7 -7
- package/dist/es-dev/components/list-item/daikin-list-item.d.ts +6 -2
- package/dist/es-dev/components/list-item/daikin-list-item.js +7 -4
- package/dist/es-dev/components/loading/daikin-loading.d.ts +32 -0
- package/dist/es-dev/components/loading/daikin-loading.js +92 -0
- package/dist/es-dev/components/loading/index.d.ts +1 -0
- package/dist/es-dev/components/loading/index.js +4 -0
- package/dist/es-dev/components/pagination/daikin-pagination.d.ts +6 -2
- package/dist/es-dev/components/pagination/daikin-pagination.js +21 -12
- package/dist/es-dev/components/progress-bar/daikin-progress-bar.d.ts +3 -2
- package/dist/es-dev/components/progress-bar/daikin-progress-bar.js +12 -7
- package/dist/es-dev/components/progress-indicator/daikin-progress-indicator.d.ts +12 -5
- package/dist/es-dev/components/progress-indicator/daikin-progress-indicator.js +15 -29
- package/dist/es-dev/components/progress-indicator-item/daikin-progress-indicator-item.d.ts +8 -4
- package/dist/es-dev/components/progress-indicator-item/daikin-progress-indicator-item.js +23 -24
- package/dist/es-dev/components/radio/daikin-radio.d.ts +18 -8
- package/dist/es-dev/components/radio/daikin-radio.js +44 -22
- package/dist/es-dev/components/radio-group/daikin-radio-group.d.ts +20 -14
- package/dist/es-dev/components/radio-group/daikin-radio-group.js +30 -10
- package/dist/es-dev/components/select/daikin-select.d.ts +11 -2
- package/dist/es-dev/components/select/daikin-select.js +14 -5
- package/dist/es-dev/components/tab/daikin-tab.d.ts +7 -2
- package/dist/es-dev/components/tab/daikin-tab.js +24 -9
- package/dist/es-dev/components/tab-panels/daikin-tab-panels.d.ts +2 -2
- package/dist/es-dev/components/tab-panels/daikin-tab-panels.js +8 -6
- package/dist/es-dev/components/table/daikin-table.d.ts +9 -2
- package/dist/es-dev/components/table/daikin-table.js +8 -5
- package/dist/es-dev/components/table-cell/daikin-table-cell.d.ts +6 -2
- package/dist/es-dev/components/table-cell/daikin-table-cell.js +7 -4
- package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.d.ts +6 -2
- package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.js +7 -4
- package/dist/es-dev/components/tabs/daikin-tabs.d.ts +8 -2
- package/dist/es-dev/components/tabs/daikin-tabs.js +24 -9
- package/dist/es-dev/components/text-area/daikin-text-area.d.ts +7 -2
- package/dist/es-dev/components/text-area/daikin-text-area.js +15 -6
- package/dist/es-dev/components/text-field/daikin-text-field.d.ts +7 -2
- package/dist/es-dev/components/text-field/daikin-text-field.js +15 -6
- package/dist/es-dev/components/toast-notification/daikin-toast-notification.d.ts +69 -0
- package/dist/es-dev/components/toast-notification/daikin-toast-notification.js +95 -0
- package/dist/es-dev/components/toast-notification/index.d.ts +1 -0
- package/dist/es-dev/components/toast-notification/index.js +4 -0
- package/dist/es-dev/components/toast-notification-manager/daikin-toast-notification-manager.d.ts +67 -0
- package/dist/es-dev/components/toast-notification-manager/daikin-toast-notification-manager.js +193 -0
- package/dist/es-dev/components/toast-notification-manager/index.d.ts +1 -0
- package/dist/es-dev/components/toast-notification-manager/index.js +4 -0
- package/dist/es-dev/components/toggle/daikin-toggle.d.ts +3 -2
- package/dist/es-dev/components/toggle/daikin-toggle.js +7 -4
- package/dist/es-dev/components/tooltip/daikin-tooltip.d.ts +16 -6
- package/dist/es-dev/components/tooltip/daikin-tooltip.js +41 -29
- package/dist/es-dev/components/tree/daikin-tree.d.ts +13 -14
- package/dist/es-dev/components/tree/daikin-tree.js +35 -36
- package/dist/es-dev/components/tree-item/daikin-tree-item.d.ts +9 -9
- package/dist/es-dev/components/tree-item/daikin-tree-item.js +21 -17
- package/dist/es-dev/components/tree-section/daikin-tree-section.d.ts +10 -20
- package/dist/es-dev/components/tree-section/daikin-tree-section.js +25 -40
- package/dist/es-dev/controllers/click-outside.d.ts +1 -1
- package/dist/es-dev/index.js +14 -2
- package/dist/es-dev/tailwind.css.js +1 -1
- package/dist/es-dev/utils/is-similar-to-click.d.ts +1 -0
- package/dist/es-dev/utils/is-similar-to-click.js +4 -0
- package/dist/es-dev/utils/notification-common.d.ts +19 -0
- package/dist/es-dev/utils/notification-common.js +124 -0
- package/icons/checkbox-checked.svg +2 -3
- package/icons/profile.svg +4 -0
- package/icons/status-negative.svg +4 -2
- package/icons/status-warning.svg +2 -4
- package/package.json +54 -50
- package/dist/cjs/components/notification/daikin-notification.cjs +0 -196
- package/dist/cjs/components/notification/daikin-notification.d.cts +0 -77
- package/dist/cjs/components/notification/index.cjs +0 -7
- package/dist/cjs/components/notification/index.d.cts +0 -1
- package/dist/cjs/constants/events.cjs +0 -4
- package/dist/cjs-dev/components/notification/daikin-notification.cjs +0 -196
- package/dist/cjs-dev/components/notification/daikin-notification.d.cts +0 -77
- package/dist/cjs-dev/components/notification/index.cjs +0 -7
- package/dist/cjs-dev/components/notification/index.d.cts +0 -1
- package/dist/cjs-dev/constants/events.cjs +0 -4
- package/dist/es/components/notification/daikin-notification.d.ts +0 -77
- package/dist/es/components/notification/daikin-notification.js +0 -197
- package/dist/es/components/notification/index.d.ts +0 -1
- package/dist/es/components/notification/index.js +0 -4
- package/dist/es/constants/events.js +0 -4
- package/dist/es-dev/components/notification/daikin-notification.d.ts +0 -77
- package/dist/es-dev/components/notification/daikin-notification.js +0 -197
- package/dist/es-dev/components/notification/index.d.ts +0 -1
- package/dist/es-dev/components/notification/index.js +0 -4
- package/dist/es-dev/constants/events.js +0 -4
- package/icons/arrow-up.svg +0 -3
- package/icons/status-success.svg +0 -6
|
@@ -3,13 +3,18 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const classVarianceAuthority = require("class-variance-authority");
|
|
4
4
|
const lit = require("lit");
|
|
5
5
|
const decorators_js = require("lit/decorators.js");
|
|
6
|
+
const ddsElement = require("../../base/dds-element.cjs");
|
|
7
|
+
const decorators = require("../../base/decorators.cjs");
|
|
8
|
+
require("../../base/define.cjs");
|
|
6
9
|
const tailwind = require("../../tailwind.css.cjs");
|
|
10
|
+
const isSimilarToClick = require("../../utils/is-similar-to-click.cjs");
|
|
11
|
+
require("../checkbox/daikin-checkbox.cjs");
|
|
7
12
|
var __defProp = Object.defineProperty;
|
|
8
13
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
9
|
-
var __decorateClass = (
|
|
14
|
+
var __decorateClass = (decorators2, target, key, kind) => {
|
|
10
15
|
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
11
|
-
for (var i =
|
|
12
|
-
if (decorator =
|
|
16
|
+
for (var i = decorators2.length - 1, decorator; i >= 0; i--)
|
|
17
|
+
if (decorator = decorators2[i])
|
|
13
18
|
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
14
19
|
if (kind && result) __defProp(target, key, result);
|
|
15
20
|
return result;
|
|
@@ -18,73 +23,133 @@ const cvaOption = classVarianceAuthority.cva(
|
|
|
18
23
|
[
|
|
19
24
|
"flex",
|
|
20
25
|
"items-center",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
26
|
+
"gap-1",
|
|
27
|
+
"size-full",
|
|
23
28
|
"min-h-12",
|
|
24
|
-
"text-ddt-color-common-text-primary",
|
|
25
|
-
"bg-ddt-color-common-background-default",
|
|
26
|
-
"p-3",
|
|
27
29
|
"font-daikinSerif",
|
|
28
|
-
"leading-
|
|
30
|
+
"leading-[130%]",
|
|
29
31
|
"text-left",
|
|
32
|
+
"relative",
|
|
30
33
|
"focus-visible:outline",
|
|
31
34
|
"focus-visible:outline-2",
|
|
32
35
|
"focus-visible:-outline-offset-2",
|
|
33
|
-
"focus-visible:outline-ddt-color-common-border-focus"
|
|
34
|
-
"disabled:text-ddt-color-common-disabled"
|
|
36
|
+
"focus-visible:outline-ddt-color-common-border-focus"
|
|
35
37
|
],
|
|
36
38
|
{
|
|
37
39
|
variants: {
|
|
38
40
|
selected: {
|
|
39
41
|
false: [
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
+
"var-color-ddt-color-common-background-default/color-primary",
|
|
43
|
+
"hover:var-color-ddt-color-common-surface-hover/color-primary",
|
|
44
|
+
"active:var-color-ddt-color-common-surface-press/color-primary"
|
|
42
45
|
],
|
|
43
46
|
true: [
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
+
"var-color-ddt-color-common-surface-selected-default/color-primary",
|
|
48
|
+
"hover:var-color-ddt-color-common-surface-selected-hover/color-primary",
|
|
49
|
+
"active:var-color-ddt-color-common-surface-selected-press/color-primary",
|
|
47
50
|
"after:i-daikin-dropdown-check",
|
|
48
|
-
"after:size-6"
|
|
51
|
+
"after:size-6",
|
|
52
|
+
"after:flex-none"
|
|
49
53
|
]
|
|
54
|
+
},
|
|
55
|
+
disabled: {
|
|
56
|
+
false: [
|
|
57
|
+
"text-ddt-color-common-text-primary",
|
|
58
|
+
"bg-[--color-primary]",
|
|
59
|
+
"cursor-pointer"
|
|
60
|
+
],
|
|
61
|
+
true: [
|
|
62
|
+
"text-ddt-color-common-disabled",
|
|
63
|
+
"bg-ddt-color-common-background-default"
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
multiple: {
|
|
67
|
+
false: ["justify-between", "p-3"],
|
|
68
|
+
true: ["after:hidden"]
|
|
50
69
|
}
|
|
51
70
|
}
|
|
52
71
|
}
|
|
53
72
|
);
|
|
54
|
-
exports.DaikinDropdownItem = class DaikinDropdownItem extends
|
|
73
|
+
exports.DaikinDropdownItem = class DaikinDropdownItem extends ddsElement.DDSElement {
|
|
55
74
|
constructor() {
|
|
56
75
|
super(...arguments);
|
|
57
76
|
this.value = "";
|
|
58
77
|
this.disabled = false;
|
|
59
78
|
this.selected = false;
|
|
79
|
+
this.selectable = false;
|
|
60
80
|
}
|
|
61
|
-
_handleClick() {
|
|
62
|
-
if (this.disabled) {
|
|
81
|
+
_handleClick(event) {
|
|
82
|
+
if (this.disabled || event.target.tagName === "DAIKIN-CHECKBOX") {
|
|
63
83
|
return;
|
|
64
84
|
}
|
|
65
|
-
this.
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
);
|
|
85
|
+
this._emitSelect();
|
|
86
|
+
event.preventDefault();
|
|
87
|
+
}
|
|
88
|
+
_handleChange(event) {
|
|
89
|
+
this._emitSelect();
|
|
90
|
+
event.preventDefault();
|
|
91
|
+
}
|
|
92
|
+
_handleKeydown(event) {
|
|
93
|
+
if (!isSimilarToClick.isSimilarToClick(event.key) || this.disabled) {
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
this._emitSelect();
|
|
97
|
+
event.preventDefault();
|
|
98
|
+
}
|
|
99
|
+
_handleMousedown(event) {
|
|
100
|
+
if (event.detail === 2) {
|
|
101
|
+
event.preventDefault();
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
_emitSelect() {
|
|
105
|
+
this.dispatchEvent(new Event("select", { bubbles: true }));
|
|
70
106
|
}
|
|
71
107
|
render() {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
108
|
+
const optionClassName = cvaOption({
|
|
109
|
+
selected: this.selected,
|
|
110
|
+
disabled: this.disabled,
|
|
111
|
+
multiple: this.selectable
|
|
112
|
+
});
|
|
113
|
+
return this.selectable ? lit.html`<span
|
|
114
|
+
class=${optionClassName}
|
|
115
|
+
data-value=${this.value}
|
|
116
|
+
role="option"
|
|
117
|
+
aria-selected=${this.selected}
|
|
118
|
+
tabindex="-1"
|
|
119
|
+
aria-disabled=${this.disabled}
|
|
120
|
+
@click=${this._handleClick}
|
|
121
|
+
@keydown=${this._handleKeydown}
|
|
122
|
+
@mousedown=${this._handleMousedown}
|
|
123
|
+
>
|
|
124
|
+
<daikin-checkbox
|
|
125
|
+
class="size-full part-[label]:p-2 part-[label]:cursor-pointer"
|
|
126
|
+
check-state=${this.selected ? "checked" : "unchecked"}
|
|
127
|
+
tabindex="-1"
|
|
128
|
+
?disabled=${this.disabled}
|
|
129
|
+
@change=${this._handleChange}
|
|
130
|
+
>
|
|
131
|
+
<slot></slot>
|
|
132
|
+
</daikin-checkbox>
|
|
133
|
+
</span>` : lit.html`<button
|
|
134
|
+
type="button"
|
|
135
|
+
class=${optionClassName}
|
|
136
|
+
data-value=${this.value}
|
|
137
|
+
role="option"
|
|
138
|
+
aria-selected=${this.selected}
|
|
139
|
+
tabindex="-1"
|
|
140
|
+
?disabled=${this.disabled}
|
|
141
|
+
@click=${this._handleClick}
|
|
142
|
+
>
|
|
143
|
+
<slot></slot>
|
|
144
|
+
</button>`;
|
|
84
145
|
}
|
|
146
|
+
/**
|
|
147
|
+
* Focuses on the inner button.
|
|
148
|
+
* @param options focus options
|
|
149
|
+
*/
|
|
85
150
|
focus(options) {
|
|
86
151
|
var _a;
|
|
87
|
-
(_a = this.
|
|
152
|
+
(_a = this._focusableElement) == null ? void 0 : _a.focus(options);
|
|
88
153
|
}
|
|
89
154
|
};
|
|
90
155
|
exports.DaikinDropdownItem.styles = lit.css`
|
|
@@ -105,8 +170,11 @@ __decorateClass([
|
|
|
105
170
|
decorators_js.property({ type: Boolean, reflect: true })
|
|
106
171
|
], exports.DaikinDropdownItem.prototype, "selected", 2);
|
|
107
172
|
__decorateClass([
|
|
108
|
-
decorators_js.
|
|
109
|
-
], exports.DaikinDropdownItem.prototype, "
|
|
173
|
+
decorators_js.property({ type: Boolean, reflect: true })
|
|
174
|
+
], exports.DaikinDropdownItem.prototype, "selectable", 2);
|
|
175
|
+
__decorateClass([
|
|
176
|
+
decorators_js.query("button,span[role=option]")
|
|
177
|
+
], exports.DaikinDropdownItem.prototype, "_focusableElement", 2);
|
|
110
178
|
exports.DaikinDropdownItem = __decorateClass([
|
|
111
|
-
|
|
179
|
+
decorators.ddsElement("daikin-dropdown-item")
|
|
112
180
|
], exports.DaikinDropdownItem);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DDSElement } from "../../base/index.cjs";
|
|
2
2
|
/**
|
|
3
3
|
* The dropdown item (option) component that can be used within `daikin-dropdown` component.
|
|
4
4
|
*
|
|
@@ -11,11 +11,15 @@ import { LitElement } from 'lit';
|
|
|
11
11
|
*
|
|
12
12
|
* @example
|
|
13
13
|
*
|
|
14
|
+
* ```js
|
|
15
|
+
* import "@daikin-oss/design-system-web-components/components/dropdown-item/index.js";
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
14
18
|
* ```html
|
|
15
19
|
* <daikin-dropdown-item value="value">Dropdown item</daikin-dropdown-item>
|
|
16
20
|
* ```
|
|
17
21
|
*/
|
|
18
|
-
export declare class DaikinDropdownItem extends
|
|
22
|
+
export declare class DaikinDropdownItem extends DDSElement {
|
|
19
23
|
static readonly styles: import('lit').CSSResult;
|
|
20
24
|
/**
|
|
21
25
|
* Form value of the dropdown item.
|
|
@@ -30,9 +34,18 @@ export declare class DaikinDropdownItem extends LitElement {
|
|
|
30
34
|
* Set automatically by `daikin-dropdown` component.
|
|
31
35
|
*/
|
|
32
36
|
selected: boolean;
|
|
33
|
-
|
|
37
|
+
selectable: boolean;
|
|
38
|
+
private _focusableElement;
|
|
34
39
|
private _handleClick;
|
|
40
|
+
private _handleChange;
|
|
41
|
+
private _handleKeydown;
|
|
42
|
+
private _handleMousedown;
|
|
43
|
+
private _emitSelect;
|
|
35
44
|
render(): import('lit-html').TemplateResult<1>;
|
|
45
|
+
/**
|
|
46
|
+
* Focuses on the inner button.
|
|
47
|
+
* @param options focus options
|
|
48
|
+
*/
|
|
36
49
|
focus(options?: FocusOptions): void;
|
|
37
50
|
}
|
|
38
51
|
declare global {
|
|
@@ -3,14 +3,17 @@ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
|
3
3
|
const classVarianceAuthority = require("class-variance-authority");
|
|
4
4
|
const lit = require("lit");
|
|
5
5
|
const decorators_js = require("lit/decorators.js");
|
|
6
|
+
const ddsElement = require("../../base/dds-element.cjs");
|
|
7
|
+
const decorators = require("../../base/decorators.cjs");
|
|
8
|
+
require("../../base/define.cjs");
|
|
6
9
|
const tailwind = require("../../tailwind.css.cjs");
|
|
7
10
|
const icons = require("./icons.json.cjs");
|
|
8
11
|
var __defProp = Object.defineProperty;
|
|
9
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
10
|
-
var __decorateClass = (
|
|
13
|
+
var __decorateClass = (decorators2, target, key, kind) => {
|
|
11
14
|
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
12
|
-
for (var i =
|
|
13
|
-
if (decorator =
|
|
15
|
+
for (var i = decorators2.length - 1, decorator; i >= 0; i--)
|
|
16
|
+
if (decorator = decorators2[i])
|
|
14
17
|
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
15
18
|
if (kind && result) __defProp(target, key, result);
|
|
16
19
|
return result;
|
|
@@ -31,7 +34,7 @@ const cvaIcon = classVarianceAuthority.cva(["block"], {
|
|
|
31
34
|
}
|
|
32
35
|
}
|
|
33
36
|
});
|
|
34
|
-
exports.DaikinIcon = class DaikinIcon extends
|
|
37
|
+
exports.DaikinIcon = class DaikinIcon extends ddsElement.DDSElement {
|
|
35
38
|
constructor() {
|
|
36
39
|
super(...arguments);
|
|
37
40
|
this.icon = null;
|
|
@@ -86,6 +89,6 @@ __decorateClass([
|
|
|
86
89
|
decorators_js.property({ type: String, reflect: true })
|
|
87
90
|
], exports.DaikinIcon.prototype, "size", 2);
|
|
88
91
|
exports.DaikinIcon = __decorateClass([
|
|
89
|
-
|
|
92
|
+
decorators.ddsElement("daikin-icon")
|
|
90
93
|
], exports.DaikinIcon);
|
|
91
94
|
exports.iconList = iconList;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DDSElement } from "../../base/index.cjs";
|
|
2
2
|
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
3
3
|
import { icons } from "./icons.json.cjs";
|
|
4
4
|
export declare const iconList: string[];
|
|
@@ -29,7 +29,7 @@ export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
|
|
|
29
29
|
* <daikin-icon icon="information" color="black" size="m"></daikin-icon>
|
|
30
30
|
* ```
|
|
31
31
|
*/
|
|
32
|
-
export declare class DaikinIcon extends
|
|
32
|
+
export declare class DaikinIcon extends DDSElement {
|
|
33
33
|
static readonly styles: import('lit').CSSResult;
|
|
34
34
|
/**
|
|
35
35
|
* Specify the name of the icon
|
|
@@ -1,73 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const icons = {
|
|
4
|
-
alarm: {
|
|
5
|
-
"class": "i-daikin-status-alarm",
|
|
6
|
-
color: null
|
|
7
|
-
},
|
|
8
|
-
close: {
|
|
9
|
-
"class": "i-daikin-notification-close",
|
|
10
|
-
color: "#a0a0a0"
|
|
11
|
-
},
|
|
12
|
-
information: {
|
|
13
|
-
"class": "i-daikin-status-information",
|
|
14
|
-
color: null
|
|
15
|
-
},
|
|
16
|
-
negative: {
|
|
17
|
-
"class": "i-daikin-status-negative",
|
|
18
|
-
color: null
|
|
19
|
-
},
|
|
20
|
-
positive: {
|
|
21
|
-
"class": "i-daikin-status-positive",
|
|
22
|
-
color: null
|
|
23
|
-
},
|
|
24
|
-
warning: {
|
|
25
|
-
"class": "i-daikin-status-warning",
|
|
26
|
-
color: null
|
|
27
|
-
},
|
|
28
|
-
"pagination-chevron-left": {
|
|
29
|
-
"class": "i-daikin-pagination-chevron-left",
|
|
30
|
-
color: "#414141"
|
|
31
|
-
},
|
|
32
|
-
"pagination-chevron-right": {
|
|
33
|
-
"class": "i-daikin-pagination-chevron-right",
|
|
34
|
-
color: "#414141"
|
|
35
|
-
},
|
|
36
|
-
arrowUp: {
|
|
37
|
-
"class": "i-daikin-arrow-up",
|
|
38
|
-
color: "#414141"
|
|
39
|
-
},
|
|
40
|
-
success: {
|
|
41
|
-
"class": "i-daikin-status-success",
|
|
42
|
-
color: "#0097E0"
|
|
43
|
-
},
|
|
44
|
-
error: {
|
|
45
|
-
"class": "i-daikin-status-error",
|
|
46
|
-
color: "#FF4949"
|
|
47
|
-
},
|
|
48
|
-
cross: {
|
|
49
|
-
"class": "i-daikin-cross",
|
|
50
|
-
color: null
|
|
51
|
-
},
|
|
52
|
-
"chevron-up": {
|
|
53
|
-
"class": "i-daikin-chevron-up",
|
|
54
|
-
color: null
|
|
55
|
-
},
|
|
56
|
-
"chevron-down": {
|
|
57
|
-
"class": "i-daikin-chevron-down",
|
|
58
|
-
color: null
|
|
59
|
-
},
|
|
60
|
-
"chevron-left": {
|
|
61
|
-
"class": "i-daikin-chevron-left",
|
|
62
|
-
color: null
|
|
63
|
-
},
|
|
64
|
-
"chevron-right": {
|
|
65
|
-
"class": "i-daikin-chevron-right",
|
|
66
|
-
color: null
|
|
67
|
-
},
|
|
68
|
-
sort: {
|
|
69
|
-
"class": "i-daikin-sort",
|
|
70
|
-
color: null
|
|
71
|
-
}
|
|
72
|
-
};
|
|
3
|
+
const icons = { "alarm": { "class": "i-daikin-status-alarm", "color": null }, "close": { "class": "i-daikin-notification-close", "color": "#a0a0a0" }, "information": { "class": "i-daikin-status-information", "color": null }, "negative": { "class": "i-daikin-status-negative", "color": null }, "positive": { "class": "i-daikin-status-positive", "color": null }, "warning": { "class": "i-daikin-status-warning", "color": null }, "pagination-chevron-left": { "class": "i-daikin-pagination-chevron-left", "color": "#414141" }, "pagination-chevron-right": { "class": "i-daikin-pagination-chevron-right", "color": "#414141" }, "error": { "class": "i-daikin-status-error", "color": "#FF4949" }, "cross": { "class": "i-daikin-cross", "color": null }, "profile": { "class": "i-daikin-profile", "color": null }, "chevron-up": { "class": "i-daikin-chevron-up", "color": null }, "chevron-down": { "class": "i-daikin-chevron-down", "color": null }, "chevron-left": { "class": "i-daikin-chevron-left", "color": null }, "chevron-right": { "class": "i-daikin-chevron-right", "color": null }, "sort": { "class": "i-daikin-sort", "color": null } };
|
|
73
4
|
exports.icons = icons;
|
|
@@ -32,14 +32,6 @@ declare const _default: {
|
|
|
32
32
|
"class": "i-daikin-pagination-chevron-right",
|
|
33
33
|
"color": "#414141"
|
|
34
34
|
},
|
|
35
|
-
"arrowUp": {
|
|
36
|
-
"class": "i-daikin-arrow-up",
|
|
37
|
-
"color": "#414141"
|
|
38
|
-
},
|
|
39
|
-
"success": {
|
|
40
|
-
"class": "i-daikin-status-success",
|
|
41
|
-
"color": "#0097E0"
|
|
42
|
-
},
|
|
43
35
|
"error": {
|
|
44
36
|
"class": "i-daikin-status-error",
|
|
45
37
|
"color": "#FF4949"
|
|
@@ -48,6 +40,10 @@ declare const _default: {
|
|
|
48
40
|
"class": "i-daikin-cross",
|
|
49
41
|
"color": null
|
|
50
42
|
},
|
|
43
|
+
"profile": {
|
|
44
|
+
"class": "i-daikin-profile",
|
|
45
|
+
"color": null
|
|
46
|
+
},
|
|
51
47
|
"chevron-up": {
|
|
52
48
|
"class": "i-daikin-chevron-up",
|
|
53
49
|
"color": null
|
|
@@ -4,14 +4,17 @@ const classVarianceAuthority = require("class-variance-authority");
|
|
|
4
4
|
const lit = require("lit");
|
|
5
5
|
const decorators_js = require("lit/decorators.js");
|
|
6
6
|
const ifDefined_js = require("lit/directives/if-defined.js");
|
|
7
|
+
const ddsElement = require("../../base/dds-element.cjs");
|
|
8
|
+
const decorators = require("../../base/decorators.cjs");
|
|
9
|
+
require("../../base/define.cjs");
|
|
7
10
|
const tailwind = require("../../tailwind.css.cjs");
|
|
8
11
|
require("../icon/daikin-icon.cjs");
|
|
9
12
|
var __defProp = Object.defineProperty;
|
|
10
13
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
11
|
-
var __decorateClass = (
|
|
14
|
+
var __decorateClass = (decorators2, target, key, kind) => {
|
|
12
15
|
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
13
|
-
for (var i =
|
|
14
|
-
if (decorator =
|
|
16
|
+
for (var i = decorators2.length - 1, decorator; i >= 0; i--)
|
|
17
|
+
if (decorator = decorators2[i])
|
|
15
18
|
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
16
19
|
if (kind && result) __defProp(target, key, result);
|
|
17
20
|
return result;
|
|
@@ -73,7 +76,7 @@ const cvaIconButton = classVarianceAuthority.cva(
|
|
|
73
76
|
}
|
|
74
77
|
}
|
|
75
78
|
);
|
|
76
|
-
exports.DaikinIconButton = class DaikinIconButton extends
|
|
79
|
+
exports.DaikinIconButton = class DaikinIconButton extends ddsElement.DDSElement {
|
|
77
80
|
constructor() {
|
|
78
81
|
super();
|
|
79
82
|
this.variant = "fill";
|
|
@@ -162,5 +165,5 @@ __decorateClass([
|
|
|
162
165
|
decorators_js.query("button")
|
|
163
166
|
], exports.DaikinIconButton.prototype, "_button", 2);
|
|
164
167
|
exports.DaikinIconButton = __decorateClass([
|
|
165
|
-
|
|
168
|
+
decorators.ddsElement("daikin-icon-button")
|
|
166
169
|
], exports.DaikinIconButton);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DDSElement } from "../../base/index.cjs";
|
|
2
2
|
import { ARIARole } from "../../lit-analyzer-types.cjs";
|
|
3
3
|
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
4
4
|
declare const cvaIconButton: (props?: ({
|
|
@@ -32,7 +32,7 @@ type IconButtonVariantProps = MergeVariantProps<typeof cvaIconButton>;
|
|
|
32
32
|
* </daikin-icon-button>
|
|
33
33
|
* ```
|
|
34
34
|
*/
|
|
35
|
-
export declare class DaikinIconButton extends
|
|
35
|
+
export declare class DaikinIconButton extends DDSElement {
|
|
36
36
|
static readonly styles: import('lit').CSSResult;
|
|
37
37
|
/**
|
|
38
38
|
* Variant of the button.
|
|
@@ -2,22 +2,26 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const daikinAccordion = require("./accordion/daikin-accordion.cjs");
|
|
4
4
|
const daikinAccordionItem = require("./accordion-item/daikin-accordion-item.cjs");
|
|
5
|
+
const daikinAvatar = require("./avatar/daikin-avatar.cjs");
|
|
5
6
|
const daikinBreadcrumb = require("./breadcrumb/daikin-breadcrumb.cjs");
|
|
6
7
|
const daikinBreadcrumbItem = require("./breadcrumb-item/daikin-breadcrumb-item.cjs");
|
|
7
8
|
const daikinButton = require("./button/daikin-button.cjs");
|
|
8
9
|
const daikinCard = require("./card/daikin-card.cjs");
|
|
9
10
|
const daikinCardFooter = require("./card-footer/daikin-card-footer.cjs");
|
|
10
11
|
const daikinCardHeader = require("./card-header/daikin-card-header.cjs");
|
|
12
|
+
const daikinCarousel = require("./carousel/daikin-carousel.cjs");
|
|
13
|
+
const daikinCarouselItem = require("./carousel-item/daikin-carousel-item.cjs");
|
|
11
14
|
const daikinCheckbox = require("./checkbox/daikin-checkbox.cjs");
|
|
12
15
|
const daikinDropdown = require("./dropdown/daikin-dropdown.cjs");
|
|
13
16
|
const daikinDropdownItem = require("./dropdown-item/daikin-dropdown-item.cjs");
|
|
14
17
|
const daikinIcon = require("./icon/daikin-icon.cjs");
|
|
15
18
|
const daikinIconButton = require("./icon-button/daikin-icon-button.cjs");
|
|
19
|
+
const daikinInlineNotification = require("./inline-notification/daikin-inline-notification.cjs");
|
|
16
20
|
const daikinInputGroup = require("./input-group/daikin-input-group.cjs");
|
|
17
21
|
const daikinLink = require("./link/daikin-link.cjs");
|
|
18
22
|
const daikinList = require("./list/daikin-list.cjs");
|
|
19
23
|
const daikinListItem = require("./list-item/daikin-list-item.cjs");
|
|
20
|
-
const
|
|
24
|
+
const daikinLoading = require("./loading/daikin-loading.cjs");
|
|
21
25
|
const daikinPagination = require("./pagination/daikin-pagination.cjs");
|
|
22
26
|
const daikinProgressBar = require("./progress-bar/daikin-progress-bar.cjs");
|
|
23
27
|
const daikinProgressIndicator = require("./progress-indicator/daikin-progress-indicator.cjs");
|
|
@@ -32,6 +36,8 @@ const daikinTableHeaderCell = require("./table-header-cell/daikin-table-header-c
|
|
|
32
36
|
const daikinTabs = require("./tabs/daikin-tabs.cjs");
|
|
33
37
|
const daikinTextArea = require("./text-area/daikin-text-area.cjs");
|
|
34
38
|
const daikinTextField = require("./text-field/daikin-text-field.cjs");
|
|
39
|
+
const daikinToastNotification = require("./toast-notification/daikin-toast-notification.cjs");
|
|
40
|
+
const daikinToastNotificationManager = require("./toast-notification-manager/daikin-toast-notification-manager.cjs");
|
|
35
41
|
const daikinToggle = require("./toggle/daikin-toggle.cjs");
|
|
36
42
|
const daikinTooltip = require("./tooltip/daikin-tooltip.cjs");
|
|
37
43
|
const daikinTree = require("./tree/daikin-tree.cjs");
|
|
@@ -45,6 +51,10 @@ Object.defineProperty(exports, "DaikinAccordionItem", {
|
|
|
45
51
|
enumerable: true,
|
|
46
52
|
get: () => daikinAccordionItem.DaikinAccordionItem
|
|
47
53
|
});
|
|
54
|
+
Object.defineProperty(exports, "DaikinAvatar", {
|
|
55
|
+
enumerable: true,
|
|
56
|
+
get: () => daikinAvatar.DaikinAvatar
|
|
57
|
+
});
|
|
48
58
|
Object.defineProperty(exports, "DaikinBreadcrumb", {
|
|
49
59
|
enumerable: true,
|
|
50
60
|
get: () => daikinBreadcrumb.DaikinBreadcrumb
|
|
@@ -69,6 +79,14 @@ Object.defineProperty(exports, "DaikinCardHeader", {
|
|
|
69
79
|
enumerable: true,
|
|
70
80
|
get: () => daikinCardHeader.DaikinCardHeader
|
|
71
81
|
});
|
|
82
|
+
Object.defineProperty(exports, "DaikinCarousel", {
|
|
83
|
+
enumerable: true,
|
|
84
|
+
get: () => daikinCarousel.DaikinCarousel
|
|
85
|
+
});
|
|
86
|
+
Object.defineProperty(exports, "DaikinCarouselItem", {
|
|
87
|
+
enumerable: true,
|
|
88
|
+
get: () => daikinCarouselItem.DaikinCarouselItem
|
|
89
|
+
});
|
|
72
90
|
Object.defineProperty(exports, "DaikinCheckbox", {
|
|
73
91
|
enumerable: true,
|
|
74
92
|
get: () => daikinCheckbox.DaikinCheckbox
|
|
@@ -90,6 +108,10 @@ Object.defineProperty(exports, "DaikinIconButton", {
|
|
|
90
108
|
enumerable: true,
|
|
91
109
|
get: () => daikinIconButton.DaikinIconButton
|
|
92
110
|
});
|
|
111
|
+
Object.defineProperty(exports, "DaikinInlineNotification", {
|
|
112
|
+
enumerable: true,
|
|
113
|
+
get: () => daikinInlineNotification.DaikinInlineNotification
|
|
114
|
+
});
|
|
93
115
|
Object.defineProperty(exports, "DaikinInputGroup", {
|
|
94
116
|
enumerable: true,
|
|
95
117
|
get: () => daikinInputGroup.DaikinInputGroup
|
|
@@ -106,9 +128,9 @@ Object.defineProperty(exports, "DaikinListItem", {
|
|
|
106
128
|
enumerable: true,
|
|
107
129
|
get: () => daikinListItem.DaikinListItem
|
|
108
130
|
});
|
|
109
|
-
Object.defineProperty(exports, "
|
|
131
|
+
Object.defineProperty(exports, "DaikinLoading", {
|
|
110
132
|
enumerable: true,
|
|
111
|
-
get: () =>
|
|
133
|
+
get: () => daikinLoading.DaikinLoading
|
|
112
134
|
});
|
|
113
135
|
Object.defineProperty(exports, "DaikinPagination", {
|
|
114
136
|
enumerable: true,
|
|
@@ -166,6 +188,14 @@ Object.defineProperty(exports, "DaikinTextField", {
|
|
|
166
188
|
enumerable: true,
|
|
167
189
|
get: () => daikinTextField.DaikinTextField
|
|
168
190
|
});
|
|
191
|
+
Object.defineProperty(exports, "DaikinToastNotification", {
|
|
192
|
+
enumerable: true,
|
|
193
|
+
get: () => daikinToastNotification.DaikinToastNotification
|
|
194
|
+
});
|
|
195
|
+
Object.defineProperty(exports, "DaikinToastNotificationManager", {
|
|
196
|
+
enumerable: true,
|
|
197
|
+
get: () => daikinToastNotificationManager.DaikinToastNotificationManager
|
|
198
|
+
});
|
|
169
199
|
Object.defineProperty(exports, "DaikinToggle", {
|
|
170
200
|
enumerable: true,
|
|
171
201
|
get: () => daikinToggle.DaikinToggle
|
|
@@ -1,21 +1,25 @@
|
|
|
1
1
|
export * from "./accordion/index.cjs";
|
|
2
2
|
export * from "./accordion-item/index.cjs";
|
|
3
|
+
export * from "./avatar/index.cjs";
|
|
3
4
|
export * from "./breadcrumb/index.cjs";
|
|
4
5
|
export * from "./breadcrumb-item/index.cjs";
|
|
5
6
|
export * from "./button/index.cjs";
|
|
6
7
|
export * from "./card/index.cjs";
|
|
7
8
|
export * from "./card-footer/index.cjs";
|
|
8
9
|
export * from "./card-header/index.cjs";
|
|
10
|
+
export * from "./carousel/index.cjs";
|
|
11
|
+
export * from "./carousel-item/index.cjs";
|
|
9
12
|
export * from "./checkbox/index.cjs";
|
|
10
13
|
export * from "./dropdown/index.cjs";
|
|
11
14
|
export * from "./dropdown-item/index.cjs";
|
|
12
15
|
export * from "./icon/index.cjs";
|
|
13
16
|
export * from "./icon-button/index.cjs";
|
|
17
|
+
export * from "./inline-notification/index.cjs";
|
|
14
18
|
export * from "./input-group/index.cjs";
|
|
15
19
|
export * from "./link/index.cjs";
|
|
16
20
|
export * from "./list/index.cjs";
|
|
17
21
|
export * from "./list-item/index.cjs";
|
|
18
|
-
export * from "./
|
|
22
|
+
export * from "./loading/index.cjs";
|
|
19
23
|
export * from "./pagination/index.cjs";
|
|
20
24
|
export * from "./progress-bar/index.cjs";
|
|
21
25
|
export * from "./progress-indicator/index.cjs";
|
|
@@ -30,6 +34,8 @@ export * from "./table-header-cell/index.cjs";
|
|
|
30
34
|
export * from "./tabs/index.cjs";
|
|
31
35
|
export * from "./text-area/index.cjs";
|
|
32
36
|
export * from "./text-field/index.cjs";
|
|
37
|
+
export * from "./toast-notification/index.cjs";
|
|
38
|
+
export * from "./toast-notification-manager/index.cjs";
|
|
33
39
|
export * from "./toggle/index.cjs";
|
|
34
40
|
export * from "./tooltip/index.cjs";
|
|
35
41
|
export * from "./tree/index.cjs";
|