cc1-form 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cc1-form.js +621 -618
- package/dist/cc1-form.umd.cjs +1 -1
- package/dist/components/TCurd/com/form/column.vue.d.ts +41 -29
- package/dist/components/TCurd/com/form/list.vue.d.ts +4 -4
- package/dist/components/TCurd/index.d.ts +14 -6
- package/dist/components/TCurd/index.vue.d.ts +70 -50
- package/package.json +1 -1
|
@@ -27,16 +27,18 @@ declare const conf: {
|
|
|
27
27
|
[x: string]: any;
|
|
28
28
|
input?: Record<string, any> | undefined;
|
|
29
29
|
switch?: {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
30
|
+
on?: Record<string, any> | undefined;
|
|
31
|
+
activeValue?: any;
|
|
32
|
+
activeLabel?: string | undefined;
|
|
33
|
+
inactiveValue?: any;
|
|
34
|
+
inactiveLabel?: string | undefined;
|
|
35
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
35
36
|
} | undefined;
|
|
36
37
|
select?: Record<string, any> | undefined;
|
|
37
38
|
treeSelect?: Record<string, any> | undefined;
|
|
38
39
|
datetime?: Record<string, any> | undefined;
|
|
39
40
|
list?: {
|
|
41
|
+
on?: Record<string, any> | undefined;
|
|
40
42
|
label?: string | undefined;
|
|
41
43
|
value?: string | undefined;
|
|
42
44
|
itemFields?: ({
|
|
@@ -110,16 +112,18 @@ declare const conf: {
|
|
|
110
112
|
[x: string]: any;
|
|
111
113
|
input?: Record<string, any> | undefined;
|
|
112
114
|
switch?: {
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
115
|
+
on?: Record<string, any> | undefined;
|
|
116
|
+
activeValue?: any;
|
|
117
|
+
activeLabel?: string | undefined;
|
|
118
|
+
inactiveValue?: any;
|
|
119
|
+
inactiveLabel?: string | undefined;
|
|
120
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
118
121
|
} | undefined;
|
|
119
122
|
select?: Record<string, any> | undefined;
|
|
120
123
|
treeSelect?: Record<string, any> | undefined;
|
|
121
124
|
datetime?: Record<string, any> | undefined;
|
|
122
125
|
list?: {
|
|
126
|
+
on?: Record<string, any> | undefined;
|
|
123
127
|
label?: string | undefined;
|
|
124
128
|
value?: string | undefined;
|
|
125
129
|
itemFields?: ({
|
|
@@ -192,16 +196,18 @@ declare const conf: {
|
|
|
192
196
|
[x: string]: any;
|
|
193
197
|
input?: Record<string, any> | undefined;
|
|
194
198
|
switch?: {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
199
|
+
on?: Record<string, any> | undefined;
|
|
200
|
+
activeValue?: any;
|
|
201
|
+
activeLabel?: string | undefined;
|
|
202
|
+
inactiveValue?: any;
|
|
203
|
+
inactiveLabel?: string | undefined;
|
|
204
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
200
205
|
} | undefined;
|
|
201
206
|
select?: Record<string, any> | undefined;
|
|
202
207
|
treeSelect?: Record<string, any> | undefined;
|
|
203
208
|
datetime?: Record<string, any> | undefined;
|
|
204
209
|
list?: {
|
|
210
|
+
on?: Record<string, any> | undefined;
|
|
205
211
|
label?: string | undefined;
|
|
206
212
|
value?: string | undefined;
|
|
207
213
|
itemFields?: ({
|
|
@@ -287,16 +293,18 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
287
293
|
[x: string]: any;
|
|
288
294
|
input?: Record<string, any> | undefined;
|
|
289
295
|
switch?: {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
296
|
+
on?: Record<string, any> | undefined;
|
|
297
|
+
activeValue?: any;
|
|
298
|
+
activeLabel?: string | undefined;
|
|
299
|
+
inactiveValue?: any;
|
|
300
|
+
inactiveLabel?: string | undefined;
|
|
301
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
295
302
|
} | undefined;
|
|
296
303
|
select?: Record<string, any> | undefined;
|
|
297
304
|
treeSelect?: Record<string, any> | undefined;
|
|
298
305
|
datetime?: Record<string, any> | undefined;
|
|
299
306
|
list?: {
|
|
307
|
+
on?: Record<string, any> | undefined;
|
|
300
308
|
label?: string | undefined;
|
|
301
309
|
value?: string | undefined;
|
|
302
310
|
itemFields?: ({
|
|
@@ -354,16 +362,18 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
354
362
|
[x: string]: any;
|
|
355
363
|
input?: Record<string, any> | undefined;
|
|
356
364
|
switch?: {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
365
|
+
on?: Record<string, any> | undefined;
|
|
366
|
+
activeValue?: any;
|
|
367
|
+
activeLabel?: string | undefined;
|
|
368
|
+
inactiveValue?: any;
|
|
369
|
+
inactiveLabel?: string | undefined;
|
|
370
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
362
371
|
} | undefined;
|
|
363
372
|
select?: Record<string, any> | undefined;
|
|
364
373
|
treeSelect?: Record<string, any> | undefined;
|
|
365
374
|
datetime?: Record<string, any> | undefined;
|
|
366
375
|
list?: {
|
|
376
|
+
on?: Record<string, any> | undefined;
|
|
367
377
|
label?: string | undefined;
|
|
368
378
|
value?: string | undefined;
|
|
369
379
|
itemFields?: ({
|
|
@@ -415,16 +425,18 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
415
425
|
[x: string]: any;
|
|
416
426
|
input?: Record<string, any> | undefined;
|
|
417
427
|
switch?: {
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
428
|
+
on?: Record<string, any> | undefined;
|
|
429
|
+
activeValue?: any;
|
|
430
|
+
activeLabel?: string | undefined;
|
|
431
|
+
inactiveValue?: any;
|
|
432
|
+
inactiveLabel?: string | undefined;
|
|
433
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
423
434
|
} | undefined;
|
|
424
435
|
select?: Record<string, any> | undefined;
|
|
425
436
|
treeSelect?: Record<string, any> | undefined;
|
|
426
437
|
datetime?: Record<string, any> | undefined;
|
|
427
438
|
list?: {
|
|
439
|
+
on?: Record<string, any> | undefined;
|
|
428
440
|
label?: string | undefined;
|
|
429
441
|
value?: string | undefined;
|
|
430
442
|
itemFields?: ({
|
|
@@ -476,16 +488,18 @@ declare var __VLS_1: {}, __VLS_7: {
|
|
|
476
488
|
[x: string]: any;
|
|
477
489
|
input?: Record<string, any> | undefined;
|
|
478
490
|
switch?: {
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
491
|
+
on?: Record<string, any> | undefined;
|
|
492
|
+
activeValue?: any;
|
|
493
|
+
activeLabel?: string | undefined;
|
|
494
|
+
inactiveValue?: any;
|
|
495
|
+
inactiveLabel?: string | undefined;
|
|
496
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
484
497
|
} | undefined;
|
|
485
498
|
select?: Record<string, any> | undefined;
|
|
486
499
|
treeSelect?: Record<string, any> | undefined;
|
|
487
500
|
datetime?: Record<string, any> | undefined;
|
|
488
501
|
list?: {
|
|
502
|
+
on?: Record<string, any> | undefined;
|
|
489
503
|
label?: string | undefined;
|
|
490
504
|
value?: string | undefined;
|
|
491
505
|
itemFields?: ({
|
|
@@ -624,16 +638,18 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
624
638
|
[x: string]: any;
|
|
625
639
|
input?: Record<string, any> | undefined;
|
|
626
640
|
switch?: {
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
641
|
+
on?: Record<string, any> | undefined;
|
|
642
|
+
activeValue?: any;
|
|
643
|
+
activeLabel?: string | undefined;
|
|
644
|
+
inactiveValue?: any;
|
|
645
|
+
inactiveLabel?: string | undefined;
|
|
646
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
632
647
|
} | undefined;
|
|
633
648
|
select?: Record<string, any> | undefined;
|
|
634
649
|
treeSelect?: Record<string, any> | undefined;
|
|
635
650
|
datetime?: Record<string, any> | undefined;
|
|
636
651
|
list?: {
|
|
652
|
+
on?: Record<string, any> | undefined;
|
|
637
653
|
label?: string | undefined;
|
|
638
654
|
value?: string | undefined;
|
|
639
655
|
itemFields?: ({
|
|
@@ -707,16 +723,18 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
707
723
|
[x: string]: any;
|
|
708
724
|
input?: Record<string, any> | undefined;
|
|
709
725
|
switch?: {
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
726
|
+
on?: Record<string, any> | undefined;
|
|
727
|
+
activeValue?: any;
|
|
728
|
+
activeLabel?: string | undefined;
|
|
729
|
+
inactiveValue?: any;
|
|
730
|
+
inactiveLabel?: string | undefined;
|
|
731
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
715
732
|
} | undefined;
|
|
716
733
|
select?: Record<string, any> | undefined;
|
|
717
734
|
treeSelect?: Record<string, any> | undefined;
|
|
718
735
|
datetime?: Record<string, any> | undefined;
|
|
719
736
|
list?: {
|
|
737
|
+
on?: Record<string, any> | undefined;
|
|
720
738
|
label?: string | undefined;
|
|
721
739
|
value?: string | undefined;
|
|
722
740
|
itemFields?: ({
|
|
@@ -789,16 +807,18 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
789
807
|
[x: string]: any;
|
|
790
808
|
input?: Record<string, any> | undefined;
|
|
791
809
|
switch?: {
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
810
|
+
on?: Record<string, any> | undefined;
|
|
811
|
+
activeValue?: any;
|
|
812
|
+
activeLabel?: string | undefined;
|
|
813
|
+
inactiveValue?: any;
|
|
814
|
+
inactiveLabel?: string | undefined;
|
|
815
|
+
tableBeforeChange?: ((key: string, data: any) => any) | undefined;
|
|
797
816
|
} | undefined;
|
|
798
817
|
select?: Record<string, any> | undefined;
|
|
799
818
|
treeSelect?: Record<string, any> | undefined;
|
|
800
819
|
datetime?: Record<string, any> | undefined;
|
|
801
820
|
list?: {
|
|
821
|
+
on?: Record<string, any> | undefined;
|
|
802
822
|
label?: string | undefined;
|
|
803
823
|
value?: string | undefined;
|
|
804
824
|
itemFields?: ({
|