@vtable-guild/vtable-guild 2.0.5 → 2.0.6
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/dist/core/src/components/Button.d.ts +127 -0
- package/dist/core/src/components/Button.d.ts.map +1 -0
- package/dist/core/src/components/Checkbox.d.ts +95 -0
- package/dist/core/src/components/Checkbox.d.ts.map +1 -0
- package/dist/core/src/components/Input.d.ts +106 -0
- package/dist/core/src/components/Input.d.ts.map +1 -0
- package/dist/core/src/components/Radio.d.ts +80 -0
- package/dist/core/src/components/Radio.d.ts.map +1 -0
- package/dist/core/src/components/Scrollbar.d.ts +135 -0
- package/dist/core/src/components/Scrollbar.d.ts.map +1 -0
- package/dist/core/src/components/ScrollbarBar.d.ts +78 -0
- package/dist/core/src/components/ScrollbarBar.d.ts.map +1 -0
- package/dist/core/src/components/Tooltip.d.ts +129 -0
- package/dist/core/src/components/Tooltip.d.ts.map +1 -0
- package/dist/core/src/components/VTableGuildConfigProvider.d.ts +46 -0
- package/dist/core/src/components/VTableGuildConfigProvider.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/Filler.d.ts +32 -0
- package/dist/core/src/components/VirtualList/Filler.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/Item.d.ts +16 -0
- package/dist/core/src/components/VirtualList/Item.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/VirtualList.d.ts +131 -0
- package/dist/core/src/components/VirtualList/VirtualList.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/VirtualScrollBar.d.ts +130 -0
- package/dist/core/src/components/VirtualList/VirtualScrollBar.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useChildren.d.ts +11 -0
- package/dist/core/src/components/VirtualList/hooks/useChildren.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useDiffItem.d.ts +4 -0
- package/dist/core/src/components/VirtualList/hooks/useDiffItem.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useFrameWheel.d.ts +5 -0
- package/dist/core/src/components/VirtualList/hooks/useFrameWheel.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useGetSize.d.ts +5 -0
- package/dist/core/src/components/VirtualList/hooks/useGetSize.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useHeights.d.ts +10 -0
- package/dist/core/src/components/VirtualList/hooks/useHeights.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useMobileTouchMove.d.ts +3 -0
- package/dist/core/src/components/VirtualList/hooks/useMobileTouchMove.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useOriginScroll.d.ts +3 -0
- package/dist/core/src/components/VirtualList/hooks/useOriginScroll.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useScrollDrag.d.ts +5 -0
- package/dist/core/src/components/VirtualList/hooks/useScrollDrag.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/hooks/useScrollTo.d.ts +13 -0
- package/dist/core/src/components/VirtualList/hooks/useScrollTo.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/index.d.ts +7 -0
- package/dist/core/src/components/VirtualList/index.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/interface.d.ts +24 -0
- package/dist/core/src/components/VirtualList/interface.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/utils/CacheMap.d.ts +12 -0
- package/dist/core/src/components/VirtualList/utils/CacheMap.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/utils/algorithmUtil.d.ts +7 -0
- package/dist/core/src/components/VirtualList/utils/algorithmUtil.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/utils/isFirefox.d.ts +3 -0
- package/dist/core/src/components/VirtualList/utils/isFirefox.d.ts.map +1 -0
- package/dist/core/src/components/VirtualList/utils/scrollbarUtil.d.ts +2 -0
- package/dist/core/src/components/VirtualList/utils/scrollbarUtil.d.ts.map +1 -0
- package/dist/core/src/composables/useScrollbar.d.ts +24 -0
- package/dist/core/src/composables/useScrollbar.d.ts.map +1 -0
- package/dist/core/src/composables/useTheme.d.ts +53 -0
- package/dist/core/src/composables/useTheme.d.ts.map +1 -0
- package/dist/core/src/composables/useTheme.test.d.ts +2 -0
- package/dist/core/src/composables/useTheme.test.d.ts.map +1 -0
- package/dist/core/src/index.d.ts +36 -0
- package/dist/core/src/index.d.ts.map +1 -0
- package/dist/core/src/plugin/index.d.ts +35 -0
- package/dist/core/src/plugin/index.d.ts.map +1 -0
- package/dist/core/src/plugin/index.test.d.ts +7 -0
- package/dist/core/src/plugin/index.test.d.ts.map +1 -0
- package/dist/core/src/utils/mergeDeep.d.ts +3 -0
- package/dist/core/src/utils/mergeDeep.d.ts.map +1 -0
- package/dist/core/src/utils/props.d.ts +41 -0
- package/dist/core/src/utils/props.d.ts.map +1 -0
- package/dist/core/src/utils/tv.d.ts +40 -0
- package/dist/core/src/utils/tv.d.ts.map +1 -0
- package/dist/core/src/utils/types.d.ts +155 -0
- package/dist/core/src/utils/types.d.ts.map +1 -0
- package/dist/icons/src/AntdvEmptyIcon.d.ts +3 -0
- package/dist/icons/src/AntdvEmptyIcon.d.ts.map +1 -0
- package/dist/icons/src/AntdvSpinIndicator.d.ts +3 -0
- package/dist/icons/src/AntdvSpinIndicator.d.ts.map +1 -0
- package/dist/icons/src/CaretDownIcon.d.ts +3 -0
- package/dist/icons/src/CaretDownIcon.d.ts.map +1 -0
- package/dist/icons/src/CaretRightIcon.d.ts +3 -0
- package/dist/icons/src/CaretRightIcon.d.ts.map +1 -0
- package/dist/icons/src/CaretUpIcon.d.ts +3 -0
- package/dist/icons/src/CaretUpIcon.d.ts.map +1 -0
- package/dist/icons/src/DownOutlinedIcon.d.ts +3 -0
- package/dist/icons/src/DownOutlinedIcon.d.ts.map +1 -0
- package/dist/icons/src/ElArrowDownIcon.d.ts +3 -0
- package/dist/icons/src/ElArrowDownIcon.d.ts.map +1 -0
- package/dist/icons/src/ElCaretBottomIcon.d.ts +3 -0
- package/dist/icons/src/ElCaretBottomIcon.d.ts.map +1 -0
- package/dist/icons/src/ElCaretTopIcon.d.ts +3 -0
- package/dist/icons/src/ElCaretTopIcon.d.ts.map +1 -0
- package/dist/icons/src/ElEmptyIcon.d.ts +3 -0
- package/dist/icons/src/ElEmptyIcon.d.ts.map +1 -0
- package/dist/icons/src/ElFilterIcon.d.ts +3 -0
- package/dist/icons/src/ElFilterIcon.d.ts.map +1 -0
- package/dist/icons/src/ElLoadingIcon.d.ts +3 -0
- package/dist/icons/src/ElLoadingIcon.d.ts.map +1 -0
- package/dist/icons/src/EmptyIcon.d.ts +3 -0
- package/dist/icons/src/EmptyIcon.d.ts.map +1 -0
- package/dist/icons/src/FilterFilledIcon.d.ts +3 -0
- package/dist/icons/src/FilterFilledIcon.d.ts.map +1 -0
- package/dist/icons/src/SearchIcon.d.ts +3 -0
- package/dist/icons/src/SearchIcon.d.ts.map +1 -0
- package/dist/icons/src/SpinIcon.d.ts +3 -0
- package/dist/icons/src/SpinIcon.d.ts.map +1 -0
- package/dist/icons/src/index.d.ts +17 -0
- package/dist/icons/src/index.d.ts.map +1 -0
- package/dist/index.d.ts +28 -2427
- package/dist/table/src/components/ColGroup.d.ts +15 -0
- package/dist/table/src/components/ColGroup.d.ts.map +1 -0
- package/dist/table/src/components/ExpandIcon.d.ts +37 -0
- package/dist/table/src/components/ExpandIcon.d.ts.map +1 -0
- package/dist/table/src/components/FilterDropdown.d.ts +102 -0
- package/dist/table/src/components/FilterDropdown.d.ts.map +1 -0
- package/dist/table/src/components/FilterIcon.d.ts +24 -0
- package/dist/table/src/components/FilterIcon.d.ts.map +1 -0
- package/dist/table/src/components/ResizeHandle.d.ts +23 -0
- package/dist/table/src/components/ResizeHandle.d.ts.map +1 -0
- package/dist/table/src/components/SelectionCheckbox.d.ts +35 -0
- package/dist/table/src/components/SelectionCheckbox.d.ts.map +1 -0
- package/dist/table/src/components/SelectionDropdown.d.ts +62 -0
- package/dist/table/src/components/SelectionDropdown.d.ts.map +1 -0
- package/dist/table/src/components/SelectionRadio.d.ts +26 -0
- package/dist/table/src/components/SelectionRadio.d.ts.map +1 -0
- package/dist/table/src/components/SortButton.d.ts +37 -0
- package/dist/table/src/components/SortButton.d.ts.map +1 -0
- package/dist/table/src/components/Table.d.ts +414 -0
- package/dist/table/src/components/Table.d.ts.map +1 -0
- package/dist/table/src/components/TableBody.d.ts +73 -0
- package/dist/table/src/components/TableBody.d.ts.map +1 -0
- package/dist/table/src/components/TableCell.d.ts +66 -0
- package/dist/table/src/components/TableCell.d.ts.map +1 -0
- package/dist/table/src/components/TableEmpty.d.ts +29 -0
- package/dist/table/src/components/TableEmpty.d.ts.map +1 -0
- package/dist/table/src/components/TableHeader.d.ts +47 -0
- package/dist/table/src/components/TableHeader.d.ts.map +1 -0
- package/dist/table/src/components/TableHeaderCell.d.ts +39 -0
- package/dist/table/src/components/TableHeaderCell.d.ts.map +1 -0
- package/dist/table/src/components/TableLoading.d.ts +13 -0
- package/dist/table/src/components/TableLoading.d.ts.map +1 -0
- package/dist/table/src/components/TableRow.d.ts +28 -0
- package/dist/table/src/components/TableRow.d.ts.map +1 -0
- package/dist/table/src/components/VTable.test.d.ts +2 -0
- package/dist/table/src/components/VTable.test.d.ts.map +1 -0
- package/dist/table/src/components/VTable.vue.d.ts +18 -0
- package/dist/table/src/components/VTable.vue.d.ts.map +1 -0
- package/dist/table/src/components/VTableSummary.d.ts +85 -0
- package/dist/table/src/components/VTableSummary.d.ts.map +1 -0
- package/dist/table/src/components/VTableSummary.test.d.ts +2 -0
- package/dist/table/src/components/VTableSummary.test.d.ts.map +1 -0
- package/dist/table/src/components/VTableSummaryCell.d.ts +43 -0
- package/dist/table/src/components/VTableSummaryCell.d.ts.map +1 -0
- package/dist/table/src/components/VTableSummaryRow.d.ts +3 -0
- package/dist/table/src/components/VTableSummaryRow.d.ts.map +1 -0
- package/dist/table/src/components/VirtualTableBody.d.ts +130 -0
- package/dist/table/src/components/VirtualTableBody.d.ts.map +1 -0
- package/dist/table/src/composables/index.d.ts +12 -0
- package/dist/table/src/composables/index.d.ts.map +1 -0
- package/dist/table/src/composables/useColumns.d.ts +38 -0
- package/dist/table/src/composables/useColumns.d.ts.map +1 -0
- package/dist/table/src/composables/useColumns.test.d.ts +2 -0
- package/dist/table/src/composables/useColumns.test.d.ts.map +1 -0
- package/dist/table/src/composables/useExpand.d.ts +14 -0
- package/dist/table/src/composables/useExpand.d.ts.map +1 -0
- package/dist/table/src/composables/useExpand.test.d.ts +2 -0
- package/dist/table/src/composables/useExpand.test.d.ts.map +1 -0
- package/dist/table/src/composables/useFilter.d.ts +24 -0
- package/dist/table/src/composables/useFilter.d.ts.map +1 -0
- package/dist/table/src/composables/useFilter.test.d.ts +2 -0
- package/dist/table/src/composables/useFilter.test.d.ts.map +1 -0
- package/dist/table/src/composables/useResize.d.ts +11 -0
- package/dist/table/src/composables/useResize.d.ts.map +1 -0
- package/dist/table/src/composables/useResize.test.d.ts +2 -0
- package/dist/table/src/composables/useResize.test.d.ts.map +1 -0
- package/dist/table/src/composables/useScroll.d.ts +31 -0
- package/dist/table/src/composables/useScroll.d.ts.map +1 -0
- package/dist/table/src/composables/useScroll.test.d.ts +2 -0
- package/dist/table/src/composables/useScroll.test.d.ts.map +1 -0
- package/dist/table/src/composables/useSelection.d.ts +27 -0
- package/dist/table/src/composables/useSelection.d.ts.map +1 -0
- package/dist/table/src/composables/useSelection.test.d.ts +2 -0
- package/dist/table/src/composables/useSelection.test.d.ts.map +1 -0
- package/dist/table/src/composables/useSorter.d.ts +33 -0
- package/dist/table/src/composables/useSorter.d.ts.map +1 -0
- package/dist/table/src/composables/useSorter.test.d.ts +2 -0
- package/dist/table/src/composables/useSorter.test.d.ts.map +1 -0
- package/dist/table/src/composables/useTreeData.d.ts +50 -0
- package/dist/table/src/composables/useTreeData.d.ts.map +1 -0
- package/dist/table/src/composables/useTreeData.test.d.ts +2 -0
- package/dist/table/src/composables/useTreeData.test.d.ts.map +1 -0
- package/dist/table/src/composables/useVirtual.d.ts +16 -0
- package/dist/table/src/composables/useVirtual.d.ts.map +1 -0
- package/dist/table/src/composables/useVirtual.test.d.ts +2 -0
- package/dist/table/src/composables/useVirtual.test.d.ts.map +1 -0
- package/dist/table/src/constants.d.ts +5 -0
- package/dist/table/src/constants.d.ts.map +1 -0
- package/dist/table/src/context.d.ts +216 -0
- package/dist/table/src/context.d.ts.map +1 -0
- package/dist/table/src/index.d.ts +191 -0
- package/dist/table/src/index.d.ts.map +1 -0
- package/dist/table/src/preset-config.d.ts +14 -0
- package/dist/table/src/preset-config.d.ts.map +1 -0
- package/dist/table/src/types/column.d.ts +224 -0
- package/dist/table/src/types/column.d.ts.map +1 -0
- package/dist/table/src/types/index.d.ts +7 -0
- package/dist/table/src/types/index.d.ts.map +1 -0
- package/dist/table/src/types/table.d.ts +241 -0
- package/dist/table/src/types/table.d.ts.map +1 -0
- package/dist/table/src/utils/cell.d.ts +27 -0
- package/dist/table/src/utils/cell.d.ts.map +1 -0
- package/dist/table/src/utils/vnode.d.ts +3 -0
- package/dist/table/src/utils/vnode.d.ts.map +1 -0
- package/dist/theme/src/augment.d.ts +20 -0
- package/dist/theme/src/augment.d.ts.map +1 -0
- package/dist/theme/src/button.d.ts +9 -0
- package/dist/theme/src/button.d.ts.map +1 -0
- package/dist/theme/src/checkbox.d.ts +9 -0
- package/dist/theme/src/checkbox.d.ts.map +1 -0
- package/dist/theme/src/index.d.ts +36 -0
- package/dist/theme/src/index.d.ts.map +1 -0
- package/dist/theme/src/input.d.ts +9 -0
- package/dist/theme/src/input.d.ts.map +1 -0
- package/dist/theme/src/presets/antdv/button.d.ts +75 -0
- package/dist/theme/src/presets/antdv/button.d.ts.map +1 -0
- package/dist/theme/src/presets/antdv/checkbox.d.ts +42 -0
- package/dist/theme/src/presets/antdv/checkbox.d.ts.map +1 -0
- package/dist/theme/src/presets/antdv/input.d.ts +35 -0
- package/dist/theme/src/presets/antdv/input.d.ts.map +1 -0
- package/dist/theme/src/presets/antdv/radio.d.ts +36 -0
- package/dist/theme/src/presets/antdv/radio.d.ts.map +1 -0
- package/dist/theme/src/presets/antdv/scrollbar.d.ts +15 -0
- package/dist/theme/src/presets/antdv/scrollbar.d.ts.map +1 -0
- package/dist/theme/src/presets/antdv/table-locale.d.ts +53 -0
- package/dist/theme/src/presets/antdv/table-locale.d.ts.map +1 -0
- package/dist/theme/src/presets/antdv/table.d.ts +171 -0
- package/dist/theme/src/presets/antdv/table.d.ts.map +1 -0
- package/dist/theme/src/presets/antdv/tooltip.d.ts +25 -0
- package/dist/theme/src/presets/antdv/tooltip.d.ts.map +1 -0
- package/dist/theme/src/presets/element-plus/button.d.ts +74 -0
- package/dist/theme/src/presets/element-plus/button.d.ts.map +1 -0
- package/dist/theme/src/presets/element-plus/checkbox.d.ts +39 -0
- package/dist/theme/src/presets/element-plus/checkbox.d.ts.map +1 -0
- package/dist/theme/src/presets/element-plus/input.d.ts +31 -0
- package/dist/theme/src/presets/element-plus/input.d.ts.map +1 -0
- package/dist/theme/src/presets/element-plus/radio.d.ts +33 -0
- package/dist/theme/src/presets/element-plus/radio.d.ts.map +1 -0
- package/dist/theme/src/presets/element-plus/scrollbar.d.ts +15 -0
- package/dist/theme/src/presets/element-plus/scrollbar.d.ts.map +1 -0
- package/dist/theme/src/presets/element-plus/table-locale.d.ts +53 -0
- package/dist/theme/src/presets/element-plus/table-locale.d.ts.map +1 -0
- package/dist/theme/src/presets/element-plus/table.d.ts +163 -0
- package/dist/theme/src/presets/element-plus/table.d.ts.map +1 -0
- package/dist/theme/src/presets/element-plus/tooltip.d.ts +20 -0
- package/dist/theme/src/presets/element-plus/tooltip.d.ts.map +1 -0
- package/dist/theme/src/presets/index.d.ts +37 -0
- package/dist/theme/src/presets/index.d.ts.map +1 -0
- package/dist/theme/src/presets/index.test.d.ts +2 -0
- package/dist/theme/src/presets/index.test.d.ts.map +1 -0
- package/dist/theme/src/presets/types.d.ts +21 -0
- package/dist/theme/src/presets/types.d.ts.map +1 -0
- package/dist/theme/src/radio.d.ts +9 -0
- package/dist/theme/src/radio.d.ts.map +1 -0
- package/dist/theme/src/scrollbar.d.ts +4 -0
- package/dist/theme/src/scrollbar.d.ts.map +1 -0
- package/dist/theme/src/table.d.ts +9 -0
- package/dist/theme/src/table.d.ts.map +1 -0
- package/dist/theme/src/theme-overrides.typecheck.d.ts +2 -0
- package/dist/theme/src/theme-overrides.typecheck.d.ts.map +1 -0
- package/dist/theme/src/tooltip.d.ts +9 -0
- package/dist/theme/src/tooltip.d.ts.map +1 -0
- package/dist/vtable-guild/src/index.d.ts +4 -0
- package/dist/vtable-guild/src/index.d.ts.map +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { HeaderCellMeta } from '../composables/useColumns';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
cell: {
|
|
5
|
+
type: PropType<HeaderCellMeta<Record<string, unknown>>>;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
index: {
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
thClass: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
headerCellInnerClass: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
}>, () => import("vue/jsx-runtime").JSX.Element | null, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
|
+
cell: {
|
|
22
|
+
type: PropType<HeaderCellMeta<Record<string, unknown>>>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
index: {
|
|
26
|
+
type: NumberConstructor;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
thClass: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
headerCellInnerClass: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
38
|
+
export default _default;
|
|
39
|
+
//# sourceMappingURL=TableHeaderCell.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableHeaderCell.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/TableHeaderCell.tsx"],"names":[],"mappings":"AAAA,OAAO,EASL,KAAK,QAAQ,EACd,MAAM,KAAK,CAAA;AAOZ,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;;;cA4EzC,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;;cAAjD,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;;;;;;;;;;;;;;;;AAJvE,wBAuqBE"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
loadingClass: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
|
+
loadingClass: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export default _default;
|
|
13
|
+
//# sourceMappingURL=TableLoading.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableLoading.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/TableLoading.tsx"],"names":[],"mappings":";;;;;;;;;;;AAGA,wBA4BE"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
3
|
+
rowClass: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
rowProps: {
|
|
8
|
+
type: PropType<Record<string, unknown>>;
|
|
9
|
+
default: undefined;
|
|
10
|
+
};
|
|
11
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
+
click: (_e: MouseEvent) => true;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
14
|
+
rowClass: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
rowProps: {
|
|
19
|
+
type: PropType<Record<string, unknown>>;
|
|
20
|
+
default: undefined;
|
|
21
|
+
};
|
|
22
|
+
}>> & Readonly<{
|
|
23
|
+
onClick?: ((_e: MouseEvent) => any) | undefined;
|
|
24
|
+
}>, {
|
|
25
|
+
rowProps: Record<string, unknown>;
|
|
26
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
27
|
+
export default _default;
|
|
28
|
+
//# sourceMappingURL=TableRow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableRow.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/TableRow.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;;;;;;;cAO9B,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;;;;gBAKvC,UAAU;;;;;;;cALJ,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;;;;;;;;AALvD,wBAiCE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VTable.test.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/VTable.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ColumnType, TableChangeExtra, TableFiltersInfo, TableProps, TableSlotsDecl, VTableSorterResult } from '../types';
|
|
2
|
+
declare const _default: <TRecord extends object = Record<string, unknown>>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
4
|
+
readonly onChange?: ((filters: TableFiltersInfo, sorter: VTableSorterResult<TRecord>, extra: TableChangeExtra<TRecord>) => any) | undefined;
|
|
5
|
+
readonly onResizeColumn?: ((column: ColumnType<TRecord>, width: number) => any) | undefined;
|
|
6
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onChange" | "onResizeColumn"> & TableProps<TRecord> & Partial<{}>> & import('vue').PublicProps;
|
|
7
|
+
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
8
|
+
attrs: any;
|
|
9
|
+
slots: Readonly<TableSlotsDecl<TRecord>> & TableSlotsDecl<TRecord>;
|
|
10
|
+
emit: ((evt: "change", filters: TableFiltersInfo, sorter: VTableSorterResult<TRecord>, extra: TableChangeExtra<TRecord>) => void) & ((evt: "resizeColumn", column: ColumnType<TRecord>, width: number) => void);
|
|
11
|
+
}>) => import('vue').VNode & {
|
|
12
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_PrettifyLocal<T> = {
|
|
16
|
+
[K in keyof T]: T[K];
|
|
17
|
+
} & {};
|
|
18
|
+
//# sourceMappingURL=VTable.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VTable.vue.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/VTable.vue"],"names":[],"mappings":"AA+HA,OAAO,KAAK,EACV,UAAU,EAEV,gBAAgB,EAGhB,gBAAgB,EAEhB,UAAU,EACV,cAAc,EACd,kBAAkB,EACnB,MAAM,UAAU,CAAA;yBAGA,OAAO,SAAS,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAChE,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WA2OO,mBAAmB,CAAC;;;uLAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;;EAIP,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAtPzE,wBAsP4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
export type SummaryFixed = boolean | 'top' | 'bottom';
|
|
3
|
+
declare const _default: {
|
|
4
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
5
|
+
fixed: {
|
|
6
|
+
type: PropType<SummaryFixed>;
|
|
7
|
+
default: undefined;
|
|
8
|
+
};
|
|
9
|
+
}>> & Readonly<{}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
10
|
+
[key: string]: any;
|
|
11
|
+
}>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
12
|
+
fixed: SummaryFixed;
|
|
13
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
14
|
+
P: {};
|
|
15
|
+
B: {};
|
|
16
|
+
D: {};
|
|
17
|
+
C: {};
|
|
18
|
+
M: {};
|
|
19
|
+
Defaults: {};
|
|
20
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
21
|
+
fixed: {
|
|
22
|
+
type: PropType<SummaryFixed>;
|
|
23
|
+
default: undefined;
|
|
24
|
+
};
|
|
25
|
+
}>> & Readonly<{}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
}>[] | undefined, {}, {}, {}, {
|
|
28
|
+
fixed: SummaryFixed;
|
|
29
|
+
}>;
|
|
30
|
+
__isFragment?: never;
|
|
31
|
+
__isTeleport?: never;
|
|
32
|
+
__isSuspense?: never;
|
|
33
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
34
|
+
fixed: {
|
|
35
|
+
type: PropType<SummaryFixed>;
|
|
36
|
+
default: undefined;
|
|
37
|
+
};
|
|
38
|
+
}>> & Readonly<{}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
39
|
+
[key: string]: any;
|
|
40
|
+
}>[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
41
|
+
fixed: SummaryFixed;
|
|
42
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
43
|
+
Row: import('vue').DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
44
|
+
Cell: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
45
|
+
index: {
|
|
46
|
+
type: NumberConstructor;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
colSpan: {
|
|
50
|
+
type: NumberConstructor;
|
|
51
|
+
default: number;
|
|
52
|
+
};
|
|
53
|
+
rowSpan: {
|
|
54
|
+
type: NumberConstructor;
|
|
55
|
+
default: undefined;
|
|
56
|
+
};
|
|
57
|
+
align: {
|
|
58
|
+
type: PropType<import('../../../vtable-guild/src/index.ts').AlignType>;
|
|
59
|
+
default: undefined;
|
|
60
|
+
};
|
|
61
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
62
|
+
index: {
|
|
63
|
+
type: NumberConstructor;
|
|
64
|
+
required: true;
|
|
65
|
+
};
|
|
66
|
+
colSpan: {
|
|
67
|
+
type: NumberConstructor;
|
|
68
|
+
default: number;
|
|
69
|
+
};
|
|
70
|
+
rowSpan: {
|
|
71
|
+
type: NumberConstructor;
|
|
72
|
+
default: undefined;
|
|
73
|
+
};
|
|
74
|
+
align: {
|
|
75
|
+
type: PropType<import('../../../vtable-guild/src/index.ts').AlignType>;
|
|
76
|
+
default: undefined;
|
|
77
|
+
};
|
|
78
|
+
}>> & Readonly<{}>, {
|
|
79
|
+
align: import('../../../vtable-guild/src/index.ts').AlignType;
|
|
80
|
+
colSpan: number;
|
|
81
|
+
rowSpan: number;
|
|
82
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
83
|
+
};
|
|
84
|
+
export default _default;
|
|
85
|
+
//# sourceMappingURL=VTableSummary.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VTableSummary.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/VTableSummary.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAkC,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;AAKnE,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,KAAK,GAAG,QAAQ,CAAA;;;;kBAMpB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;kBAAtB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;cAAtB,QAAQ,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAmBvD,wBAGE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VTableSummary.test.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/VTableSummary.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { AlignType } from '../types';
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
index: {
|
|
5
|
+
type: NumberConstructor;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
colSpan: {
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
default: number;
|
|
11
|
+
};
|
|
12
|
+
rowSpan: {
|
|
13
|
+
type: NumberConstructor;
|
|
14
|
+
default: undefined;
|
|
15
|
+
};
|
|
16
|
+
align: {
|
|
17
|
+
type: PropType<AlignType>;
|
|
18
|
+
default: undefined;
|
|
19
|
+
};
|
|
20
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21
|
+
index: {
|
|
22
|
+
type: NumberConstructor;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
colSpan: {
|
|
26
|
+
type: NumberConstructor;
|
|
27
|
+
default: number;
|
|
28
|
+
};
|
|
29
|
+
rowSpan: {
|
|
30
|
+
type: NumberConstructor;
|
|
31
|
+
default: undefined;
|
|
32
|
+
};
|
|
33
|
+
align: {
|
|
34
|
+
type: PropType<AlignType>;
|
|
35
|
+
default: undefined;
|
|
36
|
+
};
|
|
37
|
+
}>> & Readonly<{}>, {
|
|
38
|
+
align: AlignType;
|
|
39
|
+
colSpan: number;
|
|
40
|
+
rowSpan: number;
|
|
41
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
42
|
+
export default _default;
|
|
43
|
+
//# sourceMappingURL=VTableSummaryCell.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VTableSummaryCell.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/VTableSummaryCell.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAqC,KAAK,QAAQ,EAAE,MAAM,KAAK,CAAA;AAGtE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;;;;;;;;;;;;;;;cAUZ,QAAQ,CAAC,SAAS,CAAC;;;;;;;;;;;;;;;;;cAAnB,QAAQ,CAAC,SAAS,CAAC;;;;;;;;AANhD,wBAsEE"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
3
|
+
//# sourceMappingURL=VTableSummaryRow.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VTableSummaryRow.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/VTableSummaryRow.tsx"],"names":[],"mappings":";AAGA,wBAUE"}
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { VirtualScrollInfo } from '../../../core/src/index.ts';
|
|
3
|
+
import { ColumnType, Key } from '../types';
|
|
4
|
+
type VirtualTableScrollInfo = VirtualScrollInfo & {
|
|
5
|
+
maxX: number;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
8
|
+
dataSource: {
|
|
9
|
+
type: PropType<Record<string, unknown>[]>;
|
|
10
|
+
required: true;
|
|
11
|
+
};
|
|
12
|
+
columns: {
|
|
13
|
+
type: PropType<ColumnType<Record<string, unknown>>[]>;
|
|
14
|
+
required: true;
|
|
15
|
+
};
|
|
16
|
+
tbodyClass: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
rowClass: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
tdClass: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
emptyClass: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
bodyCellEllipsisClass: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
tableClass: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
tableStyle: {
|
|
41
|
+
type: PropType<Record<string, string>>;
|
|
42
|
+
default: undefined;
|
|
43
|
+
};
|
|
44
|
+
rowKey: {
|
|
45
|
+
type: PropType<string | ((record: Record<string, unknown>) => Key)>;
|
|
46
|
+
default: undefined;
|
|
47
|
+
};
|
|
48
|
+
height: {
|
|
49
|
+
type: NumberConstructor;
|
|
50
|
+
required: true;
|
|
51
|
+
};
|
|
52
|
+
itemHeight: {
|
|
53
|
+
type: NumberConstructor;
|
|
54
|
+
required: true;
|
|
55
|
+
};
|
|
56
|
+
/** Sync header scroll when virtual body scrolls horizontally */
|
|
57
|
+
onVirtualScroll: {
|
|
58
|
+
type: PropType<(info: VirtualTableScrollInfo) => void>;
|
|
59
|
+
default: undefined;
|
|
60
|
+
};
|
|
61
|
+
showScrollBar: {
|
|
62
|
+
type: PropType<boolean | "optional" | "hover">;
|
|
63
|
+
default: string;
|
|
64
|
+
};
|
|
65
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
66
|
+
dataSource: {
|
|
67
|
+
type: PropType<Record<string, unknown>[]>;
|
|
68
|
+
required: true;
|
|
69
|
+
};
|
|
70
|
+
columns: {
|
|
71
|
+
type: PropType<ColumnType<Record<string, unknown>>[]>;
|
|
72
|
+
required: true;
|
|
73
|
+
};
|
|
74
|
+
tbodyClass: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
required: true;
|
|
77
|
+
};
|
|
78
|
+
rowClass: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
required: true;
|
|
81
|
+
};
|
|
82
|
+
tdClass: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
required: true;
|
|
85
|
+
};
|
|
86
|
+
emptyClass: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
required: true;
|
|
89
|
+
};
|
|
90
|
+
bodyCellEllipsisClass: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
required: true;
|
|
93
|
+
};
|
|
94
|
+
tableClass: {
|
|
95
|
+
type: StringConstructor;
|
|
96
|
+
required: true;
|
|
97
|
+
};
|
|
98
|
+
tableStyle: {
|
|
99
|
+
type: PropType<Record<string, string>>;
|
|
100
|
+
default: undefined;
|
|
101
|
+
};
|
|
102
|
+
rowKey: {
|
|
103
|
+
type: PropType<string | ((record: Record<string, unknown>) => Key)>;
|
|
104
|
+
default: undefined;
|
|
105
|
+
};
|
|
106
|
+
height: {
|
|
107
|
+
type: NumberConstructor;
|
|
108
|
+
required: true;
|
|
109
|
+
};
|
|
110
|
+
itemHeight: {
|
|
111
|
+
type: NumberConstructor;
|
|
112
|
+
required: true;
|
|
113
|
+
};
|
|
114
|
+
/** Sync header scroll when virtual body scrolls horizontally */
|
|
115
|
+
onVirtualScroll: {
|
|
116
|
+
type: PropType<(info: VirtualTableScrollInfo) => void>;
|
|
117
|
+
default: undefined;
|
|
118
|
+
};
|
|
119
|
+
showScrollBar: {
|
|
120
|
+
type: PropType<boolean | "optional" | "hover">;
|
|
121
|
+
default: string;
|
|
122
|
+
};
|
|
123
|
+
}>> & Readonly<{}>, {
|
|
124
|
+
showScrollBar: boolean | "optional" | "hover";
|
|
125
|
+
onVirtualScroll: (info: VirtualTableScrollInfo) => void;
|
|
126
|
+
rowKey: string | ((record: Record<string, unknown>) => Key);
|
|
127
|
+
tableStyle: Record<string, string>;
|
|
128
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
129
|
+
export default _default;
|
|
130
|
+
//# sourceMappingURL=VirtualTableBody.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"VirtualTableBody.d.ts","sourceRoot":"","sources":["../../../../../table/src/components/VirtualTableBody.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAiB,QAAQ,EAAE,MAAM,KAAK,CAAA;AAElD,OAAO,KAAK,EAAW,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAMpE,OAAO,KAAK,EAAE,UAAU,EAAE,GAAG,EAAE,MAAM,UAAU,CAAA;AAE/C,KAAK,sBAAsB,GAAG,iBAAiB,GAAG;IAChD,IAAI,EAAE,MAAM,CAAA;CACb,CAAA;;;cAKgC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;;;;cACtC,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAO3C,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;;;;cAEhC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;;;IAK3F,gEAAgE;;cAE5C,QAAQ,CAAC,CAAC,IAAI,EAAE,sBAAsB,KAAK,IAAI,CAAC;;;;cAIvC,QAAQ,CAAC,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;;;;;cArBxC,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAC;;;;cACtC,QAAQ,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAO3C,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;;;;cAEhC,QAAQ,CAAC,MAAM,GAAG,CAAC,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,GAAG,CAAC,CAAC;;;;;;;;;;;IAK3F,gEAAgE;;cAE5C,QAAQ,CAAC,CAAC,IAAI,EAAE,sBAAsB,KAAK,IAAI,CAAC;;;;cAIvC,QAAQ,CAAC,OAAO,GAAG,UAAU,GAAG,OAAO,CAAC;;;;;4BAJjC,sBAAsB,KAAK,IAAI;+BAPT,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,GAAG;;;AAb7F,wBAiME"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { useColumns, getByDataIndex } from './useColumns';
|
|
2
|
+
export { useSorter, getColumnKey } from './useSorter';
|
|
3
|
+
export type { SorterState, SorterResult } from './useSorter';
|
|
4
|
+
export { useFilter } from './useFilter';
|
|
5
|
+
export type { FiltersRecord } from './useFilter';
|
|
6
|
+
export { useSelection } from './useSelection';
|
|
7
|
+
export type { SelectionState } from './useSelection';
|
|
8
|
+
export { useScroll } from './useScroll';
|
|
9
|
+
export type { ScrollConfig, FixedOffset } from './useScroll';
|
|
10
|
+
export { useExpand } from './useExpand';
|
|
11
|
+
export { useResize } from './useResize';
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAEzD,OAAO,EAAE,SAAS,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AACrD,YAAY,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE5D,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,YAAY,EAAE,aAAa,EAAE,MAAM,aAAa,CAAA;AAEhD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAC7C,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAEpD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAA;AAE5D,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ColumnGroupType, ColumnType, ColumnsType, DataIndex } from '../types';
|
|
2
|
+
export type ColumnNode<TRecord extends Record<string, unknown>> = ColumnType<TRecord> | ColumnGroupType<TRecord>;
|
|
3
|
+
export interface HeaderCellMeta<TRecord extends Record<string, unknown>> {
|
|
4
|
+
column: ColumnNode<TRecord>;
|
|
5
|
+
colSpan: number;
|
|
6
|
+
rowSpan: number;
|
|
7
|
+
colStart: number;
|
|
8
|
+
colEnd: number;
|
|
9
|
+
depth: number;
|
|
10
|
+
isLeaf: boolean;
|
|
11
|
+
leafColumns: ColumnType<TRecord>[];
|
|
12
|
+
}
|
|
13
|
+
export type HeaderRowMeta<TRecord extends Record<string, unknown>> = HeaderCellMeta<TRecord>[];
|
|
14
|
+
export declare function isColumnGroup<TRecord extends Record<string, unknown>>(column: ColumnNode<TRecord>): column is ColumnGroupType<TRecord>;
|
|
15
|
+
/**
|
|
16
|
+
* 根据 dataIndex 路径从 record 中取值。
|
|
17
|
+
*
|
|
18
|
+
* @example
|
|
19
|
+
* ```ts
|
|
20
|
+
* getByDataIndex({ address: { city: 'NYC' } }, ['address', 'city'])
|
|
21
|
+
* // => 'NYC'
|
|
22
|
+
*
|
|
23
|
+
* getByDataIndex({ name: 'Alice' }, 'name')
|
|
24
|
+
* // => 'Alice'
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare function getByDataIndex(record: Record<string, unknown>, dataIndex?: DataIndex): unknown;
|
|
28
|
+
/**
|
|
29
|
+
* 列解析 composable。
|
|
30
|
+
*
|
|
31
|
+
* @param columns - 响应式列配置 getter
|
|
32
|
+
* @returns { leafColumns, headerRows }
|
|
33
|
+
*/
|
|
34
|
+
export declare function useColumns<TRecord extends Record<string, unknown>>(columns: () => ColumnsType<TRecord>): {
|
|
35
|
+
leafColumns: import('vue').ComputedRef<ColumnType<TRecord>[]>;
|
|
36
|
+
headerRows: import('vue').ComputedRef<HeaderRowMeta<TRecord>[]>;
|
|
37
|
+
};
|
|
38
|
+
//# sourceMappingURL=useColumns.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useColumns.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useColumns.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;AAEnF,MAAM,MAAM,UAAU,CAAC,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,IAC1D,UAAU,CAAC,OAAO,CAAC,GACnB,eAAe,CAAC,OAAO,CAAC,CAAA;AAE5B,MAAM,WAAW,cAAc,CAAC,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;IACrE,MAAM,EAAE,UAAU,CAAC,OAAO,CAAC,CAAA;IAC3B,OAAO,EAAE,MAAM,CAAA;IACf,OAAO,EAAE,MAAM,CAAA;IACf,QAAQ,EAAE,MAAM,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,OAAO,CAAA;IACf,WAAW,EAAE,UAAU,CAAC,OAAO,CAAC,EAAE,CAAA;CACnC;AAED,MAAM,MAAM,aAAa,CAAC,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,IAAI,cAAc,CAAC,OAAO,CAAC,EAAE,CAAA;AAE9F,wBAAgB,aAAa,CAAC,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACnE,MAAM,EAAE,UAAU,CAAC,OAAO,CAAC,GAC1B,MAAM,IAAI,eAAe,CAAC,OAAO,CAAC,CAOpC;AAqFD;;;;;;;;;;;GAWG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,SAAS,CAAC,EAAE,SAAS,GAAG,OAAO,CAY9F;AAED;;;;;GAKG;AACH,wBAAgB,UAAU,CAAC,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAChE,OAAO,EAAE,MAAM,WAAW,CAAC,OAAO,CAAC;;;EASpC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useColumns.test.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useColumns.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ComputedRef } from 'vue';
|
|
2
|
+
import { Key } from '../types';
|
|
3
|
+
import { Expandable } from '../types/table';
|
|
4
|
+
export interface UseExpandReturn {
|
|
5
|
+
isExpanded: (key: Key) => boolean;
|
|
6
|
+
toggleExpand: (record: Record<string, unknown>, index: number) => void;
|
|
7
|
+
expandedKeySet: ComputedRef<Set<Key>>;
|
|
8
|
+
}
|
|
9
|
+
export declare function useExpand(options: {
|
|
10
|
+
expandable: () => Expandable | undefined;
|
|
11
|
+
getRowKey: (record: Record<string, unknown>, index: number) => Key;
|
|
12
|
+
data: () => Record<string, unknown>[];
|
|
13
|
+
}): UseExpandReturn;
|
|
14
|
+
//# sourceMappingURL=useExpand.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useExpand.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useExpand.ts"],"names":[],"mappings":"AAAA,OAAO,EAAwB,KAAK,WAAW,EAAE,MAAM,KAAK,CAAA;AAC5D,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,UAAU,CAAA;AACnC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAA;AAEhD,MAAM,WAAW,eAAe;IAC9B,UAAU,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,OAAO,CAAA;IACjC,YAAY,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACtE,cAAc,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAA;CACtC;AAED,wBAAgB,SAAS,CAAC,OAAO,EAAE;IACjC,UAAU,EAAE,MAAM,UAAU,GAAG,SAAS,CAAA;IACxC,SAAS,EAAE,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,GAAG,CAAA;IAClE,IAAI,EAAE,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,CAAA;CACtC,GAAG,eAAe,CA8DlB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useExpand.test.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useExpand.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ColumnType } from '../types';
|
|
2
|
+
/** 筛选状态记录:columnKey → 选中的筛选值数组 */
|
|
3
|
+
export type FiltersRecord = Record<string, (string | number | boolean)[] | null>;
|
|
4
|
+
export interface UseFilterOptions {
|
|
5
|
+
/** 响应式列配置 getter */
|
|
6
|
+
columns: () => ColumnType<Record<string, unknown>>[];
|
|
7
|
+
/** 筛选变化回调 */
|
|
8
|
+
onFilterChange?: (filters: FiltersRecord) => void;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* 筛选状态管理 composable。
|
|
12
|
+
*
|
|
13
|
+
* 支持受控(column.filteredValue)和非受控(内部 reactive)两种模式:
|
|
14
|
+
* - 受控:column.filteredValue !== undefined 时,组件不管理筛选状态
|
|
15
|
+
* - 非受控:首次使用 column.defaultFilteredValue,后续内部维护
|
|
16
|
+
*/
|
|
17
|
+
export declare function useFilter(options: UseFilterOptions): {
|
|
18
|
+
getFilteredValue: (column: ColumnType<Record<string, unknown>>) => (string | number | boolean)[];
|
|
19
|
+
confirmFilter: (column: ColumnType<Record<string, unknown>>, values: (string | number | boolean)[]) => void;
|
|
20
|
+
resetFilter: (column: ColumnType<Record<string, unknown>>) => void;
|
|
21
|
+
getAllFilters: () => FiltersRecord;
|
|
22
|
+
filterData: <TRecord extends Record<string, unknown>>(data: TRecord[]) => TRecord[];
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=useFilter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFilter.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useFilter.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAG1C,kCAAkC;AAClC,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,EAAE,GAAG,IAAI,CAAC,CAAA;AAEhF,MAAM,WAAW,gBAAgB;IAC/B,oBAAoB;IACpB,OAAO,EAAE,MAAM,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAA;IACpD,aAAa;IACb,cAAc,CAAC,EAAE,CAAC,OAAO,EAAE,aAAa,KAAK,IAAI,CAAA;CAClD;AAED;;;;;;GAMG;AACH,wBAAgB,SAAS,CAAC,OAAO,EAAE,gBAAgB;+BAyBvC,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,KAC1C,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,EAAE;4BA+CtB,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,UACnC,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,EAAE,KACpC,IAAI;0BAoBsB,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,KAAG,IAAI;yBAW7C,aAAa;iBAUnB,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,QAAQ,OAAO,EAAE,KAAG,OAAO,EAAE;EA+BzF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFilter.test.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useFilter.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
import { ColumnType } from '../types';
|
|
3
|
+
export interface UseResizeReturn {
|
|
4
|
+
columnWidths: Record<string, number>;
|
|
5
|
+
startResize: (column: ColumnType<Record<string, unknown>>, colIndex: number, event: PointerEvent) => void;
|
|
6
|
+
isResizing: Ref<boolean>;
|
|
7
|
+
}
|
|
8
|
+
export declare function useResize(options: {
|
|
9
|
+
onResizeColumn?: (column: ColumnType<Record<string, unknown>>, width: number) => void;
|
|
10
|
+
}): UseResizeReturn;
|
|
11
|
+
//# sourceMappingURL=useResize.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useResize.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useResize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,KAAK,GAAG,EAAE,MAAM,KAAK,CAAA;AAC9D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAG1C,MAAM,WAAW,eAAe;IAC9B,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACpC,WAAW,EAAE,CACX,MAAM,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAC3C,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,YAAY,KAChB,IAAI,CAAA;IACT,UAAU,EAAE,GAAG,CAAC,OAAO,CAAC,CAAA;CACzB;AAED,wBAAgB,SAAS,CAAC,OAAO,EAAE;IACjC,cAAc,CAAC,EAAE,CAAC,MAAM,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;CACtF,GAAG,eAAe,CAyElB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useResize.test.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useResize.test.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ComputedRef, Ref } from 'vue';
|
|
2
|
+
import { ColumnType, Key } from '../types';
|
|
3
|
+
export interface ScrollConfig {
|
|
4
|
+
x?: number | string;
|
|
5
|
+
y?: number | string;
|
|
6
|
+
}
|
|
7
|
+
export interface FixedOffset {
|
|
8
|
+
left?: number;
|
|
9
|
+
right?: number;
|
|
10
|
+
isLastLeft?: boolean;
|
|
11
|
+
isFirstRight?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export interface UseScrollReturn {
|
|
14
|
+
headerWrapRef: Ref<HTMLElement | null>;
|
|
15
|
+
bodyWrapRef: Ref<HTMLElement | null>;
|
|
16
|
+
scrollState: ComputedRef<{
|
|
17
|
+
atStart: boolean;
|
|
18
|
+
atEnd: boolean;
|
|
19
|
+
}>;
|
|
20
|
+
handleBodyScroll: (e: {
|
|
21
|
+
scrollTop: number;
|
|
22
|
+
scrollLeft: number;
|
|
23
|
+
}) => void;
|
|
24
|
+
fixedOffsets: ComputedRef<Map<Key, FixedOffset>>;
|
|
25
|
+
updateScrollState: () => void;
|
|
26
|
+
syncHorizontalScroll: (scrollLeft: number, maxScrollLeft?: number) => void;
|
|
27
|
+
}
|
|
28
|
+
export declare function useScroll(options: {
|
|
29
|
+
displayColumns: () => ColumnType<Record<string, unknown>>[];
|
|
30
|
+
}): UseScrollReturn;
|
|
31
|
+
//# sourceMappingURL=useScroll.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useScroll.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useScroll.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkC,KAAK,WAAW,EAAE,KAAK,GAAG,EAAE,MAAM,KAAK,CAAA;AAChF,OAAO,KAAK,EAAE,UAAU,EAAE,GAAG,EAAE,MAAM,UAAU,CAAA;AAO/C,MAAM,WAAW,YAAY;IAC3B,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACnB,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;CACpB;AAED,MAAM,WAAW,WAAW;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB;AAED,MAAM,WAAW,eAAe;IAC9B,aAAa,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;IACtC,WAAW,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAA;IACpC,WAAW,EAAE,WAAW,CAAC;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,KAAK,EAAE,OAAO,CAAA;KAAE,CAAC,CAAA;IAC9D,gBAAgB,EAAE,CAAC,CAAC,EAAE;QAAE,SAAS,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAA;IACxE,YAAY,EAAE,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,WAAW,CAAC,CAAC,CAAA;IAChD,iBAAiB,EAAE,MAAM,IAAI,CAAA;IAC7B,oBAAoB,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,aAAa,CAAC,EAAE,MAAM,KAAK,IAAI,CAAA;CAC3E;AAED,wBAAgB,SAAS,CAAC,OAAO,EAAE;IACjC,cAAc,EAAE,MAAM,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,EAAE,CAAA;CAC5D,GAAG,eAAe,CAkGlB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useScroll.test.d.ts","sourceRoot":"","sources":["../../../../../table/src/composables/useScroll.test.ts"],"names":[],"mappings":""}
|