cnhis-design-vue 3.1.8-beta.1 → 3.1.8-beta.2

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 (49) hide show
  1. package/es/packages/big-table/index.d.ts +2042 -0
  2. package/es/packages/big-table/src/BigTable.vue.d.ts +2056 -0
  3. package/es/packages/big-table/src/components/NoData.vue.d.ts +51 -0
  4. package/es/packages/bpmn-workflow/index.d.ts +74 -0
  5. package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue.d.ts +77 -0
  6. package/es/packages/button-print/index.d.ts +7317 -0
  7. package/es/packages/button-print/src/ButtonPrint.vue.d.ts +7316 -0
  8. package/es/packages/chunk-upload/index.d.ts +1748 -0
  9. package/es/packages/chunk-upload/src/chunk-upload-new.vue.d.ts +1905 -0
  10. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue.d.ts +1749 -0
  11. package/es/packages/form-render/index.d.ts +402 -0
  12. package/es/packages/form-render/src/FormRender.vue.d.ts +402 -0
  13. package/es/packages/form-render/src/components/combination2.mjs +2 -2
  14. package/es/packages/form-table/src/components/table-age.vue.d.ts +4270 -0
  15. package/es/packages/form-table/src/components/table-date-picker.vue.d.ts +5282 -0
  16. package/es/packages/form-table/src/components/table-digital.vue.d.ts +2899 -0
  17. package/es/packages/form-table/src/components/table-input-password.vue.d.ts +1620 -0
  18. package/es/packages/form-table/src/components/table-input.vue.d.ts +1577 -0
  19. package/es/packages/form-table/src/components/table-month-picker.vue.d.ts +5225 -0
  20. package/es/packages/form-table/src/components/table-search-more.vue.d.ts +1785 -0
  21. package/es/packages/form-table/src/components/table-search.vue.d.ts +3093 -0
  22. package/es/packages/form-table/src/components/table-select-multiple.vue.d.ts +1549 -0
  23. package/es/packages/form-table/src/components/table-select.vue.d.ts +1548 -0
  24. package/es/packages/form-table/src/components/table-textarea.vue.d.ts +1636 -0
  25. package/es/packages/form-table/src/components/table-time-picker.vue.d.ts +2670 -0
  26. package/es/packages/form-table/src/components/text-over-tooltip.vue.d.ts +542 -0
  27. package/es/packages/info-header/index.d.ts +1687 -0
  28. package/es/packages/info-header/src/HiddenContent.vue.d.ts +362 -0
  29. package/es/packages/info-header/src/InfoHeader.vue.d.ts +1688 -0
  30. package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.mjs +1 -1
  31. package/es/packages/map/index.d.ts +2312 -0
  32. package/es/packages/map/src/Map.vue.d.ts +2312 -0
  33. package/es/packages/scale-view/index.d.ts +4308 -0
  34. package/es/packages/scale-view/src/ScaleView.vue.d.ts +4149 -0
  35. package/es/packages/scale-view/src/components/AnswerParse.vue.d.ts +72 -0
  36. package/es/packages/scale-view/src/components/EvaluateCountdown.vue.d.ts +150 -0
  37. package/es/packages/scale-view/src/components/EvaluatePage.vue.d.ts +1503 -0
  38. package/es/packages/scale-view/src/components/NoData.vue.d.ts +51 -0
  39. package/es/packages/scale-view/src/hooks/use-component.d.ts +9753 -0
  40. package/es/packages/select-label/index.d.ts +11489 -0
  41. package/es/packages/select-label/src/SelectLabel.vue.d.ts +7120 -0
  42. package/es/packages/select-person/index.d.ts +3498 -0
  43. package/es/packages/select-person/src/SearchTree.vue.d.ts +344 -0
  44. package/es/packages/select-person/src/SelectPerson.vue.d.ts +3501 -0
  45. package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.mjs +19 -8
  46. package/es/src/components/SelectPage/SelectPage.vue.d.ts +1446 -0
  47. package/package.json +5 -3
  48. package/sync-w.sh +13 -0
  49. package/sync.sh +0 -13
@@ -0,0 +1,2042 @@
1
+ import { SFCWithInstall } from 'cnhis-design-vue/es/src/types';
2
+ declare const BigTable: SFCWithInstall<import("vue").DefineComponent<{
3
+ data: {
4
+ type: ArrayConstructor;
5
+ default: () => never[];
6
+ };
7
+ maxCheckSize: {
8
+ type: NumberConstructor;
9
+ default: number;
10
+ };
11
+ showFooter: BooleanConstructor;
12
+ sumData: {
13
+ type: ObjectConstructor;
14
+ default: () => {};
15
+ };
16
+ avgData: {
17
+ type: ObjectConstructor;
18
+ default: () => {};
19
+ };
20
+ columnConfig: {
21
+ type: ObjectConstructor;
22
+ default: () => {};
23
+ };
24
+ refreshRow: {
25
+ type: NumberConstructor;
26
+ default: number;
27
+ };
28
+ relatedItems: {
29
+ type: ObjectConstructor;
30
+ default: () => {
31
+ triggerMethodPc: string;
32
+ triggerMethodField: string;
33
+ };
34
+ };
35
+ pageVO: {
36
+ type: ObjectConstructor;
37
+ default: () => {
38
+ pageIndex: number;
39
+ pageSize: number;
40
+ total: number;
41
+ };
42
+ };
43
+ tableOptions: {
44
+ type: ObjectConstructor;
45
+ default: () => {};
46
+ };
47
+ quickSearchConfig: {
48
+ type: ArrayConstructor;
49
+ default: () => never[];
50
+ };
51
+ primaryKey: {
52
+ type: StringConstructor;
53
+ default: string;
54
+ };
55
+ tableDataCache: {
56
+ type: ArrayConstructor;
57
+ default: () => never[];
58
+ };
59
+ oldtableData: {
60
+ type: ArrayConstructor;
61
+ default: () => never[];
62
+ };
63
+ tableName: StringConstructor;
64
+ fieldListOriginal: {
65
+ type: ArrayConstructor;
66
+ default: () => never[];
67
+ };
68
+ tableParams: {
69
+ type: ObjectConstructor;
70
+ default: () => {};
71
+ };
72
+ emptyItems: {
73
+ type: ObjectConstructor;
74
+ default: () => {
75
+ noDataImg: string;
76
+ noDataTip: string;
77
+ };
78
+ };
79
+ styleSetting: {
80
+ type: ObjectConstructor;
81
+ default: () => {};
82
+ };
83
+ sysImageSize: {
84
+ type: ArrayConstructor;
85
+ default: () => never[];
86
+ };
87
+ height: StringConstructor;
88
+ groupCountFields: {
89
+ type: ArrayConstructor;
90
+ default: () => never[];
91
+ };
92
+ groupCountMap: {
93
+ type: ObjectConstructor;
94
+ default: () => {};
95
+ };
96
+ listFormUnionSetting: {
97
+ type: ObjectConstructor;
98
+ default: () => {};
99
+ };
100
+ inlineEditFormConfig: {
101
+ type: ObjectConstructor;
102
+ default: () => {};
103
+ };
104
+ clickRowData: {
105
+ type: ObjectConstructor;
106
+ default: () => {};
107
+ };
108
+ btnList: {
109
+ type: ArrayConstructor;
110
+ default: () => never[];
111
+ };
112
+ spinning: BooleanConstructor;
113
+ rowGroupSetting: {
114
+ type: ObjectConstructor;
115
+ default: () => {};
116
+ };
117
+ inlineEditFormSubmitDone: BooleanConstructor;
118
+ isInlineOperating: {
119
+ type: BooleanConstructor;
120
+ default: boolean;
121
+ };
122
+ inlineEditCurrentOperateBtnId: StringConstructor;
123
+ tableRefreshCache: {
124
+ type: ObjectConstructor;
125
+ default: () => {};
126
+ };
127
+ userInfo: {
128
+ type: ObjectConstructor;
129
+ default: () => {};
130
+ };
131
+ isInlineEditing: BooleanConstructor;
132
+ isInlineAdding: BooleanConstructor;
133
+ isInlineSave: BooleanConstructor;
134
+ isInlineCancel: BooleanConstructor;
135
+ inlineError: BooleanConstructor;
136
+ resetInlineEdit: FunctionConstructor;
137
+ resetEditRowStatus: FunctionConstructor;
138
+ pageIndexOldtableData: {
139
+ type: ArrayConstructor;
140
+ default: () => never[];
141
+ };
142
+ submitForm: FunctionConstructor;
143
+ isMatchComponent: BooleanConstructor;
144
+ asyncCount: BooleanConstructor;
145
+ showSettings: {
146
+ type: ObjectConstructor;
147
+ default: () => {};
148
+ };
149
+ inlineFormData: {
150
+ type: ObjectConstructor;
151
+ default: () => {};
152
+ };
153
+ inlineOriginalTableRow: {
154
+ type: ObjectConstructor;
155
+ default: () => {};
156
+ };
157
+ filterDomPortal: {
158
+ type: StringConstructor;
159
+ default: string;
160
+ };
161
+ filterTopOffset: {
162
+ type: NumberConstructor;
163
+ default: number;
164
+ };
165
+ isNestTable: {
166
+ type: BooleanConstructor;
167
+ default: boolean;
168
+ };
169
+ showNestTable: BooleanConstructor;
170
+ curNestColumnConfig: {
171
+ type: ObjectConstructor;
172
+ default: () => {};
173
+ };
174
+ nestTableDataRequest: FunctionConstructor;
175
+ isBatchEditing: BooleanConstructor;
176
+ isEditAllRow: BooleanConstructor;
177
+ isBatchSave: BooleanConstructor;
178
+ isBatchCancel: BooleanConstructor;
179
+ batchDynamicPropsCache: {
180
+ type: ObjectConstructor;
181
+ default: () => {};
182
+ };
183
+ batchEditDoneNumber: {
184
+ type: ObjectConstructor;
185
+ default: () => {};
186
+ };
187
+ batchError: BooleanConstructor;
188
+ batchFormData: {
189
+ type: ObjectConstructor;
190
+ default: () => {};
191
+ };
192
+ resetInlineBatchEdit: FunctionConstructor;
193
+ resetBatchEditRowStatus: FunctionConstructor;
194
+ }, {
195
+ _hideAllWrap: null;
196
+ _beforeSearchConvert: never[];
197
+ addInlineEditPrimaryKey: string;
198
+ GROUP_TITLE_KEY: string;
199
+ $message: import("naive-ui").MessageApi;
200
+ xGrid: import("vue").Ref<{}>;
201
+ copyState: {
202
+ curAbleCheckedLen: number;
203
+ showButtonTop: number;
204
+ isTree: number;
205
+ isShowEmpty: boolean;
206
+ currentPageSelectedLength: number;
207
+ visibleCheckAllWrap: boolean;
208
+ visibleCheckAllWrapMore: boolean;
209
+ checkedRows: never[];
210
+ filterFields: {};
211
+ visibleTreeCheck: boolean;
212
+ treeTableLength: number;
213
+ checkWidth: {
214
+ 'table-simple': string;
215
+ 'table-classics': string;
216
+ };
217
+ lastPageIndex: number;
218
+ selectType: string;
219
+ levelLazyLoadSetting: null;
220
+ openOnly: number;
221
+ filterWidth: number;
222
+ filterHeight: number;
223
+ startX: number;
224
+ distance: number;
225
+ mask: string;
226
+ groupText: never[];
227
+ currentClickBtnInfo: null;
228
+ columnLen: number;
229
+ hasRefresh: boolean;
230
+ isExpand: number;
231
+ btnIcons: {
232
+ copy: string;
233
+ pencil: string;
234
+ delete: string;
235
+ add: string;
236
+ download: string;
237
+ label: string;
238
+ queding: string;
239
+ del: string;
240
+ };
241
+ tableHeight: string;
242
+ cacheUniqueKey: {};
243
+ theUniqueKeyListObj: {};
244
+ editColumnMap: {};
245
+ fieldLength: number;
246
+ originFormatList: never[];
247
+ isSaveForm: boolean;
248
+ editConfig: {
249
+ trigger: string;
250
+ mode: string;
251
+ autoClear: boolean;
252
+ showIcon: boolean;
253
+ };
254
+ rowConfig: {
255
+ height: number;
256
+ };
257
+ };
258
+ state: {
259
+ curAbleCheckedLen: number;
260
+ showButtonTop: number;
261
+ isTree: number;
262
+ isShowEmpty: boolean;
263
+ currentPageSelectedLength: number;
264
+ visibleCheckAllWrap: boolean;
265
+ visibleCheckAllWrapMore: boolean;
266
+ checkedRows: never[];
267
+ filterFields: {};
268
+ visibleTreeCheck: boolean;
269
+ treeTableLength: number;
270
+ checkWidth: {
271
+ 'table-simple': string;
272
+ 'table-classics': string;
273
+ };
274
+ lastPageIndex: number;
275
+ selectType: string;
276
+ levelLazyLoadSetting: null;
277
+ openOnly: number;
278
+ filterWidth: number;
279
+ filterHeight: number;
280
+ startX: number;
281
+ distance: number;
282
+ mask: string;
283
+ groupText: never[];
284
+ currentClickBtnInfo: null;
285
+ columnLen: number;
286
+ hasRefresh: boolean;
287
+ isExpand: number;
288
+ btnIcons: {
289
+ copy: string;
290
+ pencil: string;
291
+ delete: string;
292
+ add: string;
293
+ download: string;
294
+ label: string;
295
+ queding: string;
296
+ del: string;
297
+ };
298
+ tableHeight: string;
299
+ cacheUniqueKey: {};
300
+ theUniqueKeyListObj: {};
301
+ editColumnMap: {};
302
+ fieldLength: number;
303
+ originFormatList: never[];
304
+ isSaveForm: boolean;
305
+ editConfig: {
306
+ trigger: string;
307
+ mode: string;
308
+ autoClear: boolean;
309
+ showIcon: boolean;
310
+ };
311
+ rowConfig: {
312
+ height: number;
313
+ };
314
+ };
315
+ emit: (event: string, ...args: any[]) => void;
316
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
317
+ data: {
318
+ type: ArrayConstructor;
319
+ default: () => never[];
320
+ };
321
+ maxCheckSize: {
322
+ type: NumberConstructor;
323
+ default: number;
324
+ };
325
+ showFooter: BooleanConstructor;
326
+ sumData: {
327
+ type: ObjectConstructor;
328
+ default: () => {};
329
+ };
330
+ avgData: {
331
+ type: ObjectConstructor;
332
+ default: () => {};
333
+ };
334
+ columnConfig: {
335
+ type: ObjectConstructor;
336
+ default: () => {};
337
+ };
338
+ refreshRow: {
339
+ type: NumberConstructor;
340
+ default: number;
341
+ };
342
+ relatedItems: {
343
+ type: ObjectConstructor;
344
+ default: () => {
345
+ triggerMethodPc: string;
346
+ triggerMethodField: string;
347
+ };
348
+ };
349
+ pageVO: {
350
+ type: ObjectConstructor;
351
+ default: () => {
352
+ pageIndex: number;
353
+ pageSize: number;
354
+ total: number;
355
+ };
356
+ };
357
+ tableOptions: {
358
+ type: ObjectConstructor;
359
+ default: () => {};
360
+ };
361
+ quickSearchConfig: {
362
+ type: ArrayConstructor;
363
+ default: () => never[];
364
+ };
365
+ primaryKey: {
366
+ type: StringConstructor;
367
+ default: string;
368
+ };
369
+ tableDataCache: {
370
+ type: ArrayConstructor;
371
+ default: () => never[];
372
+ };
373
+ oldtableData: {
374
+ type: ArrayConstructor;
375
+ default: () => never[];
376
+ };
377
+ tableName: StringConstructor;
378
+ fieldListOriginal: {
379
+ type: ArrayConstructor;
380
+ default: () => never[];
381
+ };
382
+ tableParams: {
383
+ type: ObjectConstructor;
384
+ default: () => {};
385
+ };
386
+ emptyItems: {
387
+ type: ObjectConstructor;
388
+ default: () => {
389
+ noDataImg: string;
390
+ noDataTip: string;
391
+ };
392
+ };
393
+ styleSetting: {
394
+ type: ObjectConstructor;
395
+ default: () => {};
396
+ };
397
+ sysImageSize: {
398
+ type: ArrayConstructor;
399
+ default: () => never[];
400
+ };
401
+ height: StringConstructor;
402
+ groupCountFields: {
403
+ type: ArrayConstructor;
404
+ default: () => never[];
405
+ };
406
+ groupCountMap: {
407
+ type: ObjectConstructor;
408
+ default: () => {};
409
+ };
410
+ listFormUnionSetting: {
411
+ type: ObjectConstructor;
412
+ default: () => {};
413
+ };
414
+ inlineEditFormConfig: {
415
+ type: ObjectConstructor;
416
+ default: () => {};
417
+ };
418
+ clickRowData: {
419
+ type: ObjectConstructor;
420
+ default: () => {};
421
+ };
422
+ btnList: {
423
+ type: ArrayConstructor;
424
+ default: () => never[];
425
+ };
426
+ spinning: BooleanConstructor;
427
+ rowGroupSetting: {
428
+ type: ObjectConstructor;
429
+ default: () => {};
430
+ };
431
+ inlineEditFormSubmitDone: BooleanConstructor;
432
+ isInlineOperating: {
433
+ type: BooleanConstructor;
434
+ default: boolean;
435
+ };
436
+ inlineEditCurrentOperateBtnId: StringConstructor;
437
+ tableRefreshCache: {
438
+ type: ObjectConstructor;
439
+ default: () => {};
440
+ };
441
+ userInfo: {
442
+ type: ObjectConstructor;
443
+ default: () => {};
444
+ };
445
+ isInlineEditing: BooleanConstructor;
446
+ isInlineAdding: BooleanConstructor;
447
+ isInlineSave: BooleanConstructor;
448
+ isInlineCancel: BooleanConstructor;
449
+ inlineError: BooleanConstructor;
450
+ resetInlineEdit: FunctionConstructor;
451
+ resetEditRowStatus: FunctionConstructor;
452
+ pageIndexOldtableData: {
453
+ type: ArrayConstructor;
454
+ default: () => never[];
455
+ };
456
+ submitForm: FunctionConstructor;
457
+ isMatchComponent: BooleanConstructor;
458
+ asyncCount: BooleanConstructor;
459
+ showSettings: {
460
+ type: ObjectConstructor;
461
+ default: () => {};
462
+ };
463
+ inlineFormData: {
464
+ type: ObjectConstructor;
465
+ default: () => {};
466
+ };
467
+ inlineOriginalTableRow: {
468
+ type: ObjectConstructor;
469
+ default: () => {};
470
+ };
471
+ filterDomPortal: {
472
+ type: StringConstructor;
473
+ default: string;
474
+ };
475
+ filterTopOffset: {
476
+ type: NumberConstructor;
477
+ default: number;
478
+ };
479
+ isNestTable: {
480
+ type: BooleanConstructor;
481
+ default: boolean;
482
+ };
483
+ showNestTable: BooleanConstructor;
484
+ curNestColumnConfig: {
485
+ type: ObjectConstructor;
486
+ default: () => {};
487
+ };
488
+ nestTableDataRequest: FunctionConstructor;
489
+ isBatchEditing: BooleanConstructor;
490
+ isEditAllRow: BooleanConstructor;
491
+ isBatchSave: BooleanConstructor;
492
+ isBatchCancel: BooleanConstructor;
493
+ batchDynamicPropsCache: {
494
+ type: ObjectConstructor;
495
+ default: () => {};
496
+ };
497
+ batchEditDoneNumber: {
498
+ type: ObjectConstructor;
499
+ default: () => {};
500
+ };
501
+ batchError: BooleanConstructor;
502
+ batchFormData: {
503
+ type: ObjectConstructor;
504
+ default: () => {};
505
+ };
506
+ resetInlineBatchEdit: FunctionConstructor;
507
+ resetBatchEditRowStatus: FunctionConstructor;
508
+ }>> & {
509
+ [x: `on${string}`]: ((...args: any[]) => any) | undefined;
510
+ }>>;
511
+ formatData: (data?: {
512
+ tableList: any[];
513
+ fieldList: any[];
514
+ btnList: any[];
515
+ showButtonTop: number;
516
+ isNestTabel?: boolean | undefined;
517
+ mainTableTheUniqueKey?: string | undefined;
518
+ mainTableRow?: {
519
+ [key: string]: any;
520
+ } | undefined;
521
+ nestTableId?: string | undefined;
522
+ }) => any[];
523
+ htmlToText: (HTML: any) => any;
524
+ getBtnStyle: (v: any) => {
525
+ 'border-color': any;
526
+ color: any;
527
+ 'background-color'?: undefined;
528
+ } | {
529
+ color: any;
530
+ 'border-color'?: undefined;
531
+ 'background-color'?: undefined;
532
+ } | {
533
+ 'background-color': any;
534
+ 'border-color': any;
535
+ color?: undefined;
536
+ };
537
+ imgs2imgArr: (imgs: any) => any;
538
+ parseDurationValue: (v: any, duration: any) => string | undefined;
539
+ parseCombinationValue: (value: any, setting: any) => any;
540
+ formatFieldText: (row: any, field: any, fieldList: any, fieldListOriginal: any, isTimeAxisRenderNew?: any, isTimeAxisExpand?: any) => any;
541
+ allSelectedLength: import("vue").ComputedRef<any>;
542
+ checkOperateCurrentTable: () => boolean;
543
+ setRowStatus: (vxeTable: any, rowIndex: number, value: any) => false | undefined;
544
+ resetBatchOperationRowStatus: () => false | undefined;
545
+ checkListFormUnionSettingParamsList: () => boolean;
546
+ handleClickCancelBtnByInline: () => Promise<void>;
547
+ setAllRowInlineStatus: (disabled?: boolean) => void;
548
+ hideSelectCloumns: () => void;
549
+ handleEditFormLength: () => number | undefined;
550
+ resetOperationRowStatus: () => false | undefined;
551
+ recordClickBtnInfo: (row?: any, index?: number | undefined) => void;
552
+ getInlineOpreateRow: () => {
553
+ row: any;
554
+ rowIndex: any;
555
+ };
556
+ initEditTable: () => Promise<void>;
557
+ activeMethod: ({ row, rowIndex, column, columnIndex }: {
558
+ row: any;
559
+ rowIndex: number;
560
+ column: any;
561
+ columnIndex: number;
562
+ }) => boolean;
563
+ deleteRow: (row: any, col: any, index: number) => void;
564
+ onClickSelectTable: (row: any) => Promise<void>;
565
+ onFormChange: ({ value, row, column, index }: {
566
+ value: string | number | null;
567
+ row: any;
568
+ column: any;
569
+ index: number;
570
+ }) => void;
571
+ getDefaultValue: (params: any, item: any) => any;
572
+ isAboutNestTable: import("vue").ComputedRef<any>;
573
+ isExpandTable: import("vue").ComputedRef<boolean>;
574
+ handleRowId: import("vue").ComputedRef<any>;
575
+ toggleExpandMethod: ({ expanded, row }: any) => boolean;
576
+ loadExpandMethod: ({ row, rowIndex }: any) => Promise<void>;
577
+ nestHandleClickRow: (table: any, data: any) => void;
578
+ keyDown: ({ $event }: {
579
+ $event: KeyboardEvent;
580
+ }) => void;
581
+ scroll: (params: any) => void;
582
+ attr: {
583
+ [x: string]: unknown;
584
+ };
585
+ currentCheckedKeys: import("vue").ComputedRef<never[]>;
586
+ visibleCancelCheckAllBtn: import("vue").ComputedRef<boolean>;
587
+ singleCheckedKey: import("vue").ComputedRef<string>;
588
+ tableNoSetting: import("vue").ComputedRef<any>;
589
+ isScanMultiTable: import("vue").ComputedRef<any>;
590
+ configuration: import("vue").ComputedRef<{
591
+ userInfo: Record<string, any>;
592
+ sysImageSize: unknown[];
593
+ }>;
594
+ handlePrimaryKey: import("vue").ComputedRef<string>;
595
+ handleSeqConfig: import("vue").ComputedRef<{
596
+ startIndex: number;
597
+ }>;
598
+ treeConfig: import("vue").ComputedRef<null>;
599
+ hideAllWrap: (e: any) => void;
600
+ bindDocumentClick: () => void;
601
+ unBindDocumentClick: () => void;
602
+ removeInsert: () => Promise<false | undefined>;
603
+ loadColumn: (config: any) => void;
604
+ loadData: (data: any) => Promise<void>;
605
+ setGroupTitleToFristColumnFieldData: (formatList: any) => void;
606
+ setCurrentPageRowChecked: () => void;
607
+ setCurrentCheckedLength: () => void;
608
+ formatColumns: (map: any) => ({
609
+ fixed: string;
610
+ align: string;
611
+ visible: any;
612
+ width: string;
613
+ slots: {
614
+ header: () => string;
615
+ default: (params: any) => any;
616
+ };
617
+ type?: undefined;
618
+ resizable?: undefined;
619
+ showOverflow?: undefined;
620
+ } | {
621
+ type: string;
622
+ fixed: string;
623
+ align: string;
624
+ resizable: boolean;
625
+ width: string;
626
+ showOverflow: boolean;
627
+ slots: {
628
+ header: () => any[];
629
+ default?: undefined;
630
+ };
631
+ visible?: undefined;
632
+ } | {
633
+ type: any;
634
+ fixed: string;
635
+ align: string;
636
+ visible: boolean;
637
+ resizable: boolean;
638
+ width: any;
639
+ slots: {
640
+ default: (data: any) => any;
641
+ } | null;
642
+ showOverflow: boolean;
643
+ })[];
644
+ formatterEdit: (params: any, col: any) => any;
645
+ getEditBtn: (row: any, col: any, index: any) => any;
646
+ formatter: (params: any, col: any) => any;
647
+ formatterHeader: (item: any) => () => any[];
648
+ handlefilterBoxClickSort: (sort: any, field: any) => void;
649
+ handleFilterSeach: (val: any, field: any) => void;
650
+ handleFilterChangeAll: (val: any, field: any) => void;
651
+ handleFilterChange: (value: any, name: any, field: any) => void;
652
+ handleFilterSearchChange: (value: any, columnName: any, field: any) => void;
653
+ handleFilterClearAll: (field: any) => void;
654
+ handleCancelFilter: () => void;
655
+ handleFilter: (field: any) => void;
656
+ onmousedownFunc: (e: any) => void;
657
+ maskInsert: () => void;
658
+ maskCreate: () => string | HTMLDivElement;
659
+ maskMove: (e: any) => void;
660
+ maskUp: (e: any) => void;
661
+ setGroupTreeExpand: () => void;
662
+ resetTableInlineEditStatus: () => false | undefined;
663
+ toolTipTitle: (item: any, type: any) => any;
664
+ triggerExpand: (e: any, isExpand: any) => void;
665
+ getOtherConfigInit: () => any;
666
+ refreshTable: () => void;
667
+ handleCheckAll: () => void;
668
+ handleCancelAllCheck: () => void;
669
+ getRowClassName: () => (({ row }: {
670
+ row: any;
671
+ }) => "" | "single--checked") | (() => void);
672
+ footerMethod: ({ columns, data }: {
673
+ columns: any;
674
+ data: any;
675
+ }) => any[];
676
+ loadChildrenMethod: ({ row }: {
677
+ row: any;
678
+ }) => Promise<any>;
679
+ getAsyncTableData: (params: any) => Promise<void>;
680
+ setChecklist: (list: any) => any;
681
+ colspanMethod: ({ row, column, _rowIndex, _columnIndex }: {
682
+ row: any;
683
+ column: any;
684
+ _rowIndex: any;
685
+ _columnIndex: any;
686
+ }) => {
687
+ rowspan: number;
688
+ colspan: number;
689
+ } | undefined;
690
+ footerRowspanMethod: (obj: any) => {
691
+ rowspan: number;
692
+ colspan: number;
693
+ } | undefined;
694
+ rowdblclick: ({ row, column }: {
695
+ row: any;
696
+ column: any;
697
+ }) => false | undefined;
698
+ pubCheckChange: (rows?: never[]) => void;
699
+ updateAddCheckedRows: (rows: any, isTree?: boolean) => void;
700
+ removeCheckedRows: (rows: any, isCheckedChange: any) => void;
701
+ setCheckedMehod: (setChecked: any, row: any) => void;
702
+ handlerClickRow: (data: any) => false | undefined;
703
+ addCheckedRows: (rows: any) => false | undefined;
704
+ treeTableSelectionChange: (records: any) => boolean;
705
+ selectionChange: ({ checked, row, records }: {
706
+ checked: any;
707
+ row: any;
708
+ records: any;
709
+ }) => void;
710
+ selectionChangeAll: ({ checked, records }: {
711
+ checked: any;
712
+ records: any;
713
+ }) => void;
714
+ radioOnChange: (rowData?: {}) => void;
715
+ sortChange: ({ property, order }: {
716
+ property: any;
717
+ order: any;
718
+ }) => false | undefined;
719
+ showDrawer: () => void;
720
+ handleCellMouseenter: ({ column, $event }: {
721
+ column: any;
722
+ $event: any;
723
+ }) => void;
724
+ getFooterTooltipTitle: (column: any) => string;
725
+ getFooterTitle: (column: any) => number | undefined;
726
+ hanldeClickRefresh: () => void;
727
+ confirmScanMulti: (params: any) => void;
728
+ scanMultiOperate: (params: any) => any;
729
+ showEditForm: (row: any, column: any, $rowIndex: any) => any;
730
+ initBatchDynamicProps: (unionItem: any, row: any, column: any, $rowIndex: any) => any;
731
+ handleSubmitEditForm: (obj?: {}) => void;
732
+ banSubmit: (obj: any) => void;
733
+ handleFormTheUniqueKey: () => Promise<void>;
734
+ handlePreView: (data: any, i: any, e: any) => void;
735
+ getPicture: (row: any, item: any, type: any) => any[];
736
+ getColor: (row: any, item: any) => any[];
737
+ getDate: (row: any, item: any) => any[];
738
+ getPercentage: (row: any, item: any) => any[] | undefined;
739
+ getvideoList: (row: any, item: any) => null;
740
+ getOrCode: (row: any, item: any, type: any) => any[];
741
+ qrCodeEvent: (e: any, row: any, item: any) => void;
742
+ generateInlineBtnList: (row: any, index: any) => any[] | undefined;
743
+ getTileBtnList: (row: any, index: any) => any[];
744
+ clickBtn: (row: any, btn: any, index: any, e: any, j: any) => void;
745
+ getBtnIcon: (btn: any, mr?: string) => any[];
746
+ getFoldBtnList: (row: any, index: any) => any[];
747
+ switchBtnOnChange: (e: any, r: any, i: any, index: any) => void;
748
+ getBtnLinkSwitch: (row: any, item: any, disabled: any, index: any) => any[];
749
+ getField: (row: any, item: any, index: any, isLink: any) => any[];
750
+ linkDetail: (row: any, col: any, index: any, e: any) => false | undefined;
751
+ hanldeCopyContent: (e: any, value: any) => void;
752
+ getCheckboxRecords: () => never[];
753
+ handleClickEditBtnByInline: () => Promise<false | undefined>;
754
+ setAllCheckedRows: (rows: any) => void;
755
+ setTalbeScrollTo: () => void;
756
+ submitInlineForm: () => false | undefined;
757
+ handleClickAddBtnByInline: () => Promise<false | undefined>;
758
+ handleClickSaveBtnByInline: () => false | undefined;
759
+ removeInlineAddRow: () => false | undefined;
760
+ setCurrentRow: (row: any) => void;
761
+ loadColumnAndData: (data: any, config: any) => void;
762
+ clearChecked: () => void;
763
+ SyncOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
764
+ NoData: import("vue").DefineComponent<{
765
+ noDataTip: {
766
+ type: StringConstructor;
767
+ default: string;
768
+ };
769
+ noDataImg: {
770
+ type: StringConstructor;
771
+ default: string;
772
+ };
773
+ showImg: {
774
+ type: BooleanConstructor;
775
+ default: boolean;
776
+ };
777
+ }, {
778
+ imgStr: import("vue").ComputedRef<null>;
779
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
780
+ noDataTip: {
781
+ type: StringConstructor;
782
+ default: string;
783
+ };
784
+ noDataImg: {
785
+ type: StringConstructor;
786
+ default: string;
787
+ };
788
+ showImg: {
789
+ type: BooleanConstructor;
790
+ default: boolean;
791
+ };
792
+ }>> & {
793
+ [x: `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
794
+ }>>;
795
+ handleDesc: import("vue").ComputedRef<string>;
796
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
797
+ noDataTip: {
798
+ type: StringConstructor;
799
+ default: string;
800
+ };
801
+ noDataImg: {
802
+ type: StringConstructor;
803
+ default: string;
804
+ };
805
+ showImg: {
806
+ type: BooleanConstructor;
807
+ default: boolean;
808
+ };
809
+ }>>, {
810
+ noDataTip: string;
811
+ noDataImg: string;
812
+ showImg: boolean;
813
+ }>;
814
+ NCheckbox: import("vue").DefineComponent<{
815
+ size: import("vue").PropType<"small" | "medium" | "large">;
816
+ checked: {
817
+ type: import("vue").PropType<string | number | boolean | undefined>;
818
+ default: undefined;
819
+ };
820
+ defaultChecked: {
821
+ type: import("vue").PropType<string | number | boolean>;
822
+ default: boolean;
823
+ };
824
+ value: import("vue").PropType<string | number>;
825
+ disabled: {
826
+ type: import("vue").PropType<boolean | undefined>;
827
+ default: undefined;
828
+ };
829
+ indeterminate: BooleanConstructor;
830
+ label: StringConstructor;
831
+ focusable: {
832
+ type: BooleanConstructor;
833
+ default: boolean;
834
+ };
835
+ checkedValue: {
836
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
837
+ default: boolean;
838
+ };
839
+ uncheckedValue: {
840
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
841
+ default: boolean;
842
+ };
843
+ 'onUpdate:checked': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
844
+ onUpdateChecked: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
845
+ privateInsideTable: BooleanConstructor;
846
+ onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
847
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
848
+ labelLineHeight: string;
849
+ fontSizeSmall: string;
850
+ fontSizeMedium: string;
851
+ fontSizeLarge: string;
852
+ borderRadius: string;
853
+ color: string;
854
+ colorChecked: string;
855
+ colorDisabled: string;
856
+ colorDisabledChecked: string;
857
+ colorTableHeader: string;
858
+ colorTableHeaderModal: string;
859
+ colorTableHeaderPopover: string;
860
+ checkMarkColor: string;
861
+ checkMarkColorDisabled: string;
862
+ checkMarkColorDisabledChecked: string;
863
+ border: string;
864
+ borderDisabled: string;
865
+ borderDisabledChecked: string;
866
+ borderChecked: string;
867
+ borderFocus: string;
868
+ boxShadowFocus: string;
869
+ textColor: string;
870
+ textColorDisabled: string;
871
+ sizeSmall: string;
872
+ sizeMedium: string;
873
+ sizeLarge: string;
874
+ labelPadding: string;
875
+ }, any>>;
876
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
877
+ labelLineHeight: string;
878
+ fontSizeSmall: string;
879
+ fontSizeMedium: string;
880
+ fontSizeLarge: string;
881
+ borderRadius: string;
882
+ color: string;
883
+ colorChecked: string;
884
+ colorDisabled: string;
885
+ colorDisabledChecked: string;
886
+ colorTableHeader: string;
887
+ colorTableHeaderModal: string;
888
+ colorTableHeaderPopover: string;
889
+ checkMarkColor: string;
890
+ checkMarkColorDisabled: string;
891
+ checkMarkColorDisabledChecked: string;
892
+ border: string;
893
+ borderDisabled: string;
894
+ borderDisabledChecked: string;
895
+ borderChecked: string;
896
+ borderFocus: string;
897
+ boxShadowFocus: string;
898
+ textColor: string;
899
+ textColorDisabled: string;
900
+ sizeSmall: string;
901
+ sizeMedium: string;
902
+ sizeLarge: string;
903
+ labelPadding: string;
904
+ }, any>>>;
905
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
906
+ labelLineHeight: string;
907
+ fontSizeSmall: string;
908
+ fontSizeMedium: string;
909
+ fontSizeLarge: string;
910
+ borderRadius: string;
911
+ color: string;
912
+ colorChecked: string;
913
+ colorDisabled: string;
914
+ colorDisabledChecked: string;
915
+ colorTableHeader: string;
916
+ colorTableHeaderModal: string;
917
+ colorTableHeaderPopover: string;
918
+ checkMarkColor: string;
919
+ checkMarkColorDisabled: string;
920
+ checkMarkColorDisabledChecked: string;
921
+ border: string;
922
+ borderDisabled: string;
923
+ borderDisabledChecked: string;
924
+ borderChecked: string;
925
+ borderFocus: string;
926
+ boxShadowFocus: string;
927
+ textColor: string;
928
+ textColorDisabled: string;
929
+ sizeSmall: string;
930
+ sizeMedium: string;
931
+ sizeLarge: string;
932
+ labelPadding: string;
933
+ }, any>>>;
934
+ }, import("naive-ui/es/_mixins/use-form-item").UseFormItem<"small" | "medium" | "large"> & import("naive-ui").CheckboxInst & {
935
+ rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
936
+ selfRef: import("vue").Ref<HTMLDivElement | null>;
937
+ mergedClsPrefix: import("vue").ComputedRef<string>;
938
+ mergedDisabled: import("vue").ComputedRef<boolean>;
939
+ renderedChecked: import("vue").ComputedRef<boolean>;
940
+ mergedTheme: import("vue").ComputedRef<{
941
+ common: {
942
+ baseColor: string;
943
+ primaryColor: string;
944
+ primaryColorHover: string;
945
+ primaryColorPressed: string;
946
+ primaryColorSuppl: string;
947
+ infoColor: string;
948
+ infoColorHover: string;
949
+ infoColorPressed: string;
950
+ infoColorSuppl: string;
951
+ successColor: string;
952
+ successColorHover: string;
953
+ successColorPressed: string;
954
+ successColorSuppl: string;
955
+ warningColor: string;
956
+ warningColorHover: string;
957
+ warningColorPressed: string;
958
+ warningColorSuppl: string;
959
+ errorColor: string;
960
+ errorColorHover: string;
961
+ errorColorPressed: string;
962
+ errorColorSuppl: string;
963
+ textColorBase: string;
964
+ textColor1: string;
965
+ textColor2: string;
966
+ textColor3: string;
967
+ textColorDisabled: string;
968
+ placeholderColor: string;
969
+ placeholderColorDisabled: string;
970
+ iconColor: string;
971
+ iconColorHover: string;
972
+ iconColorPressed: string;
973
+ iconColorDisabled: string;
974
+ opacity1: string;
975
+ opacity2: string;
976
+ opacity3: string;
977
+ opacity4: string;
978
+ opacity5: string;
979
+ dividerColor: string;
980
+ borderColor: string;
981
+ closeColor: string;
982
+ closeColorHover: string;
983
+ closeColorPressed: string;
984
+ closeColorDisabled: string;
985
+ clearColor: string;
986
+ clearColorHover: string;
987
+ clearColorPressed: string;
988
+ scrollbarColor: string;
989
+ scrollbarColorHover: string;
990
+ scrollbarWidth: string;
991
+ scrollbarHeight: string;
992
+ scrollbarBorderRadius: string;
993
+ progressRailColor: string;
994
+ railColor: string;
995
+ popoverColor: string;
996
+ tableColor: string;
997
+ cardColor: string;
998
+ modalColor: string;
999
+ bodyColor: string;
1000
+ tagColor: string;
1001
+ avatarColor: string;
1002
+ invertedColor: string;
1003
+ inputColor: string;
1004
+ codeColor: string;
1005
+ tabColor: string;
1006
+ actionColor: string;
1007
+ tableHeaderColor: string;
1008
+ hoverColor: string;
1009
+ tableColorHover: string;
1010
+ tableColorStriped: string;
1011
+ pressedColor: string;
1012
+ opacityDisabled: string;
1013
+ inputColorDisabled: string;
1014
+ buttonColor2: string;
1015
+ buttonColor2Hover: string;
1016
+ buttonColor2Pressed: string;
1017
+ boxShadow1: string;
1018
+ boxShadow2: string;
1019
+ boxShadow3: string;
1020
+ fontFamily: string;
1021
+ fontFamilyMono: string;
1022
+ fontWeight: string;
1023
+ fontWeightStrong: string;
1024
+ cubicBezierEaseInOut: string;
1025
+ cubicBezierEaseOut: string;
1026
+ cubicBezierEaseIn: string;
1027
+ borderRadius: string;
1028
+ borderRadiusSmall: string;
1029
+ fontSize: string;
1030
+ fontSizeMini: string;
1031
+ fontSizeTiny: string;
1032
+ fontSizeSmall: string;
1033
+ fontSizeMedium: string;
1034
+ fontSizeLarge: string;
1035
+ fontSizeHuge: string;
1036
+ lineHeight: string;
1037
+ heightMini: string;
1038
+ heightTiny: string;
1039
+ heightSmall: string;
1040
+ heightMedium: string;
1041
+ heightLarge: string;
1042
+ heightHuge: string;
1043
+ name: "common";
1044
+ };
1045
+ self: {
1046
+ labelLineHeight: string;
1047
+ fontSizeSmall: string;
1048
+ fontSizeMedium: string;
1049
+ fontSizeLarge: string;
1050
+ borderRadius: string;
1051
+ color: string;
1052
+ colorChecked: string;
1053
+ colorDisabled: string;
1054
+ colorDisabledChecked: string;
1055
+ colorTableHeader: string;
1056
+ colorTableHeaderModal: string;
1057
+ colorTableHeaderPopover: string;
1058
+ checkMarkColor: string;
1059
+ checkMarkColorDisabled: string;
1060
+ checkMarkColorDisabledChecked: string;
1061
+ border: string;
1062
+ borderDisabled: string;
1063
+ borderDisabledChecked: string;
1064
+ borderChecked: string;
1065
+ borderFocus: string;
1066
+ boxShadowFocus: string;
1067
+ textColor: string;
1068
+ textColorDisabled: string;
1069
+ sizeSmall: string;
1070
+ sizeMedium: string;
1071
+ sizeLarge: string;
1072
+ labelPadding: string;
1073
+ };
1074
+ peers: any;
1075
+ peerOverrides: {
1076
+ [x: string]: any;
1077
+ };
1078
+ }>;
1079
+ labelId: string;
1080
+ handleClick: (e: MouseEvent) => void;
1081
+ handleKeyUp: (e: KeyboardEvent) => void;
1082
+ handleKeyDown: (e: KeyboardEvent) => void;
1083
+ cssVars: import("vue").ComputedRef<{
1084
+ '--n-label-line-height': string;
1085
+ '--n-size': string;
1086
+ '--n-bezier': string;
1087
+ '--n-border-radius': string;
1088
+ '--n-border': string;
1089
+ '--n-border-checked': string;
1090
+ '--n-border-focus': string;
1091
+ '--n-border-disabled': string;
1092
+ '--n-border-disabled-checked': string;
1093
+ '--n-box-shadow-focus': string;
1094
+ '--n-color': string;
1095
+ '--n-color-checked': string;
1096
+ '--n-color-table': string;
1097
+ '--n-color-table-modal': string;
1098
+ '--n-color-table-popover': string;
1099
+ '--n-color-disabled': string;
1100
+ '--n-color-disabled-checked': string;
1101
+ '--n-text-color': string;
1102
+ '--n-text-color-disabled': string;
1103
+ '--n-check-mark-color': string;
1104
+ '--n-check-mark-color-disabled': string;
1105
+ '--n-check-mark-color-disabled-checked': string;
1106
+ '--n-font-size': string;
1107
+ '--n-label-padding': string;
1108
+ }> | undefined;
1109
+ themeClass: import("vue").Ref<string> | undefined;
1110
+ onRender: (() => void) | undefined;
1111
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1112
+ size: import("vue").PropType<"small" | "medium" | "large">;
1113
+ checked: {
1114
+ type: import("vue").PropType<string | number | boolean | undefined>;
1115
+ default: undefined;
1116
+ };
1117
+ defaultChecked: {
1118
+ type: import("vue").PropType<string | number | boolean>;
1119
+ default: boolean;
1120
+ };
1121
+ value: import("vue").PropType<string | number>;
1122
+ disabled: {
1123
+ type: import("vue").PropType<boolean | undefined>;
1124
+ default: undefined;
1125
+ };
1126
+ indeterminate: BooleanConstructor;
1127
+ label: StringConstructor;
1128
+ focusable: {
1129
+ type: BooleanConstructor;
1130
+ default: boolean;
1131
+ };
1132
+ checkedValue: {
1133
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1134
+ default: boolean;
1135
+ };
1136
+ uncheckedValue: {
1137
+ type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1138
+ default: boolean;
1139
+ };
1140
+ 'onUpdate:checked': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1141
+ onUpdateChecked: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1142
+ privateInsideTable: BooleanConstructor;
1143
+ onChange: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1144
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1145
+ labelLineHeight: string;
1146
+ fontSizeSmall: string;
1147
+ fontSizeMedium: string;
1148
+ fontSizeLarge: string;
1149
+ borderRadius: string;
1150
+ color: string;
1151
+ colorChecked: string;
1152
+ colorDisabled: string;
1153
+ colorDisabledChecked: string;
1154
+ colorTableHeader: string;
1155
+ colorTableHeaderModal: string;
1156
+ colorTableHeaderPopover: string;
1157
+ checkMarkColor: string;
1158
+ checkMarkColorDisabled: string;
1159
+ checkMarkColorDisabledChecked: string;
1160
+ border: string;
1161
+ borderDisabled: string;
1162
+ borderDisabledChecked: string;
1163
+ borderChecked: string;
1164
+ borderFocus: string;
1165
+ boxShadowFocus: string;
1166
+ textColor: string;
1167
+ textColorDisabled: string;
1168
+ sizeSmall: string;
1169
+ sizeMedium: string;
1170
+ sizeLarge: string;
1171
+ labelPadding: string;
1172
+ }, any>>;
1173
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1174
+ labelLineHeight: string;
1175
+ fontSizeSmall: string;
1176
+ fontSizeMedium: string;
1177
+ fontSizeLarge: string;
1178
+ borderRadius: string;
1179
+ color: string;
1180
+ colorChecked: string;
1181
+ colorDisabled: string;
1182
+ colorDisabledChecked: string;
1183
+ colorTableHeader: string;
1184
+ colorTableHeaderModal: string;
1185
+ colorTableHeaderPopover: string;
1186
+ checkMarkColor: string;
1187
+ checkMarkColorDisabled: string;
1188
+ checkMarkColorDisabledChecked: string;
1189
+ border: string;
1190
+ borderDisabled: string;
1191
+ borderDisabledChecked: string;
1192
+ borderChecked: string;
1193
+ borderFocus: string;
1194
+ boxShadowFocus: string;
1195
+ textColor: string;
1196
+ textColorDisabled: string;
1197
+ sizeSmall: string;
1198
+ sizeMedium: string;
1199
+ sizeLarge: string;
1200
+ labelPadding: string;
1201
+ }, any>>>;
1202
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1203
+ labelLineHeight: string;
1204
+ fontSizeSmall: string;
1205
+ fontSizeMedium: string;
1206
+ fontSizeLarge: string;
1207
+ borderRadius: string;
1208
+ color: string;
1209
+ colorChecked: string;
1210
+ colorDisabled: string;
1211
+ colorDisabledChecked: string;
1212
+ colorTableHeader: string;
1213
+ colorTableHeaderModal: string;
1214
+ colorTableHeaderPopover: string;
1215
+ checkMarkColor: string;
1216
+ checkMarkColorDisabled: string;
1217
+ checkMarkColorDisabledChecked: string;
1218
+ border: string;
1219
+ borderDisabled: string;
1220
+ borderDisabledChecked: string;
1221
+ borderChecked: string;
1222
+ borderFocus: string;
1223
+ boxShadowFocus: string;
1224
+ textColor: string;
1225
+ textColorDisabled: string;
1226
+ sizeSmall: string;
1227
+ sizeMedium: string;
1228
+ sizeLarge: string;
1229
+ labelPadding: string;
1230
+ }, any>>>;
1231
+ }>>, {
1232
+ disabled: boolean | undefined;
1233
+ checked: string | number | boolean | undefined;
1234
+ focusable: boolean;
1235
+ indeterminate: boolean;
1236
+ defaultChecked: string | number | boolean;
1237
+ checkedValue: string | number | boolean;
1238
+ uncheckedValue: string | number | boolean;
1239
+ privateInsideTable: boolean;
1240
+ }>;
1241
+ NTooltip: import("vue").DefineComponent<{
1242
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1243
+ borderRadius: string;
1244
+ boxShadow: string;
1245
+ color: string;
1246
+ textColor: string;
1247
+ padding: string;
1248
+ }, {
1249
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1250
+ fontSize: string;
1251
+ borderRadius: string;
1252
+ color: string;
1253
+ dividerColor: string;
1254
+ textColor: string;
1255
+ boxShadow: string;
1256
+ space: string;
1257
+ spaceArrow: string;
1258
+ arrowOffset: string;
1259
+ arrowOffsetVertical: string;
1260
+ arrowHeight: string;
1261
+ padding: string;
1262
+ }, any>;
1263
+ }>>;
1264
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1265
+ borderRadius: string;
1266
+ boxShadow: string;
1267
+ color: string;
1268
+ textColor: string;
1269
+ padding: string;
1270
+ }, {
1271
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1272
+ fontSize: string;
1273
+ borderRadius: string;
1274
+ color: string;
1275
+ dividerColor: string;
1276
+ textColor: string;
1277
+ boxShadow: string;
1278
+ space: string;
1279
+ spaceArrow: string;
1280
+ arrowOffset: string;
1281
+ arrowOffsetVertical: string;
1282
+ arrowHeight: string;
1283
+ padding: string;
1284
+ }, any>;
1285
+ }>>>;
1286
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1287
+ borderRadius: string;
1288
+ boxShadow: string;
1289
+ color: string;
1290
+ textColor: string;
1291
+ padding: string;
1292
+ }, {
1293
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1294
+ fontSize: string;
1295
+ borderRadius: string;
1296
+ color: string;
1297
+ dividerColor: string;
1298
+ textColor: string;
1299
+ boxShadow: string;
1300
+ space: string;
1301
+ spaceArrow: string;
1302
+ arrowOffset: string;
1303
+ arrowOffsetVertical: string;
1304
+ arrowHeight: string;
1305
+ padding: string;
1306
+ }, any>;
1307
+ }>>>;
1308
+ show: {
1309
+ type: import("vue").PropType<boolean | undefined>;
1310
+ default: undefined;
1311
+ };
1312
+ defaultShow: BooleanConstructor;
1313
+ showArrow: {
1314
+ type: BooleanConstructor;
1315
+ default: boolean;
1316
+ };
1317
+ trigger: {
1318
+ type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
1319
+ default: string;
1320
+ };
1321
+ delay: {
1322
+ type: NumberConstructor;
1323
+ default: number;
1324
+ };
1325
+ duration: {
1326
+ type: NumberConstructor;
1327
+ default: number;
1328
+ };
1329
+ raw: BooleanConstructor;
1330
+ placement: {
1331
+ type: import("vue").PropType<import("vueuc").FollowerPlacement>;
1332
+ default: string;
1333
+ };
1334
+ x: NumberConstructor;
1335
+ y: NumberConstructor;
1336
+ arrowPointToCenter: BooleanConstructor;
1337
+ disabled: BooleanConstructor;
1338
+ getDisabled: import("vue").PropType<() => boolean>;
1339
+ displayDirective: {
1340
+ type: import("vue").PropType<"show" | "if">;
1341
+ default: string;
1342
+ };
1343
+ arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1344
+ flip: {
1345
+ type: BooleanConstructor;
1346
+ default: boolean;
1347
+ };
1348
+ animated: {
1349
+ type: BooleanConstructor;
1350
+ default: boolean;
1351
+ };
1352
+ width: {
1353
+ type: import("vue").PropType<number | "trigger">;
1354
+ default: undefined;
1355
+ };
1356
+ overlap: BooleanConstructor;
1357
+ keepAliveOnHover: {
1358
+ type: BooleanConstructor;
1359
+ default: boolean;
1360
+ };
1361
+ zIndex: NumberConstructor;
1362
+ to: {
1363
+ type: import("vue").PropType<string | boolean | HTMLElement>;
1364
+ default: undefined;
1365
+ };
1366
+ scrollable: BooleanConstructor;
1367
+ contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1368
+ headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1369
+ onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
1370
+ 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1371
+ onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1372
+ internalSyncTargetWithParent: BooleanConstructor;
1373
+ internalInheritedEventHandlers: {
1374
+ type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
1375
+ default: () => never[];
1376
+ };
1377
+ internalTrapFocus: BooleanConstructor;
1378
+ internalExtraClass: {
1379
+ type: import("vue").PropType<string[]>;
1380
+ default: () => never[];
1381
+ };
1382
+ onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
1383
+ onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
1384
+ arrow: {
1385
+ type: import("vue").PropType<boolean | undefined>;
1386
+ default: undefined;
1387
+ };
1388
+ minWidth: NumberConstructor;
1389
+ maxWidth: NumberConstructor;
1390
+ }, {
1391
+ popoverRef: import("vue").Ref<{
1392
+ syncPosition: () => void;
1393
+ setShow: (value: boolean) => void;
1394
+ } | null>;
1395
+ mergedTheme: import("vue").ComputedRef<{
1396
+ common: {
1397
+ baseColor: string;
1398
+ primaryColor: string;
1399
+ primaryColorHover: string;
1400
+ primaryColorPressed: string;
1401
+ primaryColorSuppl: string;
1402
+ infoColor: string;
1403
+ infoColorHover: string;
1404
+ infoColorPressed: string;
1405
+ infoColorSuppl: string;
1406
+ successColor: string;
1407
+ successColorHover: string;
1408
+ successColorPressed: string;
1409
+ successColorSuppl: string;
1410
+ warningColor: string;
1411
+ warningColorHover: string;
1412
+ warningColorPressed: string;
1413
+ warningColorSuppl: string;
1414
+ errorColor: string;
1415
+ errorColorHover: string;
1416
+ errorColorPressed: string;
1417
+ errorColorSuppl: string;
1418
+ textColorBase: string;
1419
+ textColor1: string;
1420
+ textColor2: string;
1421
+ textColor3: string;
1422
+ textColorDisabled: string;
1423
+ placeholderColor: string;
1424
+ placeholderColorDisabled: string;
1425
+ iconColor: string;
1426
+ iconColorHover: string;
1427
+ iconColorPressed: string;
1428
+ iconColorDisabled: string;
1429
+ opacity1: string;
1430
+ opacity2: string;
1431
+ opacity3: string;
1432
+ opacity4: string;
1433
+ opacity5: string;
1434
+ dividerColor: string;
1435
+ borderColor: string;
1436
+ closeColor: string;
1437
+ closeColorHover: string;
1438
+ closeColorPressed: string;
1439
+ closeColorDisabled: string;
1440
+ clearColor: string;
1441
+ clearColorHover: string;
1442
+ clearColorPressed: string;
1443
+ scrollbarColor: string;
1444
+ scrollbarColorHover: string;
1445
+ scrollbarWidth: string;
1446
+ scrollbarHeight: string;
1447
+ scrollbarBorderRadius: string;
1448
+ progressRailColor: string;
1449
+ railColor: string;
1450
+ popoverColor: string;
1451
+ tableColor: string;
1452
+ cardColor: string;
1453
+ modalColor: string;
1454
+ bodyColor: string;
1455
+ tagColor: string;
1456
+ avatarColor: string;
1457
+ invertedColor: string;
1458
+ inputColor: string;
1459
+ codeColor: string;
1460
+ tabColor: string;
1461
+ actionColor: string;
1462
+ tableHeaderColor: string;
1463
+ hoverColor: string;
1464
+ tableColorHover: string;
1465
+ tableColorStriped: string;
1466
+ pressedColor: string;
1467
+ opacityDisabled: string;
1468
+ inputColorDisabled: string;
1469
+ buttonColor2: string;
1470
+ buttonColor2Hover: string;
1471
+ buttonColor2Pressed: string;
1472
+ boxShadow1: string;
1473
+ boxShadow2: string;
1474
+ boxShadow3: string;
1475
+ fontFamily: string;
1476
+ fontFamilyMono: string;
1477
+ fontWeight: string;
1478
+ fontWeightStrong: string;
1479
+ cubicBezierEaseInOut: string;
1480
+ cubicBezierEaseOut: string;
1481
+ cubicBezierEaseIn: string;
1482
+ borderRadius: string;
1483
+ borderRadiusSmall: string;
1484
+ fontSize: string;
1485
+ fontSizeMini: string;
1486
+ fontSizeTiny: string;
1487
+ fontSizeSmall: string;
1488
+ fontSizeMedium: string;
1489
+ fontSizeLarge: string;
1490
+ fontSizeHuge: string;
1491
+ lineHeight: string;
1492
+ heightMini: string;
1493
+ heightTiny: string;
1494
+ heightSmall: string;
1495
+ heightMedium: string;
1496
+ heightLarge: string;
1497
+ heightHuge: string;
1498
+ name: "common";
1499
+ };
1500
+ self: {
1501
+ borderRadius: string;
1502
+ boxShadow: string;
1503
+ color: string;
1504
+ textColor: string;
1505
+ padding: string;
1506
+ };
1507
+ peers: {
1508
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1509
+ fontSize: string;
1510
+ borderRadius: string;
1511
+ color: string;
1512
+ dividerColor: string;
1513
+ textColor: string;
1514
+ boxShadow: string;
1515
+ space: string;
1516
+ spaceArrow: string;
1517
+ arrowOffset: string;
1518
+ arrowOffsetVertical: string;
1519
+ arrowHeight: string;
1520
+ padding: string;
1521
+ }, any>;
1522
+ };
1523
+ peerOverrides: {
1524
+ Popover?: {
1525
+ peers?: {
1526
+ [x: string]: any;
1527
+ } | undefined;
1528
+ } | undefined;
1529
+ };
1530
+ }>;
1531
+ popoverThemeOverrides: import("vue").ComputedRef<{
1532
+ borderRadius: string;
1533
+ boxShadow: string;
1534
+ color: string;
1535
+ textColor: string;
1536
+ padding: string;
1537
+ }>;
1538
+ syncPosition: () => void;
1539
+ setShow: (value: boolean) => void;
1540
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1541
+ theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1542
+ borderRadius: string;
1543
+ boxShadow: string;
1544
+ color: string;
1545
+ textColor: string;
1546
+ padding: string;
1547
+ }, {
1548
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1549
+ fontSize: string;
1550
+ borderRadius: string;
1551
+ color: string;
1552
+ dividerColor: string;
1553
+ textColor: string;
1554
+ boxShadow: string;
1555
+ space: string;
1556
+ spaceArrow: string;
1557
+ arrowOffset: string;
1558
+ arrowOffsetVertical: string;
1559
+ arrowHeight: string;
1560
+ padding: string;
1561
+ }, any>;
1562
+ }>>;
1563
+ themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1564
+ borderRadius: string;
1565
+ boxShadow: string;
1566
+ color: string;
1567
+ textColor: string;
1568
+ padding: string;
1569
+ }, {
1570
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1571
+ fontSize: string;
1572
+ borderRadius: string;
1573
+ color: string;
1574
+ dividerColor: string;
1575
+ textColor: string;
1576
+ boxShadow: string;
1577
+ space: string;
1578
+ spaceArrow: string;
1579
+ arrowOffset: string;
1580
+ arrowOffsetVertical: string;
1581
+ arrowHeight: string;
1582
+ padding: string;
1583
+ }, any>;
1584
+ }>>>;
1585
+ builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
1586
+ borderRadius: string;
1587
+ boxShadow: string;
1588
+ color: string;
1589
+ textColor: string;
1590
+ padding: string;
1591
+ }, {
1592
+ Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
1593
+ fontSize: string;
1594
+ borderRadius: string;
1595
+ color: string;
1596
+ dividerColor: string;
1597
+ textColor: string;
1598
+ boxShadow: string;
1599
+ space: string;
1600
+ spaceArrow: string;
1601
+ arrowOffset: string;
1602
+ arrowOffsetVertical: string;
1603
+ arrowHeight: string;
1604
+ padding: string;
1605
+ }, any>;
1606
+ }>>>;
1607
+ show: {
1608
+ type: import("vue").PropType<boolean | undefined>;
1609
+ default: undefined;
1610
+ };
1611
+ defaultShow: BooleanConstructor;
1612
+ showArrow: {
1613
+ type: BooleanConstructor;
1614
+ default: boolean;
1615
+ };
1616
+ trigger: {
1617
+ type: import("vue").PropType<import("naive-ui").PopoverTrigger>;
1618
+ default: string;
1619
+ };
1620
+ delay: {
1621
+ type: NumberConstructor;
1622
+ default: number;
1623
+ };
1624
+ duration: {
1625
+ type: NumberConstructor;
1626
+ default: number;
1627
+ };
1628
+ raw: BooleanConstructor;
1629
+ placement: {
1630
+ type: import("vue").PropType<import("vueuc").FollowerPlacement>;
1631
+ default: string;
1632
+ };
1633
+ x: NumberConstructor;
1634
+ y: NumberConstructor;
1635
+ arrowPointToCenter: BooleanConstructor;
1636
+ disabled: BooleanConstructor;
1637
+ getDisabled: import("vue").PropType<() => boolean>;
1638
+ displayDirective: {
1639
+ type: import("vue").PropType<"show" | "if">;
1640
+ default: string;
1641
+ };
1642
+ arrowStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1643
+ flip: {
1644
+ type: BooleanConstructor;
1645
+ default: boolean;
1646
+ };
1647
+ animated: {
1648
+ type: BooleanConstructor;
1649
+ default: boolean;
1650
+ };
1651
+ width: {
1652
+ type: import("vue").PropType<number | "trigger">;
1653
+ default: undefined;
1654
+ };
1655
+ overlap: BooleanConstructor;
1656
+ keepAliveOnHover: {
1657
+ type: BooleanConstructor;
1658
+ default: boolean;
1659
+ };
1660
+ zIndex: NumberConstructor;
1661
+ to: {
1662
+ type: import("vue").PropType<string | boolean | HTMLElement>;
1663
+ default: undefined;
1664
+ };
1665
+ scrollable: BooleanConstructor;
1666
+ contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1667
+ headerStyle: import("vue").PropType<string | import("vue").CSSProperties>;
1668
+ onClickoutside: import("vue").PropType<(e: MouseEvent) => void>;
1669
+ 'onUpdate:show': import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1670
+ onUpdateShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
1671
+ internalSyncTargetWithParent: BooleanConstructor;
1672
+ internalInheritedEventHandlers: {
1673
+ type: import("vue").PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
1674
+ default: () => never[];
1675
+ };
1676
+ internalTrapFocus: BooleanConstructor;
1677
+ internalExtraClass: {
1678
+ type: import("vue").PropType<string[]>;
1679
+ default: () => never[];
1680
+ };
1681
+ onShow: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
1682
+ onHide: import("vue").PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
1683
+ arrow: {
1684
+ type: import("vue").PropType<boolean | undefined>;
1685
+ default: undefined;
1686
+ };
1687
+ minWidth: NumberConstructor;
1688
+ maxWidth: NumberConstructor;
1689
+ }>>, {
1690
+ show: boolean | undefined;
1691
+ flip: boolean;
1692
+ width: number | "trigger";
1693
+ disabled: boolean;
1694
+ duration: number;
1695
+ to: string | boolean | HTMLElement;
1696
+ raw: boolean;
1697
+ placement: import("vueuc").FollowerPlacement;
1698
+ overlap: boolean;
1699
+ scrollable: boolean;
1700
+ trigger: import("naive-ui").PopoverTrigger;
1701
+ showArrow: boolean;
1702
+ delay: number;
1703
+ arrowPointToCenter: boolean;
1704
+ displayDirective: "show" | "if";
1705
+ keepAliveOnHover: boolean;
1706
+ animated: boolean;
1707
+ internalTrapFocus: boolean;
1708
+ defaultShow: boolean;
1709
+ internalSyncTargetWithParent: boolean;
1710
+ internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
1711
+ internalExtraClass: string[];
1712
+ arrow: boolean | undefined;
1713
+ }>;
1714
+ NIcon: import("vue").DefineComponent<{
1715
+ readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
1716
+ readonly size: import("vue").PropType<string | number>;
1717
+ readonly color: StringConstructor;
1718
+ readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
1719
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
1720
+ color: string;
1721
+ opacity1Depth: string;
1722
+ opacity2Depth: string;
1723
+ opacity3Depth: string;
1724
+ opacity4Depth: string;
1725
+ opacity5Depth: string;
1726
+ }, any>>;
1727
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1728
+ color: string;
1729
+ opacity1Depth: string;
1730
+ opacity2Depth: string;
1731
+ opacity3Depth: string;
1732
+ opacity4Depth: string;
1733
+ opacity5Depth: string;
1734
+ }, any>>>;
1735
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1736
+ color: string;
1737
+ opacity1Depth: string;
1738
+ opacity2Depth: string;
1739
+ opacity3Depth: string;
1740
+ opacity4Depth: string;
1741
+ opacity5Depth: string;
1742
+ }, any>>>;
1743
+ }, {
1744
+ mergedClsPrefix: import("vue").ComputedRef<string>;
1745
+ mergedStyle: import("vue").ComputedRef<{
1746
+ fontSize: string | undefined;
1747
+ color: string | undefined;
1748
+ }>;
1749
+ cssVars: import("vue").ComputedRef<{
1750
+ '--n-bezier': string;
1751
+ '--n-color': string;
1752
+ '--n-opacity': string;
1753
+ }> | undefined;
1754
+ themeClass: import("vue").Ref<string> | undefined;
1755
+ onRender: (() => void) | undefined;
1756
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1757
+ readonly depth: import("vue").PropType<import("naive-ui/es/icon/src/Icon").Depth>;
1758
+ readonly size: import("vue").PropType<string | number>;
1759
+ readonly color: StringConstructor;
1760
+ readonly component: import("vue").PropType<import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>>;
1761
+ readonly theme: import("vue").PropType<import("naive-ui/es/_mixins").Theme<"Icon", {
1762
+ color: string;
1763
+ opacity1Depth: string;
1764
+ opacity2Depth: string;
1765
+ opacity3Depth: string;
1766
+ opacity4Depth: string;
1767
+ opacity5Depth: string;
1768
+ }, any>>;
1769
+ readonly themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1770
+ color: string;
1771
+ opacity1Depth: string;
1772
+ opacity2Depth: string;
1773
+ opacity3Depth: string;
1774
+ opacity4Depth: string;
1775
+ opacity5Depth: string;
1776
+ }, any>>>;
1777
+ readonly builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Icon", {
1778
+ color: string;
1779
+ opacity1Depth: string;
1780
+ opacity2Depth: string;
1781
+ opacity3Depth: string;
1782
+ opacity4Depth: string;
1783
+ opacity5Depth: string;
1784
+ }, any>>>;
1785
+ }>>, {}>;
1786
+ CGrid: SFCWithInstall<import("vue").DefineComponent<{}, any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
1787
+ checkMethod: ({ row }: {
1788
+ row: any;
1789
+ }) => boolean;
1790
+ getRowStyle: ({ row }: any) => string | null;
1791
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, string[], string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1792
+ data: {
1793
+ type: ArrayConstructor;
1794
+ default: () => never[];
1795
+ };
1796
+ maxCheckSize: {
1797
+ type: NumberConstructor;
1798
+ default: number;
1799
+ };
1800
+ showFooter: BooleanConstructor;
1801
+ sumData: {
1802
+ type: ObjectConstructor;
1803
+ default: () => {};
1804
+ };
1805
+ avgData: {
1806
+ type: ObjectConstructor;
1807
+ default: () => {};
1808
+ };
1809
+ columnConfig: {
1810
+ type: ObjectConstructor;
1811
+ default: () => {};
1812
+ };
1813
+ refreshRow: {
1814
+ type: NumberConstructor;
1815
+ default: number;
1816
+ };
1817
+ relatedItems: {
1818
+ type: ObjectConstructor;
1819
+ default: () => {
1820
+ triggerMethodPc: string;
1821
+ triggerMethodField: string;
1822
+ };
1823
+ };
1824
+ pageVO: {
1825
+ type: ObjectConstructor;
1826
+ default: () => {
1827
+ pageIndex: number;
1828
+ pageSize: number;
1829
+ total: number;
1830
+ };
1831
+ };
1832
+ tableOptions: {
1833
+ type: ObjectConstructor;
1834
+ default: () => {};
1835
+ };
1836
+ quickSearchConfig: {
1837
+ type: ArrayConstructor;
1838
+ default: () => never[];
1839
+ };
1840
+ primaryKey: {
1841
+ type: StringConstructor;
1842
+ default: string;
1843
+ };
1844
+ tableDataCache: {
1845
+ type: ArrayConstructor;
1846
+ default: () => never[];
1847
+ };
1848
+ oldtableData: {
1849
+ type: ArrayConstructor;
1850
+ default: () => never[];
1851
+ };
1852
+ tableName: StringConstructor;
1853
+ fieldListOriginal: {
1854
+ type: ArrayConstructor;
1855
+ default: () => never[];
1856
+ };
1857
+ tableParams: {
1858
+ type: ObjectConstructor;
1859
+ default: () => {};
1860
+ };
1861
+ emptyItems: {
1862
+ type: ObjectConstructor;
1863
+ default: () => {
1864
+ noDataImg: string;
1865
+ noDataTip: string;
1866
+ };
1867
+ };
1868
+ styleSetting: {
1869
+ type: ObjectConstructor;
1870
+ default: () => {};
1871
+ };
1872
+ sysImageSize: {
1873
+ type: ArrayConstructor;
1874
+ default: () => never[];
1875
+ };
1876
+ height: StringConstructor;
1877
+ groupCountFields: {
1878
+ type: ArrayConstructor;
1879
+ default: () => never[];
1880
+ };
1881
+ groupCountMap: {
1882
+ type: ObjectConstructor;
1883
+ default: () => {};
1884
+ };
1885
+ listFormUnionSetting: {
1886
+ type: ObjectConstructor;
1887
+ default: () => {};
1888
+ };
1889
+ inlineEditFormConfig: {
1890
+ type: ObjectConstructor;
1891
+ default: () => {};
1892
+ };
1893
+ clickRowData: {
1894
+ type: ObjectConstructor;
1895
+ default: () => {};
1896
+ };
1897
+ btnList: {
1898
+ type: ArrayConstructor;
1899
+ default: () => never[];
1900
+ };
1901
+ spinning: BooleanConstructor;
1902
+ rowGroupSetting: {
1903
+ type: ObjectConstructor;
1904
+ default: () => {};
1905
+ };
1906
+ inlineEditFormSubmitDone: BooleanConstructor;
1907
+ isInlineOperating: {
1908
+ type: BooleanConstructor;
1909
+ default: boolean;
1910
+ };
1911
+ inlineEditCurrentOperateBtnId: StringConstructor;
1912
+ tableRefreshCache: {
1913
+ type: ObjectConstructor;
1914
+ default: () => {};
1915
+ };
1916
+ userInfo: {
1917
+ type: ObjectConstructor;
1918
+ default: () => {};
1919
+ };
1920
+ isInlineEditing: BooleanConstructor;
1921
+ isInlineAdding: BooleanConstructor;
1922
+ isInlineSave: BooleanConstructor;
1923
+ isInlineCancel: BooleanConstructor;
1924
+ inlineError: BooleanConstructor;
1925
+ resetInlineEdit: FunctionConstructor;
1926
+ resetEditRowStatus: FunctionConstructor;
1927
+ pageIndexOldtableData: {
1928
+ type: ArrayConstructor;
1929
+ default: () => never[];
1930
+ };
1931
+ submitForm: FunctionConstructor;
1932
+ isMatchComponent: BooleanConstructor;
1933
+ asyncCount: BooleanConstructor;
1934
+ showSettings: {
1935
+ type: ObjectConstructor;
1936
+ default: () => {};
1937
+ };
1938
+ inlineFormData: {
1939
+ type: ObjectConstructor;
1940
+ default: () => {};
1941
+ };
1942
+ inlineOriginalTableRow: {
1943
+ type: ObjectConstructor;
1944
+ default: () => {};
1945
+ };
1946
+ filterDomPortal: {
1947
+ type: StringConstructor;
1948
+ default: string;
1949
+ };
1950
+ filterTopOffset: {
1951
+ type: NumberConstructor;
1952
+ default: number;
1953
+ };
1954
+ isNestTable: {
1955
+ type: BooleanConstructor;
1956
+ default: boolean;
1957
+ };
1958
+ showNestTable: BooleanConstructor;
1959
+ curNestColumnConfig: {
1960
+ type: ObjectConstructor;
1961
+ default: () => {};
1962
+ };
1963
+ nestTableDataRequest: FunctionConstructor;
1964
+ isBatchEditing: BooleanConstructor;
1965
+ isEditAllRow: BooleanConstructor;
1966
+ isBatchSave: BooleanConstructor;
1967
+ isBatchCancel: BooleanConstructor;
1968
+ batchDynamicPropsCache: {
1969
+ type: ObjectConstructor;
1970
+ default: () => {};
1971
+ };
1972
+ batchEditDoneNumber: {
1973
+ type: ObjectConstructor;
1974
+ default: () => {};
1975
+ };
1976
+ batchError: BooleanConstructor;
1977
+ batchFormData: {
1978
+ type: ObjectConstructor;
1979
+ default: () => {};
1980
+ };
1981
+ resetInlineBatchEdit: FunctionConstructor;
1982
+ resetBatchEditRowStatus: FunctionConstructor;
1983
+ }>> & {
1984
+ [x: `on${string}`]: ((...args: any[]) => any) | undefined;
1985
+ }, {
1986
+ data: unknown[];
1987
+ showFooter: boolean;
1988
+ columnConfig: Record<string, any>;
1989
+ maxCheckSize: number;
1990
+ sumData: Record<string, any>;
1991
+ avgData: Record<string, any>;
1992
+ refreshRow: number;
1993
+ relatedItems: Record<string, any>;
1994
+ pageVO: Record<string, any>;
1995
+ tableOptions: Record<string, any>;
1996
+ quickSearchConfig: unknown[];
1997
+ primaryKey: string;
1998
+ tableDataCache: unknown[];
1999
+ oldtableData: unknown[];
2000
+ fieldListOriginal: unknown[];
2001
+ tableParams: Record<string, any>;
2002
+ emptyItems: Record<string, any>;
2003
+ styleSetting: Record<string, any>;
2004
+ sysImageSize: unknown[];
2005
+ groupCountFields: unknown[];
2006
+ groupCountMap: Record<string, any>;
2007
+ listFormUnionSetting: Record<string, any>;
2008
+ inlineEditFormConfig: Record<string, any>;
2009
+ clickRowData: Record<string, any>;
2010
+ btnList: unknown[];
2011
+ spinning: boolean;
2012
+ rowGroupSetting: Record<string, any>;
2013
+ inlineEditFormSubmitDone: boolean;
2014
+ isInlineOperating: boolean;
2015
+ tableRefreshCache: Record<string, any>;
2016
+ userInfo: Record<string, any>;
2017
+ isInlineEditing: boolean;
2018
+ isInlineAdding: boolean;
2019
+ isInlineSave: boolean;
2020
+ isInlineCancel: boolean;
2021
+ inlineError: boolean;
2022
+ pageIndexOldtableData: unknown[];
2023
+ isMatchComponent: boolean;
2024
+ asyncCount: boolean;
2025
+ showSettings: Record<string, any>;
2026
+ inlineFormData: Record<string, any>;
2027
+ inlineOriginalTableRow: Record<string, any>;
2028
+ filterDomPortal: string;
2029
+ filterTopOffset: number;
2030
+ isNestTable: boolean;
2031
+ showNestTable: boolean;
2032
+ curNestColumnConfig: Record<string, any>;
2033
+ isBatchEditing: boolean;
2034
+ isEditAllRow: boolean;
2035
+ isBatchSave: boolean;
2036
+ isBatchCancel: boolean;
2037
+ batchDynamicPropsCache: Record<string, any>;
2038
+ batchEditDoneNumber: Record<string, any>;
2039
+ batchError: boolean;
2040
+ batchFormData: Record<string, any>;
2041
+ }>>;
2042
+ export default BigTable;