@daikin-oss/design-system-web-components 0.5.0 → 0.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 +37 -0
- package/dist/cjs/components/accordion/daikin-accordion.cjs +1 -1
- package/dist/cjs/components/accordion/index.d.cts +1 -0
- package/dist/cjs/components/accordion-item/daikin-accordion-item.cjs +1 -1
- package/dist/cjs/components/accordion-item/{daikin-accordion-item.d.ts → daikin-accordion-item.d.cts} +1 -1
- package/dist/cjs/components/accordion-item/index.d.cts +1 -0
- package/dist/cjs/components/breadcrumb/index.d.cts +1 -0
- package/dist/cjs/components/breadcrumb-item/daikin-breadcrumb-item.cjs +1 -5
- package/dist/cjs/components/breadcrumb-item/{daikin-breadcrumb-item.d.ts → daikin-breadcrumb-item.d.cts} +1 -6
- package/dist/cjs/components/breadcrumb-item/index.d.cts +1 -0
- package/dist/cjs/components/button/daikin-button.cjs +17 -11
- package/dist/{cjs-dev/components/button/daikin-button.d.ts → cjs/components/button/daikin-button.d.cts} +3 -3
- package/dist/cjs/components/button/index.d.cts +1 -0
- package/dist/cjs/components/checkbox/daikin-checkbox.cjs +1 -1
- package/dist/{cjs-dev/components/checkbox/daikin-checkbox.d.ts → cjs/components/checkbox/daikin-checkbox.d.cts} +4 -4
- package/dist/cjs/components/checkbox/index.d.cts +1 -0
- package/dist/cjs/components/dropdown/daikin-dropdown.cjs +12 -12
- package/dist/cjs/components/dropdown/{daikin-dropdown.d.ts → daikin-dropdown.d.cts} +6 -6
- package/dist/cjs/components/dropdown/index.d.cts +1 -0
- package/dist/cjs/components/dropdown-item/index.d.cts +1 -0
- package/dist/cjs/components/icon/daikin-icon.cjs +20 -16
- package/dist/{cjs-dev/components/icon/daikin-icon.d.ts → cjs/components/icon/daikin-icon.d.cts} +8 -6
- package/dist/cjs/components/icon/icons.json.cjs +20 -0
- package/dist/{cjs-dev/components/icon/icons.json.d.ts → cjs/components/icon/icons.json.d.cts} +20 -0
- package/dist/cjs/components/icon/index.d.cts +1 -0
- package/dist/cjs/components/icon-button/daikin-icon-button.cjs +165 -0
- package/dist/cjs/components/icon-button/daikin-icon-button.d.cts +82 -0
- package/dist/cjs/components/icon-button/index.cjs +7 -0
- package/dist/cjs/components/icon-button/index.d.cts +1 -0
- package/dist/cjs/components/index.cjs +30 -0
- package/dist/cjs/components/index.d.cts +31 -0
- package/dist/cjs/components/input-group/daikin-input-group.cjs +1 -1
- package/dist/{cjs-dev/components/input-group/daikin-input-group.d.ts → cjs/components/input-group/daikin-input-group.d.cts} +17 -2
- package/dist/cjs/components/input-group/index.d.cts +1 -0
- package/dist/cjs/components/link/daikin-link.cjs +107 -0
- package/dist/cjs/components/link/daikin-link.d.cts +43 -0
- package/dist/cjs/components/link/index.cjs +7 -0
- package/dist/cjs/components/link/index.d.cts +1 -0
- package/dist/cjs/components/list/index.d.cts +1 -0
- package/dist/cjs/components/list-item/daikin-list-item.cjs +20 -3
- package/dist/cjs/components/list-item/index.d.cts +1 -0
- package/dist/cjs/components/notification/daikin-notification.cjs +31 -24
- package/dist/cjs/components/notification/{daikin-notification.d.ts → daikin-notification.d.cts} +7 -7
- package/dist/cjs/components/notification/index.d.cts +1 -0
- package/dist/cjs/components/pagination/daikin-pagination.cjs +215 -0
- package/dist/cjs/components/pagination/daikin-pagination.d.cts +39 -0
- package/dist/cjs/components/pagination/index.cjs +7 -0
- package/dist/cjs/components/pagination/index.d.cts +1 -0
- package/dist/cjs/components/pagination/pagination-utils.cjs +50 -0
- package/dist/cjs/components/pagination/pagination-utils.d.cts +28 -0
- package/dist/cjs/components/progress-bar/{daikin-progress-bar.d.ts → daikin-progress-bar.d.cts} +1 -1
- package/dist/cjs/components/progress-bar/index.d.cts +1 -0
- package/dist/cjs/components/progress-indicator/index.d.cts +1 -0
- package/dist/cjs/components/progress-indicator-item/daikin-progress-indicator-item.cjs +12 -20
- package/dist/{cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.d.ts → cjs/components/progress-indicator-item/daikin-progress-indicator-item.d.cts} +2 -5
- package/dist/cjs/components/progress-indicator-item/index.d.cts +1 -0
- package/dist/cjs/components/radio/daikin-radio.cjs +1 -1
- package/dist/cjs/components/radio/{daikin-radio.d.ts → daikin-radio.d.cts} +4 -4
- package/dist/cjs/components/radio/index.d.cts +1 -0
- package/dist/cjs/components/radio-group/daikin-radio-group.cjs +1 -0
- package/dist/cjs/components/radio-group/{daikin-radio-group.d.ts → daikin-radio-group.d.cts} +2 -2
- package/dist/cjs/components/radio-group/index.d.cts +1 -0
- package/dist/cjs/components/select/daikin-select.cjs +25 -17
- package/dist/{cjs-dev/components/select/daikin-select.d.ts → cjs/components/select/daikin-select.d.cts} +6 -1
- package/dist/cjs/components/select/index.d.cts +1 -0
- package/dist/cjs/components/tab/index.d.cts +1 -0
- package/dist/{cjs-dev/components/tab-panels/daikin-tab-panels.d.ts → cjs/components/tab-panels/daikin-tab-panels.d.cts} +1 -1
- package/dist/cjs/components/tab-panels/index.d.cts +1 -0
- package/dist/cjs/components/table/daikin-table.cjs +248 -0
- package/dist/cjs/components/table/daikin-table.d.cts +130 -0
- package/dist/cjs/components/table/index.cjs +7 -0
- package/dist/cjs/components/table/index.d.cts +1 -0
- package/dist/cjs/components/table-cell/daikin-table-cell.cjs +68 -0
- package/dist/cjs/components/table-cell/daikin-table-cell.d.cts +41 -0
- package/dist/cjs/components/table-cell/index.cjs +7 -0
- package/dist/cjs/components/table-cell/index.d.cts +1 -0
- package/dist/cjs/components/table-header-cell/daikin-table-header-cell.cjs +93 -0
- package/dist/cjs/components/table-header-cell/daikin-table-header-cell.d.cts +50 -0
- package/dist/cjs/components/table-header-cell/index.cjs +7 -0
- package/dist/cjs/components/table-header-cell/index.d.cts +1 -0
- package/dist/cjs/components/tabs/index.d.cts +1 -0
- package/dist/cjs/components/text-area/daikin-text-area.cjs +4 -4
- package/dist/{cjs-dev/components/text-area/daikin-text-area.d.ts → cjs/components/text-area/daikin-text-area.d.cts} +3 -3
- package/dist/cjs/components/text-area/index.d.cts +1 -0
- package/dist/cjs/components/text-field/daikin-text-field.cjs +27 -16
- package/dist/cjs/components/text-field/{daikin-text-field.d.ts → daikin-text-field.d.cts} +4 -4
- package/dist/cjs/components/text-field/index.d.cts +1 -0
- package/dist/cjs/components/toggle/daikin-toggle.cjs +1 -1
- package/dist/{cjs-dev/components/toggle/daikin-toggle.d.ts → cjs/components/toggle/daikin-toggle.d.cts} +3 -3
- package/dist/cjs/components/toggle/index.d.cts +1 -0
- package/dist/cjs/components/tooltip/daikin-tooltip.cjs +38 -81
- package/dist/cjs/components/tooltip/{daikin-tooltip.d.ts → daikin-tooltip.d.cts} +1 -21
- package/dist/cjs/components/tooltip/index.d.cts +1 -0
- package/dist/cjs/controllers/floating-ui-auto-update.cjs +6 -0
- package/dist/cjs/controllers/{floating-ui-auto-update.d.ts → floating-ui-auto-update.d.cts} +2 -0
- package/dist/cjs/index.cjs +30 -0
- package/dist/cjs/index.d.cts +3 -0
- package/dist/cjs/tailwind.css.cjs +1 -2
- package/dist/cjs-dev/components/accordion/daikin-accordion.cjs +1 -1
- package/dist/cjs-dev/components/accordion/index.d.cts +1 -0
- package/dist/cjs-dev/components/accordion-item/daikin-accordion-item.cjs +1 -1
- package/dist/cjs-dev/components/accordion-item/{daikin-accordion-item.d.ts → daikin-accordion-item.d.cts} +1 -1
- package/dist/cjs-dev/components/accordion-item/index.d.cts +1 -0
- package/dist/cjs-dev/components/breadcrumb/index.d.cts +1 -0
- package/dist/cjs-dev/components/breadcrumb-item/daikin-breadcrumb-item.cjs +1 -5
- package/dist/cjs-dev/components/breadcrumb-item/{daikin-breadcrumb-item.d.ts → daikin-breadcrumb-item.d.cts} +1 -6
- package/dist/cjs-dev/components/breadcrumb-item/index.d.cts +1 -0
- package/dist/cjs-dev/components/button/daikin-button.cjs +17 -11
- package/dist/{cjs/components/button/daikin-button.d.ts → cjs-dev/components/button/daikin-button.d.cts} +3 -3
- package/dist/cjs-dev/components/button/index.d.cts +1 -0
- package/dist/cjs-dev/components/checkbox/daikin-checkbox.cjs +1 -1
- package/dist/{cjs/components/checkbox/daikin-checkbox.d.ts → cjs-dev/components/checkbox/daikin-checkbox.d.cts} +4 -4
- package/dist/cjs-dev/components/checkbox/index.d.cts +1 -0
- package/dist/cjs-dev/components/dropdown/daikin-dropdown.cjs +12 -12
- package/dist/cjs-dev/components/dropdown/{daikin-dropdown.d.ts → daikin-dropdown.d.cts} +6 -6
- package/dist/cjs-dev/components/dropdown/index.d.cts +1 -0
- package/dist/cjs-dev/components/dropdown-item/index.d.cts +1 -0
- package/dist/cjs-dev/components/icon/daikin-icon.cjs +20 -16
- package/dist/{cjs/components/icon/daikin-icon.d.ts → cjs-dev/components/icon/daikin-icon.d.cts} +8 -6
- package/dist/cjs-dev/components/icon/icons.json.cjs +20 -0
- package/dist/{cjs/components/icon/icons.json.d.ts → cjs-dev/components/icon/icons.json.d.cts} +20 -0
- package/dist/cjs-dev/components/icon/index.d.cts +1 -0
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.cjs +165 -0
- package/dist/cjs-dev/components/icon-button/daikin-icon-button.d.cts +82 -0
- package/dist/cjs-dev/components/icon-button/index.cjs +7 -0
- package/dist/cjs-dev/components/icon-button/index.d.cts +1 -0
- package/dist/cjs-dev/components/index.cjs +30 -0
- package/dist/cjs-dev/components/index.d.cts +31 -0
- package/dist/cjs-dev/components/input-group/daikin-input-group.cjs +1 -1
- package/dist/{cjs/components/input-group/daikin-input-group.d.ts → cjs-dev/components/input-group/daikin-input-group.d.cts} +17 -2
- package/dist/cjs-dev/components/input-group/index.d.cts +1 -0
- package/dist/cjs-dev/components/link/daikin-link.cjs +107 -0
- package/dist/cjs-dev/components/link/daikin-link.d.cts +43 -0
- package/dist/cjs-dev/components/link/index.cjs +7 -0
- package/dist/cjs-dev/components/link/index.d.cts +1 -0
- package/dist/cjs-dev/components/list/index.d.cts +1 -0
- package/dist/cjs-dev/components/list-item/daikin-list-item.cjs +20 -3
- package/dist/cjs-dev/components/list-item/index.d.cts +1 -0
- package/dist/cjs-dev/components/notification/daikin-notification.cjs +31 -24
- package/dist/cjs-dev/components/notification/{daikin-notification.d.ts → daikin-notification.d.cts} +7 -7
- package/dist/cjs-dev/components/notification/index.d.cts +1 -0
- package/dist/cjs-dev/components/pagination/daikin-pagination.cjs +215 -0
- package/dist/cjs-dev/components/pagination/daikin-pagination.d.cts +39 -0
- package/dist/cjs-dev/components/pagination/index.cjs +7 -0
- package/dist/cjs-dev/components/pagination/index.d.cts +1 -0
- package/dist/cjs-dev/components/pagination/pagination-utils.cjs +50 -0
- package/dist/cjs-dev/components/pagination/pagination-utils.d.cts +28 -0
- package/dist/cjs-dev/components/progress-bar/{daikin-progress-bar.d.ts → daikin-progress-bar.d.cts} +1 -1
- package/dist/cjs-dev/components/progress-bar/index.d.cts +1 -0
- package/dist/cjs-dev/components/progress-indicator/index.d.cts +1 -0
- package/dist/cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.cjs +12 -20
- package/dist/{cjs/components/progress-indicator-item/daikin-progress-indicator-item.d.ts → cjs-dev/components/progress-indicator-item/daikin-progress-indicator-item.d.cts} +2 -5
- package/dist/cjs-dev/components/progress-indicator-item/index.d.cts +1 -0
- package/dist/cjs-dev/components/radio/daikin-radio.cjs +1 -1
- package/dist/cjs-dev/components/radio/{daikin-radio.d.ts → daikin-radio.d.cts} +4 -4
- package/dist/cjs-dev/components/radio/index.d.cts +1 -0
- package/dist/cjs-dev/components/radio-group/daikin-radio-group.cjs +1 -0
- package/dist/cjs-dev/components/radio-group/{daikin-radio-group.d.ts → daikin-radio-group.d.cts} +2 -2
- package/dist/cjs-dev/components/radio-group/index.d.cts +1 -0
- package/dist/cjs-dev/components/select/daikin-select.cjs +25 -17
- package/dist/{cjs/components/select/daikin-select.d.ts → cjs-dev/components/select/daikin-select.d.cts} +6 -1
- package/dist/cjs-dev/components/select/index.d.cts +1 -0
- package/dist/cjs-dev/components/tab/index.d.cts +1 -0
- package/dist/{cjs/components/tab-panels/daikin-tab-panels.d.ts → cjs-dev/components/tab-panels/daikin-tab-panels.d.cts} +1 -1
- package/dist/cjs-dev/components/tab-panels/index.d.cts +1 -0
- package/dist/cjs-dev/components/table/daikin-table.cjs +260 -0
- package/dist/cjs-dev/components/table/daikin-table.d.cts +130 -0
- package/dist/cjs-dev/components/table/index.cjs +7 -0
- package/dist/cjs-dev/components/table/index.d.cts +1 -0
- package/dist/cjs-dev/components/table-cell/daikin-table-cell.cjs +68 -0
- package/dist/cjs-dev/components/table-cell/daikin-table-cell.d.cts +41 -0
- package/dist/cjs-dev/components/table-cell/index.cjs +7 -0
- package/dist/cjs-dev/components/table-cell/index.d.cts +1 -0
- package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.cjs +93 -0
- package/dist/cjs-dev/components/table-header-cell/daikin-table-header-cell.d.cts +50 -0
- package/dist/cjs-dev/components/table-header-cell/index.cjs +7 -0
- package/dist/cjs-dev/components/table-header-cell/index.d.cts +1 -0
- package/dist/cjs-dev/components/tabs/index.d.cts +1 -0
- package/dist/cjs-dev/components/text-area/daikin-text-area.cjs +4 -4
- package/dist/{cjs/components/text-area/daikin-text-area.d.ts → cjs-dev/components/text-area/daikin-text-area.d.cts} +3 -3
- package/dist/cjs-dev/components/text-area/index.d.cts +1 -0
- package/dist/cjs-dev/components/text-field/daikin-text-field.cjs +27 -16
- package/dist/cjs-dev/components/text-field/{daikin-text-field.d.ts → daikin-text-field.d.cts} +4 -4
- package/dist/cjs-dev/components/text-field/index.d.cts +1 -0
- package/dist/cjs-dev/components/toggle/daikin-toggle.cjs +1 -1
- package/dist/{cjs/components/toggle/daikin-toggle.d.ts → cjs-dev/components/toggle/daikin-toggle.d.cts} +3 -3
- package/dist/cjs-dev/components/toggle/index.d.cts +1 -0
- package/dist/cjs-dev/components/tooltip/daikin-tooltip.cjs +38 -81
- package/dist/cjs-dev/components/tooltip/{daikin-tooltip.d.ts → daikin-tooltip.d.cts} +1 -21
- package/dist/cjs-dev/components/tooltip/index.d.cts +1 -0
- package/dist/cjs-dev/controllers/floating-ui-auto-update.cjs +6 -0
- package/dist/cjs-dev/controllers/{floating-ui-auto-update.d.ts → floating-ui-auto-update.d.cts} +2 -0
- package/dist/cjs-dev/index.cjs +30 -0
- package/dist/cjs-dev/index.d.cts +3 -0
- package/dist/cjs-dev/tailwind.css.cjs +1 -2
- package/dist/es/components/accordion/daikin-accordion.js +1 -1
- package/dist/es/components/accordion/index.d.ts +1 -1
- package/dist/es/components/accordion-item/daikin-accordion-item.d.ts +1 -1
- package/dist/es/components/accordion-item/daikin-accordion-item.js +1 -1
- package/dist/es/components/accordion-item/index.d.ts +1 -1
- package/dist/es/components/breadcrumb/index.d.ts +1 -1
- package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.d.ts +1 -6
- package/dist/es/components/breadcrumb-item/daikin-breadcrumb-item.js +1 -5
- package/dist/es/components/breadcrumb-item/index.d.ts +1 -1
- package/dist/es/components/button/daikin-button.d.ts +3 -3
- package/dist/es/components/button/daikin-button.js +17 -11
- package/dist/es/components/button/index.d.ts +1 -1
- package/dist/es/components/checkbox/daikin-checkbox.d.ts +4 -4
- package/dist/es/components/checkbox/daikin-checkbox.js +1 -1
- package/dist/es/components/checkbox/index.d.ts +1 -1
- package/dist/es/components/dropdown/daikin-dropdown.d.ts +6 -6
- package/dist/es/components/dropdown/daikin-dropdown.js +12 -12
- package/dist/es/components/dropdown/index.d.ts +1 -1
- package/dist/es/components/dropdown-item/index.d.ts +1 -1
- package/dist/es/components/icon/daikin-icon.d.ts +8 -6
- package/dist/es/components/icon/daikin-icon.js +20 -16
- package/dist/es/components/icon/icons.json.d.ts +20 -0
- package/dist/es/components/icon/icons.json.js +20 -0
- package/dist/es/components/icon/index.d.ts +1 -1
- package/dist/es/components/icon-button/daikin-icon-button.d.ts +82 -0
- package/dist/es/components/icon-button/daikin-icon-button.js +166 -0
- package/dist/es/components/icon-button/index.d.ts +1 -0
- package/dist/es/components/icon-button/index.js +4 -0
- package/dist/es/components/index.d.ts +31 -25
- package/dist/es/components/index.js +12 -0
- package/dist/es/components/input-group/daikin-input-group.d.ts +17 -2
- package/dist/es/components/input-group/daikin-input-group.js +1 -1
- package/dist/es/components/input-group/index.d.ts +1 -1
- package/dist/es/components/link/daikin-link.d.ts +43 -0
- package/dist/es/components/link/daikin-link.js +108 -0
- package/dist/es/components/link/index.d.ts +1 -0
- package/dist/es/components/link/index.js +4 -0
- package/dist/es/components/list/index.d.ts +1 -1
- package/dist/es/components/list-item/daikin-list-item.js +20 -3
- package/dist/es/components/list-item/index.d.ts +1 -1
- package/dist/es/components/notification/daikin-notification.d.ts +7 -7
- package/dist/es/components/notification/daikin-notification.js +31 -24
- package/dist/es/components/notification/index.d.ts +1 -1
- package/dist/es/components/pagination/daikin-pagination.d.ts +39 -0
- package/dist/es/components/pagination/daikin-pagination.js +216 -0
- package/dist/es/components/pagination/index.d.ts +1 -0
- package/dist/es/components/pagination/index.js +4 -0
- package/dist/es/components/pagination/pagination-utils.d.ts +28 -0
- package/dist/es/components/pagination/pagination-utils.js +50 -0
- package/dist/es/components/progress-bar/daikin-progress-bar.d.ts +1 -1
- package/dist/es/components/progress-bar/index.d.ts +1 -1
- package/dist/es/components/progress-indicator/index.d.ts +1 -1
- package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.d.ts +2 -5
- package/dist/es/components/progress-indicator-item/daikin-progress-indicator-item.js +13 -21
- package/dist/es/components/progress-indicator-item/index.d.ts +1 -1
- package/dist/es/components/radio/daikin-radio.d.ts +4 -4
- package/dist/es/components/radio/daikin-radio.js +1 -1
- package/dist/es/components/radio/index.d.ts +1 -1
- package/dist/es/components/radio-group/daikin-radio-group.d.ts +2 -2
- package/dist/es/components/radio-group/daikin-radio-group.js +1 -0
- package/dist/es/components/radio-group/index.d.ts +1 -1
- package/dist/es/components/select/daikin-select.d.ts +6 -1
- package/dist/es/components/select/daikin-select.js +26 -18
- package/dist/es/components/select/index.d.ts +1 -1
- package/dist/es/components/tab/index.d.ts +1 -1
- package/dist/es/components/tab-panels/daikin-tab-panels.d.ts +1 -1
- package/dist/es/components/tab-panels/index.d.ts +1 -1
- package/dist/es/components/table/daikin-table.d.ts +130 -0
- package/dist/es/components/table/daikin-table.js +249 -0
- package/dist/es/components/table/index.d.ts +1 -0
- package/dist/es/components/table/index.js +4 -0
- package/dist/es/components/table-cell/daikin-table-cell.d.ts +41 -0
- package/dist/es/components/table-cell/daikin-table-cell.js +69 -0
- package/dist/es/components/table-cell/index.d.ts +1 -0
- package/dist/es/components/table-cell/index.js +4 -0
- package/dist/es/components/table-header-cell/daikin-table-header-cell.d.ts +50 -0
- package/dist/es/components/table-header-cell/daikin-table-header-cell.js +94 -0
- package/dist/es/components/table-header-cell/index.d.ts +1 -0
- package/dist/es/components/table-header-cell/index.js +4 -0
- package/dist/es/components/tabs/index.d.ts +1 -1
- package/dist/es/components/text-area/daikin-text-area.d.ts +3 -3
- package/dist/es/components/text-area/daikin-text-area.js +4 -4
- package/dist/es/components/text-area/index.d.ts +1 -1
- package/dist/es/components/text-field/daikin-text-field.d.ts +4 -4
- package/dist/es/components/text-field/daikin-text-field.js +27 -16
- package/dist/es/components/text-field/index.d.ts +1 -1
- package/dist/es/components/toggle/daikin-toggle.d.ts +3 -3
- package/dist/es/components/toggle/daikin-toggle.js +1 -1
- package/dist/es/components/toggle/index.d.ts +1 -1
- package/dist/es/components/tooltip/daikin-tooltip.d.ts +1 -21
- package/dist/es/components/tooltip/daikin-tooltip.js +40 -83
- package/dist/es/components/tooltip/index.d.ts +1 -1
- package/dist/es/controllers/floating-ui-auto-update.d.ts +2 -0
- package/dist/es/controllers/floating-ui-auto-update.js +6 -0
- package/dist/es/index.d.ts +3 -3
- package/dist/es/index.js +12 -0
- package/dist/es/tailwind.css.js +1 -2
- package/dist/es-dev/components/accordion/daikin-accordion.js +1 -1
- package/dist/es-dev/components/accordion/index.d.ts +1 -1
- 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 +1 -1
- package/dist/es-dev/components/accordion-item/index.d.ts +1 -1
- package/dist/es-dev/components/breadcrumb/index.d.ts +1 -1
- package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.d.ts +1 -6
- package/dist/es-dev/components/breadcrumb-item/daikin-breadcrumb-item.js +1 -5
- package/dist/es-dev/components/breadcrumb-item/index.d.ts +1 -1
- package/dist/es-dev/components/button/daikin-button.d.ts +3 -3
- package/dist/es-dev/components/button/daikin-button.js +17 -11
- package/dist/es-dev/components/button/index.d.ts +1 -1
- package/dist/es-dev/components/checkbox/daikin-checkbox.d.ts +4 -4
- package/dist/es-dev/components/checkbox/daikin-checkbox.js +1 -1
- package/dist/es-dev/components/checkbox/index.d.ts +1 -1
- package/dist/es-dev/components/dropdown/daikin-dropdown.d.ts +6 -6
- package/dist/es-dev/components/dropdown/daikin-dropdown.js +12 -12
- package/dist/es-dev/components/dropdown/index.d.ts +1 -1
- package/dist/es-dev/components/dropdown-item/index.d.ts +1 -1
- package/dist/es-dev/components/icon/daikin-icon.d.ts +8 -6
- package/dist/es-dev/components/icon/daikin-icon.js +20 -16
- package/dist/es-dev/components/icon/icons.json.d.ts +20 -0
- package/dist/es-dev/components/icon/icons.json.js +20 -0
- package/dist/es-dev/components/icon/index.d.ts +1 -1
- package/dist/es-dev/components/icon-button/daikin-icon-button.d.ts +82 -0
- package/dist/es-dev/components/icon-button/daikin-icon-button.js +166 -0
- package/dist/es-dev/components/icon-button/index.d.ts +1 -0
- package/dist/es-dev/components/icon-button/index.js +4 -0
- package/dist/es-dev/components/index.d.ts +31 -25
- package/dist/es-dev/components/index.js +12 -0
- package/dist/es-dev/components/input-group/daikin-input-group.d.ts +17 -2
- package/dist/es-dev/components/input-group/daikin-input-group.js +1 -1
- package/dist/es-dev/components/input-group/index.d.ts +1 -1
- package/dist/es-dev/components/link/daikin-link.d.ts +43 -0
- package/dist/es-dev/components/link/daikin-link.js +108 -0
- package/dist/es-dev/components/link/index.d.ts +1 -0
- package/dist/es-dev/components/link/index.js +4 -0
- package/dist/es-dev/components/list/index.d.ts +1 -1
- package/dist/es-dev/components/list-item/daikin-list-item.js +20 -3
- package/dist/es-dev/components/list-item/index.d.ts +1 -1
- package/dist/es-dev/components/notification/daikin-notification.d.ts +7 -7
- package/dist/es-dev/components/notification/daikin-notification.js +31 -24
- package/dist/es-dev/components/notification/index.d.ts +1 -1
- package/dist/es-dev/components/pagination/daikin-pagination.d.ts +39 -0
- package/dist/es-dev/components/pagination/daikin-pagination.js +216 -0
- package/dist/es-dev/components/pagination/index.d.ts +1 -0
- package/dist/es-dev/components/pagination/index.js +4 -0
- package/dist/es-dev/components/pagination/pagination-utils.d.ts +28 -0
- package/dist/es-dev/components/pagination/pagination-utils.js +50 -0
- package/dist/es-dev/components/progress-bar/daikin-progress-bar.d.ts +1 -1
- package/dist/es-dev/components/progress-bar/index.d.ts +1 -1
- package/dist/es-dev/components/progress-indicator/index.d.ts +1 -1
- package/dist/es-dev/components/progress-indicator-item/daikin-progress-indicator-item.d.ts +2 -5
- package/dist/es-dev/components/progress-indicator-item/daikin-progress-indicator-item.js +13 -21
- package/dist/es-dev/components/progress-indicator-item/index.d.ts +1 -1
- package/dist/es-dev/components/radio/daikin-radio.d.ts +4 -4
- package/dist/es-dev/components/radio/daikin-radio.js +1 -1
- package/dist/es-dev/components/radio/index.d.ts +1 -1
- package/dist/es-dev/components/radio-group/daikin-radio-group.d.ts +2 -2
- package/dist/es-dev/components/radio-group/daikin-radio-group.js +1 -0
- package/dist/es-dev/components/radio-group/index.d.ts +1 -1
- package/dist/es-dev/components/select/daikin-select.d.ts +6 -1
- package/dist/es-dev/components/select/daikin-select.js +26 -18
- package/dist/es-dev/components/select/index.d.ts +1 -1
- package/dist/es-dev/components/tab/index.d.ts +1 -1
- package/dist/es-dev/components/tab-panels/daikin-tab-panels.d.ts +1 -1
- package/dist/es-dev/components/tab-panels/index.d.ts +1 -1
- package/dist/es-dev/components/table/daikin-table.d.ts +130 -0
- package/dist/es-dev/components/table/daikin-table.js +261 -0
- package/dist/es-dev/components/table/index.d.ts +1 -0
- package/dist/es-dev/components/table/index.js +4 -0
- package/dist/es-dev/components/table-cell/daikin-table-cell.d.ts +41 -0
- package/dist/es-dev/components/table-cell/daikin-table-cell.js +69 -0
- package/dist/es-dev/components/table-cell/index.d.ts +1 -0
- package/dist/es-dev/components/table-cell/index.js +4 -0
- package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.d.ts +50 -0
- package/dist/es-dev/components/table-header-cell/daikin-table-header-cell.js +94 -0
- package/dist/es-dev/components/table-header-cell/index.d.ts +1 -0
- package/dist/es-dev/components/table-header-cell/index.js +4 -0
- package/dist/es-dev/components/tabs/index.d.ts +1 -1
- package/dist/es-dev/components/text-area/daikin-text-area.d.ts +3 -3
- package/dist/es-dev/components/text-area/daikin-text-area.js +4 -4
- package/dist/es-dev/components/text-area/index.d.ts +1 -1
- package/dist/es-dev/components/text-field/daikin-text-field.d.ts +4 -4
- package/dist/es-dev/components/text-field/daikin-text-field.js +27 -16
- package/dist/es-dev/components/text-field/index.d.ts +1 -1
- package/dist/es-dev/components/toggle/daikin-toggle.d.ts +3 -3
- package/dist/es-dev/components/toggle/daikin-toggle.js +1 -1
- package/dist/es-dev/components/toggle/index.d.ts +1 -1
- package/dist/es-dev/components/tooltip/daikin-tooltip.d.ts +1 -21
- package/dist/es-dev/components/tooltip/daikin-tooltip.js +40 -83
- package/dist/es-dev/components/tooltip/index.d.ts +1 -1
- package/dist/es-dev/controllers/floating-ui-auto-update.d.ts +2 -0
- package/dist/es-dev/controllers/floating-ui-auto-update.js +6 -0
- package/dist/es-dev/index.d.ts +3 -3
- package/dist/es-dev/index.js +12 -0
- package/dist/es-dev/tailwind.css.js +1 -2
- package/icons/arrow-up.svg +3 -0
- package/icons/cross.svg +3 -0
- package/icons/pagination-chevron-left.svg +3 -0
- package/icons/pagination-chevron-right.svg +3 -0
- package/icons/sort.svg +3 -0
- package/package.json +54 -55
- package/dist/cjs/components/accordion/index.d.ts +0 -1
- package/dist/cjs/components/accordion-item/index.d.ts +0 -1
- package/dist/cjs/components/breadcrumb/index.d.ts +0 -1
- package/dist/cjs/components/breadcrumb-item/index.d.ts +0 -1
- package/dist/cjs/components/button/index.d.ts +0 -1
- package/dist/cjs/components/checkbox/index.d.ts +0 -1
- package/dist/cjs/components/dropdown/index.d.ts +0 -1
- package/dist/cjs/components/dropdown-item/index.d.ts +0 -1
- package/dist/cjs/components/icon/index.d.ts +0 -1
- package/dist/cjs/components/index.d.ts +0 -25
- package/dist/cjs/components/input-group/index.d.ts +0 -1
- package/dist/cjs/components/list/index.d.ts +0 -1
- package/dist/cjs/components/list-item/index.d.ts +0 -1
- package/dist/cjs/components/notification/index.d.ts +0 -1
- package/dist/cjs/components/progress-bar/index.d.ts +0 -1
- package/dist/cjs/components/progress-indicator/index.d.ts +0 -1
- package/dist/cjs/components/progress-indicator-item/index.d.ts +0 -1
- package/dist/cjs/components/radio/index.d.ts +0 -1
- package/dist/cjs/components/radio-group/index.d.ts +0 -1
- package/dist/cjs/components/select/index.d.ts +0 -1
- package/dist/cjs/components/tab/index.d.ts +0 -1
- package/dist/cjs/components/tab-panels/index.d.ts +0 -1
- package/dist/cjs/components/tabs/index.d.ts +0 -1
- package/dist/cjs/components/text-area/index.d.ts +0 -1
- package/dist/cjs/components/text-field/index.d.ts +0 -1
- package/dist/cjs/components/toggle/index.d.ts +0 -1
- package/dist/cjs/components/tooltip/index.d.ts +0 -1
- package/dist/cjs/index.d.ts +0 -3
- package/dist/cjs-dev/components/accordion/index.d.ts +0 -1
- package/dist/cjs-dev/components/accordion-item/index.d.ts +0 -1
- package/dist/cjs-dev/components/breadcrumb/index.d.ts +0 -1
- package/dist/cjs-dev/components/breadcrumb-item/index.d.ts +0 -1
- package/dist/cjs-dev/components/button/index.d.ts +0 -1
- package/dist/cjs-dev/components/checkbox/index.d.ts +0 -1
- package/dist/cjs-dev/components/dropdown/index.d.ts +0 -1
- package/dist/cjs-dev/components/dropdown-item/index.d.ts +0 -1
- package/dist/cjs-dev/components/icon/index.d.ts +0 -1
- package/dist/cjs-dev/components/index.d.ts +0 -25
- package/dist/cjs-dev/components/input-group/index.d.ts +0 -1
- package/dist/cjs-dev/components/list/index.d.ts +0 -1
- package/dist/cjs-dev/components/list-item/index.d.ts +0 -1
- package/dist/cjs-dev/components/notification/index.d.ts +0 -1
- package/dist/cjs-dev/components/progress-bar/index.d.ts +0 -1
- package/dist/cjs-dev/components/progress-indicator/index.d.ts +0 -1
- package/dist/cjs-dev/components/progress-indicator-item/index.d.ts +0 -1
- package/dist/cjs-dev/components/radio/index.d.ts +0 -1
- package/dist/cjs-dev/components/radio-group/index.d.ts +0 -1
- package/dist/cjs-dev/components/select/index.d.ts +0 -1
- package/dist/cjs-dev/components/tab/index.d.ts +0 -1
- package/dist/cjs-dev/components/tab-panels/index.d.ts +0 -1
- package/dist/cjs-dev/components/tabs/index.d.ts +0 -1
- package/dist/cjs-dev/components/text-area/index.d.ts +0 -1
- package/dist/cjs-dev/components/text-field/index.d.ts +0 -1
- package/dist/cjs-dev/components/toggle/index.d.ts +0 -1
- package/dist/cjs-dev/components/tooltip/index.d.ts +0 -1
- package/dist/cjs-dev/index.d.ts +0 -3
- /package/dist/cjs/{colors.d.ts → colors.d.cts} +0 -0
- /package/dist/cjs/components/accordion/{daikin-accordion.d.ts → daikin-accordion.d.cts} +0 -0
- /package/dist/cjs/components/breadcrumb/{daikin-breadcrumb.d.ts → daikin-breadcrumb.d.cts} +0 -0
- /package/dist/cjs/components/dropdown-item/{daikin-dropdown-item.d.ts → daikin-dropdown-item.d.cts} +0 -0
- /package/dist/cjs/components/list/{daikin-list.d.ts → daikin-list.d.cts} +0 -0
- /package/dist/cjs/components/list-item/{daikin-list-item.d.ts → daikin-list-item.d.cts} +0 -0
- /package/dist/cjs/components/progress-indicator/{daikin-progress-indicator.d.ts → daikin-progress-indicator.d.cts} +0 -0
- /package/dist/cjs/components/tab/{daikin-tab.d.ts → daikin-tab.d.cts} +0 -0
- /package/dist/cjs/components/tabs/{daikin-tabs.d.ts → daikin-tabs.d.cts} +0 -0
- /package/dist/cjs/components/tabs/{scroller.d.ts → scroller.d.cts} +0 -0
- /package/dist/cjs/constants/{events.d.ts → events.d.cts} +0 -0
- /package/dist/cjs/controllers/{click-outside.d.ts → click-outside.d.cts} +0 -0
- /package/dist/cjs/controllers/helpers/{controller-directive.d.ts → controller-directive.d.cts} +0 -0
- /package/dist/cjs/{is-client.d.ts → is-client.d.cts} +0 -0
- /package/dist/cjs/{lit-analyzer-types.d.ts → lit-analyzer-types.d.cts} +0 -0
- /package/dist/cjs/{type-utils.d.ts → type-utils.d.cts} +0 -0
- /package/dist/cjs/utils/{reDispatch.cjs → re-dispatch.cjs} +0 -0
- /package/dist/cjs/utils/{reDispatch.d.ts → re-dispatch.d.cts} +0 -0
- /package/dist/cjs-dev/{colors.d.ts → colors.d.cts} +0 -0
- /package/dist/cjs-dev/components/accordion/{daikin-accordion.d.ts → daikin-accordion.d.cts} +0 -0
- /package/dist/cjs-dev/components/breadcrumb/{daikin-breadcrumb.d.ts → daikin-breadcrumb.d.cts} +0 -0
- /package/dist/cjs-dev/components/dropdown-item/{daikin-dropdown-item.d.ts → daikin-dropdown-item.d.cts} +0 -0
- /package/dist/cjs-dev/components/list/{daikin-list.d.ts → daikin-list.d.cts} +0 -0
- /package/dist/cjs-dev/components/list-item/{daikin-list-item.d.ts → daikin-list-item.d.cts} +0 -0
- /package/dist/cjs-dev/components/progress-indicator/{daikin-progress-indicator.d.ts → daikin-progress-indicator.d.cts} +0 -0
- /package/dist/cjs-dev/components/tab/{daikin-tab.d.ts → daikin-tab.d.cts} +0 -0
- /package/dist/cjs-dev/components/tabs/{daikin-tabs.d.ts → daikin-tabs.d.cts} +0 -0
- /package/dist/cjs-dev/components/tabs/{scroller.d.ts → scroller.d.cts} +0 -0
- /package/dist/cjs-dev/constants/{events.d.ts → events.d.cts} +0 -0
- /package/dist/cjs-dev/controllers/{click-outside.d.ts → click-outside.d.cts} +0 -0
- /package/dist/cjs-dev/controllers/helpers/{controller-directive.d.ts → controller-directive.d.cts} +0 -0
- /package/dist/cjs-dev/{is-client.d.ts → is-client.d.cts} +0 -0
- /package/dist/cjs-dev/{lit-analyzer-types.d.ts → lit-analyzer-types.d.cts} +0 -0
- /package/dist/cjs-dev/{type-utils.d.ts → type-utils.d.cts} +0 -0
- /package/dist/cjs-dev/utils/{reDispatch.cjs → re-dispatch.cjs} +0 -0
- /package/dist/cjs-dev/utils/{reDispatch.d.ts → re-dispatch.d.cts} +0 -0
- /package/dist/es/utils/{reDispatch.d.ts → re-dispatch.d.ts} +0 -0
- /package/dist/es/utils/{reDispatch.js → re-dispatch.js} +0 -0
- /package/dist/es-dev/utils/{reDispatch.d.ts → re-dispatch.d.ts} +0 -0
- /package/dist/es-dev/utils/{reDispatch.js → re-dispatch.js} +0 -0
|
@@ -2,6 +2,7 @@ import { flip, offset, size } from "@floating-ui/dom";
|
|
|
2
2
|
import { cva } from "class-variance-authority";
|
|
3
3
|
import { css, unsafeCSS, LitElement, html } from "lit";
|
|
4
4
|
import { property, queryAssignedElements, query, state, customElement } from "lit/decorators.js";
|
|
5
|
+
import { ifDefined } from "lit/directives/if-defined.js";
|
|
5
6
|
import { ClickOutsideController } from "../../controllers/click-outside.js";
|
|
6
7
|
import { FloatingUIAutoUpdateController } from "../../controllers/floating-ui-auto-update.js";
|
|
7
8
|
import tailwindStyles from "../../tailwind.css.js";
|
|
@@ -27,7 +28,7 @@ const cvaButton = cva(
|
|
|
27
28
|
"p-3",
|
|
28
29
|
"border",
|
|
29
30
|
"border-[--color-base]",
|
|
30
|
-
"rounded
|
|
31
|
+
"rounded",
|
|
31
32
|
"overflow-hidden",
|
|
32
33
|
"font-daikinSerif",
|
|
33
34
|
"text-left",
|
|
@@ -96,13 +97,13 @@ let DaikinDropdown = class extends LitElement {
|
|
|
96
97
|
constructor() {
|
|
97
98
|
super(...arguments);
|
|
98
99
|
this._internals = this.attachInternals();
|
|
99
|
-
this.label = null;
|
|
100
100
|
this.value = null;
|
|
101
101
|
this.placeholder = "";
|
|
102
102
|
this.disabled = false;
|
|
103
103
|
this.required = false;
|
|
104
104
|
this.error = false;
|
|
105
105
|
this.open = false;
|
|
106
|
+
this._label = null;
|
|
106
107
|
this._hasSelectedItem = false;
|
|
107
108
|
this._selectedItemLabel = "";
|
|
108
109
|
this._autoUpdateController = new FloatingUIAutoUpdateController(this);
|
|
@@ -251,7 +252,7 @@ let DaikinDropdown = class extends LitElement {
|
|
|
251
252
|
})}
|
|
252
253
|
?disabled=${this.disabled}
|
|
253
254
|
role="combobox"
|
|
254
|
-
aria-label=${this.
|
|
255
|
+
aria-label=${ifDefined(this._label ?? void 0)}
|
|
255
256
|
aria-expanded=${this.open && !this.disabled}
|
|
256
257
|
aria-disabled=${this.disabled}
|
|
257
258
|
aria-controls="dropdown-items"
|
|
@@ -265,8 +266,8 @@ let DaikinDropdown = class extends LitElement {
|
|
|
265
266
|
<div
|
|
266
267
|
id="dropdown-items"
|
|
267
268
|
popover
|
|
268
|
-
class="floating-unready:hidden
|
|
269
|
-
aria-label=${this.
|
|
269
|
+
class="floating-unready:hidden absolute left-[--floating-x,0] top-[--floating-y,0] min-w-[--floating-width] max-h-[12.5rem] overflow-y-auto opacity-1 transition-[opacity] rounded shadow-dropdown"
|
|
270
|
+
aria-label=${ifDefined(this._label ?? void 0)}
|
|
270
271
|
role="listbox"
|
|
271
272
|
@floating-ready=${this._handleFloatingReady}
|
|
272
273
|
${this._autoUpdateController.refFloating()}
|
|
@@ -297,7 +298,9 @@ let DaikinDropdown = class extends LitElement {
|
|
|
297
298
|
this._reflectItemsAndLabel();
|
|
298
299
|
}
|
|
299
300
|
if (changedProperties.has("open") || changedProperties.has("disabled")) {
|
|
300
|
-
(_a = this.
|
|
301
|
+
(_a = this._autoUpdateController.floatingElement) == null ? void 0 : _a.togglePopover(
|
|
302
|
+
this.open && !this.disabled
|
|
303
|
+
);
|
|
301
304
|
if (changedProperties.get("open") && !this.open && !this.disabled) {
|
|
302
305
|
this.focus();
|
|
303
306
|
}
|
|
@@ -308,7 +311,7 @@ let DaikinDropdown = class extends LitElement {
|
|
|
308
311
|
this.disabled = !!inputGroup.disabled;
|
|
309
312
|
this.required = !!inputGroup.required;
|
|
310
313
|
this.error = isError;
|
|
311
|
-
this.
|
|
314
|
+
this._label = inputGroup.label;
|
|
312
315
|
}
|
|
313
316
|
};
|
|
314
317
|
DaikinDropdown.styles = css`
|
|
@@ -324,9 +327,6 @@ DaikinDropdown.styles = css`
|
|
|
324
327
|
}
|
|
325
328
|
`;
|
|
326
329
|
DaikinDropdown.formAssociated = true;
|
|
327
|
-
__decorateClass([
|
|
328
|
-
property({ type: String, reflect: true })
|
|
329
|
-
], DaikinDropdown.prototype, "label", 2);
|
|
330
330
|
__decorateClass([
|
|
331
331
|
property({ type: String, reflect: true })
|
|
332
332
|
], DaikinDropdown.prototype, "value", 2);
|
|
@@ -352,8 +352,8 @@ __decorateClass([
|
|
|
352
352
|
query("button")
|
|
353
353
|
], DaikinDropdown.prototype, "_button", 2);
|
|
354
354
|
__decorateClass([
|
|
355
|
-
|
|
356
|
-
], DaikinDropdown.prototype, "
|
|
355
|
+
state()
|
|
356
|
+
], DaikinDropdown.prototype, "_label", 2);
|
|
357
357
|
__decorateClass([
|
|
358
358
|
state()
|
|
359
359
|
], DaikinDropdown.prototype, "_hasSelectedItem", 2);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "./daikin-dropdown.js";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "./daikin-dropdown-item.js";
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
-
import { MergeVariantProps } from
|
|
3
|
-
import { icons } from
|
|
2
|
+
import { MergeVariantProps } from "../../type-utils.js";
|
|
3
|
+
import { icons } from "./icons.json.js";
|
|
4
4
|
export declare const iconList: string[];
|
|
5
5
|
export type IconType = keyof typeof icons;
|
|
6
6
|
declare const cvaIcon: (props?: ({
|
|
7
7
|
icon?: string | number | null | undefined;
|
|
8
|
-
|
|
9
|
-
color?: "black" | "white" | "default" | "current" | null | undefined;
|
|
8
|
+
color?: "default" | "black" | "white" | "current" | null | undefined;
|
|
10
9
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
11
10
|
export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
|
|
12
11
|
/**
|
|
@@ -18,6 +17,8 @@ export type IconVariantProps = MergeVariantProps<typeof cvaIcon>;
|
|
|
18
17
|
* If you try to use an icon that does not exist, a blank space will be displayed.
|
|
19
18
|
* In the development build, warnings will be displayed in the console, so please check there if you encounter any unexpected behavior.
|
|
20
19
|
*
|
|
20
|
+
* @cssprop [--dds-icon-size] - Icon size. If a value other than "current" is set for the `size` property, it will be overwritten automatically. This may be set by the parent component such as `daikin-icon-button`.
|
|
21
|
+
*
|
|
21
22
|
* @example
|
|
22
23
|
*
|
|
23
24
|
* ```js
|
|
@@ -39,9 +40,10 @@ export declare class DaikinIcon extends LitElement {
|
|
|
39
40
|
*/
|
|
40
41
|
color: IconVariantProps["color"];
|
|
41
42
|
/**
|
|
42
|
-
* Specify the
|
|
43
|
+
* Specify the size of the icon.
|
|
44
|
+
* If "current" is set, `--dds-icon-size` CSS variable will be used. `--dds-icon-size` may be set by the parent component such as `daikin-icon-button`.
|
|
43
45
|
*/
|
|
44
|
-
size:
|
|
46
|
+
size: "s" | "m" | "l" | "xl" | "current";
|
|
45
47
|
render(): import('lit-html').TemplateResult<1>;
|
|
46
48
|
}
|
|
47
49
|
declare global {
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { space12, space16, space20, space24 } from "@daikin-oss/dds-tokens/js/daikin/Light/variables.js";
|
|
2
1
|
import { cva } from "class-variance-authority";
|
|
3
2
|
import { css, unsafeCSS, LitElement, html } from "lit";
|
|
4
3
|
import { property, customElement } from "lit/decorators.js";
|
|
@@ -21,12 +20,6 @@ const iconClassMap = Object.fromEntries(
|
|
|
21
20
|
const cvaIcon = cva(["block"], {
|
|
22
21
|
variants: {
|
|
23
22
|
icon: iconClassMap,
|
|
24
|
-
size: {
|
|
25
|
-
s: [`w-[--size-s]`, `h-[--size-s]`],
|
|
26
|
-
m: [`w-[--size-m]`, `h-[--size-m]`],
|
|
27
|
-
l: [`w-[--size-l]`, `h-[--size-l]`],
|
|
28
|
-
xl: [`w-[--size-xl]`, `h-[--size-xl]`]
|
|
29
|
-
},
|
|
30
23
|
color: {
|
|
31
24
|
black: ["text-black"],
|
|
32
25
|
white: ["text-white"],
|
|
@@ -41,7 +34,7 @@ let DaikinIcon = class extends LitElement {
|
|
|
41
34
|
super(...arguments);
|
|
42
35
|
this.icon = null;
|
|
43
36
|
this.color = "default";
|
|
44
|
-
this.size = "
|
|
37
|
+
this.size = "current";
|
|
45
38
|
}
|
|
46
39
|
render() {
|
|
47
40
|
var _a;
|
|
@@ -49,8 +42,7 @@ let DaikinIcon = class extends LitElement {
|
|
|
49
42
|
return html`<span
|
|
50
43
|
class=${cvaIcon({
|
|
51
44
|
icon: this.icon,
|
|
52
|
-
color: this.color
|
|
53
|
-
size: this.size
|
|
45
|
+
color: this.color
|
|
54
46
|
})}
|
|
55
47
|
style=${`--default-color:${defaultColor ?? "#000000"}`}
|
|
56
48
|
role="presentation"
|
|
@@ -61,13 +53,25 @@ DaikinIcon.styles = css`
|
|
|
61
53
|
${unsafeCSS(tailwindStyles)}
|
|
62
54
|
|
|
63
55
|
:host {
|
|
64
|
-
|
|
65
|
-
--size
|
|
66
|
-
--size
|
|
67
|
-
|
|
56
|
+
display: inline-block;
|
|
57
|
+
width: var(--dds-icon-size, 100%);
|
|
58
|
+
height: var(--dds-icon-size, 100%);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
:host([size="s"]) {
|
|
62
|
+
--dds-icon-size: 12px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
:host([size="m"]) {
|
|
66
|
+
--dds-icon-size: 16px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
:host([size="l"]) {
|
|
70
|
+
--dds-icon-size: 20px;
|
|
71
|
+
}
|
|
68
72
|
|
|
69
|
-
|
|
70
|
-
|
|
73
|
+
:host([size="xl"]) {
|
|
74
|
+
--dds-icon-size: 24px;
|
|
71
75
|
}
|
|
72
76
|
`;
|
|
73
77
|
__decorateClass([
|
|
@@ -24,6 +24,18 @@ declare const _default: {
|
|
|
24
24
|
"class": "i-daikin-status-warning",
|
|
25
25
|
"color": null
|
|
26
26
|
},
|
|
27
|
+
"pagination-chevron-left": {
|
|
28
|
+
"class": "i-daikin-pagination-chevron-left",
|
|
29
|
+
"color": "#414141"
|
|
30
|
+
},
|
|
31
|
+
"pagination-chevron-right": {
|
|
32
|
+
"class": "i-daikin-pagination-chevron-right",
|
|
33
|
+
"color": "#414141"
|
|
34
|
+
},
|
|
35
|
+
"arrowUp": {
|
|
36
|
+
"class": "i-daikin-arrow-up",
|
|
37
|
+
"color": "#414141"
|
|
38
|
+
},
|
|
27
39
|
"success": {
|
|
28
40
|
"class": "i-daikin-status-success",
|
|
29
41
|
"color": "#0097E0"
|
|
@@ -32,6 +44,10 @@ declare const _default: {
|
|
|
32
44
|
"class": "i-daikin-status-error",
|
|
33
45
|
"color": "#FF4949"
|
|
34
46
|
},
|
|
47
|
+
"cross": {
|
|
48
|
+
"class": "i-daikin-cross",
|
|
49
|
+
"color": null
|
|
50
|
+
},
|
|
35
51
|
"chevron-up": {
|
|
36
52
|
"class": "i-daikin-chevron-up",
|
|
37
53
|
"color": null
|
|
@@ -47,6 +63,10 @@ declare const _default: {
|
|
|
47
63
|
"chevron-right": {
|
|
48
64
|
"class": "i-daikin-chevron-right",
|
|
49
65
|
"color": null
|
|
66
|
+
},
|
|
67
|
+
"sort": {
|
|
68
|
+
"class": "i-daikin-sort",
|
|
69
|
+
"color": null
|
|
50
70
|
}
|
|
51
71
|
}
|
|
52
72
|
}
|
|
@@ -23,6 +23,18 @@ const icons = {
|
|
|
23
23
|
"class": "i-daikin-status-warning",
|
|
24
24
|
color: null
|
|
25
25
|
},
|
|
26
|
+
"pagination-chevron-left": {
|
|
27
|
+
"class": "i-daikin-pagination-chevron-left",
|
|
28
|
+
color: "#414141"
|
|
29
|
+
},
|
|
30
|
+
"pagination-chevron-right": {
|
|
31
|
+
"class": "i-daikin-pagination-chevron-right",
|
|
32
|
+
color: "#414141"
|
|
33
|
+
},
|
|
34
|
+
arrowUp: {
|
|
35
|
+
"class": "i-daikin-arrow-up",
|
|
36
|
+
color: "#414141"
|
|
37
|
+
},
|
|
26
38
|
success: {
|
|
27
39
|
"class": "i-daikin-status-success",
|
|
28
40
|
color: "#0097E0"
|
|
@@ -31,6 +43,10 @@ const icons = {
|
|
|
31
43
|
"class": "i-daikin-status-error",
|
|
32
44
|
color: "#FF4949"
|
|
33
45
|
},
|
|
46
|
+
cross: {
|
|
47
|
+
"class": "i-daikin-cross",
|
|
48
|
+
color: null
|
|
49
|
+
},
|
|
34
50
|
"chevron-up": {
|
|
35
51
|
"class": "i-daikin-chevron-up",
|
|
36
52
|
color: null
|
|
@@ -46,6 +62,10 @@ const icons = {
|
|
|
46
62
|
"chevron-right": {
|
|
47
63
|
"class": "i-daikin-chevron-right",
|
|
48
64
|
color: null
|
|
65
|
+
},
|
|
66
|
+
sort: {
|
|
67
|
+
"class": "i-daikin-sort",
|
|
68
|
+
color: null
|
|
49
69
|
}
|
|
50
70
|
};
|
|
51
71
|
export {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from
|
|
1
|
+
export * from "./daikin-icon.js";
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
import { ARIARole } from "../../lit-analyzer-types.js";
|
|
3
|
+
import { MergeVariantProps } from "../../type-utils.js";
|
|
4
|
+
declare const cvaIconButton: (props?: ({
|
|
5
|
+
color?: "default" | "danger" | "neutral" | null | undefined;
|
|
6
|
+
variant?: "fill" | "outline" | "ghost" | null | undefined;
|
|
7
|
+
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
8
|
+
type IconButtonVariantProps = MergeVariantProps<typeof cvaIconButton>;
|
|
9
|
+
/**
|
|
10
|
+
* The icon button component is a versatile UI element that triggers actions or submits forms when clicked.
|
|
11
|
+
* It functions similarly to the HTML `<button>` tag, allowing users to initiate various operations such as submitting data, opening dialogs, or navigating to different sections of an application.
|
|
12
|
+
*
|
|
13
|
+
* You can insert any icon, including the daikin-icon, but please note the following regarding style:
|
|
14
|
+
* - About fill color - The icon should be able to accept the CSS `color` property.
|
|
15
|
+
* - About size - The recommended width of the icon is 24px * 24px. Please make sure that the size of the icon you insert conforms to this, or please set the `width` and `height` properties of the icon to 100%.
|
|
16
|
+
*
|
|
17
|
+
* @fires click - A retargeted event of a [click event](https://developer.mozilla.org/en-US/docs/Web/API/Element/click_event) emitted from the inner `<button>` element. Suppressed if `disabled` is true,
|
|
18
|
+
*
|
|
19
|
+
* @slot - A slot for an icon. Place a daikin-icon element or something similar.
|
|
20
|
+
*
|
|
21
|
+
* @example
|
|
22
|
+
*
|
|
23
|
+
* ```js
|
|
24
|
+
* import "@daikin-oss/design-system-web-components/components/icon-button/index.js";
|
|
25
|
+
* // The following import is not necessary if you are not using `daikin-icon`.
|
|
26
|
+
* import "@daikin-oss/design-system-web-components/components/icon/index.js";
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ```html
|
|
30
|
+
* <daikin-icon-button>
|
|
31
|
+
* <daikin-icon icon="chevron-right" color="current"></daikin-icon>
|
|
32
|
+
* </daikin-icon-button>
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
export declare class DaikinIconButton extends LitElement {
|
|
36
|
+
static readonly styles: import('lit').CSSResult;
|
|
37
|
+
/**
|
|
38
|
+
* Variant of the button.
|
|
39
|
+
*/
|
|
40
|
+
variant: IconButtonVariantProps["variant"];
|
|
41
|
+
/**
|
|
42
|
+
* Color of the button.
|
|
43
|
+
*/
|
|
44
|
+
color: IconButtonVariantProps["color"];
|
|
45
|
+
/**
|
|
46
|
+
* Whether the button is disabled.
|
|
47
|
+
*/
|
|
48
|
+
disabled: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Link `href`.
|
|
51
|
+
* Only used if the `type` is `"link"`.
|
|
52
|
+
* If omitted with `type="link"`, the link will be treated as [a placeholder link](https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-a-element:~:text=If%20the%20a%20element%20has%20no%20href%20attribute) and rendered as disabled state.
|
|
53
|
+
*/
|
|
54
|
+
href: string | null;
|
|
55
|
+
/**
|
|
56
|
+
* Type of the button.
|
|
57
|
+
* If `"link"` is specified, the button will be rendered as an `<a>` element.
|
|
58
|
+
*/
|
|
59
|
+
type: "button" | "submit" | "reset" | "link";
|
|
60
|
+
/**
|
|
61
|
+
* The aria-label of the icon button.
|
|
62
|
+
*/
|
|
63
|
+
buttonAriaLabel: string | null;
|
|
64
|
+
/**
|
|
65
|
+
* Optional ARIA role of the button.
|
|
66
|
+
*/
|
|
67
|
+
buttonRole: ARIARole | null;
|
|
68
|
+
private _button;
|
|
69
|
+
constructor();
|
|
70
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
71
|
+
/**
|
|
72
|
+
* Focuses on the inner button.
|
|
73
|
+
* @param options focus options
|
|
74
|
+
*/
|
|
75
|
+
focus(options?: FocusOptions): void;
|
|
76
|
+
}
|
|
77
|
+
declare global {
|
|
78
|
+
interface HTMLElementTagNameMap {
|
|
79
|
+
"daikin-icon-button": DaikinIconButton;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
export {};
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
import { cva } from "class-variance-authority";
|
|
2
|
+
import { css, unsafeCSS, LitElement, html } from "lit";
|
|
3
|
+
import { property, query, customElement } from "lit/decorators.js";
|
|
4
|
+
import { ifDefined } from "lit/directives/if-defined.js";
|
|
5
|
+
import tailwindStyles from "../../tailwind.css.js";
|
|
6
|
+
import "../icon/daikin-icon.js";
|
|
7
|
+
var __defProp = Object.defineProperty;
|
|
8
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
9
|
+
var __decorateClass = (decorators, target, key, kind) => {
|
|
10
|
+
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
11
|
+
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
12
|
+
if (decorator = decorators[i])
|
|
13
|
+
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
14
|
+
if (kind && result) __defProp(target, key, result);
|
|
15
|
+
return result;
|
|
16
|
+
};
|
|
17
|
+
const cvaIconButton = cva(
|
|
18
|
+
[
|
|
19
|
+
"inline-flex",
|
|
20
|
+
"justify-center",
|
|
21
|
+
"items-center",
|
|
22
|
+
"w-8",
|
|
23
|
+
"h-8",
|
|
24
|
+
"font-daikinSerif",
|
|
25
|
+
"font-bold",
|
|
26
|
+
"rounded",
|
|
27
|
+
"p-1",
|
|
28
|
+
"tracking-wide",
|
|
29
|
+
"text-nowrap",
|
|
30
|
+
"focus-visible:outline",
|
|
31
|
+
"focus-visible:outline-2",
|
|
32
|
+
"focus-visible:outline-offset-2",
|
|
33
|
+
"focus-visible:outline-system-state-focus",
|
|
34
|
+
"var-color-transparent/color-secondary",
|
|
35
|
+
"link-disabled:var-color-system-state-disabled/color-primary"
|
|
36
|
+
],
|
|
37
|
+
{
|
|
38
|
+
variants: {
|
|
39
|
+
color: {
|
|
40
|
+
default: [
|
|
41
|
+
"link-enabled:var-color-system-state-primary-active/color-primary",
|
|
42
|
+
"link-enabled:hover:var-color-system-state-primary-hover/color-primary",
|
|
43
|
+
"link-enabled:hover:var-color-system-state-primary-surface-hover/color-secondary",
|
|
44
|
+
"link-enabled:active:var-color-system-state-primary-press/color-primary",
|
|
45
|
+
"link-enabled:active:var-color-system-state-primary-surface-press/color-secondary"
|
|
46
|
+
],
|
|
47
|
+
neutral: [
|
|
48
|
+
"link-enabled:var-color-system-state-neutral-active/color-primary",
|
|
49
|
+
"link-enabled:hover:var-color-system-state-neutral-hover/color-primary",
|
|
50
|
+
"link-enabled:hover:var-color-system-background-surface-hover/color-secondary",
|
|
51
|
+
"link-enabled:active:var-color-system-state-neutral-press/color-primary",
|
|
52
|
+
"link-enabled:active:var-color-system-background-surface-press/color-secondary"
|
|
53
|
+
],
|
|
54
|
+
danger: [
|
|
55
|
+
"link-enabled:var-color-system-state-error-active/color-primary",
|
|
56
|
+
"link-enabled:hover:var-color-system-state-error-hover/color-primary",
|
|
57
|
+
"link-enabled:hover:var-color-system-state-error-surface-hover/color-secondary",
|
|
58
|
+
"link-enabled:active:var-color-system-state-error-press/color-primary",
|
|
59
|
+
"link-enabled:active:var-color-system-state-error-surface-press/color-secondary"
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
variant: {
|
|
63
|
+
fill: ["text-white", "bg-[--color-primary]"],
|
|
64
|
+
outline: [
|
|
65
|
+
"border",
|
|
66
|
+
"text-[--color-primary]",
|
|
67
|
+
"bg-[--color-secondary]",
|
|
68
|
+
"border-[--color-primary]"
|
|
69
|
+
],
|
|
70
|
+
ghost: ["text-[--color-primary]", "bg-[--color-secondary]"]
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
);
|
|
75
|
+
let DaikinIconButton = class extends LitElement {
|
|
76
|
+
constructor() {
|
|
77
|
+
super();
|
|
78
|
+
this.variant = "fill";
|
|
79
|
+
this.color = "default";
|
|
80
|
+
this.disabled = false;
|
|
81
|
+
this.href = null;
|
|
82
|
+
this.type = "button";
|
|
83
|
+
this.buttonAriaLabel = null;
|
|
84
|
+
this.buttonRole = null;
|
|
85
|
+
this.addEventListener("click", (event) => {
|
|
86
|
+
if (this.disabled) {
|
|
87
|
+
event.stopImmediatePropagation();
|
|
88
|
+
}
|
|
89
|
+
});
|
|
90
|
+
}
|
|
91
|
+
render() {
|
|
92
|
+
const iconButtonCN = cvaIconButton({
|
|
93
|
+
variant: this.variant,
|
|
94
|
+
color: this.color
|
|
95
|
+
});
|
|
96
|
+
if (this.type === "link") {
|
|
97
|
+
const linkDisabled = this.disabled || this.href == null;
|
|
98
|
+
return html`<a
|
|
99
|
+
class=${iconButtonCN}
|
|
100
|
+
href=${ifDefined(!linkDisabled ? this.href ?? void 0 : void 0)}
|
|
101
|
+
role=${ifDefined(
|
|
102
|
+
this.buttonRole ?? (linkDisabled ? "link" : void 0)
|
|
103
|
+
)}
|
|
104
|
+
aria-disabled=${ifDefined(linkDisabled ? "true" : void 0)}
|
|
105
|
+
aria-label=${this.buttonAriaLabel ?? ""}
|
|
106
|
+
>
|
|
107
|
+
<slot class="icon-size-full"></slot>
|
|
108
|
+
</a>`;
|
|
109
|
+
}
|
|
110
|
+
return html`
|
|
111
|
+
<button
|
|
112
|
+
class=${iconButtonCN}
|
|
113
|
+
type=${this.type}
|
|
114
|
+
aria-label=${this.buttonAriaLabel ?? ""}
|
|
115
|
+
?disabled=${this.disabled}
|
|
116
|
+
>
|
|
117
|
+
<slot class="icon-size-full"></slot>
|
|
118
|
+
</button>
|
|
119
|
+
`;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* Focuses on the inner button.
|
|
123
|
+
* @param options focus options
|
|
124
|
+
*/
|
|
125
|
+
focus(options) {
|
|
126
|
+
var _a;
|
|
127
|
+
(_a = this._button) == null ? void 0 : _a.focus(options);
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
DaikinIconButton.styles = css`
|
|
131
|
+
${unsafeCSS(tailwindStyles)}
|
|
132
|
+
|
|
133
|
+
:host {
|
|
134
|
+
display: inline-block;
|
|
135
|
+
}
|
|
136
|
+
`;
|
|
137
|
+
__decorateClass([
|
|
138
|
+
property({ type: String, reflect: true })
|
|
139
|
+
], DaikinIconButton.prototype, "variant", 2);
|
|
140
|
+
__decorateClass([
|
|
141
|
+
property({ type: String, reflect: true })
|
|
142
|
+
], DaikinIconButton.prototype, "color", 2);
|
|
143
|
+
__decorateClass([
|
|
144
|
+
property({ type: Boolean, reflect: true })
|
|
145
|
+
], DaikinIconButton.prototype, "disabled", 2);
|
|
146
|
+
__decorateClass([
|
|
147
|
+
property({ type: String, reflect: true })
|
|
148
|
+
], DaikinIconButton.prototype, "href", 2);
|
|
149
|
+
__decorateClass([
|
|
150
|
+
property({ type: String, reflect: true })
|
|
151
|
+
], DaikinIconButton.prototype, "type", 2);
|
|
152
|
+
__decorateClass([
|
|
153
|
+
property({ type: String, reflect: true, attribute: "button-aria-label" })
|
|
154
|
+
], DaikinIconButton.prototype, "buttonAriaLabel", 2);
|
|
155
|
+
__decorateClass([
|
|
156
|
+
property({ type: String, reflect: true, attribute: "button-role" })
|
|
157
|
+
], DaikinIconButton.prototype, "buttonRole", 2);
|
|
158
|
+
__decorateClass([
|
|
159
|
+
query("button")
|
|
160
|
+
], DaikinIconButton.prototype, "_button", 2);
|
|
161
|
+
DaikinIconButton = __decorateClass([
|
|
162
|
+
customElement("daikin-icon-button")
|
|
163
|
+
], DaikinIconButton);
|
|
164
|
+
export {
|
|
165
|
+
DaikinIconButton
|
|
166
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./daikin-icon-button.js";
|
|
@@ -1,25 +1,31 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
22
|
-
export * from
|
|
23
|
-
export * from
|
|
24
|
-
export * from
|
|
25
|
-
export * from
|
|
1
|
+
export * from "./accordion/index.js";
|
|
2
|
+
export * from "./accordion-item/index.js";
|
|
3
|
+
export * from "./breadcrumb/index.js";
|
|
4
|
+
export * from "./breadcrumb-item/index.js";
|
|
5
|
+
export * from "./button/index.js";
|
|
6
|
+
export * from "./checkbox/index.js";
|
|
7
|
+
export * from "./dropdown/index.js";
|
|
8
|
+
export * from "./dropdown-item/index.js";
|
|
9
|
+
export * from "./icon/index.js";
|
|
10
|
+
export * from "./icon-button/index.js";
|
|
11
|
+
export * from "./input-group/index.js";
|
|
12
|
+
export * from "./link/index.js";
|
|
13
|
+
export * from "./list/index.js";
|
|
14
|
+
export * from "./list-item/index.js";
|
|
15
|
+
export * from "./notification/index.js";
|
|
16
|
+
export * from "./pagination/index.js";
|
|
17
|
+
export * from "./progress-bar/index.js";
|
|
18
|
+
export * from "./progress-indicator/index.js";
|
|
19
|
+
export * from "./progress-indicator-item/index.js";
|
|
20
|
+
export * from "./radio/index.js";
|
|
21
|
+
export * from "./select/index.js";
|
|
22
|
+
export * from "./tab/index.js";
|
|
23
|
+
export * from "./tab-panels/index.js";
|
|
24
|
+
export * from "./table/index.js";
|
|
25
|
+
export * from "./table-cell/index.js";
|
|
26
|
+
export * from "./table-header-cell/index.js";
|
|
27
|
+
export * from "./tabs/index.js";
|
|
28
|
+
export * from "./text-area/index.js";
|
|
29
|
+
export * from "./text-field/index.js";
|
|
30
|
+
export * from "./toggle/index.js";
|
|
31
|
+
export * from "./tooltip/index.js";
|
|
@@ -7,10 +7,13 @@ import { DaikinCheckbox } from "./checkbox/daikin-checkbox.js";
|
|
|
7
7
|
import { DaikinDropdown } from "./dropdown/daikin-dropdown.js";
|
|
8
8
|
import { DaikinDropdownItem } from "./dropdown-item/daikin-dropdown-item.js";
|
|
9
9
|
import { DaikinIcon, iconList } from "./icon/daikin-icon.js";
|
|
10
|
+
import { DaikinIconButton } from "./icon-button/daikin-icon-button.js";
|
|
10
11
|
import { DaikinInputGroup } from "./input-group/daikin-input-group.js";
|
|
12
|
+
import { DaikinLink } from "./link/daikin-link.js";
|
|
11
13
|
import { DaikinList } from "./list/daikin-list.js";
|
|
12
14
|
import { DaikinListItem } from "./list-item/daikin-list-item.js";
|
|
13
15
|
import { DaikinNotification } from "./notification/daikin-notification.js";
|
|
16
|
+
import { DaikinPagination } from "./pagination/daikin-pagination.js";
|
|
14
17
|
import { DaikinProgressBar } from "./progress-bar/daikin-progress-bar.js";
|
|
15
18
|
import { DaikinProgressIndicator } from "./progress-indicator/daikin-progress-indicator.js";
|
|
16
19
|
import { DaikinProgressIndicatorItem } from "./progress-indicator-item/daikin-progress-indicator-item.js";
|
|
@@ -18,6 +21,9 @@ import { DaikinRadio } from "./radio/daikin-radio.js";
|
|
|
18
21
|
import { DaikinSelect } from "./select/daikin-select.js";
|
|
19
22
|
import { DaikinTab } from "./tab/daikin-tab.js";
|
|
20
23
|
import { DaikinTabPanels } from "./tab-panels/daikin-tab-panels.js";
|
|
24
|
+
import { DaikinTable } from "./table/daikin-table.js";
|
|
25
|
+
import { DaikinTableCell } from "./table-cell/daikin-table-cell.js";
|
|
26
|
+
import { DaikinTableHeaderCell } from "./table-header-cell/daikin-table-header-cell.js";
|
|
21
27
|
import { DaikinTabs } from "./tabs/daikin-tabs.js";
|
|
22
28
|
import { DaikinTextArea } from "./text-area/daikin-text-area.js";
|
|
23
29
|
import { DaikinTextField } from "./text-field/daikin-text-field.js";
|
|
@@ -33,10 +39,13 @@ export {
|
|
|
33
39
|
DaikinDropdown,
|
|
34
40
|
DaikinDropdownItem,
|
|
35
41
|
DaikinIcon,
|
|
42
|
+
DaikinIconButton,
|
|
36
43
|
DaikinInputGroup,
|
|
44
|
+
DaikinLink,
|
|
37
45
|
DaikinList,
|
|
38
46
|
DaikinListItem,
|
|
39
47
|
DaikinNotification,
|
|
48
|
+
DaikinPagination,
|
|
40
49
|
DaikinProgressBar,
|
|
41
50
|
DaikinProgressIndicator,
|
|
42
51
|
DaikinProgressIndicatorItem,
|
|
@@ -44,6 +53,9 @@ export {
|
|
|
44
53
|
DaikinSelect,
|
|
45
54
|
DaikinTab,
|
|
46
55
|
DaikinTabPanels,
|
|
56
|
+
DaikinTable,
|
|
57
|
+
DaikinTableCell,
|
|
58
|
+
DaikinTableHeaderCell,
|
|
47
59
|
DaikinTabs,
|
|
48
60
|
DaikinTextArea,
|
|
49
61
|
DaikinTextField,
|