@daikin-oss/design-system-web-components 1.5.2 → 1.6.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 +178 -0
- package/custom-elements.json +4499 -2442
- package/dist/cjs/base/dds-element.cjs +3 -2
- package/dist/cjs/base/dds-form-element.d.cts +1 -0
- package/dist/cjs/base/dds-property.d.cts +2 -2
- package/dist/cjs/components/accordion/daikin-accordion.cjs +1 -0
- package/dist/cjs/components/accordion/daikin-accordion.d.cts +4 -0
- package/dist/cjs/components/accordion-item/daikin-accordion-item.cjs +13 -11
- package/dist/cjs/components/accordion-item/daikin-accordion-item.d.cts +1 -1
- package/dist/cjs/components/badge/daikin-badge.cjs +72 -7
- package/dist/cjs/components/badge/daikin-badge.d.cts +25 -4
- package/dist/cjs/components/breadcrumb/daikin-breadcrumb.d.cts +1 -0
- package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.cjs +1 -4
- package/dist/cjs/components/button/daikin-button.cjs +4 -6
- package/dist/cjs/components/button/daikin-button.d.cts +2 -2
- package/dist/cjs/components/calendar/daikin-calendar.cjs +3 -1
- package/dist/cjs/components/calendar/daikin-calendar.d.cts +2 -0
- package/dist/cjs/components/card-header/daikin-card-header.cjs +0 -2
- package/dist/cjs/components/carousel/daikin-carousel.d.cts +1 -0
- package/dist/cjs/components/carousel-item/daikin-carousel-item.cjs +3 -3
- package/dist/cjs/components/checkbox/daikin-checkbox.cjs +25 -5
- package/dist/cjs/components/checkbox/daikin-checkbox.d.cts +9 -1
- package/dist/cjs/components/chip/daikin-chip.cjs +2 -4
- package/dist/cjs/components/chip/daikin-chip.d.cts +1 -0
- package/dist/cjs/components/combobox/daikin-combobox.cjs +11 -4
- package/dist/cjs/components/combobox/daikin-combobox.d.cts +3 -1
- package/dist/cjs/components/date-picker/daikin-date-picker.cjs +127 -62
- package/dist/cjs/components/date-picker/daikin-date-picker.d.cts +19 -1
- package/dist/cjs/components/divider/daikin-divider.cjs +42 -0
- package/dist/cjs/components/divider/daikin-divider.d.cts +23 -0
- package/dist/cjs/components/divider/index.cjs +7 -0
- package/dist/cjs/components/divider/index.d.cts +1 -0
- package/dist/cjs/components/drawer/daikin-drawer.cjs +229 -0
- package/dist/cjs/components/drawer/daikin-drawer.d.cts +91 -0
- package/dist/cjs/components/drawer/index.cjs +7 -0
- package/dist/cjs/components/drawer/index.d.cts +1 -0
- package/dist/cjs/components/drawer-footer/daikin-drawer-footer.cjs +36 -0
- package/dist/cjs/components/drawer-footer/daikin-drawer-footer.d.cts +33 -0
- package/dist/cjs/components/drawer-footer/index.cjs +7 -0
- package/dist/cjs/components/drawer-footer/index.d.cts +1 -0
- package/dist/cjs/components/drawer-header/daikin-drawer-header.cjs +83 -0
- package/dist/cjs/components/drawer-header/daikin-drawer-header.d.cts +41 -0
- package/dist/cjs/components/drawer-header/index.cjs +7 -0
- package/dist/cjs/components/drawer-header/index.d.cts +1 -0
- package/dist/cjs/components/dropdown/daikin-dropdown.cjs +11 -2
- package/dist/cjs/components/dropdown/daikin-dropdown.d.cts +3 -1
- package/dist/cjs/components/dropdown-item/daikin-dropdown-item.cjs +0 -2
- package/dist/cjs/components/empty-state/daikin-empty-state.cjs +2 -2
- package/dist/cjs/components/icon/daikin-icon.cjs +1 -2
- package/dist/cjs/components/icon-button/daikin-icon-button.cjs +0 -1
- package/dist/cjs/components/index.cjs +35 -0
- package/dist/cjs/components/index.d.cts +7 -0
- package/dist/cjs/components/inline-notification/daikin-inline-notification.cjs +1 -7
- package/dist/cjs/components/input-group/daikin-input-group.cjs +16 -11
- package/dist/cjs/components/link/daikin-link.cjs +26 -23
- package/dist/cjs/components/list/daikin-list.cjs +12 -0
- package/dist/cjs/components/list/daikin-list.d.cts +8 -0
- package/dist/cjs/components/list-item/daikin-list-item.cjs +30 -9
- package/dist/cjs/components/menu/daikin-menu.cjs +85 -11
- package/dist/cjs/components/menu/daikin-menu.d.cts +23 -5
- package/dist/cjs/components/modal/daikin-modal.cjs +18 -1
- package/dist/cjs/components/modal/daikin-modal.d.cts +25 -0
- package/dist/cjs/components/modal-footer/daikin-modal-footer.cjs +1 -1
- package/dist/cjs/components/modal-header/daikin-modal-header.cjs +0 -2
- package/dist/cjs/components/navigation/daikin-navigation.cjs +2 -1
- package/dist/cjs/components/navigation/daikin-navigation.d.cts +1 -0
- package/dist/cjs/components/navigation-item/daikin-navigation-item.cjs +6 -7
- package/dist/cjs/components/pagination/daikin-pagination.cjs +13 -6
- package/dist/cjs/components/pagination/daikin-pagination.d.cts +4 -1
- package/dist/cjs/components/progress-bar/daikin-progress-bar.cjs +2 -3
- package/dist/cjs/components/progress-indicator/daikin-progress-indicator.cjs +1 -1
- package/dist/cjs/components/progress-indicator/daikin-progress-indicator.d.cts +4 -4
- package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.cjs +7 -5
- package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.d.cts +1 -1
- package/dist/cjs/components/radio/daikin-radio.cjs +14 -2
- package/dist/cjs/components/radio/daikin-radio.d.cts +1 -0
- package/dist/cjs/components/radio-group/daikin-radio-group.cjs +2 -0
- package/dist/cjs/components/radio-group/daikin-radio-group.d.cts +2 -1
- package/dist/cjs/components/select/daikin-select.cjs +0 -1
- package/dist/cjs/components/slider/daikin-slider.cjs +14 -4
- package/dist/cjs/components/slider/daikin-slider.d.cts +1 -1
- package/dist/cjs/components/status-message/daikin-status-message.cjs +3 -4
- package/dist/cjs/components/tab/daikin-tab.cjs +0 -2
- package/dist/cjs/components/table/daikin-table.cjs +1 -1
- package/dist/cjs/components/table/daikin-table.d.cts +2 -0
- package/dist/cjs/components/tabs/daikin-tabs.d.cts +1 -0
- package/dist/cjs/components/tag/daikin-tag.cjs +1 -1
- package/dist/cjs/components/text-area/daikin-text-area.cjs +0 -1
- package/dist/cjs/components/text-area/daikin-text-area.d.cts +1 -1
- package/dist/cjs/components/text-field/daikin-text-field.cjs +0 -1
- package/dist/cjs/components/text-field/daikin-text-field.d.cts +1 -1
- package/dist/cjs/components/text-masked-field/daikin-text-masked-field.cjs +0 -1
- package/dist/cjs/components/text-masked-field/daikin-text-masked-field.d.cts +1 -1
- package/dist/cjs/components/time-picker/daikin-time-picker.cjs +1 -1
- package/dist/cjs/components/time-picker/daikin-time-picker.d.cts +1 -1
- package/dist/cjs/components/toast-notification/daikin-toast-notification.cjs +2 -3
- package/dist/cjs/components/toggle/daikin-toggle.d.cts +1 -0
- package/dist/cjs/components/tooltip/daikin-tooltip.cjs +2 -4
- package/dist/cjs/components/tooltip/daikin-tooltip.d.cts +9 -2
- package/dist/cjs/components/tree/daikin-tree.cjs +2 -0
- package/dist/cjs/components/tree/daikin-tree.d.cts +4 -0
- package/dist/cjs/components/tree-item/daikin-tree-item.cjs +1 -2
- package/dist/cjs/components/tree-section/daikin-tree-section.cjs +7 -3
- package/dist/cjs/components/vertical-navigation/daikin-vertical-navigation.cjs +115 -0
- package/dist/cjs/components/vertical-navigation/daikin-vertical-navigation.d.cts +77 -0
- package/dist/cjs/components/vertical-navigation/index.cjs +7 -0
- package/dist/cjs/components/vertical-navigation/index.d.cts +1 -0
- package/dist/cjs/components/vertical-navigation-item/daikin-vertical-navigation-item.cjs +378 -0
- package/dist/cjs/components/vertical-navigation-item/daikin-vertical-navigation-item.d.cts +121 -0
- package/dist/cjs/components/vertical-navigation-item/index.cjs +7 -0
- package/dist/cjs/components/vertical-navigation-item/index.d.cts +1 -0
- package/dist/cjs/components/vertical-navigation-menu-item/daikin-vertical-navigation-menu-item.cjs +176 -0
- package/dist/cjs/components/vertical-navigation-menu-item/daikin-vertical-navigation-menu-item.d.cts +86 -0
- package/dist/cjs/components/vertical-navigation-menu-item/index.cjs +7 -0
- package/dist/cjs/components/vertical-navigation-menu-item/index.d.cts +1 -0
- package/dist/cjs/controllers/block-scroll.cjs +43 -0
- package/dist/cjs/controllers/block-scroll.d.cts +48 -0
- package/dist/cjs/controllers/focus-trap.cjs +33 -17
- package/dist/cjs/controllers/focus-trap.d.cts +1 -1
- package/dist/cjs/index.cjs +35 -0
- package/dist/cjs/tailwind.css.cjs +1 -1
- package/dist/cjs/utils/notification-common.cjs +1 -1
- package/dist/cjs-dev/base/dds-element.cjs +3 -2
- package/dist/cjs-dev/base/dds-form-element.d.cts +1 -0
- package/dist/cjs-dev/base/dds-property.d.cts +2 -2
- package/dist/cjs-dev/components/accordion/daikin-accordion.cjs +1 -0
- package/dist/cjs-dev/components/accordion/daikin-accordion.d.cts +4 -0
- package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.cjs +13 -11
- package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.d.cts +1 -1
- package/dist/cjs-dev/components/badge/daikin-badge.cjs +72 -7
- package/dist/cjs-dev/components/badge/daikin-badge.d.cts +25 -4
- package/dist/cjs-dev/components/breadcrumb/daikin-breadcrumb.d.cts +1 -0
- package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.cjs +1 -4
- package/dist/cjs-dev/components/button/daikin-button.cjs +4 -6
- package/dist/cjs-dev/components/button/daikin-button.d.cts +2 -2
- package/dist/cjs-dev/components/calendar/daikin-calendar.cjs +3 -1
- package/dist/cjs-dev/components/calendar/daikin-calendar.d.cts +2 -0
- package/dist/cjs-dev/components/card-header/daikin-card-header.cjs +0 -2
- package/dist/cjs-dev/components/carousel/daikin-carousel.d.cts +1 -0
- package/dist/cjs-dev/components/carousel-item/daikin-carousel-item.cjs +3 -3
- package/dist/cjs-dev/components/checkbox/daikin-checkbox.cjs +25 -5
- package/dist/cjs-dev/components/checkbox/daikin-checkbox.d.cts +9 -1
- package/dist/cjs-dev/components/chip/daikin-chip.cjs +2 -4
- package/dist/cjs-dev/components/chip/daikin-chip.d.cts +1 -0
- package/dist/cjs-dev/components/combobox/daikin-combobox.cjs +11 -4
- package/dist/cjs-dev/components/combobox/daikin-combobox.d.cts +3 -1
- package/dist/cjs-dev/components/date-picker/daikin-date-picker.cjs +127 -62
- package/dist/cjs-dev/components/date-picker/daikin-date-picker.d.cts +19 -1
- package/dist/cjs-dev/components/divider/daikin-divider.cjs +42 -0
- package/dist/cjs-dev/components/divider/daikin-divider.d.cts +23 -0
- package/dist/cjs-dev/components/divider/index.cjs +7 -0
- package/dist/cjs-dev/components/divider/index.d.cts +1 -0
- package/dist/cjs-dev/components/drawer/daikin-drawer.cjs +229 -0
- package/dist/cjs-dev/components/drawer/daikin-drawer.d.cts +91 -0
- package/dist/cjs-dev/components/drawer/index.cjs +7 -0
- package/dist/cjs-dev/components/drawer/index.d.cts +1 -0
- package/dist/cjs-dev/components/drawer-footer/daikin-drawer-footer.cjs +36 -0
- package/dist/cjs-dev/components/drawer-footer/daikin-drawer-footer.d.cts +33 -0
- package/dist/cjs-dev/components/drawer-footer/index.cjs +7 -0
- package/dist/cjs-dev/components/drawer-footer/index.d.cts +1 -0
- package/dist/cjs-dev/components/drawer-header/daikin-drawer-header.cjs +83 -0
- package/dist/cjs-dev/components/drawer-header/daikin-drawer-header.d.cts +41 -0
- package/dist/cjs-dev/components/drawer-header/index.cjs +7 -0
- package/dist/cjs-dev/components/drawer-header/index.d.cts +1 -0
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.cjs +11 -2
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.d.cts +3 -1
- package/dist/cjs-dev/components/dropdown-item/daikin-dropdown-item.cjs +0 -2
- package/dist/cjs-dev/components/empty-state/daikin-empty-state.cjs +2 -2
- package/dist/cjs-dev/components/icon/daikin-icon.cjs +1 -2
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.cjs +0 -1
- package/dist/cjs-dev/components/index.cjs +35 -0
- package/dist/cjs-dev/components/index.d.cts +7 -0
- package/dist/cjs-dev/components/inline-notification/daikin-inline-notification.cjs +1 -7
- package/dist/cjs-dev/components/input-group/daikin-input-group.cjs +16 -11
- package/dist/cjs-dev/components/link/daikin-link.cjs +26 -23
- package/dist/cjs-dev/components/list/daikin-list.cjs +12 -0
- package/dist/cjs-dev/components/list/daikin-list.d.cts +8 -0
- package/dist/cjs-dev/components/list-item/daikin-list-item.cjs +30 -9
- package/dist/cjs-dev/components/menu/daikin-menu.cjs +85 -11
- package/dist/cjs-dev/components/menu/daikin-menu.d.cts +23 -5
- package/dist/cjs-dev/components/modal/daikin-modal.cjs +18 -1
- package/dist/cjs-dev/components/modal/daikin-modal.d.cts +25 -0
- package/dist/cjs-dev/components/modal-footer/daikin-modal-footer.cjs +1 -1
- package/dist/cjs-dev/components/modal-header/daikin-modal-header.cjs +0 -2
- package/dist/cjs-dev/components/navigation/daikin-navigation.cjs +2 -1
- package/dist/cjs-dev/components/navigation/daikin-navigation.d.cts +1 -0
- package/dist/cjs-dev/components/navigation-item/daikin-navigation-item.cjs +6 -7
- package/dist/cjs-dev/components/pagination/daikin-pagination.cjs +13 -6
- package/dist/cjs-dev/components/pagination/daikin-pagination.d.cts +4 -1
- package/dist/cjs-dev/components/progress-bar/daikin-progress-bar.cjs +2 -3
- package/dist/cjs-dev/components/progress-indicator/daikin-progress-indicator.cjs +1 -1
- package/dist/cjs-dev/components/progress-indicator/daikin-progress-indicator.d.cts +4 -4
- package/dist/cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.cjs +7 -5
- package/dist/cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.d.cts +1 -1
- package/dist/cjs-dev/components/radio/daikin-radio.cjs +14 -2
- package/dist/cjs-dev/components/radio/daikin-radio.d.cts +1 -0
- package/dist/cjs-dev/components/radio-group/daikin-radio-group.cjs +2 -0
- package/dist/cjs-dev/components/radio-group/daikin-radio-group.d.cts +2 -1
- package/dist/cjs-dev/components/select/daikin-select.cjs +0 -1
- package/dist/cjs-dev/components/slider/daikin-slider.cjs +14 -4
- package/dist/cjs-dev/components/slider/daikin-slider.d.cts +1 -1
- package/dist/cjs-dev/components/status-message/daikin-status-message.cjs +3 -4
- package/dist/cjs-dev/components/tab/daikin-tab.cjs +0 -2
- package/dist/cjs-dev/components/table/daikin-table.cjs +1 -1
- package/dist/cjs-dev/components/table/daikin-table.d.cts +2 -0
- package/dist/cjs-dev/components/tabs/daikin-tabs.d.cts +1 -0
- package/dist/cjs-dev/components/tag/daikin-tag.cjs +1 -1
- package/dist/cjs-dev/components/text-area/daikin-text-area.cjs +0 -1
- package/dist/cjs-dev/components/text-area/daikin-text-area.d.cts +1 -1
- package/dist/cjs-dev/components/text-field/daikin-text-field.cjs +0 -1
- package/dist/cjs-dev/components/text-field/daikin-text-field.d.cts +1 -1
- package/dist/cjs-dev/components/text-masked-field/daikin-text-masked-field.cjs +0 -1
- package/dist/cjs-dev/components/text-masked-field/daikin-text-masked-field.d.cts +1 -1
- package/dist/cjs-dev/components/time-picker/daikin-time-picker.cjs +1 -1
- package/dist/cjs-dev/components/time-picker/daikin-time-picker.d.cts +1 -1
- package/dist/cjs-dev/components/toast-notification/daikin-toast-notification.cjs +2 -3
- package/dist/cjs-dev/components/toggle/daikin-toggle.d.cts +1 -0
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.cjs +2 -4
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.d.cts +9 -2
- package/dist/cjs-dev/components/tree/daikin-tree.cjs +2 -0
- package/dist/cjs-dev/components/tree/daikin-tree.d.cts +4 -0
- package/dist/cjs-dev/components/tree-item/daikin-tree-item.cjs +1 -2
- package/dist/cjs-dev/components/tree-section/daikin-tree-section.cjs +7 -3
- package/dist/cjs-dev/components/vertical-navigation/daikin-vertical-navigation.cjs +127 -0
- package/dist/cjs-dev/components/vertical-navigation/daikin-vertical-navigation.d.cts +77 -0
- package/dist/cjs-dev/components/vertical-navigation/index.cjs +7 -0
- package/dist/cjs-dev/components/vertical-navigation/index.d.cts +1 -0
- package/dist/cjs-dev/components/vertical-navigation-item/daikin-vertical-navigation-item.cjs +378 -0
- package/dist/cjs-dev/components/vertical-navigation-item/daikin-vertical-navigation-item.d.cts +121 -0
- package/dist/cjs-dev/components/vertical-navigation-item/index.cjs +7 -0
- package/dist/cjs-dev/components/vertical-navigation-item/index.d.cts +1 -0
- package/dist/cjs-dev/components/vertical-navigation-menu-item/daikin-vertical-navigation-menu-item.cjs +176 -0
- package/dist/cjs-dev/components/vertical-navigation-menu-item/daikin-vertical-navigation-menu-item.d.cts +86 -0
- package/dist/cjs-dev/components/vertical-navigation-menu-item/index.cjs +7 -0
- package/dist/cjs-dev/components/vertical-navigation-menu-item/index.d.cts +1 -0
- package/dist/cjs-dev/controllers/block-scroll.cjs +43 -0
- package/dist/cjs-dev/controllers/block-scroll.d.cts +48 -0
- package/dist/cjs-dev/controllers/focus-trap.cjs +33 -17
- package/dist/cjs-dev/controllers/focus-trap.d.cts +1 -1
- package/dist/cjs-dev/index.cjs +35 -0
- package/dist/cjs-dev/tailwind.css.cjs +1 -1
- package/dist/cjs-dev/utils/notification-common.cjs +1 -1
- package/dist/es/base/dds-element.js +3 -2
- package/dist/es/base/dds-form-element.d.ts +1 -0
- package/dist/es/base/dds-property.d.ts +2 -2
- package/dist/es/components/accordion/daikin-accordion.d.ts +4 -0
- package/dist/es/components/accordion/daikin-accordion.js +1 -0
- package/dist/es/components/accordion-item/daikin-accordion-item.d.ts +1 -1
- package/dist/es/components/accordion-item/daikin-accordion-item.js +13 -11
- package/dist/es/components/badge/daikin-badge.d.ts +25 -4
- package/dist/es/components/badge/daikin-badge.js +72 -7
- package/dist/es/components/breadcrumb/daikin-breadcrumb.d.ts +1 -0
- package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.js +1 -4
- package/dist/es/components/button/daikin-button.d.ts +2 -2
- package/dist/es/components/button/daikin-button.js +4 -6
- package/dist/es/components/calendar/daikin-calendar.d.ts +2 -0
- package/dist/es/components/calendar/daikin-calendar.js +3 -1
- package/dist/es/components/card-header/daikin-card-header.js +0 -2
- package/dist/es/components/carousel/daikin-carousel.d.ts +1 -0
- package/dist/es/components/carousel-item/daikin-carousel-item.js +3 -3
- package/dist/es/components/checkbox/daikin-checkbox.d.ts +9 -1
- package/dist/es/components/checkbox/daikin-checkbox.js +25 -5
- package/dist/es/components/chip/daikin-chip.d.ts +1 -0
- package/dist/es/components/chip/daikin-chip.js +2 -4
- package/dist/es/components/combobox/daikin-combobox.d.ts +3 -1
- package/dist/es/components/combobox/daikin-combobox.js +11 -4
- package/dist/es/components/date-picker/daikin-date-picker.d.ts +19 -1
- package/dist/es/components/date-picker/daikin-date-picker.js +127 -62
- package/dist/es/components/divider/daikin-divider.d.ts +23 -0
- package/dist/es/components/divider/daikin-divider.js +43 -0
- package/dist/es/components/divider/index.d.ts +1 -0
- package/dist/es/components/divider/index.js +4 -0
- package/dist/es/components/drawer/daikin-drawer.d.ts +91 -0
- package/dist/es/components/drawer/daikin-drawer.js +230 -0
- package/dist/es/components/drawer/index.d.ts +1 -0
- package/dist/es/components/drawer/index.js +4 -0
- package/dist/es/components/drawer-footer/daikin-drawer-footer.d.ts +33 -0
- package/dist/es/components/drawer-footer/daikin-drawer-footer.js +37 -0
- package/dist/es/components/drawer-footer/index.d.ts +1 -0
- package/dist/es/components/drawer-footer/index.js +4 -0
- package/dist/es/components/drawer-header/daikin-drawer-header.d.ts +41 -0
- package/dist/es/components/drawer-header/daikin-drawer-header.js +84 -0
- package/dist/es/components/drawer-header/index.d.ts +1 -0
- package/dist/es/components/drawer-header/index.js +4 -0
- package/dist/es/components/dropdown/daikin-dropdown.d.ts +3 -1
- package/dist/es/components/dropdown/daikin-dropdown.js +11 -2
- package/dist/es/components/dropdown-item/daikin-dropdown-item.js +0 -2
- package/dist/es/components/empty-state/daikin-empty-state.js +2 -2
- package/dist/es/components/icon/daikin-icon.js +1 -2
- package/dist/es/components/icon-button/daikin-icon-button.js +0 -1
- package/dist/es/components/index.d.ts +7 -0
- package/dist/es/components/index.js +14 -0
- package/dist/es/components/inline-notification/daikin-inline-notification.js +1 -7
- package/dist/es/components/input-group/daikin-input-group.js +16 -11
- package/dist/es/components/link/daikin-link.js +26 -23
- package/dist/es/components/list/daikin-list.d.ts +8 -0
- package/dist/es/components/list/daikin-list.js +13 -1
- package/dist/es/components/list-item/daikin-list-item.js +30 -9
- package/dist/es/components/menu/daikin-menu.d.ts +23 -5
- package/dist/es/components/menu/daikin-menu.js +85 -11
- package/dist/es/components/modal/daikin-modal.d.ts +25 -0
- package/dist/es/components/modal/daikin-modal.js +18 -1
- package/dist/es/components/modal-footer/daikin-modal-footer.js +1 -1
- package/dist/es/components/modal-header/daikin-modal-header.js +0 -2
- package/dist/es/components/navigation/daikin-navigation.d.ts +1 -0
- package/dist/es/components/navigation/daikin-navigation.js +2 -1
- package/dist/es/components/navigation-item/daikin-navigation-item.js +6 -7
- package/dist/es/components/pagination/daikin-pagination.d.ts +4 -1
- package/dist/es/components/pagination/daikin-pagination.js +13 -6
- package/dist/es/components/progress-bar/daikin-progress-bar.js +2 -3
- package/dist/es/components/progress-indicator/daikin-progress-indicator.d.ts +4 -4
- package/dist/es/components/progress-indicator/daikin-progress-indicator.js +1 -1
- package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.d.ts +1 -1
- package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.js +7 -5
- package/dist/es/components/radio/daikin-radio.d.ts +1 -0
- package/dist/es/components/radio/daikin-radio.js +14 -2
- package/dist/es/components/radio-group/daikin-radio-group.d.ts +2 -1
- package/dist/es/components/radio-group/daikin-radio-group.js +2 -0
- package/dist/es/components/select/daikin-select.js +0 -1
- package/dist/es/components/slider/daikin-slider.d.ts +1 -1
- package/dist/es/components/slider/daikin-slider.js +14 -4
- package/dist/es/components/status-message/daikin-status-message.js +3 -4
- package/dist/es/components/tab/daikin-tab.js +0 -2
- package/dist/es/components/table/daikin-table.d.ts +2 -0
- package/dist/es/components/table/daikin-table.js +1 -1
- package/dist/es/components/tabs/daikin-tabs.d.ts +1 -0
- package/dist/es/components/tag/daikin-tag.js +1 -1
- package/dist/es/components/text-area/daikin-text-area.d.ts +1 -1
- package/dist/es/components/text-area/daikin-text-area.js +0 -1
- package/dist/es/components/text-field/daikin-text-field.d.ts +1 -1
- package/dist/es/components/text-field/daikin-text-field.js +0 -1
- package/dist/es/components/text-masked-field/daikin-text-masked-field.d.ts +1 -1
- package/dist/es/components/text-masked-field/daikin-text-masked-field.js +0 -1
- package/dist/es/components/time-picker/daikin-time-picker.d.ts +1 -1
- package/dist/es/components/time-picker/daikin-time-picker.js +1 -1
- package/dist/es/components/toast-notification/daikin-toast-notification.js +2 -3
- package/dist/es/components/toggle/daikin-toggle.d.ts +1 -0
- package/dist/es/components/tooltip/daikin-tooltip.d.ts +9 -2
- package/dist/es/components/tooltip/daikin-tooltip.js +2 -4
- package/dist/es/components/tree/daikin-tree.d.ts +4 -0
- package/dist/es/components/tree/daikin-tree.js +2 -0
- package/dist/es/components/tree-item/daikin-tree-item.js +1 -2
- package/dist/es/components/tree-section/daikin-tree-section.js +7 -3
- package/dist/es/components/vertical-navigation/daikin-vertical-navigation.d.ts +77 -0
- package/dist/es/components/vertical-navigation/daikin-vertical-navigation.js +116 -0
- package/dist/es/components/vertical-navigation/index.d.ts +1 -0
- package/dist/es/components/vertical-navigation/index.js +4 -0
- package/dist/es/components/vertical-navigation-item/daikin-vertical-navigation-item.d.ts +121 -0
- package/dist/es/components/vertical-navigation-item/daikin-vertical-navigation-item.js +379 -0
- package/dist/es/components/vertical-navigation-item/index.d.ts +1 -0
- package/dist/es/components/vertical-navigation-item/index.js +4 -0
- package/dist/es/components/vertical-navigation-menu-item/daikin-vertical-navigation-menu-item.d.ts +86 -0
- package/dist/es/components/vertical-navigation-menu-item/daikin-vertical-navigation-menu-item.js +177 -0
- package/dist/es/components/vertical-navigation-menu-item/index.d.ts +1 -0
- package/dist/es/components/vertical-navigation-menu-item/index.js +4 -0
- package/dist/es/controllers/block-scroll.d.ts +48 -0
- package/dist/es/controllers/block-scroll.js +43 -0
- package/dist/es/controllers/focus-trap.d.ts +1 -1
- package/dist/es/controllers/focus-trap.js +33 -17
- package/dist/es/index.js +14 -0
- package/dist/es/tailwind.css.js +1 -1
- package/dist/es/utils/notification-common.js +1 -1
- package/dist/es-dev/base/dds-element.js +3 -2
- package/dist/es-dev/base/dds-form-element.d.ts +1 -0
- package/dist/es-dev/base/dds-property.d.ts +2 -2
- package/dist/es-dev/components/accordion/daikin-accordion.d.ts +4 -0
- package/dist/es-dev/components/accordion/daikin-accordion.js +1 -0
- package/dist/es-dev/components/accordion-item/daikin-accordion-item.d.ts +1 -1
- package/dist/es-dev/components/accordion-item/daikin-accordion-item.js +13 -11
- package/dist/es-dev/components/badge/daikin-badge.d.ts +25 -4
- package/dist/es-dev/components/badge/daikin-badge.js +72 -7
- package/dist/es-dev/components/breadcrumb/daikin-breadcrumb.d.ts +1 -0
- package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.js +1 -4
- package/dist/es-dev/components/button/daikin-button.d.ts +2 -2
- package/dist/es-dev/components/button/daikin-button.js +4 -6
- package/dist/es-dev/components/calendar/daikin-calendar.d.ts +2 -0
- package/dist/es-dev/components/calendar/daikin-calendar.js +3 -1
- package/dist/es-dev/components/card-header/daikin-card-header.js +0 -2
- package/dist/es-dev/components/carousel/daikin-carousel.d.ts +1 -0
- package/dist/es-dev/components/carousel-item/daikin-carousel-item.js +3 -3
- package/dist/es-dev/components/checkbox/daikin-checkbox.d.ts +9 -1
- package/dist/es-dev/components/checkbox/daikin-checkbox.js +25 -5
- package/dist/es-dev/components/chip/daikin-chip.d.ts +1 -0
- package/dist/es-dev/components/chip/daikin-chip.js +2 -4
- package/dist/es-dev/components/combobox/daikin-combobox.d.ts +3 -1
- package/dist/es-dev/components/combobox/daikin-combobox.js +11 -4
- package/dist/es-dev/components/date-picker/daikin-date-picker.d.ts +19 -1
- package/dist/es-dev/components/date-picker/daikin-date-picker.js +127 -62
- package/dist/es-dev/components/divider/daikin-divider.d.ts +23 -0
- package/dist/es-dev/components/divider/daikin-divider.js +43 -0
- package/dist/es-dev/components/divider/index.d.ts +1 -0
- package/dist/es-dev/components/divider/index.js +4 -0
- package/dist/es-dev/components/drawer/daikin-drawer.d.ts +91 -0
- package/dist/es-dev/components/drawer/daikin-drawer.js +230 -0
- package/dist/es-dev/components/drawer/index.d.ts +1 -0
- package/dist/es-dev/components/drawer/index.js +4 -0
- package/dist/es-dev/components/drawer-footer/daikin-drawer-footer.d.ts +33 -0
- package/dist/es-dev/components/drawer-footer/daikin-drawer-footer.js +37 -0
- package/dist/es-dev/components/drawer-footer/index.d.ts +1 -0
- package/dist/es-dev/components/drawer-footer/index.js +4 -0
- package/dist/es-dev/components/drawer-header/daikin-drawer-header.d.ts +41 -0
- package/dist/es-dev/components/drawer-header/daikin-drawer-header.js +84 -0
- package/dist/es-dev/components/drawer-header/index.d.ts +1 -0
- package/dist/es-dev/components/drawer-header/index.js +4 -0
- package/dist/es-dev/components/dropdown/daikin-dropdown.d.ts +3 -1
- package/dist/es-dev/components/dropdown/daikin-dropdown.js +11 -2
- package/dist/es-dev/components/dropdown-item/daikin-dropdown-item.js +0 -2
- package/dist/es-dev/components/empty-state/daikin-empty-state.js +2 -2
- package/dist/es-dev/components/icon/daikin-icon.js +1 -2
- package/dist/es-dev/components/icon-button/daikin-icon-button.js +0 -1
- package/dist/es-dev/components/index.d.ts +7 -0
- package/dist/es-dev/components/index.js +14 -0
- package/dist/es-dev/components/inline-notification/daikin-inline-notification.js +1 -7
- package/dist/es-dev/components/input-group/daikin-input-group.js +16 -11
- package/dist/es-dev/components/link/daikin-link.js +26 -23
- package/dist/es-dev/components/list/daikin-list.d.ts +8 -0
- package/dist/es-dev/components/list/daikin-list.js +13 -1
- package/dist/es-dev/components/list-item/daikin-list-item.js +30 -9
- package/dist/es-dev/components/menu/daikin-menu.d.ts +23 -5
- package/dist/es-dev/components/menu/daikin-menu.js +85 -11
- package/dist/es-dev/components/modal/daikin-modal.d.ts +25 -0
- package/dist/es-dev/components/modal/daikin-modal.js +18 -1
- package/dist/es-dev/components/modal-footer/daikin-modal-footer.js +1 -1
- package/dist/es-dev/components/modal-header/daikin-modal-header.js +0 -2
- package/dist/es-dev/components/navigation/daikin-navigation.d.ts +1 -0
- package/dist/es-dev/components/navigation/daikin-navigation.js +2 -1
- package/dist/es-dev/components/navigation-item/daikin-navigation-item.js +6 -7
- package/dist/es-dev/components/pagination/daikin-pagination.d.ts +4 -1
- package/dist/es-dev/components/pagination/daikin-pagination.js +13 -6
- package/dist/es-dev/components/progress-bar/daikin-progress-bar.js +2 -3
- package/dist/es-dev/components/progress-indicator/daikin-progress-indicator.d.ts +4 -4
- 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.d.ts +1 -1
- package/dist/es-dev/components/progress-indicator-item/daikin-progress-indicator-item.js +7 -5
- package/dist/es-dev/components/radio/daikin-radio.d.ts +1 -0
- package/dist/es-dev/components/radio/daikin-radio.js +14 -2
- 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 -0
- package/dist/es-dev/components/select/daikin-select.js +0 -1
- package/dist/es-dev/components/slider/daikin-slider.d.ts +1 -1
- package/dist/es-dev/components/slider/daikin-slider.js +14 -4
- package/dist/es-dev/components/status-message/daikin-status-message.js +3 -4
- package/dist/es-dev/components/tab/daikin-tab.js +0 -2
- package/dist/es-dev/components/table/daikin-table.d.ts +2 -0
- package/dist/es-dev/components/table/daikin-table.js +1 -1
- package/dist/es-dev/components/tabs/daikin-tabs.d.ts +1 -0
- package/dist/es-dev/components/tag/daikin-tag.js +1 -1
- package/dist/es-dev/components/text-area/daikin-text-area.d.ts +1 -1
- package/dist/es-dev/components/text-area/daikin-text-area.js +0 -1
- package/dist/es-dev/components/text-field/daikin-text-field.d.ts +1 -1
- package/dist/es-dev/components/text-field/daikin-text-field.js +0 -1
- package/dist/es-dev/components/text-masked-field/daikin-text-masked-field.d.ts +1 -1
- package/dist/es-dev/components/text-masked-field/daikin-text-masked-field.js +0 -1
- package/dist/es-dev/components/time-picker/daikin-time-picker.d.ts +1 -1
- package/dist/es-dev/components/time-picker/daikin-time-picker.js +1 -1
- package/dist/es-dev/components/toast-notification/daikin-toast-notification.js +2 -3
- package/dist/es-dev/components/toggle/daikin-toggle.d.ts +1 -0
- package/dist/es-dev/components/tooltip/daikin-tooltip.d.ts +9 -2
- package/dist/es-dev/components/tooltip/daikin-tooltip.js +2 -4
- package/dist/es-dev/components/tree/daikin-tree.d.ts +4 -0
- package/dist/es-dev/components/tree/daikin-tree.js +2 -0
- package/dist/es-dev/components/tree-item/daikin-tree-item.js +1 -2
- package/dist/es-dev/components/tree-section/daikin-tree-section.js +7 -3
- package/dist/es-dev/components/vertical-navigation/daikin-vertical-navigation.d.ts +77 -0
- package/dist/es-dev/components/vertical-navigation/daikin-vertical-navigation.js +128 -0
- package/dist/es-dev/components/vertical-navigation/index.d.ts +1 -0
- package/dist/es-dev/components/vertical-navigation/index.js +4 -0
- package/dist/es-dev/components/vertical-navigation-item/daikin-vertical-navigation-item.d.ts +121 -0
- package/dist/es-dev/components/vertical-navigation-item/daikin-vertical-navigation-item.js +379 -0
- package/dist/es-dev/components/vertical-navigation-item/index.d.ts +1 -0
- package/dist/es-dev/components/vertical-navigation-item/index.js +4 -0
- package/dist/es-dev/components/vertical-navigation-menu-item/daikin-vertical-navigation-menu-item.d.ts +86 -0
- package/dist/es-dev/components/vertical-navigation-menu-item/daikin-vertical-navigation-menu-item.js +177 -0
- package/dist/es-dev/components/vertical-navigation-menu-item/index.d.ts +1 -0
- package/dist/es-dev/components/vertical-navigation-menu-item/index.js +4 -0
- package/dist/es-dev/controllers/block-scroll.d.ts +48 -0
- package/dist/es-dev/controllers/block-scroll.js +43 -0
- package/dist/es-dev/controllers/focus-trap.d.ts +1 -1
- package/dist/es-dev/controllers/focus-trap.js +33 -17
- package/dist/es-dev/index.js +14 -0
- package/dist/es-dev/tailwind.css.js +1 -1
- package/dist/es-dev/utils/notification-common.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,183 @@
|
|
|
1
1
|
# @daikin-oss/design-system-web-components
|
|
2
2
|
|
|
3
|
+
## 1.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#430](https://github.com/dsv-rp/DDS/pull/430) [`092cc3a`](https://github.com/dsv-rp/DDS/commit/092cc3a55b65e0712e06c7dc2bbf530823d28b9b) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Divider: Add divider component. (DDS-3073)
|
|
8
|
+
|
|
9
|
+
- [#448](https://github.com/dsv-rp/DDS/pull/448) [`f84640c`](https://github.com/dsv-rp/DDS/commit/f84640c970ad9f69db0b2b77dec7b028780c542e) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Vertical Navigation: Add new Vertical Navigation component. (DDS-3124)
|
|
10
|
+
|
|
11
|
+
- [#403](https://github.com/dsv-rp/DDS/pull/403) [`73f2866`](https://github.com/dsv-rp/DDS/commit/73f28664b0abcbd89c67cfaf9b4e80b1e84a3c9c) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - List Item: Add underline divider support. (DDS-3006)
|
|
12
|
+
|
|
13
|
+
- [#396](https://github.com/dsv-rp/DDS/pull/396) [`0a69700`](https://github.com/dsv-rp/DDS/commit/0a69700bc954dc637c925d4370feb183fb45bae0) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Drawer: Add Drawer component. (DDS-2975)
|
|
14
|
+
Drawer Header: Add Drawer Header component. (DDS-2975)
|
|
15
|
+
Drawer Footer: Add Drawer Footer component. (DDS-2975)
|
|
16
|
+
|
|
17
|
+
- [#443](https://github.com/dsv-rp/DDS/pull/443) [`e1e1aa6`](https://github.com/dsv-rp/DDS/commit/e1e1aa6671bd986063c40e49508eb034bdf620e0) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Badge: Add large size and display mode to badge. (DDS-3128)
|
|
18
|
+
|
|
19
|
+
- [#449](https://github.com/dsv-rp/DDS/pull/449) [`6e3b0cf`](https://github.com/dsv-rp/DDS/commit/6e3b0cf44953fcb3dcd67f9ee6251fb0fc1552bd) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Header Recipe: Implement with navigation case. (DDS-3017)
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- [#442](https://github.com/dsv-rp/DDS/pull/442) [`d20ebca`](https://github.com/dsv-rp/DDS/commit/d20ebcae7ed5c0598bd2397147cdaa20490b1da9) Thanks [@yodas7](https://github.com/yodas7)! - Improve documentation and event consistency for controlled components. (DDS-3114)
|
|
24
|
+
|
|
25
|
+
- Add JSDoc guidance on keeping external state in sync for all components with externally controllable state (accordion-item, calendar, carousel, chip, drawer, menu, modal, table, tabs, tree, and all form controls).
|
|
26
|
+
- Accordion: fire `change` event when `openItems` changes due to user interaction.
|
|
27
|
+
- Tree: fire `change` event when `selectedItems` changes due to user interaction. Fix spurious `change` events that were incorrectly fired during initial render for trees containing disabled items.
|
|
28
|
+
- Tree Section: apply the same cancellable `toggle` guard to keyboard (ArrowLeft/Right) open/close, consistent with click behavior.
|
|
29
|
+
- Dropdown, Combobox: fire `toggle` event (with `oldState`/`newState`) when `open` changes. Fix spurious `toggle` events that were incorrectly fired on initial render.
|
|
30
|
+
- Date Picker: document existing `toggle` event (already fired via internal Popover API re-dispatch).
|
|
31
|
+
- Radio Group: fire `change` event when the selected radio changes via click (was already fired for keyboard navigation).
|
|
32
|
+
- Pagination: replace broken post-mutation `cancelable` `change` with a proper pre-mutation `before-change` event (cancellable, with `event.detail.page`), followed by a non-cancellable `change` event.
|
|
33
|
+
- Calendar: fire `view-change` event when the view switches between day / month / year picker.
|
|
34
|
+
- Menu: align `popoverValue` and `trigger` property docs with Tooltip; improve class-level description.
|
|
35
|
+
|
|
36
|
+
- [#436](https://github.com/dsv-rp/DDS/pull/436) [`481f812`](https://github.com/dsv-rp/DDS/commit/481f812f04154ac02029f00431b8299f5834b90b) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Navigation/Menu: Improved the responsive strategy for the navigation component (and menu integration with navigation-item triggers). (DDS-3010)
|
|
37
|
+
|
|
38
|
+
- [#426](https://github.com/dsv-rp/DDS/pull/426) [`759e3de`](https://github.com/dsv-rp/DDS/commit/759e3de207faf1ae058913186f37baf194370fcc) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - List: Fix the wrong line height and remove checkbox from story. (DDS-3062, DDS-3063)
|
|
39
|
+
|
|
40
|
+
- [#444](https://github.com/dsv-rp/DDS/pull/444) [`18c735b`](https://github.com/dsv-rp/DDS/commit/18c735bf20804c4d14dc489265fae2cba85b0fa2) Thanks [@dk-wei](https://github.com/dk-wei)! - Menu: Fixed the issue where the menu failed to open on touch devices.
|
|
41
|
+
|
|
42
|
+
- [#413](https://github.com/dsv-rp/DDS/pull/413) [`7d1180e`](https://github.com/dsv-rp/DDS/commit/7d1180efbc301a3de1a2aa9d7c58fa6327fc632a) Thanks [@dk-wei](https://github.com/dk-wei)! - Calendar (Storybook): Change max and min values on kitchen sink page. (DDS-0307)
|
|
43
|
+
|
|
44
|
+
- [#432](https://github.com/dsv-rp/DDS/pull/432) [`112206d`](https://github.com/dsv-rp/DDS/commit/112206d5a2996daccf20e69509e9a4307e365e3b) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Progress Indicator: Adjust success icon position. (DDS-3077)
|
|
45
|
+
|
|
46
|
+
- [#431](https://github.com/dsv-rp/DDS/pull/431) [`8c8c57c`](https://github.com/dsv-rp/DDS/commit/8c8c57ce1f2c49f5887775dfaf0e4140da7e59b1) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Modal: Disable scrolling on the underlying content area covered by the backdrop when the modal is active. (DDS-3083)
|
|
47
|
+
Modal: Add overlay color token to modal backdrop. (DDS-3087)
|
|
48
|
+
|
|
49
|
+
- [#433](https://github.com/dsv-rp/DDS/pull/433) [`0195360`](https://github.com/dsv-rp/DDS/commit/01953601b606274b4db46d25ecc74ed61de45b66) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Chore: Add global font token to specify default font family, font size, font weight, line height. (DDS-3089)
|
|
50
|
+
Corrected the font family for the following components. (DDS-3089)
|
|
51
|
+
|
|
52
|
+
- Breadcrumb
|
|
53
|
+
- List
|
|
54
|
+
- Table
|
|
55
|
+
- Tree
|
|
56
|
+
|
|
57
|
+
- [#401](https://github.com/dsv-rp/DDS/pull/401) [`014ed76`](https://github.com/dsv-rp/DDS/commit/014ed764c4ba9c048aa1a281c45025157ab2d93e) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Tooltip: Improved and clarified the documentation regarding the `trigger` and `popover-value` APIs. (DDS-3003)
|
|
58
|
+
|
|
59
|
+
- [#440](https://github.com/dsv-rp/DDS/pull/440) [`2d910a3`](https://github.com/dsv-rp/DDS/commit/2d910a3c7557df8ebb65df2ec641a00aebf56fbf) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Modal: Fixed header layout scrolling on low screen heights. (DDS-3102)
|
|
60
|
+
Storybook: Fixed modal title and description visibility in the Persistent story. (DDS-3105)
|
|
61
|
+
Modal: Adjusted button spacing for vertically stacked modal footers. (DDS-3081)
|
|
62
|
+
|
|
63
|
+
- [#446](https://github.com/dsv-rp/DDS/pull/446) [`8410ae8`](https://github.com/dsv-rp/DDS/commit/8410ae831a6b6f1f3d21c5d6d273da6695519940) Thanks [@dk-wei](https://github.com/dk-wei)! - Fix icon position for under components. (DDS-3117)
|
|
64
|
+
|
|
65
|
+
- Accordion
|
|
66
|
+
- List
|
|
67
|
+
|
|
68
|
+
- [#412](https://github.com/dsv-rp/DDS/pull/412) [`3bd76ae`](https://github.com/dsv-rp/DDS/commit/3bd76ae38fe565028e06459b7840fd70426ad584) Thanks [@dk-wei](https://github.com/dk-wei)! - Time Picker (Storybook): Add min and max patterns for kitchen sink page. (DDS-3035)
|
|
69
|
+
|
|
70
|
+
- [#451](https://github.com/dsv-rp/DDS/pull/451) [`50fa4e9`](https://github.com/dsv-rp/DDS/commit/50fa4e9faa24da3b779f40becf017f8eeb2a977f) Thanks [@dk-wei](https://github.com/dk-wei)! - Data Display(Enhancement):Add pagination for data display recipe.
|
|
71
|
+
|
|
72
|
+
- [#410](https://github.com/dsv-rp/DDS/pull/410) [`17a0f75`](https://github.com/dsv-rp/DDS/commit/17a0f75acb00053907a12a8de9a7f5866c730460) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Set `cursor: pointer` to the following components:
|
|
73
|
+
|
|
74
|
+
- Checkbox
|
|
75
|
+
- Radio
|
|
76
|
+
- Slider
|
|
77
|
+
|
|
78
|
+
- [#435](https://github.com/dsv-rp/DDS/pull/435) [`59c135d`](https://github.com/dsv-rp/DDS/commit/59c135d05372bb7aac50e8ae3c19361057341625) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Icon: Remove useless console log. (DDS-3094)
|
|
79
|
+
|
|
80
|
+
- [#400](https://github.com/dsv-rp/DDS/pull/400) [`755814a`](https://github.com/dsv-rp/DDS/commit/755814a086aa5629386e6ebd02c4f5cd1b07cc7c) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Date Picker: Fixed a scrolling issue caused by the screen-reader-only span within the date picker. (DDS-3004)
|
|
81
|
+
Status Message: Add `position: relative` to the parent of the `sr-only` element. (DDS-3004)
|
|
82
|
+
|
|
83
|
+
- [#446](https://github.com/dsv-rp/DDS/pull/446) [`8410ae8`](https://github.com/dsv-rp/DDS/commit/8410ae831a6b6f1f3d21c5d6d273da6695519940) Thanks [@dk-wei](https://github.com/dk-wei)! - Accordion: Fix icon position for accordion and fix padding issue. (DDS-3117 DDS-3142)
|
|
84
|
+
|
|
85
|
+
- [#393](https://github.com/dsv-rp/DDS/pull/393) [`45caaa6`](https://github.com/dsv-rp/DDS/commit/45caaa64ea5a73aa491c27bec4e06306054e874a) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Button: Fix the height of large button. (DDS-2973)
|
|
86
|
+
|
|
87
|
+
- [#382](https://github.com/dsv-rp/DDS/pull/382) [`f8b22a1`](https://github.com/dsv-rp/DDS/commit/f8b22a1020298ffcb66287b682710ce9f206747e) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Date Picker: Updated the date picker's input format to automatically adapt based on the system locale. (DDS-2900)
|
|
88
|
+
Date Picker: Added default placeholder text that reflects the system locale, enhancing user experience. To remove the default placeholder, set the `placeholder` property to an empty string. (DDS-2900)
|
|
89
|
+
|
|
90
|
+
- [#415](https://github.com/dsv-rp/DDS/pull/415) [`d987357`](https://github.com/dsv-rp/DDS/commit/d987357249d33fc348c1e658dcb253993d1f3cbd) Thanks [@dk-wei](https://github.com/dk-wei)! - Time Picker (Storybook): Change min and max name on kitchen sink page. (DDS-3035)
|
|
91
|
+
|
|
92
|
+
## 1.6.0-next.0
|
|
93
|
+
|
|
94
|
+
### Minor Changes
|
|
95
|
+
|
|
96
|
+
- [#430](https://github.com/dsv-rp/DDS/pull/430) [`092cc3a`](https://github.com/dsv-rp/DDS/commit/092cc3a55b65e0712e06c7dc2bbf530823d28b9b) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Divider: Add divider component. (DDS-3073)
|
|
97
|
+
|
|
98
|
+
- [#448](https://github.com/dsv-rp/DDS/pull/448) [`f84640c`](https://github.com/dsv-rp/DDS/commit/f84640c970ad9f69db0b2b77dec7b028780c542e) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Vertical Navigation: Add new Vertical Navigation component. (DDS-3124)
|
|
99
|
+
|
|
100
|
+
- [#403](https://github.com/dsv-rp/DDS/pull/403) [`73f2866`](https://github.com/dsv-rp/DDS/commit/73f28664b0abcbd89c67cfaf9b4e80b1e84a3c9c) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - List Item: Add underline divider support. (DDS-3006)
|
|
101
|
+
|
|
102
|
+
- [#396](https://github.com/dsv-rp/DDS/pull/396) [`0a69700`](https://github.com/dsv-rp/DDS/commit/0a69700bc954dc637c925d4370feb183fb45bae0) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Drawer: Add Drawer component. (DDS-2975)
|
|
103
|
+
Drawer Header: Add Drawer Header component. (DDS-2975)
|
|
104
|
+
Drawer Footer: Add Drawer Footer component. (DDS-2975)
|
|
105
|
+
|
|
106
|
+
- [#443](https://github.com/dsv-rp/DDS/pull/443) [`e1e1aa6`](https://github.com/dsv-rp/DDS/commit/e1e1aa6671bd986063c40e49508eb034bdf620e0) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Badge: Add large size and display mode to badge. (DDS-3128)
|
|
107
|
+
|
|
108
|
+
- [#449](https://github.com/dsv-rp/DDS/pull/449) [`6e3b0cf`](https://github.com/dsv-rp/DDS/commit/6e3b0cf44953fcb3dcd67f9ee6251fb0fc1552bd) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Header Recipe: Implement with navigation case. (DDS-3017)
|
|
109
|
+
|
|
110
|
+
### Patch Changes
|
|
111
|
+
|
|
112
|
+
- [#442](https://github.com/dsv-rp/DDS/pull/442) [`d20ebca`](https://github.com/dsv-rp/DDS/commit/d20ebcae7ed5c0598bd2397147cdaa20490b1da9) Thanks [@yodas7](https://github.com/yodas7)! - Improve documentation and event consistency for controlled components. (DDS-3114)
|
|
113
|
+
|
|
114
|
+
- Add JSDoc guidance on keeping external state in sync for all components with externally controllable state (accordion-item, calendar, carousel, chip, drawer, menu, modal, table, tabs, tree, and all form controls).
|
|
115
|
+
- Accordion: fire `change` event when `openItems` changes due to user interaction.
|
|
116
|
+
- Tree: fire `change` event when `selectedItems` changes due to user interaction. Fix spurious `change` events that were incorrectly fired during initial render for trees containing disabled items.
|
|
117
|
+
- Tree Section: apply the same cancellable `toggle` guard to keyboard (ArrowLeft/Right) open/close, consistent with click behavior.
|
|
118
|
+
- Dropdown, Combobox: fire `toggle` event (with `oldState`/`newState`) when `open` changes. Fix spurious `toggle` events that were incorrectly fired on initial render.
|
|
119
|
+
- Date Picker: document existing `toggle` event (already fired via internal Popover API re-dispatch).
|
|
120
|
+
- Radio Group: fire `change` event when the selected radio changes via click (was already fired for keyboard navigation).
|
|
121
|
+
- Pagination: replace broken post-mutation `cancelable` `change` with a proper pre-mutation `before-change` event (cancellable, with `event.detail.page`), followed by a non-cancellable `change` event.
|
|
122
|
+
- Calendar: fire `view-change` event when the view switches between day / month / year picker.
|
|
123
|
+
- Menu: align `popoverValue` and `trigger` property docs with Tooltip; improve class-level description.
|
|
124
|
+
|
|
125
|
+
- [#436](https://github.com/dsv-rp/DDS/pull/436) [`481f812`](https://github.com/dsv-rp/DDS/commit/481f812f04154ac02029f00431b8299f5834b90b) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Navigation/Menu: Improved the responsive strategy for the navigation component (and menu integration with navigation-item triggers). (DDS-3010)
|
|
126
|
+
|
|
127
|
+
- [#426](https://github.com/dsv-rp/DDS/pull/426) [`759e3de`](https://github.com/dsv-rp/DDS/commit/759e3de207faf1ae058913186f37baf194370fcc) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - List: Fix the wrong line height and remove checkbox from story. (DDS-3062, DDS-3063)
|
|
128
|
+
|
|
129
|
+
- [#444](https://github.com/dsv-rp/DDS/pull/444) [`18c735b`](https://github.com/dsv-rp/DDS/commit/18c735bf20804c4d14dc489265fae2cba85b0fa2) Thanks [@dk-wei](https://github.com/dk-wei)! - Menu: Fixed the issue where the menu failed to open on touch devices.
|
|
130
|
+
|
|
131
|
+
- [#413](https://github.com/dsv-rp/DDS/pull/413) [`7d1180e`](https://github.com/dsv-rp/DDS/commit/7d1180efbc301a3de1a2aa9d7c58fa6327fc632a) Thanks [@dk-wei](https://github.com/dk-wei)! - Calendar (Storybook): Change max and min values on kitchen sink page. (DDS-0307)
|
|
132
|
+
|
|
133
|
+
- [#432](https://github.com/dsv-rp/DDS/pull/432) [`112206d`](https://github.com/dsv-rp/DDS/commit/112206d5a2996daccf20e69509e9a4307e365e3b) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Progress Indicator: Adjust success icon position. (DDS-3077)
|
|
134
|
+
|
|
135
|
+
- [#431](https://github.com/dsv-rp/DDS/pull/431) [`8c8c57c`](https://github.com/dsv-rp/DDS/commit/8c8c57ce1f2c49f5887775dfaf0e4140da7e59b1) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Modal: Disable scrolling on the underlying content area covered by the backdrop when the modal is active. (DDS-3083)
|
|
136
|
+
Modal: Add overlay color token to modal backdrop. (DDS-3087)
|
|
137
|
+
|
|
138
|
+
- [#433](https://github.com/dsv-rp/DDS/pull/433) [`0195360`](https://github.com/dsv-rp/DDS/commit/01953601b606274b4db46d25ecc74ed61de45b66) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Chore: Add global font token to specify default font family, font size, font weight, line height. (DDS-3089)
|
|
139
|
+
Corrected the font family for the following components. (DDS-3089)
|
|
140
|
+
|
|
141
|
+
- Breadcrumb
|
|
142
|
+
- List
|
|
143
|
+
- Table
|
|
144
|
+
- Tree
|
|
145
|
+
|
|
146
|
+
- [#401](https://github.com/dsv-rp/DDS/pull/401) [`014ed76`](https://github.com/dsv-rp/DDS/commit/014ed764c4ba9c048aa1a281c45025157ab2d93e) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Tooltip: Improved and clarified the documentation regarding the `trigger` and `popover-value` APIs. (DDS-3003)
|
|
147
|
+
|
|
148
|
+
- [#440](https://github.com/dsv-rp/DDS/pull/440) [`2d910a3`](https://github.com/dsv-rp/DDS/commit/2d910a3c7557df8ebb65df2ec641a00aebf56fbf) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Modal: Fixed header layout scrolling on low screen heights. (DDS-3102)
|
|
149
|
+
Storybook: Fixed modal title and description visibility in the Persistent story. (DDS-3105)
|
|
150
|
+
Modal: Adjusted button spacing for vertically stacked modal footers. (DDS-3081)
|
|
151
|
+
|
|
152
|
+
- [#446](https://github.com/dsv-rp/DDS/pull/446) [`8410ae8`](https://github.com/dsv-rp/DDS/commit/8410ae831a6b6f1f3d21c5d6d273da6695519940) Thanks [@dk-wei](https://github.com/dk-wei)! - Fix icon position for under components. (DDS-3117)
|
|
153
|
+
|
|
154
|
+
- Accordion
|
|
155
|
+
- List
|
|
156
|
+
|
|
157
|
+
- [#412](https://github.com/dsv-rp/DDS/pull/412) [`3bd76ae`](https://github.com/dsv-rp/DDS/commit/3bd76ae38fe565028e06459b7840fd70426ad584) Thanks [@dk-wei](https://github.com/dk-wei)! - Time Picker (Storybook): Add min and max patterns for kitchen sink page. (DDS-3035)
|
|
158
|
+
|
|
159
|
+
- [#451](https://github.com/dsv-rp/DDS/pull/451) [`50fa4e9`](https://github.com/dsv-rp/DDS/commit/50fa4e9faa24da3b779f40becf017f8eeb2a977f) Thanks [@dk-wei](https://github.com/dk-wei)! - Data Display(Enhancement):Add pagination for data display recipe.
|
|
160
|
+
|
|
161
|
+
- [#410](https://github.com/dsv-rp/DDS/pull/410) [`17a0f75`](https://github.com/dsv-rp/DDS/commit/17a0f75acb00053907a12a8de9a7f5866c730460) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Set `cursor: pointer` to the following components:
|
|
162
|
+
|
|
163
|
+
- Checkbox
|
|
164
|
+
- Radio
|
|
165
|
+
- Slider
|
|
166
|
+
|
|
167
|
+
- [#435](https://github.com/dsv-rp/DDS/pull/435) [`59c135d`](https://github.com/dsv-rp/DDS/commit/59c135d05372bb7aac50e8ae3c19361057341625) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Icon: Remove useless console log. (DDS-3094)
|
|
168
|
+
|
|
169
|
+
- [#400](https://github.com/dsv-rp/DDS/pull/400) [`755814a`](https://github.com/dsv-rp/DDS/commit/755814a086aa5629386e6ebd02c4f5cd1b07cc7c) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Date Picker: Fixed a scrolling issue caused by the screen-reader-only span within the date picker. (DDS-3004)
|
|
170
|
+
Status Message: Add `position: relative` to the parent of the `sr-only` element. (DDS-3004)
|
|
171
|
+
|
|
172
|
+
- [#446](https://github.com/dsv-rp/DDS/pull/446) [`8410ae8`](https://github.com/dsv-rp/DDS/commit/8410ae831a6b6f1f3d21c5d6d273da6695519940) Thanks [@dk-wei](https://github.com/dk-wei)! - Accordion: Fix icon position for accordion and fix padding issue. (DDS-3117 DDS-3142)
|
|
173
|
+
|
|
174
|
+
- [#393](https://github.com/dsv-rp/DDS/pull/393) [`45caaa6`](https://github.com/dsv-rp/DDS/commit/45caaa64ea5a73aa491c27bec4e06306054e874a) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Button: Fix the height of large button. (DDS-2973)
|
|
175
|
+
|
|
176
|
+
- [#382](https://github.com/dsv-rp/DDS/pull/382) [`f8b22a1`](https://github.com/dsv-rp/DDS/commit/f8b22a1020298ffcb66287b682710ce9f206747e) Thanks [@rinjInTokyo](https://github.com/rinjInTokyo)! - Date Picker: Updated the date picker's input format to automatically adapt based on the system locale. (DDS-2900)
|
|
177
|
+
Date Picker: Added default placeholder text that reflects the system locale, enhancing user experience. To remove the default placeholder, set the `placeholder` property to an empty string. (DDS-2900)
|
|
178
|
+
|
|
179
|
+
- [#415](https://github.com/dsv-rp/DDS/pull/415) [`d987357`](https://github.com/dsv-rp/DDS/commit/d987357249d33fc348c1e658dcb253993d1f3cbd) Thanks [@dk-wei](https://github.com/dk-wei)! - Time Picker (Storybook): Change min and max name on kitchen sink page. (DDS-3035)
|
|
180
|
+
|
|
3
181
|
## 1.5.2
|
|
4
182
|
|
|
5
183
|
### Patch Changes
|