@vuetify/nightly 3.7.11-master.2025-02-08 → 3.7.11-master.2025-02-11
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/CHANGELOG.md +8 -4
- package/dist/json/attributes.json +1459 -1471
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +256 -256
- package/dist/json/tags.json +0 -3
- package/dist/json/web-types.json +2831 -2858
- package/dist/vuetify-labs.css +5299 -5298
- package/dist/vuetify-labs.d.ts +20 -38
- package/dist/vuetify-labs.esm.js +33 -20
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +33 -20
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4586 -4585
- package/dist/vuetify.d.ts +63 -75
- package/dist/vuetify.esm.js +31 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -12
- package/dist/vuetify.min.js.map +1 -1
- 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/VOverlay/VOverlay.css +2 -1
- package/lib/components/VOverlay/VOverlay.sass +2 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VSlider/slider.mjs +25 -12
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/index.d.mts +12 -24
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/list-items.mjs +3 -3
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +51 -51
- package/lib/labs/VDateInput/VDateInput.mjs +2 -2
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +8 -14
- package/lib/labs/components.d.mts +8 -14
- package/package.json +3 -3
package/dist/vuetify-labs.d.ts
CHANGED
@@ -28040,7 +28040,6 @@ declare const VDatePicker: {
|
|
28040
28040
|
bgColor?: string | undefined;
|
28041
28041
|
firstDayOfWeek?: string | number | undefined;
|
28042
28042
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28043
|
-
displayValue?: unknown;
|
28044
28043
|
} & {
|
28045
28044
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
28046
28045
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -28094,7 +28093,6 @@ declare const VDatePicker: {
|
|
28094
28093
|
bgColor?: string | undefined;
|
28095
28094
|
firstDayOfWeek?: string | number | undefined;
|
28096
28095
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28097
|
-
displayValue?: unknown;
|
28098
28096
|
} & {
|
28099
28097
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
28100
28098
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -28180,7 +28178,6 @@ declare const VDatePicker: {
|
|
28180
28178
|
bgColor?: string | undefined;
|
28181
28179
|
firstDayOfWeek?: string | number | undefined;
|
28182
28180
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28183
|
-
displayValue?: unknown;
|
28184
28181
|
} & {
|
28185
28182
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
28186
28183
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -28255,7 +28252,6 @@ declare const VDatePicker: {
|
|
28255
28252
|
bgColor?: string | undefined;
|
28256
28253
|
firstDayOfWeek?: string | number | undefined;
|
28257
28254
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28258
|
-
displayValue?: unknown;
|
28259
28255
|
} & {
|
28260
28256
|
"onUpdate:month"?: ((date: any) => any) | undefined;
|
28261
28257
|
"onUpdate:year"?: ((date: any) => any) | undefined;
|
@@ -28343,9 +28339,7 @@ declare const VDatePicker: {
|
|
28343
28339
|
max: vue.PropType<unknown>;
|
28344
28340
|
min: vue.PropType<unknown>;
|
28345
28341
|
year: NumberConstructor;
|
28346
|
-
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28347
28342
|
disabled: BooleanConstructor;
|
28348
|
-
displayValue: vue.PropType<unknown>;
|
28349
28343
|
month: (StringConstructor | NumberConstructor)[];
|
28350
28344
|
showAdjacentMonths: BooleanConstructor;
|
28351
28345
|
weekdays: {
|
@@ -28375,6 +28369,7 @@ declare const VDatePicker: {
|
|
28375
28369
|
default: NonNullable<"static" | "dynamic">;
|
28376
28370
|
};
|
28377
28371
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
28372
|
+
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28378
28373
|
hideWeekdays: BooleanConstructor;
|
28379
28374
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
28380
28375
|
showWeek: BooleanConstructor;
|
@@ -28455,9 +28450,7 @@ declare const VDatePicker: {
|
|
28455
28450
|
max: vue.PropType<unknown>;
|
28456
28451
|
min: vue.PropType<unknown>;
|
28457
28452
|
year: NumberConstructor;
|
28458
|
-
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28459
28453
|
disabled: BooleanConstructor;
|
28460
|
-
displayValue: vue.PropType<unknown>;
|
28461
28454
|
month: (StringConstructor | NumberConstructor)[];
|
28462
28455
|
showAdjacentMonths: BooleanConstructor;
|
28463
28456
|
weekdays: {
|
@@ -28487,6 +28480,7 @@ declare const VDatePicker: {
|
|
28487
28480
|
default: NonNullable<"static" | "dynamic">;
|
28488
28481
|
};
|
28489
28482
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
28483
|
+
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28490
28484
|
hideWeekdays: BooleanConstructor;
|
28491
28485
|
multiple: vue.PropType<boolean | "range" | number | (string & {})>;
|
28492
28486
|
showWeek: BooleanConstructor;
|
@@ -28883,7 +28877,6 @@ declare const VDatePickerMonth: {
|
|
28883
28877
|
modelValue?: unknown[] | undefined;
|
28884
28878
|
firstDayOfWeek?: string | number | undefined;
|
28885
28879
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28886
|
-
displayValue?: unknown;
|
28887
28880
|
} & {
|
28888
28881
|
$children?: {} | vue.VNodeChild | {
|
28889
28882
|
day?: ((arg: {
|
@@ -28938,7 +28931,6 @@ declare const VDatePickerMonth: {
|
|
28938
28931
|
modelValue?: unknown[] | undefined;
|
28939
28932
|
firstDayOfWeek?: string | number | undefined;
|
28940
28933
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
28941
|
-
displayValue?: unknown;
|
28942
28934
|
} & {
|
28943
28935
|
$children?: {} | vue.VNodeChild | {
|
28944
28936
|
day?: ((arg: {
|
@@ -29013,7 +29005,6 @@ declare const VDatePickerMonth: {
|
|
29013
29005
|
modelValue?: unknown[] | undefined;
|
29014
29006
|
firstDayOfWeek?: string | number | undefined;
|
29015
29007
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
29016
|
-
displayValue?: unknown;
|
29017
29008
|
} & {
|
29018
29009
|
$children?: {} | vue.VNodeChild | {
|
29019
29010
|
day?: ((arg: {
|
@@ -29077,7 +29068,6 @@ declare const VDatePickerMonth: {
|
|
29077
29068
|
modelValue?: unknown[] | undefined;
|
29078
29069
|
firstDayOfWeek?: string | number | undefined;
|
29079
29070
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
29080
|
-
displayValue?: unknown;
|
29081
29071
|
} & {
|
29082
29072
|
$children?: {} | vue.VNodeChild | {
|
29083
29073
|
day?: ((arg: {
|
@@ -29131,15 +29121,13 @@ declare const VDatePickerMonth: {
|
|
29131
29121
|
i: number;
|
29132
29122
|
}) => vue.VNode[];
|
29133
29123
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
29134
|
-
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
29135
|
-
disabled: BooleanConstructor;
|
29136
|
-
displayValue: PropType<unknown>;
|
29137
|
-
modelValue: PropType<unknown[]>;
|
29138
|
-
month: (StringConstructor | NumberConstructor)[];
|
29139
29124
|
max: PropType<unknown>;
|
29140
29125
|
min: PropType<unknown>;
|
29141
|
-
|
29126
|
+
disabled: BooleanConstructor;
|
29127
|
+
month: (StringConstructor | NumberConstructor)[];
|
29142
29128
|
year: (StringConstructor | NumberConstructor)[];
|
29129
|
+
modelValue: PropType<unknown[]>;
|
29130
|
+
showAdjacentMonths: BooleanConstructor;
|
29143
29131
|
weekdays: {
|
29144
29132
|
type: {
|
29145
29133
|
(arrayLength: number): number[];
|
@@ -29164,6 +29152,7 @@ declare const VDatePickerMonth: {
|
|
29164
29152
|
default: string;
|
29165
29153
|
};
|
29166
29154
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
29155
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
29167
29156
|
color: StringConstructor;
|
29168
29157
|
hideWeekdays: BooleanConstructor;
|
29169
29158
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
@@ -29177,15 +29166,13 @@ declare const VDatePickerMonth: {
|
|
29177
29166
|
default: string;
|
29178
29167
|
};
|
29179
29168
|
}, vue.ExtractPropTypes<{
|
29180
|
-
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
29181
|
-
disabled: BooleanConstructor;
|
29182
|
-
displayValue: PropType<unknown>;
|
29183
|
-
modelValue: PropType<unknown[]>;
|
29184
|
-
month: (StringConstructor | NumberConstructor)[];
|
29185
29169
|
max: PropType<unknown>;
|
29186
29170
|
min: PropType<unknown>;
|
29187
|
-
|
29171
|
+
disabled: BooleanConstructor;
|
29172
|
+
month: (StringConstructor | NumberConstructor)[];
|
29188
29173
|
year: (StringConstructor | NumberConstructor)[];
|
29174
|
+
modelValue: PropType<unknown[]>;
|
29175
|
+
showAdjacentMonths: BooleanConstructor;
|
29189
29176
|
weekdays: {
|
29190
29177
|
type: {
|
29191
29178
|
(arrayLength: number): number[];
|
@@ -29210,6 +29197,7 @@ declare const VDatePickerMonth: {
|
|
29210
29197
|
default: string;
|
29211
29198
|
};
|
29212
29199
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
29200
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
29213
29201
|
color: StringConstructor;
|
29214
29202
|
hideWeekdays: BooleanConstructor;
|
29215
29203
|
multiple: PropType<boolean | "range" | number | (string & {})>;
|
@@ -68649,7 +68637,6 @@ declare const VDateInput: {
|
|
68649
68637
|
modelModifiers?: Record<string, boolean> | undefined;
|
68650
68638
|
firstDayOfWeek?: string | number | undefined;
|
68651
68639
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
68652
|
-
displayValue?: unknown;
|
68653
68640
|
} & {
|
68654
68641
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
68655
68642
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
@@ -68765,7 +68752,6 @@ declare const VDateInput: {
|
|
68765
68752
|
modelModifiers?: Record<string, boolean> | undefined;
|
68766
68753
|
firstDayOfWeek?: string | number | undefined;
|
68767
68754
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
68768
|
-
displayValue?: unknown;
|
68769
68755
|
} & {
|
68770
68756
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
68771
68757
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
@@ -68941,7 +68927,6 @@ declare const VDateInput: {
|
|
68941
68927
|
modelModifiers?: Record<string, boolean> | undefined;
|
68942
68928
|
firstDayOfWeek?: string | number | undefined;
|
68943
68929
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
68944
|
-
displayValue?: unknown;
|
68945
68930
|
} & {
|
68946
68931
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
68947
68932
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
@@ -69111,7 +69096,6 @@ declare const VDateInput: {
|
|
69111
69096
|
modelModifiers?: Record<string, boolean> | undefined;
|
69112
69097
|
firstDayOfWeek?: string | number | undefined;
|
69113
69098
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
69114
|
-
displayValue?: unknown;
|
69115
69099
|
} & {
|
69116
69100
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
69117
69101
|
actions?: ((arg: VDateInputActionsSlot) => vue.VNodeChild) | undefined;
|
@@ -69231,10 +69215,6 @@ declare const VDateInput: {
|
|
69231
69215
|
validator(v: any): boolean;
|
69232
69216
|
};
|
69233
69217
|
modelValue: null;
|
69234
|
-
rounded: {
|
69235
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
69236
|
-
default: undefined;
|
69237
|
-
};
|
69238
69218
|
tile: BooleanConstructor;
|
69239
69219
|
bgColor: StringConstructor;
|
69240
69220
|
nextIcon: {
|
@@ -69289,13 +69269,16 @@ declare const VDateInput: {
|
|
69289
69269
|
};
|
69290
69270
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
69291
69271
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
69292
|
-
displayValue: PropType<unknown>;
|
69293
69272
|
hideWeekdays: BooleanConstructor;
|
69294
69273
|
showWeek: BooleanConstructor;
|
69295
69274
|
hideHeader: {
|
69296
69275
|
type: PropType<boolean>;
|
69297
69276
|
default: boolean;
|
69298
69277
|
};
|
69278
|
+
rounded: {
|
69279
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
69280
|
+
default: undefined;
|
69281
|
+
};
|
69299
69282
|
loading: (StringConstructor | BooleanConstructor)[];
|
69300
69283
|
appendInnerIcon: PropType<IconValue>;
|
69301
69284
|
clearable: BooleanConstructor;
|
@@ -69450,10 +69433,6 @@ declare const VDateInput: {
|
|
69450
69433
|
validator(v: any): boolean;
|
69451
69434
|
};
|
69452
69435
|
modelValue: null;
|
69453
|
-
rounded: {
|
69454
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
69455
|
-
default: undefined;
|
69456
|
-
};
|
69457
69436
|
tile: BooleanConstructor;
|
69458
69437
|
bgColor: StringConstructor;
|
69459
69438
|
nextIcon: {
|
@@ -69508,13 +69487,16 @@ declare const VDateInput: {
|
|
69508
69487
|
};
|
69509
69488
|
firstDayOfWeek: (StringConstructor | NumberConstructor)[];
|
69510
69489
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
69511
|
-
displayValue: PropType<unknown>;
|
69512
69490
|
hideWeekdays: BooleanConstructor;
|
69513
69491
|
showWeek: BooleanConstructor;
|
69514
69492
|
hideHeader: {
|
69515
69493
|
type: PropType<boolean>;
|
69516
69494
|
default: boolean;
|
69517
69495
|
};
|
69496
|
+
rounded: {
|
69497
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
69498
|
+
default: undefined;
|
69499
|
+
};
|
69518
69500
|
loading: (StringConstructor | BooleanConstructor)[];
|
69519
69501
|
appendInnerIcon: PropType<IconValue>;
|
69520
69502
|
clearable: BooleanConstructor;
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.11-master.2025-02-
|
2
|
+
* Vuetify v3.7.11-master.2025-02-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -9400,7 +9400,7 @@ function transformItem$3(props, item) {
|
|
9400
9400
|
};
|
9401
9401
|
}
|
9402
9402
|
function transformItems$3(props, items) {
|
9403
|
-
const _props =
|
9403
|
+
const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'returnObject', 'valueComparator']);
|
9404
9404
|
const array = [];
|
9405
9405
|
for (const item of items) {
|
9406
9406
|
array.push(transformItem$3(_props, item));
|
@@ -9443,7 +9443,7 @@ function useItems(props) {
|
|
9443
9443
|
const _returnObject = props.returnObject;
|
9444
9444
|
const hasValueComparator = !!props.valueComparator;
|
9445
9445
|
const valueComparator = props.valueComparator || deepEqual;
|
9446
|
-
const _props =
|
9446
|
+
const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'returnObject', 'valueComparator']);
|
9447
9447
|
const returnValue = [];
|
9448
9448
|
main: for (const v of _value) {
|
9449
9449
|
// When the model value is null, return an InternalItem
|
@@ -15590,6 +15590,8 @@ const useSlider = _ref => {
|
|
15590
15590
|
const trackContainerRef = ref();
|
15591
15591
|
const activeThumbRef = ref();
|
15592
15592
|
function parseMouseMove(e) {
|
15593
|
+
const el = trackContainerRef.value?.$el;
|
15594
|
+
if (!el) return;
|
15593
15595
|
const vertical = props.direction === 'vertical';
|
15594
15596
|
const start = vertical ? 'top' : 'left';
|
15595
15597
|
const length = vertical ? 'height' : 'width';
|
@@ -15597,7 +15599,7 @@ const useSlider = _ref => {
|
|
15597
15599
|
const {
|
15598
15600
|
[start]: trackStart,
|
15599
15601
|
[length]: trackLength
|
15600
|
-
} =
|
15602
|
+
} = el.getBoundingClientRect();
|
15601
15603
|
const clickOffset = getPosition(e, position);
|
15602
15604
|
|
15603
15605
|
// It is possible for left to be NaN, force to number
|
@@ -15606,13 +15608,17 @@ const useSlider = _ref => {
|
|
15606
15608
|
return roundValue(min.value + clickPos * (max.value - min.value));
|
15607
15609
|
}
|
15608
15610
|
const handleStop = e => {
|
15609
|
-
|
15610
|
-
|
15611
|
-
|
15611
|
+
const value = parseMouseMove(e);
|
15612
|
+
if (value != null) {
|
15613
|
+
onSliderEnd({
|
15614
|
+
value
|
15615
|
+
});
|
15616
|
+
}
|
15612
15617
|
mousePressed.value = false;
|
15613
15618
|
startOffset.value = 0;
|
15614
15619
|
};
|
15615
15620
|
const handleStart = e => {
|
15621
|
+
const value = parseMouseMove(e);
|
15616
15622
|
activeThumbRef.value = getActiveThumb(e);
|
15617
15623
|
if (!activeThumbRef.value) return;
|
15618
15624
|
mousePressed.value = true;
|
@@ -15620,13 +15626,17 @@ const useSlider = _ref => {
|
|
15620
15626
|
startOffset.value = getOffset(e, activeThumbRef.value, props.direction);
|
15621
15627
|
} else {
|
15622
15628
|
startOffset.value = 0;
|
15623
|
-
|
15624
|
-
|
15629
|
+
if (value != null) {
|
15630
|
+
onSliderMove({
|
15631
|
+
value
|
15632
|
+
});
|
15633
|
+
}
|
15634
|
+
}
|
15635
|
+
if (value != null) {
|
15636
|
+
onSliderStart({
|
15637
|
+
value
|
15625
15638
|
});
|
15626
15639
|
}
|
15627
|
-
onSliderStart({
|
15628
|
-
value: parseMouseMove(e)
|
15629
|
-
});
|
15630
15640
|
nextTick(() => activeThumbRef.value?.focus());
|
15631
15641
|
};
|
15632
15642
|
const moveListenerOptions = {
|
@@ -15634,9 +15644,12 @@ const useSlider = _ref => {
|
|
15634
15644
|
capture: true
|
15635
15645
|
};
|
15636
15646
|
function onMouseMove(e) {
|
15637
|
-
|
15638
|
-
|
15639
|
-
|
15647
|
+
const value = parseMouseMove(e);
|
15648
|
+
if (value != null) {
|
15649
|
+
onSliderMove({
|
15650
|
+
value
|
15651
|
+
});
|
15652
|
+
}
|
15640
15653
|
}
|
15641
15654
|
function onSliderMouseUp(e) {
|
15642
15655
|
e.stopPropagation();
|
@@ -21769,7 +21782,7 @@ const makeVDatePickerMonthProps = propsFactory({
|
|
21769
21782
|
type: String,
|
21770
21783
|
default: 'picker-reverse-transition'
|
21771
21784
|
},
|
21772
|
-
...makeCalendarProps()
|
21785
|
+
...omit(makeCalendarProps(), ['displayValue'])
|
21773
21786
|
}, 'VDatePickerMonth');
|
21774
21787
|
const VDatePickerMonth = genericComponent()({
|
21775
21788
|
name: 'VDatePickerMonth',
|
@@ -28178,7 +28191,7 @@ const makeVDateInputProps = propsFactory({
|
|
28178
28191
|
...omit(makeVDatePickerProps({
|
28179
28192
|
weeksInMonth: 'dynamic',
|
28180
28193
|
hideHeader: true
|
28181
|
-
}), ['active', 'location'])
|
28194
|
+
}), ['active', 'location', 'rounded'])
|
28182
28195
|
}, 'VDateInput');
|
28183
28196
|
const VDateInput = genericComponent()({
|
28184
28197
|
name: 'VDateInput',
|
@@ -28239,7 +28252,7 @@ const VDateInput = genericComponent()({
|
|
28239
28252
|
}
|
28240
28253
|
useRender(() => {
|
28241
28254
|
const confirmEditProps = VConfirmEdit.filterProps(props);
|
28242
|
-
const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'location']));
|
28255
|
+
const datePickerProps = VDatePicker.filterProps(omit(props, ['active', 'location', 'rounded']));
|
28243
28256
|
const textFieldProps = VTextField.filterProps(props);
|
28244
28257
|
return createVNode(VTextField, mergeProps({
|
28245
28258
|
"ref": vDateInputRef
|
@@ -30880,7 +30893,7 @@ function createVuetify$1() {
|
|
30880
30893
|
goTo
|
30881
30894
|
};
|
30882
30895
|
}
|
30883
|
-
const version$1 = "3.7.11-master.2025-02-
|
30896
|
+
const version$1 = "3.7.11-master.2025-02-11";
|
30884
30897
|
createVuetify$1.version = version$1;
|
30885
30898
|
|
30886
30899
|
// Vue's inject() can only be used in setup
|
@@ -31133,7 +31146,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31133
31146
|
|
31134
31147
|
/* eslint-disable local-rules/sort-imports */
|
31135
31148
|
|
31136
|
-
const version = "3.7.11-master.2025-02-
|
31149
|
+
const version = "3.7.11-master.2025-02-11";
|
31137
31150
|
|
31138
31151
|
/* eslint-disable local-rules/sort-imports */
|
31139
31152
|
|