Skip to content

Commit 71af298

Browse files
Merge pull request #26 from webdevnerdstuff/dev
Update packages
2 parents 6fa87c8 + f2925f1 commit 71af298

7 files changed

+1898
-1730
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to the "vuetify-color-field" plugin will be documented in this file.
33

4+
## v1.1.3
5+
02-23-24
6+
[main] (@webdevnerdstuff)
7+
* Update packages
8+
49
## v1.1.2
510
01-11-24
611
[main] (@webdevnerdstuff)

dist/plugin/VColorField.vue.d.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
9191
tag: string;
9292
mode: "rgba" | "rgb" | "hsl" | "hsla" | "hex" | "hexa";
9393
rounded: string | number | boolean;
94+
tile: boolean;
9495
dotSize: string | number;
9596
modes: readonly ("rgba" | "rgb" | "hsl" | "hsla" | "hex" | "hexa")[];
9697
canvasHeight: string | number;
@@ -111,6 +112,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
111112
readonly swatchesMaxHeight: string | number;
112113
readonly tag: string;
113114
readonly style: globalThis.StyleValue;
115+
readonly tile: boolean;
114116
readonly width: NonNullable<string | number>;
115117
readonly disabled: boolean;
116118
readonly color?: string | undefined;
@@ -168,6 +170,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
168170
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
169171
default: undefined;
170172
};
173+
tile: BooleanConstructor;
171174
canvasHeight: {
172175
type: (StringConstructor | NumberConstructor)[];
173176
default: number;
@@ -217,7 +220,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
217220
}>> & {
218221
"onUpdate:modelValue"?: ((color: any) => any) | undefined;
219222
"onUpdate:mode"?: ((mode: "rgba" | "rgb" | "hsl" | "hsla" | "hex" | "hexa") => any) | undefined;
220-
}, "canvasHeight" | "dotSize" | "hideCanvas" | "hideInputs" | "hideSliders" | "mode" | "modes" | "showSwatches" | "swatchesMaxHeight" | "tag" | "style" | "rounded" | "width" | "disabled">;
223+
}, "canvasHeight" | "dotSize" | "hideCanvas" | "hideInputs" | "hideSliders" | "mode" | "modes" | "showSwatches" | "swatchesMaxHeight" | "tag" | "style" | "rounded" | "tile" | "width" | "disabled">;
221224
density: "default" | "comfortable" | "compact" | null;
222225
hint: string;
223226
iconHoverColor: string | boolean;

dist/plugin/index.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { App } from 'vue';
22
import type { GlobalOptions } from './types';
3+
import './styles/main.scss';
34
import VColorField from './VColorField.vue';
45
export declare const globalOptions: unique symbol;
56
export declare function createVColorField(options?: GlobalOptions): {

dist/vuetify-color-field.cjs.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuetify-color-field.es.js

+801-797
Large diffs are not rendered by default.

package.json

+29-29
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wdns/vuetify-color-field",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "Vuetify Color Field is a Vuetify VTextField Color Picker Component",
55
"private": false,
66
"publishConfig": {
@@ -64,67 +64,67 @@
6464
"wdns"
6565
],
6666
"dependencies": {
67-
"@vueuse/core": "^10.7.1",
68-
"vue": "^3.4.10",
69-
"vuetify": "^3.4.10"
67+
"@vueuse/core": "^10.8.0",
68+
"vue": "^3.4.19",
69+
"vuetify": "^3.5.5"
7070
},
7171
"devDependencies": {
7272
"@fortawesome/fontawesome-svg-core": "^6.5.1",
7373
"@fortawesome/free-brands-svg-icons": "^6.5.1",
7474
"@fortawesome/free-regular-svg-icons": "^6.5.1",
7575
"@fortawesome/free-solid-svg-icons": "^6.5.1",
76-
"@fortawesome/vue-fontawesome": "^3.0.5",
76+
"@fortawesome/vue-fontawesome": "^3.0.6",
7777
"@mdi/font": "^7.4.47",
7878
"@rollup/plugin-commonjs": "^25.0.7",
7979
"@rollup/plugin-node-resolve": "^15.2.3",
8080
"@rollup/plugin-terser": "^0.4.4",
81-
"@stylistic/stylelint-plugin": "^2.0.0",
82-
"@types/node": "^20.11.0",
83-
"@typescript-eslint/eslint-plugin": "^6.18.1",
84-
"@typescript-eslint/parser": "^6.18.1",
85-
"@vitejs/plugin-vue": "^5.0.3",
81+
"@stylistic/stylelint-plugin": "^2.1.0",
82+
"@types/node": "^20.11.20",
83+
"@typescript-eslint/eslint-plugin": "^7.0.2",
84+
"@typescript-eslint/parser": "^7.0.2",
85+
"@vitejs/plugin-vue": "^5.0.4",
8686
"@vue/cli-plugin-eslint": "^5.0.8",
8787
"@vue/cli-service": "^5.0.8",
8888
"@vue/eslint-config-typescript": "^12.0.0",
89-
"@vue/test-utils": "^2.4.3",
89+
"@vue/test-utils": "^2.4.4",
9090
"@wdns/vue-code-block": "^2.3.1",
91-
"autoprefixer": "^10.4.16",
91+
"autoprefixer": "^10.4.17",
9292
"eslint": "^8.56.0",
9393
"eslint-config-prettier": "^9.1.0",
9494
"eslint-plugin-import": "^2.29.1",
9595
"eslint-plugin-prettier": "^5.1.3",
96-
"eslint-plugin-vue": "^9.20.0",
96+
"eslint-plugin-vue": "^9.22.0",
9797
"gh-pages": "^6.1.1",
98-
"husky": "^8.0.3",
99-
"jsdom": "^23.2.0",
100-
"lint-staged": "^15.2.0",
98+
"husky": "^9.0.11",
99+
"jsdom": "^24.0.0",
100+
"lint-staged": "^15.2.2",
101101
"pinia": "^2.1.7",
102-
"postcss": "^8.4.33",
103-
"postcss-html": "^1.5.0",
102+
"postcss": "^8.4.35",
103+
"postcss-html": "^1.6.0",
104104
"postcss-scss": "^4.0.9",
105-
"prettier": "^3.1.1",
105+
"prettier": "^3.2.5",
106106
"prismjs": "^1.29.0",
107107
"roboto-fontface": "^0.10.0",
108-
"rollup": "^4.9.4",
108+
"rollup": "^4.12.0",
109109
"rollup-plugin-polyfill-node": "^0.13.0",
110110
"rollup-plugin-postcss": "^4.0.2",
111111
"rollup-plugin-scss": "^4.0.0",
112112
"rollup-plugin-typescript2": "^0.36.0",
113-
"sass": "^1.69.7",
114-
"stylelint": "^16.1.0",
113+
"sass": "^1.71.1",
114+
"stylelint": "^16.2.1",
115115
"stylelint-config-standard": "^36.0.0",
116116
"stylelint-order": "^6.0.4",
117-
"stylelint-scss": "^6.0.0",
117+
"stylelint-scss": "^6.1.0",
118118
"typescript": "^5.3.3",
119-
"unplugin-auto-import": "^0.17.3",
120-
"vite": "^5.0.10",
121-
"vite-plugin-css-injected-by-js": "^3.3.1",
122-
"vite-plugin-dts": "^3.7.0",
119+
"unplugin-auto-import": "^0.17.5",
120+
"vite": "^5.1.4",
121+
"vite-plugin-css-injected-by-js": "^3.4.0",
122+
"vite-plugin-dts": "^3.7.3",
123123
"vite-plugin-eslint": "^1.8.1",
124-
"vite-plugin-static-copy": "^1.0.0",
124+
"vite-plugin-static-copy": "^1.0.1",
125125
"vite-plugin-stylelint": "^5.3.0",
126126
"vite-plugin-vuetify": "^2.0.1",
127-
"vitest": "^1.1.2",
127+
"vitest": "^1.3.1",
128128
"vue-tsc": "^1.8.25",
129129
"webfontloader": "^1.6.28"
130130
}

0 commit comments

Comments
 (0)