@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
|
@@ -6,7 +6,6 @@ const lit = require("lit");
|
|
|
6
6
|
const decorators_js = require("lit/decorators.js");
|
|
7
7
|
const events = require("../../constants/events.cjs");
|
|
8
8
|
const tailwind = require("../../tailwind.css.cjs");
|
|
9
|
-
require("../icon/daikin-icon.cjs");
|
|
10
9
|
var __defProp = Object.defineProperty;
|
|
11
10
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
12
11
|
var __decorateClass = (decorators, target, key, kind) => {
|
|
@@ -45,15 +44,35 @@ const cvaContainer = classVarianceAuthority.cva(
|
|
|
45
44
|
}
|
|
46
45
|
);
|
|
47
46
|
const cvaIconContainer = classVarianceAuthority.cva(
|
|
48
|
-
[
|
|
47
|
+
[
|
|
48
|
+
"flex-none",
|
|
49
|
+
"flex",
|
|
50
|
+
"justify-center",
|
|
51
|
+
"items-center",
|
|
52
|
+
"w-[2.75rem]",
|
|
53
|
+
"after:size-6",
|
|
54
|
+
"after:text-white"
|
|
55
|
+
],
|
|
49
56
|
{
|
|
50
57
|
variants: {
|
|
51
58
|
status: {
|
|
52
|
-
positive: [
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
59
|
+
positive: [
|
|
60
|
+
"bg-[--colorFeedbackPositive]",
|
|
61
|
+
"after:i-daikin-status-positive"
|
|
62
|
+
],
|
|
63
|
+
negative: [
|
|
64
|
+
"bg-[--colorFeedbackNegative]",
|
|
65
|
+
"after:i-daikin-status-negative"
|
|
66
|
+
],
|
|
67
|
+
warning: [
|
|
68
|
+
"bg-[--colorFeedbackWarning]",
|
|
69
|
+
"after:i-daikin-status-warning"
|
|
70
|
+
],
|
|
71
|
+
alarm: ["bg-[--colorFeedbackAlarm]", "after:i-daikin-status-alarm"],
|
|
72
|
+
information: [
|
|
73
|
+
"bg-[--colorFeedbackInformation]",
|
|
74
|
+
"after:i-daikin-status-information"
|
|
75
|
+
]
|
|
57
76
|
}
|
|
58
77
|
},
|
|
59
78
|
defaultVariants: {
|
|
@@ -85,7 +104,7 @@ exports.DaikinNotification = class DaikinNotification extends lit.LitElement {
|
|
|
85
104
|
this.closeButton = false;
|
|
86
105
|
}
|
|
87
106
|
/**
|
|
88
|
-
* Call the event registered in "close"
|
|
107
|
+
* Call the event registered in "close".
|
|
89
108
|
*/
|
|
90
109
|
_handleClickClose() {
|
|
91
110
|
const event = new CustomEvent(events.EVENT_CLOSE);
|
|
@@ -108,13 +127,7 @@ exports.DaikinNotification = class DaikinNotification extends lit.LitElement {
|
|
|
108
127
|
class=${cvaIconContainer({
|
|
109
128
|
status: this.status
|
|
110
129
|
})}
|
|
111
|
-
>
|
|
112
|
-
<daikin-icon
|
|
113
|
-
icon=${this.status}
|
|
114
|
-
color="white"
|
|
115
|
-
size="xl"
|
|
116
|
-
></daikin-icon>
|
|
117
|
-
</div>
|
|
130
|
+
></div>
|
|
118
131
|
<div
|
|
119
132
|
class="flex justify-between items-center gap-5 p-5 text-lg flex-auto flex-shrink-0"
|
|
120
133
|
>
|
|
@@ -134,15 +147,9 @@ exports.DaikinNotification = class DaikinNotification extends lit.LitElement {
|
|
|
134
147
|
<div class="flex items-center gap-5">
|
|
135
148
|
<button
|
|
136
149
|
aria-label="Close"
|
|
137
|
-
class="relative flex w-5 h-5"
|
|
150
|
+
class="relative flex w-5 h-5 after:i-daikin-notification-close after:size-5 after:text-[#a0a0a0]"
|
|
138
151
|
@click=${this._handleClickClose}
|
|
139
|
-
>
|
|
140
|
-
<daikin-icon
|
|
141
|
-
icon="close"
|
|
142
|
-
size="l"
|
|
143
|
-
color="default"
|
|
144
|
-
></daikin-icon>
|
|
145
|
-
</button>
|
|
152
|
+
></button>
|
|
146
153
|
</div>
|
|
147
154
|
` : lit.nothing}
|
|
148
155
|
</div>
|
|
@@ -183,7 +190,7 @@ __decorateClass([
|
|
|
183
190
|
decorators_js.property({ type: Boolean, reflect: true })
|
|
184
191
|
], exports.DaikinNotification.prototype, "open", 2);
|
|
185
192
|
__decorateClass([
|
|
186
|
-
decorators_js.property({ type: Boolean })
|
|
193
|
+
decorators_js.property({ type: Boolean, attribute: "close-button" })
|
|
187
194
|
], exports.DaikinNotification.prototype, "closeButton", 2);
|
|
188
195
|
exports.DaikinNotification = __decorateClass([
|
|
189
196
|
decorators_js.customElement("daikin-notification")
|
package/dist/cjs/components/notification/{daikin-notification.d.ts → daikin-notification.d.cts}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LitElement, nothing } from 'lit';
|
|
2
|
-
import { MergeVariantProps } from
|
|
2
|
+
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
3
3
|
declare const cvaContainer: (props?: ({
|
|
4
4
|
variant?: "toast" | "inline" | null | undefined;
|
|
5
5
|
status?: "alarm" | "information" | "negative" | "positive" | "warning" | null | undefined;
|
|
@@ -44,27 +44,27 @@ type NotificationVariantProps = MergeVariantProps<typeof cvaContainer | typeof c
|
|
|
44
44
|
export declare class DaikinNotification extends LitElement {
|
|
45
45
|
static readonly styles: import('lit').CSSResult;
|
|
46
46
|
/**
|
|
47
|
-
* Type of notification
|
|
47
|
+
* Type of notification.
|
|
48
48
|
*/
|
|
49
49
|
variant: NotificationVariantProps["variant"];
|
|
50
50
|
/**
|
|
51
|
-
* Status of notification
|
|
51
|
+
* Status of notification.
|
|
52
52
|
*/
|
|
53
53
|
status: NotificationVariantProps["status"];
|
|
54
54
|
/**
|
|
55
|
-
* Display in single or multiple lines
|
|
55
|
+
* Display in single or multiple lines.
|
|
56
56
|
*/
|
|
57
57
|
line: NotificationVariantProps["line"];
|
|
58
58
|
/**
|
|
59
|
-
*
|
|
59
|
+
* Specify the notification's open state.
|
|
60
60
|
*/
|
|
61
61
|
open: boolean;
|
|
62
62
|
/**
|
|
63
|
-
* Whether to display the close button
|
|
63
|
+
* Whether to display the close button.
|
|
64
64
|
*/
|
|
65
65
|
closeButton: boolean;
|
|
66
66
|
/**
|
|
67
|
-
* Call the event registered in "close"
|
|
67
|
+
* Call the event registered in "close".
|
|
68
68
|
*/
|
|
69
69
|
private _handleClickClose;
|
|
70
70
|
render(): import('lit-html').TemplateResult<1> | typeof nothing;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./daikin-notification.cjs";
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const classVarianceAuthority = require("class-variance-authority");
|
|
4
|
+
const lit = require("lit");
|
|
5
|
+
const decorators_js = require("lit/decorators.js");
|
|
6
|
+
const ifDefined_js = require("lit/directives/if-defined.js");
|
|
7
|
+
const repeat_js = require("lit/directives/repeat.js");
|
|
8
|
+
const tailwind = require("../../tailwind.css.cjs");
|
|
9
|
+
const paginationUtils = require("./pagination-utils.cjs");
|
|
10
|
+
var __defProp = Object.defineProperty;
|
|
11
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
12
|
+
var __decorateClass = (decorators, target, key, kind) => {
|
|
13
|
+
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
14
|
+
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
15
|
+
if (decorator = decorators[i])
|
|
16
|
+
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
17
|
+
if (kind && result) __defProp(target, key, result);
|
|
18
|
+
return result;
|
|
19
|
+
};
|
|
20
|
+
const cvaPageButton = classVarianceAuthority.cva(
|
|
21
|
+
[
|
|
22
|
+
"border-0",
|
|
23
|
+
"no-underline",
|
|
24
|
+
"flex",
|
|
25
|
+
"relative",
|
|
26
|
+
"items-center",
|
|
27
|
+
"justify-center",
|
|
28
|
+
"min-w-12",
|
|
29
|
+
"min-h-12",
|
|
30
|
+
"font-daikinSerif",
|
|
31
|
+
"text-base",
|
|
32
|
+
"not-italic",
|
|
33
|
+
"leading-6",
|
|
34
|
+
"focus-visible:outline",
|
|
35
|
+
"focus-visible:outline-2",
|
|
36
|
+
"focus-visible:outline-offset-1",
|
|
37
|
+
"focus-visible:outline-[#0081C0]"
|
|
38
|
+
],
|
|
39
|
+
{
|
|
40
|
+
variants: {
|
|
41
|
+
active: {
|
|
42
|
+
true: [
|
|
43
|
+
"text-daikinBlue-500",
|
|
44
|
+
"focus-visible:text-daikinBlue-500",
|
|
45
|
+
"font-bold",
|
|
46
|
+
"hover:text-[#0081C0]",
|
|
47
|
+
"hover:bg-[#DDF3FC]",
|
|
48
|
+
"active:text-[#00689A]",
|
|
49
|
+
"active:bg-[#BBE7F9]",
|
|
50
|
+
"after:bg-daikinBlue-500",
|
|
51
|
+
"after:content-['']",
|
|
52
|
+
"after:h-1",
|
|
53
|
+
"after:absolute",
|
|
54
|
+
"after:inset-0",
|
|
55
|
+
"after:top-auto"
|
|
56
|
+
],
|
|
57
|
+
false: [
|
|
58
|
+
"text-inherit",
|
|
59
|
+
"font-normal",
|
|
60
|
+
"text-daikinNeutral-700",
|
|
61
|
+
"active:bg-daikinNeutral-100",
|
|
62
|
+
"active:text-daikinNeutral-800",
|
|
63
|
+
"hover:bg-[#F2F2F2]",
|
|
64
|
+
"hover:text-[#515151]"
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
);
|
|
70
|
+
const cvaEllipsis = classVarianceAuthority.cva([
|
|
71
|
+
"relative",
|
|
72
|
+
"text-inherit",
|
|
73
|
+
"border-0",
|
|
74
|
+
"no-underline",
|
|
75
|
+
"flex",
|
|
76
|
+
"items-center",
|
|
77
|
+
"justify-center",
|
|
78
|
+
"w-12",
|
|
79
|
+
"h-12",
|
|
80
|
+
"font-daikinSerif",
|
|
81
|
+
"text-base",
|
|
82
|
+
"not-italic",
|
|
83
|
+
"font-normal",
|
|
84
|
+
"leading-6"
|
|
85
|
+
]);
|
|
86
|
+
const cvaChevronButton = classVarianceAuthority.cva([
|
|
87
|
+
"text-inherit",
|
|
88
|
+
"border-0",
|
|
89
|
+
"no-underline",
|
|
90
|
+
"flex",
|
|
91
|
+
"items-center",
|
|
92
|
+
"justify-center",
|
|
93
|
+
"w-12",
|
|
94
|
+
"h-12",
|
|
95
|
+
"text-[#515151]",
|
|
96
|
+
"font-daikinSerif",
|
|
97
|
+
"text-base",
|
|
98
|
+
"not-italic",
|
|
99
|
+
"font-normal",
|
|
100
|
+
"leading-6",
|
|
101
|
+
"enabled:hover:bg-[#F2F2F2]",
|
|
102
|
+
"enabled:hover:text-daikinNeutral-800",
|
|
103
|
+
"enabled:active:bg-daikinNeutral-100",
|
|
104
|
+
"enabled:active:text-daikinNeutral-900",
|
|
105
|
+
"disabled:!text-daikinNeutral-400",
|
|
106
|
+
"focus-visible:outline",
|
|
107
|
+
"focus-visible:outline-2",
|
|
108
|
+
"focus-visible:outline-offset-1",
|
|
109
|
+
"focus-visible:outline-[#0081C0]"
|
|
110
|
+
]);
|
|
111
|
+
exports.DaikinPagination = class DaikinPagination extends lit.LitElement {
|
|
112
|
+
constructor() {
|
|
113
|
+
super(...arguments);
|
|
114
|
+
this.current = 1;
|
|
115
|
+
this.total = 1;
|
|
116
|
+
this.window = 5;
|
|
117
|
+
}
|
|
118
|
+
_goto(page) {
|
|
119
|
+
this.current = this.current = Math.max(Math.min(page, this.total), 1);
|
|
120
|
+
this.dispatchEvent(
|
|
121
|
+
new Event("change", {
|
|
122
|
+
bubbles: true,
|
|
123
|
+
composed: true,
|
|
124
|
+
cancelable: true
|
|
125
|
+
})
|
|
126
|
+
);
|
|
127
|
+
}
|
|
128
|
+
_gotoOffset(offset) {
|
|
129
|
+
this._goto(this.current + offset);
|
|
130
|
+
}
|
|
131
|
+
render() {
|
|
132
|
+
const cvaChevron = cvaChevronButton();
|
|
133
|
+
const pageArray = paginationUtils.calculatePagination(
|
|
134
|
+
this.total,
|
|
135
|
+
this.current,
|
|
136
|
+
this.window
|
|
137
|
+
);
|
|
138
|
+
return lit.html`
|
|
139
|
+
<div aria-label="Pagination" class="inline-flex gap-1">
|
|
140
|
+
<button
|
|
141
|
+
class=${cvaChevron}
|
|
142
|
+
type="button"
|
|
143
|
+
aria-label="Go to the previous page."
|
|
144
|
+
?disabled=${this.current === 1}
|
|
145
|
+
@click=${() => this._gotoOffset(-1)}
|
|
146
|
+
>
|
|
147
|
+
<span class="i-daikin-pagination-chevron-left w-4 h-4"></span>
|
|
148
|
+
</button>
|
|
149
|
+
${repeat_js.repeat(
|
|
150
|
+
pageArray,
|
|
151
|
+
(item, index) => item.type === "page" ? `p${item.page}` : `e${index}`,
|
|
152
|
+
(item) => {
|
|
153
|
+
if (item.type === "page") {
|
|
154
|
+
const buttonClassName = cvaPageButton({
|
|
155
|
+
active: this.current === item.page
|
|
156
|
+
});
|
|
157
|
+
return lit.html`
|
|
158
|
+
<button
|
|
159
|
+
type="button"
|
|
160
|
+
class=${buttonClassName}
|
|
161
|
+
@click=${() => this._goto(item.page)}
|
|
162
|
+
aria-label="Go to page ${item.page}"
|
|
163
|
+
aria-current=${ifDefined_js.ifDefined(
|
|
164
|
+
item.page === this.current ? "page" : void 0
|
|
165
|
+
)}
|
|
166
|
+
>
|
|
167
|
+
${item.page}
|
|
168
|
+
</button>
|
|
169
|
+
`;
|
|
170
|
+
} else {
|
|
171
|
+
return lit.html`
|
|
172
|
+
<span class=${cvaEllipsis()}>
|
|
173
|
+
<button
|
|
174
|
+
type="button"
|
|
175
|
+
disabled
|
|
176
|
+
aria-label="Expand the omitted pages."
|
|
177
|
+
class="after:content-['._._.']"
|
|
178
|
+
></button>
|
|
179
|
+
</span>
|
|
180
|
+
`;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
)}
|
|
184
|
+
<button
|
|
185
|
+
type="button"
|
|
186
|
+
class=${cvaChevron}
|
|
187
|
+
aria-label="Go to the next page."
|
|
188
|
+
?disabled=${this.current === this.total}
|
|
189
|
+
@click=${() => this._gotoOffset(1)}
|
|
190
|
+
>
|
|
191
|
+
<span class="i-daikin-pagination-chevron-right w-4 h-4"></span>
|
|
192
|
+
</button>
|
|
193
|
+
</div>
|
|
194
|
+
`;
|
|
195
|
+
}
|
|
196
|
+
};
|
|
197
|
+
exports.DaikinPagination.styles = lit.css`
|
|
198
|
+
${lit.unsafeCSS(tailwind.default)}
|
|
199
|
+
|
|
200
|
+
:host {
|
|
201
|
+
display: inline-flex;
|
|
202
|
+
}
|
|
203
|
+
`;
|
|
204
|
+
__decorateClass([
|
|
205
|
+
decorators_js.property({ type: Number, reflect: true })
|
|
206
|
+
], exports.DaikinPagination.prototype, "current", 2);
|
|
207
|
+
__decorateClass([
|
|
208
|
+
decorators_js.property({ type: Number, reflect: true })
|
|
209
|
+
], exports.DaikinPagination.prototype, "total", 2);
|
|
210
|
+
__decorateClass([
|
|
211
|
+
decorators_js.property({ type: Number, reflect: true })
|
|
212
|
+
], exports.DaikinPagination.prototype, "window", 2);
|
|
213
|
+
exports.DaikinPagination = __decorateClass([
|
|
214
|
+
decorators_js.customElement("daikin-pagination")
|
|
215
|
+
], exports.DaikinPagination);
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { LitElement } from 'lit';
|
|
2
|
+
/**
|
|
3
|
+
* The pagination component is used to navigate through a list of items that are divided into multiple pages.
|
|
4
|
+
*
|
|
5
|
+
* @fires change - Emitted when the current page number is changed.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
*
|
|
9
|
+
* ```html
|
|
10
|
+
* <daikin-pagination window="5" total="20" current="3"></daikin-pagination>
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class DaikinPagination extends LitElement {
|
|
14
|
+
static readonly styles: import('lit').CSSResult;
|
|
15
|
+
/**
|
|
16
|
+
* The current page number, starting at 1.
|
|
17
|
+
* Must be greater than 0 and less than or equal to `this.total`.
|
|
18
|
+
*/
|
|
19
|
+
current: number;
|
|
20
|
+
/**
|
|
21
|
+
* The number of pages.
|
|
22
|
+
* Must be greater than 0.
|
|
23
|
+
*/
|
|
24
|
+
total: number;
|
|
25
|
+
/**
|
|
26
|
+
* Number of elements to display in pagination, including ellipses.
|
|
27
|
+
* Must be greater than or equal to 5.
|
|
28
|
+
* If a value less than 5 is specified, it will be treated as 5.
|
|
29
|
+
*/
|
|
30
|
+
window: number;
|
|
31
|
+
private _goto;
|
|
32
|
+
private _gotoOffset;
|
|
33
|
+
render(): import('lit-html').TemplateResult<1>;
|
|
34
|
+
}
|
|
35
|
+
declare global {
|
|
36
|
+
interface HTMLElementTagNameMap {
|
|
37
|
+
"daikin-pagination": DaikinPagination;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const daikinPagination = require("./daikin-pagination.cjs");
|
|
4
|
+
Object.defineProperty(exports, "DaikinPagination", {
|
|
5
|
+
enumerable: true,
|
|
6
|
+
get: () => daikinPagination.DaikinPagination
|
|
7
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./daikin-pagination.cjs";
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
function sequence(begin, end) {
|
|
4
|
+
const length = Math.max(end - begin, 0);
|
|
5
|
+
return Array.from({ length }, (_, i) => begin + i);
|
|
6
|
+
}
|
|
7
|
+
function pageSequence(begin, end) {
|
|
8
|
+
return sequence(begin, end).map((page) => ({ type: "page", page }));
|
|
9
|
+
}
|
|
10
|
+
function calculatePagination(total, current, window) {
|
|
11
|
+
if (total < 1) {
|
|
12
|
+
total = 1;
|
|
13
|
+
}
|
|
14
|
+
if (window < 5) {
|
|
15
|
+
window = 5;
|
|
16
|
+
}
|
|
17
|
+
if (total <= window) {
|
|
18
|
+
return pageSequence(1, total + 1);
|
|
19
|
+
}
|
|
20
|
+
const centerLeft = current - Math.floor((window - 5) / 2);
|
|
21
|
+
const centerRight = centerLeft + window - 5;
|
|
22
|
+
if (centerLeft <= 3) {
|
|
23
|
+
return [
|
|
24
|
+
...pageSequence(1, window - 1),
|
|
25
|
+
{ type: "ellipsis", pages: sequence(window - 1, total) },
|
|
26
|
+
{ type: "page", page: total }
|
|
27
|
+
];
|
|
28
|
+
}
|
|
29
|
+
if (centerRight >= total - 2) {
|
|
30
|
+
return [
|
|
31
|
+
{ type: "page", page: 1 },
|
|
32
|
+
{ type: "ellipsis", pages: sequence(2, total - (window - 3)) },
|
|
33
|
+
...sequence(total - (window - 3), total).map(
|
|
34
|
+
(value) => ({ type: "page", page: value })
|
|
35
|
+
),
|
|
36
|
+
{ type: "page", page: total }
|
|
37
|
+
];
|
|
38
|
+
}
|
|
39
|
+
return [
|
|
40
|
+
// Both sides need an ellipsis.
|
|
41
|
+
{ type: "page", page: 1 },
|
|
42
|
+
{ type: "ellipsis", pages: sequence(2, centerLeft) },
|
|
43
|
+
...pageSequence(centerLeft, centerRight + 1),
|
|
44
|
+
{ type: "ellipsis", pages: sequence(centerRight + 1, total) },
|
|
45
|
+
{ type: "page", page: total }
|
|
46
|
+
];
|
|
47
|
+
}
|
|
48
|
+
exports.calculatePagination = calculatePagination;
|
|
49
|
+
exports.pageSequence = pageSequence;
|
|
50
|
+
exports.sequence = sequence;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
interface Page {
|
|
2
|
+
type: "page";
|
|
3
|
+
page: number;
|
|
4
|
+
}
|
|
5
|
+
interface Ellipsis {
|
|
6
|
+
type: "ellipsis";
|
|
7
|
+
pages: number[];
|
|
8
|
+
}
|
|
9
|
+
export type PaginationContent = (Page | Ellipsis)[];
|
|
10
|
+
/**
|
|
11
|
+
* Generates an array of a sequence of numbers in the range `[begin, end)`.
|
|
12
|
+
*
|
|
13
|
+
* @param begin The value of the first element in the generated array.
|
|
14
|
+
* @param end The value of the last element of the generated array + 1.
|
|
15
|
+
* @returns An array of increasing sequences. Empty if `begin` is greater than or equal to `end`.
|
|
16
|
+
*/
|
|
17
|
+
export declare function sequence(begin: number, end: number): number[];
|
|
18
|
+
export declare function pageSequence(begin: number, end: number): Page[];
|
|
19
|
+
/**
|
|
20
|
+
* Calculate the display and hidden page items.
|
|
21
|
+
*
|
|
22
|
+
* @param total The total pages number.
|
|
23
|
+
* @param current The current page number.
|
|
24
|
+
* @param window Number of elements to display in pagination.
|
|
25
|
+
* @returns {PaginationContent}.
|
|
26
|
+
*/
|
|
27
|
+
export declare function calculatePagination(total: number, current: number, window: number): PaginationContent;
|
|
28
|
+
export {};
|
package/dist/cjs/components/progress-bar/{daikin-progress-bar.d.ts → daikin-progress-bar.d.cts}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from 'lit';
|
|
2
|
-
import { MergeVariantProps } from
|
|
2
|
+
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
3
3
|
declare const cvaBar: (props?: ({
|
|
4
4
|
variant?: "error" | "indeterminate" | "inprogress" | "completed" | null | undefined;
|
|
5
5
|
size?: "medium" | "large" | null | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./daikin-progress-bar.cjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./daikin-progress-indicator.cjs";
|
|
@@ -24,7 +24,7 @@ const cvaContainer = classVarianceAuthority.cva(
|
|
|
24
24
|
"w-full",
|
|
25
25
|
"text-system-element-text-primary",
|
|
26
26
|
"pt-1",
|
|
27
|
-
"border-t-
|
|
27
|
+
"border-t-[0.25rem]",
|
|
28
28
|
"font-daikinSerif"
|
|
29
29
|
],
|
|
30
30
|
{
|
|
@@ -37,22 +37,6 @@ const cvaContainer = classVarianceAuthority.cva(
|
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
);
|
|
40
|
-
const cvaLabel = classVarianceAuthority.cva(
|
|
41
|
-
["flex", "items-center", "gap-2", "font-bold", "leading-5"],
|
|
42
|
-
{
|
|
43
|
-
variants: {
|
|
44
|
-
status: {
|
|
45
|
-
unfinished: [],
|
|
46
|
-
inprogress: [],
|
|
47
|
-
finished: [
|
|
48
|
-
"after:size-4",
|
|
49
|
-
"after:i-daikin-status-success",
|
|
50
|
-
"after:text-system-state-primary-active"
|
|
51
|
-
]
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
);
|
|
56
40
|
exports.DaikinProgressIndicatorItem = class DaikinProgressIndicatorItem extends lit.LitElement {
|
|
57
41
|
constructor() {
|
|
58
42
|
super(...arguments);
|
|
@@ -67,8 +51,16 @@ exports.DaikinProgressIndicatorItem = class DaikinProgressIndicatorItem extends
|
|
|
67
51
|
role="listitem"
|
|
68
52
|
aria-current=${ifDefined_js.ifDefined(this.current ? "step" : void 0)}
|
|
69
53
|
>
|
|
70
|
-
<
|
|
71
|
-
|
|
54
|
+
<div class="flex items-center gap-2 font-bold leading-5">
|
|
55
|
+
<slot></slot>
|
|
56
|
+
${this.status === "finished" ? lit.html`
|
|
57
|
+
<span
|
|
58
|
+
class="size-4 i-daikin-status-success text-system-state-primary-active"
|
|
59
|
+
aria-label="Completed"
|
|
60
|
+
></span>
|
|
61
|
+
` : lit.nothing}
|
|
62
|
+
</div>
|
|
63
|
+
<slot name="description" class="text-sm leading-[1.1rem]"></slot>
|
|
72
64
|
</div>`;
|
|
73
65
|
}
|
|
74
66
|
};
|
|
@@ -78,7 +70,7 @@ exports.DaikinProgressIndicatorItem.styles = lit.css`
|
|
|
78
70
|
:host {
|
|
79
71
|
display: block;
|
|
80
72
|
width: 100%;
|
|
81
|
-
min-width:
|
|
73
|
+
min-width: 9rem;
|
|
82
74
|
}
|
|
83
75
|
`;
|
|
84
76
|
__decorateClass([
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
-
import { MergeVariantProps } from
|
|
2
|
+
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
3
3
|
declare const cvaContainer: (props?: ({
|
|
4
4
|
status?: "inprogress" | "unfinished" | "finished" | null | undefined;
|
|
5
5
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
6
|
-
|
|
7
|
-
status?: "inprogress" | "unfinished" | "finished" | null | undefined;
|
|
8
|
-
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
9
|
-
type ProgressIndicatorItemVariantProps = MergeVariantProps<typeof cvaContainer | typeof cvaLabel>;
|
|
6
|
+
type ProgressIndicatorItemVariantProps = MergeVariantProps<typeof cvaContainer>;
|
|
10
7
|
/**
|
|
11
8
|
* The progress indicator item component is a child element within the `daikin-progress-indicator` component, this represents one of the tasks that the user is working on.
|
|
12
9
|
*
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./daikin-progress-indicator-item.cjs";
|
|
@@ -90,7 +90,7 @@ exports.DaikinRadio = class DaikinRadio extends lit.LitElement {
|
|
|
90
90
|
class=${RADIO_CLASS_NAME}
|
|
91
91
|
type="radio"
|
|
92
92
|
name=${this.name}
|
|
93
|
-
value=${this.value}
|
|
93
|
+
.value=${this.value}
|
|
94
94
|
aria-label=${this.labelPosition === "hidden" ? this.label : lit.nothing}
|
|
95
95
|
?disabled=${this.disabled}
|
|
96
96
|
.checked=${this.checked}
|
|
@@ -22,11 +22,11 @@ import { LitElement } from 'lit';
|
|
|
22
22
|
export declare class DaikinRadio extends LitElement {
|
|
23
23
|
static readonly styles: import('lit').CSSResult;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* The form name, submitted as a name/value pair when submitting the form.
|
|
26
26
|
*/
|
|
27
27
|
name: string;
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* The form value, submitted as a name/value pair when submitting the form.
|
|
30
30
|
*/
|
|
31
31
|
value: string;
|
|
32
32
|
/**
|
|
@@ -40,11 +40,11 @@ export declare class DaikinRadio extends LitElement {
|
|
|
40
40
|
*/
|
|
41
41
|
labelPosition: "right" | "hidden";
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Specify the radio button checked state.
|
|
44
44
|
*/
|
|
45
45
|
checked: boolean;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Specify the radio button disabled state.
|
|
48
48
|
*/
|
|
49
49
|
disabled: boolean;
|
|
50
50
|
/**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./daikin-radio.cjs";
|
|
@@ -5,6 +5,7 @@ const lit = require("lit");
|
|
|
5
5
|
const decorators_js = require("lit/decorators.js");
|
|
6
6
|
const ifDefined_js = require("lit/directives/if-defined.js");
|
|
7
7
|
const tailwind = require("../../tailwind.css.cjs");
|
|
8
|
+
require("../radio/daikin-radio.cjs");
|
|
8
9
|
var __defProp = Object.defineProperty;
|
|
9
10
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
10
11
|
var __decorateClass = (decorators, target, key, kind) => {
|
package/dist/cjs/components/radio-group/{daikin-radio-group.d.ts → daikin-radio-group.d.cts}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LitElement, PropertyValues } from 'lit';
|
|
2
|
-
import { MergeVariantProps } from
|
|
3
|
-
import { DaikinInputGroup } from
|
|
2
|
+
import { MergeVariantProps } from "../../type-utils.cjs";
|
|
3
|
+
import { DaikinInputGroup } from "../input-group/index.cjs";
|
|
4
4
|
declare const radioGroupCN: (props?: ({
|
|
5
5
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
6
6
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./daikin-radio-group.cjs";
|