@urcolor/vue 0.0.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/README.md +155 -0
- package/dist/components/ColorArea/ColorAreaCheckerboard.vue.d.ts +10 -0
- package/dist/components/ColorArea/ColorAreaGradient.vue.d.ts +36 -0
- package/dist/components/ColorArea/ColorAreaImpl.vue.d.ts +45 -0
- package/dist/components/ColorArea/ColorAreaRegion.vue.d.ts +15 -0
- package/dist/components/ColorArea/ColorAreaRoot.vue.d.ts +101 -0
- package/dist/components/ColorArea/ColorAreaThumb.vue.d.ts +17 -0
- package/dist/components/ColorArea/ColorAreaThumbX.vue.d.ts +17 -0
- package/dist/components/ColorArea/ColorAreaThumbY.vue.d.ts +17 -0
- package/dist/components/ColorArea/ColorAreaTrack.vue.d.ts +17 -0
- package/dist/components/ColorArea/index.d.ts +9 -0
- package/dist/components/ColorArea/utils.d.ts +62 -0
- package/dist/components/ColorField/ColorFieldDecrement.vue.d.ts +19 -0
- package/dist/components/ColorField/ColorFieldIncrement.vue.d.ts +19 -0
- package/dist/components/ColorField/ColorFieldInput.vue.d.ts +17 -0
- package/dist/components/ColorField/ColorFieldRoot.vue.d.ts +74 -0
- package/dist/components/ColorField/ColorFieldSwatch.vue.d.ts +15 -0
- package/dist/components/ColorField/index.d.ts +5 -0
- package/dist/components/ColorField/utils.d.ts +8 -0
- package/dist/components/ColorSlider/ColorSliderCheckerboard.vue.d.ts +10 -0
- package/dist/components/ColorSlider/ColorSliderGradient.vue.d.ts +33 -0
- package/dist/components/ColorSlider/ColorSliderRange.vue.d.ts +13 -0
- package/dist/components/ColorSlider/ColorSliderRoot.vue.d.ts +49 -0
- package/dist/components/ColorSlider/ColorSliderThumb.vue.d.ts +13 -0
- package/dist/components/ColorSlider/ColorSliderTrack.vue.d.ts +13 -0
- package/dist/components/ColorSlider/index.d.ts +6 -0
- package/dist/components/ColorSwatch/ColorSwatchRoot.vue.d.ts +26 -0
- package/dist/components/ColorSwatch/index.d.ts +2 -0
- package/dist/components/ColorSwatchGroup/ColorSwatchGroupItem.vue.d.ts +25 -0
- package/dist/components/ColorSwatchGroup/ColorSwatchGroupRoot.vue.d.ts +58 -0
- package/dist/components/ColorSwatchGroup/index.d.ts +5 -0
- package/dist/composables/useColor.d.ts +3 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +2852 -0
- package/package.json +58 -0
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@urcolor/vue",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "bun run build:js && bun run build:types",
|
|
18
|
+
"build:js": "vite build",
|
|
19
|
+
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist --project tsconfig.build.json"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"color",
|
|
23
|
+
"color-picker",
|
|
24
|
+
"vue",
|
|
25
|
+
"vue3",
|
|
26
|
+
"headless",
|
|
27
|
+
"accessible",
|
|
28
|
+
"color-space",
|
|
29
|
+
"oklch",
|
|
30
|
+
"hsl",
|
|
31
|
+
"color-swatch",
|
|
32
|
+
"color-slider"
|
|
33
|
+
],
|
|
34
|
+
"author": {
|
|
35
|
+
"name": "GrandMagus",
|
|
36
|
+
"url": "https://github.com/GrandMagus02"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://urcolor.vercel.app/",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/ur-color/urcolor",
|
|
42
|
+
"directory": "packages/vue"
|
|
43
|
+
},
|
|
44
|
+
"bugs": {
|
|
45
|
+
"url": "https://github.com/ur-color/urcolor/issues"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@urcolor/core": "workspace:*",
|
|
49
|
+
"internationalized-color": "*",
|
|
50
|
+
"reka-ui": "^2.8.0"
|
|
51
|
+
},
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"vue": "^3"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"vite": "^7.3.1"
|
|
57
|
+
}
|
|
58
|
+
}
|