datocms-plugin-everything-svg 1.0.1 → 1.0.2
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/build/main.css +3 -1
- package/package.json +19 -11
package/build/main.css
CHANGED
|
@@ -330,7 +330,9 @@
|
|
|
330
330
|
|
|
331
331
|
.RawSvgViewer-module__input--i7vSo {
|
|
332
332
|
border-color: transparent;
|
|
333
|
-
box-shadow:
|
|
333
|
+
box-shadow:
|
|
334
|
+
0 0 0 5px #fff,
|
|
335
|
+
0 0 0 8px var(--semi-transparent-accent-color);
|
|
334
336
|
}
|
|
335
337
|
|
|
336
338
|
.RawSvgViewer-module__editing--LVDdB .RawSvgViewer-module__input--i7vSo {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "datocms-plugin-everything-svg",
|
|
3
3
|
"homepage": "https://github.com/voorhoede/datocms-plugin-everything-svg.git",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"description": "A DatoCMS plugin that lets you upload SVGs to your DatoCMS project and select the raw SVG it in your models",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=18.0.0"
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@datocms/cma-client-browser": "^2.0.0",
|
|
20
|
-
"@types/lodash": "^4.14.
|
|
21
|
-
"@types/node": "^20.
|
|
22
|
-
"@types/react": "^18.2.
|
|
23
|
-
"@types/react-dom": "^18.2.
|
|
20
|
+
"@types/lodash": "^4.14.197",
|
|
21
|
+
"@types/node": "^20.4.9",
|
|
22
|
+
"@types/react": "^18.2.20",
|
|
23
|
+
"@types/react-dom": "^18.2.7",
|
|
24
24
|
"@types/uuid": "^9.0.2",
|
|
25
25
|
"classnames": "^2.3.2",
|
|
26
26
|
"datocms-plugin-sdk": "^0.7.14",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"uuid": "^9.0.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@babel/core": "^7.22.
|
|
36
|
-
"@babel/preset-env": "^7.22.
|
|
35
|
+
"@babel/core": "^7.22.10",
|
|
36
|
+
"@babel/preset-env": "^7.22.10",
|
|
37
37
|
"@babel/preset-react": "^7.22.5",
|
|
38
38
|
"cross-env": "^7.0.3",
|
|
39
39
|
"css-loader": "^6.8.1",
|
|
40
|
-
"eslint-plugin-prettier": "^
|
|
40
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
41
41
|
"html-webpack-plugin": "^5.5.3",
|
|
42
42
|
"husky": "^8.0.3",
|
|
43
43
|
"mini-css-extract-plugin": "^2.7.6",
|
|
44
|
-
"prettier": "
|
|
44
|
+
"prettier": "^3.0.1",
|
|
45
45
|
"ts-loader": "^9.4.4",
|
|
46
|
-
"webpack": "^5.88.
|
|
46
|
+
"webpack": "^5.88.2",
|
|
47
47
|
"webpack-cli": "^5.1.4",
|
|
48
48
|
"webpack-dev-server": "^4.15.1"
|
|
49
49
|
},
|
|
@@ -84,7 +84,15 @@
|
|
|
84
84
|
"prettier"
|
|
85
85
|
],
|
|
86
86
|
"rules": {
|
|
87
|
-
"no-console":
|
|
87
|
+
"no-console": [
|
|
88
|
+
"error",
|
|
89
|
+
{
|
|
90
|
+
"allow": [
|
|
91
|
+
"warn",
|
|
92
|
+
"error"
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
],
|
|
88
96
|
"prettier/prettier": 1
|
|
89
97
|
}
|
|
90
98
|
},
|