datocms-plugin-tile-picker 0.1.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/README.md +35 -0
- package/dist/assets/index-BQo7iE5E.css +1 -0
- package/dist/assets/index-CmwsJsJW.js +622 -0
- package/dist/index.html +16 -0
- package/dist/robots.txt +3 -0
- package/docs/carousel.png +0 -0
- package/docs/cover.png +0 -0
- package/docs/demo.mp4 +0 -0
- package/docs/field_config.png +0 -0
- package/docs/grid.png +0 -0
- package/docs/presets.png +0 -0
- package/package.json +53 -0
package/dist/index.html
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
|
|
4
|
+
<head>
|
|
5
|
+
<meta charset="UTF-8" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
+
<title>DatoCMS Plugin</title>
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-CmwsJsJW.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-BQo7iE5E.css">
|
|
10
|
+
</head>
|
|
11
|
+
|
|
12
|
+
<body>
|
|
13
|
+
<div id="root"></div>
|
|
14
|
+
</body>
|
|
15
|
+
|
|
16
|
+
</html>
|
package/dist/robots.txt
ADDED
|
Binary file
|
package/docs/cover.png
ADDED
|
Binary file
|
package/docs/demo.mp4
ADDED
|
Binary file
|
|
Binary file
|
package/docs/grid.png
ADDED
|
Binary file
|
package/docs/presets.png
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "datocms-plugin-tile-picker",
|
|
3
|
+
"description": "Replace plain dropdowns with a visual tile grid — pick from color swatches, image thumbnails, or any mix of both.",
|
|
4
|
+
"homepage": "https://github.com/datocms/plugins/tree/master/tile-picker#readme",
|
|
5
|
+
"private": false,
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"author": "Stefano Verna <s.verna@datocms.com>",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"datocms-plugin"
|
|
11
|
+
],
|
|
12
|
+
"datoCmsPlugin": {
|
|
13
|
+
"title": "Tile Picker",
|
|
14
|
+
"coverImage": "docs/cover.png",
|
|
15
|
+
"previewImage": "docs/demo.mp4",
|
|
16
|
+
"entryPoint": "dist/index.html",
|
|
17
|
+
"permissions": []
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"docs"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "vite",
|
|
25
|
+
"build": "tsc -b && vite build",
|
|
26
|
+
"preview": "vite preview",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@fortawesome/fontawesome-svg-core": "^7.2.0",
|
|
31
|
+
"@fortawesome/free-solid-svg-icons": "^7.2.0",
|
|
32
|
+
"@fortawesome/react-fontawesome": "^3.3.1",
|
|
33
|
+
"datocms-plugin-sdk": "^2.2.2",
|
|
34
|
+
"datocms-react-ui": "^2.2.2",
|
|
35
|
+
"final-form": "^5.0.1",
|
|
36
|
+
"final-form-arrays": "^4.0.1",
|
|
37
|
+
"lodash-es": "^4.17.21",
|
|
38
|
+
"react": "^18.3.1",
|
|
39
|
+
"react-dom": "^18.3.1",
|
|
40
|
+
"react-final-form": "^7.0.1",
|
|
41
|
+
"react-final-form-arrays": "^4.0.0",
|
|
42
|
+
"remeda": "^2.0.0"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/lodash-es": "^4.17.6",
|
|
46
|
+
"@types/react": "^18.3.3",
|
|
47
|
+
"@types/react-dom": "^18.3.0",
|
|
48
|
+
"@vitejs/plugin-react": "^4.3.1",
|
|
49
|
+
"globals": "^15.9.0",
|
|
50
|
+
"typescript": "^5.5.3",
|
|
51
|
+
"vite": "^5.4.1"
|
|
52
|
+
}
|
|
53
|
+
}
|