@daikin-oss/design-system-web-components 1.1.0 → 1.3.0-next.2
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 +145 -0
- package/LICENSE +1 -1
- package/dist/cjs/base/dds-element.cjs +1 -1
- package/dist/cjs/base/dds-form-element.cjs +139 -0
- package/dist/cjs/base/dds-form-element.d.cts +100 -0
- package/dist/cjs/components/accordion-item/daikin-accordion-item.cjs +7 -3
- package/dist/cjs/components/avatar/daikin-avatar.cjs +1 -0
- package/dist/cjs/components/avatar/daikin-avatar.d.cts +3 -0
- package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.cjs +2 -0
- package/dist/cjs/components/button/daikin-button.cjs +35 -13
- package/dist/cjs/components/button/daikin-button.d.cts +20 -10
- package/dist/cjs/components/calendar/daikin-calendar.cjs +549 -0
- package/dist/cjs/components/calendar/daikin-calendar.d.cts +87 -0
- package/dist/cjs/components/calendar/index.cjs +7 -0
- package/dist/cjs/components/calendar/index.d.cts +1 -0
- package/dist/cjs/components/card/daikin-card.cjs +1 -1
- package/dist/cjs/components/card-header/daikin-card-header.cjs +1 -1
- package/dist/cjs/components/carousel/daikin-carousel.cjs +7 -3
- package/dist/cjs/components/carousel-item/daikin-carousel-item.cjs +2 -2
- package/dist/cjs/components/checkbox/daikin-checkbox.cjs +12 -16
- package/dist/cjs/components/checkbox/daikin-checkbox.d.cts +9 -12
- package/dist/cjs/components/checkbox-group/daikin-checkbox-group.cjs +94 -0
- package/dist/cjs/components/checkbox-group/daikin-checkbox-group.d.cts +69 -0
- package/dist/cjs/components/checkbox-group/index.cjs +7 -0
- package/dist/cjs/components/checkbox-group/index.d.cts +1 -0
- package/dist/cjs/components/chip/daikin-chip.cjs +106 -0
- package/dist/cjs/components/chip/daikin-chip.d.cts +36 -0
- package/dist/cjs/components/chip/index.cjs +7 -0
- package/dist/cjs/components/chip/index.d.cts +1 -0
- package/dist/cjs/components/combobox/daikin-combobox.cjs +604 -0
- package/dist/cjs/components/combobox/daikin-combobox.d.cts +134 -0
- package/dist/cjs/components/combobox/index.cjs +8 -0
- package/dist/cjs/components/combobox/index.d.cts +1 -0
- package/dist/cjs/components/date-picker/daikin-date-picker.cjs +626 -0
- package/dist/cjs/components/date-picker/daikin-date-picker.d.cts +106 -0
- package/dist/cjs/components/date-picker/index.cjs +7 -0
- package/dist/cjs/components/date-picker/index.d.cts +1 -0
- package/dist/cjs/components/dropdown/daikin-dropdown.cjs +91 -57
- package/dist/cjs/components/dropdown/daikin-dropdown.d.cts +7 -15
- package/dist/cjs/components/icon/daikin-icon.cjs +117 -12
- package/dist/cjs/components/icon/daikin-icon.d.cts +129 -9
- package/dist/cjs/components/icon/icons.json.cjs +6 -2
- package/dist/cjs/components/icon/icons.json.d.cts +16 -16
- package/dist/cjs/components/icon-button/daikin-icon-button.cjs +30 -4
- package/dist/cjs/components/icon-button/daikin-icon-button.d.cts +20 -2
- package/dist/cjs/components/index.cjs +81 -0
- package/dist/cjs/components/index.d.cts +14 -0
- package/dist/cjs/components/inline-notification/daikin-inline-notification.cjs +13 -18
- package/dist/cjs/components/inline-notification/daikin-inline-notification.d.cts +3 -1
- package/dist/cjs/components/input-group/daikin-input-group.cjs +4 -4
- package/dist/cjs/components/input-group/daikin-input-group.d.cts +50 -1
- package/dist/cjs/components/list/daikin-list.cjs +75 -3
- package/dist/cjs/components/list/daikin-list.d.cts +16 -0
- package/dist/cjs/components/list-item/daikin-list-item.cjs +27 -7
- package/dist/cjs/components/list-item/daikin-list-item.d.cts +9 -3
- package/dist/cjs/components/loading/daikin-loading.cjs +1 -1
- package/dist/cjs/components/loading/daikin-loading.d.cts +1 -0
- package/dist/cjs/components/logo/daikin-logo.cjs +105 -0
- package/dist/cjs/components/logo/daikin-logo.d.cts +54 -0
- package/dist/cjs/components/logo/index.cjs +7 -0
- package/dist/cjs/components/logo/index.d.cts +1 -0
- package/dist/cjs/components/menu/daikin-menu.cjs +205 -0
- package/dist/cjs/components/menu/daikin-menu.d.cts +89 -0
- package/dist/cjs/components/menu/index.cjs +7 -0
- package/dist/cjs/components/menu/index.d.cts +1 -0
- package/dist/cjs/components/modal/daikin-modal.cjs +115 -0
- package/dist/cjs/components/modal/daikin-modal.d.cts +61 -0
- package/dist/cjs/components/modal/index.cjs +7 -0
- package/dist/cjs/components/modal/index.d.cts +1 -0
- package/dist/cjs/components/modal-footer/daikin-modal-footer.cjs +40 -0
- package/dist/cjs/components/modal-footer/daikin-modal-footer.d.cts +33 -0
- package/dist/cjs/components/modal-footer/index.cjs +7 -0
- package/dist/cjs/components/modal-footer/index.d.cts +1 -0
- package/dist/cjs/components/modal-header/daikin-modal-header.cjs +96 -0
- package/dist/cjs/components/modal-header/daikin-modal-header.d.cts +43 -0
- package/dist/cjs/components/modal-header/index.cjs +7 -0
- package/dist/cjs/components/modal-header/index.d.cts +1 -0
- package/dist/cjs/components/progress-bar/daikin-progress-bar.cjs +5 -5
- package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.cjs +1 -1
- package/dist/cjs/components/radio/daikin-radio.cjs +4 -13
- package/dist/cjs/components/radio/daikin-radio.d.cts +2 -12
- package/dist/cjs/components/radio-group/daikin-radio-group.cjs +1 -1
- package/dist/cjs/components/radio-group/daikin-radio-group.d.cts +2 -1
- package/dist/cjs/components/select/daikin-select.cjs +6 -1
- package/dist/cjs/components/slider/daikin-slider.cjs +263 -0
- package/dist/cjs/components/slider/daikin-slider.d.cts +67 -0
- package/dist/cjs/components/slider/index.cjs +7 -0
- package/dist/cjs/components/slider/index.d.cts +1 -0
- package/dist/cjs/components/slider/slider-utils.cjs +57 -0
- package/dist/cjs/components/slider/slider-utils.d.cts +37 -0
- package/dist/cjs/components/tab/daikin-tab.cjs +1 -0
- package/dist/cjs/components/table/daikin-table.cjs +74 -15
- package/dist/cjs/components/table/daikin-table.d.cts +72 -34
- package/dist/cjs/components/table-cell/daikin-table-cell.cjs +2 -1
- package/dist/cjs/components/table-cell/daikin-table-cell.d.cts +1 -1
- package/dist/cjs/components/table-header-cell/daikin-table-header-cell.cjs +31 -6
- package/dist/cjs/components/table-header-cell/daikin-table-header-cell.d.cts +8 -1
- package/dist/cjs/components/tabs/daikin-tabs.cjs +2 -2
- package/dist/cjs/components/text-area/daikin-text-area.cjs +4 -13
- package/dist/cjs/components/text-area/daikin-text-area.d.cts +2 -12
- package/dist/cjs/components/text-field/daikin-text-field.cjs +289 -57
- package/dist/cjs/components/text-field/daikin-text-field.d.cts +57 -18
- package/dist/cjs/components/text-field/number-utils.cjs +61 -0
- package/dist/cjs/components/text-field/number-utils.d.cts +26 -0
- package/dist/cjs/components/text-masked-field/daikin-text-masked-field.cjs +312 -0
- package/dist/cjs/components/text-masked-field/daikin-text-masked-field.d.cts +136 -0
- package/dist/cjs/components/text-masked-field/index.cjs +7 -0
- package/dist/cjs/components/text-masked-field/index.d.cts +1 -0
- package/dist/cjs/components/time-picker/daikin-time-picker.cjs +577 -0
- package/dist/cjs/components/time-picker/daikin-time-picker.d.cts +165 -0
- package/dist/cjs/components/time-picker/index.cjs +17 -0
- package/dist/cjs/components/time-picker/index.d.cts +1 -0
- package/dist/cjs/components/toast-notification/daikin-toast-notification.cjs +10 -7
- package/dist/cjs/components/toast-notification/daikin-toast-notification.d.cts +2 -0
- package/dist/cjs/components/toast-notification-manager/daikin-toast-notification-manager.cjs +1 -1
- package/dist/cjs/components/toggle/daikin-toggle.cjs +4 -13
- package/dist/cjs/components/toggle/daikin-toggle.d.cts +2 -12
- package/dist/cjs/components/tooltip/daikin-tooltip.cjs +24 -8
- package/dist/cjs/components/tooltip/daikin-tooltip.d.cts +11 -3
- package/dist/cjs/components/tree-section/daikin-tree-section.d.cts +2 -0
- package/dist/cjs/controllers/click-outside.cjs +3 -1
- package/dist/cjs/controllers/floating-ui-auto-update.cjs +22 -4
- package/dist/cjs/controllers/floating-ui-auto-update.d.cts +12 -0
- package/dist/cjs/controllers/focus-trap.cjs +42 -0
- package/dist/cjs/controllers/focus-trap.d.cts +10 -0
- package/dist/cjs/icon-registry.cjs +170 -0
- package/dist/cjs/icon-registry.d.cts +120 -0
- package/dist/cjs/index.cjs +84 -0
- package/dist/cjs/index.d.cts +1 -0
- package/dist/cjs/tailwind.css.cjs +1 -1
- package/dist/cjs/utils/calendar-common.cjs +151 -0
- package/dist/cjs/utils/calendar-common.d.cts +64 -0
- package/dist/cjs/utils/notification-common.cjs +19 -15
- package/dist/cjs/utils/notification-common.d.cts +2 -2
- package/dist/cjs/{components/tabs → utils}/scroller.cjs +20 -12
- package/dist/cjs/{components/tabs → utils}/scroller.d.cts +2 -2
- package/dist/cjs-dev/base/dds-element.cjs +1 -1
- package/dist/cjs-dev/base/dds-form-element.cjs +139 -0
- package/dist/cjs-dev/base/dds-form-element.d.cts +100 -0
- package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.cjs +7 -3
- package/dist/cjs-dev/components/avatar/daikin-avatar.cjs +1 -0
- package/dist/cjs-dev/components/avatar/daikin-avatar.d.cts +3 -0
- package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.cjs +2 -0
- package/dist/cjs-dev/components/button/daikin-button.cjs +35 -13
- package/dist/cjs-dev/components/button/daikin-button.d.cts +20 -10
- package/dist/cjs-dev/components/calendar/daikin-calendar.cjs +560 -0
- package/dist/cjs-dev/components/calendar/daikin-calendar.d.cts +87 -0
- package/dist/cjs-dev/components/calendar/index.cjs +7 -0
- package/dist/cjs-dev/components/calendar/index.d.cts +1 -0
- package/dist/cjs-dev/components/card/daikin-card.cjs +1 -1
- package/dist/cjs-dev/components/card-header/daikin-card-header.cjs +1 -1
- package/dist/cjs-dev/components/carousel/daikin-carousel.cjs +7 -3
- package/dist/cjs-dev/components/carousel-item/daikin-carousel-item.cjs +2 -2
- package/dist/cjs-dev/components/checkbox/daikin-checkbox.cjs +12 -16
- package/dist/cjs-dev/components/checkbox/daikin-checkbox.d.cts +9 -12
- package/dist/cjs-dev/components/checkbox-group/daikin-checkbox-group.cjs +94 -0
- package/dist/cjs-dev/components/checkbox-group/daikin-checkbox-group.d.cts +69 -0
- package/dist/cjs-dev/components/checkbox-group/index.cjs +7 -0
- package/dist/cjs-dev/components/checkbox-group/index.d.cts +1 -0
- package/dist/cjs-dev/components/chip/daikin-chip.cjs +106 -0
- package/dist/cjs-dev/components/chip/daikin-chip.d.cts +36 -0
- package/dist/cjs-dev/components/chip/index.cjs +7 -0
- package/dist/cjs-dev/components/chip/index.d.cts +1 -0
- package/dist/cjs-dev/components/combobox/daikin-combobox.cjs +604 -0
- package/dist/cjs-dev/components/combobox/daikin-combobox.d.cts +134 -0
- package/dist/cjs-dev/components/combobox/index.cjs +8 -0
- package/dist/cjs-dev/components/combobox/index.d.cts +1 -0
- package/dist/cjs-dev/components/date-picker/daikin-date-picker.cjs +637 -0
- package/dist/cjs-dev/components/date-picker/daikin-date-picker.d.cts +106 -0
- package/dist/cjs-dev/components/date-picker/index.cjs +7 -0
- package/dist/cjs-dev/components/date-picker/index.d.cts +1 -0
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.cjs +91 -57
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.d.cts +7 -15
- package/dist/cjs-dev/components/icon/daikin-icon.cjs +141 -16
- package/dist/cjs-dev/components/icon/daikin-icon.d.cts +129 -9
- package/dist/cjs-dev/components/icon/icons.json.cjs +6 -2
- package/dist/cjs-dev/components/icon/icons.json.d.cts +16 -16
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.cjs +30 -4
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.d.cts +20 -2
- package/dist/cjs-dev/components/index.cjs +81 -0
- package/dist/cjs-dev/components/index.d.cts +14 -0
- package/dist/cjs-dev/components/inline-notification/daikin-inline-notification.cjs +13 -18
- package/dist/cjs-dev/components/inline-notification/daikin-inline-notification.d.cts +3 -1
- package/dist/cjs-dev/components/input-group/daikin-input-group.cjs +4 -4
- package/dist/cjs-dev/components/input-group/daikin-input-group.d.cts +50 -1
- package/dist/cjs-dev/components/list/daikin-list.cjs +75 -3
- package/dist/cjs-dev/components/list/daikin-list.d.cts +16 -0
- package/dist/cjs-dev/components/list-item/daikin-list-item.cjs +27 -7
- package/dist/cjs-dev/components/list-item/daikin-list-item.d.cts +9 -3
- package/dist/cjs-dev/components/loading/daikin-loading.cjs +1 -1
- package/dist/cjs-dev/components/loading/daikin-loading.d.cts +1 -0
- package/dist/cjs-dev/components/logo/daikin-logo.cjs +105 -0
- package/dist/cjs-dev/components/logo/daikin-logo.d.cts +54 -0
- package/dist/cjs-dev/components/logo/index.cjs +7 -0
- package/dist/cjs-dev/components/logo/index.d.cts +1 -0
- package/dist/cjs-dev/components/menu/daikin-menu.cjs +205 -0
- package/dist/cjs-dev/components/menu/daikin-menu.d.cts +89 -0
- package/dist/cjs-dev/components/menu/index.cjs +7 -0
- package/dist/cjs-dev/components/menu/index.d.cts +1 -0
- package/dist/cjs-dev/components/modal/daikin-modal.cjs +115 -0
- package/dist/cjs-dev/components/modal/daikin-modal.d.cts +61 -0
- package/dist/cjs-dev/components/modal/index.cjs +7 -0
- package/dist/cjs-dev/components/modal/index.d.cts +1 -0
- package/dist/cjs-dev/components/modal-footer/daikin-modal-footer.cjs +40 -0
- package/dist/cjs-dev/components/modal-footer/daikin-modal-footer.d.cts +33 -0
- package/dist/cjs-dev/components/modal-footer/index.cjs +7 -0
- package/dist/cjs-dev/components/modal-footer/index.d.cts +1 -0
- package/dist/cjs-dev/components/modal-header/daikin-modal-header.cjs +96 -0
- package/dist/cjs-dev/components/modal-header/daikin-modal-header.d.cts +43 -0
- package/dist/cjs-dev/components/modal-header/index.cjs +7 -0
- package/dist/cjs-dev/components/modal-header/index.d.cts +1 -0
- package/dist/cjs-dev/components/progress-bar/daikin-progress-bar.cjs +5 -5
- package/dist/cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.cjs +1 -1
- package/dist/cjs-dev/components/radio/daikin-radio.cjs +4 -13
- package/dist/cjs-dev/components/radio/daikin-radio.d.cts +2 -12
- package/dist/cjs-dev/components/radio-group/daikin-radio-group.cjs +1 -1
- package/dist/cjs-dev/components/radio-group/daikin-radio-group.d.cts +2 -1
- package/dist/cjs-dev/components/select/daikin-select.cjs +6 -1
- package/dist/cjs-dev/components/slider/daikin-slider.cjs +263 -0
- package/dist/cjs-dev/components/slider/daikin-slider.d.cts +67 -0
- package/dist/cjs-dev/components/slider/index.cjs +7 -0
- package/dist/cjs-dev/components/slider/index.d.cts +1 -0
- package/dist/cjs-dev/components/slider/slider-utils.cjs +57 -0
- package/dist/cjs-dev/components/slider/slider-utils.d.cts +37 -0
- package/dist/cjs-dev/components/tab/daikin-tab.cjs +1 -0
- package/dist/cjs-dev/components/table/daikin-table.cjs +77 -18
- package/dist/cjs-dev/components/table/daikin-table.d.cts +72 -34
- package/dist/cjs-dev/components/table-cell/daikin-table-cell.cjs +2 -1
- package/dist/cjs-dev/components/table-cell/daikin-table-cell.d.cts +1 -1
- package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.cjs +31 -6
- package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.d.cts +8 -1
- package/dist/cjs-dev/components/tabs/daikin-tabs.cjs +2 -2
- package/dist/cjs-dev/components/text-area/daikin-text-area.cjs +4 -13
- package/dist/cjs-dev/components/text-area/daikin-text-area.d.cts +2 -12
- package/dist/cjs-dev/components/text-field/daikin-text-field.cjs +289 -57
- package/dist/cjs-dev/components/text-field/daikin-text-field.d.cts +57 -18
- package/dist/cjs-dev/components/text-field/number-utils.cjs +64 -0
- package/dist/cjs-dev/components/text-field/number-utils.d.cts +26 -0
- package/dist/cjs-dev/components/text-masked-field/daikin-text-masked-field.cjs +312 -0
- package/dist/cjs-dev/components/text-masked-field/daikin-text-masked-field.d.cts +136 -0
- package/dist/cjs-dev/components/text-masked-field/index.cjs +7 -0
- package/dist/cjs-dev/components/text-masked-field/index.d.cts +1 -0
- package/dist/cjs-dev/components/time-picker/daikin-time-picker.cjs +589 -0
- package/dist/cjs-dev/components/time-picker/daikin-time-picker.d.cts +165 -0
- package/dist/cjs-dev/components/time-picker/index.cjs +17 -0
- package/dist/cjs-dev/components/time-picker/index.d.cts +1 -0
- package/dist/cjs-dev/components/toast-notification/daikin-toast-notification.cjs +10 -7
- package/dist/cjs-dev/components/toast-notification/daikin-toast-notification.d.cts +2 -0
- package/dist/cjs-dev/components/toast-notification-manager/daikin-toast-notification-manager.cjs +1 -1
- package/dist/cjs-dev/components/toggle/daikin-toggle.cjs +4 -13
- package/dist/cjs-dev/components/toggle/daikin-toggle.d.cts +2 -12
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.cjs +24 -8
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.d.cts +11 -3
- package/dist/cjs-dev/components/tree-section/daikin-tree-section.d.cts +2 -0
- package/dist/cjs-dev/controllers/click-outside.cjs +3 -1
- package/dist/cjs-dev/controllers/floating-ui-auto-update.cjs +22 -4
- package/dist/cjs-dev/controllers/floating-ui-auto-update.d.cts +12 -0
- package/dist/cjs-dev/controllers/focus-trap.cjs +42 -0
- package/dist/cjs-dev/controllers/focus-trap.d.cts +10 -0
- package/dist/cjs-dev/icon-registry.cjs +170 -0
- package/dist/cjs-dev/icon-registry.d.cts +120 -0
- package/dist/cjs-dev/index.cjs +84 -0
- package/dist/cjs-dev/index.d.cts +1 -0
- package/dist/cjs-dev/tailwind.css.cjs +1 -1
- package/dist/cjs-dev/utils/calendar-common.cjs +151 -0
- package/dist/cjs-dev/utils/calendar-common.d.cts +64 -0
- package/dist/cjs-dev/utils/notification-common.cjs +19 -15
- package/dist/cjs-dev/utils/notification-common.d.cts +2 -2
- package/dist/cjs-dev/{components/tabs → utils}/scroller.cjs +20 -12
- package/dist/cjs-dev/{components/tabs → utils}/scroller.d.cts +2 -2
- package/dist/es/base/dds-element.js +1 -1
- package/dist/es/base/dds-form-element.d.ts +100 -0
- package/dist/es/base/dds-form-element.js +139 -0
- package/dist/es/components/accordion/daikin-accordion.js +1 -1
- package/dist/es/components/accordion-item/daikin-accordion-item.js +8 -4
- package/dist/es/components/avatar/daikin-avatar.d.ts +3 -0
- package/dist/es/components/avatar/daikin-avatar.js +2 -1
- package/dist/es/components/breadcrumb/daikin-breadcrumb.js +1 -1
- package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.js +3 -1
- package/dist/es/components/button/daikin-button.d.ts +20 -10
- package/dist/es/components/button/daikin-button.js +36 -14
- package/dist/es/components/calendar/daikin-calendar.d.ts +87 -0
- package/dist/es/components/calendar/daikin-calendar.js +550 -0
- package/dist/es/components/calendar/index.d.ts +1 -0
- package/dist/es/components/calendar/index.js +4 -0
- package/dist/es/components/card/daikin-card.js +2 -2
- package/dist/es/components/card-footer/daikin-card-footer.js +1 -1
- package/dist/es/components/card-header/daikin-card-header.js +2 -2
- package/dist/es/components/carousel/daikin-carousel.js +8 -4
- package/dist/es/components/carousel-item/daikin-carousel-item.js +3 -3
- package/dist/es/components/checkbox/daikin-checkbox.d.ts +9 -12
- package/dist/es/components/checkbox/daikin-checkbox.js +13 -17
- package/dist/es/components/checkbox-group/daikin-checkbox-group.d.ts +69 -0
- package/dist/es/components/checkbox-group/daikin-checkbox-group.js +95 -0
- package/dist/es/components/checkbox-group/index.d.ts +1 -0
- package/dist/es/components/checkbox-group/index.js +4 -0
- package/dist/es/components/chip/daikin-chip.d.ts +36 -0
- package/dist/es/components/chip/daikin-chip.js +107 -0
- package/dist/es/components/chip/index.d.ts +1 -0
- package/dist/es/components/chip/index.js +4 -0
- package/dist/es/components/combobox/daikin-combobox.d.ts +134 -0
- package/dist/es/components/combobox/daikin-combobox.js +605 -0
- package/dist/es/components/combobox/index.d.ts +1 -0
- package/dist/es/components/combobox/index.js +5 -0
- package/dist/es/components/date-picker/daikin-date-picker.d.ts +106 -0
- package/dist/es/components/date-picker/daikin-date-picker.js +627 -0
- package/dist/es/components/date-picker/index.d.ts +1 -0
- package/dist/es/components/date-picker/index.js +4 -0
- package/dist/es/components/dropdown/daikin-dropdown.d.ts +7 -15
- package/dist/es/components/dropdown/daikin-dropdown.js +92 -58
- package/dist/es/components/dropdown-item/daikin-dropdown-item.js +1 -1
- package/dist/es/components/icon/daikin-icon.d.ts +129 -9
- package/dist/es/components/icon/daikin-icon.js +119 -14
- package/dist/es/components/icon/icons.json.d.ts +16 -16
- package/dist/es/components/icon/icons.json.js +5 -1
- package/dist/es/components/icon-button/daikin-icon-button.d.ts +20 -2
- package/dist/es/components/icon-button/daikin-icon-button.js +31 -5
- package/dist/es/components/index.d.ts +14 -0
- package/dist/es/components/index.js +40 -1
- package/dist/es/components/inline-notification/daikin-inline-notification.d.ts +3 -1
- package/dist/es/components/inline-notification/daikin-inline-notification.js +14 -19
- package/dist/es/components/input-group/daikin-input-group.d.ts +50 -1
- package/dist/es/components/input-group/daikin-input-group.js +5 -5
- package/dist/es/components/link/daikin-link.js +1 -1
- package/dist/es/components/list/daikin-list.d.ts +16 -0
- package/dist/es/components/list/daikin-list.js +76 -4
- package/dist/es/components/list-item/daikin-list-item.d.ts +9 -3
- package/dist/es/components/list-item/daikin-list-item.js +28 -8
- package/dist/es/components/loading/daikin-loading.d.ts +1 -0
- package/dist/es/components/loading/daikin-loading.js +2 -2
- package/dist/es/components/logo/daikin-logo.d.ts +54 -0
- package/dist/es/components/logo/daikin-logo.js +106 -0
- package/dist/es/components/logo/index.d.ts +1 -0
- package/dist/es/components/logo/index.js +4 -0
- package/dist/es/components/menu/daikin-menu.d.ts +89 -0
- package/dist/es/components/menu/daikin-menu.js +206 -0
- package/dist/es/components/menu/index.d.ts +1 -0
- package/dist/es/components/menu/index.js +4 -0
- package/dist/es/components/modal/daikin-modal.d.ts +61 -0
- package/dist/es/components/modal/daikin-modal.js +116 -0
- package/dist/es/components/modal/index.d.ts +1 -0
- package/dist/es/components/modal/index.js +4 -0
- package/dist/es/components/modal-footer/daikin-modal-footer.d.ts +33 -0
- package/dist/es/components/modal-footer/daikin-modal-footer.js +41 -0
- package/dist/es/components/modal-footer/index.d.ts +1 -0
- package/dist/es/components/modal-footer/index.js +4 -0
- package/dist/es/components/modal-header/daikin-modal-header.d.ts +43 -0
- package/dist/es/components/modal-header/daikin-modal-header.js +97 -0
- package/dist/es/components/modal-header/index.d.ts +1 -0
- package/dist/es/components/modal-header/index.js +4 -0
- package/dist/es/components/pagination/daikin-pagination.js +1 -1
- package/dist/es/components/progress-bar/daikin-progress-bar.js +6 -6
- package/dist/es/components/progress-indicator/daikin-progress-indicator.js +1 -1
- package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.js +2 -2
- package/dist/es/components/radio/daikin-radio.d.ts +2 -12
- package/dist/es/components/radio/daikin-radio.js +5 -14
- package/dist/es/components/radio-group/daikin-radio-group.d.ts +2 -1
- package/dist/es/components/radio-group/daikin-radio-group.js +2 -2
- package/dist/es/components/select/daikin-select.js +7 -2
- package/dist/es/components/slider/daikin-slider.d.ts +67 -0
- package/dist/es/components/slider/daikin-slider.js +264 -0
- package/dist/es/components/slider/index.d.ts +1 -0
- package/dist/es/components/slider/index.js +4 -0
- package/dist/es/components/slider/slider-utils.d.ts +37 -0
- package/dist/es/components/slider/slider-utils.js +57 -0
- package/dist/es/components/tab/daikin-tab.js +2 -1
- package/dist/es/components/tab-panels/daikin-tab-panels.js +1 -1
- package/dist/es/components/table/daikin-table.d.ts +72 -34
- package/dist/es/components/table/daikin-table.js +75 -16
- package/dist/es/components/table-cell/daikin-table-cell.d.ts +1 -1
- package/dist/es/components/table-cell/daikin-table-cell.js +3 -2
- package/dist/es/components/table-header-cell/daikin-table-header-cell.d.ts +8 -1
- package/dist/es/components/table-header-cell/daikin-table-header-cell.js +32 -7
- package/dist/es/components/tabs/daikin-tabs.js +3 -3
- package/dist/es/components/text-area/daikin-text-area.d.ts +2 -12
- package/dist/es/components/text-area/daikin-text-area.js +5 -14
- package/dist/es/components/text-field/daikin-text-field.d.ts +57 -18
- package/dist/es/components/text-field/daikin-text-field.js +290 -58
- package/dist/es/components/text-field/number-utils.d.ts +26 -0
- package/dist/es/components/text-field/number-utils.js +61 -0
- package/dist/es/components/text-masked-field/daikin-text-masked-field.d.ts +136 -0
- package/dist/es/components/text-masked-field/daikin-text-masked-field.js +313 -0
- package/dist/es/components/text-masked-field/index.d.ts +1 -0
- package/dist/es/components/text-masked-field/index.js +4 -0
- package/dist/es/components/time-picker/daikin-time-picker.d.ts +165 -0
- package/dist/es/components/time-picker/daikin-time-picker.js +578 -0
- package/dist/es/components/time-picker/index.d.ts +1 -0
- package/dist/es/components/time-picker/index.js +14 -0
- package/dist/es/components/toast-notification/daikin-toast-notification.d.ts +2 -0
- package/dist/es/components/toast-notification/daikin-toast-notification.js +11 -8
- package/dist/es/components/toast-notification-manager/daikin-toast-notification-manager.js +2 -2
- package/dist/es/components/toggle/daikin-toggle.d.ts +2 -12
- package/dist/es/components/toggle/daikin-toggle.js +5 -14
- package/dist/es/components/tooltip/daikin-tooltip.d.ts +11 -3
- package/dist/es/components/tooltip/daikin-tooltip.js +25 -9
- package/dist/es/components/tree/daikin-tree.js +1 -1
- package/dist/es/components/tree-item/daikin-tree-item.js +1 -1
- package/dist/es/components/tree-section/daikin-tree-section.d.ts +2 -0
- package/dist/es/components/tree-section/daikin-tree-section.js +1 -1
- package/dist/es/controllers/click-outside.js +3 -1
- package/dist/es/controllers/floating-ui-auto-update.d.ts +12 -0
- package/dist/es/controllers/floating-ui-auto-update.js +22 -4
- package/dist/es/controllers/focus-trap.d.ts +10 -0
- package/dist/es/controllers/focus-trap.js +42 -0
- package/dist/es/icon-registry.d.ts +120 -0
- package/dist/es/icon-registry.js +170 -0
- package/dist/es/index.d.ts +1 -0
- package/dist/es/index.js +43 -1
- package/dist/es/tailwind.css.js +1 -1
- package/dist/es/utils/calendar-common.d.ts +64 -0
- package/dist/es/utils/calendar-common.js +151 -0
- package/dist/es/utils/notification-common.d.ts +2 -2
- package/dist/es/utils/notification-common.js +19 -15
- package/dist/es/{components/tabs → utils}/scroller.d.ts +2 -2
- package/dist/es/{components/tabs → utils}/scroller.js +20 -12
- package/dist/es-dev/base/dds-element.js +1 -1
- package/dist/es-dev/base/dds-form-element.d.ts +100 -0
- package/dist/es-dev/base/dds-form-element.js +139 -0
- package/dist/es-dev/components/accordion/daikin-accordion.js +1 -1
- package/dist/es-dev/components/accordion-item/daikin-accordion-item.js +8 -4
- package/dist/es-dev/components/avatar/daikin-avatar.d.ts +3 -0
- package/dist/es-dev/components/avatar/daikin-avatar.js +2 -1
- package/dist/es-dev/components/breadcrumb/daikin-breadcrumb.js +1 -1
- package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.js +3 -1
- package/dist/es-dev/components/button/daikin-button.d.ts +20 -10
- package/dist/es-dev/components/button/daikin-button.js +36 -14
- package/dist/es-dev/components/calendar/daikin-calendar.d.ts +87 -0
- package/dist/es-dev/components/calendar/daikin-calendar.js +561 -0
- package/dist/es-dev/components/calendar/index.d.ts +1 -0
- package/dist/es-dev/components/calendar/index.js +4 -0
- package/dist/es-dev/components/card/daikin-card.js +2 -2
- package/dist/es-dev/components/card-footer/daikin-card-footer.js +1 -1
- package/dist/es-dev/components/card-header/daikin-card-header.js +2 -2
- package/dist/es-dev/components/carousel/daikin-carousel.js +8 -4
- package/dist/es-dev/components/carousel-item/daikin-carousel-item.js +3 -3
- package/dist/es-dev/components/checkbox/daikin-checkbox.d.ts +9 -12
- package/dist/es-dev/components/checkbox/daikin-checkbox.js +13 -17
- package/dist/es-dev/components/checkbox-group/daikin-checkbox-group.d.ts +69 -0
- package/dist/es-dev/components/checkbox-group/daikin-checkbox-group.js +95 -0
- package/dist/es-dev/components/checkbox-group/index.d.ts +1 -0
- package/dist/es-dev/components/checkbox-group/index.js +4 -0
- package/dist/es-dev/components/chip/daikin-chip.d.ts +36 -0
- package/dist/es-dev/components/chip/daikin-chip.js +107 -0
- package/dist/es-dev/components/chip/index.d.ts +1 -0
- package/dist/es-dev/components/chip/index.js +4 -0
- package/dist/es-dev/components/combobox/daikin-combobox.d.ts +134 -0
- package/dist/es-dev/components/combobox/daikin-combobox.js +605 -0
- package/dist/es-dev/components/combobox/index.d.ts +1 -0
- package/dist/es-dev/components/combobox/index.js +5 -0
- package/dist/es-dev/components/date-picker/daikin-date-picker.d.ts +106 -0
- package/dist/es-dev/components/date-picker/daikin-date-picker.js +638 -0
- package/dist/es-dev/components/date-picker/index.d.ts +1 -0
- package/dist/es-dev/components/date-picker/index.js +4 -0
- package/dist/es-dev/components/dropdown/daikin-dropdown.d.ts +7 -15
- package/dist/es-dev/components/dropdown/daikin-dropdown.js +92 -58
- package/dist/es-dev/components/dropdown-item/daikin-dropdown-item.js +1 -1
- package/dist/es-dev/components/icon/daikin-icon.d.ts +129 -9
- package/dist/es-dev/components/icon/daikin-icon.js +143 -18
- package/dist/es-dev/components/icon/icons.json.d.ts +16 -16
- package/dist/es-dev/components/icon/icons.json.js +5 -1
- package/dist/es-dev/components/icon-button/daikin-icon-button.d.ts +20 -2
- package/dist/es-dev/components/icon-button/daikin-icon-button.js +31 -5
- package/dist/es-dev/components/index.d.ts +14 -0
- package/dist/es-dev/components/index.js +40 -1
- package/dist/es-dev/components/inline-notification/daikin-inline-notification.d.ts +3 -1
- package/dist/es-dev/components/inline-notification/daikin-inline-notification.js +14 -19
- package/dist/es-dev/components/input-group/daikin-input-group.d.ts +50 -1
- package/dist/es-dev/components/input-group/daikin-input-group.js +5 -5
- package/dist/es-dev/components/link/daikin-link.js +1 -1
- package/dist/es-dev/components/list/daikin-list.d.ts +16 -0
- package/dist/es-dev/components/list/daikin-list.js +76 -4
- package/dist/es-dev/components/list-item/daikin-list-item.d.ts +9 -3
- package/dist/es-dev/components/list-item/daikin-list-item.js +28 -8
- package/dist/es-dev/components/loading/daikin-loading.d.ts +1 -0
- package/dist/es-dev/components/loading/daikin-loading.js +2 -2
- package/dist/es-dev/components/logo/daikin-logo.d.ts +54 -0
- package/dist/es-dev/components/logo/daikin-logo.js +106 -0
- package/dist/es-dev/components/logo/index.d.ts +1 -0
- package/dist/es-dev/components/logo/index.js +4 -0
- package/dist/es-dev/components/menu/daikin-menu.d.ts +89 -0
- package/dist/es-dev/components/menu/daikin-menu.js +206 -0
- package/dist/es-dev/components/menu/index.d.ts +1 -0
- package/dist/es-dev/components/menu/index.js +4 -0
- package/dist/es-dev/components/modal/daikin-modal.d.ts +61 -0
- package/dist/es-dev/components/modal/daikin-modal.js +116 -0
- package/dist/es-dev/components/modal/index.d.ts +1 -0
- package/dist/es-dev/components/modal/index.js +4 -0
- package/dist/es-dev/components/modal-footer/daikin-modal-footer.d.ts +33 -0
- package/dist/es-dev/components/modal-footer/daikin-modal-footer.js +41 -0
- package/dist/es-dev/components/modal-footer/index.d.ts +1 -0
- package/dist/es-dev/components/modal-footer/index.js +4 -0
- package/dist/es-dev/components/modal-header/daikin-modal-header.d.ts +43 -0
- package/dist/es-dev/components/modal-header/daikin-modal-header.js +97 -0
- package/dist/es-dev/components/modal-header/index.d.ts +1 -0
- package/dist/es-dev/components/modal-header/index.js +4 -0
- package/dist/es-dev/components/pagination/daikin-pagination.js +1 -1
- package/dist/es-dev/components/progress-bar/daikin-progress-bar.js +6 -6
- package/dist/es-dev/components/progress-indicator/daikin-progress-indicator.js +1 -1
- package/dist/es-dev/components/progress-indicator-item/daikin-progress-indicator-item.js +2 -2
- package/dist/es-dev/components/radio/daikin-radio.d.ts +2 -12
- package/dist/es-dev/components/radio/daikin-radio.js +5 -14
- package/dist/es-dev/components/radio-group/daikin-radio-group.d.ts +2 -1
- package/dist/es-dev/components/radio-group/daikin-radio-group.js +2 -2
- package/dist/es-dev/components/select/daikin-select.js +7 -2
- package/dist/es-dev/components/slider/daikin-slider.d.ts +67 -0
- package/dist/es-dev/components/slider/daikin-slider.js +264 -0
- package/dist/es-dev/components/slider/index.d.ts +1 -0
- package/dist/es-dev/components/slider/index.js +4 -0
- package/dist/es-dev/components/slider/slider-utils.d.ts +37 -0
- package/dist/es-dev/components/slider/slider-utils.js +57 -0
- package/dist/es-dev/components/tab/daikin-tab.js +2 -1
- package/dist/es-dev/components/tab-panels/daikin-tab-panels.js +1 -1
- package/dist/es-dev/components/table/daikin-table.d.ts +72 -34
- package/dist/es-dev/components/table/daikin-table.js +78 -19
- package/dist/es-dev/components/table-cell/daikin-table-cell.d.ts +1 -1
- package/dist/es-dev/components/table-cell/daikin-table-cell.js +3 -2
- package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.d.ts +8 -1
- package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.js +32 -7
- package/dist/es-dev/components/tabs/daikin-tabs.js +3 -3
- package/dist/es-dev/components/text-area/daikin-text-area.d.ts +2 -12
- package/dist/es-dev/components/text-area/daikin-text-area.js +5 -14
- package/dist/es-dev/components/text-field/daikin-text-field.d.ts +57 -18
- package/dist/es-dev/components/text-field/daikin-text-field.js +290 -58
- package/dist/es-dev/components/text-field/number-utils.d.ts +26 -0
- package/dist/es-dev/components/text-field/number-utils.js +64 -0
- package/dist/es-dev/components/text-masked-field/daikin-text-masked-field.d.ts +136 -0
- package/dist/es-dev/components/text-masked-field/daikin-text-masked-field.js +313 -0
- package/dist/es-dev/components/text-masked-field/index.d.ts +1 -0
- package/dist/es-dev/components/text-masked-field/index.js +4 -0
- package/dist/es-dev/components/time-picker/daikin-time-picker.d.ts +165 -0
- package/dist/es-dev/components/time-picker/daikin-time-picker.js +590 -0
- package/dist/es-dev/components/time-picker/index.d.ts +1 -0
- package/dist/es-dev/components/time-picker/index.js +14 -0
- package/dist/es-dev/components/toast-notification/daikin-toast-notification.d.ts +2 -0
- package/dist/es-dev/components/toast-notification/daikin-toast-notification.js +11 -8
- package/dist/es-dev/components/toast-notification-manager/daikin-toast-notification-manager.js +2 -2
- package/dist/es-dev/components/toggle/daikin-toggle.d.ts +2 -12
- package/dist/es-dev/components/toggle/daikin-toggle.js +5 -14
- package/dist/es-dev/components/tooltip/daikin-tooltip.d.ts +11 -3
- package/dist/es-dev/components/tooltip/daikin-tooltip.js +25 -9
- package/dist/es-dev/components/tree/daikin-tree.js +1 -1
- package/dist/es-dev/components/tree-item/daikin-tree-item.js +1 -1
- package/dist/es-dev/components/tree-section/daikin-tree-section.d.ts +2 -0
- package/dist/es-dev/components/tree-section/daikin-tree-section.js +1 -1
- package/dist/es-dev/controllers/click-outside.js +3 -1
- package/dist/es-dev/controllers/floating-ui-auto-update.d.ts +12 -0
- package/dist/es-dev/controllers/floating-ui-auto-update.js +22 -4
- package/dist/es-dev/controllers/focus-trap.d.ts +10 -0
- package/dist/es-dev/controllers/focus-trap.js +42 -0
- package/dist/es-dev/icon-registry.d.ts +120 -0
- package/dist/es-dev/icon-registry.js +170 -0
- package/dist/es-dev/index.d.ts +1 -0
- package/dist/es-dev/index.js +43 -1
- package/dist/es-dev/tailwind.css.js +1 -1
- package/dist/es-dev/utils/calendar-common.d.ts +64 -0
- package/dist/es-dev/utils/calendar-common.js +151 -0
- package/dist/es-dev/utils/notification-common.d.ts +2 -2
- package/dist/es-dev/utils/notification-common.js +19 -15
- package/dist/es-dev/{components/tabs → utils}/scroller.d.ts +2 -2
- package/dist/es-dev/{components/tabs → utils}/scroller.js +20 -12
- package/icons/alarm.svg +3 -0
- package/icons/calendar.svg +3 -0
- package/icons/chevron-down.svg +3 -3
- package/icons/chevron-left.svg +2 -2
- package/icons/chevron-right.svg +2 -2
- package/icons/chevron-up.svg +2 -2
- package/icons/close.svg +3 -0
- package/icons/error.svg +3 -0
- package/icons/information.svg +3 -0
- package/icons/logo-negative.svg +10 -0
- package/icons/logo-positive.svg +10 -0
- package/icons/{dropdown-chevron-down.svg → number-minus.svg} +3 -1
- package/icons/number-plus.svg +5 -0
- package/icons/password-hidden.svg +3 -0
- package/icons/password-visible.svg +3 -0
- package/icons/pulldown-down.svg +3 -0
- package/icons/search.svg +3 -0
- package/icons/success.svg +3 -0
- package/icons/warning.svg +3 -0
- package/package.json +20 -6
- package/icons/cross.svg +0 -3
- package/icons/notification-close.svg +0 -5
- package/icons/status-alarm.svg +0 -5
- package/icons/status-error.svg +0 -3
- package/icons/status-information.svg +0 -5
- package/icons/status-negative.svg +0 -5
- package/icons/status-positive.svg +0 -5
- package/icons/status-warning.svg +0 -3
|
@@ -1,23 +1,103 @@
|
|
|
1
1
|
import { DDSElement } from "../../base/index.cjs";
|
|
2
|
+
import { IconRegistry } from "../../icon-registry.cjs";
|
|
2
3
|
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
3
|
-
|
|
4
|
+
declare const icons: {
|
|
5
|
+
"logo-positive": {
|
|
6
|
+
class: string;
|
|
7
|
+
color: null;
|
|
8
|
+
};
|
|
9
|
+
"logo-negative": {
|
|
10
|
+
class: string;
|
|
11
|
+
color: null;
|
|
12
|
+
};
|
|
13
|
+
alarm: {
|
|
14
|
+
class: string;
|
|
15
|
+
color: null;
|
|
16
|
+
};
|
|
17
|
+
close: {
|
|
18
|
+
class: string;
|
|
19
|
+
color: string;
|
|
20
|
+
};
|
|
21
|
+
information: {
|
|
22
|
+
class: string;
|
|
23
|
+
color: null;
|
|
24
|
+
};
|
|
25
|
+
error: {
|
|
26
|
+
class: string;
|
|
27
|
+
color: null;
|
|
28
|
+
};
|
|
29
|
+
success: {
|
|
30
|
+
class: string;
|
|
31
|
+
color: null;
|
|
32
|
+
};
|
|
33
|
+
warning: {
|
|
34
|
+
class: string;
|
|
35
|
+
color: null;
|
|
36
|
+
};
|
|
37
|
+
"pagination-chevron-left": {
|
|
38
|
+
class: string;
|
|
39
|
+
color: string;
|
|
40
|
+
};
|
|
41
|
+
"pagination-chevron-right": {
|
|
42
|
+
class: string;
|
|
43
|
+
color: string;
|
|
44
|
+
};
|
|
45
|
+
profile: {
|
|
46
|
+
class: string;
|
|
47
|
+
color: null;
|
|
48
|
+
};
|
|
49
|
+
"chevron-up": {
|
|
50
|
+
class: string;
|
|
51
|
+
color: null;
|
|
52
|
+
};
|
|
53
|
+
"chevron-down": {
|
|
54
|
+
class: string;
|
|
55
|
+
color: null;
|
|
56
|
+
};
|
|
57
|
+
"chevron-left": {
|
|
58
|
+
class: string;
|
|
59
|
+
color: null;
|
|
60
|
+
};
|
|
61
|
+
"chevron-right": {
|
|
62
|
+
class: string;
|
|
63
|
+
color: null;
|
|
64
|
+
};
|
|
65
|
+
sort: {
|
|
66
|
+
class: string;
|
|
67
|
+
color: null;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
4
70
|
export declare const iconList: string[];
|
|
5
71
|
export type IconType = keyof typeof icons;
|
|
6
72
|
declare const cvaIcon: (props?: ({
|
|
7
|
-
icon?: string | number | null | undefined;
|
|
8
73
|
color?: "current" | "default" | "black" | "white" | null | undefined;
|
|
74
|
+
mode?: "mask" | "background" | "inline" | "static" | null | undefined;
|
|
9
75
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
10
76
|
export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
|
|
11
77
|
/**
|
|
12
78
|
* The icon component is a versatile UI element used to display small graphical symbols or images that represent actions, objects, or concepts within an application.
|
|
13
|
-
* The icon set is provided by DDS.
|
|
79
|
+
* The icon set is provided by DDS, and it also supports custom icons via the icon registry.
|
|
14
80
|
*
|
|
15
|
-
*
|
|
81
|
+
* For static DDS icons, the component uses the predefined icon set.
|
|
82
|
+
* For custom icons, it can dynamically load icons from various sources using the icon registry.
|
|
16
83
|
*
|
|
17
|
-
*
|
|
18
|
-
* In the development build, warnings will be displayed in the console, so please check there if you encounter any unexpected behavior.
|
|
84
|
+
* This component supports multiple rendering modes for enhanced security when using custom icons:
|
|
19
85
|
*
|
|
20
|
-
*
|
|
86
|
+
* - **mask** (default for custom icons): Uses CSS mask-image for secure rendering with color customization
|
|
87
|
+
* - **background**: Uses CSS background-image for secure rendering without color customization
|
|
88
|
+
* - **inline**: Traditional SVG rendering using innerHTML (use with caution)
|
|
89
|
+
* - **static** (for DDS icons): Uses predefined CSS classes from the DDS icon set
|
|
90
|
+
*
|
|
91
|
+
* **Security Note**: When using custom icons, especially with `inline` mode, ensure that the SVG content comes from trusted sources only.
|
|
92
|
+
* Untrusted input may lead to XSS vulnerabilities. Consider using `mask` or `background` modes for better security.
|
|
93
|
+
*
|
|
94
|
+
* To use a custom color, set the `color` property to `"current"` and apply the desired color using the CSS `color` property.
|
|
95
|
+
* This works out-of-the-box for mask and static modes, and can be achieved for inline mode with additional effort. The background mode does not support custom colors.
|
|
96
|
+
*
|
|
97
|
+
* If an icon cannot be loaded, a blank space will be displayed.
|
|
98
|
+
* In development builds, warnings will be shown in the console for debugging.
|
|
99
|
+
*
|
|
100
|
+
* @cssprop [--ddc-icon-size] - Icon size. If a value other than "current" is set for the `size` property, it will be automatically overwritten. This may also be set by a parent component such as `daikin-icon-button`.
|
|
21
101
|
*
|
|
22
102
|
* @example
|
|
23
103
|
*
|
|
@@ -26,15 +106,51 @@ export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
|
|
|
26
106
|
* ```
|
|
27
107
|
*
|
|
28
108
|
* ```html
|
|
109
|
+
* <!-- Using a DDS static icon -->
|
|
29
110
|
* <daikin-icon icon="information" color="black" size="m"></daikin-icon>
|
|
111
|
+
*
|
|
112
|
+
* <!-- Using a custom icon -->
|
|
113
|
+
* <daikin-icon icon="my-custom-icon" color="black" size="m"></daikin-icon>
|
|
114
|
+
*
|
|
115
|
+
* <script>
|
|
116
|
+
* import { iconRegistry } from "@daikin-oss/design-system-web-components/icon-registry.js";
|
|
117
|
+
*
|
|
118
|
+
* // Register with mask mode for secure rendering
|
|
119
|
+
* iconRegistry.register({
|
|
120
|
+
* name: "my-custom-icon",
|
|
121
|
+
* svg: {
|
|
122
|
+
* svg: '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">...</svg>',
|
|
123
|
+
* mode: "mask",
|
|
124
|
+
* defaultColor: "#0066cc"
|
|
125
|
+
* },
|
|
126
|
+
* });
|
|
127
|
+
*
|
|
128
|
+
* // Register dynamic custom icons
|
|
129
|
+
* iconRegistry.register({
|
|
130
|
+
* match: /^custom-/,
|
|
131
|
+
* async fetch: (name) => {
|
|
132
|
+
* const response = await fetch(`/path/to/custom/icons/${name}.svg`);
|
|
133
|
+
* if (!response.ok) {
|
|
134
|
+
* throw new Error(`Failed to load custom icon "${name}"`);
|
|
135
|
+
* }
|
|
136
|
+
* return response.text();
|
|
137
|
+
* },
|
|
138
|
+
* });
|
|
139
|
+
* </script>
|
|
30
140
|
* ```
|
|
31
141
|
*/
|
|
32
142
|
export declare class DaikinIcon extends DDSElement {
|
|
33
143
|
static readonly styles: import('lit').CSSResult;
|
|
34
144
|
/**
|
|
35
|
-
* Specify
|
|
145
|
+
* Specify icon registry instance.
|
|
146
|
+
* Default is the global icon registry.
|
|
147
|
+
*/
|
|
148
|
+
registry: IconRegistry;
|
|
149
|
+
/**
|
|
150
|
+
* Specify the name of the icon.
|
|
151
|
+
* Can be a static DDS icon name or a custom icon name registered in the icon registry.
|
|
36
152
|
*/
|
|
37
|
-
icon:
|
|
153
|
+
icon: string | null;
|
|
38
154
|
/**
|
|
39
155
|
* Specify icon color
|
|
40
156
|
*/
|
|
@@ -44,6 +160,10 @@ export declare class DaikinIcon extends DDSElement {
|
|
|
44
160
|
* If "current" is set, `--ddc-icon-size` CSS variable will be used. `--ddc-icon-size` may be set by the parent component such as `daikin-icon-button`.
|
|
45
161
|
*/
|
|
46
162
|
size: "s" | "m" | "l" | "xl" | "current";
|
|
163
|
+
private _iconData;
|
|
164
|
+
connectedCallback(): void;
|
|
165
|
+
updated(changedProperties: Map<string, unknown>): void;
|
|
166
|
+
private loadIcon;
|
|
47
167
|
render(): import('lit-html').TemplateResult<1>;
|
|
48
168
|
}
|
|
49
169
|
declare global {
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.
|
|
3
|
-
const icons = { "
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const icons = { "logo-positive": { "class": "i-daikin-logo-positive", "color": null }, "logo-negative": { "class": "i-daikin-logo-negative", "color": null }, "alarm": { "class": "i-daikin-alarm", "color": null }, "close": { "class": "i-daikin-close", "color": "#a0a0a0" }, "information": { "class": "i-daikin-information", "color": null }, "error": { "class": "i-daikin-error", "color": null }, "success": { "class": "i-daikin-success", "color": null }, "warning": { "class": "i-daikin-warning", "color": null }, "pagination-chevron-left": { "class": "i-daikin-pagination-chevron-left", "color": "#414141" }, "pagination-chevron-right": { "class": "i-daikin-pagination-chevron-right", "color": "#414141" }, "profile": { "class": "i-daikin-profile", "color": null }, "chevron-up": { "class": "i-daikin-chevron-up", "color": null }, "chevron-down": { "class": "i-daikin-chevron-down", "color": null }, "chevron-left": { "class": "i-daikin-chevron-left", "color": null }, "chevron-right": { "class": "i-daikin-chevron-right", "color": null }, "sort": { "class": "i-daikin-sort", "color": null } };
|
|
4
|
+
const iconsJson = {
|
|
5
|
+
icons
|
|
6
|
+
};
|
|
7
|
+
exports.default = iconsJson;
|
|
4
8
|
exports.icons = icons;
|
|
@@ -1,27 +1,35 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
"icons": {
|
|
3
|
+
"logo-positive": {
|
|
4
|
+
"class": "i-daikin-logo-positive",
|
|
5
|
+
"color": null
|
|
6
|
+
},
|
|
7
|
+
"logo-negative": {
|
|
8
|
+
"class": "i-daikin-logo-negative",
|
|
9
|
+
"color": null
|
|
10
|
+
},
|
|
3
11
|
"alarm": {
|
|
4
|
-
"class": "i-daikin-
|
|
12
|
+
"class": "i-daikin-alarm",
|
|
5
13
|
"color": null
|
|
6
14
|
},
|
|
7
15
|
"close": {
|
|
8
|
-
"class": "i-daikin-
|
|
16
|
+
"class": "i-daikin-close",
|
|
9
17
|
"color": "#a0a0a0"
|
|
10
18
|
},
|
|
11
19
|
"information": {
|
|
12
|
-
"class": "i-daikin-
|
|
20
|
+
"class": "i-daikin-information",
|
|
13
21
|
"color": null
|
|
14
22
|
},
|
|
15
|
-
"
|
|
16
|
-
"class": "i-daikin-
|
|
23
|
+
"error": {
|
|
24
|
+
"class": "i-daikin-error",
|
|
17
25
|
"color": null
|
|
18
26
|
},
|
|
19
|
-
"
|
|
20
|
-
"class": "i-daikin-
|
|
27
|
+
"success": {
|
|
28
|
+
"class": "i-daikin-success",
|
|
21
29
|
"color": null
|
|
22
30
|
},
|
|
23
31
|
"warning": {
|
|
24
|
-
"class": "i-daikin-
|
|
32
|
+
"class": "i-daikin-warning",
|
|
25
33
|
"color": null
|
|
26
34
|
},
|
|
27
35
|
"pagination-chevron-left": {
|
|
@@ -32,14 +40,6 @@ declare const _default: {
|
|
|
32
40
|
"class": "i-daikin-pagination-chevron-right",
|
|
33
41
|
"color": "#414141"
|
|
34
42
|
},
|
|
35
|
-
"error": {
|
|
36
|
-
"class": "i-daikin-status-error",
|
|
37
|
-
"color": "#FF4949"
|
|
38
|
-
},
|
|
39
|
-
"cross": {
|
|
40
|
-
"class": "i-daikin-cross",
|
|
41
|
-
"color": null
|
|
42
|
-
},
|
|
43
43
|
"profile": {
|
|
44
44
|
"class": "i-daikin-profile",
|
|
45
45
|
"color": null
|
|
@@ -4,10 +4,11 @@ const classVarianceAuthority = require("class-variance-authority");
|
|
|
4
4
|
const lit = require("lit");
|
|
5
5
|
const decorators_js = require("lit/decorators.js");
|
|
6
6
|
const ifDefined_js = require("lit/directives/if-defined.js");
|
|
7
|
-
|
|
7
|
+
require("../../base/dds-element.cjs");
|
|
8
8
|
const decorators = require("../../base/decorators.cjs");
|
|
9
9
|
require("../../base/define.cjs");
|
|
10
10
|
const tailwind = require("../../tailwind.css.cjs");
|
|
11
|
+
const ddsFormElement = require("../../base/dds-form-element.cjs");
|
|
11
12
|
require("../icon/daikin-icon.cjs");
|
|
12
13
|
var __defProp = Object.defineProperty;
|
|
13
14
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -76,7 +77,7 @@ const cvaIconButton = classVarianceAuthority.cva(
|
|
|
76
77
|
}
|
|
77
78
|
}
|
|
78
79
|
);
|
|
79
|
-
exports.DaikinIconButton = class DaikinIconButton extends
|
|
80
|
+
exports.DaikinIconButton = class DaikinIconButton extends ddsFormElement.DDSFormSubmitElement {
|
|
80
81
|
constructor() {
|
|
81
82
|
super();
|
|
82
83
|
this.variant = "fill";
|
|
@@ -86,10 +87,18 @@ exports.DaikinIconButton = class DaikinIconButton extends ddsElement.DDSElement
|
|
|
86
87
|
this.type = "button";
|
|
87
88
|
this.buttonAriaLabel = null;
|
|
88
89
|
this.buttonRole = null;
|
|
90
|
+
this.buttonAriaHaspopup = null;
|
|
91
|
+
this.buttonAriaExpanded = null;
|
|
92
|
+
this.size = "s";
|
|
89
93
|
this.addEventListener("click", (event) => {
|
|
90
94
|
if (this.disabled) {
|
|
91
95
|
event.stopImmediatePropagation();
|
|
92
96
|
}
|
|
97
|
+
if (this.type === "submit") {
|
|
98
|
+
this.requestSubmit();
|
|
99
|
+
} else if (this.type === "reset") {
|
|
100
|
+
this.reset();
|
|
101
|
+
}
|
|
93
102
|
});
|
|
94
103
|
}
|
|
95
104
|
render() {
|
|
@@ -117,6 +126,8 @@ exports.DaikinIconButton = class DaikinIconButton extends ddsElement.DDSElement
|
|
|
117
126
|
type=${this.type}
|
|
118
127
|
aria-label=${this.buttonAriaLabel ?? ""}
|
|
119
128
|
?disabled=${this.disabled}
|
|
129
|
+
aria-haspopup=${ifDefined_js.ifDefined(this.buttonAriaHaspopup ?? void 0)}
|
|
130
|
+
aria-expanded=${ifDefined_js.ifDefined(this.buttonAriaExpanded ?? void 0)}
|
|
120
131
|
>
|
|
121
132
|
<slot class="icon-size-full"></slot>
|
|
122
133
|
</button>
|
|
@@ -136,8 +147,14 @@ exports.DaikinIconButton.styles = lit.css`
|
|
|
136
147
|
|
|
137
148
|
:host {
|
|
138
149
|
display: inline-block;
|
|
139
|
-
width: 2rem;
|
|
140
|
-
height: 2rem;
|
|
150
|
+
width: var(--ddc-icon-button-size, 2rem);
|
|
151
|
+
height: var(--ddc-icon-button-size, 2rem);
|
|
152
|
+
}
|
|
153
|
+
:host([size="s"]) {
|
|
154
|
+
--ddc-icon-button-size: 2rem; /* 32px */
|
|
155
|
+
}
|
|
156
|
+
:host([size="m"]) {
|
|
157
|
+
--ddc-icon-button-size: 3rem; /* 48px */
|
|
141
158
|
}
|
|
142
159
|
`;
|
|
143
160
|
__decorateClass([
|
|
@@ -161,6 +178,15 @@ __decorateClass([
|
|
|
161
178
|
__decorateClass([
|
|
162
179
|
decorators_js.property({ type: String, reflect: true, attribute: "button-role" })
|
|
163
180
|
], exports.DaikinIconButton.prototype, "buttonRole", 2);
|
|
181
|
+
__decorateClass([
|
|
182
|
+
decorators_js.property({ type: String, reflect: true, attribute: "button-aria-haspopup" })
|
|
183
|
+
], exports.DaikinIconButton.prototype, "buttonAriaHaspopup", 2);
|
|
184
|
+
__decorateClass([
|
|
185
|
+
decorators_js.property({ type: Boolean, reflect: true, attribute: "button-aria-expanded" })
|
|
186
|
+
], exports.DaikinIconButton.prototype, "buttonAriaExpanded", 2);
|
|
187
|
+
__decorateClass([
|
|
188
|
+
decorators_js.property({ type: String, reflect: true })
|
|
189
|
+
], exports.DaikinIconButton.prototype, "size", 2);
|
|
164
190
|
__decorateClass([
|
|
165
191
|
decorators_js.query("button")
|
|
166
192
|
], exports.DaikinIconButton.prototype, "_button", 2);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DDSElement } from "../../base/index.cjs";
|
|
2
1
|
import { ARIARole } from "../../lit-analyzer-types.cjs";
|
|
3
2
|
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
3
|
+
import { DDSFormSubmitElement } from "../../base/dds-form-element.cjs";
|
|
4
4
|
declare const cvaIconButton: (props?: ({
|
|
5
5
|
color?: "default" | "danger" | "neutral" | null | undefined;
|
|
6
6
|
variant?: "fill" | "outline" | "ghost" | null | undefined;
|
|
@@ -32,7 +32,7 @@ type IconButtonVariantProps = MergeVariantProps<typeof cvaIconButton>;
|
|
|
32
32
|
* </daikin-icon-button>
|
|
33
33
|
* ```
|
|
34
34
|
*/
|
|
35
|
-
export declare class DaikinIconButton extends
|
|
35
|
+
export declare class DaikinIconButton extends DDSFormSubmitElement {
|
|
36
36
|
static readonly styles: import('lit').CSSResult;
|
|
37
37
|
/**
|
|
38
38
|
* Variant of the button.
|
|
@@ -65,6 +65,24 @@ export declare class DaikinIconButton extends DDSElement {
|
|
|
65
65
|
* Optional ARIA role of the button.
|
|
66
66
|
*/
|
|
67
67
|
buttonRole: ARIARole | null;
|
|
68
|
+
/**
|
|
69
|
+
* The aria-haspopup of the icon button when `type="button"`.
|
|
70
|
+
* When used within a daikin-menu component, this property is automatically assigned the value `buttonAriaHaspopup="menu"`.
|
|
71
|
+
*/
|
|
72
|
+
buttonAriaHaspopup: "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | null;
|
|
73
|
+
/**
|
|
74
|
+
* The aria-expanded of icon button when `type="button"`.
|
|
75
|
+
* When used within a daikin-menu component, this property will be controlled by daikin-menu, so you don't need to specify it explicitly.
|
|
76
|
+
*/
|
|
77
|
+
buttonAriaExpanded: boolean | null;
|
|
78
|
+
/**
|
|
79
|
+
* Size of the button.
|
|
80
|
+
* - `s`: 32px * 32px
|
|
81
|
+
* - `m`: 48px * 48px
|
|
82
|
+
*
|
|
83
|
+
* Default is `s`.
|
|
84
|
+
*/
|
|
85
|
+
size: "s" | "m";
|
|
68
86
|
private _button;
|
|
69
87
|
constructor();
|
|
70
88
|
render(): import('lit-html').TemplateResult<1>;
|
|
@@ -6,12 +6,17 @@ const daikinAvatar = require("./avatar/daikin-avatar.cjs");
|
|
|
6
6
|
const daikinBreadcrumb = require("./breadcrumb/daikin-breadcrumb.cjs");
|
|
7
7
|
const daikinBreadcrumbItem = require("./breadcrumb-item/daikin-breadcrumb-item.cjs");
|
|
8
8
|
const daikinButton = require("./button/daikin-button.cjs");
|
|
9
|
+
const daikinCalendar = require("./calendar/daikin-calendar.cjs");
|
|
9
10
|
const daikinCard = require("./card/daikin-card.cjs");
|
|
10
11
|
const daikinCardFooter = require("./card-footer/daikin-card-footer.cjs");
|
|
11
12
|
const daikinCardHeader = require("./card-header/daikin-card-header.cjs");
|
|
12
13
|
const daikinCarousel = require("./carousel/daikin-carousel.cjs");
|
|
13
14
|
const daikinCarouselItem = require("./carousel-item/daikin-carousel-item.cjs");
|
|
14
15
|
const daikinCheckbox = require("./checkbox/daikin-checkbox.cjs");
|
|
16
|
+
const daikinCheckboxGroup = require("./checkbox-group/daikin-checkbox-group.cjs");
|
|
17
|
+
const daikinChip = require("./chip/daikin-chip.cjs");
|
|
18
|
+
const daikinCombobox = require("./combobox/daikin-combobox.cjs");
|
|
19
|
+
const daikinDatePicker = require("./date-picker/daikin-date-picker.cjs");
|
|
15
20
|
const daikinDropdown = require("./dropdown/daikin-dropdown.cjs");
|
|
16
21
|
const daikinDropdownItem = require("./dropdown-item/daikin-dropdown-item.cjs");
|
|
17
22
|
const daikinIcon = require("./icon/daikin-icon.cjs");
|
|
@@ -22,12 +27,19 @@ const daikinLink = require("./link/daikin-link.cjs");
|
|
|
22
27
|
const daikinList = require("./list/daikin-list.cjs");
|
|
23
28
|
const daikinListItem = require("./list-item/daikin-list-item.cjs");
|
|
24
29
|
const daikinLoading = require("./loading/daikin-loading.cjs");
|
|
30
|
+
const daikinLogo = require("./logo/daikin-logo.cjs");
|
|
31
|
+
const daikinMenu = require("./menu/daikin-menu.cjs");
|
|
32
|
+
const daikinModal = require("./modal/daikin-modal.cjs");
|
|
33
|
+
const daikinModalFooter = require("./modal-footer/daikin-modal-footer.cjs");
|
|
34
|
+
const daikinModalHeader = require("./modal-header/daikin-modal-header.cjs");
|
|
25
35
|
const daikinPagination = require("./pagination/daikin-pagination.cjs");
|
|
26
36
|
const daikinProgressBar = require("./progress-bar/daikin-progress-bar.cjs");
|
|
27
37
|
const daikinProgressIndicator = require("./progress-indicator/daikin-progress-indicator.cjs");
|
|
28
38
|
const daikinProgressIndicatorItem = require("./progress-indicator-item/daikin-progress-indicator-item.cjs");
|
|
29
39
|
const daikinRadio = require("./radio/daikin-radio.cjs");
|
|
40
|
+
const daikinRadioGroup = require("./radio-group/daikin-radio-group.cjs");
|
|
30
41
|
const daikinSelect = require("./select/daikin-select.cjs");
|
|
42
|
+
const daikinSlider = require("./slider/daikin-slider.cjs");
|
|
31
43
|
const daikinTab = require("./tab/daikin-tab.cjs");
|
|
32
44
|
const daikinTabPanels = require("./tab-panels/daikin-tab-panels.cjs");
|
|
33
45
|
const daikinTable = require("./table/daikin-table.cjs");
|
|
@@ -36,6 +48,8 @@ const daikinTableHeaderCell = require("./table-header-cell/daikin-table-header-c
|
|
|
36
48
|
const daikinTabs = require("./tabs/daikin-tabs.cjs");
|
|
37
49
|
const daikinTextArea = require("./text-area/daikin-text-area.cjs");
|
|
38
50
|
const daikinTextField = require("./text-field/daikin-text-field.cjs");
|
|
51
|
+
const daikinTextMaskedField = require("./text-masked-field/daikin-text-masked-field.cjs");
|
|
52
|
+
const daikinTimePicker = require("./time-picker/daikin-time-picker.cjs");
|
|
39
53
|
const daikinToastNotification = require("./toast-notification/daikin-toast-notification.cjs");
|
|
40
54
|
const daikinToastNotificationManager = require("./toast-notification-manager/daikin-toast-notification-manager.cjs");
|
|
41
55
|
const daikinToggle = require("./toggle/daikin-toggle.cjs");
|
|
@@ -67,6 +81,10 @@ Object.defineProperty(exports, "DaikinButton", {
|
|
|
67
81
|
enumerable: true,
|
|
68
82
|
get: () => daikinButton.DaikinButton
|
|
69
83
|
});
|
|
84
|
+
Object.defineProperty(exports, "DaikinCalendar", {
|
|
85
|
+
enumerable: true,
|
|
86
|
+
get: () => daikinCalendar.DaikinCalendar
|
|
87
|
+
});
|
|
70
88
|
Object.defineProperty(exports, "DaikinCard", {
|
|
71
89
|
enumerable: true,
|
|
72
90
|
get: () => daikinCard.DaikinCard
|
|
@@ -91,6 +109,23 @@ Object.defineProperty(exports, "DaikinCheckbox", {
|
|
|
91
109
|
enumerable: true,
|
|
92
110
|
get: () => daikinCheckbox.DaikinCheckbox
|
|
93
111
|
});
|
|
112
|
+
Object.defineProperty(exports, "DaikinCheckboxGroup", {
|
|
113
|
+
enumerable: true,
|
|
114
|
+
get: () => daikinCheckboxGroup.DaikinCheckboxGroup
|
|
115
|
+
});
|
|
116
|
+
Object.defineProperty(exports, "DaikinChip", {
|
|
117
|
+
enumerable: true,
|
|
118
|
+
get: () => daikinChip.DaikinChip
|
|
119
|
+
});
|
|
120
|
+
Object.defineProperty(exports, "DaikinCombobox", {
|
|
121
|
+
enumerable: true,
|
|
122
|
+
get: () => daikinCombobox.DaikinCombobox
|
|
123
|
+
});
|
|
124
|
+
exports.defaultFilterFn = daikinCombobox.defaultFilterFn;
|
|
125
|
+
Object.defineProperty(exports, "DaikinDatePicker", {
|
|
126
|
+
enumerable: true,
|
|
127
|
+
get: () => daikinDatePicker.DaikinDatePicker
|
|
128
|
+
});
|
|
94
129
|
Object.defineProperty(exports, "DaikinDropdown", {
|
|
95
130
|
enumerable: true,
|
|
96
131
|
get: () => daikinDropdown.DaikinDropdown
|
|
@@ -132,6 +167,26 @@ Object.defineProperty(exports, "DaikinLoading", {
|
|
|
132
167
|
enumerable: true,
|
|
133
168
|
get: () => daikinLoading.DaikinLoading
|
|
134
169
|
});
|
|
170
|
+
Object.defineProperty(exports, "DaikinLogo", {
|
|
171
|
+
enumerable: true,
|
|
172
|
+
get: () => daikinLogo.DaikinLogo
|
|
173
|
+
});
|
|
174
|
+
Object.defineProperty(exports, "DaikinMenu", {
|
|
175
|
+
enumerable: true,
|
|
176
|
+
get: () => daikinMenu.DaikinMenu
|
|
177
|
+
});
|
|
178
|
+
Object.defineProperty(exports, "DaikinModal", {
|
|
179
|
+
enumerable: true,
|
|
180
|
+
get: () => daikinModal.DaikinModal
|
|
181
|
+
});
|
|
182
|
+
Object.defineProperty(exports, "DaikinModalFooter", {
|
|
183
|
+
enumerable: true,
|
|
184
|
+
get: () => daikinModalFooter.DaikinModalFooter
|
|
185
|
+
});
|
|
186
|
+
Object.defineProperty(exports, "DaikinModalHeader", {
|
|
187
|
+
enumerable: true,
|
|
188
|
+
get: () => daikinModalHeader.DaikinModalHeader
|
|
189
|
+
});
|
|
135
190
|
Object.defineProperty(exports, "DaikinPagination", {
|
|
136
191
|
enumerable: true,
|
|
137
192
|
get: () => daikinPagination.DaikinPagination
|
|
@@ -152,10 +207,18 @@ Object.defineProperty(exports, "DaikinRadio", {
|
|
|
152
207
|
enumerable: true,
|
|
153
208
|
get: () => daikinRadio.DaikinRadio
|
|
154
209
|
});
|
|
210
|
+
Object.defineProperty(exports, "DaikinRadioGroup", {
|
|
211
|
+
enumerable: true,
|
|
212
|
+
get: () => daikinRadioGroup.DaikinRadioGroup
|
|
213
|
+
});
|
|
155
214
|
Object.defineProperty(exports, "DaikinSelect", {
|
|
156
215
|
enumerable: true,
|
|
157
216
|
get: () => daikinSelect.DaikinSelect
|
|
158
217
|
});
|
|
218
|
+
Object.defineProperty(exports, "DaikinSlider", {
|
|
219
|
+
enumerable: true,
|
|
220
|
+
get: () => daikinSlider.DaikinSlider
|
|
221
|
+
});
|
|
159
222
|
Object.defineProperty(exports, "DaikinTab", {
|
|
160
223
|
enumerable: true,
|
|
161
224
|
get: () => daikinTab.DaikinTab
|
|
@@ -188,6 +251,24 @@ Object.defineProperty(exports, "DaikinTextField", {
|
|
|
188
251
|
enumerable: true,
|
|
189
252
|
get: () => daikinTextField.DaikinTextField
|
|
190
253
|
});
|
|
254
|
+
Object.defineProperty(exports, "DaikinTextMaskedField", {
|
|
255
|
+
enumerable: true,
|
|
256
|
+
get: () => daikinTextMaskedField.DaikinTextMaskedField
|
|
257
|
+
});
|
|
258
|
+
Object.defineProperty(exports, "DaikinTimePicker", {
|
|
259
|
+
enumerable: true,
|
|
260
|
+
get: () => daikinTimePicker.DaikinTimePicker
|
|
261
|
+
});
|
|
262
|
+
exports.calcDigitInput = daikinTimePicker.calcDigitInput;
|
|
263
|
+
exports.formatPartsForUI = daikinTimePicker.formatPartsForUI;
|
|
264
|
+
exports.formatTimeForUI = daikinTimePicker.formatTimeForUI;
|
|
265
|
+
exports.from24HourFormat = daikinTimePicker.from24HourFormat;
|
|
266
|
+
exports.getTimeItemInSelection = daikinTimePicker.getTimeItemInSelection;
|
|
267
|
+
exports.isTimeOutOfRange = daikinTimePicker.isTimeOutOfRange;
|
|
268
|
+
exports.isValidValueTime = daikinTimePicker.isValidValueTime;
|
|
269
|
+
exports.parsePartsFromUIValue = daikinTimePicker.parsePartsFromUIValue;
|
|
270
|
+
exports.to24HourFormat = daikinTimePicker.to24HourFormat;
|
|
271
|
+
exports.tryParseTimeFromUIValue = daikinTimePicker.tryParseTimeFromUIValue;
|
|
191
272
|
Object.defineProperty(exports, "DaikinToastNotification", {
|
|
192
273
|
enumerable: true,
|
|
193
274
|
get: () => daikinToastNotification.DaikinToastNotification
|
|
@@ -4,12 +4,17 @@ export * from "./avatar/index.cjs";
|
|
|
4
4
|
export * from "./breadcrumb/index.cjs";
|
|
5
5
|
export * from "./breadcrumb-item/index.cjs";
|
|
6
6
|
export * from "./button/index.cjs";
|
|
7
|
+
export * from "./calendar/index.cjs";
|
|
7
8
|
export * from "./card/index.cjs";
|
|
8
9
|
export * from "./card-footer/index.cjs";
|
|
9
10
|
export * from "./card-header/index.cjs";
|
|
10
11
|
export * from "./carousel/index.cjs";
|
|
11
12
|
export * from "./carousel-item/index.cjs";
|
|
12
13
|
export * from "./checkbox/index.cjs";
|
|
14
|
+
export * from "./checkbox-group/index.cjs";
|
|
15
|
+
export * from "./chip/index.cjs";
|
|
16
|
+
export * from "./combobox/index.cjs";
|
|
17
|
+
export * from "./date-picker/index.cjs";
|
|
13
18
|
export * from "./dropdown/index.cjs";
|
|
14
19
|
export * from "./dropdown-item/index.cjs";
|
|
15
20
|
export * from "./icon/index.cjs";
|
|
@@ -20,12 +25,19 @@ export * from "./link/index.cjs";
|
|
|
20
25
|
export * from "./list/index.cjs";
|
|
21
26
|
export * from "./list-item/index.cjs";
|
|
22
27
|
export * from "./loading/index.cjs";
|
|
28
|
+
export * from "./logo/index.cjs";
|
|
29
|
+
export * from "./menu/index.cjs";
|
|
30
|
+
export * from "./modal/index.cjs";
|
|
31
|
+
export * from "./modal-footer/index.cjs";
|
|
32
|
+
export * from "./modal-header/index.cjs";
|
|
23
33
|
export * from "./pagination/index.cjs";
|
|
24
34
|
export * from "./progress-bar/index.cjs";
|
|
25
35
|
export * from "./progress-indicator/index.cjs";
|
|
26
36
|
export * from "./progress-indicator-item/index.cjs";
|
|
27
37
|
export * from "./radio/index.cjs";
|
|
38
|
+
export * from "./radio-group/index.cjs";
|
|
28
39
|
export * from "./select/index.cjs";
|
|
40
|
+
export * from "./slider/index.cjs";
|
|
29
41
|
export * from "./tab/index.cjs";
|
|
30
42
|
export * from "./tab-panels/index.cjs";
|
|
31
43
|
export * from "./table/index.cjs";
|
|
@@ -34,6 +46,8 @@ export * from "./table-header-cell/index.cjs";
|
|
|
34
46
|
export * from "./tabs/index.cjs";
|
|
35
47
|
export * from "./text-area/index.cjs";
|
|
36
48
|
export * from "./text-field/index.cjs";
|
|
49
|
+
export * from "./text-masked-field/index.cjs";
|
|
50
|
+
export * from "./time-picker/index.cjs";
|
|
37
51
|
export * from "./toast-notification/index.cjs";
|
|
38
52
|
export * from "./toast-notification-manager/index.cjs";
|
|
39
53
|
export * from "./toggle/index.cjs";
|
|
@@ -7,6 +7,7 @@ const decorators = require("../../base/decorators.cjs");
|
|
|
7
7
|
require("../../base/define.cjs");
|
|
8
8
|
const tailwind = require("../../tailwind.css.cjs");
|
|
9
9
|
const notificationCommon = require("../../utils/notification-common.cjs");
|
|
10
|
+
require("../icon-button/daikin-icon-button.cjs");
|
|
10
11
|
var __defProp = Object.defineProperty;
|
|
11
12
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
12
13
|
var __decorateClass = (decorators2, target, key, kind) => {
|
|
@@ -36,30 +37,24 @@ exports.DaikinInlineNotification = class DaikinInlineNotification extends ddsEle
|
|
|
36
37
|
const formattedTimestamp = this.timestamp ? notificationCommon.formatDate(this.timestamp) : null;
|
|
37
38
|
return lit.html`<aside
|
|
38
39
|
class=${notificationCommon.cvaContainer({ variant: "inline", status: this.status })}
|
|
39
|
-
role="status"
|
|
40
40
|
>
|
|
41
41
|
<div class=${notificationCommon.cvaContent({ layout: this.layout })}>
|
|
42
42
|
<slot class=${notificationCommon.cvaTitle({ layout: this.layout })} name="title"></slot>
|
|
43
|
-
<slot
|
|
44
|
-
class=${notificationCommon.cvaDescription({ layout: this.layout })}
|
|
45
|
-
name="description"
|
|
46
|
-
></slot>
|
|
43
|
+
<slot class=${notificationCommon.cvaDescription({ layout: this.layout })}></slot>
|
|
47
44
|
${formattedTimestamp ? lit.html`<span class=${notificationCommon.cvaTimestamp({ layout: this.layout })}
|
|
48
45
|
>${formattedTimestamp}</span
|
|
49
46
|
>` : lit.nothing}
|
|
50
47
|
</div>
|
|
51
48
|
<slot name="action" class="flex-none"></slot>
|
|
52
|
-
${this.closable ? lit.html
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
</daikin-icon-button>
|
|
62
|
-
` : lit.nothing}
|
|
49
|
+
${this.closable ? lit.html`<daikin-icon-button
|
|
50
|
+
variant="ghost"
|
|
51
|
+
button-aria-label="Close"
|
|
52
|
+
@click=${this._handleClickClose}
|
|
53
|
+
>
|
|
54
|
+
<span
|
|
55
|
+
class="flex size-6 text-ddt-color-common-text-secondary relative i-daikin-close"
|
|
56
|
+
></span>
|
|
57
|
+
</daikin-icon-button>` : lit.nothing}
|
|
63
58
|
</aside>`;
|
|
64
59
|
}
|
|
65
60
|
};
|
|
@@ -76,10 +71,10 @@ exports.DaikinInlineNotification.styles = lit.css`
|
|
|
76
71
|
}
|
|
77
72
|
`;
|
|
78
73
|
__decorateClass([
|
|
79
|
-
decorators_js.property({ type: String })
|
|
74
|
+
decorators_js.property({ type: String, reflect: true })
|
|
80
75
|
], exports.DaikinInlineNotification.prototype, "status", 2);
|
|
81
76
|
__decorateClass([
|
|
82
|
-
decorators_js.property({ type: String })
|
|
77
|
+
decorators_js.property({ type: String, reflect: true })
|
|
83
78
|
], exports.DaikinInlineNotification.prototype, "layout", 2);
|
|
84
79
|
__decorateClass([
|
|
85
80
|
decorators_js.property({ type: Boolean, reflect: true })
|
|
@@ -6,10 +6,12 @@ import { ToastNotificationVariantProps } from "../toast-notification/index.cjs";
|
|
|
6
6
|
* An inline notification appears within the content of the application, usually embedded directly within a page or section.
|
|
7
7
|
* Inline notification is more persistent than toast notification 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.
|
|
8
8
|
*
|
|
9
|
+
* @tokenImports ../../utils/notification-common.ts
|
|
10
|
+
*
|
|
9
11
|
* @fires close - A custom event emitted when a user clicks the close button.
|
|
10
12
|
*
|
|
13
|
+
* @slot A slot for the inline notification description content.
|
|
11
14
|
* @slot title - A slot for the title content.
|
|
12
|
-
* @slot description - A slot for the description content.
|
|
13
15
|
*
|
|
14
16
|
* @example
|
|
15
17
|
*
|