tutor-pro-ui-vue 1.2.2-beta → 1.2.4-beta
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/index.css +1 -1
- package/dist/index.js +7121 -7098
- package/dist/index.js.gz +0 -0
- package/dist/index.umd.cjs +22 -22
- package/dist/src/components/CommonTable/src/index.vue.d.ts +36 -0
- package/dist/src/components/CommonTable/src/types.d.ts +16 -0
- package/package.json +1 -1
|
@@ -186,6 +186,22 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
186
186
|
readonly type: BooleanConstructor;
|
|
187
187
|
readonly default: true;
|
|
188
188
|
};
|
|
189
|
+
readonly resizable: {
|
|
190
|
+
readonly type: BooleanConstructor;
|
|
191
|
+
readonly default: true;
|
|
192
|
+
};
|
|
193
|
+
readonly allowDraglastColumn: {
|
|
194
|
+
readonly type: BooleanConstructor;
|
|
195
|
+
readonly default: false;
|
|
196
|
+
};
|
|
197
|
+
readonly border: {
|
|
198
|
+
readonly type: BooleanConstructor;
|
|
199
|
+
readonly default: true;
|
|
200
|
+
};
|
|
201
|
+
readonly showOverflowTooltip: {
|
|
202
|
+
readonly type: BooleanConstructor;
|
|
203
|
+
readonly default: true;
|
|
204
|
+
};
|
|
189
205
|
readonly selectionConfig: {
|
|
190
206
|
readonly type: import('vue').PropType<{
|
|
191
207
|
isSelection?: boolean;
|
|
@@ -263,6 +279,22 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
263
279
|
readonly type: BooleanConstructor;
|
|
264
280
|
readonly default: true;
|
|
265
281
|
};
|
|
282
|
+
readonly resizable: {
|
|
283
|
+
readonly type: BooleanConstructor;
|
|
284
|
+
readonly default: true;
|
|
285
|
+
};
|
|
286
|
+
readonly allowDraglastColumn: {
|
|
287
|
+
readonly type: BooleanConstructor;
|
|
288
|
+
readonly default: false;
|
|
289
|
+
};
|
|
290
|
+
readonly border: {
|
|
291
|
+
readonly type: BooleanConstructor;
|
|
292
|
+
readonly default: true;
|
|
293
|
+
};
|
|
294
|
+
readonly showOverflowTooltip: {
|
|
295
|
+
readonly type: BooleanConstructor;
|
|
296
|
+
readonly default: true;
|
|
297
|
+
};
|
|
266
298
|
readonly selectionConfig: {
|
|
267
299
|
readonly type: import('vue').PropType<{
|
|
268
300
|
isSelection?: boolean;
|
|
@@ -308,6 +340,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
308
340
|
"onUpdate:selectData"?: ((...args: any[]) => any) | undefined;
|
|
309
341
|
"onUpdate:tableData"?: ((...args: any[]) => any) | undefined;
|
|
310
342
|
}>, {
|
|
343
|
+
readonly border: boolean;
|
|
311
344
|
readonly immediate: boolean;
|
|
312
345
|
readonly formState: Record<string, any>;
|
|
313
346
|
readonly formConfig: Partial<import('../../CommonForm').CommonFormProps>;
|
|
@@ -317,6 +350,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
317
350
|
record: any;
|
|
318
351
|
}) => import('vue').VNode | any;
|
|
319
352
|
}>[];
|
|
353
|
+
readonly resizable: boolean;
|
|
354
|
+
readonly allowDraglastColumn: boolean;
|
|
355
|
+
readonly showOverflowTooltip: boolean;
|
|
320
356
|
readonly selectionConfig: {
|
|
321
357
|
isSelection?: boolean;
|
|
322
358
|
key?: string;
|
|
@@ -42,6 +42,22 @@ export declare const tableProps: {
|
|
|
42
42
|
readonly type: BooleanConstructor;
|
|
43
43
|
readonly default: true;
|
|
44
44
|
};
|
|
45
|
+
readonly resizable: {
|
|
46
|
+
readonly type: BooleanConstructor;
|
|
47
|
+
readonly default: true;
|
|
48
|
+
};
|
|
49
|
+
readonly allowDraglastColumn: {
|
|
50
|
+
readonly type: BooleanConstructor;
|
|
51
|
+
readonly default: false;
|
|
52
|
+
};
|
|
53
|
+
readonly border: {
|
|
54
|
+
readonly type: BooleanConstructor;
|
|
55
|
+
readonly default: true;
|
|
56
|
+
};
|
|
57
|
+
readonly showOverflowTooltip: {
|
|
58
|
+
readonly type: BooleanConstructor;
|
|
59
|
+
readonly default: true;
|
|
60
|
+
};
|
|
45
61
|
readonly selectionConfig: {
|
|
46
62
|
readonly type: PropType<{
|
|
47
63
|
isSelection?: boolean;
|