@daikin-oss/design-system-web-components 0.6.0 → 1.0.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 +167 -12
- package/README.md +40 -23
- 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 +45 -85
- package/dist/cjs/components/accordion-item/daikin-accordion-item.d.cts +10 -16
- package/dist/cjs/components/breadcrumb/daikin-breadcrumb.cjs +27 -85
- package/dist/cjs/components/breadcrumb/daikin-breadcrumb.d.cts +12 -24
- package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.cjs +33 -82
- package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.d.cts +16 -25
- package/dist/cjs/components/button/daikin-button.cjs +36 -23
- package/dist/cjs/components/button/daikin-button.d.cts +8 -5
- package/dist/cjs/components/card/daikin-card.cjs +67 -0
- package/dist/cjs/components/card/daikin-card.d.cts +48 -0
- package/dist/cjs/components/card/index.cjs +7 -0
- package/dist/cjs/components/card/index.d.cts +1 -0
- package/dist/cjs/components/card-footer/daikin-card-footer.cjs +33 -0
- package/dist/cjs/components/card-footer/daikin-card-footer.d.cts +33 -0
- package/dist/cjs/components/card-footer/index.cjs +7 -0
- package/dist/cjs/components/card-footer/index.d.cts +1 -0
- package/dist/cjs/components/card-header/daikin-card-header.cjs +59 -0
- package/dist/cjs/components/card-header/daikin-card-header.d.cts +35 -0
- package/dist/cjs/components/card-header/index.cjs +7 -0
- package/dist/cjs/components/card-header/index.d.cts +1 -0
- 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 +63 -45
- package/dist/cjs/components/checkbox/daikin-checkbox.d.cts +4 -2
- package/dist/cjs/components/dropdown/daikin-dropdown.cjs +30 -19
- package/dist/cjs/components/dropdown/daikin-dropdown.d.cts +16 -2
- package/dist/cjs/components/dropdown-item/daikin-dropdown-item.cjs +21 -14
- package/dist/cjs/components/dropdown-item/daikin-dropdown-item.d.cts +10 -2
- package/dist/cjs/components/icon/daikin-icon.cjs +16 -13
- package/dist/cjs/components/icon/daikin-icon.d.cts +5 -5
- package/dist/cjs/components/icon/icons.json.cjs +1 -70
- package/dist/cjs/components/icon/icons.json.d.cts +0 -8
- package/dist/cjs/components/icon-button/daikin-icon-button.cjs +29 -25
- package/dist/cjs/components/icon-button/daikin-icon-button.d.cts +2 -2
- package/dist/cjs/components/index.cjs +56 -5
- package/dist/cjs/components/index.d.cts +11 -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 +71 -52
- package/dist/cjs/components/input-group/daikin-input-group.d.cts +25 -8
- package/dist/cjs/components/link/daikin-link.cjs +40 -55
- 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 +16 -13
- package/dist/cjs/components/list-item/daikin-list-item.d.cts +6 -2
- package/dist/cjs/components/pagination/daikin-pagination.cjs +40 -33
- package/dist/cjs/components/pagination/daikin-pagination.d.cts +6 -2
- package/dist/cjs/components/progress-bar/daikin-progress-bar.cjs +33 -18
- package/dist/cjs/components/progress-bar/daikin-progress-bar.d.cts +3 -2
- package/dist/cjs/components/progress-indicator/daikin-progress-indicator.cjs +17 -26
- 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 +28 -29
- package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.d.cts +8 -4
- package/dist/cjs/components/radio/daikin-radio.cjs +57 -33
- 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 +25 -16
- package/dist/cjs/components/select/daikin-select.d.cts +11 -2
- package/dist/cjs/components/tab/daikin-tab.cjs +38 -23
- 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 +15 -12
- package/dist/cjs/components/table/daikin-table.d.cts +9 -2
- package/dist/cjs/components/table-cell/daikin-table-cell.cjs +10 -7
- 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 +12 -10
- 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 +31 -20
- package/dist/cjs/components/text-area/daikin-text-area.d.cts +7 -2
- package/dist/cjs/components/text-field/daikin-text-field.cjs +29 -19
- 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 +18 -15
- package/dist/cjs/components/toggle/daikin-toggle.d.cts +3 -2
- package/dist/cjs/components/tooltip/daikin-tooltip.cjs +45 -33
- package/dist/cjs/components/tooltip/daikin-tooltip.d.cts +16 -6
- package/dist/cjs/components/tree/common.cjs +90 -0
- package/dist/cjs/components/tree/common.d.cts +32 -0
- package/dist/cjs/components/tree/daikin-tree.cjs +108 -0
- package/dist/cjs/components/tree/daikin-tree.d.cts +73 -0
- package/dist/cjs/components/tree/index.cjs +7 -0
- package/dist/cjs/components/tree/index.d.cts +1 -0
- package/dist/cjs/components/tree-item/daikin-tree-item.cjs +201 -0
- package/dist/cjs/components/tree-item/daikin-tree-item.d.cts +95 -0
- package/dist/cjs/components/tree-item/index.cjs +8 -0
- package/dist/cjs/components/tree-item/index.d.cts +1 -0
- package/dist/cjs/components/tree-section/daikin-tree-section.cjs +230 -0
- package/dist/cjs/components/tree-section/daikin-tree-section.d.cts +109 -0
- package/dist/cjs/components/tree-section/index.cjs +7 -0
- package/dist/cjs/components/tree-section/index.d.cts +1 -0
- package/dist/cjs/controllers/click-outside.d.cts +1 -1
- package/dist/cjs/index.cjs +56 -7
- package/dist/cjs/index.d.cts +0 -1
- package/dist/cjs/tailwind.css.cjs +1 -1
- package/dist/cjs/utils/is-simple-key.cjs +6 -0
- package/dist/cjs/utils/is-simple-key.d.cts +7 -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 +45 -85
- package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.d.cts +10 -16
- package/dist/cjs-dev/components/breadcrumb/daikin-breadcrumb.cjs +27 -85
- package/dist/cjs-dev/components/breadcrumb/daikin-breadcrumb.d.cts +12 -24
- package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.cjs +33 -82
- package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.d.cts +16 -25
- package/dist/cjs-dev/components/button/daikin-button.cjs +36 -23
- package/dist/cjs-dev/components/button/daikin-button.d.cts +8 -5
- package/dist/cjs-dev/components/card/daikin-card.cjs +67 -0
- package/dist/cjs-dev/components/card/daikin-card.d.cts +48 -0
- package/dist/cjs-dev/components/card/index.cjs +7 -0
- package/dist/cjs-dev/components/card/index.d.cts +1 -0
- package/dist/cjs-dev/components/card-footer/daikin-card-footer.cjs +33 -0
- package/dist/cjs-dev/components/card-footer/daikin-card-footer.d.cts +33 -0
- package/dist/cjs-dev/components/card-footer/index.cjs +7 -0
- package/dist/cjs-dev/components/card-footer/index.d.cts +1 -0
- package/dist/cjs-dev/components/card-header/daikin-card-header.cjs +59 -0
- package/dist/cjs-dev/components/card-header/daikin-card-header.d.cts +35 -0
- package/dist/cjs-dev/components/card-header/index.cjs +7 -0
- package/dist/cjs-dev/components/card-header/index.d.cts +1 -0
- 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 +63 -45
- package/dist/cjs-dev/components/checkbox/daikin-checkbox.d.cts +4 -2
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.cjs +30 -19
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.d.cts +16 -2
- package/dist/cjs-dev/components/dropdown-item/daikin-dropdown-item.cjs +21 -14
- package/dist/cjs-dev/components/dropdown-item/daikin-dropdown-item.d.cts +10 -2
- package/dist/cjs-dev/components/icon/daikin-icon.cjs +16 -13
- package/dist/cjs-dev/components/icon/daikin-icon.d.cts +5 -5
- package/dist/cjs-dev/components/icon/icons.json.cjs +1 -70
- package/dist/cjs-dev/components/icon/icons.json.d.cts +0 -8
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.cjs +29 -25
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.d.cts +2 -2
- package/dist/cjs-dev/components/index.cjs +56 -5
- package/dist/cjs-dev/components/index.d.cts +11 -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 +71 -52
- package/dist/cjs-dev/components/input-group/daikin-input-group.d.cts +25 -8
- package/dist/cjs-dev/components/link/daikin-link.cjs +40 -55
- 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 +16 -13
- package/dist/cjs-dev/components/list-item/daikin-list-item.d.cts +6 -2
- package/dist/cjs-dev/components/pagination/daikin-pagination.cjs +40 -33
- package/dist/cjs-dev/components/pagination/daikin-pagination.d.cts +6 -2
- package/dist/cjs-dev/components/progress-bar/daikin-progress-bar.cjs +33 -18
- 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 +17 -36
- 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 +28 -29
- 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 +57 -33
- 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 +25 -16
- package/dist/cjs-dev/components/select/daikin-select.d.cts +11 -2
- package/dist/cjs-dev/components/tab/daikin-tab.cjs +38 -23
- 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 +15 -12
- package/dist/cjs-dev/components/table/daikin-table.d.cts +9 -2
- package/dist/cjs-dev/components/table-cell/daikin-table-cell.cjs +10 -7
- 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 +12 -10
- 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 +31 -20
- 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 +29 -19
- 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 +18 -15
- package/dist/cjs-dev/components/toggle/daikin-toggle.d.cts +3 -2
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.cjs +45 -33
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.d.cts +16 -6
- package/dist/cjs-dev/components/tree/common.cjs +90 -0
- package/dist/cjs-dev/components/tree/common.d.cts +32 -0
- package/dist/cjs-dev/components/tree/daikin-tree.cjs +108 -0
- package/dist/cjs-dev/components/tree/daikin-tree.d.cts +73 -0
- package/dist/cjs-dev/components/tree/index.cjs +7 -0
- package/dist/cjs-dev/components/tree/index.d.cts +1 -0
- package/dist/cjs-dev/components/tree-item/daikin-tree-item.cjs +201 -0
- package/dist/cjs-dev/components/tree-item/daikin-tree-item.d.cts +95 -0
- package/dist/cjs-dev/components/tree-item/index.cjs +8 -0
- package/dist/cjs-dev/components/tree-item/index.d.cts +1 -0
- package/dist/cjs-dev/components/tree-section/daikin-tree-section.cjs +230 -0
- package/dist/cjs-dev/components/tree-section/daikin-tree-section.d.cts +109 -0
- package/dist/cjs-dev/components/tree-section/index.cjs +7 -0
- package/dist/cjs-dev/components/tree-section/index.d.cts +1 -0
- package/dist/cjs-dev/controllers/click-outside.d.cts +1 -1
- package/dist/cjs-dev/index.cjs +56 -7
- package/dist/cjs-dev/index.d.cts +0 -1
- package/dist/cjs-dev/tailwind.css.cjs +1 -1
- package/dist/cjs-dev/utils/is-simple-key.cjs +6 -0
- package/dist/cjs-dev/utils/is-simple-key.d.cts +7 -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 +44 -84
- package/dist/es/components/breadcrumb/daikin-breadcrumb.d.ts +12 -24
- package/dist/es/components/breadcrumb/daikin-breadcrumb.js +26 -84
- package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.d.ts +16 -25
- package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.js +32 -81
- package/dist/es/components/button/daikin-button.d.ts +8 -5
- package/dist/es/components/button/daikin-button.js +35 -22
- package/dist/es/components/card/daikin-card.d.ts +48 -0
- package/dist/es/components/card/daikin-card.js +68 -0
- package/dist/es/components/card/index.d.ts +1 -0
- package/dist/es/components/card/index.js +4 -0
- package/dist/es/components/card-footer/daikin-card-footer.d.ts +33 -0
- package/dist/es/components/card-footer/daikin-card-footer.js +34 -0
- package/dist/es/components/card-footer/index.d.ts +1 -0
- package/dist/es/components/card-footer/index.js +4 -0
- package/dist/es/components/card-header/daikin-card-header.d.ts +35 -0
- package/dist/es/components/card-header/daikin-card-header.js +60 -0
- package/dist/es/components/card-header/index.d.ts +1 -0
- package/dist/es/components/card-header/index.js +4 -0
- 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 +4 -2
- package/dist/es/components/checkbox/daikin-checkbox.js +62 -44
- package/dist/es/components/dropdown/daikin-dropdown.d.ts +16 -2
- package/dist/es/components/dropdown/daikin-dropdown.js +29 -18
- package/dist/es/components/dropdown-item/daikin-dropdown-item.d.ts +10 -2
- package/dist/es/components/dropdown-item/daikin-dropdown-item.js +20 -13
- package/dist/es/components/icon/daikin-icon.d.ts +5 -5
- package/dist/es/components/icon/daikin-icon.js +15 -12
- package/dist/es/components/icon/icons.json.d.ts +0 -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 +28 -24
- package/dist/es/components/index.d.ts +11 -1
- package/dist/es/components/index.js +23 -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 +25 -8
- package/dist/es/components/input-group/daikin-input-group.js +70 -51
- package/dist/es/components/link/daikin-link.d.ts +2 -2
- package/dist/es/components/link/daikin-link.js +39 -54
- 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 +15 -12
- package/dist/es/components/pagination/daikin-pagination.d.ts +6 -2
- package/dist/es/components/pagination/daikin-pagination.js +39 -32
- package/dist/es/components/progress-bar/daikin-progress-bar.d.ts +3 -2
- package/dist/es/components/progress-bar/daikin-progress-bar.js +32 -17
- package/dist/es/components/progress-indicator/daikin-progress-indicator.d.ts +12 -5
- package/dist/es/components/progress-indicator/daikin-progress-indicator.js +16 -25
- 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 +27 -28
- package/dist/es/components/radio/daikin-radio.d.ts +18 -8
- package/dist/es/components/radio/daikin-radio.js +56 -32
- 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 +24 -15
- package/dist/es/components/tab/daikin-tab.d.ts +7 -2
- package/dist/es/components/tab/daikin-tab.js +37 -22
- 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 +14 -11
- package/dist/es/components/table-cell/daikin-table-cell.d.ts +6 -2
- package/dist/es/components/table-cell/daikin-table-cell.js +9 -6
- 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 +11 -9
- 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 +30 -19
- package/dist/es/components/text-field/daikin-text-field.d.ts +7 -2
- package/dist/es/components/text-field/daikin-text-field.js +28 -18
- 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 +17 -14
- package/dist/es/components/tooltip/daikin-tooltip.d.ts +16 -6
- package/dist/es/components/tooltip/daikin-tooltip.js +44 -32
- package/dist/es/components/tree/common.d.ts +32 -0
- package/dist/es/components/tree/common.js +90 -0
- package/dist/es/components/tree/daikin-tree.d.ts +73 -0
- package/dist/es/components/tree/daikin-tree.js +109 -0
- package/dist/es/components/tree/index.d.ts +1 -0
- package/dist/es/components/tree/index.js +4 -0
- package/dist/es/components/tree-item/daikin-tree-item.d.ts +95 -0
- package/dist/es/components/tree-item/daikin-tree-item.js +202 -0
- package/dist/es/components/tree-item/index.d.ts +1 -0
- package/dist/es/components/tree-item/index.js +5 -0
- package/dist/es/components/tree-section/daikin-tree-section.d.ts +109 -0
- package/dist/es/components/tree-section/daikin-tree-section.js +231 -0
- package/dist/es/components/tree-section/index.d.ts +1 -0
- package/dist/es/components/tree-section/index.js +4 -0
- package/dist/es/controllers/click-outside.d.ts +1 -1
- package/dist/es/index.d.ts +0 -1
- package/dist/es/index.js +23 -4
- package/dist/es/tailwind.css.js +1 -1
- package/dist/es/utils/is-simple-key.d.ts +7 -0
- package/dist/es/utils/is-simple-key.js +6 -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 +44 -84
- package/dist/es-dev/components/breadcrumb/daikin-breadcrumb.d.ts +12 -24
- package/dist/es-dev/components/breadcrumb/daikin-breadcrumb.js +26 -84
- package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.d.ts +16 -25
- package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.js +32 -81
- package/dist/es-dev/components/button/daikin-button.d.ts +8 -5
- package/dist/es-dev/components/button/daikin-button.js +35 -22
- package/dist/es-dev/components/card/daikin-card.d.ts +48 -0
- package/dist/es-dev/components/card/daikin-card.js +68 -0
- package/dist/es-dev/components/card/index.d.ts +1 -0
- package/dist/es-dev/components/card/index.js +4 -0
- package/dist/es-dev/components/card-footer/daikin-card-footer.d.ts +33 -0
- package/dist/es-dev/components/card-footer/daikin-card-footer.js +34 -0
- package/dist/es-dev/components/card-footer/index.d.ts +1 -0
- package/dist/es-dev/components/card-footer/index.js +4 -0
- package/dist/es-dev/components/card-header/daikin-card-header.d.ts +35 -0
- package/dist/es-dev/components/card-header/daikin-card-header.js +60 -0
- package/dist/es-dev/components/card-header/index.d.ts +1 -0
- package/dist/es-dev/components/card-header/index.js +4 -0
- 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 +4 -2
- package/dist/es-dev/components/checkbox/daikin-checkbox.js +62 -44
- package/dist/es-dev/components/dropdown/daikin-dropdown.d.ts +16 -2
- package/dist/es-dev/components/dropdown/daikin-dropdown.js +29 -18
- package/dist/es-dev/components/dropdown-item/daikin-dropdown-item.d.ts +10 -2
- package/dist/es-dev/components/dropdown-item/daikin-dropdown-item.js +20 -13
- package/dist/es-dev/components/icon/daikin-icon.d.ts +5 -5
- package/dist/es-dev/components/icon/daikin-icon.js +15 -12
- package/dist/es-dev/components/icon/icons.json.d.ts +0 -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 +28 -24
- package/dist/es-dev/components/index.d.ts +11 -1
- package/dist/es-dev/components/index.js +23 -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 +25 -8
- package/dist/es-dev/components/input-group/daikin-input-group.js +70 -51
- package/dist/es-dev/components/link/daikin-link.d.ts +2 -2
- package/dist/es-dev/components/link/daikin-link.js +39 -54
- 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 +15 -12
- package/dist/es-dev/components/pagination/daikin-pagination.d.ts +6 -2
- package/dist/es-dev/components/pagination/daikin-pagination.js +39 -32
- 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 +32 -17
- 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 +16 -35
- 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 +27 -28
- package/dist/es-dev/components/radio/daikin-radio.d.ts +18 -8
- package/dist/es-dev/components/radio/daikin-radio.js +56 -32
- 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 +24 -15
- package/dist/es-dev/components/tab/daikin-tab.d.ts +7 -2
- package/dist/es-dev/components/tab/daikin-tab.js +37 -22
- 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 +14 -11
- 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 +9 -6
- 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 +11 -9
- 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 +30 -19
- 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 +28 -18
- 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 +17 -14
- package/dist/es-dev/components/tooltip/daikin-tooltip.d.ts +16 -6
- package/dist/es-dev/components/tooltip/daikin-tooltip.js +44 -32
- package/dist/es-dev/components/tree/common.d.ts +32 -0
- package/dist/es-dev/components/tree/common.js +90 -0
- package/dist/es-dev/components/tree/daikin-tree.d.ts +73 -0
- package/dist/es-dev/components/tree/daikin-tree.js +109 -0
- package/dist/es-dev/components/tree/index.d.ts +1 -0
- package/dist/es-dev/components/tree/index.js +4 -0
- package/dist/es-dev/components/tree-item/daikin-tree-item.d.ts +95 -0
- package/dist/es-dev/components/tree-item/daikin-tree-item.js +202 -0
- package/dist/es-dev/components/tree-item/index.d.ts +1 -0
- package/dist/es-dev/components/tree-item/index.js +5 -0
- package/dist/es-dev/components/tree-section/daikin-tree-section.d.ts +109 -0
- package/dist/es-dev/components/tree-section/daikin-tree-section.js +231 -0
- package/dist/es-dev/components/tree-section/index.d.ts +1 -0
- package/dist/es-dev/components/tree-section/index.js +4 -0
- package/dist/es-dev/controllers/click-outside.d.ts +1 -1
- package/dist/es-dev/index.d.ts +0 -1
- package/dist/es-dev/index.js +23 -4
- package/dist/es-dev/tailwind.css.js +1 -1
- package/dist/es-dev/utils/is-simple-key.d.ts +7 -0
- package/dist/es-dev/utils/is-simple-key.js +6 -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/sort.svg +1 -1
- package/icons/status-error.svg +1 -1
- package/icons/status-negative.svg +4 -2
- package/icons/status-warning.svg +2 -4
- package/package.json +58 -49
- package/dist/cjs/colors.cjs +0 -80
- package/dist/cjs/colors.d.cts +0 -69
- package/dist/cjs/components/notification/daikin-notification.cjs +0 -197
- 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/colors.cjs +0 -80
- package/dist/cjs-dev/colors.d.cts +0 -69
- package/dist/cjs-dev/components/notification/daikin-notification.cjs +0 -197
- 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/colors.d.ts +0 -69
- package/dist/es/colors.js +0 -80
- package/dist/es/components/notification/daikin-notification.d.ts +0 -77
- package/dist/es/components/notification/daikin-notification.js +0 -198
- 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/colors.d.ts +0 -69
- package/dist/es-dev/colors.js +0 -80
- package/dist/es-dev/components/notification/daikin-notification.d.ts +0 -77
- package/dist/es-dev/components/notification/daikin-notification.js +0 -198
- 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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daikin-oss/design-system-web-components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Design system using web components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"storybook:preview-react": "http-server -c-1 -d false --no-dotfiles -p 6107 -o storybook-static/react",
|
|
62
62
|
"lint:code": "eslint && prettier -c .",
|
|
63
63
|
"lint:cspell": "cspell --no-progress .",
|
|
64
|
-
"lint:lit": "lit-analyzer --strict --rules.no-missing-import off src",
|
|
64
|
+
"lint:lit": "lit-analyzer --strict --rules.no-missing-import off --rules.no-property-visibility-mismatch off src",
|
|
65
65
|
"lint:ls": "ls-lint",
|
|
66
66
|
"lint": "npm run lint:code && npm run lint:lit && npm run lint:cspell && npm run lint:ls",
|
|
67
67
|
"lint-fix": "eslint --fix && prettier -w .",
|
|
@@ -75,79 +75,88 @@
|
|
|
75
75
|
"test:visual": "npm run test:visual-wc && npm run test:visual-react",
|
|
76
76
|
"test:visual-update": "npm run test:visual-wc -- --update-snapshots"
|
|
77
77
|
},
|
|
78
|
+
"browserslist": [
|
|
79
|
+
"last 2 versions and > 1%"
|
|
80
|
+
],
|
|
78
81
|
"dependencies": {
|
|
79
|
-
"@
|
|
80
|
-
"@floating-ui/dom": "^1.6.12",
|
|
82
|
+
"@floating-ui/dom": "^1.6.13",
|
|
81
83
|
"class-variance-authority": "^0.7.1",
|
|
82
84
|
"lit": "^3.2.1"
|
|
83
85
|
},
|
|
84
86
|
"devDependencies": {
|
|
85
|
-
"@arethetypeswrong/cli": "^0.17.
|
|
87
|
+
"@arethetypeswrong/cli": "^0.17.3",
|
|
86
88
|
"@axe-core/playwright": "^4.10.1",
|
|
87
89
|
"@changesets/changelog-github": "^0.5.0",
|
|
88
|
-
"@changesets/cli": "^2.27.
|
|
89
|
-
"@daikin-oss/
|
|
90
|
-
"@
|
|
91
|
-
"@
|
|
92
|
-
"@
|
|
93
|
-
"@
|
|
90
|
+
"@changesets/cli": "^2.27.12",
|
|
91
|
+
"@daikin-oss/dds-tokens": "^0.3.2",
|
|
92
|
+
"@daikin-oss/tailwind": "^0.2.0",
|
|
93
|
+
"@egoist/tailwindcss-icons": "^1.9.0",
|
|
94
|
+
"@eslint/js": "^9.20.0",
|
|
95
|
+
"@fontsource/roboto": "^5.1.1",
|
|
96
|
+
"@jackolope/lit-analyzer": "^3.0.2",
|
|
97
|
+
"@jackolope/web-component-analyzer": "^3.0.0",
|
|
98
|
+
"@lit/react": "^1.0.7",
|
|
94
99
|
"@ls-lint/ls-lint": "^2.2.3",
|
|
95
100
|
"@playwright/test": "1.46.1",
|
|
96
|
-
"@storybook/addon-a11y": "^8.
|
|
97
|
-
"@storybook/addon-essentials": "^8.
|
|
98
|
-
"@storybook/addon-interactions": "^8.
|
|
99
|
-
"@storybook/addon-links": "^8.
|
|
100
|
-
"@storybook/addon-mdx-gfm": "^8.
|
|
101
|
-
"@storybook/blocks": "^8.
|
|
102
|
-
"@storybook/builder-vite": "^8.
|
|
103
|
-
"@storybook/manager-api": "^8.
|
|
104
|
-
"@storybook/preview-api": "^8.
|
|
105
|
-
"@storybook/react": "^8.
|
|
106
|
-
"@storybook/react-vite": "^8.
|
|
107
|
-
"@storybook/test": "^8.
|
|
108
|
-
"@storybook/test-runner": "^0.
|
|
109
|
-
"@storybook/theming": "^8.
|
|
110
|
-
"@storybook/web-components": "^8.
|
|
111
|
-
"@storybook/web-components-vite": "^8.
|
|
101
|
+
"@storybook/addon-a11y": "^8.5.5",
|
|
102
|
+
"@storybook/addon-essentials": "^8.5.5",
|
|
103
|
+
"@storybook/addon-interactions": "^8.5.5",
|
|
104
|
+
"@storybook/addon-links": "^8.5.5",
|
|
105
|
+
"@storybook/addon-mdx-gfm": "^8.5.5",
|
|
106
|
+
"@storybook/blocks": "^8.5.5",
|
|
107
|
+
"@storybook/builder-vite": "^8.5.5",
|
|
108
|
+
"@storybook/manager-api": "^8.5.5",
|
|
109
|
+
"@storybook/preview-api": "^8.5.5",
|
|
110
|
+
"@storybook/react": "^8.5.5",
|
|
111
|
+
"@storybook/react-vite": "^8.5.5",
|
|
112
|
+
"@storybook/test": "^8.5.5",
|
|
113
|
+
"@storybook/test-runner": "^0.21.0",
|
|
114
|
+
"@storybook/theming": "^8.5.5",
|
|
115
|
+
"@storybook/web-components": "^8.5.5",
|
|
116
|
+
"@storybook/web-components-vite": "^8.5.5",
|
|
112
117
|
"@types/eslint__js": "^8.42.3",
|
|
113
118
|
"@types/eslint-config-prettier": "^6.11.3",
|
|
114
119
|
"@types/jest-image-snapshot": "^6.4.0",
|
|
115
|
-
"@types/node": "^20.17.
|
|
116
|
-
"@types/react": "^
|
|
120
|
+
"@types/node": "^20.17.18",
|
|
121
|
+
"@types/react": "^19.0.8",
|
|
117
122
|
"@vitejs/plugin-react": "^4.3.4",
|
|
118
123
|
"autoprefixer": "^10.4.20",
|
|
119
124
|
"cross-env": "^7.0.3",
|
|
120
|
-
"cspell": "^8.
|
|
125
|
+
"cspell": "^8.17.3",
|
|
121
126
|
"defu": "^6.1.4",
|
|
122
|
-
"eslint": "^9.
|
|
123
|
-
"eslint-config-prettier": "^
|
|
127
|
+
"eslint": "^9.20.1",
|
|
128
|
+
"eslint-config-prettier": "^10.0.1",
|
|
124
129
|
"eslint-plugin-lit": "^1.15.0",
|
|
125
130
|
"eslint-plugin-lit-a11y": "^4.1.4",
|
|
126
131
|
"eslint-plugin-wc": "^2.2.0",
|
|
127
|
-
"fast-glob": "^3.3.
|
|
132
|
+
"fast-glob": "^3.3.3",
|
|
128
133
|
"http-server": "^14.1.1",
|
|
129
134
|
"husky": "^9.1.7",
|
|
130
|
-
"
|
|
131
|
-
"
|
|
135
|
+
"jiti": "^2.4.2",
|
|
136
|
+
"lightningcss": "^1.29.1",
|
|
132
137
|
"picocolors": "^1.1.1",
|
|
133
138
|
"playwright": "1.46.1",
|
|
134
139
|
"playwright-core": "1.46.1",
|
|
135
|
-
"postcss": "^8.
|
|
136
|
-
"prettier": "^3.
|
|
140
|
+
"postcss": "^8.5.2",
|
|
141
|
+
"prettier": "^3.5.0",
|
|
137
142
|
"prettier-plugin-organize-imports": "^4.1.0",
|
|
138
|
-
"react": "^
|
|
139
|
-
"react-dom": "^
|
|
143
|
+
"react": "^19.0.0",
|
|
144
|
+
"react-dom": "^19.0.0",
|
|
145
|
+
"sass-embedded": "^1.83.4",
|
|
140
146
|
"shadow-dom-testing-library": "^1.11.3",
|
|
141
|
-
"start-server-and-test": "^2.0.
|
|
142
|
-
"storybook": "^8.
|
|
143
|
-
"tailwindcss": "^3.4.
|
|
147
|
+
"start-server-and-test": "^2.0.10",
|
|
148
|
+
"storybook": "^8.5.5",
|
|
149
|
+
"tailwindcss": "^3.4.17",
|
|
144
150
|
"tsx": "^4.19.2",
|
|
145
|
-
"typescript": "^5.7.
|
|
146
|
-
"typescript-eslint": "^8.
|
|
147
|
-
"
|
|
148
|
-
"vite
|
|
149
|
-
"vite-plugin-
|
|
150
|
-
"
|
|
151
|
-
"
|
|
151
|
+
"typescript": "^5.7.3",
|
|
152
|
+
"typescript-eslint": "^8.24.0",
|
|
153
|
+
"unplugin-macros": "^0.16.0",
|
|
154
|
+
"vite": "^6.1.0",
|
|
155
|
+
"vite-plugin-dts": "^4.5.0",
|
|
156
|
+
"vite-plugin-externalize-deps": "^0.9.0",
|
|
157
|
+
"vitest": "^3.0.5"
|
|
158
|
+
},
|
|
159
|
+
"peerDependencies": {
|
|
160
|
+
"@daikin-oss/dds-tokens": ">=0.3.0 <1.0.0"
|
|
152
161
|
}
|
|
153
162
|
}
|
package/dist/cjs/colors.cjs
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const variables_js = require("@daikin-oss/dds-tokens/js/daikin/Light/variables.js");
|
|
4
|
-
const DAIKIN_PRIMARY_BLUE = variables_js.colorBrandPrimary;
|
|
5
|
-
const DAIKIN_SECONDARY_BLUE = variables_js.colorBlue40;
|
|
6
|
-
const DAIKIN_DARK_GREY = variables_js.colorGrey90;
|
|
7
|
-
const DAIKIN_MEDIUM_GREY = variables_js.colorGrey70;
|
|
8
|
-
const DAIKIN_NEGATIVE = variables_js.colorRed60;
|
|
9
|
-
const DAIKIN_WARNING = variables_js.colorYellow50;
|
|
10
|
-
const DAIKIN_POSITIVE = variables_js.colorGreen60;
|
|
11
|
-
const colors = {
|
|
12
|
-
daikinBlue: {
|
|
13
|
-
50: variables_js.colorBlue10,
|
|
14
|
-
100: variables_js.colorBlue20,
|
|
15
|
-
200: variables_js.colorBlue30,
|
|
16
|
-
300: DAIKIN_SECONDARY_BLUE,
|
|
17
|
-
400: variables_js.colorBlue50,
|
|
18
|
-
500: DAIKIN_PRIMARY_BLUE,
|
|
19
|
-
600: variables_js.colorBlue70,
|
|
20
|
-
700: variables_js.colorBlue80,
|
|
21
|
-
800: variables_js.colorBlue90,
|
|
22
|
-
900: variables_js.colorBlue100,
|
|
23
|
-
DEFAULT: DAIKIN_PRIMARY_BLUE
|
|
24
|
-
},
|
|
25
|
-
daikinNeutral: {
|
|
26
|
-
50: variables_js.colorGrey10,
|
|
27
|
-
100: variables_js.colorGrey20,
|
|
28
|
-
200: variables_js.colorGrey30,
|
|
29
|
-
300: variables_js.colorGrey40,
|
|
30
|
-
400: variables_js.colorGrey50,
|
|
31
|
-
500: variables_js.colorGrey60,
|
|
32
|
-
600: DAIKIN_MEDIUM_GREY,
|
|
33
|
-
700: variables_js.colorGrey80,
|
|
34
|
-
800: DAIKIN_DARK_GREY,
|
|
35
|
-
900: variables_js.colorGrey100
|
|
36
|
-
},
|
|
37
|
-
daikinRed: {
|
|
38
|
-
50: variables_js.colorRed10,
|
|
39
|
-
100: variables_js.colorRed20,
|
|
40
|
-
200: variables_js.colorRed30,
|
|
41
|
-
300: variables_js.colorRed40,
|
|
42
|
-
400: variables_js.colorRed50,
|
|
43
|
-
500: DAIKIN_NEGATIVE,
|
|
44
|
-
600: variables_js.colorRed70,
|
|
45
|
-
700: variables_js.colorRed80,
|
|
46
|
-
800: variables_js.colorRed90,
|
|
47
|
-
900: variables_js.colorRed100,
|
|
48
|
-
1e3: variables_js.colorRed110,
|
|
49
|
-
DEFAULT: DAIKIN_NEGATIVE
|
|
50
|
-
},
|
|
51
|
-
daikinYellow: {
|
|
52
|
-
50: variables_js.colorYellow10,
|
|
53
|
-
100: variables_js.colorYellow20,
|
|
54
|
-
200: variables_js.colorYellow30,
|
|
55
|
-
300: variables_js.colorYellow40,
|
|
56
|
-
400: DAIKIN_WARNING,
|
|
57
|
-
500: variables_js.colorYellow60,
|
|
58
|
-
600: variables_js.colorYellow70,
|
|
59
|
-
700: variables_js.colorYellow80,
|
|
60
|
-
800: variables_js.colorYellow90,
|
|
61
|
-
900: variables_js.colorYellow100,
|
|
62
|
-
1e3: variables_js.colorYellow110,
|
|
63
|
-
DEFAULT: DAIKIN_WARNING
|
|
64
|
-
},
|
|
65
|
-
daikinGreen: {
|
|
66
|
-
50: variables_js.colorGreen10,
|
|
67
|
-
100: variables_js.colorGreen20,
|
|
68
|
-
200: variables_js.colorGreen30,
|
|
69
|
-
300: variables_js.colorGreen40,
|
|
70
|
-
400: variables_js.colorGreen50,
|
|
71
|
-
500: DAIKIN_POSITIVE,
|
|
72
|
-
600: variables_js.colorGreen70,
|
|
73
|
-
700: variables_js.colorGreen80,
|
|
74
|
-
800: variables_js.colorGreen90,
|
|
75
|
-
900: variables_js.colorGreen100,
|
|
76
|
-
1e3: variables_js.colorGreen110,
|
|
77
|
-
DEFAULT: DAIKIN_POSITIVE
|
|
78
|
-
}
|
|
79
|
-
};
|
|
80
|
-
exports.colors = colors;
|
package/dist/cjs/colors.d.cts
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
export declare const colors: {
|
|
2
|
-
daikinBlue: {
|
|
3
|
-
50: string;
|
|
4
|
-
100: string;
|
|
5
|
-
200: string;
|
|
6
|
-
300: string;
|
|
7
|
-
400: string;
|
|
8
|
-
500: string;
|
|
9
|
-
600: string;
|
|
10
|
-
700: string;
|
|
11
|
-
800: string;
|
|
12
|
-
900: string;
|
|
13
|
-
DEFAULT: string;
|
|
14
|
-
};
|
|
15
|
-
daikinNeutral: {
|
|
16
|
-
50: string;
|
|
17
|
-
100: string;
|
|
18
|
-
200: string;
|
|
19
|
-
300: string;
|
|
20
|
-
400: string;
|
|
21
|
-
500: string;
|
|
22
|
-
600: string;
|
|
23
|
-
700: string;
|
|
24
|
-
800: string;
|
|
25
|
-
900: string;
|
|
26
|
-
};
|
|
27
|
-
daikinRed: {
|
|
28
|
-
50: string;
|
|
29
|
-
100: string;
|
|
30
|
-
200: string;
|
|
31
|
-
300: string;
|
|
32
|
-
400: string;
|
|
33
|
-
500: string;
|
|
34
|
-
600: string;
|
|
35
|
-
700: string;
|
|
36
|
-
800: string;
|
|
37
|
-
900: string;
|
|
38
|
-
1000: string;
|
|
39
|
-
DEFAULT: string;
|
|
40
|
-
};
|
|
41
|
-
daikinYellow: {
|
|
42
|
-
50: string;
|
|
43
|
-
100: string;
|
|
44
|
-
200: string;
|
|
45
|
-
300: string;
|
|
46
|
-
400: string;
|
|
47
|
-
500: string;
|
|
48
|
-
600: string;
|
|
49
|
-
700: string;
|
|
50
|
-
800: string;
|
|
51
|
-
900: string;
|
|
52
|
-
1000: string;
|
|
53
|
-
DEFAULT: string;
|
|
54
|
-
};
|
|
55
|
-
daikinGreen: {
|
|
56
|
-
50: string;
|
|
57
|
-
100: string;
|
|
58
|
-
200: string;
|
|
59
|
-
300: string;
|
|
60
|
-
400: string;
|
|
61
|
-
500: string;
|
|
62
|
-
600: string;
|
|
63
|
-
700: string;
|
|
64
|
-
800: string;
|
|
65
|
-
900: string;
|
|
66
|
-
1000: string;
|
|
67
|
-
DEFAULT: string;
|
|
68
|
-
};
|
|
69
|
-
};
|
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const variables_js = require("@daikin-oss/dds-tokens/js/daikin/Light/variables.js");
|
|
4
|
-
const classVarianceAuthority = require("class-variance-authority");
|
|
5
|
-
const lit = require("lit");
|
|
6
|
-
const decorators_js = require("lit/decorators.js");
|
|
7
|
-
const events = require("../../constants/events.cjs");
|
|
8
|
-
const tailwind = require("../../tailwind.css.cjs");
|
|
9
|
-
var __defProp = Object.defineProperty;
|
|
10
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
11
|
-
var __decorateClass = (decorators, target, key, kind) => {
|
|
12
|
-
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
13
|
-
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
14
|
-
if (decorator = decorators[i])
|
|
15
|
-
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
16
|
-
if (kind && result) __defProp(target, key, result);
|
|
17
|
-
return result;
|
|
18
|
-
};
|
|
19
|
-
const cvaContainer = classVarianceAuthority.cva(
|
|
20
|
-
["flex", "box-border", "bg-white", "overflow-hidden", "font-daikinSerif"],
|
|
21
|
-
{
|
|
22
|
-
variants: {
|
|
23
|
-
variant: {
|
|
24
|
-
toast: [
|
|
25
|
-
"border-2",
|
|
26
|
-
"border-solid",
|
|
27
|
-
"rounded-lg",
|
|
28
|
-
"shadow-notification"
|
|
29
|
-
],
|
|
30
|
-
inline: []
|
|
31
|
-
},
|
|
32
|
-
status: {
|
|
33
|
-
positive: ["border-[--colorFeedbackPositive]"],
|
|
34
|
-
negative: ["border-[--colorFeedbackNegative]"],
|
|
35
|
-
warning: ["border-[--colorFeedbackWarning]"],
|
|
36
|
-
alarm: ["border-[--colorFeedbackAlarm]"],
|
|
37
|
-
information: ["border-[--colorFeedbackInformation]"]
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
defaultVariants: {
|
|
41
|
-
variant: "toast",
|
|
42
|
-
status: "positive"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
);
|
|
46
|
-
const cvaIconContainer = classVarianceAuthority.cva(
|
|
47
|
-
[
|
|
48
|
-
"flex-none",
|
|
49
|
-
"flex",
|
|
50
|
-
"justify-center",
|
|
51
|
-
"items-center",
|
|
52
|
-
"w-[2.75rem]",
|
|
53
|
-
"after:size-6",
|
|
54
|
-
"after:text-white"
|
|
55
|
-
],
|
|
56
|
-
{
|
|
57
|
-
variants: {
|
|
58
|
-
status: {
|
|
59
|
-
positive: [
|
|
60
|
-
"bg-[--colorFeedbackPositive]",
|
|
61
|
-
"after:i-daikin-status-positive"
|
|
62
|
-
],
|
|
63
|
-
negative: [
|
|
64
|
-
"bg-[--colorFeedbackNegative]",
|
|
65
|
-
"after:i-daikin-status-negative"
|
|
66
|
-
],
|
|
67
|
-
warning: [
|
|
68
|
-
"bg-[--colorFeedbackWarning]",
|
|
69
|
-
"after:i-daikin-status-warning"
|
|
70
|
-
],
|
|
71
|
-
alarm: ["bg-[--colorFeedbackAlarm]", "after:i-daikin-status-alarm"],
|
|
72
|
-
information: [
|
|
73
|
-
"bg-[--colorFeedbackInformation]",
|
|
74
|
-
"after:i-daikin-status-information"
|
|
75
|
-
]
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
defaultVariants: {
|
|
79
|
-
status: "positive"
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
);
|
|
83
|
-
const cvaContent = classVarianceAuthority.cva(
|
|
84
|
-
["flex", "justify-center", "gap-1", "w-fit", "flex-none"],
|
|
85
|
-
{
|
|
86
|
-
variants: {
|
|
87
|
-
line: {
|
|
88
|
-
single: ["items-center", "flex-row"],
|
|
89
|
-
multi: ["items-start", "flex-col"]
|
|
90
|
-
}
|
|
91
|
-
},
|
|
92
|
-
defaultVariants: {
|
|
93
|
-
line: "single"
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
);
|
|
97
|
-
exports.DaikinNotification = class DaikinNotification extends lit.LitElement {
|
|
98
|
-
constructor() {
|
|
99
|
-
super(...arguments);
|
|
100
|
-
this.variant = "toast";
|
|
101
|
-
this.status = "positive";
|
|
102
|
-
this.line = "single";
|
|
103
|
-
this.open = false;
|
|
104
|
-
this.closeButton = false;
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* Call the event registered in "close".
|
|
108
|
-
*/
|
|
109
|
-
_handleClickClose() {
|
|
110
|
-
const event = new CustomEvent(events.EVENT_CLOSE);
|
|
111
|
-
this.open = false;
|
|
112
|
-
this.dispatchEvent(event);
|
|
113
|
-
}
|
|
114
|
-
render() {
|
|
115
|
-
const role = {
|
|
116
|
-
inline: "status",
|
|
117
|
-
toast: "alert"
|
|
118
|
-
}[this.variant];
|
|
119
|
-
return this.open ? lit.html`<aside
|
|
120
|
-
class=${cvaContainer({
|
|
121
|
-
variant: this.variant,
|
|
122
|
-
status: this.status
|
|
123
|
-
})}
|
|
124
|
-
role=${role}
|
|
125
|
-
>
|
|
126
|
-
<div
|
|
127
|
-
class=${cvaIconContainer({
|
|
128
|
-
status: this.status
|
|
129
|
-
})}
|
|
130
|
-
></div>
|
|
131
|
-
<div
|
|
132
|
-
class="flex justify-between items-center gap-5 p-5 text-lg flex-auto flex-shrink-0"
|
|
133
|
-
>
|
|
134
|
-
<div
|
|
135
|
-
class=${cvaContent({
|
|
136
|
-
line: this.line
|
|
137
|
-
})}
|
|
138
|
-
>
|
|
139
|
-
<div class="font-bold flex-none">
|
|
140
|
-
<slot name="title"></slot>
|
|
141
|
-
</div>
|
|
142
|
-
<div class="flex-none">
|
|
143
|
-
<slot name="description"></slot>
|
|
144
|
-
</div>
|
|
145
|
-
</div>
|
|
146
|
-
${this.closeButton ? lit.html`
|
|
147
|
-
<div class="flex items-center gap-5">
|
|
148
|
-
<button
|
|
149
|
-
aria-label="Close"
|
|
150
|
-
class="relative flex w-5 h-5 after:i-daikin-notification-close after:size-5 after:text-[#a0a0a0]"
|
|
151
|
-
@click=${this._handleClickClose}
|
|
152
|
-
></button>
|
|
153
|
-
</div>
|
|
154
|
-
` : lit.nothing}
|
|
155
|
-
</div>
|
|
156
|
-
</aside>` : lit.nothing;
|
|
157
|
-
}
|
|
158
|
-
};
|
|
159
|
-
exports.DaikinNotification.styles = lit.css`
|
|
160
|
-
${lit.unsafeCSS(tailwind.default)}
|
|
161
|
-
|
|
162
|
-
:host {
|
|
163
|
-
--colorFeedbackPositive: ${lit.unsafeCSS(variables_js.colorFeedbackPositive)};
|
|
164
|
-
--colorFeedbackWarning: ${lit.unsafeCSS(variables_js.colorFeedbackWarning)};
|
|
165
|
-
--colorFeedbackNegative: ${lit.unsafeCSS(variables_js.colorFeedbackNegative)};
|
|
166
|
-
--colorFeedbackAlarm: #f68c54;
|
|
167
|
-
--colorFeedbackInformation: #0097e0;
|
|
168
|
-
|
|
169
|
-
display: block;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
:host([variant="toast"]) {
|
|
173
|
-
width: max-content;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
:host([variant="inline"]) {
|
|
177
|
-
width: 100%;
|
|
178
|
-
}
|
|
179
|
-
`;
|
|
180
|
-
__decorateClass([
|
|
181
|
-
decorators_js.property({ type: String, reflect: true })
|
|
182
|
-
], exports.DaikinNotification.prototype, "variant", 2);
|
|
183
|
-
__decorateClass([
|
|
184
|
-
decorators_js.property({ type: String })
|
|
185
|
-
], exports.DaikinNotification.prototype, "status", 2);
|
|
186
|
-
__decorateClass([
|
|
187
|
-
decorators_js.property({ type: String })
|
|
188
|
-
], exports.DaikinNotification.prototype, "line", 2);
|
|
189
|
-
__decorateClass([
|
|
190
|
-
decorators_js.property({ type: Boolean, reflect: true })
|
|
191
|
-
], exports.DaikinNotification.prototype, "open", 2);
|
|
192
|
-
__decorateClass([
|
|
193
|
-
decorators_js.property({ type: Boolean, attribute: "close-button" })
|
|
194
|
-
], exports.DaikinNotification.prototype, "closeButton", 2);
|
|
195
|
-
exports.DaikinNotification = __decorateClass([
|
|
196
|
-
decorators_js.customElement("daikin-notification")
|
|
197
|
-
], exports.DaikinNotification);
|
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
import { LitElement, nothing } from 'lit';
|
|
2
|
-
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
3
|
-
declare const cvaContainer: (props?: ({
|
|
4
|
-
variant?: "toast" | "inline" | null | undefined;
|
|
5
|
-
status?: "alarm" | "information" | "negative" | "positive" | "warning" | null | undefined;
|
|
6
|
-
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
7
|
-
declare const cvaIconContainer: (props?: ({
|
|
8
|
-
status?: "alarm" | "information" | "negative" | "positive" | "warning" | null | undefined;
|
|
9
|
-
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
10
|
-
declare const cvaContent: (props?: ({
|
|
11
|
-
line?: "single" | "multi" | null | undefined;
|
|
12
|
-
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
13
|
-
type NotificationVariantProps = MergeVariantProps<typeof cvaContainer | typeof cvaIconContainer | typeof cvaContent>;
|
|
14
|
-
/**
|
|
15
|
-
* The notification component is a UI element used to inform users about important updates, alerts, or messages within an application.
|
|
16
|
-
*
|
|
17
|
-
* There are two variants of notification components: `toast` and `inline`.
|
|
18
|
-
*
|
|
19
|
-
* Toast notifications are brief messages that should appear temporarily at the edge of the screen, typically in the bottom or top corner.
|
|
20
|
-
* Toast notifications are ideal for conveying transient information that does not require user interaction, such as success messages, warnings, or alerts. \
|
|
21
|
-
* Please note that **currently we don't support automatic placement or stacking of toast notifications**.
|
|
22
|
-
*
|
|
23
|
-
* Inline notifications appear within the content of the application, usually embedded directly within a page or section.
|
|
24
|
-
* Inline notifications are more persistent and are used to highlight important information or status updates that should remain visible to the user until they are acknowledged or the issue is resolved.
|
|
25
|
-
*
|
|
26
|
-
* @fires close - A custom event emitted when a user clicks the close button.
|
|
27
|
-
*
|
|
28
|
-
* @slot title - A slot for the notification title content.
|
|
29
|
-
* @slot description - A slot for the notification description content.
|
|
30
|
-
*
|
|
31
|
-
* @example
|
|
32
|
-
*
|
|
33
|
-
* ```js
|
|
34
|
-
* import "@daikin-oss/design-system-web-components/components/notification/index.js";
|
|
35
|
-
* ```
|
|
36
|
-
*
|
|
37
|
-
* ```html
|
|
38
|
-
* <daikin-notification>
|
|
39
|
-
* <span slot="title">Notification title</span>
|
|
40
|
-
* <span slot="description">Notification description</span>
|
|
41
|
-
* </daikin-notification>
|
|
42
|
-
* ```
|
|
43
|
-
*/
|
|
44
|
-
export declare class DaikinNotification extends LitElement {
|
|
45
|
-
static readonly styles: import('lit').CSSResult;
|
|
46
|
-
/**
|
|
47
|
-
* Type of notification.
|
|
48
|
-
*/
|
|
49
|
-
variant: NotificationVariantProps["variant"];
|
|
50
|
-
/**
|
|
51
|
-
* Status of notification.
|
|
52
|
-
*/
|
|
53
|
-
status: NotificationVariantProps["status"];
|
|
54
|
-
/**
|
|
55
|
-
* Display in single or multiple lines.
|
|
56
|
-
*/
|
|
57
|
-
line: NotificationVariantProps["line"];
|
|
58
|
-
/**
|
|
59
|
-
* Specify the notification's open state.
|
|
60
|
-
*/
|
|
61
|
-
open: boolean;
|
|
62
|
-
/**
|
|
63
|
-
* Whether to display the close button.
|
|
64
|
-
*/
|
|
65
|
-
closeButton: boolean;
|
|
66
|
-
/**
|
|
67
|
-
* Call the event registered in "close".
|
|
68
|
-
*/
|
|
69
|
-
private _handleClickClose;
|
|
70
|
-
render(): import('lit-html').TemplateResult<1> | typeof nothing;
|
|
71
|
-
}
|
|
72
|
-
declare global {
|
|
73
|
-
interface HTMLElementTagNameMap {
|
|
74
|
-
"daikin-notification": DaikinNotification;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
export {};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const daikinNotification = require("./daikin-notification.cjs");
|
|
4
|
-
Object.defineProperty(exports, "DaikinNotification", {
|
|
5
|
-
enumerable: true,
|
|
6
|
-
get: () => daikinNotification.DaikinNotification
|
|
7
|
-
});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./daikin-notification.cjs";
|
package/dist/cjs-dev/colors.cjs
DELETED
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const variables_js = require("@daikin-oss/dds-tokens/js/daikin/Light/variables.js");
|
|
4
|
-
const DAIKIN_PRIMARY_BLUE = variables_js.colorBrandPrimary;
|
|
5
|
-
const DAIKIN_SECONDARY_BLUE = variables_js.colorBlue40;
|
|
6
|
-
const DAIKIN_DARK_GREY = variables_js.colorGrey90;
|
|
7
|
-
const DAIKIN_MEDIUM_GREY = variables_js.colorGrey70;
|
|
8
|
-
const DAIKIN_NEGATIVE = variables_js.colorRed60;
|
|
9
|
-
const DAIKIN_WARNING = variables_js.colorYellow50;
|
|
10
|
-
const DAIKIN_POSITIVE = variables_js.colorGreen60;
|
|
11
|
-
const colors = {
|
|
12
|
-
daikinBlue: {
|
|
13
|
-
50: variables_js.colorBlue10,
|
|
14
|
-
100: variables_js.colorBlue20,
|
|
15
|
-
200: variables_js.colorBlue30,
|
|
16
|
-
300: DAIKIN_SECONDARY_BLUE,
|
|
17
|
-
400: variables_js.colorBlue50,
|
|
18
|
-
500: DAIKIN_PRIMARY_BLUE,
|
|
19
|
-
600: variables_js.colorBlue70,
|
|
20
|
-
700: variables_js.colorBlue80,
|
|
21
|
-
800: variables_js.colorBlue90,
|
|
22
|
-
900: variables_js.colorBlue100,
|
|
23
|
-
DEFAULT: DAIKIN_PRIMARY_BLUE
|
|
24
|
-
},
|
|
25
|
-
daikinNeutral: {
|
|
26
|
-
50: variables_js.colorGrey10,
|
|
27
|
-
100: variables_js.colorGrey20,
|
|
28
|
-
200: variables_js.colorGrey30,
|
|
29
|
-
300: variables_js.colorGrey40,
|
|
30
|
-
400: variables_js.colorGrey50,
|
|
31
|
-
500: variables_js.colorGrey60,
|
|
32
|
-
600: DAIKIN_MEDIUM_GREY,
|
|
33
|
-
700: variables_js.colorGrey80,
|
|
34
|
-
800: DAIKIN_DARK_GREY,
|
|
35
|
-
900: variables_js.colorGrey100
|
|
36
|
-
},
|
|
37
|
-
daikinRed: {
|
|
38
|
-
50: variables_js.colorRed10,
|
|
39
|
-
100: variables_js.colorRed20,
|
|
40
|
-
200: variables_js.colorRed30,
|
|
41
|
-
300: variables_js.colorRed40,
|
|
42
|
-
400: variables_js.colorRed50,
|
|
43
|
-
500: DAIKIN_NEGATIVE,
|
|
44
|
-
600: variables_js.colorRed70,
|
|
45
|
-
700: variables_js.colorRed80,
|
|
46
|
-
800: variables_js.colorRed90,
|
|
47
|
-
900: variables_js.colorRed100,
|
|
48
|
-
1e3: variables_js.colorRed110,
|
|
49
|
-
DEFAULT: DAIKIN_NEGATIVE
|
|
50
|
-
},
|
|
51
|
-
daikinYellow: {
|
|
52
|
-
50: variables_js.colorYellow10,
|
|
53
|
-
100: variables_js.colorYellow20,
|
|
54
|
-
200: variables_js.colorYellow30,
|
|
55
|
-
300: variables_js.colorYellow40,
|
|
56
|
-
400: DAIKIN_WARNING,
|
|
57
|
-
500: variables_js.colorYellow60,
|
|
58
|
-
600: variables_js.colorYellow70,
|
|
59
|
-
700: variables_js.colorYellow80,
|
|
60
|
-
800: variables_js.colorYellow90,
|
|
61
|
-
900: variables_js.colorYellow100,
|
|
62
|
-
1e3: variables_js.colorYellow110,
|
|
63
|
-
DEFAULT: DAIKIN_WARNING
|
|
64
|
-
},
|
|
65
|
-
daikinGreen: {
|
|
66
|
-
50: variables_js.colorGreen10,
|
|
67
|
-
100: variables_js.colorGreen20,
|
|
68
|
-
200: variables_js.colorGreen30,
|
|
69
|
-
300: variables_js.colorGreen40,
|
|
70
|
-
400: variables_js.colorGreen50,
|
|
71
|
-
500: DAIKIN_POSITIVE,
|
|
72
|
-
600: variables_js.colorGreen70,
|
|
73
|
-
700: variables_js.colorGreen80,
|
|
74
|
-
800: variables_js.colorGreen90,
|
|
75
|
-
900: variables_js.colorGreen100,
|
|
76
|
-
1e3: variables_js.colorGreen110,
|
|
77
|
-
DEFAULT: DAIKIN_POSITIVE
|
|
78
|
-
}
|
|
79
|
-
};
|
|
80
|
-
exports.colors = colors;
|