sanity-plugin-hotspot-array 0.1.0-v3-studio.3 → 1.0.0
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/README.md +4 -7
- package/package.json +5 -5
- package/v2-incompatible.js +1 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
# sanity-plugin-hotspot-array
|
|
2
2
|
|
|
3
|
-
>
|
|
4
|
-
>
|
|
5
|
-
> This is the **Sanity Studio v3 version** of sanity-plugin-hotspot-array.
|
|
6
|
-
>
|
|
7
|
-
> For the v2 version, please refer to the [v2-branch](https://github.com/sanity-io/sanity-plugin-hotspot-array).
|
|
3
|
+
>This is a **Sanity Studio v3** plugin.
|
|
4
|
+
> For the v2 version, please refer to the [v2-branch](https://github.com/sanity-io/sanity-plugin-hotspot-array/tree/studio-v2).
|
|
8
5
|
|
|
9
6
|
## What is it?
|
|
10
7
|
|
|
@@ -15,13 +12,13 @@ A configurable Custom Input for Arrays that will add and update items by clickin
|
|
|
15
12
|
## Installation
|
|
16
13
|
|
|
17
14
|
```
|
|
18
|
-
npm install --save sanity-plugin-hotspot-array
|
|
15
|
+
npm install --save sanity-plugin-hotspot-array
|
|
19
16
|
```
|
|
20
17
|
|
|
21
18
|
or
|
|
22
19
|
|
|
23
20
|
```
|
|
24
|
-
yarn add sanity-plugin-hotspot-array
|
|
21
|
+
yarn add sanity-plugin-hotspot-array
|
|
25
22
|
```
|
|
26
23
|
|
|
27
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sanity-plugin-hotspot-array",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "A configurable Custom Input for Arrays that will add and update items by clicking on an Image",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sanity",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"url": "git@github.com:sanity-io/sanity-plugin-hotspot-array.git"
|
|
16
16
|
},
|
|
17
17
|
"license": "MIT",
|
|
18
|
-
"author": "
|
|
18
|
+
"author": "Sanity.io <hello@sanity.io>",
|
|
19
19
|
"exports": {
|
|
20
20
|
".": {
|
|
21
21
|
"types": "./lib/src/index.d.ts",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@sanity/asset-utils": "^1.2.3",
|
|
53
53
|
"@sanity/incompatible-plugin": "^1.0.4",
|
|
54
54
|
"@sanity/ui": "1.0.0-beta.32",
|
|
55
|
-
"@sanity/util": "3.0.0-rc.
|
|
55
|
+
"@sanity/util": "3.0.0-rc.2",
|
|
56
56
|
"framer-motion": "^6.3.11"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
@@ -76,14 +76,14 @@
|
|
|
76
76
|
"prettier-plugin-packagejson": "^2.3.0",
|
|
77
77
|
"react": "^18",
|
|
78
78
|
"rimraf": "^3.0.2",
|
|
79
|
-
"sanity": "3.0.0-rc.
|
|
79
|
+
"sanity": "3.0.0-rc.2",
|
|
80
80
|
"typescript": "^4.8.4"
|
|
81
81
|
},
|
|
82
82
|
"peerDependencies": {
|
|
83
83
|
"@sanity/image-url": "1.0.1",
|
|
84
84
|
"lodash": "4.17.21",
|
|
85
85
|
"react": "^18",
|
|
86
|
-
"sanity": "dev-preview || 3.0.0-rc.
|
|
86
|
+
"sanity": "dev-preview || 3.0.0-rc.2"
|
|
87
87
|
},
|
|
88
88
|
"engines": {
|
|
89
89
|
"node": ">=14"
|