@a2simcode/ui 0.0.27 → 0.0.29

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.
Files changed (32) hide show
  1. package/dist/components/form-item/index.d.ts +15 -0
  2. package/dist/components/form-item/src/form-item.vue.d.ts +9 -0
  3. package/dist/components/index.d.ts +3 -1
  4. package/dist/components/input-layer/index.d.ts +736 -0
  5. package/dist/components/input-layer/src/input-layer.vue.d.ts +719 -0
  6. package/dist/components/table/index.d.ts +15 -0
  7. package/dist/components/table/src/table.vue.d.ts +15 -0
  8. package/dist/components/table-panel/index.d.ts +15 -0
  9. package/dist/components/table-panel/src/table-panel.vue.d.ts +15 -0
  10. package/dist/components-dui/button/index.d.ts +51 -0
  11. package/dist/components-dui/button/src/button.vue.d.ts +29 -0
  12. package/dist/components-dui/button/src/types.d.ts +9 -0
  13. package/dist/components-dui/drag/index.d.ts +210 -0
  14. package/dist/components-dui/drag/src/container.vue.d.ts +108 -0
  15. package/dist/components-dui/drag/src/drag.vue.d.ts +105 -0
  16. package/dist/components-dui/drag/src/dragIndexList.vue.d.ts +133 -0
  17. package/dist/components-dui/drag/src/dragList.vue.d.ts +130 -0
  18. package/dist/components-dui/drag/src/eventBus.d.ts +4 -0
  19. package/dist/components-dui/drag/src/hooks/useDesign.d.ts +11 -0
  20. package/dist/components-dui/drag/src/hooks/useDrag.d.ts +18 -0
  21. package/dist/components-dui/drag/src/hooks/useMouseEvent.d.ts +6 -0
  22. package/dist/components-dui/drag/src/interface.d.ts +54 -0
  23. package/dist/components-dui/drag/src/tool.vue.d.ts +26 -0
  24. package/dist/components-dui/index.d.ts +9 -0
  25. package/dist/components-dui/utils/index.d.ts +7 -0
  26. package/dist/components-dui/vite.config.d.ts +2 -0
  27. package/dist/core/utils/common.d.ts +5 -0
  28. package/dist/simcode-ui.es.js +3964 -3731
  29. package/dist/simcode-ui.umd.js +2 -2
  30. package/dist/stats.html +1 -1
  31. package/dist/ui.css +1 -1
  32. package/package.json +9 -2
@@ -0,0 +1,719 @@
1
+ export interface InputLayerProps {
2
+ /** 绑定值 */
3
+ modelValue?: string;
4
+ /** 按钮图标 */
5
+ icon?: string;
6
+ /** 弹窗宽度 */
7
+ width?: number;
8
+ /** 弹窗高度 */
9
+ height?: number;
10
+ /** 弹窗标题 */
11
+ title?: string;
12
+ /** 占位符 */
13
+ placeholder?: string;
14
+ /** 是否多选 */
15
+ isMultiSelect?: boolean;
16
+ /** 值Key */
17
+ valueKey?: string;
18
+ /** 显示key */
19
+ labelKey?: string;
20
+ /** 父级节点ID */
21
+ idKey?: string;
22
+ /** 父级节点ID Key */
23
+ pidKey?: string;
24
+ /** 是否显示树形结构 */
25
+ isTree?: boolean;
26
+ /** 是否分页 */
27
+ isPage?: boolean;
28
+ /** 排序字段 */
29
+ sidx?: string;
30
+ /** 表格列配置 */
31
+ columns?: any[];
32
+ /** 加载数据方法 */
33
+ loadLayerData?: (params: any) => Promise<any>;
34
+ /** 获取显示值方法 */
35
+ getText?: (value: string) => string;
36
+ /** 打开前的回调函数 */
37
+ beforeOpen?: () => boolean | Promise<boolean>;
38
+ /** 是否禁用 */
39
+ readonly?: boolean;
40
+ /** 尺寸 */
41
+ size?: 'large' | 'default' | 'small';
42
+ /** 是否可以清除 */
43
+ clearable?: boolean;
44
+ /** 树形结构时是否默认展开所有行 */
45
+ defaultExpandAll?: boolean;
46
+ /** 数据加载方式 */
47
+ mode?: string;
48
+ /** 查询框 */
49
+ searchInputList?: any[];
50
+ /** 只显示按钮 */
51
+ onlyButton?: boolean;
52
+ /** 按钮文本 */
53
+ buttonLabel?: string;
54
+ /** 按钮类型 */
55
+ buttonType?: 'default' | 'primary' | 'dashed' | 'text' | 'link';
56
+ /** 特定场合下使用 */
57
+ isSaveSelectData?: boolean;
58
+ /** 按钮组 */
59
+ buttons?: any[];
60
+ }
61
+ declare const _default: import('vue').DefineComponent<InputLayerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
62
+ "update:modelValue": (value: string) => any;
63
+ change: (data: {
64
+ value: string;
65
+ data: any;
66
+ }) => any;
67
+ }, string, import('vue').PublicProps, Readonly<InputLayerProps> & Readonly<{
68
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
69
+ onChange?: ((data: {
70
+ value: string;
71
+ data: any;
72
+ }) => any) | undefined;
73
+ }>, {
74
+ size: "large" | "default" | "small";
75
+ icon: string;
76
+ height: number;
77
+ mode: string;
78
+ width: number;
79
+ buttons: any[];
80
+ modelValue: string;
81
+ placeholder: string;
82
+ clearable: boolean;
83
+ readonly: boolean;
84
+ valueKey: string;
85
+ columns: any[];
86
+ isTree: boolean;
87
+ isPage: boolean;
88
+ onlyButton: boolean;
89
+ defaultExpandAll: boolean;
90
+ labelKey: string;
91
+ pidKey: string;
92
+ isMultiSelect: boolean;
93
+ searchInputList: any[];
94
+ isSaveSelectData: boolean;
95
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
96
+ layerRef: ({
97
+ $: import('vue').ComponentInternalInstance;
98
+ $data: {};
99
+ $props: Partial<{
100
+ height: number;
101
+ width: number;
102
+ isStep: boolean;
103
+ validateSteps: Function;
104
+ beforeClose: Function;
105
+ steps: string[];
106
+ hasBtns: boolean;
107
+ buttons: import('../..').ButtonCompType[];
108
+ btnText: string;
109
+ destroyOnClose: boolean;
110
+ hasSaveBtn: boolean;
111
+ hasHeader: boolean;
112
+ }> & Omit<{
113
+ readonly height: number;
114
+ readonly width: number;
115
+ readonly isStep: boolean;
116
+ readonly steps: string[];
117
+ readonly hasBtns: boolean;
118
+ readonly buttons: import('../..').ButtonCompType[];
119
+ readonly btnText: string;
120
+ readonly destroyOnClose: boolean;
121
+ readonly hasSaveBtn: boolean;
122
+ readonly hasHeader: boolean;
123
+ readonly validateSteps?: Function | undefined;
124
+ readonly beforeClose?: Function | undefined;
125
+ readonly onOk?: ((...args: any[]) => any) | undefined;
126
+ readonly onClosed?: ((...args: any[]) => any) | undefined;
127
+ readonly onCancel?: ((...args: any[]) => any) | undefined;
128
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "height" | "width" | "isStep" | "validateSteps" | "beforeClose" | "steps" | "hasBtns" | "buttons" | "btnText" | "destroyOnClose" | "hasSaveBtn" | "hasHeader">;
129
+ $attrs: {
130
+ [x: string]: unknown;
131
+ };
132
+ $refs: {
133
+ [x: string]: unknown;
134
+ } & {
135
+ modalRef: unknown;
136
+ };
137
+ $slots: Readonly<{
138
+ [name: string]: import('vue').Slot<any> | undefined;
139
+ }>;
140
+ $root: import('vue').ComponentPublicInstance | null;
141
+ $parent: import('vue').ComponentPublicInstance | null;
142
+ $host: Element | null;
143
+ $emit: ((event: "ok", ...args: any[]) => void) & ((event: "closed", ...args: any[]) => void) & ((event: "cancel", ...args: any[]) => void);
144
+ $el: any;
145
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
146
+ width: {
147
+ type: NumberConstructor;
148
+ default: number;
149
+ };
150
+ height: {
151
+ type: NumberConstructor;
152
+ default: number;
153
+ };
154
+ isStep: {
155
+ type: BooleanConstructor;
156
+ default: boolean;
157
+ };
158
+ steps: {
159
+ type: {
160
+ (arrayLength: number): string[];
161
+ (...items: string[]): string[];
162
+ new (arrayLength: number): string[];
163
+ new (...items: string[]): string[];
164
+ isArray(arg: any): arg is any[];
165
+ readonly prototype: any[];
166
+ from<T>(arrayLike: ArrayLike<T>): T[];
167
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
168
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
169
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
170
+ of<T>(...items: T[]): T[];
171
+ readonly [Symbol.species]: ArrayConstructor;
172
+ };
173
+ default: () => never[];
174
+ };
175
+ hasHeader: {
176
+ type: BooleanConstructor;
177
+ default: boolean;
178
+ };
179
+ hasBtns: {
180
+ type: BooleanConstructor;
181
+ default: boolean;
182
+ };
183
+ hasSaveBtn: {
184
+ type: BooleanConstructor;
185
+ default: boolean;
186
+ };
187
+ btnText: {
188
+ type: StringConstructor;
189
+ default: string;
190
+ };
191
+ buttons: {
192
+ type: import('vue').PropType<import('../..').ButtonCompType[]>;
193
+ default: () => never[];
194
+ };
195
+ destroyOnClose: {
196
+ type: BooleanConstructor;
197
+ default: boolean;
198
+ };
199
+ validateSteps: {
200
+ type: FunctionConstructor;
201
+ default: undefined;
202
+ };
203
+ beforeClose: {
204
+ type: FunctionConstructor;
205
+ default: undefined;
206
+ };
207
+ }>> & Readonly<{
208
+ onOk?: ((...args: any[]) => any) | undefined;
209
+ onClosed?: ((...args: any[]) => any) | undefined;
210
+ onCancel?: ((...args: any[]) => any) | undefined;
211
+ }>, {
212
+ open: (layerTitle: string, type?: string, layerSubtitle?: any) => void;
213
+ close: () => void;
214
+ showLoading: (text?: string) => void;
215
+ hideLoading: () => void;
216
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
217
+ ok: (...args: any[]) => void;
218
+ closed: (...args: any[]) => void;
219
+ cancel: (...args: any[]) => void;
220
+ }, string, {
221
+ height: number;
222
+ width: number;
223
+ isStep: boolean;
224
+ validateSteps: Function;
225
+ beforeClose: Function;
226
+ steps: string[];
227
+ hasBtns: boolean;
228
+ buttons: import('../..').ButtonCompType[];
229
+ btnText: string;
230
+ destroyOnClose: boolean;
231
+ hasSaveBtn: boolean;
232
+ hasHeader: boolean;
233
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
234
+ beforeCreate?: (() => void) | (() => void)[];
235
+ created?: (() => void) | (() => void)[];
236
+ beforeMount?: (() => void) | (() => void)[];
237
+ mounted?: (() => void) | (() => void)[];
238
+ beforeUpdate?: (() => void) | (() => void)[];
239
+ updated?: (() => void) | (() => void)[];
240
+ activated?: (() => void) | (() => void)[];
241
+ deactivated?: (() => void) | (() => void)[];
242
+ beforeDestroy?: (() => void) | (() => void)[];
243
+ beforeUnmount?: (() => void) | (() => void)[];
244
+ destroyed?: (() => void) | (() => void)[];
245
+ unmounted?: (() => void) | (() => void)[];
246
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
247
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
248
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
249
+ };
250
+ $forceUpdate: () => void;
251
+ $nextTick: typeof import('vue').nextTick;
252
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
253
+ } & Readonly<{
254
+ height: number;
255
+ width: number;
256
+ isStep: boolean;
257
+ validateSteps: Function;
258
+ beforeClose: Function;
259
+ steps: string[];
260
+ hasBtns: boolean;
261
+ buttons: import('../..').ButtonCompType[];
262
+ btnText: string;
263
+ destroyOnClose: boolean;
264
+ hasSaveBtn: boolean;
265
+ hasHeader: boolean;
266
+ }> & Omit<Readonly<import('vue').ExtractPropTypes<{
267
+ width: {
268
+ type: NumberConstructor;
269
+ default: number;
270
+ };
271
+ height: {
272
+ type: NumberConstructor;
273
+ default: number;
274
+ };
275
+ isStep: {
276
+ type: BooleanConstructor;
277
+ default: boolean;
278
+ };
279
+ steps: {
280
+ type: {
281
+ (arrayLength: number): string[];
282
+ (...items: string[]): string[];
283
+ new (arrayLength: number): string[];
284
+ new (...items: string[]): string[];
285
+ isArray(arg: any): arg is any[];
286
+ readonly prototype: any[];
287
+ from<T>(arrayLike: ArrayLike<T>): T[];
288
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
289
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
290
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
291
+ of<T>(...items: T[]): T[];
292
+ readonly [Symbol.species]: ArrayConstructor;
293
+ };
294
+ default: () => never[];
295
+ };
296
+ hasHeader: {
297
+ type: BooleanConstructor;
298
+ default: boolean;
299
+ };
300
+ hasBtns: {
301
+ type: BooleanConstructor;
302
+ default: boolean;
303
+ };
304
+ hasSaveBtn: {
305
+ type: BooleanConstructor;
306
+ default: boolean;
307
+ };
308
+ btnText: {
309
+ type: StringConstructor;
310
+ default: string;
311
+ };
312
+ buttons: {
313
+ type: import('vue').PropType<import('../..').ButtonCompType[]>;
314
+ default: () => never[];
315
+ };
316
+ destroyOnClose: {
317
+ type: BooleanConstructor;
318
+ default: boolean;
319
+ };
320
+ validateSteps: {
321
+ type: FunctionConstructor;
322
+ default: undefined;
323
+ };
324
+ beforeClose: {
325
+ type: FunctionConstructor;
326
+ default: undefined;
327
+ };
328
+ }>> & Readonly<{
329
+ onOk?: ((...args: any[]) => any) | undefined;
330
+ onClosed?: ((...args: any[]) => any) | undefined;
331
+ onCancel?: ((...args: any[]) => any) | undefined;
332
+ }>, "open" | "hideLoading" | "close" | "showLoading" | ("height" | "width" | "isStep" | "validateSteps" | "beforeClose" | "steps" | "hasBtns" | "buttons" | "btnText" | "destroyOnClose" | "hasSaveBtn" | "hasHeader")> & import('vue').ShallowUnwrapRef<{
333
+ open: (layerTitle: string, type?: string, layerSubtitle?: any) => void;
334
+ close: () => void;
335
+ showLoading: (text?: string) => void;
336
+ hideLoading: () => void;
337
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
338
+ $slots: {
339
+ default?(_: {}): any;
340
+ default?(_: {}): any;
341
+ default?(_: {}): any;
342
+ };
343
+ }) | null;
344
+ tableRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
345
+ columns: {
346
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
347
+ required: true;
348
+ default: () => never[];
349
+ };
350
+ isTree: {
351
+ type: BooleanConstructor;
352
+ default: boolean;
353
+ };
354
+ isShowNumber: {
355
+ type: BooleanConstructor;
356
+ default: boolean;
357
+ };
358
+ isMultiple: {
359
+ type: BooleanConstructor;
360
+ default: boolean;
361
+ };
362
+ isPage: {
363
+ type: BooleanConstructor;
364
+ default: boolean;
365
+ };
366
+ pageSizes: ArrayConstructor;
367
+ pageSize: {
368
+ type: NumberConstructor;
369
+ default: number;
370
+ };
371
+ rowKey: {
372
+ type: StringConstructor;
373
+ default: undefined;
374
+ };
375
+ sort: StringConstructor;
376
+ buttons: {
377
+ type: import('vue').PropType<import('../..').ButtonCompType[]>;
378
+ default: () => never[];
379
+ };
380
+ batchButtons: {
381
+ type: import('vue').PropType<import('../..').ButtonCompType[]>;
382
+ default: () => never[];
383
+ };
384
+ actions: {
385
+ type: import('vue').PropType<import('../..').ButtonCompType[]>;
386
+ default: () => never[];
387
+ };
388
+ actionsMaxCount: {
389
+ type: NumberConstructor;
390
+ default: number;
391
+ };
392
+ actionsLabel: {
393
+ type: StringConstructor;
394
+ default: string;
395
+ };
396
+ loadData: import('vue').PropType<(params: Record<string, any>) => Promise<any>>;
397
+ immediate: {
398
+ type: BooleanConstructor;
399
+ default: boolean;
400
+ };
401
+ noPadding: BooleanConstructor;
402
+ highlightMode: {
403
+ type: import('vue').PropType<"cross" | "row" | "column" | "cell">;
404
+ default: string;
405
+ };
406
+ }>> & Readonly<{
407
+ onSelect?: ((...args: any[]) => any) | undefined;
408
+ onReady?: ((...args: any[]) => any) | undefined;
409
+ }>, {
410
+ refreshData: () => Promise<void>;
411
+ resetData: () => Promise<void>;
412
+ getSelection: () => Record<string, any>[];
413
+ setSelection: (records: any[]) => void;
414
+ clearSelection: () => void;
415
+ getInstance: () => any;
416
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
417
+ select: (...args: any[]) => void;
418
+ ready: (...args: any[]) => void;
419
+ }, import('vue').PublicProps, {
420
+ immediate: boolean;
421
+ buttons: import('../..').ButtonCompType[];
422
+ columns: import('../..').SchemaRuntimeConfig[];
423
+ isTree: boolean;
424
+ isShowNumber: boolean;
425
+ isMultiple: boolean;
426
+ isPage: boolean;
427
+ pageSize: number;
428
+ rowKey: string;
429
+ actions: import('../..').ButtonCompType[];
430
+ actionsMaxCount: number;
431
+ actionsLabel: string;
432
+ highlightMode: "row" | "cross" | "column" | "cell";
433
+ batchButtons: import('../..').ButtonCompType[];
434
+ noPadding: boolean;
435
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
436
+ keywordPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
437
+ columns: {
438
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
439
+ default: () => never[];
440
+ };
441
+ checkAll: {
442
+ type: import('vue').PropType<boolean>;
443
+ };
444
+ checkFields: {
445
+ type: import('vue').PropType<string[]>;
446
+ };
447
+ }>> & Readonly<{
448
+ "onUpdate:checkAll"?: ((value: boolean) => any) | undefined;
449
+ "onUpdate:checkFields"?: ((value: string[]) => any) | undefined;
450
+ }>, {
451
+ init: () => void;
452
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
453
+ "update:checkAll": (value: boolean) => any;
454
+ "update:checkFields": (value: string[]) => any;
455
+ }, import('vue').PublicProps, {
456
+ columns: import('../..').SchemaRuntimeConfig[];
457
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
458
+ P: {};
459
+ B: {};
460
+ D: {};
461
+ C: {};
462
+ M: {};
463
+ Defaults: {};
464
+ }, Readonly<import('vue').ExtractPropTypes<{
465
+ columns: {
466
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
467
+ default: () => never[];
468
+ };
469
+ checkAll: {
470
+ type: import('vue').PropType<boolean>;
471
+ };
472
+ checkFields: {
473
+ type: import('vue').PropType<string[]>;
474
+ };
475
+ }>> & Readonly<{
476
+ "onUpdate:checkAll"?: ((value: boolean) => any) | undefined;
477
+ "onUpdate:checkFields"?: ((value: string[]) => any) | undefined;
478
+ }>, {
479
+ init: () => void;
480
+ }, {}, {}, {}, {
481
+ columns: import('../..').SchemaRuntimeConfig[];
482
+ }> | null;
483
+ filterPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
484
+ columns: {
485
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
486
+ default: () => never[];
487
+ };
488
+ searchFieldList: {
489
+ type: import('vue').PropType<Record<string, any>[]>;
490
+ default: () => never[];
491
+ };
492
+ relation: {
493
+ type: import('vue').PropType<string>;
494
+ };
495
+ isPin: {
496
+ type: import('vue').PropType<boolean>;
497
+ };
498
+ }>> & Readonly<{
499
+ onFilter?: ((...args: any[]) => any) | undefined;
500
+ onClose?: ((...args: any[]) => any) | undefined;
501
+ "onUpdate:relation"?: ((value: string) => any) | undefined;
502
+ "onUpdate:isPin"?: ((value: boolean) => any) | undefined;
503
+ }>, {
504
+ getSearchFields: () => Record<string, any>[];
505
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
506
+ filter: (...args: any[]) => void;
507
+ close: (...args: any[]) => void;
508
+ "update:relation": (value: string) => void;
509
+ "update:isPin": (value: boolean) => void;
510
+ }, import('vue').PublicProps, {
511
+ columns: import('../..').SchemaRuntimeConfig[];
512
+ searchFieldList: Record<string, any>[];
513
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
514
+ P: {};
515
+ B: {};
516
+ D: {};
517
+ C: {};
518
+ M: {};
519
+ Defaults: {};
520
+ }, Readonly<import('vue').ExtractPropTypes<{
521
+ columns: {
522
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
523
+ default: () => never[];
524
+ };
525
+ searchFieldList: {
526
+ type: import('vue').PropType<Record<string, any>[]>;
527
+ default: () => never[];
528
+ };
529
+ relation: {
530
+ type: import('vue').PropType<string>;
531
+ };
532
+ isPin: {
533
+ type: import('vue').PropType<boolean>;
534
+ };
535
+ }>> & Readonly<{
536
+ onFilter?: ((...args: any[]) => any) | undefined;
537
+ onClose?: ((...args: any[]) => any) | undefined;
538
+ "onUpdate:relation"?: ((value: string) => any) | undefined;
539
+ "onUpdate:isPin"?: ((value: boolean) => any) | undefined;
540
+ }>, {
541
+ getSearchFields: () => Record<string, any>[];
542
+ }, {}, {}, {}, {
543
+ columns: import('../..').SchemaRuntimeConfig[];
544
+ searchFieldList: Record<string, any>[];
545
+ }> | null;
546
+ orderPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
547
+ columns: {
548
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
549
+ default: () => never[];
550
+ };
551
+ }>> & Readonly<{
552
+ onClear?: ((...args: any[]) => any) | undefined;
553
+ onSave?: ((...args: any[]) => any) | undefined;
554
+ }>, {
555
+ init: (data: Record<string, any>[]) => void;
556
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
557
+ clear: (...args: any[]) => void;
558
+ save: (...args: any[]) => void;
559
+ }, import('vue').PublicProps, {
560
+ columns: import('../..').SchemaRuntimeConfig[];
561
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
562
+ P: {};
563
+ B: {};
564
+ D: {};
565
+ C: {};
566
+ M: {};
567
+ Defaults: {};
568
+ }, Readonly<import('vue').ExtractPropTypes<{
569
+ columns: {
570
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
571
+ default: () => never[];
572
+ };
573
+ }>> & Readonly<{
574
+ onClear?: ((...args: any[]) => any) | undefined;
575
+ onSave?: ((...args: any[]) => any) | undefined;
576
+ }>, {
577
+ init: (data: Record<string, any>[]) => void;
578
+ }, {}, {}, {}, {
579
+ columns: import('../..').SchemaRuntimeConfig[];
580
+ }> | null;
581
+ columnPanelRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
582
+ columns: {
583
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
584
+ default: () => never[];
585
+ };
586
+ columnConfig: {
587
+ type: import('vue').PropType<import('../../table-panel/src/column-panel.vue').TreeNode[] | undefined>;
588
+ };
589
+ }>> & Readonly<{
590
+ onSave?: ((...args: any[]) => any) | undefined;
591
+ }>, {
592
+ init: () => void;
593
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
594
+ save: (...args: any[]) => void;
595
+ }, import('vue').PublicProps, {
596
+ columns: import('../..').SchemaRuntimeConfig[];
597
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
598
+ treeRef: unknown;
599
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
600
+ P: {};
601
+ B: {};
602
+ D: {};
603
+ C: {};
604
+ M: {};
605
+ Defaults: {};
606
+ }, Readonly<import('vue').ExtractPropTypes<{
607
+ columns: {
608
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
609
+ default: () => never[];
610
+ };
611
+ columnConfig: {
612
+ type: import('vue').PropType<import('../../table-panel/src/column-panel.vue').TreeNode[] | undefined>;
613
+ };
614
+ }>> & Readonly<{
615
+ onSave?: ((...args: any[]) => any) | undefined;
616
+ }>, {
617
+ init: () => void;
618
+ }, {}, {}, {}, {
619
+ columns: import('../..').SchemaRuntimeConfig[];
620
+ }> | null;
621
+ tableRef: unknown;
622
+ }, HTMLDivElement, import('vue').ComponentProvideOptions, {
623
+ P: {};
624
+ B: {};
625
+ D: {};
626
+ C: {};
627
+ M: {};
628
+ Defaults: {};
629
+ }, Readonly<import('vue').ExtractPropTypes<{
630
+ columns: {
631
+ type: import('vue').PropType<import('../..').SchemaRuntimeConfig[]>;
632
+ required: true;
633
+ default: () => never[];
634
+ };
635
+ isTree: {
636
+ type: BooleanConstructor;
637
+ default: boolean;
638
+ };
639
+ isShowNumber: {
640
+ type: BooleanConstructor;
641
+ default: boolean;
642
+ };
643
+ isMultiple: {
644
+ type: BooleanConstructor;
645
+ default: boolean;
646
+ };
647
+ isPage: {
648
+ type: BooleanConstructor;
649
+ default: boolean;
650
+ };
651
+ pageSizes: ArrayConstructor;
652
+ pageSize: {
653
+ type: NumberConstructor;
654
+ default: number;
655
+ };
656
+ rowKey: {
657
+ type: StringConstructor;
658
+ default: undefined;
659
+ };
660
+ sort: StringConstructor;
661
+ buttons: {
662
+ type: import('vue').PropType<import('../..').ButtonCompType[]>;
663
+ default: () => never[];
664
+ };
665
+ batchButtons: {
666
+ type: import('vue').PropType<import('../..').ButtonCompType[]>;
667
+ default: () => never[];
668
+ };
669
+ actions: {
670
+ type: import('vue').PropType<import('../..').ButtonCompType[]>;
671
+ default: () => never[];
672
+ };
673
+ actionsMaxCount: {
674
+ type: NumberConstructor;
675
+ default: number;
676
+ };
677
+ actionsLabel: {
678
+ type: StringConstructor;
679
+ default: string;
680
+ };
681
+ loadData: import('vue').PropType<(params: Record<string, any>) => Promise<any>>;
682
+ immediate: {
683
+ type: BooleanConstructor;
684
+ default: boolean;
685
+ };
686
+ noPadding: BooleanConstructor;
687
+ highlightMode: {
688
+ type: import('vue').PropType<"cross" | "row" | "column" | "cell">;
689
+ default: string;
690
+ };
691
+ }>> & Readonly<{
692
+ onSelect?: ((...args: any[]) => any) | undefined;
693
+ onReady?: ((...args: any[]) => any) | undefined;
694
+ }>, {
695
+ refreshData: () => Promise<void>;
696
+ resetData: () => Promise<void>;
697
+ getSelection: () => Record<string, any>[];
698
+ setSelection: (records: any[]) => void;
699
+ clearSelection: () => void;
700
+ getInstance: () => any;
701
+ }, {}, {}, {}, {
702
+ immediate: boolean;
703
+ buttons: import('../..').ButtonCompType[];
704
+ columns: import('../..').SchemaRuntimeConfig[];
705
+ isTree: boolean;
706
+ isShowNumber: boolean;
707
+ isMultiple: boolean;
708
+ isPage: boolean;
709
+ pageSize: number;
710
+ rowKey: string;
711
+ actions: import('../..').ButtonCompType[];
712
+ actionsMaxCount: number;
713
+ actionsLabel: string;
714
+ highlightMode: "row" | "cross" | "column" | "cell";
715
+ batchButtons: import('../..').ButtonCompType[];
716
+ noPadding: boolean;
717
+ }> | null;
718
+ }, HTMLDivElement>;
719
+ export default _default;