@maxax/ui 1.0.0 → 1.0.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/basic-checkbox-group/BasicCheckboxGroup.d.ts +2 -0
- package/dist/components/basic-checkbox-group/BasicCheckboxGroup.d.ts.map +1 -1
- package/dist/components/basic-message-box/BasicMessageBox.vue.d.ts +2 -1
- package/dist/components/basic-message-box/BasicMessageBox.vue.d.ts.map +1 -1
- package/dist/components/basic-table/BasicTable.vue.d.ts +211 -191
- package/dist/components/basic-table/BasicTable.vue.d.ts.map +1 -1
- package/dist/components/basic-table/helper.d.ts +1 -3
- package/dist/components/basic-table/helper.d.ts.map +1 -1
- package/dist/components/basic-table/hooks/use-table-config.d.ts +5 -0
- package/dist/components/basic-table/hooks/use-table-config.d.ts.map +1 -1
- package/dist/components/basic-table/index.d.ts +3 -3
- package/dist/components/basic-table/index.d.ts.map +1 -1
- package/dist/components/basic-table/setting.d.ts +0 -3
- package/dist/components/basic-table/setting.d.ts.map +1 -1
- package/dist/components/basic-table/vxe-table.d.ts +3 -3
- package/dist/components/basic-table/vxe-table.d.ts.map +1 -1
- package/dist/components/basic-upload-core/AjaxUploader.d.ts.map +1 -1
- package/dist/components/config-provider/ConfigProvider.d.ts +8 -2
- package/dist/components/config-provider/ConfigProvider.d.ts.map +1 -1
- package/dist/components/config-provider/hooks/use-global-config.d.ts +1 -0
- package/dist/components/config-provider/hooks/use-global-config.d.ts.map +1 -1
- package/dist/components/config-provider/interface.d.ts +5 -2
- package/dist/components/config-provider/interface.d.ts.map +1 -1
- package/dist/composable/index.d.ts +1 -0
- package/dist/composable/index.d.ts.map +1 -1
- package/dist/composable/use-table-config.d.ts +2 -1
- package/dist/composable/use-table-config.d.ts.map +1 -1
- package/dist/composable/use-theme-overrides.d.ts +5 -0
- package/dist/composable/use-theme-overrides.d.ts.map +1 -0
- package/dist/constants/context.d.ts +3 -0
- package/dist/constants/context.d.ts.map +1 -1
- package/dist/index.cjs +191 -183
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +185 -183
- package/dist/index.mjs.map +1 -1
- package/dist/locales.cjs +528 -112
- package/dist/locales.cjs.map +1 -1
- package/dist/locales.mjs +528 -112
- package/dist/locales.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -31,6 +31,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
31
31
|
};
|
|
32
32
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
33
33
|
'update:value': (_value: Array<string | number | boolean>) => true;
|
|
34
|
+
'all-change': (_value: Array<string | number | boolean>, _ev: Event) => true;
|
|
34
35
|
/**
|
|
35
36
|
* @zh 值改变时触发
|
|
36
37
|
* @en Trigger when the value changes
|
|
@@ -70,6 +71,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
70
71
|
}>> & Readonly<{
|
|
71
72
|
onChange?: ((_value: (string | number | boolean)[], _ev: Event) => any) | undefined;
|
|
72
73
|
"onUpdate:value"?: ((_value: (string | number | boolean)[]) => any) | undefined;
|
|
74
|
+
"onAll-change"?: ((_value: (string | number | boolean)[], _ev: Event) => any) | undefined;
|
|
73
75
|
}>, {
|
|
74
76
|
value: (string | number | boolean)[];
|
|
75
77
|
defaultValue: (string | number | boolean)[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BasicCheckboxGroup.d.ts","sourceRoot":"","sources":["../../../src/components/basic-checkbox-group/BasicCheckboxGroup.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAQzC,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"BasicCheckboxGroup.d.ts","sourceRoot":"","sources":["../../../src/components/basic-checkbox-group/BasicCheckboxGroup.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAQzC,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;2BAClC,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,OAAO,KAAK;IACnE;;;;;OAKG;qBACc,KAAK,CAAC,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,OAAO,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAZjE,wBAyHE"}
|
|
@@ -73,6 +73,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
73
73
|
inputId: string;
|
|
74
74
|
iconComponent: import('vue').ComputedRef<string>;
|
|
75
75
|
confirmButtonClasses: import('vue').ComputedRef<string>;
|
|
76
|
+
themeOverridesRef: import('vue').ComputedRef<import('naive-ui').GlobalThemeOverrides | undefined>;
|
|
76
77
|
rootRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
77
78
|
focusStartRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
78
79
|
headerRef: import('vue').Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
@@ -399,13 +400,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
399
400
|
}>, {
|
|
400
401
|
container: string;
|
|
401
402
|
overflow: boolean;
|
|
402
|
-
center: boolean;
|
|
403
403
|
modal: boolean;
|
|
404
404
|
lockScroll: boolean;
|
|
405
405
|
showClose: boolean;
|
|
406
406
|
closeOnClickModal: boolean;
|
|
407
407
|
closeOnPressEscape: boolean;
|
|
408
408
|
closeOnHashChange: boolean;
|
|
409
|
+
center: boolean;
|
|
409
410
|
draggable: boolean;
|
|
410
411
|
roundButton: boolean;
|
|
411
412
|
boxType: import('./interface').MessageBoxType;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BasicMessageBox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/basic-message-box/BasicMessageBox.vue"],"names":[],"mappings":"AACA;AAEA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,KAAK,CAAA;AAQlD,OAAO,KAAK,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA
|
|
1
|
+
{"version":3,"file":"BasicMessageBox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/basic-message-box/BasicMessageBox.vue"],"names":[],"mappings":"AACA;AAEA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,KAAK,CAAA;AAQlD,OAAO,KAAK,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BA4NxB,aAAa,GAAG,KAAK;2BApGrB,MAAM;;;;;;;;;;;;;;;;;;;;uFA2hBkyqC,CAAC;;;;;;;;;;;;;;;;;;gCAAnw+B,GAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uFAA8v+B,CAAC;;;;;;;;;;;;;;;;;;gCAAnw+B,GAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBA5U33L,CAAC;uBAA6B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qEAsLhP,CAAC,cAAc,CAAC;;;;;;;;sCAUN,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAoCI,CAAC;yBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;uBAsCgX,CAAC;uBAA6B,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAkEu1L,CAAC;mBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAhpB3yM,wBA8PE"}
|
|
@@ -4,17 +4,19 @@ declare function __VLS_template(): Partial<Record<string, (_: {
|
|
|
4
4
|
[key: string]: any;
|
|
5
5
|
$table: import('vxe-table').VxeTableConstructor<any>;
|
|
6
6
|
$grid: import('vxe-table').VxeGridConstructor<any> | null | undefined;
|
|
7
|
+
$gantt: import('vxe-pc-ui').VxeGanttConstructor<any> | null | undefined;
|
|
7
8
|
rowid: string;
|
|
8
9
|
row: any;
|
|
9
10
|
rowIndex: number;
|
|
10
11
|
$rowIndex: number;
|
|
11
12
|
_rowIndex: number;
|
|
12
|
-
column: import("vxe-table").VxeTableDefines.ColumnInfo<any>;
|
|
13
|
+
column: import("vxe-pc-ui/types/components/table").VxeTableDefines.ColumnInfo<any>;
|
|
13
14
|
columnIndex: number;
|
|
14
15
|
$columnIndex: number;
|
|
15
16
|
_columnIndex: number;
|
|
17
|
+
option: import("vxe-pc-ui/types/components/column").VxeColumnPropTypes.FilterItem;
|
|
16
18
|
type: string;
|
|
17
|
-
fixed: import("vxe-
|
|
19
|
+
fixed: import("vxe-pc-ui/types/components/column").VxeColumnPropTypes.Fixed;
|
|
18
20
|
checked?: boolean;
|
|
19
21
|
indeterminate?: boolean;
|
|
20
22
|
seq: string | number;
|
|
@@ -78,30 +80,23 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
78
80
|
"onPage-change"?: ((params: import("vxe-pc-ui").VxePagerDefines.PageChangeEventParams) => any) | undefined;
|
|
79
81
|
"onSelection-change"?: ((params: import('./interface').SelectionChangeEventParams) => any) | undefined;
|
|
80
82
|
}>, {
|
|
81
|
-
height: import("vxe-table").VxeTablePropTypes.Height;
|
|
82
|
-
maxHeight: import("vxe-table").VxeTablePropTypes.MaxHeight;
|
|
83
|
-
minHeight: import("vxe-table").VxeTablePropTypes.MinHeight;
|
|
84
|
-
border: import("vxe-table").VxeTablePropTypes.Border;
|
|
85
|
-
columns: import("vxe-
|
|
86
|
-
padding: import("vxe-table").VxeTablePropTypes.Padding;
|
|
87
|
-
data: import("vxe-table").VxeTablePropTypes.Data<any>;
|
|
88
|
-
loading: import("vxe-table").VxeTablePropTypes.Loading;
|
|
89
|
-
size: import("vxe-table").VxeTablePropTypes.Size;
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
onCopy: import("vxe-table").VxeGridEvents.Copy<any>;
|
|
99
|
-
onCut: import("vxe-table").VxeGridEvents.Cut<any>;
|
|
100
|
-
onPaste: import("vxe-table").VxeGridEvents.Paste<any>;
|
|
101
|
-
onKeydown: import("vxe-table").VxeGridEvents.Keydown<any>;
|
|
102
|
-
onScroll: import("vxe-table").VxeGridEvents.Scroll<any>;
|
|
103
|
-
id: import("vxe-table").VxeTablePropTypes.ID<any>;
|
|
104
|
-
round: import("vxe-table").VxeTablePropTypes.Round;
|
|
83
|
+
height: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Height;
|
|
84
|
+
maxHeight: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.MaxHeight;
|
|
85
|
+
minHeight: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.MinHeight;
|
|
86
|
+
border: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Border;
|
|
87
|
+
columns: import("vxe-pc-ui/types/components/grid").VxeGridPropTypes.Columns<any> & import('./interface').BasicColumn[];
|
|
88
|
+
padding: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Padding;
|
|
89
|
+
data: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Data<any>;
|
|
90
|
+
loading: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Loading;
|
|
91
|
+
size: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Size;
|
|
92
|
+
onCopy: import("vxe-pc-ui/types/components/grid").VxeGridEvents.Copy<any>;
|
|
93
|
+
onCut: import("vxe-pc-ui/types/components/grid").VxeGridEvents.Cut<any>;
|
|
94
|
+
onPaste: import("vxe-pc-ui/types/components/grid").VxeGridEvents.Paste<any>;
|
|
95
|
+
onKeydown: import("vxe-pc-ui/types/components/grid").VxeGridEvents.Keydown<any>;
|
|
96
|
+
onScroll: import("vxe-pc-ui/types/components/grid").VxeGridEvents.Scroll<any>;
|
|
97
|
+
id: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ID<any>;
|
|
98
|
+
round: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Round;
|
|
99
|
+
resizable: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Resizable;
|
|
105
100
|
immediate: boolean;
|
|
106
101
|
api: (...arg: any) => Promise<any>;
|
|
107
102
|
dynamicApi: (params?: import('@maxax/types').Recordable) => (...arg: any) => Promise<any>;
|
|
@@ -110,185 +105,210 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
110
105
|
handleSearchInfoFn: import('@maxax/types').Fn;
|
|
111
106
|
searchInfo: import('@maxax/types').Recordable;
|
|
112
107
|
fetchSetting: Partial<import('./interface').FetchSetting>;
|
|
113
|
-
showFooter: import("vxe-table").VxeTablePropTypes.ShowFooter;
|
|
108
|
+
showFooter: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ShowFooter;
|
|
114
109
|
card: boolean;
|
|
115
110
|
rKey: string | import('./interface').GetRowKey;
|
|
116
111
|
defSort: import('@maxax/types').Recordable;
|
|
117
112
|
useSearchForm: boolean;
|
|
118
113
|
pagination: import('./interface').BasicPagerProps | boolean;
|
|
119
|
-
layouts: import("vxe-
|
|
120
|
-
align: import("vxe-table").VxeTablePropTypes.Align;
|
|
114
|
+
layouts: import("vxe-pc-ui/types/components/grid").VxeGridPropTypes.Layouts;
|
|
115
|
+
align: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Align;
|
|
121
116
|
uid: string;
|
|
122
117
|
relationForm: () => import('..').FormActionType | null;
|
|
123
|
-
onPageChange: import("vxe-
|
|
118
|
+
onPageChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.PageChange<any>;
|
|
124
119
|
onSelection: (params: {
|
|
125
120
|
selectedRowKeys: import('./interface').Key[];
|
|
126
121
|
selectedRows: any[];
|
|
127
122
|
}) => void;
|
|
128
|
-
pagerConfig: import("vxe-
|
|
129
|
-
proxyConfig: import("vxe-
|
|
130
|
-
toolbarConfig: import("vxe-
|
|
131
|
-
formConfig: import("vxe-
|
|
132
|
-
zoomConfig: import("vxe-
|
|
133
|
-
stripe: import("vxe-table").VxeTablePropTypes.Stripe;
|
|
134
|
-
headerAlign: import("vxe-table").VxeTablePropTypes.HeaderAlign;
|
|
135
|
-
footerAlign: import("vxe-table").VxeTablePropTypes.FooterAlign;
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
123
|
+
pagerConfig: import("vxe-pc-ui/types/components/grid").VxeGridPropTypes.PagerConfig;
|
|
124
|
+
proxyConfig: import("vxe-pc-ui/types/components/grid").VxeGridPropTypes.ProxyConfig<any>;
|
|
125
|
+
toolbarConfig: import("vxe-pc-ui/types/components/grid").VxeGridPropTypes.ToolbarConfig;
|
|
126
|
+
formConfig: import("vxe-pc-ui/types/components/grid").VxeGridPropTypes.FormConfig;
|
|
127
|
+
zoomConfig: import("vxe-pc-ui/types/components/grid").VxeGridPropTypes.ZoomConfig;
|
|
128
|
+
stripe: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Stripe;
|
|
129
|
+
headerAlign: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HeaderAlign;
|
|
130
|
+
footerAlign: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterAlign;
|
|
131
|
+
showHeader: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ShowHeader;
|
|
132
|
+
footerData: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterData;
|
|
133
|
+
footerMethod: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterMethod<any>;
|
|
134
|
+
rowClassName: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.RowClassName<any>;
|
|
135
|
+
cellClassName: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.CellClassName<any>;
|
|
136
|
+
headerRowClassName: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HeaderRowClassName<any>;
|
|
137
|
+
headerCellClassName: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HeaderCellClassName<any>;
|
|
138
|
+
footerRowClassName: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterRowClassName<any>;
|
|
139
|
+
footerCellClassName: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterCellClassName<any>;
|
|
140
|
+
cellStyle: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.CellStyle<any>;
|
|
141
|
+
rowStyle: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.RowStyle<any>;
|
|
142
|
+
headerCellStyle: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HeaderCellStyle<any>;
|
|
143
|
+
headerRowStyle: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HeaderRowStyle<any>;
|
|
144
|
+
footerRowStyle: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterRowStyle<any>;
|
|
145
|
+
footerCellStyle: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterCellStyle<any>;
|
|
146
|
+
showCustomHeader: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ShowCustomHeader;
|
|
147
|
+
mergeHeaderCells: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.MergeHeaderCells;
|
|
148
|
+
mergeCells: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.MergeCells<any>;
|
|
149
|
+
mergeFooterCells: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.MergeFooterCells<any>;
|
|
150
|
+
mergeFooterItems: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.MergeFooterItems<any>;
|
|
151
|
+
spanMethod: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.SpanMethod<any>;
|
|
152
|
+
footerSpanMethod: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterSpanMethod<any>;
|
|
153
|
+
showOverflow: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ShowOverflow;
|
|
154
|
+
showHeaderOverflow: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ShowHeaderOverflow;
|
|
155
|
+
showFooterOverflow: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ShowFooterOverflow;
|
|
156
|
+
keepSource: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.KeepSource;
|
|
157
|
+
autoResize: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.AutoResize;
|
|
158
|
+
syncResize: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.SyncResize;
|
|
159
|
+
columnConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ColumnConfig<any>;
|
|
160
|
+
rowConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.RowConfig<any>;
|
|
161
|
+
cellConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.CellConfig<any>;
|
|
162
|
+
headerCellConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HeaderCellConfig<any>;
|
|
163
|
+
footerCellConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterCellConfig<any>;
|
|
164
|
+
aggregateConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.AggregateConfig<any>;
|
|
165
|
+
rowGroupConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.RowGroupConfig<any>;
|
|
166
|
+
currentRowConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.CurrentRowConfig<any>;
|
|
167
|
+
currentColumnConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.CurrentColumnConfig<any>;
|
|
168
|
+
dragConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.DragConfig<any>;
|
|
169
|
+
rowDragConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.RowDragConfig<any>;
|
|
170
|
+
columnDragConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ColumnDragConfig<any>;
|
|
171
|
+
customConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.CustomConfig<any>;
|
|
172
|
+
resizeConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ResizeConfig;
|
|
173
|
+
resizableConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ResizableConfig<any>;
|
|
174
|
+
seqConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.SeqConfig<any>;
|
|
175
|
+
sortConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.SortConfig<any>;
|
|
176
|
+
filterConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FilterConfig<any>;
|
|
177
|
+
floatingFilterConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FloatingFilterConfig<any>;
|
|
178
|
+
radioConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.RadioConfig<any>;
|
|
179
|
+
checkboxConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.CheckboxConfig<any>;
|
|
180
|
+
headerTooltipConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HeaderTooltipConfig<any>;
|
|
181
|
+
tooltipConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.TooltipConfig<any>;
|
|
182
|
+
footerTooltipConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FooterTooltipConfig<any>;
|
|
183
|
+
exportConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ExportConfig;
|
|
184
|
+
importConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ImportConfig;
|
|
185
|
+
printConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.PrintConfig;
|
|
186
|
+
expandConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ExpandConfig<any>;
|
|
187
|
+
treeConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.TreeConfig<any>;
|
|
188
|
+
menuConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.MenuConfig<any>;
|
|
189
|
+
mouseConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.MouseConfig;
|
|
190
|
+
areaConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.AreaConfig<any>;
|
|
191
|
+
fnrConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.FnrConfig<any>;
|
|
192
|
+
keyboardConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.KeyboardConfig<any>;
|
|
193
|
+
clipConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ClipConfig<any>;
|
|
194
|
+
editConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.EditConfig<any>;
|
|
195
|
+
validConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ValidConfig<any>;
|
|
196
|
+
editRules: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.EditRules<any>;
|
|
197
|
+
emptyText: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.EmptyText;
|
|
198
|
+
emptyRender: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.EmptyRender;
|
|
199
|
+
loadingConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.LoadingConfig;
|
|
200
|
+
scrollX: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ScrollX;
|
|
201
|
+
scrollY: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ScrollY;
|
|
202
|
+
virtualXConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.VirtualXConfig;
|
|
203
|
+
virtualYConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.VirtualYConfig;
|
|
204
|
+
scrollbarConfig: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ScrollbarConfig;
|
|
205
|
+
params: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Params;
|
|
206
|
+
highlightCurrentRow: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HighlightCurrentRow;
|
|
207
|
+
highlightHoverRow: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HighlightHoverRow;
|
|
208
|
+
highlightCurrentColumn: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HighlightCurrentColumn;
|
|
209
|
+
highlightHoverColumn: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HighlightHoverColumn;
|
|
210
|
+
highlightCell: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.HighlightCell;
|
|
211
|
+
columnKey: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.ColumnKey;
|
|
212
|
+
rowKey: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.RowKey;
|
|
213
|
+
rowId: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.RowId;
|
|
214
|
+
fit: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Fit;
|
|
215
|
+
animat: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.Animat;
|
|
216
|
+
delayHover: import("vxe-pc-ui/types/components/table").VxeTablePropTypes.DelayHover;
|
|
208
217
|
showIndexColumn: boolean;
|
|
209
|
-
onSortChange: import("vxe-
|
|
210
|
-
onCheckboxAll: import("vxe-
|
|
211
|
-
onCheckboxChange: import("vxe-
|
|
218
|
+
onSortChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.SortChange<any>;
|
|
219
|
+
onCheckboxAll: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CheckboxAll<any>;
|
|
220
|
+
onCheckboxChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CheckboxChange<any>;
|
|
212
221
|
sumFields: string[];
|
|
213
222
|
avgFields: string[];
|
|
214
|
-
onKeydownStart: import("vxe-
|
|
215
|
-
onKeydownEnd: import("vxe-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
223
|
+
onKeydownStart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.KeydownStart<any>;
|
|
224
|
+
onKeydownEnd: import("vxe-pc-ui/types/components/grid").VxeGridEvents.KeydownEnd<any>;
|
|
225
|
+
onColumnsChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ColumnsChange<any>;
|
|
226
|
+
onDataChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.DataChange<any>;
|
|
227
|
+
onFooterDataChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FooterDataChange<any>;
|
|
228
|
+
onCurrentRowChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CurrentRowChange<any>;
|
|
229
|
+
onCurrentRowDisabled: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CurrentRowDisabled<any>;
|
|
230
|
+
onCurrentColumnChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CurrentColumnChange<any>;
|
|
231
|
+
onCurrentColumnDisabled: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CurrentColumnDisabled<any>;
|
|
232
|
+
onRadioChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.RadioChange<any>;
|
|
233
|
+
onCheckboxRangeStart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CheckboxRangeStart<any>;
|
|
234
|
+
onCheckboxRangeChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CheckboxRangeChange<any>;
|
|
235
|
+
onCheckboxRangeEnd: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CheckboxRangeEnd<any>;
|
|
236
|
+
onCheckboxRangeSelect: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CheckboxRangeSelect<any>;
|
|
237
|
+
onCellClick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellClick<any>;
|
|
238
|
+
onCellDblclick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellDblclick<any>;
|
|
239
|
+
onCellMenu: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellMenu<any>;
|
|
240
|
+
onCellMouseenter: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellMouseenter<any>;
|
|
241
|
+
onCellMouseleave: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellMouseleave<any>;
|
|
242
|
+
onHeaderCellClick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.HeaderCellClick<any>;
|
|
243
|
+
onHeaderCellDblclick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.HeaderCellDblclick<any>;
|
|
244
|
+
onHeaderCellMenu: import("vxe-pc-ui/types/components/grid").VxeGridEvents.HeaderCellMenu<any>;
|
|
245
|
+
onFooterCellClick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FooterCellClick<any>;
|
|
246
|
+
onFooterCellDblclick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FooterCellDblclick<any>;
|
|
247
|
+
onFooterCellMenu: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FooterCellMenu<any>;
|
|
248
|
+
onClearSort: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ClearSort<any>;
|
|
249
|
+
onClearAllSort: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ClearAllSort<any>;
|
|
250
|
+
onFilterChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FilterChange<any>;
|
|
251
|
+
onClearFilter: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ClearFilter<any>;
|
|
252
|
+
onClearAllFilter: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ClearAllFilter<any>;
|
|
253
|
+
onFilterVisible: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FilterVisible<any>;
|
|
254
|
+
onResizableChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ResizableChange<any>;
|
|
255
|
+
onToggleRowGroupExpand: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ToggleRowGroupExpand<any>;
|
|
256
|
+
onToggleRowExpand: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ToggleRowExpand<any>;
|
|
257
|
+
onToggleTreeExpand: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ToggleTreeExpand<any>;
|
|
258
|
+
onMenuClick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.MenuClick<any>;
|
|
259
|
+
onEditClosed: import("vxe-pc-ui/types/components/grid").VxeGridEvents.EditClosed<any>;
|
|
260
|
+
onEditActivated: import("vxe-pc-ui/types/components/grid").VxeGridEvents.EditActivated<any>;
|
|
261
|
+
onEditDisabled: import("vxe-pc-ui/types/components/grid").VxeGridEvents.EditDisabled<any>;
|
|
262
|
+
onValidError: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ValidError<any>;
|
|
263
|
+
onScrollBoundary: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ScrollBoundary<any>;
|
|
264
|
+
onCustom: import("vxe-pc-ui/types/components/grid").VxeGridEvents.Custom<any>;
|
|
265
|
+
onRowDragstart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.RowDragstart<any>;
|
|
266
|
+
onRowDragover: import("vxe-pc-ui/types/components/grid").VxeGridEvents.RowDragover<any>;
|
|
267
|
+
onRowDragend: import("vxe-pc-ui/types/components/grid").VxeGridEvents.RowDragend<any>;
|
|
268
|
+
onRowRemoveDragend: import("vxe-pc-ui/types/components/grid").VxeGridEvents.RowRemoveDragend<any>;
|
|
269
|
+
onRowInsertDragend: import("vxe-pc-ui/types/components/grid").VxeGridEvents.RowInsertDragend<any>;
|
|
270
|
+
onColumnDragstart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ColumnDragstart<any>;
|
|
271
|
+
onColumnDragover: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ColumnDragover<any>;
|
|
272
|
+
onColumnDragend: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ColumnDragend<any>;
|
|
273
|
+
onEnterAppendRow: import("vxe-pc-ui/types/components/grid").VxeGridEvents.EnterAppendRow<any>;
|
|
274
|
+
onProxyQuery: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ProxyQuery<any>;
|
|
275
|
+
onProxyDelete: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ProxyDelete<any>;
|
|
276
|
+
onProxySave: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ProxySave<any>;
|
|
277
|
+
onFormSubmit: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FormSubmit<any>;
|
|
278
|
+
onFormSubmitInvalid: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FormSubmitInvalid<any>;
|
|
279
|
+
onFormReset: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FormReset<any>;
|
|
280
|
+
onFormCollapse: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FormCollapse<any>;
|
|
281
|
+
onToolbarButtonClick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ToolbarButtonClick<any>;
|
|
282
|
+
onToolbarToolClick: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ToolbarToolClick<any>;
|
|
283
|
+
onZoom: import("vxe-pc-ui/types/components/grid").VxeGridEvents.Zoom<any>;
|
|
284
|
+
onEditActived: import("vxe-pc-ui/types/components/grid").VxeGridEvents.EditActivated<any>;
|
|
285
|
+
onOpenFnr: import("vxe-pc-ui/types/components/grid").VxeGridEvents.OpenFnr<any>;
|
|
286
|
+
onFnrChange: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FnrChange<any>;
|
|
287
|
+
onFnrFind: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FnrFind<any>;
|
|
288
|
+
onFnrFindAll: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FnrFindAll<any>;
|
|
289
|
+
onFnrReplace: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FnrReplace<any>;
|
|
290
|
+
onFnrReplaceAll: import("vxe-pc-ui/types/components/grid").VxeGridEvents.FnrReplaceAll<any>;
|
|
291
|
+
onCellAreaCopy: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaCopy<any>;
|
|
292
|
+
onCellAreaCut: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaCut<any>;
|
|
293
|
+
onCellAreaPaste: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaPaste<any>;
|
|
294
|
+
onCellAreaMerge: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaMerge<any>;
|
|
295
|
+
onClearCellAreaMerge: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ClearCellAreaMerge<any>;
|
|
296
|
+
onClearCellAreaSelection: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ClearCellAreaSelection<any>;
|
|
297
|
+
onHeaderCellAreaSelection: import("vxe-pc-ui/types/components/grid").VxeGridEvents.HeaderCellAreaSelection<any>;
|
|
298
|
+
onCellAreaSelectionInvalid: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaSelectionInvalid<any>;
|
|
299
|
+
onCellAreaSelectionStart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaSelectionStart<any>;
|
|
300
|
+
onCellAreaSelectionDrag: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaSelectionDrag<any>;
|
|
301
|
+
onCellAreaSelectionEnd: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaSelectionEnd<any>;
|
|
302
|
+
onCellAreaExtensionStart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaExtensionStart<any>;
|
|
303
|
+
onCellAreaExtensionDrag: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaExtensionDrag<any>;
|
|
304
|
+
onCellAreaExtensionEnd: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaExtensionEnd<any>;
|
|
305
|
+
onCellAreaExtensionFill: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaExtensionFill<any>;
|
|
306
|
+
onCellAreaSelectionAllStart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaSelectionAllStart<any>;
|
|
307
|
+
onCellAreaSelectionAllEnd: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaSelectionAllEnd<any>;
|
|
308
|
+
onCellAreaArrowsStart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaArrowsStart<any>;
|
|
309
|
+
onCellAreaArrowsEnd: import("vxe-pc-ui/types/components/grid").VxeGridEvents.CellAreaArrowsEnd<any>;
|
|
310
|
+
onActiveCellChangeStart: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ActiveCellChangeStart<any>;
|
|
311
|
+
onActiveCellChangeEnd: import("vxe-pc-ui/types/components/grid").VxeGridEvents.ActiveCellChangeEnd<any>;
|
|
292
312
|
toolbarFixed: boolean;
|
|
293
313
|
autoCreateKey: boolean;
|
|
294
314
|
showTableSetting: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BasicTable.vue.d.ts","sourceRoot":"","sources":["../../../src/components/basic-table/BasicTable.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BasicTable.vue.d.ts","sourceRoot":"","sources":["../../../src/components/basic-table/BasicTable.vue"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,kBAAkB,EAAE,eAAe,EAAmB,eAAe,EAAE,MAAM,aAAa,CAAA;AA8HxG,iBAAS,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAuS+D,GAAG;wCAExC,GAAG;uCACH,GAAG;EAGnD;AAuBD,QAAA,MAAM,eAAe;;gBAhU0B,CAAA;;;;;;;;;;;;;;kHAUG,CAAC;;;;;oBAIgC,CAAC;;;;;;;;;;;;iCAK9E,CAAC;iCACJ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UArGmE,GAAG;uBAK1E,CAAC,yCAEe,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAkZjB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
import { VxeGlobalConfig } from 'vxe-pc-ui';
|
|
2
1
|
import { BasicTableProps, VxeTableFormatter } from './interface';
|
|
3
2
|
|
|
4
3
|
export declare function parseRowKey(rowKey: BasicTableProps['rKey'], record: Record<string, any>, autoCreateKey?: boolean): number | string;
|
|
5
4
|
export declare function parseRowKeyValue(rowKey: BasicTableProps['rKey'], record: Record<string, any>, autoCreateKey?: boolean): number | string;
|
|
6
5
|
export declare function setVxeTableTheme(name?: string): void;
|
|
7
|
-
export declare function
|
|
8
|
-
export declare function setVxeUIFormat(format: VxeTableFormatter): void;
|
|
6
|
+
export declare function setTableGlobalFormat(format: VxeTableFormatter): void;
|
|
9
7
|
//# sourceMappingURL=helper.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helper.d.ts","sourceRoot":"","sources":["../../../src/components/basic-table/helper.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,
|
|
1
|
+
{"version":3,"file":"helper.d.ts","sourceRoot":"","sources":["../../../src/components/basic-table/helper.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAA;AAGrE,wBAAgB,WAAW,CAAC,MAAM,EAAE,eAAe,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,aAAa,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,MAAM,CAUlI;AAED,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,eAAe,CAAC,MAAM,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,aAAa,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,MAAM,CAEvI;AAED,wBAAgB,gBAAgB,CAAC,IAAI,CAAC,EAAE,MAAM,QAQ7C;AAED,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,iBAAiB,QAE7D"}
|
|
@@ -13,6 +13,11 @@ export declare function useTableConfig(propsRef: ComputedRef<BasicTableProps>):
|
|
|
13
13
|
width?: import("vxe-pc-ui/types/components/column").VxeColumnPropTypes.Width;
|
|
14
14
|
minWidth?: import("vxe-pc-ui/types/components/column").VxeColumnPropTypes.MinWidth;
|
|
15
15
|
maxWidth?: import("vxe-pc-ui/types/components/column").VxeColumnPropTypes.MaxWidth;
|
|
16
|
+
autoOptions?: {
|
|
17
|
+
isCalcHeader?: boolean;
|
|
18
|
+
isCalcBody?: boolean;
|
|
19
|
+
isCalcFooter?: boolean;
|
|
20
|
+
};
|
|
16
21
|
maxFixedSize?: number;
|
|
17
22
|
drag?: boolean;
|
|
18
23
|
headerExportMethod?: import("vxe-pc-ui/types/components/column").VxeColumnPropTypes.HeaderExportMethod<any>;
|