@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
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { cva } from "class-variance-authority";
|
|
2
|
-
import { css, unsafeCSS,
|
|
3
|
-
import { property, query
|
|
2
|
+
import { css, unsafeCSS, html } from "lit";
|
|
3
|
+
import { property, query } from "lit/decorators.js";
|
|
4
|
+
import { DDSElement } from "../../base/dds-element.js";
|
|
5
|
+
import { ddsElement } from "../../base/decorators.js";
|
|
6
|
+
import "../../base/define.js";
|
|
4
7
|
import tailwindStyles from "../../tailwind.css.js";
|
|
5
8
|
var __defProp = Object.defineProperty;
|
|
6
9
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -15,27 +18,25 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
15
18
|
const cvaTab = cva(
|
|
16
19
|
[
|
|
17
20
|
"flex",
|
|
18
|
-
"
|
|
19
|
-
"min-w-14",
|
|
20
|
-
"h-10",
|
|
21
|
+
"size-full",
|
|
21
22
|
"items-center",
|
|
22
23
|
"justify-center",
|
|
23
24
|
"px-4",
|
|
24
25
|
"pt-2",
|
|
25
26
|
"pb-3",
|
|
27
|
+
"leading-[130%]",
|
|
26
28
|
"text-center",
|
|
27
29
|
"font-daikinSerif",
|
|
28
30
|
"tracking-wide",
|
|
29
|
-
"whitespace-nowrap",
|
|
30
31
|
"relative",
|
|
31
32
|
"focus-visible:outline-none",
|
|
32
33
|
"focus-visible:before:absolute",
|
|
33
|
-
"focus-visible:before:-inset-
|
|
34
|
+
"focus-visible:before:-inset-1",
|
|
34
35
|
"focus-visible:before:z-[1]",
|
|
35
36
|
"focus-visible:before:border",
|
|
36
37
|
"focus-visible:before:border-2",
|
|
37
|
-
"focus-visible:before:border-
|
|
38
|
-
"disabled:text-
|
|
38
|
+
"focus-visible:before:border-ddt-color-common-border-focus",
|
|
39
|
+
"disabled:text-ddt-color-common-disabled",
|
|
39
40
|
"after:absolute",
|
|
40
41
|
"after:inset-0",
|
|
41
42
|
"after:top-auto"
|
|
@@ -44,32 +45,33 @@ const cvaTab = cva(
|
|
|
44
45
|
variants: {
|
|
45
46
|
active: {
|
|
46
47
|
false: [
|
|
47
|
-
"enabled:text-
|
|
48
|
-
"enabled:hover:text-
|
|
49
|
-
"enabled:hover:bg-
|
|
50
|
-
"enabled:active:text-
|
|
51
|
-
"enabled:active:bg-
|
|
48
|
+
"enabled:text-ddt-color-common-neutral-default",
|
|
49
|
+
"enabled:hover:text-ddt-color-common-neutral-hover",
|
|
50
|
+
"enabled:hover:bg-ddt-color-common-surface-hover",
|
|
51
|
+
"enabled:active:text-ddt-color-common-neutral-press",
|
|
52
|
+
"enabled:active:bg-ddt-color-common-surface-press",
|
|
52
53
|
"after:h-[1px]",
|
|
53
|
-
"after:bg-
|
|
54
|
+
"after:bg-ddt-color-divider"
|
|
54
55
|
],
|
|
55
56
|
true: [
|
|
56
57
|
"font-bold",
|
|
57
|
-
"enabled:text-
|
|
58
|
-
"enabled:hover:bg-
|
|
59
|
-
"enabled:active:bg-
|
|
58
|
+
"enabled:text-ddt-color-common-brand-default",
|
|
59
|
+
"enabled:hover:bg-ddt-color-common-surface-brand-hover",
|
|
60
|
+
"enabled:active:bg-ddt-color-common-surface-brand-press",
|
|
60
61
|
"after:h-1",
|
|
61
|
-
"enabled:after:bg-
|
|
62
|
-
"disabled:after:bg-
|
|
62
|
+
"enabled:after:bg-ddt-color-common-brand-default",
|
|
63
|
+
"disabled:after:bg-ddt-color-common-disabled"
|
|
63
64
|
]
|
|
64
65
|
}
|
|
65
66
|
}
|
|
66
67
|
}
|
|
67
68
|
);
|
|
68
|
-
let DaikinTab = class extends
|
|
69
|
+
let DaikinTab = class extends DDSElement {
|
|
69
70
|
constructor() {
|
|
70
71
|
super();
|
|
71
72
|
this.value = "";
|
|
72
73
|
this.disabled = false;
|
|
74
|
+
this.sizing = "stretch";
|
|
73
75
|
this.active = false;
|
|
74
76
|
this.addEventListener("click", (event) => {
|
|
75
77
|
if (this.disabled) {
|
|
@@ -104,8 +106,18 @@ DaikinTab.styles = css`
|
|
|
104
106
|
|
|
105
107
|
:host {
|
|
106
108
|
display: block;
|
|
109
|
+
white-space: nowrap;
|
|
110
|
+
min-width: fit-content;
|
|
111
|
+
height: 2.5rem;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
:host([sizing="stretch"]) {
|
|
107
115
|
width: 100%;
|
|
108
116
|
}
|
|
117
|
+
|
|
118
|
+
:host([sizing="fit"]) {
|
|
119
|
+
width: fit-content;
|
|
120
|
+
}
|
|
109
121
|
`;
|
|
110
122
|
__decorateClass([
|
|
111
123
|
property({ type: String, reflect: true })
|
|
@@ -113,6 +125,9 @@ __decorateClass([
|
|
|
113
125
|
__decorateClass([
|
|
114
126
|
property({ type: Boolean, reflect: true })
|
|
115
127
|
], DaikinTab.prototype, "disabled", 2);
|
|
128
|
+
__decorateClass([
|
|
129
|
+
property({ type: String, reflect: true })
|
|
130
|
+
], DaikinTab.prototype, "sizing", 2);
|
|
116
131
|
__decorateClass([
|
|
117
132
|
property({ type: Boolean, reflect: true })
|
|
118
133
|
], DaikinTab.prototype, "active", 2);
|
|
@@ -120,7 +135,7 @@ __decorateClass([
|
|
|
120
135
|
query("button")
|
|
121
136
|
], DaikinTab.prototype, "_button", 2);
|
|
122
137
|
DaikinTab = __decorateClass([
|
|
123
|
-
|
|
138
|
+
ddsElement("daikin-tab")
|
|
124
139
|
], DaikinTab);
|
|
125
140
|
export {
|
|
126
141
|
DaikinTab
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DDSElement } from "../../base/index.js";
|
|
2
2
|
import { ARIARole } from "../../lit-analyzer-types.js";
|
|
3
3
|
/**
|
|
4
4
|
* The tab panels component is a child element within the `daikin-tabs` that controls the display of the content panels associated with each tab.
|
|
@@ -29,7 +29,7 @@ import { ARIARole } from "../../lit-analyzer-types.js";
|
|
|
29
29
|
* </daikin-tab-panels>
|
|
30
30
|
* ```
|
|
31
31
|
*/
|
|
32
|
-
export declare class DaikinTabPanels extends
|
|
32
|
+
export declare class DaikinTabPanels extends DDSElement {
|
|
33
33
|
static readonly styles: import('lit').CSSResult;
|
|
34
34
|
/**
|
|
35
35
|
* The panel to be displayed.
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
import { css, unsafeCSS,
|
|
2
|
-
import { property
|
|
1
|
+
import { css, unsafeCSS, html, nothing } from "lit";
|
|
2
|
+
import { property } from "lit/decorators.js";
|
|
3
3
|
import { repeat } from "lit/directives/repeat.js";
|
|
4
|
+
import { DDSElement } from "../../base/dds-element.js";
|
|
5
|
+
import { ddsElement } from "../../base/decorators.js";
|
|
6
|
+
import "../../base/define.js";
|
|
4
7
|
import tailwindStyles from "../../tailwind.css.js";
|
|
5
8
|
var __defProp = Object.defineProperty;
|
|
6
9
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -12,7 +15,7 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
12
15
|
if (kind && result) __defProp(target, key, result);
|
|
13
16
|
return result;
|
|
14
17
|
};
|
|
15
|
-
let DaikinTabPanels = class extends
|
|
18
|
+
let DaikinTabPanels = class extends DDSElement {
|
|
16
19
|
constructor() {
|
|
17
20
|
super(...arguments);
|
|
18
21
|
this.value = "";
|
|
@@ -24,8 +27,7 @@ let DaikinTabPanels = class extends LitElement {
|
|
|
24
27
|
this.panels,
|
|
25
28
|
(value) => html`<div
|
|
26
29
|
class=${this.value === value ? "contents" : "hidden"}
|
|
27
|
-
role=${
|
|
28
|
-
this.panelRole ?? nothing}
|
|
30
|
+
role=${this.panelRole ?? nothing}
|
|
29
31
|
?hidden=${this.value !== value}
|
|
30
32
|
>
|
|
31
33
|
<slot name=${`panel:${value}`}></slot>
|
|
@@ -49,7 +51,7 @@ __decorateClass([
|
|
|
49
51
|
property({ type: String, reflect: true, attribute: "panel-role" })
|
|
50
52
|
], DaikinTabPanels.prototype, "panelRole", 2);
|
|
51
53
|
DaikinTabPanels = __decorateClass([
|
|
52
|
-
|
|
54
|
+
ddsElement("daikin-tab-panels")
|
|
53
55
|
], DaikinTabPanels);
|
|
54
56
|
export {
|
|
55
57
|
DaikinTabPanels
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PropertyValues } from 'lit';
|
|
2
|
+
import { DDSElement } from "../../base/index.js";
|
|
2
3
|
export type HeaderType<T extends string = string> = {
|
|
3
4
|
key: T;
|
|
4
5
|
label: string;
|
|
@@ -26,6 +27,12 @@ export type HeaderType<T extends string = string> = {
|
|
|
26
27
|
*
|
|
27
28
|
* @example
|
|
28
29
|
*
|
|
30
|
+
* ```js
|
|
31
|
+
* import "@daikin-oss/design-system-web-components/components/table/index.js";
|
|
32
|
+
* import "@daikin-oss/design-system-web-components/components/table-cell/index.js";
|
|
33
|
+
* import "@daikin-oss/design-system-web-components/components/table-header-cell/index.js";
|
|
34
|
+
* ```
|
|
35
|
+
*
|
|
29
36
|
* ```html
|
|
30
37
|
* <daikin-table
|
|
31
38
|
* .headers="[
|
|
@@ -61,7 +68,7 @@ export type HeaderType<T extends string = string> = {
|
|
|
61
68
|
*/
|
|
62
69
|
export declare class DaikinTable<T extends {
|
|
63
70
|
id: string;
|
|
64
|
-
} = any> extends
|
|
71
|
+
} = any> extends DDSElement {
|
|
65
72
|
static readonly styles: import('lit').CSSResult;
|
|
66
73
|
/**
|
|
67
74
|
* Headers of the table.
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { cva } from "class-variance-authority";
|
|
2
|
-
import { css, unsafeCSS,
|
|
3
|
-
import { property, state
|
|
2
|
+
import { css, unsafeCSS, html, nothing } from "lit";
|
|
3
|
+
import { property, state } from "lit/decorators.js";
|
|
4
4
|
import { ifDefined } from "lit/directives/if-defined.js";
|
|
5
5
|
import { repeat } from "lit/directives/repeat.js";
|
|
6
|
+
import { DDSElement } from "../../base/dds-element.js";
|
|
7
|
+
import { ddsElement } from "../../base/decorators.js";
|
|
8
|
+
import "../../base/define.js";
|
|
6
9
|
import tailwindStyles from "../../tailwind.css.js";
|
|
7
10
|
import "../checkbox/daikin-checkbox.js";
|
|
8
11
|
import "../table-cell/daikin-table-cell.js";
|
|
@@ -21,25 +24,25 @@ const defaultSort = (a, b, key) => String(a[key]).localeCompare(String(b[key]));
|
|
|
21
24
|
const cvaRow = cva(
|
|
22
25
|
[
|
|
23
26
|
"border-b",
|
|
24
|
-
"border-b-
|
|
27
|
+
"border-b-ddt-color-divider",
|
|
25
28
|
"focus-visible:outline",
|
|
26
29
|
"focus-visible:outline-2",
|
|
27
30
|
"focus-visible:-outline-offset-2",
|
|
28
|
-
"focus-visible:outline-
|
|
31
|
+
"focus-visible:outline-ddt-color-common-border-focus"
|
|
29
32
|
],
|
|
30
33
|
{
|
|
31
34
|
variants: {
|
|
32
35
|
selected: {
|
|
33
|
-
false: ["hover:bg-
|
|
36
|
+
false: ["hover:bg-ddt-color-common-surface-hover"],
|
|
34
37
|
true: [
|
|
35
|
-
"bg-
|
|
36
|
-
"hover:bg-
|
|
38
|
+
"bg-ddt-color-common-surface-selected-default",
|
|
39
|
+
"hover:bg-ddt-color-common-surface-selected-hover"
|
|
37
40
|
]
|
|
38
41
|
}
|
|
39
42
|
}
|
|
40
43
|
}
|
|
41
44
|
);
|
|
42
|
-
let DaikinTable = class extends
|
|
45
|
+
let DaikinTable = class extends DDSElement {
|
|
43
46
|
constructor() {
|
|
44
47
|
super(...arguments);
|
|
45
48
|
this.headers = [];
|
|
@@ -140,9 +143,9 @@ let DaikinTable = class extends LitElement {
|
|
|
140
143
|
</td>`
|
|
141
144
|
);
|
|
142
145
|
return html`<div class="flex flex-col gap-6 w-full font-daikinSerif">
|
|
143
|
-
<table class="w-full
|
|
146
|
+
<table class="w-full">
|
|
144
147
|
<thead>
|
|
145
|
-
<tr class="border-b border-b-
|
|
148
|
+
<tr class="border-b border-b-ddt-color-divider">
|
|
146
149
|
${this.selectable ? html`<td class="w-12 p-0">
|
|
147
150
|
<span
|
|
148
151
|
class="flex items-center justify-center size-full min-h-12"
|
|
@@ -242,7 +245,7 @@ __decorateClass([
|
|
|
242
245
|
state()
|
|
243
246
|
], DaikinTable.prototype, "_currentView", 2);
|
|
244
247
|
DaikinTable = __decorateClass([
|
|
245
|
-
|
|
248
|
+
ddsElement("daikin-table")
|
|
246
249
|
], DaikinTable);
|
|
247
250
|
export {
|
|
248
251
|
DaikinTable
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DDSElement } from "../../base/index.js";
|
|
2
2
|
import { MergeVariantProps } from "../../type-utils.js";
|
|
3
3
|
declare const cvaCell: (props?: ({
|
|
4
4
|
alignment?: "right" | "left" | "center" | null | undefined;
|
|
@@ -17,6 +17,10 @@ type TableCellVariantProps = MergeVariantProps<typeof cvaCell>;
|
|
|
17
17
|
*
|
|
18
18
|
* @example
|
|
19
19
|
*
|
|
20
|
+
* ```js
|
|
21
|
+
* import "@daikin-oss/design-system-web-components/components/table-cell/index.js";
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
20
24
|
* ```html
|
|
21
25
|
* <daikin-table-cell slot="cell:key:id">
|
|
22
26
|
* Table cell label
|
|
@@ -24,7 +28,7 @@ type TableCellVariantProps = MergeVariantProps<typeof cvaCell>;
|
|
|
24
28
|
* </daikin-table-cell>
|
|
25
29
|
* ```
|
|
26
30
|
*/
|
|
27
|
-
export declare class DaikinTableCell extends
|
|
31
|
+
export declare class DaikinTableCell extends DDSElement {
|
|
28
32
|
static readonly styles: import('lit').CSSResult;
|
|
29
33
|
/**
|
|
30
34
|
* Specify the direction of cell alignment.
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { cva } from "class-variance-authority";
|
|
2
|
-
import { css, unsafeCSS,
|
|
3
|
-
import { property
|
|
2
|
+
import { css, unsafeCSS, html } from "lit";
|
|
3
|
+
import { property } from "lit/decorators.js";
|
|
4
|
+
import { DDSElement } from "../../base/dds-element.js";
|
|
5
|
+
import { ddsElement } from "../../base/decorators.js";
|
|
6
|
+
import "../../base/define.js";
|
|
4
7
|
import tailwindStyles from "../../tailwind.css.js";
|
|
5
8
|
var __defProp = Object.defineProperty;
|
|
6
9
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -22,7 +25,7 @@ const cvaCell = cva(
|
|
|
22
25
|
"min-h-12",
|
|
23
26
|
"px-4",
|
|
24
27
|
"py-3",
|
|
25
|
-
"text-
|
|
28
|
+
"text-ddt-color-common-text-primary"
|
|
26
29
|
],
|
|
27
30
|
{
|
|
28
31
|
variants: {
|
|
@@ -34,7 +37,7 @@ const cvaCell = cva(
|
|
|
34
37
|
}
|
|
35
38
|
}
|
|
36
39
|
);
|
|
37
|
-
let DaikinTableCell = class extends
|
|
40
|
+
let DaikinTableCell = class extends DDSElement {
|
|
38
41
|
constructor() {
|
|
39
42
|
super(...arguments);
|
|
40
43
|
this.alignment = "left";
|
|
@@ -44,7 +47,7 @@ let DaikinTableCell = class extends LitElement {
|
|
|
44
47
|
<slot></slot>
|
|
45
48
|
<slot
|
|
46
49
|
name="subtitle"
|
|
47
|
-
class="text-
|
|
50
|
+
class="text-ddt-color-common-text-secondary text-xs"
|
|
48
51
|
></slot>
|
|
49
52
|
</span>`;
|
|
50
53
|
}
|
|
@@ -62,7 +65,7 @@ __decorateClass([
|
|
|
62
65
|
property({ type: String, reflect: true })
|
|
63
66
|
], DaikinTableCell.prototype, "alignment", 2);
|
|
64
67
|
DaikinTableCell = __decorateClass([
|
|
65
|
-
|
|
68
|
+
ddsElement("daikin-table-cell")
|
|
66
69
|
], DaikinTableCell);
|
|
67
70
|
export {
|
|
68
71
|
DaikinTableCell
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DDSElement } from "../../base/index.js";
|
|
2
2
|
import { MergeVariantProps } from "../../type-utils.js";
|
|
3
3
|
declare const cvaHeaderCell: (props?: ({
|
|
4
4
|
alignment?: "right" | "left" | "center" | null | undefined;
|
|
@@ -22,13 +22,17 @@ type TableHeaderCellVariantProps = MergeVariantProps<typeof cvaHeaderCell>;
|
|
|
22
22
|
*
|
|
23
23
|
* @example
|
|
24
24
|
*
|
|
25
|
+
* ```js
|
|
26
|
+
* import "@daikin-oss/design-system-web-components/components/table-header-cell/index.js";
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
25
29
|
* ```html
|
|
26
30
|
* <daikin-table-header-cell slot="header:key">
|
|
27
31
|
* Table header cell label
|
|
28
32
|
* </daikin-table-header-cell>
|
|
29
33
|
* ```
|
|
30
34
|
*/
|
|
31
|
-
export declare class DaikinTableHeaderCell extends
|
|
35
|
+
export declare class DaikinTableHeaderCell extends DDSElement {
|
|
32
36
|
static readonly styles: import('lit').CSSResult;
|
|
33
37
|
/**
|
|
34
38
|
* Alignment of cell contents.
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { cva } from "class-variance-authority";
|
|
2
|
-
import { css, unsafeCSS,
|
|
3
|
-
import { property
|
|
2
|
+
import { css, unsafeCSS, html } from "lit";
|
|
3
|
+
import { property } from "lit/decorators.js";
|
|
4
|
+
import { DDSElement } from "../../base/dds-element.js";
|
|
5
|
+
import { ddsElement } from "../../base/decorators.js";
|
|
6
|
+
import "../../base/define.js";
|
|
4
7
|
import tailwindStyles from "../../tailwind.css.js";
|
|
5
8
|
var __defProp = Object.defineProperty;
|
|
6
9
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -21,7 +24,7 @@ const cvaHeaderCell = cva(
|
|
|
21
24
|
"min-h-12",
|
|
22
25
|
"px-4",
|
|
23
26
|
"py-3",
|
|
24
|
-
"text-
|
|
27
|
+
"text-ddt-color-common-text-primary",
|
|
25
28
|
"font-bold"
|
|
26
29
|
],
|
|
27
30
|
{
|
|
@@ -34,22 +37,21 @@ const cvaHeaderCell = cva(
|
|
|
34
37
|
sortable: {
|
|
35
38
|
false: [],
|
|
36
39
|
true: [
|
|
37
|
-
"hover:bg-
|
|
38
|
-
"active:bg-
|
|
40
|
+
"hover:bg-ddt-color-common-surface-hover",
|
|
41
|
+
"active:bg-ddt-color-common-surface-press",
|
|
39
42
|
"focus-visible:outline",
|
|
40
43
|
"focus-visible:outline-2",
|
|
41
44
|
"focus-visible:-outline-offset-2",
|
|
42
|
-
"focus-visible:outline-
|
|
45
|
+
"focus-visible:outline-ddt-color-common-border-focus",
|
|
43
46
|
"after:flex-none",
|
|
44
47
|
"after:size-6",
|
|
45
|
-
"after:text-system-element-text-primary",
|
|
46
48
|
"after:i-daikin-sort"
|
|
47
49
|
]
|
|
48
50
|
}
|
|
49
51
|
}
|
|
50
52
|
}
|
|
51
53
|
);
|
|
52
|
-
let DaikinTableHeaderCell = class extends
|
|
54
|
+
let DaikinTableHeaderCell = class extends DDSElement {
|
|
53
55
|
constructor() {
|
|
54
56
|
super(...arguments);
|
|
55
57
|
this.alignment = "left";
|
|
@@ -87,7 +89,7 @@ __decorateClass([
|
|
|
87
89
|
property({ type: Boolean, reflect: true })
|
|
88
90
|
], DaikinTableHeaderCell.prototype, "sortable", 2);
|
|
89
91
|
DaikinTableHeaderCell = __decorateClass([
|
|
90
|
-
|
|
92
|
+
ddsElement("daikin-table-header-cell")
|
|
91
93
|
], DaikinTableHeaderCell);
|
|
92
94
|
export {
|
|
93
95
|
DaikinTableHeaderCell
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PropertyValues } from 'lit';
|
|
2
|
+
import { DDSElement } from "../../base/index.js";
|
|
2
3
|
/**
|
|
3
4
|
* The tab group component manages a group of tabs and switches the content displayed using the panel switcher component.
|
|
4
5
|
* It allows users to navigate between different sections of content by clicking on individual tabs.
|
|
@@ -38,12 +39,16 @@ import { LitElement, PropertyValues } from 'lit';
|
|
|
38
39
|
* </daikin-tabs>
|
|
39
40
|
* ```
|
|
40
41
|
*/
|
|
41
|
-
export declare class DaikinTabs extends
|
|
42
|
+
export declare class DaikinTabs extends DDSElement {
|
|
42
43
|
static readonly styles: import('lit').CSSResult;
|
|
43
44
|
/**
|
|
44
45
|
* `value` of the currently selected tab (`daikin-tab`).
|
|
45
46
|
*/
|
|
46
47
|
value: string;
|
|
48
|
+
/**
|
|
49
|
+
* Whether the tab width stretches or fits.
|
|
50
|
+
*/
|
|
51
|
+
sizing: "stretch" | "fit";
|
|
47
52
|
/**
|
|
48
53
|
* Tab(s) in the default slot.
|
|
49
54
|
*/
|
|
@@ -77,6 +82,7 @@ export declare class DaikinTabs extends LitElement {
|
|
|
77
82
|
* - the default slot's content is changed.
|
|
78
83
|
*/
|
|
79
84
|
private _updateTabs;
|
|
85
|
+
private _updateTabStyle;
|
|
80
86
|
/**
|
|
81
87
|
* Updates `daikin-tab-panels` component(s)' properties in the slot.
|
|
82
88
|
*
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { css, unsafeCSS,
|
|
2
|
-
import { property, queryAssignedElements
|
|
1
|
+
import { css, unsafeCSS, html } from "lit";
|
|
2
|
+
import { property, queryAssignedElements } from "lit/decorators.js";
|
|
3
|
+
import { DDSElement } from "../../base/dds-element.js";
|
|
4
|
+
import { ddsElement } from "../../base/decorators.js";
|
|
5
|
+
import "../../base/define.js";
|
|
3
6
|
import tailwindStyles from "../../tailwind.css.js";
|
|
4
7
|
import { scrollIntoViewOnlyParent } from "./scroller.js";
|
|
5
8
|
var __defProp = Object.defineProperty;
|
|
@@ -12,10 +15,11 @@ var __decorateClass = (decorators, target, key, kind) => {
|
|
|
12
15
|
if (kind && result) __defProp(target, key, result);
|
|
13
16
|
return result;
|
|
14
17
|
};
|
|
15
|
-
let DaikinTabs = class extends
|
|
18
|
+
let DaikinTabs = class extends DDSElement {
|
|
16
19
|
constructor() {
|
|
17
20
|
super(...arguments);
|
|
18
21
|
this.value = "";
|
|
22
|
+
this.sizing = "stretch";
|
|
19
23
|
}
|
|
20
24
|
/**
|
|
21
25
|
* Emits `beforechange` event if necessary and returns whether we should proceed.
|
|
@@ -85,6 +89,12 @@ let DaikinTabs = class extends LitElement {
|
|
|
85
89
|
}
|
|
86
90
|
scrollIntoViewOnlyParent(selectedTab);
|
|
87
91
|
}
|
|
92
|
+
_updateTabStyle() {
|
|
93
|
+
const tabs = this._tabs;
|
|
94
|
+
for (const tab of tabs) {
|
|
95
|
+
tab.sizing = this.sizing;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
88
98
|
/**
|
|
89
99
|
* Updates `daikin-tab-panels` component(s)' properties in the slot.
|
|
90
100
|
*
|
|
@@ -168,7 +178,7 @@ let DaikinTabs = class extends LitElement {
|
|
|
168
178
|
render() {
|
|
169
179
|
return html`
|
|
170
180
|
<div
|
|
171
|
-
class="flex flex-nowrap w-full p-
|
|
181
|
+
class="flex flex-nowrap w-full p-1 overflow-auto relative before:absolute before:h-[1px] before:inset-1 before:top-auto before:bg-ddt-color-divider"
|
|
172
182
|
role="tablist"
|
|
173
183
|
@click=${this._handleTabClick}
|
|
174
184
|
@keydown=${this._handleKeyDown}
|
|
@@ -179,11 +189,13 @@ let DaikinTabs = class extends LitElement {
|
|
|
179
189
|
`;
|
|
180
190
|
}
|
|
181
191
|
updated(changedProperties) {
|
|
182
|
-
if (
|
|
183
|
-
|
|
192
|
+
if (changedProperties.has("value")) {
|
|
193
|
+
this._updateTabs();
|
|
194
|
+
this._updateTabPanels();
|
|
195
|
+
}
|
|
196
|
+
if (changedProperties.has("sizing")) {
|
|
197
|
+
this._updateTabStyle();
|
|
184
198
|
}
|
|
185
|
-
this._updateTabs();
|
|
186
|
-
this._updateTabPanels();
|
|
187
199
|
}
|
|
188
200
|
};
|
|
189
201
|
DaikinTabs.styles = css`
|
|
@@ -197,6 +209,9 @@ DaikinTabs.styles = css`
|
|
|
197
209
|
__decorateClass([
|
|
198
210
|
property({ type: String, reflect: true })
|
|
199
211
|
], DaikinTabs.prototype, "value", 2);
|
|
212
|
+
__decorateClass([
|
|
213
|
+
property({ type: String, reflect: true })
|
|
214
|
+
], DaikinTabs.prototype, "sizing", 2);
|
|
200
215
|
__decorateClass([
|
|
201
216
|
queryAssignedElements({ selector: "daikin-tab" })
|
|
202
217
|
], DaikinTabs.prototype, "_tabs", 2);
|
|
@@ -204,7 +219,7 @@ __decorateClass([
|
|
|
204
219
|
queryAssignedElements({ slot: "panels", selector: "daikin-tab-panels" })
|
|
205
220
|
], DaikinTabs.prototype, "_panelSwitchers", 2);
|
|
206
221
|
DaikinTabs = __decorateClass([
|
|
207
|
-
|
|
222
|
+
ddsElement("daikin-tabs")
|
|
208
223
|
], DaikinTabs);
|
|
209
224
|
export {
|
|
210
225
|
DaikinTabs
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PropertyValues } from 'lit';
|
|
2
|
+
import { DDSElement } from "../../base/index.js";
|
|
2
3
|
import { DaikinInputGroup } from "../input-group/index.js";
|
|
3
4
|
/**
|
|
4
5
|
* The text area component is designed for multiline text input, similar to the HTML `<textarea>` tag.
|
|
@@ -23,7 +24,7 @@ import { DaikinInputGroup } from "../input-group/index.js";
|
|
|
23
24
|
* <daikin-text-area name="name"></daikin-text-area>
|
|
24
25
|
* ```
|
|
25
26
|
*/
|
|
26
|
-
export declare class DaikinTextArea extends
|
|
27
|
+
export declare class DaikinTextArea extends DDSElement {
|
|
27
28
|
static readonly styles: import('lit').CSSResult;
|
|
28
29
|
static readonly formAssociated = true;
|
|
29
30
|
private _internals;
|
|
@@ -73,6 +74,10 @@ export declare class DaikinTextArea extends LitElement {
|
|
|
73
74
|
private _handleInput;
|
|
74
75
|
render(): import('lit-html').TemplateResult<1>;
|
|
75
76
|
updated(changedProperties: PropertyValues<this>): void;
|
|
77
|
+
/**
|
|
78
|
+
* This method is used by `daikin-input-group` to reflect it's attributes to this component.
|
|
79
|
+
* @private
|
|
80
|
+
*/
|
|
76
81
|
reflectInputGroup(inputGroup: DaikinInputGroup): void;
|
|
77
82
|
}
|
|
78
83
|
declare global {
|