@dazhicheng/ui 1.1.0 → 1.4.1
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/components/tt-form/src/form-render/form.vue.d.ts +1 -1
- package/dist/components/tt-form/src/index.vue.d.ts +4 -4
- package/dist/components/tt-form-adapter/component/index.d.ts +1 -1
- package/dist/components/tt-form-adapter/component/index.d.ts.map +1 -1
- package/dist/components/tt-form-adapter/index.d.ts +2 -2
- package/dist/components/tt-form-adapter/index.d.ts.map +1 -1
- package/dist/components/tt-loading/index.d.ts +17 -0
- package/dist/components/tt-loading/index.d.ts.map +1 -0
- package/dist/components/tt-loading/src/directive.d.ts +10 -0
- package/dist/components/tt-loading/src/directive.d.ts.map +1 -0
- package/dist/components/tt-loading/src/loading.vue.d.ts +13 -0
- package/dist/components/tt-loading/src/loading.vue.d.ts.map +1 -0
- package/dist/components/tt-loading/src/service.d.ts +26 -0
- package/dist/components/tt-loading/src/service.d.ts.map +1 -0
- package/dist/components/tt-loading/src/type.d.ts +21 -0
- package/dist/components/tt-loading/src/type.d.ts.map +1 -0
- package/dist/components/tt-part/index.d.ts +3 -3
- package/dist/components/tt-part/index.vue.d.ts +1 -1
- package/dist/components/tt-table/index.d.ts +128 -0
- package/dist/components/tt-table/index.d.ts.map +1 -0
- package/dist/components/tt-table/src/Table.vue.d.ts +1746 -0
- package/dist/components/tt-table/src/Table.vue.d.ts.map +1 -0
- package/dist/components/tt-table/src/TableForm.vue.d.ts +163 -0
- package/dist/components/tt-table/src/TableForm.vue.d.ts.map +1 -0
- package/dist/components/tt-table/src/componentMap.d.ts +9 -0
- package/dist/components/tt-table/src/componentMap.d.ts.map +1 -0
- package/dist/components/tt-table/src/components/RowContext.d.ts +25 -0
- package/dist/components/tt-table/src/components/RowContext.d.ts.map +1 -0
- package/dist/components/tt-table/src/components/TableAction.vue.d.ts +80 -0
- package/dist/components/tt-table/src/components/TableAction.vue.d.ts.map +1 -0
- package/dist/components/tt-table/src/components/TableButtons.d.ts +31 -0
- package/dist/components/tt-table/src/components/TableButtons.d.ts.map +1 -0
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts +1685 -0
- package/dist/components/tt-table/src/components/TableToobalTools.vue.d.ts.map +1 -0
- package/dist/components/tt-table/src/emits.d.ts +2 -0
- package/dist/components/tt-table/src/emits.d.ts.map +1 -0
- package/dist/components/tt-table/src/enum.d.ts +3 -0
- package/dist/components/tt-table/src/enum.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useCache.d.ts +21 -0
- package/dist/components/tt-table/src/hooks/useCache.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useCellArea.d.ts +16 -0
- package/dist/components/tt-table/src/hooks/useCellArea.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useColumns.d.ts +32 -0
- package/dist/components/tt-table/src/hooks/useColumns.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useDataSource.d.ts +30 -0
- package/dist/components/tt-table/src/hooks/useDataSource.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useFullscreen.d.ts +12 -0
- package/dist/components/tt-table/src/hooks/useFullscreen.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts +1083 -0
- package/dist/components/tt-table/src/hooks/useLeftRightSlot.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/usePagination.d.ts +103 -0
- package/dist/components/tt-table/src/hooks/usePagination.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useRowSelection.d.ts +31 -0
- package/dist/components/tt-table/src/hooks/useRowSelection.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTable.d.ts +8 -0
- package/dist/components/tt-table/src/hooks/useTable.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableContext.d.ts +44 -0
- package/dist/components/tt-table/src/hooks/useTableContext.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableEvent.d.ts +102 -0
- package/dist/components/tt-table/src/hooks/useTableEvent.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableForm.d.ts +15 -0
- package/dist/components/tt-table/src/hooks/useTableForm.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts +12 -0
- package/dist/components/tt-table/src/hooks/useTableFormEvent.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableHeight.d.ts +16 -0
- package/dist/components/tt-table/src/hooks/useTableHeight.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts +82 -0
- package/dist/components/tt-table/src/hooks/useTableRender.d.ts.map +1 -0
- package/dist/components/tt-table/src/hooks/useTableSlot.d.ts +12 -0
- package/dist/components/tt-table/src/hooks/useTableSlot.d.ts.map +1 -0
- package/dist/components/tt-table/src/props.d.ts +485 -0
- package/dist/components/tt-table/src/props.d.ts.map +1 -0
- package/dist/components/tt-table/src/toolProps.d.ts +102 -0
- package/dist/components/tt-table/src/toolProps.d.ts.map +1 -0
- package/dist/components/tt-table/src/types/table.d.ts +493 -0
- package/dist/components/tt-table/src/types/table.d.ts.map +1 -0
- package/dist/components/tt-table/src/types/tableAction.d.ts +27 -0
- package/dist/components/tt-table/src/types/tableAction.d.ts.map +1 -0
- package/dist/components/tt-table/src/types/tableForm.d.ts +66 -0
- package/dist/components/tt-table/src/types/tableForm.d.ts.map +1 -0
- package/dist/components/tt-table/src/types/tableTools.d.ts +66 -0
- package/dist/components/tt-table/src/types/tableTools.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/context.d.ts +19 -0
- package/dist/components/tt-table/src/utils/context.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/filters.d.ts +110 -0
- package/dist/components/tt-table/src/utils/filters.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/table-api.d.ts +269 -0
- package/dist/components/tt-table/src/utils/table-api.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/table-form-api.d.ts +89 -0
- package/dist/components/tt-table/src/utils/table-form-api.d.ts.map +1 -0
- package/dist/components/tt-table/src/utils/vxeTable.d.ts +29 -0
- package/dist/components/tt-table/src/utils/vxeTable.d.ts.map +1 -0
- package/dist/components/tt-validate/src/Field.d.ts +1 -1
- package/dist/components/tt-validate/src/Form.d.ts +1 -1
- package/dist/{css-CoEz66oB.js → css-CKklk3nV.js} +1 -0
- package/dist/{event-DSSsWzVU.js → event-BgJv9iWk.js} +1 -1
- package/dist/hooks/useSetup.d.ts +6 -0
- package/dist/hooks/useSetup.d.ts.map +1 -0
- package/dist/hooks/useTemplateSlot.d.ts +10 -0
- package/dist/hooks/useTemplateSlot.d.ts.map +1 -0
- package/dist/{icon-DbdhHmva.js → icon-C9BsRQqM.js} +2 -2
- package/dist/{index-C8UKPPHD.js → index-64J4mWP7.js} +2 -2
- package/dist/{index-hlMlaPX2.js → index-B3w7HVvP.js} +6 -6
- package/dist/{index-p03nbfgB.js → index-BQgaGlJA.js} +8 -8
- package/dist/{index-DHdDQVpg.js → index-Bq5RXWp8.js} +5 -5
- package/dist/{index-BXkpTX1Y.js → index-CB2v0taz.js} +1 -1
- package/dist/{index-DiNnJQ4b.js → index-C_u1XOy0.js} +7 -7
- package/dist/{index-BKMpeJMS.js → index-CdyRKSi4.js} +20 -20
- package/dist/index-CjcGE9Xi.js +2700 -0
- package/dist/{index-COVG9Wvh.js → index-CzDjdhem.js} +5 -5
- package/dist/{index-BhRFBLHz.js → index-D6x6ZHVk.js} +5 -5
- package/dist/{index-DfMIblcg.js → index-DHXyFJLO.js} +1 -1
- package/dist/{index-DVbQtqoV.js → index-DXGnUvsQ.js} +9 -9
- package/dist/{index-BgzdMRW8.js → index-DY3FsmvZ.js} +2 -2
- package/dist/{index-DIqpkfiH.js → index-Dp1l-3ez.js} +2 -2
- package/dist/{index-my6Z5v2z.js → index-LRY3g1Bz.js} +6 -6
- package/dist/{index-qZ-AAxXa.js → index-hI7UMWGr.js} +1 -1
- package/dist/index-iFd1yQ1C.js +55785 -0
- package/dist/index.d.ts +3 -11
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +25 -17
- package/dist/panel-time-pick.vue2-C7R5HGb8.js +2026 -0
- package/dist/style.css +1 -1
- package/dist/{use-form-common-props-DkpXv1AY.js → use-form-common-props-CDmM4Wn1.js} +1 -1
- package/dist/{use-form-item-bliFpQLk.js → use-form-item-Bv38v7TO.js} +2 -2
- package/dist/util-CWdgKsYq.js +2259 -0
- package/package.json +9 -9
- package/dist/index-1F8harWZ.js +0 -1982
- package/dist/index-D8_UEqsc.js +0 -2683
- package/dist/index-DdEvRX8w.js +0 -47929
- package/dist/panel-time-pick.vue2-D4HGRRie.js +0 -1602
|
@@ -0,0 +1,485 @@
|
|
|
1
|
+
import { ExtendedFormApi, VbenFormProps } from 'vben-core-form-ui';
|
|
2
|
+
import { SjzyColumnsLayoutProps } from '../../tt-layout';
|
|
3
|
+
import { PropType, VNode } from 'vue';
|
|
4
|
+
import { VxeTableDefines, VxeTablePropTypes } from 'vxe-table';
|
|
5
|
+
import { TtTableExtendedTableApi, TtTableProps } from './types/table';
|
|
6
|
+
import { TtTableExtendedTableFormApi } from './types/tableForm';
|
|
7
|
+
import { TtTableToolsProps } from './types/tableTools';
|
|
8
|
+
/** 表格参数 */
|
|
9
|
+
export declare const tableProps: {
|
|
10
|
+
/** 是否显示toolbar */
|
|
11
|
+
showToolbar: any;
|
|
12
|
+
/** 具体某些列排序 field数组 */
|
|
13
|
+
columnsFieldSort: any;
|
|
14
|
+
/** 具体某些列不排序 field数组 */
|
|
15
|
+
columnsFieldNoSort: any;
|
|
16
|
+
/** 是否显示右边刷新按钮 */
|
|
17
|
+
showRefresh: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: () => any;
|
|
20
|
+
};
|
|
21
|
+
/** 是否显示右边设置 */
|
|
22
|
+
showSetting: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: () => any;
|
|
25
|
+
};
|
|
26
|
+
/** 是否显示自定义列 */
|
|
27
|
+
showSetColumn: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
default: () => any;
|
|
30
|
+
};
|
|
31
|
+
/** 是否显示自定义行距 */
|
|
32
|
+
showLineHeight: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
default: () => any;
|
|
35
|
+
};
|
|
36
|
+
/** 不可自定义列数组 field数组 */
|
|
37
|
+
notSetColumnField: any;
|
|
38
|
+
/** 需要对不显示的字段进行过滤 主要针对于自定义 field数组 */
|
|
39
|
+
filterNoVisibleField: any;
|
|
40
|
+
/** 是否显示表格上方 alert */
|
|
41
|
+
showTableAlert: any;
|
|
42
|
+
/** api请求方法 */
|
|
43
|
+
api: {
|
|
44
|
+
type: PropType<(...arg: any[]) => Promise<any>>;
|
|
45
|
+
default: null;
|
|
46
|
+
};
|
|
47
|
+
/** 表格额外参数 */
|
|
48
|
+
searchInfo: {
|
|
49
|
+
type: ObjectConstructor;
|
|
50
|
+
default: () => {};
|
|
51
|
+
};
|
|
52
|
+
/** 是否初始化加载数据 */
|
|
53
|
+
immediate: any;
|
|
54
|
+
/**
|
|
55
|
+
* 请求的状态吗
|
|
56
|
+
* @deprecated
|
|
57
|
+
*/
|
|
58
|
+
resultCode: {
|
|
59
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
60
|
+
default: number;
|
|
61
|
+
};
|
|
62
|
+
/** 请求后的回调 */
|
|
63
|
+
afterFetch: {
|
|
64
|
+
type: PropType<TtTableProps["afterFetch"]>;
|
|
65
|
+
default: null;
|
|
66
|
+
};
|
|
67
|
+
/** 请求前的回调 */
|
|
68
|
+
beforeFetch: {
|
|
69
|
+
type: PropType<TtTableProps["beforeFetch"]>;
|
|
70
|
+
default: null;
|
|
71
|
+
};
|
|
72
|
+
/** data */
|
|
73
|
+
data: {
|
|
74
|
+
type: PropType<TtTableProps["data"]>;
|
|
75
|
+
default: never[];
|
|
76
|
+
};
|
|
77
|
+
/** 是否滚动加载数据 */
|
|
78
|
+
isScrollFetch: {
|
|
79
|
+
type: BooleanConstructor;
|
|
80
|
+
default: boolean;
|
|
81
|
+
};
|
|
82
|
+
/** 滚动加载数据是否显示loading */
|
|
83
|
+
showScrollFetchLoading: {
|
|
84
|
+
type: BooleanConstructor;
|
|
85
|
+
default: boolean;
|
|
86
|
+
};
|
|
87
|
+
/** 是否显示复选框 */
|
|
88
|
+
showCheckbox: any;
|
|
89
|
+
/** 是否显示单选框 */
|
|
90
|
+
showRadio: any;
|
|
91
|
+
/** 是否显示序号 */
|
|
92
|
+
showIndex: any;
|
|
93
|
+
/** 是否需要列拖拽 */
|
|
94
|
+
isCellResize: any;
|
|
95
|
+
/**
|
|
96
|
+
* 是否拖动列
|
|
97
|
+
* @deprecated 请使用 column-config drag 配合column-drag-config配置 支持的版本看官方文档,后续不在维护列拖拽
|
|
98
|
+
* @default true
|
|
99
|
+
*/
|
|
100
|
+
isColumnsDrag: any;
|
|
101
|
+
/** 是否列排序 */
|
|
102
|
+
isCellSort: any;
|
|
103
|
+
/**
|
|
104
|
+
* 是否checkbox区域选择 选中数据
|
|
105
|
+
* @deprecated
|
|
106
|
+
*/
|
|
107
|
+
isAreaCheckData: any;
|
|
108
|
+
/** 是否显示操作列 */
|
|
109
|
+
showAction: any;
|
|
110
|
+
/** 操作列宽度 */
|
|
111
|
+
actionWidth: any;
|
|
112
|
+
/** 操作列列名 */
|
|
113
|
+
actionTitle: any;
|
|
114
|
+
/** 操作列Props */
|
|
115
|
+
actionProps: {
|
|
116
|
+
type: PropType<VxeTableDefines.ColumnOptions>;
|
|
117
|
+
default: () => {};
|
|
118
|
+
};
|
|
119
|
+
/** 序号列Props */
|
|
120
|
+
indexColumnProps: {
|
|
121
|
+
type: PropType<VxeTableDefines.ColumnOptions>;
|
|
122
|
+
default: () => {};
|
|
123
|
+
};
|
|
124
|
+
/** 复选框列Props */
|
|
125
|
+
checkboxColumnProps: {
|
|
126
|
+
type: PropType<VxeTableDefines.ColumnOptions>;
|
|
127
|
+
default: () => {};
|
|
128
|
+
};
|
|
129
|
+
/** 拖拽 */
|
|
130
|
+
rowDragColumnProps: {
|
|
131
|
+
type: PropType<VxeTableDefines.ColumnOptions>;
|
|
132
|
+
default: () => {};
|
|
133
|
+
};
|
|
134
|
+
/** 单选框列Props */
|
|
135
|
+
radioColumnProps: {
|
|
136
|
+
type: PropType<VxeTableDefines.ColumnOptions>;
|
|
137
|
+
default: () => {};
|
|
138
|
+
};
|
|
139
|
+
/** 表格行id */
|
|
140
|
+
tableRowId: {
|
|
141
|
+
type: StringConstructor;
|
|
142
|
+
default: () => any;
|
|
143
|
+
};
|
|
144
|
+
/** 自定义Column函数 */
|
|
145
|
+
customizeColumn: {
|
|
146
|
+
type: PropType<TtTableProps["customizeColumn"]>;
|
|
147
|
+
};
|
|
148
|
+
/** 是否显示分页 */
|
|
149
|
+
showPager: any;
|
|
150
|
+
/** 数据总数 */
|
|
151
|
+
total: any;
|
|
152
|
+
/** 当前页数 field */
|
|
153
|
+
currentPageField: {
|
|
154
|
+
type: StringConstructor;
|
|
155
|
+
default: () => any;
|
|
156
|
+
};
|
|
157
|
+
/** 当前页的大小 field */
|
|
158
|
+
pageSizeField: {
|
|
159
|
+
type: StringConstructor;
|
|
160
|
+
default: () => any;
|
|
161
|
+
};
|
|
162
|
+
/** 总数 field */
|
|
163
|
+
totalField: {
|
|
164
|
+
type: StringConstructor;
|
|
165
|
+
default: () => any;
|
|
166
|
+
};
|
|
167
|
+
/** 数据的 field */
|
|
168
|
+
dataField: {
|
|
169
|
+
type: StringConstructor;
|
|
170
|
+
default: () => any;
|
|
171
|
+
};
|
|
172
|
+
modelValue: {
|
|
173
|
+
type: ArrayConstructor[];
|
|
174
|
+
default: () => never[];
|
|
175
|
+
};
|
|
176
|
+
/** 标题内容 */
|
|
177
|
+
title: any;
|
|
178
|
+
/** 是否显示标题 */
|
|
179
|
+
showTitle: any;
|
|
180
|
+
/** 是否自适应高度 */
|
|
181
|
+
autoHeight: any;
|
|
182
|
+
/**
|
|
183
|
+
* 额外减去的高度
|
|
184
|
+
* @deprecated
|
|
185
|
+
*/
|
|
186
|
+
offsetHeight: any;
|
|
187
|
+
/** 左侧插槽的宽度 */
|
|
188
|
+
leftSlotWidth: any;
|
|
189
|
+
/** 右侧插槽的宽度 */
|
|
190
|
+
rightSlotWidth: any;
|
|
191
|
+
/** loading text */
|
|
192
|
+
loadingText: {
|
|
193
|
+
type: StringConstructor;
|
|
194
|
+
default: () => any;
|
|
195
|
+
};
|
|
196
|
+
/** 拖拽icon */
|
|
197
|
+
dragIcon: {
|
|
198
|
+
type: StringConstructor;
|
|
199
|
+
default: () => any;
|
|
200
|
+
};
|
|
201
|
+
/** 暂无数据的样式 */
|
|
202
|
+
emptyImageStyle: any;
|
|
203
|
+
/** 暂无数据 */
|
|
204
|
+
emptyText: {
|
|
205
|
+
type: StringConstructor;
|
|
206
|
+
default: () => any;
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* 空数据图片状态, 对于不传api的默认展示情况
|
|
210
|
+
* @default 'no-data'
|
|
211
|
+
*/
|
|
212
|
+
emptyImageStatus: {
|
|
213
|
+
type: PropType<"no-data" | "no-search">;
|
|
214
|
+
default: string;
|
|
215
|
+
};
|
|
216
|
+
/** 未查询时文字 */
|
|
217
|
+
noSearchText: {
|
|
218
|
+
type: StringConstructor;
|
|
219
|
+
default: () => any;
|
|
220
|
+
};
|
|
221
|
+
/** 是否手动触发查询事件 */
|
|
222
|
+
isHanderSubmit: any;
|
|
223
|
+
/** 储存的key值 */
|
|
224
|
+
columnsKey: any;
|
|
225
|
+
/** 是否开启本地缓存 */
|
|
226
|
+
useCache: {
|
|
227
|
+
type: BooleanConstructor;
|
|
228
|
+
default: () => any;
|
|
229
|
+
};
|
|
230
|
+
/** 是否开启服务端缓存 */
|
|
231
|
+
useHttpCache: {
|
|
232
|
+
type: BooleanConstructor;
|
|
233
|
+
default: () => any;
|
|
234
|
+
};
|
|
235
|
+
/** 是否开启服务端自定义列组件字段 */
|
|
236
|
+
useHttpCustomerCache: {
|
|
237
|
+
type: BooleanConstructor;
|
|
238
|
+
default: () => any;
|
|
239
|
+
};
|
|
240
|
+
/** 开启服务端缓存时默认展示的列 用户列为null时默认展示的列 */
|
|
241
|
+
defaultDisplayFields: {
|
|
242
|
+
type: PropType<string[]>;
|
|
243
|
+
default: () => any;
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* 是否需要行拖拽
|
|
247
|
+
* @deprecated 请使用 row-config drag 配合row-drag-config配置 支持的版本看官方文档,后续不在维护行拖拽
|
|
248
|
+
* @default false
|
|
249
|
+
*/
|
|
250
|
+
isRowDrag: any;
|
|
251
|
+
/**
|
|
252
|
+
* 是否需要行拖拽-树形表格
|
|
253
|
+
* @deprecated 请使用 row-config drag 配合row-drag-config配置 支持的版本看官方文档,后续不在维护行拖拽
|
|
254
|
+
* @default false
|
|
255
|
+
*/
|
|
256
|
+
treeNode: any;
|
|
257
|
+
/** 外部插槽 */
|
|
258
|
+
getSyncSlotComponent: {
|
|
259
|
+
type: PropType<(column: any, row: any, type: "default" | "edit") => VNode | VNode[] | string>;
|
|
260
|
+
};
|
|
261
|
+
/** 是否清空树形展开状态 */
|
|
262
|
+
clearTreeExpand: any;
|
|
263
|
+
/** 是否进行国际化 */
|
|
264
|
+
isI18n: any;
|
|
265
|
+
/**
|
|
266
|
+
* 外部数据是否拷贝一份
|
|
267
|
+
* 设置为 false 时,会有性能问题
|
|
268
|
+
* @default true
|
|
269
|
+
*/
|
|
270
|
+
isDataCloneDeep: any;
|
|
271
|
+
/** 表格的api */
|
|
272
|
+
tableApi: {
|
|
273
|
+
type: PropType<TtTableExtendedTableApi>;
|
|
274
|
+
};
|
|
275
|
+
/** 表格的api */
|
|
276
|
+
formApi: {
|
|
277
|
+
type: PropType<ExtendedFormApi>;
|
|
278
|
+
};
|
|
279
|
+
/** 是否使用搜索form */
|
|
280
|
+
useSearchForm: any;
|
|
281
|
+
/** 是否禁用Teleport将节点输送至body */
|
|
282
|
+
disabledTeleport: any;
|
|
283
|
+
/** 表格 testId,用于生成测试标识 */
|
|
284
|
+
testId: {
|
|
285
|
+
type: StringConstructor;
|
|
286
|
+
default: undefined;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
/** table-pro配置参数 */
|
|
290
|
+
export declare const tableProProps: {
|
|
291
|
+
/** 按键配置项 */
|
|
292
|
+
keyboardConfig: {
|
|
293
|
+
type: PropType<VxeTablePropTypes.KeyboardConfig>;
|
|
294
|
+
default: () => any;
|
|
295
|
+
};
|
|
296
|
+
/** 复制/粘贴配置项 */
|
|
297
|
+
clipConfig: {
|
|
298
|
+
type: PropType<VxeTablePropTypes.ClipConfig>;
|
|
299
|
+
default: () => any;
|
|
300
|
+
};
|
|
301
|
+
/** 右键菜单配置项 */
|
|
302
|
+
menuConfig: {
|
|
303
|
+
type: PropType<VxeTablePropTypes.MenuConfig>;
|
|
304
|
+
default: () => {};
|
|
305
|
+
};
|
|
306
|
+
/** 查找/替换配置项 */
|
|
307
|
+
fnrConfig: {
|
|
308
|
+
type: PropType<VxeTablePropTypes.FnrConfig>;
|
|
309
|
+
default: () => {};
|
|
310
|
+
};
|
|
311
|
+
/** 鼠标配置项 */
|
|
312
|
+
mouseConfig: {
|
|
313
|
+
type: PropType<VxeTablePropTypes.MouseConfig>;
|
|
314
|
+
default: () => any;
|
|
315
|
+
};
|
|
316
|
+
/** 区域选取配置项 */
|
|
317
|
+
areaConfig: {
|
|
318
|
+
type: PropType<VxeTablePropTypes.AreaConfig>;
|
|
319
|
+
default: () => any;
|
|
320
|
+
};
|
|
321
|
+
/** 复选框配置项 */
|
|
322
|
+
checkboxConfig: {
|
|
323
|
+
type: PropType<VxeTablePropTypes.CheckboxConfig>;
|
|
324
|
+
default: () => any;
|
|
325
|
+
};
|
|
326
|
+
/** 单选框配置项 */
|
|
327
|
+
radioConfig: {
|
|
328
|
+
type: PropType<VxeTablePropTypes.RadioConfig>;
|
|
329
|
+
default: () => any;
|
|
330
|
+
};
|
|
331
|
+
};
|
|
332
|
+
/** tableForm 参数 */
|
|
333
|
+
export declare const tableFormProps: {
|
|
334
|
+
tableData: {
|
|
335
|
+
type: PropType<Recordable[]>;
|
|
336
|
+
default: () => never[];
|
|
337
|
+
};
|
|
338
|
+
/** table参数 */
|
|
339
|
+
table: {
|
|
340
|
+
type: PropType<Partial<TtTableProps>>;
|
|
341
|
+
default: {};
|
|
342
|
+
};
|
|
343
|
+
/** 是否使用搜索form */
|
|
344
|
+
useSearchForm: any;
|
|
345
|
+
/** BasicFormProps 的配置 */
|
|
346
|
+
form: {
|
|
347
|
+
type: PropType<Partial<VbenFormProps>>;
|
|
348
|
+
default: () => {};
|
|
349
|
+
};
|
|
350
|
+
/** 查询条件请求之前处理 */
|
|
351
|
+
handleSearchInfoFn: {
|
|
352
|
+
type: PropType<Fn>;
|
|
353
|
+
default: null;
|
|
354
|
+
};
|
|
355
|
+
/** 刷新前的调用方法 */
|
|
356
|
+
tableRefreshBefore: {
|
|
357
|
+
type: PropType<Fn>;
|
|
358
|
+
default: null;
|
|
359
|
+
};
|
|
360
|
+
/** TtTableTools的props */
|
|
361
|
+
toolConfig: {
|
|
362
|
+
type: PropType<TtTableToolsProps>;
|
|
363
|
+
default: null;
|
|
364
|
+
};
|
|
365
|
+
/** 表格行id */
|
|
366
|
+
tableRowId: {
|
|
367
|
+
type: StringConstructor;
|
|
368
|
+
default: () => any;
|
|
369
|
+
};
|
|
370
|
+
/** 表格 testId,用于生成测试标识 */
|
|
371
|
+
testId: {
|
|
372
|
+
type: StringConstructor;
|
|
373
|
+
default: undefined;
|
|
374
|
+
};
|
|
375
|
+
/** 表格的api */
|
|
376
|
+
tableFormApi: {
|
|
377
|
+
type: PropType<TtTableExtendedTableFormApi>;
|
|
378
|
+
};
|
|
379
|
+
/** 分割器布局配置 */
|
|
380
|
+
splitter: {
|
|
381
|
+
type: PropType<Partial<SjzyColumnsLayoutProps>>;
|
|
382
|
+
default: () => {};
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
/** 表格的参数和vxe-table的参数相同需要重新定义 */
|
|
386
|
+
export declare const tableOtherProps: {
|
|
387
|
+
/** 按键配置项 */
|
|
388
|
+
keyboardConfig: {
|
|
389
|
+
type: PropType<VxeTablePropTypes.KeyboardConfig>;
|
|
390
|
+
default: () => any;
|
|
391
|
+
};
|
|
392
|
+
/** 复制/粘贴配置项 */
|
|
393
|
+
clipConfig: {
|
|
394
|
+
type: PropType<VxeTablePropTypes.ClipConfig>;
|
|
395
|
+
default: () => any;
|
|
396
|
+
};
|
|
397
|
+
/** 右键菜单配置项 */
|
|
398
|
+
menuConfig: {
|
|
399
|
+
type: PropType<VxeTablePropTypes.MenuConfig>;
|
|
400
|
+
default: () => {};
|
|
401
|
+
};
|
|
402
|
+
/** 查找/替换配置项 */
|
|
403
|
+
fnrConfig: {
|
|
404
|
+
type: PropType<VxeTablePropTypes.FnrConfig>;
|
|
405
|
+
default: () => {};
|
|
406
|
+
};
|
|
407
|
+
/** 鼠标配置项 */
|
|
408
|
+
mouseConfig: {
|
|
409
|
+
type: PropType<VxeTablePropTypes.MouseConfig>;
|
|
410
|
+
default: () => any;
|
|
411
|
+
};
|
|
412
|
+
/** 区域选取配置项 */
|
|
413
|
+
areaConfig: {
|
|
414
|
+
type: PropType<VxeTablePropTypes.AreaConfig>;
|
|
415
|
+
default: () => any;
|
|
416
|
+
};
|
|
417
|
+
/** 复选框配置项 */
|
|
418
|
+
checkboxConfig: {
|
|
419
|
+
type: PropType<VxeTablePropTypes.CheckboxConfig>;
|
|
420
|
+
default: () => any;
|
|
421
|
+
};
|
|
422
|
+
/** 单选框配置项 */
|
|
423
|
+
radioConfig: {
|
|
424
|
+
type: PropType<VxeTablePropTypes.RadioConfig>;
|
|
425
|
+
default: () => any;
|
|
426
|
+
};
|
|
427
|
+
/** 列配置 */
|
|
428
|
+
columns: {
|
|
429
|
+
type: PropType<TtTableProps["columns"]>;
|
|
430
|
+
default: () => never[];
|
|
431
|
+
};
|
|
432
|
+
/**
|
|
433
|
+
* 表格的高度;支持铺满父容器或者固定高度,如果设置 auto 为铺满父容器(如果设置为 auto,则必须确保存在父节点且不允许存在相邻元素)
|
|
434
|
+
*/
|
|
435
|
+
height: {
|
|
436
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
437
|
+
default: undefined;
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* 设置所有内容过长时显示为省略号(如果是固定列建议设置该值,提升渲染速度
|
|
441
|
+
* @default true
|
|
442
|
+
*/
|
|
443
|
+
showOverflow: {
|
|
444
|
+
type: PropType<TtTableProps["showOverflow"]>;
|
|
445
|
+
default: boolean;
|
|
446
|
+
};
|
|
447
|
+
/**
|
|
448
|
+
* @description 内部使用插槽重写title内容。true 和 'tooltip' 都会有 tooltip 效果,false 和其他的值会显示省略号不会有 tooltip 效果
|
|
449
|
+
* @default true
|
|
450
|
+
*/
|
|
451
|
+
showHeaderOverflow: {
|
|
452
|
+
type: PropType<TtTableProps["showHeaderOverflow"]>;
|
|
453
|
+
default: boolean;
|
|
454
|
+
};
|
|
455
|
+
/** 分页配置 */
|
|
456
|
+
pagerConfig: {
|
|
457
|
+
type: PropType<TtTableProps["pagerConfig"]>;
|
|
458
|
+
default: () => any;
|
|
459
|
+
};
|
|
460
|
+
/** toolbar 配置 */
|
|
461
|
+
toolbarConfig: {
|
|
462
|
+
type: PropType<TtTableProps["toolbarConfig"]>;
|
|
463
|
+
default: () => null;
|
|
464
|
+
};
|
|
465
|
+
/** 缩放配置项 */
|
|
466
|
+
zoomConfig: {
|
|
467
|
+
type: PropType<TtTableProps["zoomConfig"]>;
|
|
468
|
+
default: () => null;
|
|
469
|
+
};
|
|
470
|
+
/** 表格大小 */
|
|
471
|
+
size: {
|
|
472
|
+
type: PropType<TtTableProps["size"]>;
|
|
473
|
+
default: () => any;
|
|
474
|
+
};
|
|
475
|
+
/**
|
|
476
|
+
* tooltip错误提示方向,用于控制错误信息提示的显示位置
|
|
477
|
+
* 可选值: 'top', 'bottom', 'left', 'right'
|
|
478
|
+
* @default 'right'
|
|
479
|
+
*/
|
|
480
|
+
toolTipErrorPlacement: {
|
|
481
|
+
type: PropType<"top" | "bottom" | "left" | "right">;
|
|
482
|
+
default: string;
|
|
483
|
+
};
|
|
484
|
+
};
|
|
485
|
+
//# sourceMappingURL=props.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"props.d.ts","sourceRoot":"","sources":["../../../../src/components/tt-table/src/props.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AACxE,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAClF,OAAO,KAAK,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,KAAK,CAAC;AAC3C,OAAO,KAAK,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AACpE,OAAO,KAAK,EAAE,uBAAuB,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAC3E,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,mBAAmB,CAAC;AACrE,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAsL5D,WAAW;AACX,eAAO,MAAM,UAAU;IAnCrB,kBAAkB;;IAElB,sBAAsB;;IAEtB,uBAAuB;;IAEvB,iBAAiB;;;;;IAKjB,eAAe;;;;;IAKf,eAAe;;;;;IAKf,gBAAgB;;;;;IAKhB,uBAAuB;;IAEvB,sCAAsC;;IAEtC,qBAAqB;;IA9ErB,cAAc;;cAEM,QAAQ,CAAC,CAAC,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,OAAO,CAAC,GAAG,CAAC,CAAC;;;IAG7D,aAAa;;;;;IAKb,gBAAgB;;IAEhB;;;OAGG;;;;;IAKH,aAAa;;cAEO,QAAQ,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;;;IAGxD,aAAa;;cAEO,QAAQ,CAAC,YAAY,CAAC,aAAa,CAAC,CAAC;;;IAGzD,WAAW;;cAEM,QAAQ,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;;;IAG/C,eAAe;;;;;IAKf,wBAAwB;;;;;IAzGxB,cAAc;;IAEd,cAAc;;IAEd,aAAa;;IAEb,cAAc;;IAEd;;;;OAIG;;IAEH,YAAY;;IAEZ;;;OAGG;;IAEH,cAAc;;IAEd,YAAY;;IAEZ,YAAY;;IAEZ,eAAe;;cAEG,QAAQ,CAAC,eAAe,CAAC,aAAa,CAAC;;;IAGzD,eAAe;;cAEG,QAAQ,CAAC,eAAe,CAAC,aAAa,CAAC;;;IAGzD,gBAAgB;;cAEE,QAAQ,CAAC,eAAe,CAAC,aAAa,CAAC;;;IAGzD,SAAS;;cAES,QAAQ,CAAC,eAAe,CAAC,aAAa,CAAC;;;IAGzD,gBAAgB;;cAEE,QAAQ,CAAC,eAAe,CAAC,aAAa,CAAC;;;IAGzD,YAAY;;;;;IAKZ,kBAAkB;;cAEE,QAAQ,CAAC,YAAY,CAAC,iBAAiB,CAAC,CAAC;;IAvF7D,aAAa;;IAEb,WAAW;;IAEX,iBAAiB;;;;;IAKjB,mBAAmB;;;;;IAKnB,eAAe;;;;;IAKf,gBAAgB;;;;;;;;;IAkKhB,WAAW;;IAEX,aAAa;;IAEb,cAAc;;IAEd;;;OAGG;;IAEH,cAAc;;IAEd,cAAc;;IAEd,mBAAmB;;;;;IAKnB,aAAa;;;;;IAKb,cAAc;;IAEd,WAAW;;;;;IAKX;;;OAGG;;cAEe,QAAQ,CAAC,SAAS,GAAG,WAAW,CAAC;;;IAGnD,aAAa;;;;;IAKb,iBAAiB;;IAEjB,cAAc;;IAEd,eAAe;;;;;IAKf,gBAAgB;;;;;IAKhB,sBAAsB;;;;;IAKtB,qCAAqC;;cAEpB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;IAGnC;;;;OAIG;;IAEH;;;;OAIG;;IAEH,WAAW;;cAES,QAAQ,CAAC,CAAC,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,SAAS,GAAG,MAAM,KAAK,KAAK,GAAG,KAAK,EAAE,GAAG,MAAM,CAAC;;IAE3G,iBAAiB;;IAEjB,cAAc;;IAEd;;;;OAIG;;IAEH,aAAa;;cAEK,QAAQ,CAAC,uBAAuB,CAAC;;IAEnD,aAAa;;cAEK,QAAQ,CAAC,eAAe,CAAC;;IAE3C,iBAAiB;;IAEjB,6BAA6B;;IAE7B,yBAAyB;;;;;CAS1B,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,aAAa;IACxB,YAAY;;cAEM,QAAQ,CAAC,iBAAiB,CAAC,cAAc,CAAC;;;IAG5D,eAAe;;cAEG,QAAQ,CAAC,iBAAiB,CAAC,UAAU,CAAC;;;IAGxD,cAAc;;cAEI,QAAQ,CAAC,iBAAiB,CAAC,UAAU,CAAC;;;IAGxD,eAAe;;cAEG,QAAQ,CAAC,iBAAiB,CAAC,SAAS,CAAC;;;IAGvD,YAAY;;cAEM,QAAQ,CAAC,iBAAiB,CAAC,WAAW,CAAC;;;IAGzD,cAAc;;cAEI,QAAQ,CAAC,iBAAiB,CAAC,UAAU,CAAC;;;IAGxD,aAAa;;cAEK,QAAQ,CAAC,iBAAiB,CAAC,cAAc,CAAC;;;IAG5D,aAAa;;cAEK,QAAQ,CAAC,iBAAiB,CAAC,WAAW,CAAC;;;CAG1D,CAAC;AAYF,mBAAmB;AACnB,eAAO,MAAM,cAAc;;cAER,QAAQ,CAAC,UAAU,EAAE,CAAC;;;IAGvC,cAAc;;cAEI,QAAQ,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC;;;IAIjD,iBAAiB;;IAEjB,yBAAyB;;cAEP,QAAQ,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;;;IAGlD,iBAAiB;;cAEG,QAAQ,CAAC,EAAE,CAAC;;;IAGhC,eAAe;;cAEK,QAAQ,CAAC,EAAE,CAAC;;;IAGhC,yBAAyB;;cAEP,QAAQ,CAAC,iBAAiB,CAAC;;;IAG7C,YAAY;;;;;IAKZ,yBAAyB;;;;;IAKzB,aAAa;;cAEK,QAAQ,CAAC,2BAA2B,CAAC;;IAEvD,cAAc;;cAEI,QAAQ,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC;;;CAG5D,CAAC;AAEF,iCAAiC;AACjC,eAAO,MAAM,eAAe;IA5G1B,YAAY;;cAEM,QAAQ,CAAC,iBAAiB,CAAC,cAAc,CAAC;;;IAG5D,eAAe;;cAEG,QAAQ,CAAC,iBAAiB,CAAC,UAAU,CAAC;;;IAGxD,cAAc;;cAEI,QAAQ,CAAC,iBAAiB,CAAC,UAAU,CAAC;;;IAGxD,eAAe;;cAEG,QAAQ,CAAC,iBAAiB,CAAC,SAAS,CAAC;;;IAGvD,YAAY;;cAEM,QAAQ,CAAC,iBAAiB,CAAC,WAAW,CAAC;;;IAGzD,cAAc;;cAEI,QAAQ,CAAC,iBAAiB,CAAC,UAAU,CAAC;;;IAGxD,aAAa;;cAEK,QAAQ,CAAC,iBAAiB,CAAC,cAAc,CAAC;;;IAG5D,aAAa;;cAEK,QAAQ,CAAC,iBAAiB,CAAC,WAAW,CAAC;;;IAwEzD,UAAU;;cAEO,QAAQ,CAAC,YAAY,CAAC,SAAS,CAAC,CAAC;;;IAGlD;;OAEG;;;;;IAKH;;;OAGG;;cAE0B,QAAQ,CAAC,YAAY,CAAC,cAAc,CAAC,CAAC;;;IAGnE;;;OAGG;;cAE0B,QAAQ,CAAC,YAAY,CAAC,oBAAoB,CAAC,CAAC;;;IAGzE,WAAW;;cAEO,QAAQ,CAAC,YAAY,CAAC,aAAa,CAAC,CAAC;;;IAGvD,iBAAiB;;cAEC,QAAQ,CAAC,YAAY,CAAC,eAAe,CAAC,CAAC;;;IAGzD,YAAY;;cAEM,QAAQ,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;;;IAGtD,WAAW;;cAEO,QAAQ,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;;;IAGhD;;;;OAIG;;cAEe,QAAQ,CAAC,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,CAAC;;;CAIhE,CAAC"}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { VxeGridPropTypes } from 'vxe-table';
|
|
3
|
+
import { TtTableToolsProps } from './types/tableTools';
|
|
4
|
+
export declare const toolProps: {
|
|
5
|
+
/** 表格的size */
|
|
6
|
+
size: {
|
|
7
|
+
type: PropType<VxeGridPropTypes.Size>;
|
|
8
|
+
default: () => any;
|
|
9
|
+
};
|
|
10
|
+
/** 是否显示设置 */
|
|
11
|
+
showSetting: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
/** 是否显示刷新按钮 */
|
|
16
|
+
showRefresh: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
/** 是否显示列设置按钮 */
|
|
21
|
+
showSetColumn: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
/** 是否显示行高设置按钮 */
|
|
26
|
+
showLineHeight: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
/** 是否显示行边框设置 */
|
|
31
|
+
showSetRowBorder: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
/** 是否显示行高设置 */
|
|
36
|
+
showSetRowHeight: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
40
|
+
/** 是否开启全屏 */
|
|
41
|
+
showFullScreen: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
default: () => boolean;
|
|
44
|
+
};
|
|
45
|
+
/** 是否显示导出 */
|
|
46
|
+
showExport: {
|
|
47
|
+
type: BooleanConstructor;
|
|
48
|
+
default: () => boolean;
|
|
49
|
+
};
|
|
50
|
+
/** 是否显示导入 */
|
|
51
|
+
showImport: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: () => boolean;
|
|
54
|
+
};
|
|
55
|
+
/** 全屏状态 */
|
|
56
|
+
fullscreen: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
default: () => boolean;
|
|
59
|
+
};
|
|
60
|
+
/** 是否开启本地缓存 */
|
|
61
|
+
useCache: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
65
|
+
/** 储存的key */
|
|
66
|
+
columnsKey: any;
|
|
67
|
+
/** 刷新按钮icon */
|
|
68
|
+
refreshIcon: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
/** 列设置icon */
|
|
73
|
+
columnIcon: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
/** 列导出icon */
|
|
78
|
+
exportIcon: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
default: string;
|
|
81
|
+
};
|
|
82
|
+
/** 列导入icon */
|
|
83
|
+
importIcon: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
/** 行高icon */
|
|
88
|
+
customIcon: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
default: string;
|
|
91
|
+
};
|
|
92
|
+
/** 禁用方法 */
|
|
93
|
+
disabledFunc: {
|
|
94
|
+
type: PropType<TtTableToolsProps["disabledFunc"]>;
|
|
95
|
+
default: null;
|
|
96
|
+
};
|
|
97
|
+
loadingFunc: {
|
|
98
|
+
type: PropType<TtTableToolsProps["loadingFunc"]>;
|
|
99
|
+
default: null;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
//# sourceMappingURL=toolProps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolProps.d.ts","sourceRoot":"","sources":["../../../../src/components/tt-table/src/toolProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AACpC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAClD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAI5D,eAAO,MAAM,SAAS;IACpB,cAAc;;cAEI,QAAQ,CAAC,gBAAgB,CAAC,IAAI,CAAC;;;IAGjD,aAAa;;;;;IAKb,eAAe;;;;;IAKf,gBAAgB;;;;;IAKhB,iBAAiB;;;;;IAKjB,gBAAgB;;;;;IAKhB,eAAe;;;;;IAKf,aAAa;;;;;IAKb,aAAa;;;;;IAKb,aAAa;;;;;IAKb,WAAW;;;;;IAKX,eAAe;;;;;IAKf,aAAa;;IAEb,eAAe;;;;;IAKf,cAAc;;;;;IAKd,cAAc;;;;;IAKd,cAAc;;;;;IAKd,aAAa;;;;;IAKb,WAAW;;cAES,QAAQ,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC;;;;cAI3C,QAAQ,CAAC,iBAAiB,CAAC,aAAa,CAAC,CAAC;;;CAG/D,CAAC"}
|