vuetify 3.3.15 → 3.4.0-alpha.1
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 +111 -11
- package/dist/json/importMap.json +4 -4
- package/dist/json/tags.json +25 -0
- package/dist/json/web-types.json +263 -18
- package/dist/vuetify-labs.css +1558 -518
- package/dist/vuetify-labs.d.ts +499 -179
- package/dist/vuetify-labs.esm.js +264 -73
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +263 -72
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1080 -40
- package/dist/vuetify.d.ts +484 -170
- package/dist/vuetify.esm.js +264 -73
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +263 -72
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +914 -895
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +20 -14
- package/lib/components/VAvatar/VAvatar.mjs +2 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/index.d.mts +6 -0
- package/lib/components/VBanner/VBanner.mjs +5 -3
- package/lib/components/VBanner/VBanner.mjs.map +1 -1
- package/lib/components/VBanner/index.d.mts +10 -0
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs +9 -4
- package/lib/components/VBreadcrumbs/VBreadcrumbs.mjs.map +1 -1
- package/lib/components/VBreadcrumbs/index.d.mts +28 -2
- package/lib/components/VCarousel/index.d.mts +26 -0
- package/lib/components/VCheckbox/index.d.mts +12 -0
- package/lib/components/VColorPicker/VColorPickerPreview.css +5 -0
- package/lib/components/VColorPicker/VColorPickerPreview.mjs +28 -2
- package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerPreview.sass +4 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/index.d.mts +20 -14
- package/lib/components/VDialog/index.d.mts +41 -20
- package/lib/components/VField/index.d.mts +4 -4
- package/lib/components/VFileInput/index.d.mts +4 -4
- package/lib/components/VImg/VImg.mjs +13 -1
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/index.d.mts +26 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VMenu/index.d.mts +41 -20
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +5 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +10 -0
- package/lib/components/VOverlay/VOverlay.mjs +9 -4
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +17 -8
- package/lib/components/VOverlay/locationStrategies.mjs +9 -9
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs +3 -3
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VOverlay/useActivator.mjs +50 -21
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +6 -0
- package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -2
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +14 -0
- package/lib/components/VSelect/index.d.mts +20 -14
- package/lib/components/VSelectionControl/VSelectionControl.mjs +3 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +6 -0
- package/lib/components/VSlideGroup/VSlideGroup.mjs +5 -3
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +10 -0
- package/lib/components/VSlider/VSlider.mjs +2 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/index.d.mts +14 -0
- package/lib/components/VSlider/slider.mjs +5 -1
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.css +9 -0
- package/lib/components/VSnackbar/VSnackbar.mjs +65 -6
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +9 -0
- package/lib/components/VSnackbar/index.d.mts +52 -25
- package/lib/components/VSwitch/index.d.mts +6 -0
- package/lib/components/VTabs/index.d.mts +10 -0
- package/lib/components/VTextField/index.d.mts +16 -16
- package/lib/components/VTextarea/index.d.mts +4 -4
- package/lib/components/VTooltip/index.d.mts +41 -20
- package/lib/components/index.d.mts +455 -168
- package/lib/components/transitions/dialog-transition.mjs +4 -3
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +6 -6
- package/lib/composables/directiveComponent.mjs +69 -0
- package/lib/composables/directiveComponent.mjs.map +1 -0
- package/lib/composables/display.mjs +23 -3
- package/lib/composables/display.mjs.map +1 -1
- package/lib/composables/resizeObserver.mjs.map +1 -1
- package/lib/composables/theme.mjs +7 -7
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +33 -2
- package/lib/labs/VBottomSheet/index.d.mts +14 -8
- package/lib/labs/VDateInput/index.d.mts +4 -4
- package/lib/labs/VOtpInput/index.d.mts +4 -4
- package/lib/labs/components.d.mts +18 -12
- package/lib/styles/main.css +1026 -0
- package/lib/styles/settings/_utilities.scss +20 -0
- package/lib/util/box.mjs +12 -0
- package/lib/util/box.mjs.map +1 -1
- package/lib/util/globals.mjs +1 -0
- package/lib/util/globals.mjs.map +1 -1
- package/lib/util/helpers.mjs +9 -1
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -964,6 +964,7 @@ declare const VCarouselItem: {
|
|
|
964
964
|
inline?: boolean | undefined;
|
|
965
965
|
transition?: string | boolean | undefined;
|
|
966
966
|
style?: vue.StyleValue | undefined;
|
|
967
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
967
968
|
eager?: boolean | undefined;
|
|
968
969
|
disabled?: boolean | undefined;
|
|
969
970
|
options?: IntersectionObserverInit | undefined;
|
|
@@ -986,7 +987,9 @@ declare const VCarouselItem: {
|
|
|
986
987
|
error?: (() => vue.VNodeChild) | undefined;
|
|
987
988
|
sources?: (() => vue.VNodeChild) | undefined;
|
|
988
989
|
};
|
|
990
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
989
991
|
alt?: string | undefined;
|
|
992
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
990
993
|
sizes?: string | undefined;
|
|
991
994
|
srcset?: string | undefined;
|
|
992
995
|
ref?: vue.VNodeRef | undefined;
|
|
@@ -1087,8 +1090,11 @@ declare const VCarouselItem: {
|
|
|
1087
1090
|
minWidth?: string | number | undefined;
|
|
1088
1091
|
transition?: string | boolean | undefined;
|
|
1089
1092
|
value?: any;
|
|
1093
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
1090
1094
|
class?: any;
|
|
1095
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
1091
1096
|
alt?: string | undefined;
|
|
1097
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
1092
1098
|
sizes?: string | undefined;
|
|
1093
1099
|
srcset?: string | undefined;
|
|
1094
1100
|
contentClass?: string | undefined;
|
|
@@ -1118,6 +1124,7 @@ declare const VCarouselItem: {
|
|
|
1118
1124
|
inline: boolean;
|
|
1119
1125
|
transition: string | boolean;
|
|
1120
1126
|
style: vue.StyleValue;
|
|
1127
|
+
draggable: boolean | "false" | "true";
|
|
1121
1128
|
eager: boolean;
|
|
1122
1129
|
disabled: boolean;
|
|
1123
1130
|
options: IntersectionObserverInit;
|
|
@@ -1175,8 +1182,11 @@ declare const VCarouselItem: {
|
|
|
1175
1182
|
minWidth?: string | number | undefined;
|
|
1176
1183
|
transition?: string | boolean | undefined;
|
|
1177
1184
|
value?: any;
|
|
1185
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
1178
1186
|
class?: any;
|
|
1187
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
1179
1188
|
alt?: string | undefined;
|
|
1189
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
1180
1190
|
sizes?: string | undefined;
|
|
1181
1191
|
srcset?: string | undefined;
|
|
1182
1192
|
contentClass?: string | undefined;
|
|
@@ -1224,8 +1234,11 @@ declare const VCarouselItem: {
|
|
|
1224
1234
|
minWidth?: string | number | undefined;
|
|
1225
1235
|
transition?: string | boolean | undefined;
|
|
1226
1236
|
value?: any;
|
|
1237
|
+
draggable?: boolean | "false" | "true" | undefined;
|
|
1227
1238
|
class?: any;
|
|
1239
|
+
referrerpolicy?: "origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url" | undefined;
|
|
1228
1240
|
alt?: string | undefined;
|
|
1241
|
+
crossorigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
1229
1242
|
sizes?: string | undefined;
|
|
1230
1243
|
srcset?: string | undefined;
|
|
1231
1244
|
contentClass?: string | undefined;
|
|
@@ -1255,6 +1268,7 @@ declare const VCarouselItem: {
|
|
|
1255
1268
|
inline: boolean;
|
|
1256
1269
|
transition: string | boolean;
|
|
1257
1270
|
style: vue.StyleValue;
|
|
1271
|
+
draggable: boolean | "false" | "true";
|
|
1258
1272
|
eager: boolean;
|
|
1259
1273
|
disabled: boolean;
|
|
1260
1274
|
options: IntersectionObserverInit;
|
|
@@ -1303,6 +1317,10 @@ declare const VCarouselItem: {
|
|
|
1303
1317
|
inline: BooleanConstructor;
|
|
1304
1318
|
alt: StringConstructor;
|
|
1305
1319
|
cover: BooleanConstructor;
|
|
1320
|
+
draggable: {
|
|
1321
|
+
type: vue.PropType<boolean | "false" | "true">;
|
|
1322
|
+
default: undefined;
|
|
1323
|
+
};
|
|
1306
1324
|
gradient: StringConstructor;
|
|
1307
1325
|
lazySrc: StringConstructor;
|
|
1308
1326
|
options: {
|
|
@@ -1318,6 +1336,8 @@ declare const VCarouselItem: {
|
|
|
1318
1336
|
type: vue.PropType<string | srcObject>;
|
|
1319
1337
|
default: string;
|
|
1320
1338
|
};
|
|
1339
|
+
crossorigin: vue.PropType<"" | "anonymous" | "use-credentials">;
|
|
1340
|
+
referrerpolicy: vue.PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
1321
1341
|
srcset: StringConstructor;
|
|
1322
1342
|
}, vue.ExtractPropTypes<{
|
|
1323
1343
|
eager: BooleanConstructor;
|
|
@@ -1348,6 +1368,10 @@ declare const VCarouselItem: {
|
|
|
1348
1368
|
inline: BooleanConstructor;
|
|
1349
1369
|
alt: StringConstructor;
|
|
1350
1370
|
cover: BooleanConstructor;
|
|
1371
|
+
draggable: {
|
|
1372
|
+
type: vue.PropType<boolean | "false" | "true">;
|
|
1373
|
+
default: undefined;
|
|
1374
|
+
};
|
|
1351
1375
|
gradient: StringConstructor;
|
|
1352
1376
|
lazySrc: StringConstructor;
|
|
1353
1377
|
options: {
|
|
@@ -1363,6 +1387,8 @@ declare const VCarouselItem: {
|
|
|
1363
1387
|
type: vue.PropType<string | srcObject>;
|
|
1364
1388
|
default: string;
|
|
1365
1389
|
};
|
|
1390
|
+
crossorigin: vue.PropType<"" | "anonymous" | "use-credentials">;
|
|
1391
|
+
referrerpolicy: vue.PropType<"origin" | "same-origin" | "no-referrer" | "no-referrer-when-downgrade" | "origin-when-cross-origin" | "strict-origin" | "strict-origin-when-cross-origin" | "unsafe-url">;
|
|
1366
1392
|
srcset: StringConstructor;
|
|
1367
1393
|
}>>;
|
|
1368
1394
|
type VCarouselItem = InstanceType<typeof VCarouselItem>;
|
|
@@ -169,6 +169,7 @@ declare const VCheckbox: {
|
|
|
169
169
|
prependIcon?: IconValue | undefined;
|
|
170
170
|
appendIcon?: IconValue | undefined;
|
|
171
171
|
defaultsTarget?: string | undefined;
|
|
172
|
+
baseColor?: string | undefined;
|
|
172
173
|
trueValue?: any;
|
|
173
174
|
falseValue?: any;
|
|
174
175
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -259,6 +260,7 @@ declare const VCheckbox: {
|
|
|
259
260
|
prependIcon?: IconValue | undefined;
|
|
260
261
|
appendIcon?: IconValue | undefined;
|
|
261
262
|
defaultsTarget?: string | undefined;
|
|
263
|
+
baseColor?: string | undefined;
|
|
262
264
|
trueValue?: any;
|
|
263
265
|
falseValue?: any;
|
|
264
266
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -425,6 +427,7 @@ declare const VCheckbox: {
|
|
|
425
427
|
prependIcon?: IconValue | undefined;
|
|
426
428
|
appendIcon?: IconValue | undefined;
|
|
427
429
|
defaultsTarget?: string | undefined;
|
|
430
|
+
baseColor?: string | undefined;
|
|
428
431
|
trueValue?: any;
|
|
429
432
|
falseValue?: any;
|
|
430
433
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -523,6 +526,7 @@ declare const VCheckbox: {
|
|
|
523
526
|
prependIcon?: IconValue | undefined;
|
|
524
527
|
appendIcon?: IconValue | undefined;
|
|
525
528
|
defaultsTarget?: string | undefined;
|
|
529
|
+
baseColor?: string | undefined;
|
|
526
530
|
trueValue?: any;
|
|
527
531
|
falseValue?: any;
|
|
528
532
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -682,6 +686,7 @@ declare const VCheckbox: {
|
|
|
682
686
|
type: vue.PropType<typeof deepEqual>;
|
|
683
687
|
default: typeof deepEqual;
|
|
684
688
|
};
|
|
689
|
+
baseColor: StringConstructor;
|
|
685
690
|
trueValue: null;
|
|
686
691
|
falseValue: null;
|
|
687
692
|
indeterminateIcon: {
|
|
@@ -771,6 +776,7 @@ declare const VCheckbox: {
|
|
|
771
776
|
type: vue.PropType<typeof deepEqual>;
|
|
772
777
|
default: typeof deepEqual;
|
|
773
778
|
};
|
|
779
|
+
baseColor: StringConstructor;
|
|
774
780
|
trueValue: null;
|
|
775
781
|
falseValue: null;
|
|
776
782
|
indeterminateIcon: {
|
|
@@ -916,6 +922,7 @@ declare const VCheckboxBtn: {
|
|
|
916
922
|
modelValue?: any;
|
|
917
923
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
918
924
|
defaultsTarget?: string | undefined;
|
|
925
|
+
baseColor?: string | undefined;
|
|
919
926
|
trueValue?: any;
|
|
920
927
|
falseValue?: any;
|
|
921
928
|
"v-slot:input"?: false | ((arg: SelectionControlSlot) => vue.VNodeChild) | undefined;
|
|
@@ -977,6 +984,7 @@ declare const VCheckboxBtn: {
|
|
|
977
984
|
theme?: string | undefined;
|
|
978
985
|
modelValue?: any;
|
|
979
986
|
defaultsTarget?: string | undefined;
|
|
987
|
+
baseColor?: string | undefined;
|
|
980
988
|
trueValue?: any;
|
|
981
989
|
falseValue?: any;
|
|
982
990
|
} & {
|
|
@@ -1096,6 +1104,7 @@ declare const VCheckboxBtn: {
|
|
|
1096
1104
|
theme?: string | undefined;
|
|
1097
1105
|
modelValue?: any;
|
|
1098
1106
|
defaultsTarget?: string | undefined;
|
|
1107
|
+
baseColor?: string | undefined;
|
|
1099
1108
|
trueValue?: any;
|
|
1100
1109
|
falseValue?: any;
|
|
1101
1110
|
} & {
|
|
@@ -1166,6 +1175,7 @@ declare const VCheckboxBtn: {
|
|
|
1166
1175
|
theme?: string | undefined;
|
|
1167
1176
|
modelValue?: any;
|
|
1168
1177
|
defaultsTarget?: string | undefined;
|
|
1178
|
+
baseColor?: string | undefined;
|
|
1169
1179
|
trueValue?: any;
|
|
1170
1180
|
falseValue?: any;
|
|
1171
1181
|
} & {
|
|
@@ -1286,6 +1296,7 @@ declare const VCheckboxBtn: {
|
|
|
1286
1296
|
default: typeof deepEqual;
|
|
1287
1297
|
};
|
|
1288
1298
|
label: StringConstructor;
|
|
1299
|
+
baseColor: StringConstructor;
|
|
1289
1300
|
trueValue: null;
|
|
1290
1301
|
falseValue: null;
|
|
1291
1302
|
value: null;
|
|
@@ -1340,6 +1351,7 @@ declare const VCheckboxBtn: {
|
|
|
1340
1351
|
default: typeof deepEqual;
|
|
1341
1352
|
};
|
|
1342
1353
|
label: StringConstructor;
|
|
1354
|
+
baseColor: StringConstructor;
|
|
1343
1355
|
trueValue: null;
|
|
1344
1356
|
falseValue: null;
|
|
1345
1357
|
value: null;
|
|
@@ -3,10 +3,12 @@ import { createVNode as _createVNode } from "vue";
|
|
|
3
3
|
import "./VColorPickerPreview.css";
|
|
4
4
|
|
|
5
5
|
// Components
|
|
6
|
+
import { VBtn } from "../VBtn/index.mjs";
|
|
6
7
|
import { VSlider } from "../VSlider/index.mjs"; // Composables
|
|
7
8
|
import { makeComponentProps } from "../../composables/component.mjs"; // Utilities
|
|
9
|
+
import { onUnmounted } from 'vue';
|
|
8
10
|
import { nullColor } from "./util/index.mjs";
|
|
9
|
-
import { defineComponent, HSVtoCSS, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
|
11
|
+
import { defineComponent, HexToHSV, HSVtoCSS, propsFactory, SUPPORTS_EYE_DROPPER, useRender } from "../../util/index.mjs"; // Types
|
|
10
12
|
export const makeVColorPickerPreviewProps = propsFactory({
|
|
11
13
|
color: {
|
|
12
14
|
type: Object
|
|
@@ -25,12 +27,36 @@ export const VColorPickerPreview = defineComponent({
|
|
|
25
27
|
let {
|
|
26
28
|
emit
|
|
27
29
|
} = _ref;
|
|
30
|
+
const abortController = new AbortController();
|
|
31
|
+
onUnmounted(() => abortController.abort());
|
|
32
|
+
async function openEyeDropper() {
|
|
33
|
+
if (!SUPPORTS_EYE_DROPPER) return;
|
|
34
|
+
const eyeDropper = new window.EyeDropper();
|
|
35
|
+
try {
|
|
36
|
+
const result = await eyeDropper.open({
|
|
37
|
+
signal: abortController.signal
|
|
38
|
+
});
|
|
39
|
+
const colorHexValue = HexToHSV(result.sRGBHex);
|
|
40
|
+
emit('update:color', {
|
|
41
|
+
...(props.color ?? nullColor),
|
|
42
|
+
...colorHexValue
|
|
43
|
+
});
|
|
44
|
+
} catch (e) {}
|
|
45
|
+
}
|
|
28
46
|
useRender(() => _createVNode("div", {
|
|
29
47
|
"class": ['v-color-picker-preview', {
|
|
30
48
|
'v-color-picker-preview--hide-alpha': props.hideAlpha
|
|
31
49
|
}, props.class],
|
|
32
50
|
"style": props.style
|
|
33
|
-
}, [_createVNode("div", {
|
|
51
|
+
}, [SUPPORTS_EYE_DROPPER && _createVNode("div", {
|
|
52
|
+
"class": "v-color-picker-preview__eye-dropper",
|
|
53
|
+
"key": "eyeDropper"
|
|
54
|
+
}, [_createVNode(VBtn, {
|
|
55
|
+
"onClick": openEyeDropper,
|
|
56
|
+
"icon": "$eyeDropper",
|
|
57
|
+
"variant": "plain",
|
|
58
|
+
"density": "comfortable"
|
|
59
|
+
}, null)]), _createVNode("div", {
|
|
34
60
|
"class": "v-color-picker-preview__dot"
|
|
35
61
|
}, [_createVNode("div", {
|
|
36
62
|
"style": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VColorPickerPreview.mjs","names":["VSlider","makeComponentProps","nullColor","defineComponent","HSVtoCSS","propsFactory","useRender","makeVColorPickerPreviewProps","color","type","Object","disabled","Boolean","hideAlpha","VColorPickerPreview","name","props","emits","setup","_ref","emit","_createVNode","class","style","background","h","a"],"sources":["../../../src/components/VColorPicker/VColorPickerPreview.tsx"],"sourcesContent":["// Styles\nimport './VColorPickerPreview.sass'\n\n// Components\nimport { VSlider } from '@/components/VSlider'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\n\n// Utilities\nimport { nullColor } from './util'\nimport {
|
|
1
|
+
{"version":3,"file":"VColorPickerPreview.mjs","names":["VBtn","VSlider","makeComponentProps","onUnmounted","nullColor","defineComponent","HexToHSV","HSVtoCSS","propsFactory","SUPPORTS_EYE_DROPPER","useRender","makeVColorPickerPreviewProps","color","type","Object","disabled","Boolean","hideAlpha","VColorPickerPreview","name","props","emits","setup","_ref","emit","abortController","AbortController","abort","openEyeDropper","eyeDropper","window","EyeDropper","result","open","signal","colorHexValue","sRGBHex","e","_createVNode","class","style","background","h","a"],"sources":["../../../src/components/VColorPicker/VColorPickerPreview.tsx"],"sourcesContent":["// Styles\nimport './VColorPickerPreview.sass'\n\n// Components\nimport { VBtn } from '@/components/VBtn'\nimport { VSlider } from '@/components/VSlider'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\n\n// Utilities\nimport { onUnmounted } from 'vue'\nimport { nullColor } from './util'\nimport {\n defineComponent,\n HexToHSV,\n HSVtoCSS,\n propsFactory,\n SUPPORTS_EYE_DROPPER,\n useRender,\n} from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { Hex, HSV } from '@/util'\n\nexport const makeVColorPickerPreviewProps = propsFactory({\n color: {\n type: Object as PropType<HSV | null>,\n },\n disabled: Boolean,\n hideAlpha: Boolean,\n\n ...makeComponentProps(),\n}, 'VColorPickerPreview')\n\nexport const VColorPickerPreview = defineComponent({\n name: 'VColorPickerPreview',\n\n props: makeVColorPickerPreviewProps(),\n\n emits: {\n 'update:color': (color: HSV) => true,\n },\n\n setup (props, { emit }) {\n const abortController = new AbortController()\n\n onUnmounted(() => abortController.abort())\n\n async function openEyeDropper () {\n if (!SUPPORTS_EYE_DROPPER) return\n\n const eyeDropper = new window.EyeDropper()\n try {\n const result = await eyeDropper.open({ signal: abortController.signal })\n const colorHexValue = HexToHSV(result.sRGBHex as Hex)\n emit('update:color', { ...(props.color ?? nullColor), ...colorHexValue })\n } catch (e) {}\n }\n\n useRender(() => (\n <div\n class={[\n 'v-color-picker-preview',\n {\n 'v-color-picker-preview--hide-alpha': props.hideAlpha,\n },\n props.class,\n ]}\n style={ props.style }\n >\n { SUPPORTS_EYE_DROPPER && (\n <div class=\"v-color-picker-preview__eye-dropper\" key=\"eyeDropper\">\n <VBtn onClick={ openEyeDropper } icon=\"$eyeDropper\" variant=\"plain\" density=\"comfortable\" />\n </div>\n )}\n\n <div class=\"v-color-picker-preview__dot\">\n <div style={{ background: HSVtoCSS(props.color ?? nullColor) }} />\n </div>\n\n <div class=\"v-color-picker-preview__sliders\">\n <VSlider\n class=\"v-color-picker-preview__track v-color-picker-preview__hue\"\n modelValue={ props.color?.h }\n onUpdate:modelValue={ h => emit('update:color', { ...(props.color ?? nullColor), h }) }\n step={ 0 }\n min={ 0 }\n max={ 360 }\n disabled={ props.disabled }\n thumbSize={ 14 }\n trackSize={ 8 }\n trackFillColor=\"white\"\n hideDetails\n />\n\n { !props.hideAlpha && (\n <VSlider\n class=\"v-color-picker-preview__track v-color-picker-preview__alpha\"\n modelValue={ props.color?.a ?? 1 }\n onUpdate:modelValue={ a => emit('update:color', { ...(props.color ?? nullColor), a }) }\n step={ 1 / 256 }\n min={ 0 }\n max={ 1 }\n disabled={ props.disabled }\n thumbSize={ 14 }\n trackSize={ 8 }\n trackFillColor=\"white\"\n hideDetails\n />\n )}\n </div>\n </div>\n ))\n\n return {}\n },\n})\n\nexport type VColorPickerPreview = InstanceType<typeof VColorPickerPreview>\n"],"mappings":"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"}
|
|
@@ -133,7 +133,7 @@ type FilterMode = 'some' | 'every' | 'union' | 'intersection';
|
|
|
133
133
|
interface ScrollStrategyData {
|
|
134
134
|
root: Ref<HTMLElement | undefined>;
|
|
135
135
|
contentEl: Ref<HTMLElement | undefined>;
|
|
136
|
-
|
|
136
|
+
targetEl: Ref<HTMLElement | undefined>;
|
|
137
137
|
isActive: Ref<boolean>;
|
|
138
138
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
|
139
139
|
}
|
|
@@ -154,7 +154,7 @@ declare function repositionScrollStrategy(data: ScrollStrategyData, props: Strat
|
|
|
154
154
|
|
|
155
155
|
interface LocationStrategyData {
|
|
156
156
|
contentEl: Ref<HTMLElement | undefined>;
|
|
157
|
-
|
|
157
|
+
target: Ref<HTMLElement | [x: number, y: number] | undefined>;
|
|
158
158
|
isActive: Ref<boolean>;
|
|
159
159
|
isRtl: Ref<boolean>;
|
|
160
160
|
}
|
|
@@ -312,6 +312,7 @@ declare const VCombobox: {
|
|
|
312
312
|
bgColor?: string | undefined;
|
|
313
313
|
prependIcon?: IconValue | undefined;
|
|
314
314
|
appendIcon?: IconValue | undefined;
|
|
315
|
+
baseColor?: string | undefined;
|
|
315
316
|
prependInnerIcon?: IconValue | undefined;
|
|
316
317
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
317
318
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -322,7 +323,6 @@ declare const VCombobox: {
|
|
|
322
323
|
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
323
324
|
hint?: string | undefined;
|
|
324
325
|
hideDetails?: boolean | "auto" | undefined;
|
|
325
|
-
baseColor?: string | undefined;
|
|
326
326
|
suffix?: string | undefined;
|
|
327
327
|
counterValue?: ((value: any) => number) | undefined;
|
|
328
328
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -364,6 +364,7 @@ declare const VCombobox: {
|
|
|
364
364
|
maxWidth?: string | number | undefined;
|
|
365
365
|
minHeight?: string | number | undefined;
|
|
366
366
|
minWidth?: string | number | undefined;
|
|
367
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
367
368
|
class?: any;
|
|
368
369
|
$children?: vue.VNodeChild | {
|
|
369
370
|
default?: ((arg: {
|
|
@@ -432,7 +433,7 @@ declare const VCombobox: {
|
|
|
432
433
|
[key: string]: any;
|
|
433
434
|
}>) => void)[] | undefined;
|
|
434
435
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
435
|
-
activator?:
|
|
436
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
436
437
|
"v-slot:activator"?: false | ((arg: {
|
|
437
438
|
isActive: boolean;
|
|
438
439
|
props: Record<string, any>;
|
|
@@ -582,6 +583,7 @@ declare const VCombobox: {
|
|
|
582
583
|
bgColor?: string | undefined;
|
|
583
584
|
prependIcon?: IconValue | undefined;
|
|
584
585
|
appendIcon?: IconValue | undefined;
|
|
586
|
+
baseColor?: string | undefined;
|
|
585
587
|
prependInnerIcon?: IconValue | undefined;
|
|
586
588
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
587
589
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -593,7 +595,6 @@ declare const VCombobox: {
|
|
|
593
595
|
centerAffix?: boolean | undefined;
|
|
594
596
|
hint?: string | undefined;
|
|
595
597
|
hideDetails?: boolean | "auto" | undefined;
|
|
596
|
-
baseColor?: string | undefined;
|
|
597
598
|
suffix?: string | undefined;
|
|
598
599
|
counterValue?: ((value: any) => number) | undefined;
|
|
599
600
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -635,6 +636,7 @@ declare const VCombobox: {
|
|
|
635
636
|
maxWidth?: string | number | undefined;
|
|
636
637
|
minHeight?: string | number | undefined;
|
|
637
638
|
minWidth?: string | number | undefined;
|
|
639
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
638
640
|
class?: any;
|
|
639
641
|
$children?: vue.VNodeChild | {
|
|
640
642
|
default?: ((arg: {
|
|
@@ -703,7 +705,7 @@ declare const VCombobox: {
|
|
|
703
705
|
[key: string]: any;
|
|
704
706
|
}>) => void)[] | undefined;
|
|
705
707
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
706
|
-
activator?:
|
|
708
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
707
709
|
"v-slot:activator"?: false | ((arg: {
|
|
708
710
|
isActive: boolean;
|
|
709
711
|
props: Record<string, any>;
|
|
@@ -919,6 +921,7 @@ declare const VCombobox: {
|
|
|
919
921
|
bgColor?: string | undefined;
|
|
920
922
|
prependIcon?: IconValue | undefined;
|
|
921
923
|
appendIcon?: IconValue | undefined;
|
|
924
|
+
baseColor?: string | undefined;
|
|
922
925
|
prependInnerIcon?: IconValue | undefined;
|
|
923
926
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
924
927
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -930,7 +933,6 @@ declare const VCombobox: {
|
|
|
930
933
|
centerAffix?: boolean | undefined;
|
|
931
934
|
hint?: string | undefined;
|
|
932
935
|
hideDetails?: boolean | "auto" | undefined;
|
|
933
|
-
baseColor?: string | undefined;
|
|
934
936
|
suffix?: string | undefined;
|
|
935
937
|
counterValue?: ((value: any) => number) | undefined;
|
|
936
938
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -972,6 +974,7 @@ declare const VCombobox: {
|
|
|
972
974
|
maxWidth?: string | number | undefined;
|
|
973
975
|
minHeight?: string | number | undefined;
|
|
974
976
|
minWidth?: string | number | undefined;
|
|
977
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
975
978
|
class?: any;
|
|
976
979
|
$children?: vue.VNodeChild | {
|
|
977
980
|
default?: ((arg: {
|
|
@@ -1040,7 +1043,7 @@ declare const VCombobox: {
|
|
|
1040
1043
|
[key: string]: any;
|
|
1041
1044
|
}>) => void)[] | undefined;
|
|
1042
1045
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1043
|
-
activator?:
|
|
1046
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1044
1047
|
"v-slot:activator"?: false | ((arg: {
|
|
1045
1048
|
isActive: boolean;
|
|
1046
1049
|
props: Record<string, any>;
|
|
@@ -1125,6 +1128,7 @@ declare const VCombobox: {
|
|
|
1125
1128
|
bgColor?: string | undefined;
|
|
1126
1129
|
prependIcon?: IconValue | undefined;
|
|
1127
1130
|
appendIcon?: IconValue | undefined;
|
|
1131
|
+
baseColor?: string | undefined;
|
|
1128
1132
|
prependInnerIcon?: IconValue | undefined;
|
|
1129
1133
|
'onClick:clear'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
1130
1134
|
'onClick:append'?: EventProp<[MouseEvent], (args_0: MouseEvent) => any> | undefined;
|
|
@@ -1136,7 +1140,6 @@ declare const VCombobox: {
|
|
|
1136
1140
|
centerAffix?: boolean | undefined;
|
|
1137
1141
|
hint?: string | undefined;
|
|
1138
1142
|
hideDetails?: boolean | "auto" | undefined;
|
|
1139
|
-
baseColor?: string | undefined;
|
|
1140
1143
|
suffix?: string | undefined;
|
|
1141
1144
|
counterValue?: ((value: any) => number) | undefined;
|
|
1142
1145
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
@@ -1178,6 +1181,7 @@ declare const VCombobox: {
|
|
|
1178
1181
|
maxWidth?: string | number | undefined;
|
|
1179
1182
|
minHeight?: string | number | undefined;
|
|
1180
1183
|
minWidth?: string | number | undefined;
|
|
1184
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1181
1185
|
class?: any;
|
|
1182
1186
|
$children?: vue.VNodeChild | {
|
|
1183
1187
|
default?: ((arg: {
|
|
@@ -1246,7 +1250,7 @@ declare const VCombobox: {
|
|
|
1246
1250
|
[key: string]: any;
|
|
1247
1251
|
}>) => void)[] | undefined;
|
|
1248
1252
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1249
|
-
activator?:
|
|
1253
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1250
1254
|
"v-slot:activator"?: false | ((arg: {
|
|
1251
1255
|
isActive: boolean;
|
|
1252
1256
|
props: Record<string, any>;
|
|
@@ -1506,6 +1510,7 @@ declare const VCombobox: {
|
|
|
1506
1510
|
bgColor: StringConstructor;
|
|
1507
1511
|
prependIcon: PropType<IconValue>;
|
|
1508
1512
|
appendIcon: PropType<IconValue>;
|
|
1513
|
+
baseColor: StringConstructor;
|
|
1509
1514
|
clearIcon: {
|
|
1510
1515
|
type: PropType<IconValue>;
|
|
1511
1516
|
default: string;
|
|
@@ -1538,7 +1543,6 @@ declare const VCombobox: {
|
|
|
1538
1543
|
hint: StringConstructor;
|
|
1539
1544
|
persistentHint: BooleanConstructor;
|
|
1540
1545
|
hideDetails: PropType<boolean | "auto">;
|
|
1541
|
-
baseColor: StringConstructor;
|
|
1542
1546
|
clearable: BooleanConstructor;
|
|
1543
1547
|
persistentClear: BooleanConstructor;
|
|
1544
1548
|
singleLine: BooleanConstructor;
|
|
@@ -1634,6 +1638,7 @@ declare const VCombobox: {
|
|
|
1634
1638
|
maxWidth?: string | number | undefined;
|
|
1635
1639
|
minHeight?: string | number | undefined;
|
|
1636
1640
|
minWidth?: string | number | undefined;
|
|
1641
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1637
1642
|
class?: any;
|
|
1638
1643
|
$children?: vue.VNodeChild | {
|
|
1639
1644
|
default?: ((arg: {
|
|
@@ -1702,7 +1707,7 @@ declare const VCombobox: {
|
|
|
1702
1707
|
[key: string]: any;
|
|
1703
1708
|
}>) => void)[] | undefined;
|
|
1704
1709
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1705
|
-
activator?:
|
|
1710
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
1706
1711
|
"v-slot:activator"?: false | ((arg: {
|
|
1707
1712
|
isActive: boolean;
|
|
1708
1713
|
props: Record<string, any>;
|
|
@@ -1817,6 +1822,7 @@ declare const VCombobox: {
|
|
|
1817
1822
|
bgColor: StringConstructor;
|
|
1818
1823
|
prependIcon: PropType<IconValue>;
|
|
1819
1824
|
appendIcon: PropType<IconValue>;
|
|
1825
|
+
baseColor: StringConstructor;
|
|
1820
1826
|
clearIcon: {
|
|
1821
1827
|
type: PropType<IconValue>;
|
|
1822
1828
|
default: string;
|
|
@@ -1849,7 +1855,6 @@ declare const VCombobox: {
|
|
|
1849
1855
|
hint: StringConstructor;
|
|
1850
1856
|
persistentHint: BooleanConstructor;
|
|
1851
1857
|
hideDetails: PropType<boolean | "auto">;
|
|
1852
|
-
baseColor: StringConstructor;
|
|
1853
1858
|
clearable: BooleanConstructor;
|
|
1854
1859
|
persistentClear: BooleanConstructor;
|
|
1855
1860
|
singleLine: BooleanConstructor;
|
|
@@ -1945,6 +1950,7 @@ declare const VCombobox: {
|
|
|
1945
1950
|
maxWidth?: string | number | undefined;
|
|
1946
1951
|
minHeight?: string | number | undefined;
|
|
1947
1952
|
minWidth?: string | number | undefined;
|
|
1953
|
+
target?: Element | "cursor" | "parent" | (string & {}) | vue.ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1948
1954
|
class?: any;
|
|
1949
1955
|
$children?: vue.VNodeChild | {
|
|
1950
1956
|
default?: ((arg: {
|
|
@@ -2013,7 +2019,7 @@ declare const VCombobox: {
|
|
|
2013
2019
|
[key: string]: any;
|
|
2014
2020
|
}>) => void)[] | undefined;
|
|
2015
2021
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2016
|
-
activator?:
|
|
2022
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
|
2017
2023
|
"v-slot:activator"?: false | ((arg: {
|
|
2018
2024
|
isActive: boolean;
|
|
2019
2025
|
props: Record<string, any>;
|