cc1-form 1.4.3 → 1.4.4

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.
@@ -107,6 +107,7 @@ declare const conf: {
107
107
  change?: boolean | undefined;
108
108
  confirm?: boolean | undefined;
109
109
  loadList?: boolean | undefined;
110
+ needTip?: boolean | undefined;
110
111
  api?: ((data: any, type: "switch") => any) | undefined;
111
112
  } | undefined;
112
113
  } | undefined;
@@ -195,6 +196,7 @@ declare const conf: {
195
196
  change?: boolean | undefined;
196
197
  confirm?: boolean | undefined;
197
198
  loadList?: boolean | undefined;
199
+ needTip?: boolean | undefined;
198
200
  api?: ((data: any, type: "switch") => any) | undefined;
199
201
  } | undefined;
200
202
  } | undefined;
@@ -283,6 +285,7 @@ declare const conf: {
283
285
  change?: boolean | undefined;
284
286
  confirm?: boolean | undefined;
285
287
  loadList?: boolean | undefined;
288
+ needTip?: boolean | undefined;
286
289
  api?: ((data: any, type: "switch") => any) | undefined;
287
290
  } | undefined;
288
291
  } | undefined;
@@ -355,6 +358,7 @@ declare const conf: {
355
358
  change?: boolean | undefined;
356
359
  confirm?: boolean | undefined;
357
360
  loadList?: boolean | undefined;
361
+ needTip?: boolean | undefined;
358
362
  api?: ((data: any, type: "switch") => any) | undefined;
359
363
  } | undefined;
360
364
  } | undefined;
@@ -535,6 +539,7 @@ declare const conf: {
535
539
  change?: boolean | undefined;
536
540
  confirm?: boolean | undefined;
537
541
  loadList?: boolean | undefined;
542
+ needTip?: boolean | undefined;
538
543
  api?: ((data: any, type: "switch") => any) | undefined;
539
544
  } | undefined;
540
545
  } | undefined;
@@ -623,6 +628,7 @@ declare const conf: {
623
628
  change?: boolean | undefined;
624
629
  confirm?: boolean | undefined;
625
630
  loadList?: boolean | undefined;
631
+ needTip?: boolean | undefined;
626
632
  api?: ((data: any, type: "switch") => any) | undefined;
627
633
  } | undefined;
628
634
  } | undefined;
@@ -711,6 +717,7 @@ declare const conf: {
711
717
  change?: boolean | undefined;
712
718
  confirm?: boolean | undefined;
713
719
  loadList?: boolean | undefined;
720
+ needTip?: boolean | undefined;
714
721
  api?: ((data: any, type: "switch") => any) | undefined;
715
722
  } | undefined;
716
723
  } | undefined;
@@ -783,6 +790,7 @@ declare const conf: {
783
790
  change?: boolean | undefined;
784
791
  confirm?: boolean | undefined;
785
792
  loadList?: boolean | undefined;
793
+ needTip?: boolean | undefined;
786
794
  api?: ((data: any, type: "switch") => any) | undefined;
787
795
  } | undefined;
788
796
  } | undefined;
@@ -1018,6 +1026,7 @@ declare const conf: {
1018
1026
  change?: boolean | undefined;
1019
1027
  confirm?: boolean | undefined;
1020
1028
  loadList?: boolean | undefined;
1029
+ needTip?: boolean | undefined;
1021
1030
  api?: ((data: any, type: "switch") => any) | undefined;
1022
1031
  } | undefined;
1023
1032
  } | undefined;
@@ -1106,6 +1115,7 @@ declare const conf: {
1106
1115
  change?: boolean | undefined;
1107
1116
  confirm?: boolean | undefined;
1108
1117
  loadList?: boolean | undefined;
1118
+ needTip?: boolean | undefined;
1109
1119
  api?: ((data: any, type: "switch") => any) | undefined;
1110
1120
  } | undefined;
1111
1121
  } | undefined;
@@ -1194,6 +1204,7 @@ declare const conf: {
1194
1204
  change?: boolean | undefined;
1195
1205
  confirm?: boolean | undefined;
1196
1206
  loadList?: boolean | undefined;
1207
+ needTip?: boolean | undefined;
1197
1208
  api?: ((data: any, type: "switch") => any) | undefined;
1198
1209
  } | undefined;
1199
1210
  } | undefined;
@@ -1266,6 +1277,7 @@ declare const conf: {
1266
1277
  change?: boolean | undefined;
1267
1278
  confirm?: boolean | undefined;
1268
1279
  loadList?: boolean | undefined;
1280
+ needTip?: boolean | undefined;
1269
1281
  api?: ((data: any, type: "switch") => any) | undefined;
1270
1282
  } | undefined;
1271
1283
  } | undefined;
@@ -1405,6 +1417,7 @@ declare const conf: {
1405
1417
  page: boolean;
1406
1418
  scroll: boolean;
1407
1419
  field: string;
1420
+ order: "asc" | "desc";
1408
1421
  onEnd: (data: any[]) => any;
1409
1422
  rule: "index" | "value";
1410
1423
  api: Partial<{
@@ -1441,6 +1454,7 @@ declare const conf: {
1441
1454
  page: boolean;
1442
1455
  scroll: boolean;
1443
1456
  field: string;
1457
+ order: "asc" | "desc";
1444
1458
  onEnd: (data: any[]) => any;
1445
1459
  rule: "index" | "value";
1446
1460
  api: Partial<{
@@ -1478,14 +1492,13 @@ declare const conf: {
1478
1492
  destroy: () => void;
1479
1493
  getBody: () => HTMLElement | null;
1480
1494
  loadModule: () => Promise<any>;
1481
- applyRule: (data: any[], field: string, rule: "index" | "value", values: any[]) => void;
1495
+ applyRule: (data: any[], field: string, rule: "index" | "value", values: any[], order?: "asc" | "desc") => void;
1482
1496
  sync: () => Promise<void>;
1483
1497
  refreshList: () => Promise<void>;
1484
1498
  fitHeight: boolean;
1485
1499
  start: () => Promise<void>;
1486
1500
  exit: () => Promise<void>;
1487
1501
  save: () => Promise<void>;
1488
- command: (command: "save" | "exit") => Promise<void>;
1489
1502
  };
1490
1503
  header: {
1491
1504
  group: {
@@ -1594,6 +1607,7 @@ declare const conf: {
1594
1607
  change?: boolean | undefined;
1595
1608
  confirm?: boolean | undefined;
1596
1609
  loadList?: boolean | undefined;
1610
+ needTip?: boolean | undefined;
1597
1611
  api?: ((data: any, type: "switch") => any) | undefined;
1598
1612
  } | undefined;
1599
1613
  } | undefined;
@@ -1682,6 +1696,7 @@ declare const conf: {
1682
1696
  change?: boolean | undefined;
1683
1697
  confirm?: boolean | undefined;
1684
1698
  loadList?: boolean | undefined;
1699
+ needTip?: boolean | undefined;
1685
1700
  api?: ((data: any, type: "switch") => any) | undefined;
1686
1701
  } | undefined;
1687
1702
  } | undefined;
@@ -1770,6 +1785,7 @@ declare const conf: {
1770
1785
  change?: boolean | undefined;
1771
1786
  confirm?: boolean | undefined;
1772
1787
  loadList?: boolean | undefined;
1788
+ needTip?: boolean | undefined;
1773
1789
  api?: ((data: any, type: "switch") => any) | undefined;
1774
1790
  } | undefined;
1775
1791
  } | undefined;
@@ -1842,6 +1858,7 @@ declare const conf: {
1842
1858
  change?: boolean | undefined;
1843
1859
  confirm?: boolean | undefined;
1844
1860
  loadList?: boolean | undefined;
1861
+ needTip?: boolean | undefined;
1845
1862
  api?: ((data: any, type: "switch") => any) | undefined;
1846
1863
  } | undefined;
1847
1864
  } | undefined;
@@ -2019,6 +2036,7 @@ declare const conf: {
2019
2036
  page?: boolean | undefined;
2020
2037
  scroll?: boolean | undefined;
2021
2038
  field?: string | undefined;
2039
+ order?: "asc" | "desc" | undefined;
2022
2040
  onEnd?: ((data: any[]) => any) | undefined;
2023
2041
  rule?: "index" | "value" | undefined;
2024
2042
  api?: {
@@ -2093,6 +2111,7 @@ declare const conf: {
2093
2111
  change?: boolean | undefined;
2094
2112
  confirm?: boolean | undefined;
2095
2113
  loadList?: boolean | undefined;
2114
+ needTip?: boolean | undefined;
2096
2115
  api?: ((data: any, type: "switch") => any) | undefined;
2097
2116
  } | undefined;
2098
2117
  } | undefined;
@@ -2181,6 +2200,7 @@ declare const conf: {
2181
2200
  change?: boolean | undefined;
2182
2201
  confirm?: boolean | undefined;
2183
2202
  loadList?: boolean | undefined;
2203
+ needTip?: boolean | undefined;
2184
2204
  api?: ((data: any, type: "switch") => any) | undefined;
2185
2205
  } | undefined;
2186
2206
  } | undefined;
@@ -2269,6 +2289,7 @@ declare const conf: {
2269
2289
  change?: boolean | undefined;
2270
2290
  confirm?: boolean | undefined;
2271
2291
  loadList?: boolean | undefined;
2292
+ needTip?: boolean | undefined;
2272
2293
  api?: ((data: any, type: "switch") => any) | undefined;
2273
2294
  } | undefined;
2274
2295
  } | undefined;
@@ -2341,6 +2362,7 @@ declare const conf: {
2341
2362
  change?: boolean | undefined;
2342
2363
  confirm?: boolean | undefined;
2343
2364
  loadList?: boolean | undefined;
2365
+ needTip?: boolean | undefined;
2344
2366
  api?: ((data: any, type: "switch") => any) | undefined;
2345
2367
  } | undefined;
2346
2368
  } | undefined;
@@ -2572,6 +2594,7 @@ declare const conf: {
2572
2594
  change?: boolean | undefined;
2573
2595
  confirm?: boolean | undefined;
2574
2596
  loadList?: boolean | undefined;
2597
+ needTip?: boolean | undefined;
2575
2598
  api?: ((data: any, type: "switch") => any) | undefined;
2576
2599
  } | undefined;
2577
2600
  } | undefined;
@@ -2660,6 +2683,7 @@ declare const conf: {
2660
2683
  change?: boolean | undefined;
2661
2684
  confirm?: boolean | undefined;
2662
2685
  loadList?: boolean | undefined;
2686
+ needTip?: boolean | undefined;
2663
2687
  api?: ((data: any, type: "switch") => any) | undefined;
2664
2688
  } | undefined;
2665
2689
  } | undefined;
@@ -2748,6 +2772,7 @@ declare const conf: {
2748
2772
  change?: boolean | undefined;
2749
2773
  confirm?: boolean | undefined;
2750
2774
  loadList?: boolean | undefined;
2775
+ needTip?: boolean | undefined;
2751
2776
  api?: ((data: any, type: "switch") => any) | undefined;
2752
2777
  } | undefined;
2753
2778
  } | undefined;
@@ -2820,6 +2845,7 @@ declare const conf: {
2820
2845
  change?: boolean | undefined;
2821
2846
  confirm?: boolean | undefined;
2822
2847
  loadList?: boolean | undefined;
2848
+ needTip?: boolean | undefined;
2823
2849
  api?: ((data: any, type: "switch") => any) | undefined;
2824
2850
  } | undefined;
2825
2851
  } | undefined;
@@ -2968,13 +2994,13 @@ declare var __VLS_1: {}, __VLS_7: {
2968
2994
  row: Record<string, any>;
2969
2995
  }, __VLS_61: {
2970
2996
  row: Record<string, any>;
2971
- }, __VLS_123: {}, __VLS_125: {}, __VLS_213: {}, __VLS_226: string | number, __VLS_227: any, __VLS_233: {}, __VLS_239: {
2997
+ }, __VLS_123: {}, __VLS_125: {}, __VLS_205: {}, __VLS_218: string | number, __VLS_219: any, __VLS_225: {}, __VLS_231: {
2972
2998
  row: any;
2973
- }, __VLS_257: {
2999
+ }, __VLS_249: {
2974
3000
  row: any;
2975
- }, __VLS_291: {
3001
+ }, __VLS_283: {
2976
3002
  row: any;
2977
- }, __VLS_302: {}, __VLS_308: {
3003
+ }, __VLS_294: {}, __VLS_300: {
2978
3004
  row: {
2979
3005
  title: string;
2980
3006
  rules: any;
@@ -3047,6 +3073,7 @@ declare var __VLS_1: {}, __VLS_7: {
3047
3073
  change?: boolean | undefined;
3048
3074
  confirm?: boolean | undefined;
3049
3075
  loadList?: boolean | undefined;
3076
+ needTip?: boolean | undefined;
3050
3077
  api?: ((data: any, type: "switch") => any) | undefined;
3051
3078
  } | undefined;
3052
3079
  } | undefined;
@@ -3135,6 +3162,7 @@ declare var __VLS_1: {}, __VLS_7: {
3135
3162
  change?: boolean | undefined;
3136
3163
  confirm?: boolean | undefined;
3137
3164
  loadList?: boolean | undefined;
3165
+ needTip?: boolean | undefined;
3138
3166
  api?: ((data: any, type: "switch") => any) | undefined;
3139
3167
  } | undefined;
3140
3168
  } | undefined;
@@ -3223,6 +3251,7 @@ declare var __VLS_1: {}, __VLS_7: {
3223
3251
  change?: boolean | undefined;
3224
3252
  confirm?: boolean | undefined;
3225
3253
  loadList?: boolean | undefined;
3254
+ needTip?: boolean | undefined;
3226
3255
  api?: ((data: any, type: "switch") => any) | undefined;
3227
3256
  } | undefined;
3228
3257
  } | undefined;
@@ -3295,6 +3324,7 @@ declare var __VLS_1: {}, __VLS_7: {
3295
3324
  change?: boolean | undefined;
3296
3325
  confirm?: boolean | undefined;
3297
3326
  loadList?: boolean | undefined;
3327
+ needTip?: boolean | undefined;
3298
3328
  api?: ((data: any, type: "switch") => any) | undefined;
3299
3329
  } | undefined;
3300
3330
  } | undefined;
@@ -3475,6 +3505,7 @@ declare var __VLS_1: {}, __VLS_7: {
3475
3505
  change?: boolean | undefined;
3476
3506
  confirm?: boolean | undefined;
3477
3507
  loadList?: boolean | undefined;
3508
+ needTip?: boolean | undefined;
3478
3509
  api?: ((data: any, type: "switch") => any) | undefined;
3479
3510
  } | undefined;
3480
3511
  } | undefined;
@@ -3563,6 +3594,7 @@ declare var __VLS_1: {}, __VLS_7: {
3563
3594
  change?: boolean | undefined;
3564
3595
  confirm?: boolean | undefined;
3565
3596
  loadList?: boolean | undefined;
3597
+ needTip?: boolean | undefined;
3566
3598
  api?: ((data: any, type: "switch") => any) | undefined;
3567
3599
  } | undefined;
3568
3600
  } | undefined;
@@ -3651,6 +3683,7 @@ declare var __VLS_1: {}, __VLS_7: {
3651
3683
  change?: boolean | undefined;
3652
3684
  confirm?: boolean | undefined;
3653
3685
  loadList?: boolean | undefined;
3686
+ needTip?: boolean | undefined;
3654
3687
  api?: ((data: any, type: "switch") => any) | undefined;
3655
3688
  } | undefined;
3656
3689
  } | undefined;
@@ -3723,6 +3756,7 @@ declare var __VLS_1: {}, __VLS_7: {
3723
3756
  change?: boolean | undefined;
3724
3757
  confirm?: boolean | undefined;
3725
3758
  loadList?: boolean | undefined;
3759
+ needTip?: boolean | undefined;
3726
3760
  api?: ((data: any, type: "switch") => any) | undefined;
3727
3761
  } | undefined;
3728
3762
  } | undefined;
@@ -3866,10 +3900,10 @@ declare var __VLS_1: {}, __VLS_7: {
3866
3900
  submit: () => Promise<void>;
3867
3901
  close: () => void;
3868
3902
  };
3869
- }, __VLS_320: string | number, __VLS_321: {
3903
+ }, __VLS_312: string | number, __VLS_313: {
3870
3904
  row: Record<string, any>;
3871
3905
  item: import("./indexType").CurdConfigColumn<any>;
3872
- }, __VLS_323: {
3906
+ }, __VLS_315: {
3873
3907
  row: {
3874
3908
  title: string;
3875
3909
  rules: any;
@@ -3942,6 +3976,7 @@ declare var __VLS_1: {}, __VLS_7: {
3942
3976
  change?: boolean | undefined;
3943
3977
  confirm?: boolean | undefined;
3944
3978
  loadList?: boolean | undefined;
3979
+ needTip?: boolean | undefined;
3945
3980
  api?: ((data: any, type: "switch") => any) | undefined;
3946
3981
  } | undefined;
3947
3982
  } | undefined;
@@ -4030,6 +4065,7 @@ declare var __VLS_1: {}, __VLS_7: {
4030
4065
  change?: boolean | undefined;
4031
4066
  confirm?: boolean | undefined;
4032
4067
  loadList?: boolean | undefined;
4068
+ needTip?: boolean | undefined;
4033
4069
  api?: ((data: any, type: "switch") => any) | undefined;
4034
4070
  } | undefined;
4035
4071
  } | undefined;
@@ -4118,6 +4154,7 @@ declare var __VLS_1: {}, __VLS_7: {
4118
4154
  change?: boolean | undefined;
4119
4155
  confirm?: boolean | undefined;
4120
4156
  loadList?: boolean | undefined;
4157
+ needTip?: boolean | undefined;
4121
4158
  api?: ((data: any, type: "switch") => any) | undefined;
4122
4159
  } | undefined;
4123
4160
  } | undefined;
@@ -4190,6 +4227,7 @@ declare var __VLS_1: {}, __VLS_7: {
4190
4227
  change?: boolean | undefined;
4191
4228
  confirm?: boolean | undefined;
4192
4229
  loadList?: boolean | undefined;
4230
+ needTip?: boolean | undefined;
4193
4231
  api?: ((data: any, type: "switch") => any) | undefined;
4194
4232
  } | undefined;
4195
4233
  } | undefined;
@@ -4370,6 +4408,7 @@ declare var __VLS_1: {}, __VLS_7: {
4370
4408
  change?: boolean | undefined;
4371
4409
  confirm?: boolean | undefined;
4372
4410
  loadList?: boolean | undefined;
4411
+ needTip?: boolean | undefined;
4373
4412
  api?: ((data: any, type: "switch") => any) | undefined;
4374
4413
  } | undefined;
4375
4414
  } | undefined;
@@ -4458,6 +4497,7 @@ declare var __VLS_1: {}, __VLS_7: {
4458
4497
  change?: boolean | undefined;
4459
4498
  confirm?: boolean | undefined;
4460
4499
  loadList?: boolean | undefined;
4500
+ needTip?: boolean | undefined;
4461
4501
  api?: ((data: any, type: "switch") => any) | undefined;
4462
4502
  } | undefined;
4463
4503
  } | undefined;
@@ -4546,6 +4586,7 @@ declare var __VLS_1: {}, __VLS_7: {
4546
4586
  change?: boolean | undefined;
4547
4587
  confirm?: boolean | undefined;
4548
4588
  loadList?: boolean | undefined;
4589
+ needTip?: boolean | undefined;
4549
4590
  api?: ((data: any, type: "switch") => any) | undefined;
4550
4591
  } | undefined;
4551
4592
  } | undefined;
@@ -4618,6 +4659,7 @@ declare var __VLS_1: {}, __VLS_7: {
4618
4659
  change?: boolean | undefined;
4619
4660
  confirm?: boolean | undefined;
4620
4661
  loadList?: boolean | undefined;
4662
+ needTip?: boolean | undefined;
4621
4663
  api?: ((data: any, type: "switch") => any) | undefined;
4622
4664
  } | undefined;
4623
4665
  } | undefined;
@@ -4761,7 +4803,7 @@ declare var __VLS_1: {}, __VLS_7: {
4761
4803
  submit: () => Promise<void>;
4762
4804
  close: () => void;
4763
4805
  };
4764
- }, __VLS_329: {
4806
+ }, __VLS_321: {
4765
4807
  row: {
4766
4808
  title: string;
4767
4809
  rules: any;
@@ -4834,6 +4876,7 @@ declare var __VLS_1: {}, __VLS_7: {
4834
4876
  change?: boolean | undefined;
4835
4877
  confirm?: boolean | undefined;
4836
4878
  loadList?: boolean | undefined;
4879
+ needTip?: boolean | undefined;
4837
4880
  api?: ((data: any, type: "switch") => any) | undefined;
4838
4881
  } | undefined;
4839
4882
  } | undefined;
@@ -4922,6 +4965,7 @@ declare var __VLS_1: {}, __VLS_7: {
4922
4965
  change?: boolean | undefined;
4923
4966
  confirm?: boolean | undefined;
4924
4967
  loadList?: boolean | undefined;
4968
+ needTip?: boolean | undefined;
4925
4969
  api?: ((data: any, type: "switch") => any) | undefined;
4926
4970
  } | undefined;
4927
4971
  } | undefined;
@@ -5010,6 +5054,7 @@ declare var __VLS_1: {}, __VLS_7: {
5010
5054
  change?: boolean | undefined;
5011
5055
  confirm?: boolean | undefined;
5012
5056
  loadList?: boolean | undefined;
5057
+ needTip?: boolean | undefined;
5013
5058
  api?: ((data: any, type: "switch") => any) | undefined;
5014
5059
  } | undefined;
5015
5060
  } | undefined;
@@ -5082,6 +5127,7 @@ declare var __VLS_1: {}, __VLS_7: {
5082
5127
  change?: boolean | undefined;
5083
5128
  confirm?: boolean | undefined;
5084
5129
  loadList?: boolean | undefined;
5130
+ needTip?: boolean | undefined;
5085
5131
  api?: ((data: any, type: "switch") => any) | undefined;
5086
5132
  } | undefined;
5087
5133
  } | undefined;
@@ -5262,6 +5308,7 @@ declare var __VLS_1: {}, __VLS_7: {
5262
5308
  change?: boolean | undefined;
5263
5309
  confirm?: boolean | undefined;
5264
5310
  loadList?: boolean | undefined;
5311
+ needTip?: boolean | undefined;
5265
5312
  api?: ((data: any, type: "switch") => any) | undefined;
5266
5313
  } | undefined;
5267
5314
  } | undefined;
@@ -5350,6 +5397,7 @@ declare var __VLS_1: {}, __VLS_7: {
5350
5397
  change?: boolean | undefined;
5351
5398
  confirm?: boolean | undefined;
5352
5399
  loadList?: boolean | undefined;
5400
+ needTip?: boolean | undefined;
5353
5401
  api?: ((data: any, type: "switch") => any) | undefined;
5354
5402
  } | undefined;
5355
5403
  } | undefined;
@@ -5438,6 +5486,7 @@ declare var __VLS_1: {}, __VLS_7: {
5438
5486
  change?: boolean | undefined;
5439
5487
  confirm?: boolean | undefined;
5440
5488
  loadList?: boolean | undefined;
5489
+ needTip?: boolean | undefined;
5441
5490
  api?: ((data: any, type: "switch") => any) | undefined;
5442
5491
  } | undefined;
5443
5492
  } | undefined;
@@ -5510,6 +5559,7 @@ declare var __VLS_1: {}, __VLS_7: {
5510
5559
  change?: boolean | undefined;
5511
5560
  confirm?: boolean | undefined;
5512
5561
  loadList?: boolean | undefined;
5562
+ needTip?: boolean | undefined;
5513
5563
  api?: ((data: any, type: "switch") => any) | undefined;
5514
5564
  } | undefined;
5515
5565
  } | undefined;
@@ -5665,9 +5715,9 @@ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$
5665
5715
  } & {
5666
5716
  [K in NonNullable<typeof __VLS_36>]?: (props: typeof __VLS_37) => any;
5667
5717
  } & {
5668
- [K in NonNullable<typeof __VLS_226>]?: (props: typeof __VLS_227) => any;
5718
+ [K in NonNullable<typeof __VLS_218>]?: (props: typeof __VLS_219) => any;
5669
5719
  } & {
5670
- [K in NonNullable<typeof __VLS_320>]?: (props: typeof __VLS_321) => any;
5720
+ [K in NonNullable<typeof __VLS_312>]?: (props: typeof __VLS_313) => any;
5671
5721
  } & {
5672
5722
  'box-left'?: (props: typeof __VLS_1) => any;
5673
5723
  } & {
@@ -5681,23 +5731,23 @@ type __VLS_Slots = __VLS_PrettifyGlobal<__VLS_OmitStringIndex<typeof __VLS_ctx.$
5681
5731
  } & {
5682
5732
  'tools-right'?: (props: typeof __VLS_125) => any;
5683
5733
  } & {
5684
- 'table-header-sortable'?: (props: typeof __VLS_213) => any;
5734
+ 'table-header-sortable'?: (props: typeof __VLS_205) => any;
5685
5735
  } & {
5686
- 'table-header-op'?: (props: typeof __VLS_233) => any;
5736
+ 'table-header-op'?: (props: typeof __VLS_225) => any;
5687
5737
  } & {
5688
- 'table-op-left'?: (props: typeof __VLS_239) => any;
5738
+ 'table-op-left'?: (props: typeof __VLS_231) => any;
5689
5739
  } & {
5690
- 'table-op-edit-right'?: (props: typeof __VLS_257) => any;
5740
+ 'table-op-edit-right'?: (props: typeof __VLS_249) => any;
5691
5741
  } & {
5692
- 'table-op-right'?: (props: typeof __VLS_291) => any;
5742
+ 'table-op-right'?: (props: typeof __VLS_283) => any;
5693
5743
  } & {
5694
- 'box-right'?: (props: typeof __VLS_302) => any;
5744
+ 'box-right'?: (props: typeof __VLS_294) => any;
5695
5745
  } & {
5696
- 'dialog-start'?: (props: typeof __VLS_308) => any;
5746
+ 'dialog-start'?: (props: typeof __VLS_300) => any;
5697
5747
  } & {
5698
- 'dialog-end'?: (props: typeof __VLS_323) => any;
5748
+ 'dialog-end'?: (props: typeof __VLS_315) => any;
5699
5749
  } & {
5700
- 'dialog-footer'?: (props: typeof __VLS_329) => any;
5750
+ 'dialog-footer'?: (props: typeof __VLS_321) => any;
5701
5751
  }>;
5702
5752
  declare const __VLS_self: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5703
5753
  /**
@@ -5878,6 +5928,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
5878
5928
  change?: boolean | undefined;
5879
5929
  confirm?: boolean | undefined;
5880
5930
  loadList?: boolean | undefined;
5931
+ needTip?: boolean | undefined;
5881
5932
  api?: ((data: any, type: "switch") => any) | undefined;
5882
5933
  } | undefined;
5883
5934
  } | undefined;
@@ -5966,6 +6017,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
5966
6017
  change?: boolean | undefined;
5967
6018
  confirm?: boolean | undefined;
5968
6019
  loadList?: boolean | undefined;
6020
+ needTip?: boolean | undefined;
5969
6021
  api?: ((data: any, type: "switch") => any) | undefined;
5970
6022
  } | undefined;
5971
6023
  } | undefined;
@@ -6054,6 +6106,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6054
6106
  change?: boolean | undefined;
6055
6107
  confirm?: boolean | undefined;
6056
6108
  loadList?: boolean | undefined;
6109
+ needTip?: boolean | undefined;
6057
6110
  api?: ((data: any, type: "switch") => any) | undefined;
6058
6111
  } | undefined;
6059
6112
  } | undefined;
@@ -6126,6 +6179,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6126
6179
  change?: boolean | undefined;
6127
6180
  confirm?: boolean | undefined;
6128
6181
  loadList?: boolean | undefined;
6182
+ needTip?: boolean | undefined;
6129
6183
  api?: ((data: any, type: "switch") => any) | undefined;
6130
6184
  } | undefined;
6131
6185
  } | undefined;
@@ -6306,6 +6360,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6306
6360
  change?: boolean | undefined;
6307
6361
  confirm?: boolean | undefined;
6308
6362
  loadList?: boolean | undefined;
6363
+ needTip?: boolean | undefined;
6309
6364
  api?: ((data: any, type: "switch") => any) | undefined;
6310
6365
  } | undefined;
6311
6366
  } | undefined;
@@ -6394,6 +6449,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6394
6449
  change?: boolean | undefined;
6395
6450
  confirm?: boolean | undefined;
6396
6451
  loadList?: boolean | undefined;
6452
+ needTip?: boolean | undefined;
6397
6453
  api?: ((data: any, type: "switch") => any) | undefined;
6398
6454
  } | undefined;
6399
6455
  } | undefined;
@@ -6482,6 +6538,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6482
6538
  change?: boolean | undefined;
6483
6539
  confirm?: boolean | undefined;
6484
6540
  loadList?: boolean | undefined;
6541
+ needTip?: boolean | undefined;
6485
6542
  api?: ((data: any, type: "switch") => any) | undefined;
6486
6543
  } | undefined;
6487
6544
  } | undefined;
@@ -6554,6 +6611,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6554
6611
  change?: boolean | undefined;
6555
6612
  confirm?: boolean | undefined;
6556
6613
  loadList?: boolean | undefined;
6614
+ needTip?: boolean | undefined;
6557
6615
  api?: ((data: any, type: "switch") => any) | undefined;
6558
6616
  } | undefined;
6559
6617
  } | undefined;
@@ -6789,6 +6847,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6789
6847
  change?: boolean | undefined;
6790
6848
  confirm?: boolean | undefined;
6791
6849
  loadList?: boolean | undefined;
6850
+ needTip?: boolean | undefined;
6792
6851
  api?: ((data: any, type: "switch") => any) | undefined;
6793
6852
  } | undefined;
6794
6853
  } | undefined;
@@ -6877,6 +6936,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6877
6936
  change?: boolean | undefined;
6878
6937
  confirm?: boolean | undefined;
6879
6938
  loadList?: boolean | undefined;
6939
+ needTip?: boolean | undefined;
6880
6940
  api?: ((data: any, type: "switch") => any) | undefined;
6881
6941
  } | undefined;
6882
6942
  } | undefined;
@@ -6965,6 +7025,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
6965
7025
  change?: boolean | undefined;
6966
7026
  confirm?: boolean | undefined;
6967
7027
  loadList?: boolean | undefined;
7028
+ needTip?: boolean | undefined;
6968
7029
  api?: ((data: any, type: "switch") => any) | undefined;
6969
7030
  } | undefined;
6970
7031
  } | undefined;
@@ -7037,6 +7098,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7037
7098
  change?: boolean | undefined;
7038
7099
  confirm?: boolean | undefined;
7039
7100
  loadList?: boolean | undefined;
7101
+ needTip?: boolean | undefined;
7040
7102
  api?: ((data: any, type: "switch") => any) | undefined;
7041
7103
  } | undefined;
7042
7104
  } | undefined;
@@ -7176,6 +7238,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7176
7238
  page: boolean;
7177
7239
  scroll: boolean;
7178
7240
  field: string;
7241
+ order: "asc" | "desc";
7179
7242
  onEnd: (data: any[]) => any;
7180
7243
  rule: "index" | "value";
7181
7244
  api: Partial<{
@@ -7212,6 +7275,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7212
7275
  page: boolean;
7213
7276
  scroll: boolean;
7214
7277
  field: string;
7278
+ order: "asc" | "desc";
7215
7279
  onEnd: (data: any[]) => any;
7216
7280
  rule: "index" | "value";
7217
7281
  api: Partial<{
@@ -7249,14 +7313,13 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7249
7313
  destroy: () => void;
7250
7314
  getBody: () => HTMLElement | null;
7251
7315
  loadModule: () => Promise<any>;
7252
- applyRule: (data: any[], field: string, rule: "index" | "value", values: any[]) => void;
7316
+ applyRule: (data: any[], field: string, rule: "index" | "value", values: any[], order?: "asc" | "desc") => void;
7253
7317
  sync: () => Promise<void>;
7254
7318
  refreshList: () => Promise<void>;
7255
7319
  fitHeight: boolean;
7256
7320
  start: () => Promise<void>;
7257
7321
  exit: () => Promise<void>;
7258
7322
  save: () => Promise<void>;
7259
- command: (command: "save" | "exit") => Promise<void>;
7260
7323
  };
7261
7324
  header: {
7262
7325
  group: {
@@ -7365,6 +7428,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7365
7428
  change?: boolean | undefined;
7366
7429
  confirm?: boolean | undefined;
7367
7430
  loadList?: boolean | undefined;
7431
+ needTip?: boolean | undefined;
7368
7432
  api?: ((data: any, type: "switch") => any) | undefined;
7369
7433
  } | undefined;
7370
7434
  } | undefined;
@@ -7453,6 +7517,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7453
7517
  change?: boolean | undefined;
7454
7518
  confirm?: boolean | undefined;
7455
7519
  loadList?: boolean | undefined;
7520
+ needTip?: boolean | undefined;
7456
7521
  api?: ((data: any, type: "switch") => any) | undefined;
7457
7522
  } | undefined;
7458
7523
  } | undefined;
@@ -7541,6 +7606,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7541
7606
  change?: boolean | undefined;
7542
7607
  confirm?: boolean | undefined;
7543
7608
  loadList?: boolean | undefined;
7609
+ needTip?: boolean | undefined;
7544
7610
  api?: ((data: any, type: "switch") => any) | undefined;
7545
7611
  } | undefined;
7546
7612
  } | undefined;
@@ -7613,6 +7679,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7613
7679
  change?: boolean | undefined;
7614
7680
  confirm?: boolean | undefined;
7615
7681
  loadList?: boolean | undefined;
7682
+ needTip?: boolean | undefined;
7616
7683
  api?: ((data: any, type: "switch") => any) | undefined;
7617
7684
  } | undefined;
7618
7685
  } | undefined;
@@ -7790,6 +7857,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7790
7857
  page?: boolean | undefined;
7791
7858
  scroll?: boolean | undefined;
7792
7859
  field?: string | undefined;
7860
+ order?: "asc" | "desc" | undefined;
7793
7861
  onEnd?: ((data: any[]) => any) | undefined;
7794
7862
  rule?: "index" | "value" | undefined;
7795
7863
  api?: {
@@ -7864,6 +7932,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7864
7932
  change?: boolean | undefined;
7865
7933
  confirm?: boolean | undefined;
7866
7934
  loadList?: boolean | undefined;
7935
+ needTip?: boolean | undefined;
7867
7936
  api?: ((data: any, type: "switch") => any) | undefined;
7868
7937
  } | undefined;
7869
7938
  } | undefined;
@@ -7952,6 +8021,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
7952
8021
  change?: boolean | undefined;
7953
8022
  confirm?: boolean | undefined;
7954
8023
  loadList?: boolean | undefined;
8024
+ needTip?: boolean | undefined;
7955
8025
  api?: ((data: any, type: "switch") => any) | undefined;
7956
8026
  } | undefined;
7957
8027
  } | undefined;
@@ -8040,6 +8110,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
8040
8110
  change?: boolean | undefined;
8041
8111
  confirm?: boolean | undefined;
8042
8112
  loadList?: boolean | undefined;
8113
+ needTip?: boolean | undefined;
8043
8114
  api?: ((data: any, type: "switch") => any) | undefined;
8044
8115
  } | undefined;
8045
8116
  } | undefined;
@@ -8112,6 +8183,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
8112
8183
  change?: boolean | undefined;
8113
8184
  confirm?: boolean | undefined;
8114
8185
  loadList?: boolean | undefined;
8186
+ needTip?: boolean | undefined;
8115
8187
  api?: ((data: any, type: "switch") => any) | undefined;
8116
8188
  } | undefined;
8117
8189
  } | undefined;
@@ -8343,6 +8415,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
8343
8415
  change?: boolean | undefined;
8344
8416
  confirm?: boolean | undefined;
8345
8417
  loadList?: boolean | undefined;
8418
+ needTip?: boolean | undefined;
8346
8419
  api?: ((data: any, type: "switch") => any) | undefined;
8347
8420
  } | undefined;
8348
8421
  } | undefined;
@@ -8431,6 +8504,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
8431
8504
  change?: boolean | undefined;
8432
8505
  confirm?: boolean | undefined;
8433
8506
  loadList?: boolean | undefined;
8507
+ needTip?: boolean | undefined;
8434
8508
  api?: ((data: any, type: "switch") => any) | undefined;
8435
8509
  } | undefined;
8436
8510
  } | undefined;
@@ -8519,6 +8593,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
8519
8593
  change?: boolean | undefined;
8520
8594
  confirm?: boolean | undefined;
8521
8595
  loadList?: boolean | undefined;
8596
+ needTip?: boolean | undefined;
8522
8597
  api?: ((data: any, type: "switch") => any) | undefined;
8523
8598
  } | undefined;
8524
8599
  } | undefined;
@@ -8591,6 +8666,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
8591
8666
  change?: boolean | undefined;
8592
8667
  confirm?: boolean | undefined;
8593
8668
  loadList?: boolean | undefined;
8669
+ needTip?: boolean | undefined;
8594
8670
  api?: ((data: any, type: "switch") => any) | undefined;
8595
8671
  } | undefined;
8596
8672
  } | undefined;