naive-ui 2.20.3 → 2.21.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/es/_internal/select-menu/src/SelectMenu.d.ts +3 -0
- package/es/_internal/selection/src/Selection.d.ts +3 -0
- package/es/_internal/suffix/src/Suffix.d.ts +4 -1
- package/es/_internal/suffix/src/Suffix.js +4 -1
- package/es/_styles/common/dark.js +1 -1
- package/es/_styles/common/light.d.ts +3 -0
- package/es/_styles/common/light.js +5 -2
- package/es/_styles/global/index.cssr.js +9 -4
- package/es/_styles/transitions/icon-switch.cssr.js +6 -2
- package/es/_utils/naive/extract-public-props.d.ts +1 -1
- package/es/alert/src/Alert.d.ts +3 -0
- package/es/auto-complete/src/AutoComplete.d.ts +8 -1
- package/es/auto-complete/src/AutoComplete.js +2 -2
- package/es/avatar/src/Avatar.d.ts +8 -1
- package/es/avatar/src/Avatar.js +41 -9
- package/es/avatar/src/styles/index.cssr.js +2 -2
- package/es/button/src/Button.d.ts +149 -52
- package/es/button/src/Button.js +128 -56
- package/es/button/src/interface.d.ts +1 -1
- package/es/button/styles/dark.js +3 -0
- package/es/button/styles/light.d.ts +14 -5
- package/es/button/styles/light.js +10 -3
- package/es/calendar/src/Calendar.d.ts +143 -50
- package/es/calendar/styles/light.d.ts +14 -5
- package/es/card/src/Card.d.ts +3 -0
- package/es/cascader/src/Cascader.d.ts +3 -0
- package/es/cascader/src/CascaderOption.d.ts +3 -0
- package/es/cascader/src/CascaderSelectMenu.d.ts +3 -0
- package/es/cascader/src/CascaderSubmenu.d.ts +3 -0
- package/es/checkbox/src/Checkbox.d.ts +8 -5
- package/es/checkbox/src/Checkbox.js +3 -3
- package/es/collapse/src/Collapse.d.ts +3 -0
- package/es/color-picker/src/ColorInputUnit.d.ts +17 -5
- package/es/color-picker/src/ColorPicker.d.ts +126 -45
- package/es/color-picker/styles/light.d.ts +14 -5
- package/es/data-table/src/DataTable.d.ts +183 -51
- package/es/data-table/src/DataTable.js +11 -6
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +20 -5
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +20 -5
- package/es/data-table/src/TableParts/Body.d.ts +25 -6
- package/es/data-table/src/TableParts/Body.js +60 -22
- package/es/data-table/src/TableParts/BodyCheckbox.js +1 -1
- package/es/data-table/src/TableParts/Cell.d.ts +40 -10
- package/es/data-table/src/TableParts/Header.d.ts +20 -5
- package/es/data-table/src/TableParts/Header.js +1 -1
- package/es/data-table/src/interface.d.ts +4 -1
- package/es/data-table/src/styles/index.cssr.js +8 -9
- package/es/data-table/styles/light.d.ts +20 -5
- package/es/data-table/styles/light.js +3 -3
- package/es/date-picker/src/DatePicker.d.ts +298 -105
- package/es/date-picker/src/panel/date.d.ts +45 -15
- package/es/date-picker/src/panel/daterange.d.ts +45 -15
- package/es/date-picker/src/panel/datetime.d.ts +45 -15
- package/es/date-picker/src/panel/datetimerange.d.ts +45 -15
- package/es/date-picker/src/panel/month.d.ts +45 -15
- package/es/date-picker/src/panel/use-calendar.d.ts +45 -15
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +45 -15
- package/es/date-picker/src/panel/use-panel-common.d.ts +45 -15
- package/es/date-picker/styles/light.d.ts +28 -10
- package/es/dialog/src/Dialog.d.ts +101 -35
- package/es/dialog/styles/light.d.ts +14 -5
- package/es/drawer/src/Drawer.d.ts +3 -0
- package/es/drawer/src/DrawerBodyWrapper.d.ts +3 -0
- package/es/drawer/src/DrawerContent.d.ts +3 -0
- package/es/dropdown/index.d.ts +1 -1
- package/es/dropdown/src/Dropdown.d.ts +5 -2
- package/es/dropdown/src/DropdownGroup.d.ts +2 -3
- package/es/dropdown/src/DropdownMenu.d.ts +3 -4
- package/es/dropdown/src/DropdownMenu.js +5 -4
- package/es/dropdown/src/DropdownOption.d.ts +3 -4
- package/es/dropdown/src/DropdownOption.js +2 -2
- package/es/dropdown/src/DropdownRenderOption.d.ts +2 -3
- package/es/dropdown/src/interface.d.ts +9 -30
- package/es/dropdown/src/utils.d.ts +1 -0
- package/es/dropdown/src/utils.js +10 -0
- package/es/dynamic-input/src/DynamicInput.d.ts +143 -50
- package/es/dynamic-input/src/InputPreset.d.ts +17 -5
- package/es/dynamic-input/src/PairPreset.d.ts +17 -5
- package/es/dynamic-input/styles/light.d.ts +14 -5
- package/es/dynamic-tags/src/DynamicTags.d.ts +144 -50
- package/es/dynamic-tags/styles/light.d.ts +14 -5
- package/es/ellipsis/src/Ellipsis.d.ts +3 -0
- package/es/global-style/src/GlobalStyle.js +2 -0
- package/es/input/src/Input.d.ts +4 -0
- package/es/input/src/Input.js +6 -0
- package/es/input/src/interface.d.ts +1 -0
- package/es/input-number/src/InputNumber.d.ts +144 -50
- package/es/input-number/styles/light.d.ts +14 -5
- package/es/layout/src/Layout.d.ts +6 -0
- package/es/layout/src/LayoutContent.d.ts +3 -0
- package/es/layout/src/LayoutSider.d.ts +3 -0
- package/es/log/src/Log.d.ts +3 -0
- package/es/mention/src/Mention.d.ts +4 -0
- package/es/menu/index.d.ts +1 -1
- package/es/menu/src/Menu.d.ts +19 -6
- package/es/menu/src/Menu.js +2 -1
- package/es/menu/src/MenuDivider.d.ts +2 -0
- package/es/menu/src/MenuDivider.js +11 -0
- package/es/menu/src/MenuOption.d.ts +8 -1
- package/es/menu/src/MenuOptionContent.d.ts +4 -1
- package/es/menu/src/Submenu.d.ts +18 -16
- package/es/menu/src/interface.d.ts +23 -4
- package/es/menu/src/styles/index.cssr.js +6 -1
- package/es/menu/src/utils.d.ts +4 -2
- package/es/menu/src/utils.js +16 -2
- package/es/menu/styles/light.d.ts +2 -0
- package/es/menu/styles/light.js +3 -2
- package/es/modal/src/BodyWrapper.d.ts +31 -10
- package/es/modal/src/Modal.d.ts +168 -60
- package/es/modal/styles/light.d.ts +14 -5
- package/es/notification/src/NotificationContainer.d.ts +3 -0
- package/es/pagination/src/Pagination.d.ts +4 -0
- package/es/popconfirm/src/Popconfirm.d.ts +143 -50
- package/es/popconfirm/styles/light.d.ts +14 -5
- package/es/popselect/src/Popselect.d.ts +3 -0
- package/es/popselect/src/PopselectPanel.d.ts +3 -0
- package/es/radio/src/Radio.d.ts +3 -0
- package/es/radio/src/RadioButton.d.ts +3 -0
- package/es/radio/src/use-radio.d.ts +2 -0
- package/es/radio/src/use-radio.js +6 -3
- package/es/select/src/Select.d.ts +3 -0
- package/es/slider/src/Slider.d.ts +70 -91
- package/es/slider/src/Slider.js +326 -583
- package/es/slider/src/interface.d.ts +1 -1
- package/es/slider/src/styles/index.cssr.js +86 -16
- package/es/slider/src/utils.d.ts +10 -1
- package/es/slider/src/utils.js +9 -0
- package/es/slider/styles/_common.d.ts +1 -0
- package/es/slider/styles/_common.js +1 -0
- package/es/slider/styles/light.d.ts +1 -0
- package/es/space/src/Space.js +2 -0
- package/es/steps/src/Step.js +1 -1
- package/es/table/src/Table.d.ts +35 -0
- package/es/table/src/Table.js +8 -4
- package/es/table/src/styles/index.cssr.js +1 -1
- package/es/table/styles/light.d.ts +3 -0
- package/es/table/styles/light.js +2 -2
- package/es/tabs/index.d.ts +2 -0
- package/es/tabs/index.js +1 -0
- package/es/tabs/src/Tab.d.ts +35 -18
- package/es/tabs/src/Tab.js +11 -12
- package/es/tabs/src/Tabs.js +58 -18
- package/es/tag/src/Tag.d.ts +8 -3
- package/es/tag/src/Tag.js +10 -2
- package/es/tag/src/styles/index.cssr.js +10 -5
- package/es/tag/src/styles/rtl.cssr.js +7 -1
- package/es/theme-editor/src/ThemeEditor.d.ts +3 -0
- package/es/time-picker/src/Panel.d.ts +17 -5
- package/es/time-picker/src/TimePicker.d.ts +144 -50
- package/es/time-picker/styles/light.d.ts +14 -5
- package/es/tooltip/src/Tooltip.d.ts +3 -0
- package/es/transfer/src/Transfer.d.ts +143 -50
- package/es/transfer/src/TransferFilter.d.ts +17 -5
- package/es/transfer/src/TransferList.d.ts +17 -5
- package/es/transfer/src/TransferListItem.d.ts +17 -5
- package/es/transfer/styles/light.d.ts +14 -5
- package/es/tree/src/Tree.d.ts +3 -0
- package/es/tree/src/TreeNodeCheckbox.d.ts +3 -0
- package/es/tree-select/src/TreeSelect.d.ts +3 -0
- package/es/upload/src/Upload.d.ts +143 -50
- package/es/upload/src/UploadFile.d.ts +18 -6
- package/es/upload/src/UploadProgress.d.ts +17 -5
- package/es/upload/styles/light.d.ts +14 -5
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/select-menu/src/SelectMenu.d.ts +3 -0
- package/lib/_internal/selection/src/Selection.d.ts +3 -0
- package/lib/_internal/suffix/src/Suffix.d.ts +4 -1
- package/lib/_internal/suffix/src/Suffix.js +4 -1
- package/lib/_styles/common/dark.js +1 -1
- package/lib/_styles/common/light.d.ts +3 -0
- package/lib/_styles/common/light.js +5 -2
- package/lib/_styles/global/index.cssr.js +10 -5
- package/lib/_styles/transitions/icon-switch.cssr.js +7 -2
- package/lib/_utils/naive/extract-public-props.d.ts +1 -1
- package/lib/alert/src/Alert.d.ts +3 -0
- package/lib/auto-complete/src/AutoComplete.d.ts +8 -1
- package/lib/auto-complete/src/AutoComplete.js +2 -2
- package/lib/avatar/src/Avatar.d.ts +8 -1
- package/lib/avatar/src/Avatar.js +40 -8
- package/lib/avatar/src/styles/index.cssr.js +2 -2
- package/lib/button/src/Button.d.ts +149 -52
- package/lib/button/src/Button.js +126 -54
- package/lib/button/src/interface.d.ts +1 -1
- package/lib/button/styles/dark.js +3 -0
- package/lib/button/styles/light.d.ts +14 -5
- package/lib/button/styles/light.js +10 -3
- package/lib/calendar/src/Calendar.d.ts +143 -50
- package/lib/calendar/styles/light.d.ts +14 -5
- package/lib/card/src/Card.d.ts +3 -0
- package/lib/cascader/src/Cascader.d.ts +3 -0
- package/lib/cascader/src/CascaderOption.d.ts +3 -0
- package/lib/cascader/src/CascaderSelectMenu.d.ts +3 -0
- package/lib/cascader/src/CascaderSubmenu.d.ts +3 -0
- package/lib/checkbox/src/Checkbox.d.ts +8 -5
- package/lib/checkbox/src/Checkbox.js +3 -3
- package/lib/collapse/src/Collapse.d.ts +3 -0
- package/lib/color-picker/src/ColorInputUnit.d.ts +17 -5
- package/lib/color-picker/src/ColorPicker.d.ts +126 -45
- package/lib/color-picker/styles/light.d.ts +14 -5
- package/lib/data-table/src/DataTable.d.ts +183 -51
- package/lib/data-table/src/DataTable.js +11 -6
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +20 -5
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +20 -5
- package/lib/data-table/src/TableParts/Body.d.ts +25 -6
- package/lib/data-table/src/TableParts/Body.js +60 -22
- package/lib/data-table/src/TableParts/BodyCheckbox.js +1 -1
- package/lib/data-table/src/TableParts/Cell.d.ts +40 -10
- package/lib/data-table/src/TableParts/Header.d.ts +20 -5
- package/lib/data-table/src/TableParts/Header.js +1 -1
- package/lib/data-table/src/interface.d.ts +4 -1
- package/lib/data-table/src/styles/index.cssr.js +8 -9
- package/lib/data-table/styles/light.d.ts +20 -5
- package/lib/data-table/styles/light.js +3 -3
- package/lib/date-picker/src/DatePicker.d.ts +298 -105
- package/lib/date-picker/src/panel/date.d.ts +45 -15
- package/lib/date-picker/src/panel/daterange.d.ts +45 -15
- package/lib/date-picker/src/panel/datetime.d.ts +45 -15
- package/lib/date-picker/src/panel/datetimerange.d.ts +45 -15
- package/lib/date-picker/src/panel/month.d.ts +45 -15
- package/lib/date-picker/src/panel/use-calendar.d.ts +45 -15
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +45 -15
- package/lib/date-picker/src/panel/use-panel-common.d.ts +45 -15
- package/lib/date-picker/styles/light.d.ts +28 -10
- package/lib/dialog/src/Dialog.d.ts +101 -35
- package/lib/dialog/styles/light.d.ts +14 -5
- package/lib/drawer/src/Drawer.d.ts +3 -0
- package/lib/drawer/src/DrawerBodyWrapper.d.ts +3 -0
- package/lib/drawer/src/DrawerContent.d.ts +3 -0
- package/lib/dropdown/index.d.ts +1 -1
- package/lib/dropdown/src/Dropdown.d.ts +5 -2
- package/lib/dropdown/src/DropdownGroup.d.ts +2 -3
- package/lib/dropdown/src/DropdownMenu.d.ts +3 -4
- package/lib/dropdown/src/DropdownMenu.js +5 -4
- package/lib/dropdown/src/DropdownOption.d.ts +3 -4
- package/lib/dropdown/src/DropdownOption.js +1 -1
- package/lib/dropdown/src/DropdownRenderOption.d.ts +2 -3
- package/lib/dropdown/src/interface.d.ts +9 -30
- package/lib/dropdown/src/utils.d.ts +1 -0
- package/lib/dropdown/src/utils.js +12 -1
- package/lib/dynamic-input/src/DynamicInput.d.ts +143 -50
- package/lib/dynamic-input/src/InputPreset.d.ts +17 -5
- package/lib/dynamic-input/src/PairPreset.d.ts +17 -5
- package/lib/dynamic-input/styles/light.d.ts +14 -5
- package/lib/dynamic-tags/src/DynamicTags.d.ts +144 -50
- package/lib/dynamic-tags/styles/light.d.ts +14 -5
- package/lib/ellipsis/src/Ellipsis.d.ts +3 -0
- package/lib/global-style/src/GlobalStyle.js +2 -0
- package/lib/input/src/Input.d.ts +4 -0
- package/lib/input/src/Input.js +6 -0
- package/lib/input/src/interface.d.ts +1 -0
- package/lib/input-number/src/InputNumber.d.ts +144 -50
- package/lib/input-number/styles/light.d.ts +14 -5
- package/lib/layout/src/Layout.d.ts +6 -0
- package/lib/layout/src/LayoutContent.d.ts +3 -0
- package/lib/layout/src/LayoutSider.d.ts +3 -0
- package/lib/log/src/Log.d.ts +3 -0
- package/lib/mention/src/Mention.d.ts +4 -0
- package/lib/menu/index.d.ts +1 -1
- package/lib/menu/src/Menu.d.ts +19 -6
- package/lib/menu/src/Menu.js +2 -1
- package/lib/menu/src/MenuDivider.d.ts +2 -0
- package/lib/menu/src/MenuDivider.js +13 -0
- package/lib/menu/src/MenuOption.d.ts +8 -1
- package/lib/menu/src/MenuOptionContent.d.ts +4 -1
- package/lib/menu/src/Submenu.d.ts +18 -16
- package/lib/menu/src/interface.d.ts +23 -4
- package/lib/menu/src/styles/index.cssr.js +6 -1
- package/lib/menu/src/utils.d.ts +4 -2
- package/lib/menu/src/utils.js +22 -3
- package/lib/menu/styles/light.d.ts +2 -0
- package/lib/menu/styles/light.js +3 -2
- package/lib/modal/src/BodyWrapper.d.ts +31 -10
- package/lib/modal/src/Modal.d.ts +168 -60
- package/lib/modal/styles/light.d.ts +14 -5
- package/lib/notification/src/NotificationContainer.d.ts +3 -0
- package/lib/pagination/src/Pagination.d.ts +4 -0
- package/lib/popconfirm/src/Popconfirm.d.ts +143 -50
- package/lib/popconfirm/styles/light.d.ts +14 -5
- package/lib/popselect/src/Popselect.d.ts +3 -0
- package/lib/popselect/src/PopselectPanel.d.ts +3 -0
- package/lib/radio/src/Radio.d.ts +3 -0
- package/lib/radio/src/RadioButton.d.ts +3 -0
- package/lib/radio/src/use-radio.d.ts +2 -0
- package/lib/radio/src/use-radio.js +6 -3
- package/lib/select/src/Select.d.ts +3 -0
- package/lib/slider/src/Slider.d.ts +70 -91
- package/lib/slider/src/Slider.js +324 -581
- package/lib/slider/src/interface.d.ts +1 -1
- package/lib/slider/src/styles/index.cssr.js +86 -16
- package/lib/slider/src/utils.d.ts +10 -1
- package/lib/slider/src/utils.js +11 -1
- package/lib/slider/styles/_common.d.ts +1 -0
- package/lib/slider/styles/_common.js +1 -0
- package/lib/slider/styles/light.d.ts +1 -0
- package/lib/space/src/Space.js +2 -0
- package/lib/steps/src/Step.js +1 -1
- package/lib/table/src/Table.d.ts +35 -0
- package/lib/table/src/Table.js +8 -4
- package/lib/table/src/styles/index.cssr.js +1 -1
- package/lib/table/styles/light.d.ts +3 -0
- package/lib/table/styles/light.js +2 -2
- package/lib/tabs/index.d.ts +2 -0
- package/lib/tabs/index.js +3 -1
- package/lib/tabs/src/Tab.d.ts +35 -18
- package/lib/tabs/src/Tab.js +10 -11
- package/lib/tabs/src/Tabs.js +57 -17
- package/lib/tag/src/Tag.d.ts +8 -3
- package/lib/tag/src/Tag.js +10 -1
- package/lib/tag/src/styles/index.cssr.js +10 -5
- package/lib/tag/src/styles/rtl.cssr.js +7 -1
- package/lib/theme-editor/src/ThemeEditor.d.ts +3 -0
- package/lib/time-picker/src/Panel.d.ts +17 -5
- package/lib/time-picker/src/TimePicker.d.ts +144 -50
- package/lib/time-picker/styles/light.d.ts +14 -5
- package/lib/tooltip/src/Tooltip.d.ts +3 -0
- package/lib/transfer/src/Transfer.d.ts +143 -50
- package/lib/transfer/src/TransferFilter.d.ts +17 -5
- package/lib/transfer/src/TransferList.d.ts +17 -5
- package/lib/transfer/src/TransferListItem.d.ts +17 -5
- package/lib/transfer/styles/light.d.ts +14 -5
- package/lib/tree/src/Tree.d.ts +3 -0
- package/lib/tree/src/TreeNodeCheckbox.d.ts +3 -0
- package/lib/tree-select/src/TreeSelect.d.ts +3 -0
- package/lib/upload/src/Upload.d.ts +143 -50
- package/lib/upload/src/UploadFile.d.ts +18 -6
- package/lib/upload/src/UploadProgress.d.ts +17 -5
- package/lib/upload/styles/light.d.ts +14 -5
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +3 -3
- package/web-types.json +146 -9
|
@@ -37,7 +37,7 @@ exports.dataTableProps = Object.assign(Object.assign({}, _mixins_1.useTheme.prop
|
|
|
37
37
|
}, bottomBordered: {
|
|
38
38
|
type: Boolean,
|
|
39
39
|
default: undefined
|
|
40
|
-
}, scrollX: [Number, String], defaultCheckedRowKeys: {
|
|
40
|
+
}, striped: Boolean, scrollX: [Number, String], defaultCheckedRowKeys: {
|
|
41
41
|
type: Array,
|
|
42
42
|
default: () => []
|
|
43
43
|
}, checkedRowKeys: Array, singleLine: {
|
|
@@ -130,7 +130,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
130
130
|
const scrollPartRef = (0, vue_1.ref)('body');
|
|
131
131
|
const mainTableInstRef = (0, vue_1.ref)(null);
|
|
132
132
|
const { rowsRef, colsRef, dataRelatedColsRef, hasEllipsisRef } = (0, use_group_header_1.useGroupHeader)(props);
|
|
133
|
-
const { treeMateRef, mergedCurrentPageRef, paginatedDataRef, rawPaginatedDataRef, selectionColumnRef, hoverKeyRef, mergedPaginationRef, mergedFilterStateRef, mergedSortStateRef, firstContentfulColIndexRef, doUpdateFilters, deriveNextSorter, filter, filters, clearFilter, clearFilters, page, sort } = (0, use_table_data_1.useTableData)(props, { dataRelatedColsRef });
|
|
133
|
+
const { treeMateRef, mergedCurrentPageRef, paginatedDataRef, rawPaginatedDataRef, selectionColumnRef, hoverKeyRef, mergedPaginationRef, mergedFilterStateRef, mergedSortStateRef, firstContentfulColIndexRef, doUpdateFilters, deriveNextSorter, filter, filters, clearFilter, clearFilters, clearSorter, page, sort } = (0, use_table_data_1.useTableData)(props, { dataRelatedColsRef });
|
|
134
134
|
const { doCheckAll, doUncheckAll, doCheck, doUncheck, headerCheckboxDisabledRef, someRowsCheckedRef, allRowsCheckedRef, mergedCheckedRowKeySetRef, mergedInderminateRowKeySetRef } = (0, use_check_1.useCheck)(props, {
|
|
135
135
|
selectionColumnRef,
|
|
136
136
|
treeMateRef,
|
|
@@ -191,6 +191,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
191
191
|
summaryRef: (0, vue_1.toRef)(props, 'summary'),
|
|
192
192
|
virtualScrollRef: (0, vue_1.toRef)(props, 'virtualScroll'),
|
|
193
193
|
rowPropsRef: (0, vue_1.toRef)(props, 'rowProps'),
|
|
194
|
+
stripedRef: (0, vue_1.toRef)(props, 'striped'),
|
|
194
195
|
checkOptionsRef: (0, vue_1.computed)(() => {
|
|
195
196
|
const { value: selectionColumn } = selectionColumnRef;
|
|
196
197
|
return selectionColumn === null || selectionColumn === void 0 ? void 0 : selectionColumn.options;
|
|
@@ -228,14 +229,15 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
228
229
|
const exposedMethods = {
|
|
229
230
|
filter,
|
|
230
231
|
filters,
|
|
231
|
-
clearFilter,
|
|
232
232
|
clearFilters,
|
|
233
|
+
clearSorter,
|
|
233
234
|
page,
|
|
234
|
-
sort
|
|
235
|
+
sort,
|
|
236
|
+
clearFilter
|
|
235
237
|
};
|
|
236
238
|
return Object.assign(Object.assign({ mainTableInstRef, mergedClsPrefix: mergedClsPrefixRef, mergedTheme: themeRef, paginatedData: paginatedDataRef, mergedBordered: mergedBorderedRef, mergedBottomBordered: mergedBottomBorderedRef, mergedPagination: mergedPaginationRef }, exposedMethods), { cssVars: (0, vue_1.computed)(() => {
|
|
237
239
|
const { size } = props;
|
|
238
|
-
const { common: { cubicBezierEaseInOut }, self: { borderColor, tdColorHover, thColor, thColorHover, tdColor, tdTextColor, thTextColor, thFontWeight, thButtonColorHover, thIconColor, thIconColorActive, filterSize, borderRadius, lineHeight, tdColorModal, thColorModal, borderColorModal, thColorHoverModal, tdColorHoverModal, borderColorPopover, thColorPopover, tdColorPopover, tdColorHoverPopover, thColorHoverPopover, paginationMargin, emptyPadding, boxShadowAfter, boxShadowBefore, sorterSize, loadingColor, loadingSize, opacityLoading, [(0, _utils_1.createKey)('fontSize', size)]: fontSize, [(0, _utils_1.createKey)('thPadding', size)]: thPadding, [(0, _utils_1.createKey)('tdPadding', size)]: tdPadding } } = themeRef.value;
|
|
240
|
+
const { common: { cubicBezierEaseInOut }, self: { borderColor, tdColorHover, thColor, thColorHover, tdColor, tdTextColor, thTextColor, thFontWeight, thButtonColorHover, thIconColor, thIconColorActive, filterSize, borderRadius, lineHeight, tdColorModal, thColorModal, borderColorModal, thColorHoverModal, tdColorHoverModal, borderColorPopover, thColorPopover, tdColorPopover, tdColorHoverPopover, thColorHoverPopover, paginationMargin, emptyPadding, boxShadowAfter, boxShadowBefore, sorterSize, loadingColor, loadingSize, opacityLoading, tdColorStriped, tdColorStripedModal, tdColorStripedPopover, [(0, _utils_1.createKey)('fontSize', size)]: fontSize, [(0, _utils_1.createKey)('thPadding', size)]: thPadding, [(0, _utils_1.createKey)('tdPadding', size)]: tdPadding } } = themeRef.value;
|
|
239
241
|
return {
|
|
240
242
|
'--font-size': fontSize,
|
|
241
243
|
'--th-padding': thPadding,
|
|
@@ -272,7 +274,10 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
272
274
|
'--sorter-size': sorterSize,
|
|
273
275
|
'--loading-size': loadingSize,
|
|
274
276
|
'--loading-color': loadingColor,
|
|
275
|
-
'--opacity-loading': opacityLoading
|
|
277
|
+
'--opacity-loading': opacityLoading,
|
|
278
|
+
'--td-color-striped': tdColorStriped,
|
|
279
|
+
'--td-color-striped-modal': tdColorStripedModal,
|
|
280
|
+
'--td-color-striped-popover': tdColorStripedPopover
|
|
276
281
|
};
|
|
277
282
|
}) });
|
|
278
283
|
},
|
|
@@ -83,6 +83,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
83
|
pressedColor: string;
|
|
84
84
|
opacityDisabled: string;
|
|
85
85
|
inputColorDisabled: string;
|
|
86
|
+
buttonColor2: string;
|
|
87
|
+
buttonColor2Hover: string;
|
|
88
|
+
buttonColor2Pressed: string;
|
|
86
89
|
boxShadow1: string;
|
|
87
90
|
boxShadow2: string;
|
|
88
91
|
boxShadow3: string;
|
|
@@ -119,6 +122,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
119
122
|
fontSizeLarge: string;
|
|
120
123
|
borderColor: string;
|
|
121
124
|
tdColorHover: string;
|
|
125
|
+
tdColorStriped: string;
|
|
122
126
|
thColor: string;
|
|
123
127
|
thColorHover: string;
|
|
124
128
|
tdColor: string;
|
|
@@ -130,11 +134,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
130
134
|
thIconColorActive: string;
|
|
131
135
|
borderColorModal: string;
|
|
132
136
|
tdColorHoverModal: string;
|
|
137
|
+
tdColorStripedModal: string;
|
|
133
138
|
thColorModal: string;
|
|
134
139
|
thColorHoverModal: string;
|
|
135
140
|
tdColorModal: string;
|
|
136
141
|
borderColorPopover: string;
|
|
137
142
|
tdColorHoverPopover: string;
|
|
143
|
+
tdColorStripedPopover: string;
|
|
138
144
|
thColorPopover: string;
|
|
139
145
|
thColorHoverPopover: string;
|
|
140
146
|
tdColorPopover: string;
|
|
@@ -171,20 +177,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
171
177
|
fontSizeMedium: string;
|
|
172
178
|
fontSizeLarge: string;
|
|
173
179
|
opacityDisabled: string;
|
|
180
|
+
colorOpacitySecondary: number;
|
|
181
|
+
colorOpacitySecondaryHover: number;
|
|
182
|
+
colorOpacitySecondaryPressed: number;
|
|
183
|
+
colorSecondary: string;
|
|
184
|
+
colorSecondaryHover: string;
|
|
185
|
+
colorSecondaryPressed: string;
|
|
186
|
+
colorTertiary: string;
|
|
187
|
+
colorTertiaryHover: string;
|
|
188
|
+
colorTertiaryPressed: string;
|
|
189
|
+
colorQuaternary: string;
|
|
190
|
+
colorQuaternaryHover: string;
|
|
191
|
+
colorQuaternaryPressed: string;
|
|
174
192
|
color: string;
|
|
175
193
|
colorHover: string;
|
|
176
194
|
colorPressed: string;
|
|
177
195
|
colorFocus: string;
|
|
178
196
|
colorDisabled: string;
|
|
179
197
|
textColor: string;
|
|
198
|
+
textColorTertiary: string;
|
|
180
199
|
textColorHover: string;
|
|
181
200
|
textColorPressed: string;
|
|
182
201
|
textColorFocus: string;
|
|
183
202
|
textColorDisabled: string;
|
|
184
203
|
textColorText: string;
|
|
185
|
-
textColorTextDepth1: string;
|
|
186
|
-
textColorTextDepth2: string;
|
|
187
|
-
textColorTextDepth3: string;
|
|
188
204
|
textColorTextHover: string;
|
|
189
205
|
textColorTextPressed: string;
|
|
190
206
|
textColorTextFocus: string;
|
|
@@ -331,9 +347,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
331
347
|
borderDisabledError: string;
|
|
332
348
|
rippleColorError: string;
|
|
333
349
|
waveOpacity: string;
|
|
334
|
-
fontWeightText: string;
|
|
335
350
|
fontWeight: string;
|
|
336
|
-
|
|
351
|
+
fontWeightStrong: string;
|
|
337
352
|
paddingTiny: string;
|
|
338
353
|
paddingSmall: string;
|
|
339
354
|
paddingMedium: string;
|
|
@@ -108,6 +108,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
108
108
|
pressedColor: string;
|
|
109
109
|
opacityDisabled: string;
|
|
110
110
|
inputColorDisabled: string;
|
|
111
|
+
buttonColor2: string;
|
|
112
|
+
buttonColor2Hover: string;
|
|
113
|
+
buttonColor2Pressed: string;
|
|
111
114
|
boxShadow1: string;
|
|
112
115
|
boxShadow2: string;
|
|
113
116
|
boxShadow3: string;
|
|
@@ -144,6 +147,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
144
147
|
fontSizeLarge: string;
|
|
145
148
|
borderColor: string;
|
|
146
149
|
tdColorHover: string;
|
|
150
|
+
tdColorStriped: string;
|
|
147
151
|
thColor: string;
|
|
148
152
|
thColorHover: string;
|
|
149
153
|
tdColor: string;
|
|
@@ -155,11 +159,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
155
159
|
thIconColorActive: string;
|
|
156
160
|
borderColorModal: string;
|
|
157
161
|
tdColorHoverModal: string;
|
|
162
|
+
tdColorStripedModal: string;
|
|
158
163
|
thColorModal: string;
|
|
159
164
|
thColorHoverModal: string;
|
|
160
165
|
tdColorModal: string;
|
|
161
166
|
borderColorPopover: string;
|
|
162
167
|
tdColorHoverPopover: string;
|
|
168
|
+
tdColorStripedPopover: string;
|
|
163
169
|
thColorPopover: string;
|
|
164
170
|
thColorHoverPopover: string;
|
|
165
171
|
tdColorPopover: string;
|
|
@@ -196,20 +202,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
196
202
|
fontSizeMedium: string;
|
|
197
203
|
fontSizeLarge: string;
|
|
198
204
|
opacityDisabled: string;
|
|
205
|
+
colorOpacitySecondary: number;
|
|
206
|
+
colorOpacitySecondaryHover: number;
|
|
207
|
+
colorOpacitySecondaryPressed: number;
|
|
208
|
+
colorSecondary: string;
|
|
209
|
+
colorSecondaryHover: string;
|
|
210
|
+
colorSecondaryPressed: string;
|
|
211
|
+
colorTertiary: string;
|
|
212
|
+
colorTertiaryHover: string;
|
|
213
|
+
colorTertiaryPressed: string;
|
|
214
|
+
colorQuaternary: string;
|
|
215
|
+
colorQuaternaryHover: string;
|
|
216
|
+
colorQuaternaryPressed: string;
|
|
199
217
|
color: string;
|
|
200
218
|
colorHover: string;
|
|
201
219
|
colorPressed: string;
|
|
202
220
|
colorFocus: string;
|
|
203
221
|
colorDisabled: string;
|
|
204
222
|
textColor: string;
|
|
223
|
+
textColorTertiary: string;
|
|
205
224
|
textColorHover: string;
|
|
206
225
|
textColorPressed: string;
|
|
207
226
|
textColorFocus: string;
|
|
208
227
|
textColorDisabled: string;
|
|
209
228
|
textColorText: string;
|
|
210
|
-
textColorTextDepth1: string;
|
|
211
|
-
textColorTextDepth2: string;
|
|
212
|
-
textColorTextDepth3: string;
|
|
213
229
|
textColorTextHover: string;
|
|
214
230
|
textColorTextPressed: string;
|
|
215
231
|
textColorTextFocus: string;
|
|
@@ -356,9 +372,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
356
372
|
borderDisabledError: string;
|
|
357
373
|
rippleColorError: string;
|
|
358
374
|
waveOpacity: string;
|
|
359
|
-
fontWeightText: string;
|
|
360
375
|
fontWeight: string;
|
|
361
|
-
|
|
376
|
+
fontWeightStrong: string;
|
|
362
377
|
paddingTiny: string;
|
|
363
378
|
paddingSmall: string;
|
|
364
379
|
paddingMedium: string;
|
|
@@ -95,6 +95,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
95
95
|
pressedColor: string;
|
|
96
96
|
opacityDisabled: string;
|
|
97
97
|
inputColorDisabled: string;
|
|
98
|
+
buttonColor2: string;
|
|
99
|
+
buttonColor2Hover: string;
|
|
100
|
+
buttonColor2Pressed: string;
|
|
98
101
|
boxShadow1: string;
|
|
99
102
|
boxShadow2: string;
|
|
100
103
|
boxShadow3: string;
|
|
@@ -131,6 +134,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
131
134
|
fontSizeLarge: string;
|
|
132
135
|
borderColor: string;
|
|
133
136
|
tdColorHover: string;
|
|
137
|
+
tdColorStriped: string;
|
|
134
138
|
thColor: string;
|
|
135
139
|
thColorHover: string;
|
|
136
140
|
tdColor: string;
|
|
@@ -142,11 +146,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
142
146
|
thIconColorActive: string;
|
|
143
147
|
borderColorModal: string;
|
|
144
148
|
tdColorHoverModal: string;
|
|
149
|
+
tdColorStripedModal: string;
|
|
145
150
|
thColorModal: string;
|
|
146
151
|
thColorHoverModal: string;
|
|
147
152
|
tdColorModal: string;
|
|
148
153
|
borderColorPopover: string;
|
|
149
154
|
tdColorHoverPopover: string;
|
|
155
|
+
tdColorStripedPopover: string;
|
|
150
156
|
thColorPopover: string;
|
|
151
157
|
thColorHoverPopover: string;
|
|
152
158
|
tdColorPopover: string;
|
|
@@ -183,20 +189,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
183
189
|
fontSizeMedium: string;
|
|
184
190
|
fontSizeLarge: string;
|
|
185
191
|
opacityDisabled: string;
|
|
192
|
+
colorOpacitySecondary: number;
|
|
193
|
+
colorOpacitySecondaryHover: number;
|
|
194
|
+
colorOpacitySecondaryPressed: number;
|
|
195
|
+
colorSecondary: string;
|
|
196
|
+
colorSecondaryHover: string;
|
|
197
|
+
colorSecondaryPressed: string;
|
|
198
|
+
colorTertiary: string;
|
|
199
|
+
colorTertiaryHover: string;
|
|
200
|
+
colorTertiaryPressed: string;
|
|
201
|
+
colorQuaternary: string;
|
|
202
|
+
colorQuaternaryHover: string;
|
|
203
|
+
colorQuaternaryPressed: string;
|
|
186
204
|
color: string;
|
|
187
205
|
colorHover: string;
|
|
188
206
|
colorPressed: string;
|
|
189
207
|
colorFocus: string;
|
|
190
208
|
colorDisabled: string;
|
|
191
209
|
textColor: string;
|
|
210
|
+
textColorTertiary: string;
|
|
192
211
|
textColorHover: string;
|
|
193
212
|
textColorPressed: string;
|
|
194
213
|
textColorFocus: string;
|
|
195
214
|
textColorDisabled: string;
|
|
196
215
|
textColorText: string;
|
|
197
|
-
textColorTextDepth1: string;
|
|
198
|
-
textColorTextDepth2: string;
|
|
199
|
-
textColorTextDepth3: string;
|
|
200
216
|
textColorTextHover: string;
|
|
201
217
|
textColorTextPressed: string;
|
|
202
218
|
textColorTextFocus: string;
|
|
@@ -343,9 +359,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
343
359
|
borderDisabledError: string;
|
|
344
360
|
rippleColorError: string;
|
|
345
361
|
waveOpacity: string;
|
|
346
|
-
fontWeightText: string;
|
|
347
362
|
fontWeight: string;
|
|
348
|
-
|
|
363
|
+
fontWeightStrong: string;
|
|
349
364
|
paddingTiny: string;
|
|
350
365
|
paddingSmall: string;
|
|
351
366
|
paddingMedium: string;
|
|
@@ -960,7 +975,11 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
960
975
|
}>;
|
|
961
976
|
scrollX: import("vue").Ref<string | number | undefined>;
|
|
962
977
|
cols: import("vue").Ref<ColItem[]>;
|
|
963
|
-
paginatedData: import("vue").
|
|
978
|
+
paginatedData: import("vue").ComputedRef<{
|
|
979
|
+
tmNode: TmNode;
|
|
980
|
+
key: import("treemate").Key;
|
|
981
|
+
striped: boolean;
|
|
982
|
+
}[]>;
|
|
964
983
|
rawPaginatedData: import("vue").Ref<import("../interface").InternalRowData[]>;
|
|
965
984
|
fixedColumnLeftMap: import("vue").Ref<Record<import("../interface").ColumnKey, {
|
|
966
985
|
start: number;
|
|
@@ -16,20 +16,34 @@ const Cell_1 = __importDefault(require("./Cell"));
|
|
|
16
16
|
const ExpandTrigger_1 = __importDefault(require("./ExpandTrigger"));
|
|
17
17
|
const BodyCheckbox_1 = __importDefault(require("./BodyCheckbox"));
|
|
18
18
|
const Header_1 = __importDefault(require("./Header"));
|
|
19
|
-
function flatten(
|
|
19
|
+
function flatten(rowInfos, expandedRowKeys) {
|
|
20
20
|
const fRows = [];
|
|
21
21
|
function traverse(rs) {
|
|
22
22
|
rs.forEach((r) => {
|
|
23
23
|
if (r.children && expandedRowKeys.has(r.key)) {
|
|
24
|
-
fRows.push(
|
|
24
|
+
fRows.push({
|
|
25
|
+
tmNode: r,
|
|
26
|
+
striped: false,
|
|
27
|
+
key: r.key
|
|
28
|
+
});
|
|
25
29
|
traverse(r.children);
|
|
26
30
|
}
|
|
27
31
|
else {
|
|
28
|
-
fRows.push(
|
|
32
|
+
fRows.push({
|
|
33
|
+
key: r.key,
|
|
34
|
+
tmNode: r,
|
|
35
|
+
striped: false
|
|
36
|
+
});
|
|
29
37
|
}
|
|
30
38
|
});
|
|
31
39
|
}
|
|
32
|
-
|
|
40
|
+
rowInfos.forEach((rowInfo) => {
|
|
41
|
+
fRows.push(rowInfo);
|
|
42
|
+
const { children } = rowInfo.tmNode;
|
|
43
|
+
if (children) {
|
|
44
|
+
traverse(children);
|
|
45
|
+
}
|
|
46
|
+
});
|
|
33
47
|
return fRows;
|
|
34
48
|
}
|
|
35
49
|
const VirtualListItemWrapper = (0, vue_1.defineComponent)({
|
|
@@ -64,7 +78,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
64
78
|
flexHeight: Boolean
|
|
65
79
|
},
|
|
66
80
|
setup(props) {
|
|
67
|
-
const { mergedExpandedRowKeysRef, mergedClsPrefixRef, mergedThemeRef, scrollXRef, colsRef, paginatedDataRef, rawPaginatedDataRef, fixedColumnLeftMapRef, fixedColumnRightMapRef, mergedCurrentPageRef, rowClassNameRef, leftActiveFixedColKeyRef, rightActiveFixedColKeyRef, renderExpandRef, hoverKeyRef, summaryRef, mergedSortStateRef, virtualScrollRef, componentId, scrollPartRef, mergedTableLayoutRef, hasChildrenRef, firstContentfulColIndexRef, indentRef, rowPropsRef, maxHeightRef, setHeaderScrollLeft, doUpdateExpandedRowKeys, handleTableBodyScroll, doCheck, doUncheck
|
|
81
|
+
const { mergedExpandedRowKeysRef, mergedClsPrefixRef, mergedThemeRef, scrollXRef, colsRef, paginatedDataRef, rawPaginatedDataRef, fixedColumnLeftMapRef, fixedColumnRightMapRef, mergedCurrentPageRef, rowClassNameRef, leftActiveFixedColKeyRef, rightActiveFixedColKeyRef, renderExpandRef, hoverKeyRef, summaryRef, mergedSortStateRef, virtualScrollRef, componentId, scrollPartRef, mergedTableLayoutRef, hasChildrenRef, firstContentfulColIndexRef, indentRef, rowPropsRef, maxHeightRef, stripedRef, setHeaderScrollLeft, doUpdateExpandedRowKeys, handleTableBodyScroll, doCheck, doUncheck
|
|
68
82
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
69
83
|
} = (0, vue_1.inject)(interface_1.dataTableInjectionKey);
|
|
70
84
|
const scrollbarInstRef = (0, vue_1.ref)(null);
|
|
@@ -196,7 +210,24 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
196
210
|
});
|
|
197
211
|
return Object.assign({ componentId,
|
|
198
212
|
scrollbarInstRef,
|
|
199
|
-
virtualListRef, summary: summaryRef, mergedClsPrefix: mergedClsPrefixRef, mergedTheme: mergedThemeRef, scrollX: scrollXRef, cols: colsRef, paginatedData:
|
|
213
|
+
virtualListRef, summary: summaryRef, mergedClsPrefix: mergedClsPrefixRef, mergedTheme: mergedThemeRef, scrollX: scrollXRef, cols: colsRef, paginatedData: (0, vue_1.computed)(() => {
|
|
214
|
+
const { value: striped } = stripedRef;
|
|
215
|
+
return paginatedDataRef.value.map(striped
|
|
216
|
+
? (tmNode, index) => {
|
|
217
|
+
return {
|
|
218
|
+
tmNode,
|
|
219
|
+
key: tmNode.key,
|
|
220
|
+
striped: index % 2 === 1
|
|
221
|
+
};
|
|
222
|
+
}
|
|
223
|
+
: (tmNode) => {
|
|
224
|
+
return {
|
|
225
|
+
tmNode,
|
|
226
|
+
key: tmNode.key,
|
|
227
|
+
striped: false
|
|
228
|
+
};
|
|
229
|
+
});
|
|
230
|
+
}), rawPaginatedData: rawPaginatedDataRef, fixedColumnLeftMap: fixedColumnLeftMapRef, fixedColumnRightMap: fixedColumnRightMapRef, currentPage: mergedCurrentPageRef, rowClassName: rowClassNameRef, renderExpand: renderExpandRef, mergedExpandedRowKeySet: mergedExpandedRowKeySetRef, hoverKey: hoverKeyRef, mergedSortState: mergedSortStateRef, virtualScroll: virtualScrollRef, mergedTableLayout: mergedTableLayoutRef, hasChildren: hasChildrenRef, firstContentfulColIndex: firstContentfulColIndexRef, indent: indentRef, rowProps: rowPropsRef, maxHeight: maxHeightRef, setHeaderScrollLeft,
|
|
200
231
|
handleMouseenterTable,
|
|
201
232
|
handleVirtualListScroll,
|
|
202
233
|
handleVirtualListResize,
|
|
@@ -230,7 +261,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
230
261
|
const { cols, paginatedData, mergedTheme, fixedColumnLeftMap, fixedColumnRightMap, currentPage, rowClassName, mergedSortState, mergedExpandedRowKeySet, componentId, showHeader, hasChildren, firstContentfulColIndex, rowProps, handleMouseenterTable, handleMouseleaveTable, renderExpand, summary, handleCheckboxUpdateChecked, handleUpdateExpanded } = this;
|
|
231
262
|
const { length: colCount } = cols;
|
|
232
263
|
const rowIndexToKey = {};
|
|
233
|
-
paginatedData.forEach((tmNode, rowIndex) => {
|
|
264
|
+
paginatedData.forEach(({ tmNode }, rowIndex) => {
|
|
234
265
|
rowIndexToKey[rowIndex] = tmNode.key;
|
|
235
266
|
});
|
|
236
267
|
let mergedData;
|
|
@@ -244,10 +275,12 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
244
275
|
mergedData = [
|
|
245
276
|
...mergedPaginationData,
|
|
246
277
|
...summaryRows.map((row, i) => ({
|
|
247
|
-
|
|
248
|
-
rawNode: row,
|
|
278
|
+
isSummaryRow: true,
|
|
249
279
|
key: `__n_summary__${i}`,
|
|
250
|
-
|
|
280
|
+
tmNode: {
|
|
281
|
+
rawNode: row,
|
|
282
|
+
disabled: true
|
|
283
|
+
}
|
|
251
284
|
}))
|
|
252
285
|
];
|
|
253
286
|
}
|
|
@@ -255,10 +288,12 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
255
288
|
mergedData = [
|
|
256
289
|
...mergedPaginationData,
|
|
257
290
|
{
|
|
258
|
-
|
|
259
|
-
rawNode: summaryRows,
|
|
291
|
+
isSummaryRow: true,
|
|
260
292
|
key: '__n_summary__',
|
|
261
|
-
|
|
293
|
+
tmNode: {
|
|
294
|
+
rawNode: summaryRows,
|
|
295
|
+
disabled: true
|
|
296
|
+
}
|
|
262
297
|
}
|
|
263
298
|
];
|
|
264
299
|
}
|
|
@@ -281,9 +316,11 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
281
316
|
`${mergedClsPrefix}-data-table-td--last-row`
|
|
282
317
|
], colspan: colCount }, renderExpand(rawNode, rowIndex))));
|
|
283
318
|
}
|
|
284
|
-
const
|
|
285
|
-
const
|
|
286
|
-
const
|
|
319
|
+
const isSummary = 'isSummaryRow' in rowInfo;
|
|
320
|
+
const striped = !isSummary && rowInfo.striped;
|
|
321
|
+
const { tmNode, key: rowKey } = rowInfo;
|
|
322
|
+
const { rawNode: rowData } = tmNode;
|
|
323
|
+
const expanded = mergedExpandedRowKeySet.has(rowKey);
|
|
287
324
|
const props = rowProps ? rowProps(rowData, rowIndex) : undefined;
|
|
288
325
|
const mergedRowClassName = typeof rowClassName === 'string'
|
|
289
326
|
? rowClassName
|
|
@@ -292,6 +329,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
292
329
|
this.hoverKey = rowKey;
|
|
293
330
|
}, key: rowKey, class: [
|
|
294
331
|
`${mergedClsPrefix}-data-table-tr`,
|
|
332
|
+
striped && `${mergedClsPrefix}-data-table-tr--striped`,
|
|
295
333
|
mergedRowClassName
|
|
296
334
|
] }, props), cols.map((col, colIndex) => {
|
|
297
335
|
var _a, _b, _c, _d, _e;
|
|
@@ -308,12 +346,12 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
308
346
|
const colKey = (0, utils_1.getColKey)(col);
|
|
309
347
|
const { rowSpan, colSpan } = column;
|
|
310
348
|
const mergedColSpan = isSummary
|
|
311
|
-
? ((_a = rowInfo.rawNode[colKey]) === null || _a === void 0 ? void 0 : _a.colSpan) || 1 // optional for #1276
|
|
349
|
+
? ((_a = rowInfo.tmNode.rawNode[colKey]) === null || _a === void 0 ? void 0 : _a.colSpan) || 1 // optional for #1276
|
|
312
350
|
: colSpan
|
|
313
351
|
? colSpan(rowData, rowIndex)
|
|
314
352
|
: 1;
|
|
315
353
|
const mergedRowSpan = isSummary
|
|
316
|
-
? ((_b = rowInfo.rawNode[colKey]) === null || _b === void 0 ? void 0 : _b.rowSpan) || 1 // optional for #1276
|
|
354
|
+
? ((_b = rowInfo.tmNode.rawNode[colKey]) === null || _b === void 0 ? void 0 : _b.rowSpan) || 1 // optional for #1276
|
|
317
355
|
: rowSpan
|
|
318
356
|
? rowSpan(rowData, rowIndex)
|
|
319
357
|
: 1;
|
|
@@ -373,13 +411,13 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
373
411
|
] },
|
|
374
412
|
hasChildren && colIndex === firstContentfulColIndex
|
|
375
413
|
? [
|
|
376
|
-
(0, seemly_1.repeat)(isSummary ? 0 : rowInfo.level, (0, vue_1.h)("div", { class: `${mergedClsPrefix}-data-table-indent`, style: indentStyle })),
|
|
377
|
-
isSummary || !rowInfo.children ? ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-data-table-expand-placeholder` })) : ((0, vue_1.h)(ExpandTrigger_1.default, { class: `${mergedClsPrefix}-data-table-expand-trigger`, clsPrefix: mergedClsPrefix, expanded: expanded, onClick: () => {
|
|
414
|
+
(0, seemly_1.repeat)(isSummary ? 0 : rowInfo.tmNode.level, (0, vue_1.h)("div", { class: `${mergedClsPrefix}-data-table-indent`, style: indentStyle })),
|
|
415
|
+
isSummary || !rowInfo.tmNode.children ? ((0, vue_1.h)("div", { class: `${mergedClsPrefix}-data-table-expand-placeholder` })) : ((0, vue_1.h)(ExpandTrigger_1.default, { class: `${mergedClsPrefix}-data-table-expand-trigger`, clsPrefix: mergedClsPrefix, expanded: expanded, onClick: () => {
|
|
378
416
|
handleUpdateExpanded(rowKey);
|
|
379
417
|
} }))
|
|
380
418
|
]
|
|
381
419
|
: null,
|
|
382
|
-
column.type === 'selection' ? (!isSummary ? ((0, vue_1.h)(BodyCheckbox_1.default, { key: currentPage, rowKey: rowKey, disabled: rowInfo.disabled, onUpdateChecked: (checked, e) => handleCheckboxUpdateChecked(rowInfo, checked, e.shiftKey) })) : null) : column.type === 'expand' ? (!isSummary ? (!column.expandable ||
|
|
420
|
+
column.type === 'selection' ? (!isSummary ? ((0, vue_1.h)(BodyCheckbox_1.default, { key: currentPage, rowKey: rowKey, disabled: rowInfo.tmNode.disabled, onUpdateChecked: (checked, e) => handleCheckboxUpdateChecked(rowInfo.tmNode, checked, e.shiftKey) })) : null) : column.type === 'expand' ? (!isSummary ? (!column.expandable ||
|
|
383
421
|
((_e = column.expandable) === null || _e === void 0 ? void 0 : _e.call(column, rowData, rowIndex)) ? ((0, vue_1.h)(ExpandTrigger_1.default, { clsPrefix: mergedClsPrefix, expanded: expanded, onClick: () => handleUpdateExpanded(rowKey) })) : null) : null) : ((0, vue_1.h)(Cell_1.default, { index: rowIndex, row: rowData, column: column, isSummary: isSummary, mergedTheme: mergedTheme }))));
|
|
384
422
|
})));
|
|
385
423
|
return row;
|
|
@@ -391,7 +429,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
391
429
|
displayedData.push(rowInfo, {
|
|
392
430
|
isExpandedRow: true,
|
|
393
431
|
key: rowInfo.key,
|
|
394
|
-
tmNode: rowInfo
|
|
432
|
+
tmNode: rowInfo.tmNode
|
|
395
433
|
});
|
|
396
434
|
}
|
|
397
435
|
else {
|
|
@@ -26,7 +26,7 @@ exports.default = (0, vue_1.defineComponent)({
|
|
|
26
26
|
} = (0, vue_1.inject)(interface_1.dataTableInjectionKey);
|
|
27
27
|
return () => {
|
|
28
28
|
const { rowKey } = props;
|
|
29
|
-
return ((0, vue_1.h)(checkbox_1.NCheckbox, { disabled: props.disabled, indeterminate: mergedInderminateRowKeySetRef.value.has(rowKey), checked: mergedCheckedRowKeySetRef.value.has(rowKey), onUpdateChecked: props.onUpdateChecked }));
|
|
29
|
+
return ((0, vue_1.h)(checkbox_1.NCheckbox, { privateInsideTable: true, disabled: props.disabled, indeterminate: mergedInderminateRowKeySetRef.value.has(rowKey), checked: mergedCheckedRowKeySetRef.value.has(rowKey), onUpdateChecked: props.onUpdateChecked }));
|
|
30
30
|
};
|
|
31
31
|
}
|
|
32
32
|
});
|
|
@@ -88,6 +88,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
88
88
|
pressedColor: string;
|
|
89
89
|
opacityDisabled: string;
|
|
90
90
|
inputColorDisabled: string;
|
|
91
|
+
buttonColor2: string;
|
|
92
|
+
buttonColor2Hover: string;
|
|
93
|
+
buttonColor2Pressed: string;
|
|
91
94
|
boxShadow1: string;
|
|
92
95
|
boxShadow2: string;
|
|
93
96
|
boxShadow3: string;
|
|
@@ -124,6 +127,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
124
127
|
fontSizeLarge: string;
|
|
125
128
|
borderColor: string;
|
|
126
129
|
tdColorHover: string;
|
|
130
|
+
tdColorStriped: string;
|
|
127
131
|
thColor: string;
|
|
128
132
|
thColorHover: string;
|
|
129
133
|
tdColor: string;
|
|
@@ -135,11 +139,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
135
139
|
thIconColorActive: string;
|
|
136
140
|
borderColorModal: string;
|
|
137
141
|
tdColorHoverModal: string;
|
|
142
|
+
tdColorStripedModal: string;
|
|
138
143
|
thColorModal: string;
|
|
139
144
|
thColorHoverModal: string;
|
|
140
145
|
tdColorModal: string;
|
|
141
146
|
borderColorPopover: string;
|
|
142
147
|
tdColorHoverPopover: string;
|
|
148
|
+
tdColorStripedPopover: string;
|
|
143
149
|
thColorPopover: string;
|
|
144
150
|
thColorHoverPopover: string;
|
|
145
151
|
tdColorPopover: string;
|
|
@@ -176,20 +182,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
176
182
|
fontSizeMedium: string;
|
|
177
183
|
fontSizeLarge: string;
|
|
178
184
|
opacityDisabled: string;
|
|
185
|
+
colorOpacitySecondary: number;
|
|
186
|
+
colorOpacitySecondaryHover: number;
|
|
187
|
+
colorOpacitySecondaryPressed: number;
|
|
188
|
+
colorSecondary: string;
|
|
189
|
+
colorSecondaryHover: string;
|
|
190
|
+
colorSecondaryPressed: string;
|
|
191
|
+
colorTertiary: string;
|
|
192
|
+
colorTertiaryHover: string;
|
|
193
|
+
colorTertiaryPressed: string;
|
|
194
|
+
colorQuaternary: string;
|
|
195
|
+
colorQuaternaryHover: string;
|
|
196
|
+
colorQuaternaryPressed: string;
|
|
179
197
|
color: string;
|
|
180
198
|
colorHover: string;
|
|
181
199
|
colorPressed: string;
|
|
182
200
|
colorFocus: string;
|
|
183
201
|
colorDisabled: string;
|
|
184
202
|
textColor: string;
|
|
203
|
+
textColorTertiary: string;
|
|
185
204
|
textColorHover: string;
|
|
186
205
|
textColorPressed: string;
|
|
187
206
|
textColorFocus: string;
|
|
188
207
|
textColorDisabled: string;
|
|
189
208
|
textColorText: string;
|
|
190
|
-
textColorTextDepth1: string;
|
|
191
|
-
textColorTextDepth2: string;
|
|
192
|
-
textColorTextDepth3: string;
|
|
193
209
|
textColorTextHover: string;
|
|
194
210
|
textColorTextPressed: string;
|
|
195
211
|
textColorTextFocus: string;
|
|
@@ -336,9 +352,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
336
352
|
borderDisabledError: string;
|
|
337
353
|
rippleColorError: string;
|
|
338
354
|
waveOpacity: string;
|
|
339
|
-
fontWeightText: string;
|
|
340
355
|
fontWeight: string;
|
|
341
|
-
|
|
356
|
+
fontWeightStrong: string;
|
|
342
357
|
paddingTiny: string;
|
|
343
358
|
paddingSmall: string;
|
|
344
359
|
paddingMedium: string;
|
|
@@ -1036,6 +1051,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1036
1051
|
pressedColor: string;
|
|
1037
1052
|
opacityDisabled: string;
|
|
1038
1053
|
inputColorDisabled: string;
|
|
1054
|
+
buttonColor2: string;
|
|
1055
|
+
buttonColor2Hover: string;
|
|
1056
|
+
buttonColor2Pressed: string;
|
|
1039
1057
|
boxShadow1: string;
|
|
1040
1058
|
boxShadow2: string;
|
|
1041
1059
|
boxShadow3: string;
|
|
@@ -1072,6 +1090,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1072
1090
|
fontSizeLarge: string;
|
|
1073
1091
|
borderColor: string;
|
|
1074
1092
|
tdColorHover: string;
|
|
1093
|
+
tdColorStriped: string;
|
|
1075
1094
|
thColor: string;
|
|
1076
1095
|
thColorHover: string;
|
|
1077
1096
|
tdColor: string;
|
|
@@ -1083,11 +1102,13 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1083
1102
|
thIconColorActive: string;
|
|
1084
1103
|
borderColorModal: string;
|
|
1085
1104
|
tdColorHoverModal: string;
|
|
1105
|
+
tdColorStripedModal: string;
|
|
1086
1106
|
thColorModal: string;
|
|
1087
1107
|
thColorHoverModal: string;
|
|
1088
1108
|
tdColorModal: string;
|
|
1089
1109
|
borderColorPopover: string;
|
|
1090
1110
|
tdColorHoverPopover: string;
|
|
1111
|
+
tdColorStripedPopover: string;
|
|
1091
1112
|
thColorPopover: string;
|
|
1092
1113
|
thColorHoverPopover: string;
|
|
1093
1114
|
tdColorPopover: string;
|
|
@@ -1124,20 +1145,30 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1124
1145
|
fontSizeMedium: string;
|
|
1125
1146
|
fontSizeLarge: string;
|
|
1126
1147
|
opacityDisabled: string;
|
|
1148
|
+
colorOpacitySecondary: number;
|
|
1149
|
+
colorOpacitySecondaryHover: number;
|
|
1150
|
+
colorOpacitySecondaryPressed: number;
|
|
1151
|
+
colorSecondary: string;
|
|
1152
|
+
colorSecondaryHover: string;
|
|
1153
|
+
colorSecondaryPressed: string;
|
|
1154
|
+
colorTertiary: string;
|
|
1155
|
+
colorTertiaryHover: string;
|
|
1156
|
+
colorTertiaryPressed: string;
|
|
1157
|
+
colorQuaternary: string;
|
|
1158
|
+
colorQuaternaryHover: string;
|
|
1159
|
+
colorQuaternaryPressed: string;
|
|
1127
1160
|
color: string;
|
|
1128
1161
|
colorHover: string;
|
|
1129
1162
|
colorPressed: string;
|
|
1130
1163
|
colorFocus: string;
|
|
1131
1164
|
colorDisabled: string;
|
|
1132
1165
|
textColor: string;
|
|
1166
|
+
textColorTertiary: string;
|
|
1133
1167
|
textColorHover: string;
|
|
1134
1168
|
textColorPressed: string;
|
|
1135
1169
|
textColorFocus: string;
|
|
1136
1170
|
textColorDisabled: string;
|
|
1137
1171
|
textColorText: string;
|
|
1138
|
-
textColorTextDepth1: string;
|
|
1139
|
-
textColorTextDepth2: string;
|
|
1140
|
-
textColorTextDepth3: string;
|
|
1141
1172
|
textColorTextHover: string;
|
|
1142
1173
|
textColorTextPressed: string;
|
|
1143
1174
|
textColorTextFocus: string;
|
|
@@ -1284,9 +1315,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1284
1315
|
borderDisabledError: string;
|
|
1285
1316
|
rippleColorError: string;
|
|
1286
1317
|
waveOpacity: string;
|
|
1287
|
-
fontWeightText: string;
|
|
1288
1318
|
fontWeight: string;
|
|
1289
|
-
|
|
1319
|
+
fontWeightStrong: string;
|
|
1290
1320
|
paddingTiny: string;
|
|
1291
1321
|
paddingSmall: string;
|
|
1292
1322
|
paddingMedium: string;
|