@deot/vc-components 1.0.39 → 1.0.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +172 -134
- package/dist/index.d.ts +84 -56
- package/dist/index.iife.js +172 -134
- package/dist/index.js +172 -134
- package/dist/index.umd.cjs +172 -134
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -314,6 +314,8 @@ autoWidth: {
|
|
|
314
314
|
type: BooleanConstructor;
|
|
315
315
|
default: boolean;
|
|
316
316
|
};
|
|
317
|
+
renderOption: Render;
|
|
318
|
+
renderOptionGroup: Render;
|
|
317
319
|
searchPlaceholder: {
|
|
318
320
|
type: StringConstructor;
|
|
319
321
|
default: string;
|
|
@@ -397,6 +399,8 @@ autoWidth: {
|
|
|
397
399
|
type: BooleanConstructor;
|
|
398
400
|
default: boolean;
|
|
399
401
|
};
|
|
402
|
+
renderOption: Render;
|
|
403
|
+
renderOptionGroup: Render;
|
|
400
404
|
searchPlaceholder: {
|
|
401
405
|
type: StringConstructor;
|
|
402
406
|
default: string;
|
|
@@ -2791,6 +2795,8 @@ autoWidth: {
|
|
|
2791
2795
|
type: BooleanConstructor;
|
|
2792
2796
|
default: boolean;
|
|
2793
2797
|
};
|
|
2798
|
+
renderOption: Render;
|
|
2799
|
+
renderOptionGroup: Render;
|
|
2794
2800
|
searchPlaceholder: {
|
|
2795
2801
|
type: StringConstructor;
|
|
2796
2802
|
default: string;
|
|
@@ -2874,6 +2880,8 @@ autoWidth: {
|
|
|
2874
2880
|
type: BooleanConstructor;
|
|
2875
2881
|
default: boolean;
|
|
2876
2882
|
};
|
|
2883
|
+
renderOption: Render;
|
|
2884
|
+
renderOptionGroup: Render;
|
|
2877
2885
|
searchPlaceholder: {
|
|
2878
2886
|
type: StringConstructor;
|
|
2879
2887
|
default: string;
|
|
@@ -7675,6 +7683,8 @@ showBar: boolean;
|
|
|
7675
7683
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7676
7684
|
|
|
7677
7685
|
export declare const MSelect: DefineComponent<ExtractPropTypes< {
|
|
7686
|
+
renderOption: Render;
|
|
7687
|
+
renderOptionGroup: Render;
|
|
7678
7688
|
data: {
|
|
7679
7689
|
type: ArrayConstructor;
|
|
7680
7690
|
default: () => never[];
|
|
@@ -7750,6 +7760,8 @@ default: boolean;
|
|
|
7750
7760
|
};
|
|
7751
7761
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
7752
7762
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
7763
|
+
renderOption: Render;
|
|
7764
|
+
renderOptionGroup: Render;
|
|
7753
7765
|
data: {
|
|
7754
7766
|
type: ArrayConstructor;
|
|
7755
7767
|
default: () => never[];
|
|
@@ -9522,10 +9534,6 @@ emptyText: {
|
|
|
9522
9534
|
type: StringConstructor;
|
|
9523
9535
|
default: string;
|
|
9524
9536
|
};
|
|
9525
|
-
renderAfterExpand: {
|
|
9526
|
-
type: BooleanConstructor;
|
|
9527
|
-
default: boolean;
|
|
9528
|
-
};
|
|
9529
9537
|
checkStrictly: {
|
|
9530
9538
|
type: BooleanConstructor;
|
|
9531
9539
|
default: boolean;
|
|
@@ -9550,11 +9558,6 @@ type: PropType<(string | number)[]>;
|
|
|
9550
9558
|
default: () => never[];
|
|
9551
9559
|
};
|
|
9552
9560
|
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
9553
|
-
render: PropType<Props["render"]>;
|
|
9554
|
-
showCheckbox: {
|
|
9555
|
-
type: BooleanConstructor;
|
|
9556
|
-
default: boolean;
|
|
9557
|
-
};
|
|
9558
9561
|
draggable: {
|
|
9559
9562
|
type: BooleanConstructor;
|
|
9560
9563
|
default: boolean;
|
|
@@ -9568,10 +9571,6 @@ default: boolean;
|
|
|
9568
9571
|
highlightCurrent: BooleanConstructor;
|
|
9569
9572
|
loadData: FunctionConstructor;
|
|
9570
9573
|
filterNode: FunctionConstructor;
|
|
9571
|
-
accordion: {
|
|
9572
|
-
type: BooleanConstructor;
|
|
9573
|
-
default: boolean;
|
|
9574
|
-
};
|
|
9575
9574
|
indent: {
|
|
9576
9575
|
type: NumberConstructor;
|
|
9577
9576
|
default: number;
|
|
@@ -9591,6 +9590,19 @@ allowDispatch: {
|
|
|
9591
9590
|
type: BooleanConstructor;
|
|
9592
9591
|
default: boolean;
|
|
9593
9592
|
};
|
|
9593
|
+
accordion: {
|
|
9594
|
+
type: BooleanConstructor;
|
|
9595
|
+
default: boolean;
|
|
9596
|
+
};
|
|
9597
|
+
renderNodeLabel: Render;
|
|
9598
|
+
renderNodeAfterExpand: {
|
|
9599
|
+
type: BooleanConstructor;
|
|
9600
|
+
default: boolean;
|
|
9601
|
+
};
|
|
9602
|
+
showCheckbox: {
|
|
9603
|
+
type: BooleanConstructor;
|
|
9604
|
+
default: boolean;
|
|
9605
|
+
};
|
|
9594
9606
|
numerable: {
|
|
9595
9607
|
type: BooleanConstructor;
|
|
9596
9608
|
default: boolean;
|
|
@@ -9617,10 +9629,6 @@ emptyText: {
|
|
|
9617
9629
|
type: StringConstructor;
|
|
9618
9630
|
default: string;
|
|
9619
9631
|
};
|
|
9620
|
-
renderAfterExpand: {
|
|
9621
|
-
type: BooleanConstructor;
|
|
9622
|
-
default: boolean;
|
|
9623
|
-
};
|
|
9624
9632
|
checkStrictly: {
|
|
9625
9633
|
type: BooleanConstructor;
|
|
9626
9634
|
default: boolean;
|
|
@@ -9645,11 +9653,6 @@ type: PropType<(string | number)[]>;
|
|
|
9645
9653
|
default: () => never[];
|
|
9646
9654
|
};
|
|
9647
9655
|
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
9648
|
-
render: PropType<Props["render"]>;
|
|
9649
|
-
showCheckbox: {
|
|
9650
|
-
type: BooleanConstructor;
|
|
9651
|
-
default: boolean;
|
|
9652
|
-
};
|
|
9653
9656
|
draggable: {
|
|
9654
9657
|
type: BooleanConstructor;
|
|
9655
9658
|
default: boolean;
|
|
@@ -9663,10 +9666,6 @@ default: boolean;
|
|
|
9663
9666
|
highlightCurrent: BooleanConstructor;
|
|
9664
9667
|
loadData: FunctionConstructor;
|
|
9665
9668
|
filterNode: FunctionConstructor;
|
|
9666
|
-
accordion: {
|
|
9667
|
-
type: BooleanConstructor;
|
|
9668
|
-
default: boolean;
|
|
9669
|
-
};
|
|
9670
9669
|
indent: {
|
|
9671
9670
|
type: NumberConstructor;
|
|
9672
9671
|
default: number;
|
|
@@ -9686,6 +9685,19 @@ allowDispatch: {
|
|
|
9686
9685
|
type: BooleanConstructor;
|
|
9687
9686
|
default: boolean;
|
|
9688
9687
|
};
|
|
9688
|
+
accordion: {
|
|
9689
|
+
type: BooleanConstructor;
|
|
9690
|
+
default: boolean;
|
|
9691
|
+
};
|
|
9692
|
+
renderNodeLabel: Render;
|
|
9693
|
+
renderNodeAfterExpand: {
|
|
9694
|
+
type: BooleanConstructor;
|
|
9695
|
+
default: boolean;
|
|
9696
|
+
};
|
|
9697
|
+
showCheckbox: {
|
|
9698
|
+
type: BooleanConstructor;
|
|
9699
|
+
default: boolean;
|
|
9700
|
+
};
|
|
9689
9701
|
numerable: {
|
|
9690
9702
|
type: BooleanConstructor;
|
|
9691
9703
|
default: boolean;
|
|
@@ -9738,10 +9750,10 @@ expandedValues: (string | number)[];
|
|
|
9738
9750
|
checkStrictly: boolean;
|
|
9739
9751
|
autoExpandParent: boolean;
|
|
9740
9752
|
checkDescendants: boolean;
|
|
9741
|
-
|
|
9753
|
+
renderNodeAfterExpand: boolean;
|
|
9754
|
+
showCheckbox: boolean;
|
|
9742
9755
|
expandOnClickNode: boolean;
|
|
9743
9756
|
checkOnClickNode: boolean;
|
|
9744
|
-
showCheckbox: boolean;
|
|
9745
9757
|
highlightCurrent: boolean;
|
|
9746
9758
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9747
9759
|
|
|
@@ -9759,6 +9771,9 @@ checkStrictly: {
|
|
|
9759
9771
|
type: BooleanConstructor;
|
|
9760
9772
|
default: boolean;
|
|
9761
9773
|
};
|
|
9774
|
+
renderNodeLabel: Render;
|
|
9775
|
+
renderOption: Render;
|
|
9776
|
+
renderOptionGroup: Render;
|
|
9762
9777
|
searchPlaceholder: {
|
|
9763
9778
|
type: StringConstructor;
|
|
9764
9779
|
default: string;
|
|
@@ -9838,6 +9853,9 @@ checkStrictly: {
|
|
|
9838
9853
|
type: BooleanConstructor;
|
|
9839
9854
|
default: boolean;
|
|
9840
9855
|
};
|
|
9856
|
+
renderNodeLabel: Render;
|
|
9857
|
+
renderOption: Render;
|
|
9858
|
+
renderOptionGroup: Render;
|
|
9841
9859
|
searchPlaceholder: {
|
|
9842
9860
|
type: StringConstructor;
|
|
9843
9861
|
default: string;
|
|
@@ -12183,6 +12201,8 @@ stopPropagation: boolean;
|
|
|
12183
12201
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
12184
12202
|
|
|
12185
12203
|
export declare const Select: DefineComponent<ExtractPropTypes< {
|
|
12204
|
+
renderOption: Render;
|
|
12205
|
+
renderOptionGroup: Render;
|
|
12186
12206
|
data: {
|
|
12187
12207
|
type: ArrayConstructor;
|
|
12188
12208
|
default: () => never[];
|
|
@@ -12258,6 +12278,8 @@ default: boolean;
|
|
|
12258
12278
|
};
|
|
12259
12279
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
12260
12280
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
12281
|
+
renderOption: Render;
|
|
12282
|
+
renderOptionGroup: Render;
|
|
12261
12283
|
data: {
|
|
12262
12284
|
type: ArrayConstructor;
|
|
12263
12285
|
default: () => never[];
|
|
@@ -14282,10 +14304,6 @@ emptyText: {
|
|
|
14282
14304
|
type: StringConstructor;
|
|
14283
14305
|
default: string;
|
|
14284
14306
|
};
|
|
14285
|
-
renderAfterExpand: {
|
|
14286
|
-
type: BooleanConstructor;
|
|
14287
|
-
default: boolean;
|
|
14288
|
-
};
|
|
14289
14307
|
checkStrictly: {
|
|
14290
14308
|
type: BooleanConstructor;
|
|
14291
14309
|
default: boolean;
|
|
@@ -14310,11 +14328,6 @@ type: PropType<(string | number)[]>;
|
|
|
14310
14328
|
default: () => never[];
|
|
14311
14329
|
};
|
|
14312
14330
|
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
14313
|
-
render: PropType<Props["render"]>;
|
|
14314
|
-
showCheckbox: {
|
|
14315
|
-
type: BooleanConstructor;
|
|
14316
|
-
default: boolean;
|
|
14317
|
-
};
|
|
14318
14331
|
draggable: {
|
|
14319
14332
|
type: BooleanConstructor;
|
|
14320
14333
|
default: boolean;
|
|
@@ -14328,10 +14341,6 @@ default: boolean;
|
|
|
14328
14341
|
highlightCurrent: BooleanConstructor;
|
|
14329
14342
|
loadData: FunctionConstructor;
|
|
14330
14343
|
filterNode: FunctionConstructor;
|
|
14331
|
-
accordion: {
|
|
14332
|
-
type: BooleanConstructor;
|
|
14333
|
-
default: boolean;
|
|
14334
|
-
};
|
|
14335
14344
|
indent: {
|
|
14336
14345
|
type: NumberConstructor;
|
|
14337
14346
|
default: number;
|
|
@@ -14351,6 +14360,19 @@ allowDispatch: {
|
|
|
14351
14360
|
type: BooleanConstructor;
|
|
14352
14361
|
default: boolean;
|
|
14353
14362
|
};
|
|
14363
|
+
accordion: {
|
|
14364
|
+
type: BooleanConstructor;
|
|
14365
|
+
default: boolean;
|
|
14366
|
+
};
|
|
14367
|
+
renderNodeLabel: Render;
|
|
14368
|
+
renderNodeAfterExpand: {
|
|
14369
|
+
type: BooleanConstructor;
|
|
14370
|
+
default: boolean;
|
|
14371
|
+
};
|
|
14372
|
+
showCheckbox: {
|
|
14373
|
+
type: BooleanConstructor;
|
|
14374
|
+
default: boolean;
|
|
14375
|
+
};
|
|
14354
14376
|
numerable: {
|
|
14355
14377
|
type: BooleanConstructor;
|
|
14356
14378
|
default: boolean;
|
|
@@ -14377,10 +14399,6 @@ emptyText: {
|
|
|
14377
14399
|
type: StringConstructor;
|
|
14378
14400
|
default: string;
|
|
14379
14401
|
};
|
|
14380
|
-
renderAfterExpand: {
|
|
14381
|
-
type: BooleanConstructor;
|
|
14382
|
-
default: boolean;
|
|
14383
|
-
};
|
|
14384
14402
|
checkStrictly: {
|
|
14385
14403
|
type: BooleanConstructor;
|
|
14386
14404
|
default: boolean;
|
|
@@ -14405,11 +14423,6 @@ type: PropType<(string | number)[]>;
|
|
|
14405
14423
|
default: () => never[];
|
|
14406
14424
|
};
|
|
14407
14425
|
currentNodeValue: (StringConstructor | NumberConstructor)[];
|
|
14408
|
-
render: PropType<Props["render"]>;
|
|
14409
|
-
showCheckbox: {
|
|
14410
|
-
type: BooleanConstructor;
|
|
14411
|
-
default: boolean;
|
|
14412
|
-
};
|
|
14413
14426
|
draggable: {
|
|
14414
14427
|
type: BooleanConstructor;
|
|
14415
14428
|
default: boolean;
|
|
@@ -14423,10 +14436,6 @@ default: boolean;
|
|
|
14423
14436
|
highlightCurrent: BooleanConstructor;
|
|
14424
14437
|
loadData: FunctionConstructor;
|
|
14425
14438
|
filterNode: FunctionConstructor;
|
|
14426
|
-
accordion: {
|
|
14427
|
-
type: BooleanConstructor;
|
|
14428
|
-
default: boolean;
|
|
14429
|
-
};
|
|
14430
14439
|
indent: {
|
|
14431
14440
|
type: NumberConstructor;
|
|
14432
14441
|
default: number;
|
|
@@ -14446,6 +14455,19 @@ allowDispatch: {
|
|
|
14446
14455
|
type: BooleanConstructor;
|
|
14447
14456
|
default: boolean;
|
|
14448
14457
|
};
|
|
14458
|
+
accordion: {
|
|
14459
|
+
type: BooleanConstructor;
|
|
14460
|
+
default: boolean;
|
|
14461
|
+
};
|
|
14462
|
+
renderNodeLabel: Render;
|
|
14463
|
+
renderNodeAfterExpand: {
|
|
14464
|
+
type: BooleanConstructor;
|
|
14465
|
+
default: boolean;
|
|
14466
|
+
};
|
|
14467
|
+
showCheckbox: {
|
|
14468
|
+
type: BooleanConstructor;
|
|
14469
|
+
default: boolean;
|
|
14470
|
+
};
|
|
14449
14471
|
numerable: {
|
|
14450
14472
|
type: BooleanConstructor;
|
|
14451
14473
|
default: boolean;
|
|
@@ -14498,10 +14520,10 @@ expandedValues: (string | number)[];
|
|
|
14498
14520
|
checkStrictly: boolean;
|
|
14499
14521
|
autoExpandParent: boolean;
|
|
14500
14522
|
checkDescendants: boolean;
|
|
14501
|
-
|
|
14523
|
+
renderNodeAfterExpand: boolean;
|
|
14524
|
+
showCheckbox: boolean;
|
|
14502
14525
|
expandOnClickNode: boolean;
|
|
14503
14526
|
checkOnClickNode: boolean;
|
|
14504
|
-
showCheckbox: boolean;
|
|
14505
14527
|
highlightCurrent: boolean;
|
|
14506
14528
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14507
14529
|
|
|
@@ -14529,6 +14551,9 @@ checkStrictly: {
|
|
|
14529
14551
|
type: BooleanConstructor;
|
|
14530
14552
|
default: boolean;
|
|
14531
14553
|
};
|
|
14554
|
+
renderNodeLabel: Render;
|
|
14555
|
+
renderOption: Render;
|
|
14556
|
+
renderOptionGroup: Render;
|
|
14532
14557
|
searchPlaceholder: {
|
|
14533
14558
|
type: StringConstructor;
|
|
14534
14559
|
default: string;
|
|
@@ -14608,6 +14633,9 @@ checkStrictly: {
|
|
|
14608
14633
|
type: BooleanConstructor;
|
|
14609
14634
|
default: boolean;
|
|
14610
14635
|
};
|
|
14636
|
+
renderNodeLabel: Render;
|
|
14637
|
+
renderOption: Render;
|
|
14638
|
+
renderOptionGroup: Render;
|
|
14611
14639
|
searchPlaceholder: {
|
|
14612
14640
|
type: StringConstructor;
|
|
14613
14641
|
default: string;
|