vuetify 3.7.11 → 3.7.12
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/json/attributes.json +2977 -2989
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +160 -160
- package/dist/json/tags.json +0 -3
- package/dist/json/web-types.json +5639 -5666
- package/dist/vuetify-labs.css +4359 -4358
- package/dist/vuetify-labs.d.ts +90 -165
- package/dist/vuetify-labs.esm.js +134 -58
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +134 -58
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5092 -5091
- package/dist/vuetify.d.ts +130 -190
- package/dist/vuetify.esm.js +119 -52
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +119 -52
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1041 -1028
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +2 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +25 -47
- package/lib/components/VCombobox/VCombobox.mjs +3 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +25 -47
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +2 -2
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +12 -24
- package/lib/components/VList/VList.mjs +1 -4
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +7 -16
- package/lib/components/VOverlay/VOverlay.css +2 -1
- package/lib/components/VOverlay/VOverlay.sass +2 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VSelect/VSelect.mjs +4 -4
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +25 -47
- package/lib/components/VSlider/slider.mjs +25 -12
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/index.d.mts +73 -133
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/list-items.mjs +70 -17
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/composables/nested/selectStrategies.mjs +6 -7
- package/lib/composables/nested/selectStrategies.mjs.map +1 -1
- package/lib/directives/ripple/index.mjs +7 -5
- package/lib/directives/ripple/index.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +57 -57
- package/lib/labs/VDateInput/VDateInput.mjs +17 -7
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +11 -17
- package/lib/labs/VTreeview/index.d.mts +7 -16
- package/lib/labs/components.d.mts +18 -33
- package/lib/util/helpers.mjs +3 -0
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -4777,7 +4777,7 @@ interface ItemProps {
|
|
|
4777
4777
|
itemChildren: SelectItemKey;
|
|
4778
4778
|
itemProps: SelectItemKey;
|
|
4779
4779
|
returnObject: boolean;
|
|
4780
|
-
valueComparator: typeof deepEqual;
|
|
4780
|
+
valueComparator: typeof deepEqual | undefined;
|
|
4781
4781
|
}
|
|
4782
4782
|
|
|
4783
4783
|
interface InternalListItem<T = any> extends ListItem<T> {
|
|
@@ -4796,7 +4796,6 @@ declare const VList: {
|
|
|
4796
4796
|
tile: boolean;
|
|
4797
4797
|
density: Density;
|
|
4798
4798
|
slim: boolean;
|
|
4799
|
-
valueComparator: typeof deepEqual;
|
|
4800
4799
|
activatable: boolean;
|
|
4801
4800
|
selectable: boolean;
|
|
4802
4801
|
selectStrategy: SelectStrategyProp;
|
|
@@ -4820,6 +4819,7 @@ declare const VList: {
|
|
|
4820
4819
|
baseColor?: string | undefined;
|
|
4821
4820
|
bgColor?: string | undefined;
|
|
4822
4821
|
activeColor?: string | undefined;
|
|
4822
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
4823
4823
|
activeClass?: string | undefined;
|
|
4824
4824
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
4825
4825
|
collapseIcon?: IconValue | undefined;
|
|
@@ -4868,7 +4868,6 @@ declare const VList: {
|
|
|
4868
4868
|
tile: boolean;
|
|
4869
4869
|
density: Density;
|
|
4870
4870
|
slim: boolean;
|
|
4871
|
-
valueComparator: typeof deepEqual;
|
|
4872
4871
|
activatable: boolean;
|
|
4873
4872
|
selectable: boolean;
|
|
4874
4873
|
selectStrategy: SelectStrategyProp;
|
|
@@ -4892,6 +4891,7 @@ declare const VList: {
|
|
|
4892
4891
|
baseColor?: string | undefined;
|
|
4893
4892
|
bgColor?: string | undefined;
|
|
4894
4893
|
activeColor?: string | undefined;
|
|
4894
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
4895
4895
|
activeClass?: string | undefined;
|
|
4896
4896
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
4897
4897
|
collapseIcon?: IconValue | undefined;
|
|
@@ -4915,7 +4915,6 @@ declare const VList: {
|
|
|
4915
4915
|
tile: boolean;
|
|
4916
4916
|
density: Density;
|
|
4917
4917
|
slim: boolean;
|
|
4918
|
-
valueComparator: typeof deepEqual;
|
|
4919
4918
|
activatable: boolean;
|
|
4920
4919
|
selectable: boolean;
|
|
4921
4920
|
selectStrategy: SelectStrategyProp;
|
|
@@ -4966,7 +4965,6 @@ declare const VList: {
|
|
|
4966
4965
|
tile: boolean;
|
|
4967
4966
|
density: Density;
|
|
4968
4967
|
slim: boolean;
|
|
4969
|
-
valueComparator: typeof deepEqual;
|
|
4970
4968
|
activatable: boolean;
|
|
4971
4969
|
selectable: boolean;
|
|
4972
4970
|
selectStrategy: SelectStrategyProp;
|
|
@@ -4990,6 +4988,7 @@ declare const VList: {
|
|
|
4990
4988
|
baseColor?: string | undefined;
|
|
4991
4989
|
bgColor?: string | undefined;
|
|
4992
4990
|
activeColor?: string | undefined;
|
|
4991
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
4993
4992
|
activeClass?: string | undefined;
|
|
4994
4993
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
4995
4994
|
collapseIcon?: IconValue | undefined;
|
|
@@ -5020,7 +5019,6 @@ declare const VList: {
|
|
|
5020
5019
|
tile: boolean;
|
|
5021
5020
|
density: Density;
|
|
5022
5021
|
slim: boolean;
|
|
5023
|
-
valueComparator: typeof deepEqual;
|
|
5024
5022
|
activatable: boolean;
|
|
5025
5023
|
selectable: boolean;
|
|
5026
5024
|
selectStrategy: SelectStrategyProp;
|
|
@@ -5042,7 +5040,6 @@ declare const VList: {
|
|
|
5042
5040
|
tile: boolean;
|
|
5043
5041
|
density: Density;
|
|
5044
5042
|
slim: boolean;
|
|
5045
|
-
valueComparator: typeof deepEqual;
|
|
5046
5043
|
activatable: boolean;
|
|
5047
5044
|
selectable: boolean;
|
|
5048
5045
|
selectStrategy: SelectStrategyProp;
|
|
@@ -5066,6 +5063,7 @@ declare const VList: {
|
|
|
5066
5063
|
baseColor?: string | undefined;
|
|
5067
5064
|
bgColor?: string | undefined;
|
|
5068
5065
|
activeColor?: string | undefined;
|
|
5066
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
5069
5067
|
activeClass?: string | undefined;
|
|
5070
5068
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
5071
5069
|
collapseIcon?: IconValue | undefined;
|
|
@@ -5115,7 +5113,6 @@ declare const VList: {
|
|
|
5115
5113
|
tile: boolean;
|
|
5116
5114
|
density: Density;
|
|
5117
5115
|
slim: boolean;
|
|
5118
|
-
valueComparator: typeof deepEqual;
|
|
5119
5116
|
activatable: boolean;
|
|
5120
5117
|
selectable: boolean;
|
|
5121
5118
|
selectStrategy: SelectStrategyProp;
|
|
@@ -5209,10 +5206,7 @@ declare const VList: {
|
|
|
5209
5206
|
default: string;
|
|
5210
5207
|
};
|
|
5211
5208
|
returnObject: BooleanConstructor;
|
|
5212
|
-
valueComparator:
|
|
5213
|
-
type: PropType<typeof deepEqual>;
|
|
5214
|
-
default: typeof deepEqual;
|
|
5215
|
-
};
|
|
5209
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
5216
5210
|
itemType: {
|
|
5217
5211
|
type: StringConstructor;
|
|
5218
5212
|
default: string;
|
|
@@ -5318,10 +5312,7 @@ declare const VList: {
|
|
|
5318
5312
|
default: string;
|
|
5319
5313
|
};
|
|
5320
5314
|
returnObject: BooleanConstructor;
|
|
5321
|
-
valueComparator:
|
|
5322
|
-
type: PropType<typeof deepEqual>;
|
|
5323
|
-
default: typeof deepEqual;
|
|
5324
|
-
};
|
|
5315
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
5325
5316
|
itemType: {
|
|
5326
5317
|
type: StringConstructor;
|
|
5327
5318
|
default: string;
|
|
@@ -8482,7 +8473,6 @@ declare const VAutocomplete: {
|
|
|
8482
8473
|
rules: readonly ValidationRule$1[];
|
|
8483
8474
|
tile: boolean;
|
|
8484
8475
|
density: Density;
|
|
8485
|
-
valueComparator: typeof deepEqual;
|
|
8486
8476
|
clearIcon: IconValue;
|
|
8487
8477
|
hideSpinButtons: boolean;
|
|
8488
8478
|
persistentHint: boolean;
|
|
@@ -8526,6 +8516,7 @@ declare const VAutocomplete: {
|
|
|
8526
8516
|
bgColor?: string | undefined;
|
|
8527
8517
|
prependIcon?: IconValue | undefined;
|
|
8528
8518
|
appendIcon?: IconValue | undefined;
|
|
8519
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
8529
8520
|
prependInnerIcon?: IconValue | undefined;
|
|
8530
8521
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
8531
8522
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -8552,7 +8543,6 @@ declare const VAutocomplete: {
|
|
|
8552
8543
|
tile: boolean;
|
|
8553
8544
|
density: Density;
|
|
8554
8545
|
slim: boolean;
|
|
8555
|
-
valueComparator: typeof deepEqual;
|
|
8556
8546
|
activatable: boolean;
|
|
8557
8547
|
selectable: boolean;
|
|
8558
8548
|
selectStrategy: SelectStrategyProp;
|
|
@@ -8570,7 +8560,6 @@ declare const VAutocomplete: {
|
|
|
8570
8560
|
tile: boolean;
|
|
8571
8561
|
density: Density;
|
|
8572
8562
|
slim: boolean;
|
|
8573
|
-
valueComparator: typeof deepEqual;
|
|
8574
8563
|
activatable: boolean;
|
|
8575
8564
|
selectable: boolean;
|
|
8576
8565
|
selectStrategy: SelectStrategyProp;
|
|
@@ -8593,6 +8582,7 @@ declare const VAutocomplete: {
|
|
|
8593
8582
|
baseColor?: string | undefined;
|
|
8594
8583
|
bgColor?: string | undefined;
|
|
8595
8584
|
activeColor?: string | undefined;
|
|
8585
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
8596
8586
|
activeClass?: string | undefined;
|
|
8597
8587
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
8598
8588
|
collapseIcon?: IconValue | undefined;
|
|
@@ -8614,7 +8604,6 @@ declare const VAutocomplete: {
|
|
|
8614
8604
|
tile: boolean;
|
|
8615
8605
|
density: Density;
|
|
8616
8606
|
slim: boolean;
|
|
8617
|
-
valueComparator: typeof deepEqual;
|
|
8618
8607
|
activatable: boolean;
|
|
8619
8608
|
selectable: boolean;
|
|
8620
8609
|
selectStrategy: SelectStrategyProp;
|
|
@@ -8638,6 +8627,7 @@ declare const VAutocomplete: {
|
|
|
8638
8627
|
baseColor?: string | undefined;
|
|
8639
8628
|
bgColor?: string | undefined;
|
|
8640
8629
|
activeColor?: string | undefined;
|
|
8630
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
8641
8631
|
activeClass?: string | undefined;
|
|
8642
8632
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
8643
8633
|
collapseIcon?: IconValue | undefined;
|
|
@@ -8649,7 +8639,7 @@ declare const VAutocomplete: {
|
|
|
8649
8639
|
value: boolean;
|
|
8650
8640
|
path: unknown[];
|
|
8651
8641
|
}) => any) | undefined;
|
|
8652
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
8642
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
8653
8643
|
items?: readonly any[] | undefined;
|
|
8654
8644
|
itemTitle?: SelectItemKey<any>;
|
|
8655
8645
|
itemValue?: SelectItemKey<any>;
|
|
@@ -8977,7 +8967,6 @@ declare const VAutocomplete: {
|
|
|
8977
8967
|
rules: readonly ValidationRule$1[];
|
|
8978
8968
|
tile: boolean;
|
|
8979
8969
|
density: Density;
|
|
8980
|
-
valueComparator: typeof deepEqual;
|
|
8981
8970
|
clearIcon: IconValue;
|
|
8982
8971
|
hideSpinButtons: boolean;
|
|
8983
8972
|
persistentHint: boolean;
|
|
@@ -9021,6 +9010,7 @@ declare const VAutocomplete: {
|
|
|
9021
9010
|
bgColor?: string | undefined;
|
|
9022
9011
|
prependIcon?: IconValue | undefined;
|
|
9023
9012
|
appendIcon?: IconValue | undefined;
|
|
9013
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
9024
9014
|
prependInnerIcon?: IconValue | undefined;
|
|
9025
9015
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
9026
9016
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -9047,7 +9037,6 @@ declare const VAutocomplete: {
|
|
|
9047
9037
|
tile: boolean;
|
|
9048
9038
|
density: Density;
|
|
9049
9039
|
slim: boolean;
|
|
9050
|
-
valueComparator: typeof deepEqual;
|
|
9051
9040
|
activatable: boolean;
|
|
9052
9041
|
selectable: boolean;
|
|
9053
9042
|
selectStrategy: SelectStrategyProp;
|
|
@@ -9065,7 +9054,6 @@ declare const VAutocomplete: {
|
|
|
9065
9054
|
tile: boolean;
|
|
9066
9055
|
density: Density;
|
|
9067
9056
|
slim: boolean;
|
|
9068
|
-
valueComparator: typeof deepEqual;
|
|
9069
9057
|
activatable: boolean;
|
|
9070
9058
|
selectable: boolean;
|
|
9071
9059
|
selectStrategy: SelectStrategyProp;
|
|
@@ -9088,6 +9076,7 @@ declare const VAutocomplete: {
|
|
|
9088
9076
|
baseColor?: string | undefined;
|
|
9089
9077
|
bgColor?: string | undefined;
|
|
9090
9078
|
activeColor?: string | undefined;
|
|
9079
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
9091
9080
|
activeClass?: string | undefined;
|
|
9092
9081
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
9093
9082
|
collapseIcon?: IconValue | undefined;
|
|
@@ -9109,7 +9098,6 @@ declare const VAutocomplete: {
|
|
|
9109
9098
|
tile: boolean;
|
|
9110
9099
|
density: Density;
|
|
9111
9100
|
slim: boolean;
|
|
9112
|
-
valueComparator: typeof deepEqual;
|
|
9113
9101
|
activatable: boolean;
|
|
9114
9102
|
selectable: boolean;
|
|
9115
9103
|
selectStrategy: SelectStrategyProp;
|
|
@@ -9133,6 +9121,7 @@ declare const VAutocomplete: {
|
|
|
9133
9121
|
baseColor?: string | undefined;
|
|
9134
9122
|
bgColor?: string | undefined;
|
|
9135
9123
|
activeColor?: string | undefined;
|
|
9124
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
9136
9125
|
activeClass?: string | undefined;
|
|
9137
9126
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
9138
9127
|
collapseIcon?: IconValue | undefined;
|
|
@@ -9144,7 +9133,7 @@ declare const VAutocomplete: {
|
|
|
9144
9133
|
value: boolean;
|
|
9145
9134
|
path: unknown[];
|
|
9146
9135
|
}) => any) | undefined;
|
|
9147
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
9136
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
9148
9137
|
items?: readonly any[] | undefined;
|
|
9149
9138
|
itemTitle?: SelectItemKey<any>;
|
|
9150
9139
|
itemValue?: SelectItemKey<any>;
|
|
@@ -9468,7 +9457,6 @@ declare const VAutocomplete: {
|
|
|
9468
9457
|
rounded: string | number | boolean;
|
|
9469
9458
|
tile: boolean;
|
|
9470
9459
|
density: Density;
|
|
9471
|
-
valueComparator: typeof deepEqual;
|
|
9472
9460
|
clearIcon: IconValue;
|
|
9473
9461
|
centerAffix: boolean;
|
|
9474
9462
|
hideSpinButtons: boolean;
|
|
@@ -9556,7 +9544,6 @@ declare const VAutocomplete: {
|
|
|
9556
9544
|
rules: readonly ValidationRule$1[];
|
|
9557
9545
|
tile: boolean;
|
|
9558
9546
|
density: Density;
|
|
9559
|
-
valueComparator: typeof deepEqual;
|
|
9560
9547
|
clearIcon: IconValue;
|
|
9561
9548
|
hideSpinButtons: boolean;
|
|
9562
9549
|
persistentHint: boolean;
|
|
@@ -9600,6 +9587,7 @@ declare const VAutocomplete: {
|
|
|
9600
9587
|
bgColor?: string | undefined;
|
|
9601
9588
|
prependIcon?: IconValue | undefined;
|
|
9602
9589
|
appendIcon?: IconValue | undefined;
|
|
9590
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
9603
9591
|
prependInnerIcon?: IconValue | undefined;
|
|
9604
9592
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
9605
9593
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -9626,7 +9614,6 @@ declare const VAutocomplete: {
|
|
|
9626
9614
|
tile: boolean;
|
|
9627
9615
|
density: Density;
|
|
9628
9616
|
slim: boolean;
|
|
9629
|
-
valueComparator: typeof deepEqual;
|
|
9630
9617
|
activatable: boolean;
|
|
9631
9618
|
selectable: boolean;
|
|
9632
9619
|
selectStrategy: SelectStrategyProp;
|
|
@@ -9644,7 +9631,6 @@ declare const VAutocomplete: {
|
|
|
9644
9631
|
tile: boolean;
|
|
9645
9632
|
density: Density;
|
|
9646
9633
|
slim: boolean;
|
|
9647
|
-
valueComparator: typeof deepEqual;
|
|
9648
9634
|
activatable: boolean;
|
|
9649
9635
|
selectable: boolean;
|
|
9650
9636
|
selectStrategy: SelectStrategyProp;
|
|
@@ -9667,6 +9653,7 @@ declare const VAutocomplete: {
|
|
|
9667
9653
|
baseColor?: string | undefined;
|
|
9668
9654
|
bgColor?: string | undefined;
|
|
9669
9655
|
activeColor?: string | undefined;
|
|
9656
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
9670
9657
|
activeClass?: string | undefined;
|
|
9671
9658
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
9672
9659
|
collapseIcon?: IconValue | undefined;
|
|
@@ -9688,7 +9675,6 @@ declare const VAutocomplete: {
|
|
|
9688
9675
|
tile: boolean;
|
|
9689
9676
|
density: Density;
|
|
9690
9677
|
slim: boolean;
|
|
9691
|
-
valueComparator: typeof deepEqual;
|
|
9692
9678
|
activatable: boolean;
|
|
9693
9679
|
selectable: boolean;
|
|
9694
9680
|
selectStrategy: SelectStrategyProp;
|
|
@@ -9712,6 +9698,7 @@ declare const VAutocomplete: {
|
|
|
9712
9698
|
baseColor?: string | undefined;
|
|
9713
9699
|
bgColor?: string | undefined;
|
|
9714
9700
|
activeColor?: string | undefined;
|
|
9701
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
9715
9702
|
activeClass?: string | undefined;
|
|
9716
9703
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
9717
9704
|
collapseIcon?: IconValue | undefined;
|
|
@@ -9723,7 +9710,7 @@ declare const VAutocomplete: {
|
|
|
9723
9710
|
value: boolean;
|
|
9724
9711
|
path: unknown[];
|
|
9725
9712
|
}) => any) | undefined;
|
|
9726
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
9713
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
9727
9714
|
items?: readonly any[] | undefined;
|
|
9728
9715
|
itemTitle?: SelectItemKey<any>;
|
|
9729
9716
|
itemValue?: SelectItemKey<any>;
|
|
@@ -10047,7 +10034,6 @@ declare const VAutocomplete: {
|
|
|
10047
10034
|
rounded: string | number | boolean;
|
|
10048
10035
|
tile: boolean;
|
|
10049
10036
|
density: Density;
|
|
10050
|
-
valueComparator: typeof deepEqual;
|
|
10051
10037
|
clearIcon: IconValue;
|
|
10052
10038
|
centerAffix: boolean;
|
|
10053
10039
|
hideSpinButtons: boolean;
|
|
@@ -10100,7 +10086,6 @@ declare const VAutocomplete: {
|
|
|
10100
10086
|
rules: readonly ValidationRule$1[];
|
|
10101
10087
|
tile: boolean;
|
|
10102
10088
|
density: Density;
|
|
10103
|
-
valueComparator: typeof deepEqual;
|
|
10104
10089
|
clearIcon: IconValue;
|
|
10105
10090
|
hideSpinButtons: boolean;
|
|
10106
10091
|
persistentHint: boolean;
|
|
@@ -10144,6 +10129,7 @@ declare const VAutocomplete: {
|
|
|
10144
10129
|
bgColor?: string | undefined;
|
|
10145
10130
|
prependIcon?: IconValue | undefined;
|
|
10146
10131
|
appendIcon?: IconValue | undefined;
|
|
10132
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
10147
10133
|
prependInnerIcon?: IconValue | undefined;
|
|
10148
10134
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
10149
10135
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -10170,7 +10156,6 @@ declare const VAutocomplete: {
|
|
|
10170
10156
|
tile: boolean;
|
|
10171
10157
|
density: Density;
|
|
10172
10158
|
slim: boolean;
|
|
10173
|
-
valueComparator: typeof deepEqual;
|
|
10174
10159
|
activatable: boolean;
|
|
10175
10160
|
selectable: boolean;
|
|
10176
10161
|
selectStrategy: SelectStrategyProp;
|
|
@@ -10188,7 +10173,6 @@ declare const VAutocomplete: {
|
|
|
10188
10173
|
tile: boolean;
|
|
10189
10174
|
density: Density;
|
|
10190
10175
|
slim: boolean;
|
|
10191
|
-
valueComparator: typeof deepEqual;
|
|
10192
10176
|
activatable: boolean;
|
|
10193
10177
|
selectable: boolean;
|
|
10194
10178
|
selectStrategy: SelectStrategyProp;
|
|
@@ -10211,6 +10195,7 @@ declare const VAutocomplete: {
|
|
|
10211
10195
|
baseColor?: string | undefined;
|
|
10212
10196
|
bgColor?: string | undefined;
|
|
10213
10197
|
activeColor?: string | undefined;
|
|
10198
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
10214
10199
|
activeClass?: string | undefined;
|
|
10215
10200
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
10216
10201
|
collapseIcon?: IconValue | undefined;
|
|
@@ -10232,7 +10217,6 @@ declare const VAutocomplete: {
|
|
|
10232
10217
|
tile: boolean;
|
|
10233
10218
|
density: Density;
|
|
10234
10219
|
slim: boolean;
|
|
10235
|
-
valueComparator: typeof deepEqual;
|
|
10236
10220
|
activatable: boolean;
|
|
10237
10221
|
selectable: boolean;
|
|
10238
10222
|
selectStrategy: SelectStrategyProp;
|
|
@@ -10256,6 +10240,7 @@ declare const VAutocomplete: {
|
|
|
10256
10240
|
baseColor?: string | undefined;
|
|
10257
10241
|
bgColor?: string | undefined;
|
|
10258
10242
|
activeColor?: string | undefined;
|
|
10243
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
10259
10244
|
activeClass?: string | undefined;
|
|
10260
10245
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
10261
10246
|
collapseIcon?: IconValue | undefined;
|
|
@@ -10267,7 +10252,7 @@ declare const VAutocomplete: {
|
|
|
10267
10252
|
value: boolean;
|
|
10268
10253
|
path: unknown[];
|
|
10269
10254
|
}) => any) | undefined;
|
|
10270
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
10255
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
10271
10256
|
items?: readonly any[] | undefined;
|
|
10272
10257
|
itemTitle?: SelectItemKey<any>;
|
|
10273
10258
|
itemValue?: SelectItemKey<any>;
|
|
@@ -10596,7 +10581,6 @@ declare const VAutocomplete: {
|
|
|
10596
10581
|
rounded: string | number | boolean;
|
|
10597
10582
|
tile: boolean;
|
|
10598
10583
|
density: Density;
|
|
10599
|
-
valueComparator: typeof deepEqual;
|
|
10600
10584
|
clearIcon: IconValue;
|
|
10601
10585
|
centerAffix: boolean;
|
|
10602
10586
|
hideSpinButtons: boolean;
|
|
@@ -10828,10 +10812,7 @@ declare const VAutocomplete: {
|
|
|
10828
10812
|
default: string;
|
|
10829
10813
|
};
|
|
10830
10814
|
returnObject: BooleanConstructor;
|
|
10831
|
-
valueComparator:
|
|
10832
|
-
type: PropType<typeof deepEqual>;
|
|
10833
|
-
default: typeof deepEqual;
|
|
10834
|
-
};
|
|
10815
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
10835
10816
|
chips: BooleanConstructor;
|
|
10836
10817
|
closableChips: BooleanConstructor;
|
|
10837
10818
|
closeText: {
|
|
@@ -11029,10 +11010,7 @@ declare const VAutocomplete: {
|
|
|
11029
11010
|
default: string;
|
|
11030
11011
|
};
|
|
11031
11012
|
returnObject: BooleanConstructor;
|
|
11032
|
-
valueComparator:
|
|
11033
|
-
type: PropType<typeof deepEqual>;
|
|
11034
|
-
default: typeof deepEqual;
|
|
11035
|
-
};
|
|
11013
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
11036
11014
|
chips: BooleanConstructor;
|
|
11037
11015
|
closableChips: BooleanConstructor;
|
|
11038
11016
|
closeText: {
|
|
@@ -20469,7 +20447,6 @@ declare const VCombobox: {
|
|
|
20469
20447
|
rules: readonly ValidationRule$1[];
|
|
20470
20448
|
tile: boolean;
|
|
20471
20449
|
density: Density;
|
|
20472
|
-
valueComparator: typeof deepEqual;
|
|
20473
20450
|
clearIcon: IconValue;
|
|
20474
20451
|
hideSpinButtons: boolean;
|
|
20475
20452
|
persistentHint: boolean;
|
|
@@ -20513,6 +20490,7 @@ declare const VCombobox: {
|
|
|
20513
20490
|
bgColor?: string | undefined;
|
|
20514
20491
|
prependIcon?: IconValue | undefined;
|
|
20515
20492
|
appendIcon?: IconValue | undefined;
|
|
20493
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
20516
20494
|
prependInnerIcon?: IconValue | undefined;
|
|
20517
20495
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
20518
20496
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -20539,7 +20517,6 @@ declare const VCombobox: {
|
|
|
20539
20517
|
tile: boolean;
|
|
20540
20518
|
density: Density;
|
|
20541
20519
|
slim: boolean;
|
|
20542
|
-
valueComparator: typeof deepEqual;
|
|
20543
20520
|
activatable: boolean;
|
|
20544
20521
|
selectable: boolean;
|
|
20545
20522
|
selectStrategy: SelectStrategyProp;
|
|
@@ -20557,7 +20534,6 @@ declare const VCombobox: {
|
|
|
20557
20534
|
tile: boolean;
|
|
20558
20535
|
density: Density;
|
|
20559
20536
|
slim: boolean;
|
|
20560
|
-
valueComparator: typeof deepEqual;
|
|
20561
20537
|
activatable: boolean;
|
|
20562
20538
|
selectable: boolean;
|
|
20563
20539
|
selectStrategy: SelectStrategyProp;
|
|
@@ -20580,6 +20556,7 @@ declare const VCombobox: {
|
|
|
20580
20556
|
baseColor?: string | undefined;
|
|
20581
20557
|
bgColor?: string | undefined;
|
|
20582
20558
|
activeColor?: string | undefined;
|
|
20559
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
20583
20560
|
activeClass?: string | undefined;
|
|
20584
20561
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
20585
20562
|
collapseIcon?: IconValue | undefined;
|
|
@@ -20601,7 +20578,6 @@ declare const VCombobox: {
|
|
|
20601
20578
|
tile: boolean;
|
|
20602
20579
|
density: Density;
|
|
20603
20580
|
slim: boolean;
|
|
20604
|
-
valueComparator: typeof deepEqual;
|
|
20605
20581
|
activatable: boolean;
|
|
20606
20582
|
selectable: boolean;
|
|
20607
20583
|
selectStrategy: SelectStrategyProp;
|
|
@@ -20625,6 +20601,7 @@ declare const VCombobox: {
|
|
|
20625
20601
|
baseColor?: string | undefined;
|
|
20626
20602
|
bgColor?: string | undefined;
|
|
20627
20603
|
activeColor?: string | undefined;
|
|
20604
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
20628
20605
|
activeClass?: string | undefined;
|
|
20629
20606
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
20630
20607
|
collapseIcon?: IconValue | undefined;
|
|
@@ -20636,7 +20613,7 @@ declare const VCombobox: {
|
|
|
20636
20613
|
value: boolean;
|
|
20637
20614
|
path: unknown[];
|
|
20638
20615
|
}) => any) | undefined;
|
|
20639
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
20616
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
20640
20617
|
items?: readonly any[] | undefined;
|
|
20641
20618
|
itemTitle?: SelectItemKey<any>;
|
|
20642
20619
|
itemValue?: SelectItemKey<any>;
|
|
@@ -20964,7 +20941,6 @@ declare const VCombobox: {
|
|
|
20964
20941
|
rules: readonly ValidationRule$1[];
|
|
20965
20942
|
tile: boolean;
|
|
20966
20943
|
density: Density;
|
|
20967
|
-
valueComparator: typeof deepEqual;
|
|
20968
20944
|
clearIcon: IconValue;
|
|
20969
20945
|
hideSpinButtons: boolean;
|
|
20970
20946
|
persistentHint: boolean;
|
|
@@ -21008,6 +20984,7 @@ declare const VCombobox: {
|
|
|
21008
20984
|
bgColor?: string | undefined;
|
|
21009
20985
|
prependIcon?: IconValue | undefined;
|
|
21010
20986
|
appendIcon?: IconValue | undefined;
|
|
20987
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
21011
20988
|
prependInnerIcon?: IconValue | undefined;
|
|
21012
20989
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
21013
20990
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -21034,7 +21011,6 @@ declare const VCombobox: {
|
|
|
21034
21011
|
tile: boolean;
|
|
21035
21012
|
density: Density;
|
|
21036
21013
|
slim: boolean;
|
|
21037
|
-
valueComparator: typeof deepEqual;
|
|
21038
21014
|
activatable: boolean;
|
|
21039
21015
|
selectable: boolean;
|
|
21040
21016
|
selectStrategy: SelectStrategyProp;
|
|
@@ -21052,7 +21028,6 @@ declare const VCombobox: {
|
|
|
21052
21028
|
tile: boolean;
|
|
21053
21029
|
density: Density;
|
|
21054
21030
|
slim: boolean;
|
|
21055
|
-
valueComparator: typeof deepEqual;
|
|
21056
21031
|
activatable: boolean;
|
|
21057
21032
|
selectable: boolean;
|
|
21058
21033
|
selectStrategy: SelectStrategyProp;
|
|
@@ -21075,6 +21050,7 @@ declare const VCombobox: {
|
|
|
21075
21050
|
baseColor?: string | undefined;
|
|
21076
21051
|
bgColor?: string | undefined;
|
|
21077
21052
|
activeColor?: string | undefined;
|
|
21053
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
21078
21054
|
activeClass?: string | undefined;
|
|
21079
21055
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
21080
21056
|
collapseIcon?: IconValue | undefined;
|
|
@@ -21096,7 +21072,6 @@ declare const VCombobox: {
|
|
|
21096
21072
|
tile: boolean;
|
|
21097
21073
|
density: Density;
|
|
21098
21074
|
slim: boolean;
|
|
21099
|
-
valueComparator: typeof deepEqual;
|
|
21100
21075
|
activatable: boolean;
|
|
21101
21076
|
selectable: boolean;
|
|
21102
21077
|
selectStrategy: SelectStrategyProp;
|
|
@@ -21120,6 +21095,7 @@ declare const VCombobox: {
|
|
|
21120
21095
|
baseColor?: string | undefined;
|
|
21121
21096
|
bgColor?: string | undefined;
|
|
21122
21097
|
activeColor?: string | undefined;
|
|
21098
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
21123
21099
|
activeClass?: string | undefined;
|
|
21124
21100
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
21125
21101
|
collapseIcon?: IconValue | undefined;
|
|
@@ -21131,7 +21107,7 @@ declare const VCombobox: {
|
|
|
21131
21107
|
value: boolean;
|
|
21132
21108
|
path: unknown[];
|
|
21133
21109
|
}) => any) | undefined;
|
|
21134
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
21110
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
21135
21111
|
items?: readonly any[] | undefined;
|
|
21136
21112
|
itemTitle?: SelectItemKey<any>;
|
|
21137
21113
|
itemValue?: SelectItemKey<any>;
|
|
@@ -21455,7 +21431,6 @@ declare const VCombobox: {
|
|
|
21455
21431
|
rounded: string | number | boolean;
|
|
21456
21432
|
tile: boolean;
|
|
21457
21433
|
density: Density;
|
|
21458
|
-
valueComparator: typeof deepEqual;
|
|
21459
21434
|
clearIcon: IconValue;
|
|
21460
21435
|
centerAffix: boolean;
|
|
21461
21436
|
hideSpinButtons: boolean;
|
|
@@ -21543,7 +21518,6 @@ declare const VCombobox: {
|
|
|
21543
21518
|
rules: readonly ValidationRule$1[];
|
|
21544
21519
|
tile: boolean;
|
|
21545
21520
|
density: Density;
|
|
21546
|
-
valueComparator: typeof deepEqual;
|
|
21547
21521
|
clearIcon: IconValue;
|
|
21548
21522
|
hideSpinButtons: boolean;
|
|
21549
21523
|
persistentHint: boolean;
|
|
@@ -21587,6 +21561,7 @@ declare const VCombobox: {
|
|
|
21587
21561
|
bgColor?: string | undefined;
|
|
21588
21562
|
prependIcon?: IconValue | undefined;
|
|
21589
21563
|
appendIcon?: IconValue | undefined;
|
|
21564
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
21590
21565
|
prependInnerIcon?: IconValue | undefined;
|
|
21591
21566
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
21592
21567
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -21613,7 +21588,6 @@ declare const VCombobox: {
|
|
|
21613
21588
|
tile: boolean;
|
|
21614
21589
|
density: Density;
|
|
21615
21590
|
slim: boolean;
|
|
21616
|
-
valueComparator: typeof deepEqual;
|
|
21617
21591
|
activatable: boolean;
|
|
21618
21592
|
selectable: boolean;
|
|
21619
21593
|
selectStrategy: SelectStrategyProp;
|
|
@@ -21631,7 +21605,6 @@ declare const VCombobox: {
|
|
|
21631
21605
|
tile: boolean;
|
|
21632
21606
|
density: Density;
|
|
21633
21607
|
slim: boolean;
|
|
21634
|
-
valueComparator: typeof deepEqual;
|
|
21635
21608
|
activatable: boolean;
|
|
21636
21609
|
selectable: boolean;
|
|
21637
21610
|
selectStrategy: SelectStrategyProp;
|
|
@@ -21654,6 +21627,7 @@ declare const VCombobox: {
|
|
|
21654
21627
|
baseColor?: string | undefined;
|
|
21655
21628
|
bgColor?: string | undefined;
|
|
21656
21629
|
activeColor?: string | undefined;
|
|
21630
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
21657
21631
|
activeClass?: string | undefined;
|
|
21658
21632
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
21659
21633
|
collapseIcon?: IconValue | undefined;
|
|
@@ -21675,7 +21649,6 @@ declare const VCombobox: {
|
|
|
21675
21649
|
tile: boolean;
|
|
21676
21650
|
density: Density;
|
|
21677
21651
|
slim: boolean;
|
|
21678
|
-
valueComparator: typeof deepEqual;
|
|
21679
21652
|
activatable: boolean;
|
|
21680
21653
|
selectable: boolean;
|
|
21681
21654
|
selectStrategy: SelectStrategyProp;
|
|
@@ -21699,6 +21672,7 @@ declare const VCombobox: {
|
|
|
21699
21672
|
baseColor?: string | undefined;
|
|
21700
21673
|
bgColor?: string | undefined;
|
|
21701
21674
|
activeColor?: string | undefined;
|
|
21675
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
21702
21676
|
activeClass?: string | undefined;
|
|
21703
21677
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
21704
21678
|
collapseIcon?: IconValue | undefined;
|
|
@@ -21710,7 +21684,7 @@ declare const VCombobox: {
|
|
|
21710
21684
|
value: boolean;
|
|
21711
21685
|
path: unknown[];
|
|
21712
21686
|
}) => any) | undefined;
|
|
21713
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
21687
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
21714
21688
|
items?: readonly any[] | undefined;
|
|
21715
21689
|
itemTitle?: SelectItemKey<any>;
|
|
21716
21690
|
itemValue?: SelectItemKey<any>;
|
|
@@ -22034,7 +22008,6 @@ declare const VCombobox: {
|
|
|
22034
22008
|
rounded: string | number | boolean;
|
|
22035
22009
|
tile: boolean;
|
|
22036
22010
|
density: Density;
|
|
22037
|
-
valueComparator: typeof deepEqual;
|
|
22038
22011
|
clearIcon: IconValue;
|
|
22039
22012
|
centerAffix: boolean;
|
|
22040
22013
|
hideSpinButtons: boolean;
|
|
@@ -22087,7 +22060,6 @@ declare const VCombobox: {
|
|
|
22087
22060
|
rules: readonly ValidationRule$1[];
|
|
22088
22061
|
tile: boolean;
|
|
22089
22062
|
density: Density;
|
|
22090
|
-
valueComparator: typeof deepEqual;
|
|
22091
22063
|
clearIcon: IconValue;
|
|
22092
22064
|
hideSpinButtons: boolean;
|
|
22093
22065
|
persistentHint: boolean;
|
|
@@ -22131,6 +22103,7 @@ declare const VCombobox: {
|
|
|
22131
22103
|
bgColor?: string | undefined;
|
|
22132
22104
|
prependIcon?: IconValue | undefined;
|
|
22133
22105
|
appendIcon?: IconValue | undefined;
|
|
22106
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
22134
22107
|
prependInnerIcon?: IconValue | undefined;
|
|
22135
22108
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
22136
22109
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -22157,7 +22130,6 @@ declare const VCombobox: {
|
|
|
22157
22130
|
tile: boolean;
|
|
22158
22131
|
density: Density;
|
|
22159
22132
|
slim: boolean;
|
|
22160
|
-
valueComparator: typeof deepEqual;
|
|
22161
22133
|
activatable: boolean;
|
|
22162
22134
|
selectable: boolean;
|
|
22163
22135
|
selectStrategy: SelectStrategyProp;
|
|
@@ -22175,7 +22147,6 @@ declare const VCombobox: {
|
|
|
22175
22147
|
tile: boolean;
|
|
22176
22148
|
density: Density;
|
|
22177
22149
|
slim: boolean;
|
|
22178
|
-
valueComparator: typeof deepEqual;
|
|
22179
22150
|
activatable: boolean;
|
|
22180
22151
|
selectable: boolean;
|
|
22181
22152
|
selectStrategy: SelectStrategyProp;
|
|
@@ -22198,6 +22169,7 @@ declare const VCombobox: {
|
|
|
22198
22169
|
baseColor?: string | undefined;
|
|
22199
22170
|
bgColor?: string | undefined;
|
|
22200
22171
|
activeColor?: string | undefined;
|
|
22172
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
22201
22173
|
activeClass?: string | undefined;
|
|
22202
22174
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
22203
22175
|
collapseIcon?: IconValue | undefined;
|
|
@@ -22219,7 +22191,6 @@ declare const VCombobox: {
|
|
|
22219
22191
|
tile: boolean;
|
|
22220
22192
|
density: Density;
|
|
22221
22193
|
slim: boolean;
|
|
22222
|
-
valueComparator: typeof deepEqual;
|
|
22223
22194
|
activatable: boolean;
|
|
22224
22195
|
selectable: boolean;
|
|
22225
22196
|
selectStrategy: SelectStrategyProp;
|
|
@@ -22243,6 +22214,7 @@ declare const VCombobox: {
|
|
|
22243
22214
|
baseColor?: string | undefined;
|
|
22244
22215
|
bgColor?: string | undefined;
|
|
22245
22216
|
activeColor?: string | undefined;
|
|
22217
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
22246
22218
|
activeClass?: string | undefined;
|
|
22247
22219
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
22248
22220
|
collapseIcon?: IconValue | undefined;
|
|
@@ -22254,7 +22226,7 @@ declare const VCombobox: {
|
|
|
22254
22226
|
value: boolean;
|
|
22255
22227
|
path: unknown[];
|
|
22256
22228
|
}) => any) | undefined;
|
|
22257
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
22229
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
22258
22230
|
items?: readonly any[] | undefined;
|
|
22259
22231
|
itemTitle?: SelectItemKey<any>;
|
|
22260
22232
|
itemValue?: SelectItemKey<any>;
|
|
@@ -22583,7 +22555,6 @@ declare const VCombobox: {
|
|
|
22583
22555
|
rounded: string | number | boolean;
|
|
22584
22556
|
tile: boolean;
|
|
22585
22557
|
density: Density;
|
|
22586
|
-
valueComparator: typeof deepEqual;
|
|
22587
22558
|
clearIcon: IconValue;
|
|
22588
22559
|
centerAffix: boolean;
|
|
22589
22560
|
hideSpinButtons: boolean;
|
|
@@ -22818,10 +22789,7 @@ declare const VCombobox: {
|
|
|
22818
22789
|
type: PropType<boolean>;
|
|
22819
22790
|
default: boolean;
|
|
22820
22791
|
};
|
|
22821
|
-
valueComparator:
|
|
22822
|
-
type: PropType<typeof deepEqual>;
|
|
22823
|
-
default: typeof deepEqual;
|
|
22824
|
-
};
|
|
22792
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
22825
22793
|
chips: BooleanConstructor;
|
|
22826
22794
|
closableChips: BooleanConstructor;
|
|
22827
22795
|
closeText: {
|
|
@@ -23028,10 +22996,7 @@ declare const VCombobox: {
|
|
|
23028
22996
|
type: PropType<boolean>;
|
|
23029
22997
|
default: boolean;
|
|
23030
22998
|
};
|
|
23031
|
-
valueComparator:
|
|
23032
|
-
type: PropType<typeof deepEqual>;
|
|
23033
|
-
default: typeof deepEqual;
|
|
23034
|
-
};
|
|
22999
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
23035
23000
|
chips: BooleanConstructor;
|
|
23036
23001
|
closableChips: BooleanConstructor;
|
|
23037
23002
|
closeText: {
|
|
@@ -28075,7 +28040,6 @@ declare const VDatePicker: {
|
|
|
28075
28040
|
bgColor?: string | undefined;
|
|
28076
28041
|
firstDayOfWeek?: string | number | undefined;
|
|
28077
28042
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
28078
|
-
displayValue?: unknown;
|
|
28079
28043
|
} & {
|
|
28080
28044
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
28081
28045
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
|
@@ -28129,7 +28093,6 @@ declare const VDatePicker: {
|
|
|
28129
28093
|
bgColor?: string | undefined;
|
|
28130
28094
|
firstDayOfWeek?: string | number | undefined;
|
|
28131
28095
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
28132
|
-
displayValue?: unknown;
|
|
28133
28096
|
} & {
|
|
28134
28097
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
28135
28098
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
|
@@ -28215,7 +28178,6 @@ declare const VDatePicker: {
|
|
|
28215
28178
|
bgColor?: string | undefined;
|
|
28216
28179
|
firstDayOfWeek?: string | number | undefined;
|
|
28217
28180
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
28218
|
-
displayValue?: unknown;
|
|
28219
28181
|
} & {
|
|
28220
28182
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
28221
28183
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
|
@@ -28290,7 +28252,6 @@ declare const VDatePicker: {
|
|
|
28290
28252
|
bgColor?: string | undefined;
|
|
28291
28253
|
firstDayOfWeek?: string | number | undefined;
|
|
28292
28254
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
28293
|
-
displayValue?: unknown;
|
|
28294
28255
|
} & {
|
|
28295
28256
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
|
28296
28257
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
|
@@ -28378,9 +28339,7 @@ declare const VDatePicker: {
|
|
|
28378
28339
|
max: vue.PropType<unknown>;
|
|
28379
28340
|
min: vue.PropType<unknown>;
|
|
28380
28341
|
year: NumberConstructor;
|
|
28381
|
-
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28382
28342
|
disabled: BooleanConstructor;
|
|
28383
|
-
displayValue: vue.PropType<unknown>;
|
|
28384
28343
|
month: (StringConstructor | NumberConstructor)[];
|
|
28385
28344
|
showAdjacentMonths: BooleanConstructor;
|
|
28386
28345
|
weekdays: {
|
|
@@ -28410,6 +28369,7 @@ declare const VDatePicker: {
|
|
|
28410
28369
|
default: NonNullable<"static" | "dynamic">;
|
|
28411
28370
|
};
|
|
28412
28371
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
|
28372
|
+
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28413
28373
|
hideWeekdays: BooleanConstructor;
|
|
28414
28374
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
|
28415
28375
|
showWeek: BooleanConstructor;
|
|
@@ -28490,9 +28450,7 @@ declare const VDatePicker: {
|
|
|
28490
28450
|
max: vue.PropType<unknown>;
|
|
28491
28451
|
min: vue.PropType<unknown>;
|
|
28492
28452
|
year: NumberConstructor;
|
|
28493
|
-
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28494
28453
|
disabled: BooleanConstructor;
|
|
28495
|
-
displayValue: vue.PropType<unknown>;
|
|
28496
28454
|
month: (StringConstructor | NumberConstructor)[];
|
|
28497
28455
|
showAdjacentMonths: BooleanConstructor;
|
|
28498
28456
|
weekdays: {
|
|
@@ -28522,6 +28480,7 @@ declare const VDatePicker: {
|
|
|
28522
28480
|
default: NonNullable<"static" | "dynamic">;
|
|
28523
28481
|
};
|
|
28524
28482
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
|
28483
|
+
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28525
28484
|
hideWeekdays: BooleanConstructor;
|
|
28526
28485
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
|
28527
28486
|
showWeek: BooleanConstructor;
|
|
@@ -28918,7 +28877,6 @@ declare const VDatePickerMonth: {
|
|
|
28918
28877
|
modelValue?: unknown[] | undefined;
|
|
28919
28878
|
firstDayOfWeek?: string | number | undefined;
|
|
28920
28879
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
28921
|
-
displayValue?: unknown;
|
|
28922
28880
|
} & {
|
|
28923
28881
|
$children?: {} | vue.VNodeChild | {
|
|
28924
28882
|
day?: ((arg: {
|
|
@@ -28973,7 +28931,6 @@ declare const VDatePickerMonth: {
|
|
|
28973
28931
|
modelValue?: unknown[] | undefined;
|
|
28974
28932
|
firstDayOfWeek?: string | number | undefined;
|
|
28975
28933
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
28976
|
-
displayValue?: unknown;
|
|
28977
28934
|
} & {
|
|
28978
28935
|
$children?: {} | vue.VNodeChild | {
|
|
28979
28936
|
day?: ((arg: {
|
|
@@ -29048,7 +29005,6 @@ declare const VDatePickerMonth: {
|
|
|
29048
29005
|
modelValue?: unknown[] | undefined;
|
|
29049
29006
|
firstDayOfWeek?: string | number | undefined;
|
|
29050
29007
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
29051
|
-
displayValue?: unknown;
|
|
29052
29008
|
} & {
|
|
29053
29009
|
$children?: {} | vue.VNodeChild | {
|
|
29054
29010
|
day?: ((arg: {
|
|
@@ -29112,7 +29068,6 @@ declare const VDatePickerMonth: {
|
|
|
29112
29068
|
modelValue?: unknown[] | undefined;
|
|
29113
29069
|
firstDayOfWeek?: string | number | undefined;
|
|
29114
29070
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
29115
|
-
displayValue?: unknown;
|
|
29116
29071
|
} & {
|
|
29117
29072
|
$children?: {} | vue.VNodeChild | {
|
|
29118
29073
|
day?: ((arg: {
|
|
@@ -29166,15 +29121,13 @@ declare const VDatePickerMonth: {
|
|
|
29166
29121
|
i: number;
|
|
29167
29122
|
}) => vue.VNode[];
|
|
29168
29123
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
29169
|
-
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
29170
|
-
disabled: BooleanConstructor;
|
|
29171
|
-
displayValue: PropType<unknown>;
|
|
29172
|
-
modelValue: PropType<unknown[]>;
|
|
29173
|
-
month: (StringConstructor | NumberConstructor)[];
|
|
29174
29124
|
max: PropType<unknown>;
|
|
29175
29125
|
min: PropType<unknown>;
|
|
29176
|
-
|
|
29126
|
+
disabled: BooleanConstructor;
|
|
29127
|
+
month: (StringConstructor | NumberConstructor)[];
|
|
29177
29128
|
year: (StringConstructor | NumberConstructor)[];
|
|
29129
|
+
modelValue: PropType<unknown[]>;
|
|
29130
|
+
showAdjacentMonths: BooleanConstructor;
|
|
29178
29131
|
weekdays: {
|
|
29179
29132
|
type: {
|
|
29180
29133
|
(arrayLength: number): number[];
|
|
@@ -29199,6 +29152,7 @@ declare const VDatePickerMonth: {
|
|
|
29199
29152
|
default: string;
|
|
29200
29153
|
};
|
|
29201
29154
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
|
29155
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
29202
29156
|
color: StringConstructor;
|
|
29203
29157
|
hideWeekdays: BooleanConstructor;
|
|
29204
29158
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
|
@@ -29212,15 +29166,13 @@ declare const VDatePickerMonth: {
|
|
|
29212
29166
|
default: string;
|
|
29213
29167
|
};
|
|
29214
29168
|
}, vue.ExtractPropTypes<{
|
|
29215
|
-
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
29216
|
-
disabled: BooleanConstructor;
|
|
29217
|
-
displayValue: PropType<unknown>;
|
|
29218
|
-
modelValue: PropType<unknown[]>;
|
|
29219
|
-
month: (StringConstructor | NumberConstructor)[];
|
|
29220
29169
|
max: PropType<unknown>;
|
|
29221
29170
|
min: PropType<unknown>;
|
|
29222
|
-
|
|
29171
|
+
disabled: BooleanConstructor;
|
|
29172
|
+
month: (StringConstructor | NumberConstructor)[];
|
|
29223
29173
|
year: (StringConstructor | NumberConstructor)[];
|
|
29174
|
+
modelValue: PropType<unknown[]>;
|
|
29175
|
+
showAdjacentMonths: BooleanConstructor;
|
|
29224
29176
|
weekdays: {
|
|
29225
29177
|
type: {
|
|
29226
29178
|
(arrayLength: number): number[];
|
|
@@ -29245,6 +29197,7 @@ declare const VDatePickerMonth: {
|
|
|
29245
29197
|
default: string;
|
|
29246
29198
|
};
|
|
29247
29199
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
|
29200
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
29248
29201
|
color: StringConstructor;
|
|
29249
29202
|
hideWeekdays: BooleanConstructor;
|
|
29250
29203
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
|
@@ -45142,7 +45095,6 @@ declare const VSelect: {
|
|
|
45142
45095
|
rules: readonly ValidationRule$1[];
|
|
45143
45096
|
tile: boolean;
|
|
45144
45097
|
density: Density;
|
|
45145
|
-
valueComparator: typeof deepEqual;
|
|
45146
45098
|
clearIcon: IconValue;
|
|
45147
45099
|
hideSpinButtons: boolean;
|
|
45148
45100
|
persistentHint: boolean;
|
|
@@ -45181,6 +45133,7 @@ declare const VSelect: {
|
|
|
45181
45133
|
bgColor?: string | undefined;
|
|
45182
45134
|
prependIcon?: IconValue | undefined;
|
|
45183
45135
|
appendIcon?: IconValue | undefined;
|
|
45136
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
45184
45137
|
prependInnerIcon?: IconValue | undefined;
|
|
45185
45138
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
45186
45139
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -45205,7 +45158,6 @@ declare const VSelect: {
|
|
|
45205
45158
|
tile: boolean;
|
|
45206
45159
|
density: Density;
|
|
45207
45160
|
slim: boolean;
|
|
45208
|
-
valueComparator: typeof deepEqual;
|
|
45209
45161
|
activatable: boolean;
|
|
45210
45162
|
selectable: boolean;
|
|
45211
45163
|
selectStrategy: SelectStrategyProp;
|
|
@@ -45223,7 +45175,6 @@ declare const VSelect: {
|
|
|
45223
45175
|
tile: boolean;
|
|
45224
45176
|
density: Density;
|
|
45225
45177
|
slim: boolean;
|
|
45226
|
-
valueComparator: typeof deepEqual;
|
|
45227
45178
|
activatable: boolean;
|
|
45228
45179
|
selectable: boolean;
|
|
45229
45180
|
selectStrategy: SelectStrategyProp;
|
|
@@ -45246,6 +45197,7 @@ declare const VSelect: {
|
|
|
45246
45197
|
baseColor?: string | undefined;
|
|
45247
45198
|
bgColor?: string | undefined;
|
|
45248
45199
|
activeColor?: string | undefined;
|
|
45200
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
45249
45201
|
activeClass?: string | undefined;
|
|
45250
45202
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
45251
45203
|
collapseIcon?: IconValue | undefined;
|
|
@@ -45267,7 +45219,6 @@ declare const VSelect: {
|
|
|
45267
45219
|
tile: boolean;
|
|
45268
45220
|
density: Density;
|
|
45269
45221
|
slim: boolean;
|
|
45270
|
-
valueComparator: typeof deepEqual;
|
|
45271
45222
|
activatable: boolean;
|
|
45272
45223
|
selectable: boolean;
|
|
45273
45224
|
selectStrategy: SelectStrategyProp;
|
|
@@ -45291,6 +45242,7 @@ declare const VSelect: {
|
|
|
45291
45242
|
baseColor?: string | undefined;
|
|
45292
45243
|
bgColor?: string | undefined;
|
|
45293
45244
|
activeColor?: string | undefined;
|
|
45245
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
45294
45246
|
activeClass?: string | undefined;
|
|
45295
45247
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
45296
45248
|
collapseIcon?: IconValue | undefined;
|
|
@@ -45302,7 +45254,7 @@ declare const VSelect: {
|
|
|
45302
45254
|
value: boolean;
|
|
45303
45255
|
path: unknown[];
|
|
45304
45256
|
}) => any) | undefined;
|
|
45305
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
45257
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
45306
45258
|
items?: readonly any[] | undefined;
|
|
45307
45259
|
itemTitle?: SelectItemKey<any>;
|
|
45308
45260
|
itemValue?: SelectItemKey<any>;
|
|
@@ -45629,7 +45581,6 @@ declare const VSelect: {
|
|
|
45629
45581
|
rules: readonly ValidationRule$1[];
|
|
45630
45582
|
tile: boolean;
|
|
45631
45583
|
density: Density;
|
|
45632
|
-
valueComparator: typeof deepEqual;
|
|
45633
45584
|
clearIcon: IconValue;
|
|
45634
45585
|
hideSpinButtons: boolean;
|
|
45635
45586
|
persistentHint: boolean;
|
|
@@ -45668,6 +45619,7 @@ declare const VSelect: {
|
|
|
45668
45619
|
bgColor?: string | undefined;
|
|
45669
45620
|
prependIcon?: IconValue | undefined;
|
|
45670
45621
|
appendIcon?: IconValue | undefined;
|
|
45622
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
45671
45623
|
prependInnerIcon?: IconValue | undefined;
|
|
45672
45624
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
45673
45625
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -45692,7 +45644,6 @@ declare const VSelect: {
|
|
|
45692
45644
|
tile: boolean;
|
|
45693
45645
|
density: Density;
|
|
45694
45646
|
slim: boolean;
|
|
45695
|
-
valueComparator: typeof deepEqual;
|
|
45696
45647
|
activatable: boolean;
|
|
45697
45648
|
selectable: boolean;
|
|
45698
45649
|
selectStrategy: SelectStrategyProp;
|
|
@@ -45710,7 +45661,6 @@ declare const VSelect: {
|
|
|
45710
45661
|
tile: boolean;
|
|
45711
45662
|
density: Density;
|
|
45712
45663
|
slim: boolean;
|
|
45713
|
-
valueComparator: typeof deepEqual;
|
|
45714
45664
|
activatable: boolean;
|
|
45715
45665
|
selectable: boolean;
|
|
45716
45666
|
selectStrategy: SelectStrategyProp;
|
|
@@ -45733,6 +45683,7 @@ declare const VSelect: {
|
|
|
45733
45683
|
baseColor?: string | undefined;
|
|
45734
45684
|
bgColor?: string | undefined;
|
|
45735
45685
|
activeColor?: string | undefined;
|
|
45686
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
45736
45687
|
activeClass?: string | undefined;
|
|
45737
45688
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
45738
45689
|
collapseIcon?: IconValue | undefined;
|
|
@@ -45754,7 +45705,6 @@ declare const VSelect: {
|
|
|
45754
45705
|
tile: boolean;
|
|
45755
45706
|
density: Density;
|
|
45756
45707
|
slim: boolean;
|
|
45757
|
-
valueComparator: typeof deepEqual;
|
|
45758
45708
|
activatable: boolean;
|
|
45759
45709
|
selectable: boolean;
|
|
45760
45710
|
selectStrategy: SelectStrategyProp;
|
|
@@ -45778,6 +45728,7 @@ declare const VSelect: {
|
|
|
45778
45728
|
baseColor?: string | undefined;
|
|
45779
45729
|
bgColor?: string | undefined;
|
|
45780
45730
|
activeColor?: string | undefined;
|
|
45731
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
45781
45732
|
activeClass?: string | undefined;
|
|
45782
45733
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
45783
45734
|
collapseIcon?: IconValue | undefined;
|
|
@@ -45789,7 +45740,7 @@ declare const VSelect: {
|
|
|
45789
45740
|
value: boolean;
|
|
45790
45741
|
path: unknown[];
|
|
45791
45742
|
}) => any) | undefined;
|
|
45792
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
45743
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
45793
45744
|
items?: readonly any[] | undefined;
|
|
45794
45745
|
itemTitle?: SelectItemKey<any>;
|
|
45795
45746
|
itemValue?: SelectItemKey<any>;
|
|
@@ -46113,7 +46064,6 @@ declare const VSelect: {
|
|
|
46113
46064
|
rounded: string | number | boolean;
|
|
46114
46065
|
tile: boolean;
|
|
46115
46066
|
density: Density;
|
|
46116
|
-
valueComparator: typeof deepEqual;
|
|
46117
46067
|
clearIcon: IconValue;
|
|
46118
46068
|
centerAffix: boolean;
|
|
46119
46069
|
hideSpinButtons: boolean;
|
|
@@ -46199,7 +46149,6 @@ declare const VSelect: {
|
|
|
46199
46149
|
rules: readonly ValidationRule$1[];
|
|
46200
46150
|
tile: boolean;
|
|
46201
46151
|
density: Density;
|
|
46202
|
-
valueComparator: typeof deepEqual;
|
|
46203
46152
|
clearIcon: IconValue;
|
|
46204
46153
|
hideSpinButtons: boolean;
|
|
46205
46154
|
persistentHint: boolean;
|
|
@@ -46238,6 +46187,7 @@ declare const VSelect: {
|
|
|
46238
46187
|
bgColor?: string | undefined;
|
|
46239
46188
|
prependIcon?: IconValue | undefined;
|
|
46240
46189
|
appendIcon?: IconValue | undefined;
|
|
46190
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
46241
46191
|
prependInnerIcon?: IconValue | undefined;
|
|
46242
46192
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
46243
46193
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -46262,7 +46212,6 @@ declare const VSelect: {
|
|
|
46262
46212
|
tile: boolean;
|
|
46263
46213
|
density: Density;
|
|
46264
46214
|
slim: boolean;
|
|
46265
|
-
valueComparator: typeof deepEqual;
|
|
46266
46215
|
activatable: boolean;
|
|
46267
46216
|
selectable: boolean;
|
|
46268
46217
|
selectStrategy: SelectStrategyProp;
|
|
@@ -46280,7 +46229,6 @@ declare const VSelect: {
|
|
|
46280
46229
|
tile: boolean;
|
|
46281
46230
|
density: Density;
|
|
46282
46231
|
slim: boolean;
|
|
46283
|
-
valueComparator: typeof deepEqual;
|
|
46284
46232
|
activatable: boolean;
|
|
46285
46233
|
selectable: boolean;
|
|
46286
46234
|
selectStrategy: SelectStrategyProp;
|
|
@@ -46303,6 +46251,7 @@ declare const VSelect: {
|
|
|
46303
46251
|
baseColor?: string | undefined;
|
|
46304
46252
|
bgColor?: string | undefined;
|
|
46305
46253
|
activeColor?: string | undefined;
|
|
46254
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
46306
46255
|
activeClass?: string | undefined;
|
|
46307
46256
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
46308
46257
|
collapseIcon?: IconValue | undefined;
|
|
@@ -46324,7 +46273,6 @@ declare const VSelect: {
|
|
|
46324
46273
|
tile: boolean;
|
|
46325
46274
|
density: Density;
|
|
46326
46275
|
slim: boolean;
|
|
46327
|
-
valueComparator: typeof deepEqual;
|
|
46328
46276
|
activatable: boolean;
|
|
46329
46277
|
selectable: boolean;
|
|
46330
46278
|
selectStrategy: SelectStrategyProp;
|
|
@@ -46348,6 +46296,7 @@ declare const VSelect: {
|
|
|
46348
46296
|
baseColor?: string | undefined;
|
|
46349
46297
|
bgColor?: string | undefined;
|
|
46350
46298
|
activeColor?: string | undefined;
|
|
46299
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
46351
46300
|
activeClass?: string | undefined;
|
|
46352
46301
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
46353
46302
|
collapseIcon?: IconValue | undefined;
|
|
@@ -46359,7 +46308,7 @@ declare const VSelect: {
|
|
|
46359
46308
|
value: boolean;
|
|
46360
46309
|
path: unknown[];
|
|
46361
46310
|
}) => any) | undefined;
|
|
46362
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
46311
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
46363
46312
|
items?: readonly any[] | undefined;
|
|
46364
46313
|
itemTitle?: SelectItemKey<any>;
|
|
46365
46314
|
itemValue?: SelectItemKey<any>;
|
|
@@ -46683,7 +46632,6 @@ declare const VSelect: {
|
|
|
46683
46632
|
rounded: string | number | boolean;
|
|
46684
46633
|
tile: boolean;
|
|
46685
46634
|
density: Density;
|
|
46686
|
-
valueComparator: typeof deepEqual;
|
|
46687
46635
|
clearIcon: IconValue;
|
|
46688
46636
|
centerAffix: boolean;
|
|
46689
46637
|
hideSpinButtons: boolean;
|
|
@@ -46734,7 +46682,6 @@ declare const VSelect: {
|
|
|
46734
46682
|
rules: readonly ValidationRule$1[];
|
|
46735
46683
|
tile: boolean;
|
|
46736
46684
|
density: Density;
|
|
46737
|
-
valueComparator: typeof deepEqual;
|
|
46738
46685
|
clearIcon: IconValue;
|
|
46739
46686
|
hideSpinButtons: boolean;
|
|
46740
46687
|
persistentHint: boolean;
|
|
@@ -46773,6 +46720,7 @@ declare const VSelect: {
|
|
|
46773
46720
|
bgColor?: string | undefined;
|
|
46774
46721
|
prependIcon?: IconValue | undefined;
|
|
46775
46722
|
appendIcon?: IconValue | undefined;
|
|
46723
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
46776
46724
|
prependInnerIcon?: IconValue | undefined;
|
|
46777
46725
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
46778
46726
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -46797,7 +46745,6 @@ declare const VSelect: {
|
|
|
46797
46745
|
tile: boolean;
|
|
46798
46746
|
density: Density;
|
|
46799
46747
|
slim: boolean;
|
|
46800
|
-
valueComparator: typeof deepEqual;
|
|
46801
46748
|
activatable: boolean;
|
|
46802
46749
|
selectable: boolean;
|
|
46803
46750
|
selectStrategy: SelectStrategyProp;
|
|
@@ -46815,7 +46762,6 @@ declare const VSelect: {
|
|
|
46815
46762
|
tile: boolean;
|
|
46816
46763
|
density: Density;
|
|
46817
46764
|
slim: boolean;
|
|
46818
|
-
valueComparator: typeof deepEqual;
|
|
46819
46765
|
activatable: boolean;
|
|
46820
46766
|
selectable: boolean;
|
|
46821
46767
|
selectStrategy: SelectStrategyProp;
|
|
@@ -46838,6 +46784,7 @@ declare const VSelect: {
|
|
|
46838
46784
|
baseColor?: string | undefined;
|
|
46839
46785
|
bgColor?: string | undefined;
|
|
46840
46786
|
activeColor?: string | undefined;
|
|
46787
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
46841
46788
|
activeClass?: string | undefined;
|
|
46842
46789
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
46843
46790
|
collapseIcon?: IconValue | undefined;
|
|
@@ -46859,7 +46806,6 @@ declare const VSelect: {
|
|
|
46859
46806
|
tile: boolean;
|
|
46860
46807
|
density: Density;
|
|
46861
46808
|
slim: boolean;
|
|
46862
|
-
valueComparator: typeof deepEqual;
|
|
46863
46809
|
activatable: boolean;
|
|
46864
46810
|
selectable: boolean;
|
|
46865
46811
|
selectStrategy: SelectStrategyProp;
|
|
@@ -46883,6 +46829,7 @@ declare const VSelect: {
|
|
|
46883
46829
|
baseColor?: string | undefined;
|
|
46884
46830
|
bgColor?: string | undefined;
|
|
46885
46831
|
activeColor?: string | undefined;
|
|
46832
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
46886
46833
|
activeClass?: string | undefined;
|
|
46887
46834
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
46888
46835
|
collapseIcon?: IconValue | undefined;
|
|
@@ -46894,7 +46841,7 @@ declare const VSelect: {
|
|
|
46894
46841
|
value: boolean;
|
|
46895
46842
|
path: unknown[];
|
|
46896
46843
|
}) => any) | undefined;
|
|
46897
|
-
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "
|
|
46844
|
+
}, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "rounded" | "tile" | "density" | "slim" | "activatable" | "selectable" | "selectStrategy" | "openStrategy" | "returnObject" | "itemType"> & {
|
|
46898
46845
|
items?: readonly any[] | undefined;
|
|
46899
46846
|
itemTitle?: SelectItemKey<any>;
|
|
46900
46847
|
itemValue?: SelectItemKey<any>;
|
|
@@ -47222,7 +47169,6 @@ declare const VSelect: {
|
|
|
47222
47169
|
rounded: string | number | boolean;
|
|
47223
47170
|
tile: boolean;
|
|
47224
47171
|
density: Density;
|
|
47225
|
-
valueComparator: typeof deepEqual;
|
|
47226
47172
|
clearIcon: IconValue;
|
|
47227
47173
|
centerAffix: boolean;
|
|
47228
47174
|
hideSpinButtons: boolean;
|
|
@@ -47454,10 +47400,7 @@ declare const VSelect: {
|
|
|
47454
47400
|
default: string;
|
|
47455
47401
|
};
|
|
47456
47402
|
returnObject: BooleanConstructor;
|
|
47457
|
-
valueComparator:
|
|
47458
|
-
type: PropType<typeof deepEqual>;
|
|
47459
|
-
default: typeof deepEqual;
|
|
47460
|
-
};
|
|
47403
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
47461
47404
|
chips: BooleanConstructor;
|
|
47462
47405
|
closableChips: BooleanConstructor;
|
|
47463
47406
|
closeText: {
|
|
@@ -47643,10 +47586,7 @@ declare const VSelect: {
|
|
|
47643
47586
|
default: string;
|
|
47644
47587
|
};
|
|
47645
47588
|
returnObject: BooleanConstructor;
|
|
47646
|
-
valueComparator:
|
|
47647
|
-
type: PropType<typeof deepEqual>;
|
|
47648
|
-
default: typeof deepEqual;
|
|
47649
|
-
};
|
|
47589
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
47650
47590
|
chips: BooleanConstructor;
|
|
47651
47591
|
closableChips: BooleanConstructor;
|
|
47652
47592
|
closeText: {
|
|
@@ -68697,7 +68637,6 @@ declare const VDateInput: {
|
|
|
68697
68637
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
68698
68638
|
firstDayOfWeek?: string | number | undefined;
|
|
68699
68639
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
68700
|
-
displayValue?: unknown;
|
|
68701
68640
|
} & {
|
|
68702
68641
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
68703
68642
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
@@ -68712,7 +68651,7 @@ declare const VDateInput: {
|
|
|
68712
68651
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
68713
68652
|
} & {
|
|
68714
68653
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
68715
|
-
},
|
|
68654
|
+
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
68716
68655
|
'update:modelValue': (val: string) => true;
|
|
68717
68656
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
68718
68657
|
flat: boolean;
|
|
@@ -68813,7 +68752,6 @@ declare const VDateInput: {
|
|
|
68813
68752
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
68814
68753
|
firstDayOfWeek?: string | number | undefined;
|
|
68815
68754
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
68816
|
-
displayValue?: unknown;
|
|
68817
68755
|
} & {
|
|
68818
68756
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
68819
68757
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
@@ -68989,7 +68927,6 @@ declare const VDateInput: {
|
|
|
68989
68927
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
68990
68928
|
firstDayOfWeek?: string | number | undefined;
|
|
68991
68929
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
68992
|
-
displayValue?: unknown;
|
|
68993
68930
|
} & {
|
|
68994
68931
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
68995
68932
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
@@ -69004,7 +68941,7 @@ declare const VDateInput: {
|
|
|
69004
68941
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
69005
68942
|
} & {
|
|
69006
68943
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
69007
|
-
},
|
|
68944
|
+
}, any, {}, {}, {}, {
|
|
69008
68945
|
flat: boolean;
|
|
69009
68946
|
reverse: boolean;
|
|
69010
68947
|
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
@@ -69159,7 +69096,6 @@ declare const VDateInput: {
|
|
|
69159
69096
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
69160
69097
|
firstDayOfWeek?: string | number | undefined;
|
|
69161
69098
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
69162
|
-
displayValue?: unknown;
|
|
69163
69099
|
} & {
|
|
69164
69100
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
69165
69101
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
|
@@ -69174,7 +69110,7 @@ declare const VDateInput: {
|
|
|
69174
69110
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
69175
69111
|
} & {
|
|
69176
69112
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
69177
|
-
},
|
|
69113
|
+
}, any, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
69178
69114
|
'update:modelValue': (val: string) => true;
|
|
69179
69115
|
}, string, {
|
|
69180
69116
|
flat: boolean;
|
|
@@ -69279,10 +69215,6 @@ declare const VDateInput: {
|
|
|
69279
69215
|
validator(v: any): boolean;
|
|
69280
69216
|
};
|
|
69281
69217
|
modelValue: null;
|
|
69282
|
-
rounded: {
|
|
69283
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69284
|
-
default: undefined;
|
|
69285
|
-
};
|
|
69286
69218
|
tile: BooleanConstructor;
|
|
69287
69219
|
bgColor: StringConstructor;
|
|
69288
69220
|
nextIcon: {
|
|
@@ -69337,13 +69269,16 @@ declare const VDateInput: {
|
|
|
69337
69269
|
};
|
|
69338
69270
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
|
69339
69271
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
69340
|
-
displayValue: PropType<unknown>;
|
|
69341
69272
|
hideWeekdays: BooleanConstructor;
|
|
69342
69273
|
showWeek: BooleanConstructor;
|
|
69343
69274
|
hideHeader: {
|
|
69344
69275
|
type: PropType<boolean>;
|
|
69345
69276
|
default: boolean;
|
|
69346
69277
|
};
|
|
69278
|
+
rounded: {
|
|
69279
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69280
|
+
default: undefined;
|
|
69281
|
+
};
|
|
69347
69282
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
69348
69283
|
appendInnerIcon: PropType<IconValue>;
|
|
69349
69284
|
clearable: BooleanConstructor;
|
|
@@ -69498,10 +69433,6 @@ declare const VDateInput: {
|
|
|
69498
69433
|
validator(v: any): boolean;
|
|
69499
69434
|
};
|
|
69500
69435
|
modelValue: null;
|
|
69501
|
-
rounded: {
|
|
69502
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69503
|
-
default: undefined;
|
|
69504
|
-
};
|
|
69505
69436
|
tile: BooleanConstructor;
|
|
69506
69437
|
bgColor: StringConstructor;
|
|
69507
69438
|
nextIcon: {
|
|
@@ -69556,13 +69487,16 @@ declare const VDateInput: {
|
|
|
69556
69487
|
};
|
|
69557
69488
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
|
69558
69489
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
69559
|
-
displayValue: PropType<unknown>;
|
|
69560
69490
|
hideWeekdays: BooleanConstructor;
|
|
69561
69491
|
showWeek: BooleanConstructor;
|
|
69562
69492
|
hideHeader: {
|
|
69563
69493
|
type: PropType<boolean>;
|
|
69564
69494
|
default: boolean;
|
|
69565
69495
|
};
|
|
69496
|
+
rounded: {
|
|
69497
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
69498
|
+
default: undefined;
|
|
69499
|
+
};
|
|
69566
69500
|
loading: (StringConstructor | BooleanConstructor)[];
|
|
69567
69501
|
appendInnerIcon: PropType<IconValue>;
|
|
69568
69502
|
clearable: BooleanConstructor;
|
|
@@ -81035,7 +80969,6 @@ declare const VTreeview: {
|
|
|
81035
80969
|
tile: boolean;
|
|
81036
80970
|
density: Density;
|
|
81037
80971
|
slim: boolean;
|
|
81038
|
-
valueComparator: typeof deepEqual;
|
|
81039
80972
|
indeterminateIcon: IconValue;
|
|
81040
80973
|
activatable: boolean;
|
|
81041
80974
|
selectable: boolean;
|
|
@@ -81074,6 +81007,7 @@ declare const VTreeview: {
|
|
|
81074
81007
|
activeColor?: string | undefined;
|
|
81075
81008
|
falseIcon?: IconValue | undefined;
|
|
81076
81009
|
trueIcon?: IconValue | undefined;
|
|
81010
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
81077
81011
|
activeClass?: string | undefined;
|
|
81078
81012
|
opened?: any;
|
|
81079
81013
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
@@ -81134,7 +81068,6 @@ declare const VTreeview: {
|
|
|
81134
81068
|
tile: boolean;
|
|
81135
81069
|
density: Density;
|
|
81136
81070
|
slim: boolean;
|
|
81137
|
-
valueComparator: typeof deepEqual;
|
|
81138
81071
|
indeterminateIcon: IconValue;
|
|
81139
81072
|
activatable: boolean;
|
|
81140
81073
|
selectable: boolean;
|
|
@@ -81173,6 +81106,7 @@ declare const VTreeview: {
|
|
|
81173
81106
|
activeColor?: string | undefined;
|
|
81174
81107
|
falseIcon?: IconValue | undefined;
|
|
81175
81108
|
trueIcon?: IconValue | undefined;
|
|
81109
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
81176
81110
|
activeClass?: string | undefined;
|
|
81177
81111
|
opened?: any;
|
|
81178
81112
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
@@ -81219,7 +81153,6 @@ declare const VTreeview: {
|
|
|
81219
81153
|
tile: boolean;
|
|
81220
81154
|
density: Density;
|
|
81221
81155
|
slim: boolean;
|
|
81222
|
-
valueComparator: typeof deepEqual;
|
|
81223
81156
|
indeterminateIcon: IconValue;
|
|
81224
81157
|
activatable: boolean;
|
|
81225
81158
|
selectable: boolean;
|
|
@@ -81282,7 +81215,6 @@ declare const VTreeview: {
|
|
|
81282
81215
|
tile: boolean;
|
|
81283
81216
|
density: Density;
|
|
81284
81217
|
slim: boolean;
|
|
81285
|
-
valueComparator: typeof deepEqual;
|
|
81286
81218
|
indeterminateIcon: IconValue;
|
|
81287
81219
|
activatable: boolean;
|
|
81288
81220
|
selectable: boolean;
|
|
@@ -81321,6 +81253,7 @@ declare const VTreeview: {
|
|
|
81321
81253
|
activeColor?: string | undefined;
|
|
81322
81254
|
falseIcon?: IconValue | undefined;
|
|
81323
81255
|
trueIcon?: IconValue | undefined;
|
|
81256
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
81324
81257
|
activeClass?: string | undefined;
|
|
81325
81258
|
opened?: any;
|
|
81326
81259
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
@@ -81367,7 +81300,6 @@ declare const VTreeview: {
|
|
|
81367
81300
|
tile: boolean;
|
|
81368
81301
|
density: Density;
|
|
81369
81302
|
slim: boolean;
|
|
81370
|
-
valueComparator: typeof deepEqual;
|
|
81371
81303
|
indeterminateIcon: IconValue;
|
|
81372
81304
|
activatable: boolean;
|
|
81373
81305
|
selectable: boolean;
|
|
@@ -81401,7 +81333,6 @@ declare const VTreeview: {
|
|
|
81401
81333
|
tile: boolean;
|
|
81402
81334
|
density: Density;
|
|
81403
81335
|
slim: boolean;
|
|
81404
|
-
valueComparator: typeof deepEqual;
|
|
81405
81336
|
indeterminateIcon: IconValue;
|
|
81406
81337
|
activatable: boolean;
|
|
81407
81338
|
selectable: boolean;
|
|
@@ -81440,6 +81371,7 @@ declare const VTreeview: {
|
|
|
81440
81371
|
activeColor?: string | undefined;
|
|
81441
81372
|
falseIcon?: IconValue | undefined;
|
|
81442
81373
|
trueIcon?: IconValue | undefined;
|
|
81374
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
81443
81375
|
activeClass?: string | undefined;
|
|
81444
81376
|
opened?: any;
|
|
81445
81377
|
activeStrategy?: ActiveStrategyProp | undefined;
|
|
@@ -81501,7 +81433,6 @@ declare const VTreeview: {
|
|
|
81501
81433
|
tile: boolean;
|
|
81502
81434
|
density: Density;
|
|
81503
81435
|
slim: boolean;
|
|
81504
|
-
valueComparator: typeof deepEqual;
|
|
81505
81436
|
indeterminateIcon: IconValue;
|
|
81506
81437
|
activatable: boolean;
|
|
81507
81438
|
selectable: boolean;
|
|
@@ -81612,10 +81543,7 @@ declare const VTreeview: {
|
|
|
81612
81543
|
type: vue.PropType<boolean>;
|
|
81613
81544
|
default: boolean;
|
|
81614
81545
|
};
|
|
81615
|
-
valueComparator:
|
|
81616
|
-
type: vue.PropType<typeof deepEqual>;
|
|
81617
|
-
default: typeof deepEqual;
|
|
81618
|
-
};
|
|
81546
|
+
valueComparator: vue.PropType<typeof deepEqual>;
|
|
81619
81547
|
activeClass: StringConstructor;
|
|
81620
81548
|
opened: null;
|
|
81621
81549
|
activatable: BooleanConstructor;
|
|
@@ -81758,10 +81686,7 @@ declare const VTreeview: {
|
|
|
81758
81686
|
type: vue.PropType<boolean>;
|
|
81759
81687
|
default: boolean;
|
|
81760
81688
|
};
|
|
81761
|
-
valueComparator:
|
|
81762
|
-
type: vue.PropType<typeof deepEqual>;
|
|
81763
|
-
default: typeof deepEqual;
|
|
81764
|
-
};
|
|
81689
|
+
valueComparator: vue.PropType<typeof deepEqual>;
|
|
81765
81690
|
activeClass: StringConstructor;
|
|
81766
81691
|
opened: null;
|
|
81767
81692
|
activatable: BooleanConstructor;
|