Skip to content

Commit 075c86a

Browse files
Build
1 parent 5ae0bf2 commit 075c86a

File tree

5 files changed

+1100
-1092
lines changed

5 files changed

+1100
-1092
lines changed

dist/plugin/VColorField.vue.d.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
88
cardOffsetY: number;
99
cardPadding: number;
1010
cardProps: () => {};
11+
clearable: boolean;
1112
color: undefined;
1213
colorPickerProps: () => {};
1314
density: string;
@@ -31,6 +32,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
3132
readonly: boolean;
3233
readonlyInput: boolean;
3334
required: boolean;
35+
variant: string;
3436
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3537
update: (...args: any[]) => void;
3638
"update:mode": (...args: any[]) => void;
@@ -43,6 +45,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
4345
cardOffsetY: number;
4446
cardPadding: number;
4547
cardProps: () => {};
48+
clearable: boolean;
4649
color: undefined;
4750
colorPickerProps: () => {};
4851
density: string;
@@ -66,6 +69,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
6669
readonly: boolean;
6770
readonlyInput: boolean;
6871
required: boolean;
72+
variant: string;
6973
}>>> & {
7074
onUpdate?: ((...args: any[]) => any) | undefined;
7175
"onUpdate:mode"?: ((...args: any[]) => any) | undefined;
@@ -79,6 +83,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
7983
cardOffsetY: string | number;
8084
cardPadding: string | number;
8185
cardProps: import('./types').VCardProps;
86+
clearable: boolean;
8287
colorPickerProps: Partial<{
8388
width: NonNullable<string | number>;
8489
style: globalThis.StyleValue;
@@ -212,9 +217,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
212217
}>> & {
213218
"onUpdate:modelValue"?: ((color: any) => any) | undefined;
214219
"onUpdate:mode"?: ((mode: "rgba" | "rgb" | "hsl" | "hsla" | "hex" | "hexa") => any) | undefined;
215-
}, "canvasHeight" | "dotSize" | "hideCanvas" | "hideInputs" | "hideSliders" | "mode" | "modes" | "showSwatches" | "swatchesMaxHeight" | "tag" | "style" | "rounded" | "width" | "disabled"> & {
216-
hideModeSwitch?: boolean | undefined;
217-
};
220+
}, "canvasHeight" | "dotSize" | "hideCanvas" | "hideInputs" | "hideSliders" | "mode" | "modes" | "showSwatches" | "swatchesMaxHeight" | "tag" | "style" | "rounded" | "width" | "disabled">;
218221
density: "default" | "comfortable" | "compact" | null;
219222
hint: string;
220223
iconHoverColor: string | boolean;
@@ -236,6 +239,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
236239
readonly: boolean | null;
237240
readonlyInput: boolean | null;
238241
required: boolean;
242+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
239243
}, {}>, Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
240244
prepend?(_: {
241245
toggleColorPicker: typeof toggleColorPicker;

dist/plugin/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,9 @@ export interface Props extends PipProps {
2727
cardOffsetY?: number | string;
2828
cardPadding?: number | string;
2929
cardProps?: VCardProps;
30+
clearable?: VTextField['$props']['clearable'];
3031
color?: VTextField['$props']['color'];
31-
colorPickerProps?: VColorPicker['$props'] & {
32-
hideModeSwitch?: boolean;
33-
};
32+
colorPickerProps?: VColorPicker['$props'];
3433
density?: VTextField['$props']['density'];
3534
hint?: string;
3635
iconHoverColor?: VIcon['$props']['color'] | boolean;
@@ -58,6 +57,7 @@ export interface Props extends PipProps {
5857
showSwatches?: VColorPicker['$props']['showSwatches'];
5958
swatches?: VColorPicker['$props']['swatches'];
6059
swatchesMaxHeight?: VColorPicker['$props']['swatchesMaxHeight'];
60+
variant?: VTextField['$props']['variant'];
6161
}
6262
export interface GlobalOptions extends Props {
6363
}

dist/scss/main.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@
1212

1313
&--card {
1414
display: none;
15-
position: absolute;
15+
position: absolute !important;
1616
z-index: 999999;
1717

1818
.v-color-picker {
1919
width: 100% !important;
2020

21-
2221
&-canvas {
2322
canvas {
2423
width: 100%;

dist/vuetify-color-field.cjs.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)