@sanity/color-input 6.0.1 → 6.0.3
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/LICENSE +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/package.json +12 -14
package/LICENSE
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ declare const color: {
|
|
|
38
38
|
alpha: string;
|
|
39
39
|
hex: string;
|
|
40
40
|
hsl: string;
|
|
41
|
-
}, Record<"
|
|
41
|
+
}, Record<"title" | "hex" | "alpha" | "hsl", any>> | undefined;
|
|
42
42
|
};
|
|
43
43
|
declare const hslaColor: {
|
|
44
44
|
type: "object";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/types.ts","../src/schemas/color.tsx","../src/schemas/hslaColor.ts","../src/schemas/hsvaColor.ts","../src/schemas/rgbaColor.ts","../src/ColorInput.tsx","../src/LazyColorInput.tsx","../src/index.ts"],"sourcesContent":[],"mappings":";;;;UAGiB,UAAA;;OAEV;EAFU,GAAA,EAGV,QAHoB;EAEpB,GAAA,EAEA,QAFA;;AAEA,UAGU,YAAA,SAAqB,IAH/B,CAGoC,aAHpC,EAAA,SAAA,CAAA,CAAA;EAAQ,YAAA,CAAA,EAAA,OAAA;EAGE,SAAA,CAAA,EAEH,KAFgB,CAEV,KAFU,CAAA;;AAEV,KAGR,eAAA,GAAkB,IAHV,CAGe,gBAHf,EAAA,SAAA,CAAA,GAAA;EAAN,OAAA,CAAA,EAIF,YAJE;CAFwB;AAAI,KAQ9B,eAAA,GAAkB,gBARY,CAQK,UARL,EAQiB,eARjB,CAAA;cCHpC,aAAA;;;ADJN;AAEO,UCOU,eAAA,SAAwB,IDPlC,CCOuC,gBDPvC,EAAA,MAAA,GAAA,QAAA,GAAA,SAAA,CAAA,CAAA;EACA,IAAA,EAAA,OCOQ,aDPR;EACA,OAAA,CAAA,ECOK,YDPL;;AAGP,eAAiB,QAAa,CAAA;EAAa,UAAA,oBAAA,CAAA;IAEvB,KAAA,ECQT,eDRS;EAAN;;AAF4B,cCc7B,KDd6B,EAAA;EAK9B,IAAA,EAAA,QAAA;EAAuB,IAAA,EAAA,OAAA;CAAL,OAAA,iBAAA,EAAA,SAAA,CAAA,GAAA;EAClB,OAAA,CAAA,uBAAA,CAAA;IAAY,KAAA,EAAA,MAAA;IAEZ,KAAA,EAAA,MAAA;IAAmC,GAAA,EAAA,MAAA;IAAY,GAAA,EAAA,MAAA;EAA7B,CAAA,QAAA,CAAA,OAAA,GAAA,KAAA,GAAA,OAAA,GAAA,KAAA,EAAA,GAAA,CAAA,CAAA,GAAA,SAAA;CAAgB;cEhBjC;;;SAUX,OAAA,CAAA,gBAAA;;AFTF,CAAA;cGDa;;;SAUX,OAAA,CAAA,gBAAA;;AHTF,CAAA;cIDa;;;SAUX,OAAA,CAAA,gBAAA;;AJTF,CAAA;iBKmKwB,YAAA,QAAkB,mBAAmB,KAAA,CAAM,GAAA,CAAI;cCpK1D,YAAU,MAAA,CAAA,2BAAqC;cCK/C,YAKX,OAAA,CALqB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/color-input",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.3",
|
|
4
4
|
"description": "Color input",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cms",
|
|
@@ -15,22 +15,22 @@
|
|
|
15
15
|
"bugs": {
|
|
16
16
|
"url": "https://github.com/sanity-io/plugins/issues"
|
|
17
17
|
},
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"author": "Sanity.io <hello@sanity.io>",
|
|
18
20
|
"repository": {
|
|
19
21
|
"type": "git",
|
|
20
22
|
"url": "git+ssh://git@github.com/sanity-io/plugins.git",
|
|
21
23
|
"directory": "plugins/@sanity/color-input"
|
|
22
24
|
},
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
+
"files": [
|
|
26
|
+
"dist"
|
|
27
|
+
],
|
|
25
28
|
"type": "module",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
26
30
|
"exports": {
|
|
27
31
|
".": "./dist/index.js",
|
|
28
32
|
"./package.json": "./package.json"
|
|
29
33
|
},
|
|
30
|
-
"types": "./dist/index.d.ts",
|
|
31
|
-
"files": [
|
|
32
|
-
"dist"
|
|
33
|
-
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@sanity/icons": "^3.7.4",
|
|
36
36
|
"@sanity/ui": "^3.1.11",
|
|
@@ -38,25 +38,23 @@
|
|
|
38
38
|
"tinycolor2": "^1.6.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@sanity/pkg-utils": "^10.2.
|
|
41
|
+
"@sanity/pkg-utils": "^10.2.5",
|
|
42
42
|
"@types/react": "^19.2.7",
|
|
43
43
|
"@types/react-color": "^2.17.12",
|
|
44
44
|
"@types/tinycolor2": "^1.4.6",
|
|
45
|
-
"@typescript/native-preview": "7.0.0-dev.20251216.1",
|
|
46
45
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
47
46
|
"babel-plugin-styled-components": "^2.1.4",
|
|
48
47
|
"eslint": "^9.39.2",
|
|
49
48
|
"react": "^19.2.3",
|
|
50
|
-
"sanity": "^5.
|
|
49
|
+
"sanity": "^5.1.0",
|
|
51
50
|
"styled-components": "^6.1.19",
|
|
52
|
-
"
|
|
53
|
-
"@repo/eslint-config": "0.0.7",
|
|
51
|
+
"@repo/eslint-config": "0.0.0",
|
|
54
52
|
"@repo/package.config": "0.0.0",
|
|
55
|
-
"@repo/tsconfig": "
|
|
53
|
+
"@repo/tsconfig": "0.0.0"
|
|
56
54
|
},
|
|
57
55
|
"peerDependencies": {
|
|
58
56
|
"react": "^19.2",
|
|
59
|
-
"sanity": "^5
|
|
57
|
+
"sanity": "^5",
|
|
60
58
|
"styled-components": "^6.1"
|
|
61
59
|
},
|
|
62
60
|
"engines": {
|