datocms-plugin-netlify-forms 1.0.6 → 1.0.8

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/dist/index.html CHANGED
@@ -1,11 +1,11 @@
1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>DatoCMS Plugin</title>
7
- <script type="module" crossorigin src="./assets/index-BHAqNGsi.js"></script>
8
- <link rel="stylesheet" crossorigin href="./assets/index-Dq98t977.css">
7
+ <script type="module" crossorigin src="./assets/index-CA4nM0s8.js"></script>
8
+ <link rel="stylesheet" crossorigin href="./assets/index-BusF_rNB.css">
9
9
  </head>
10
10
 
11
11
  <body>
package/package.json CHANGED
@@ -1,55 +1,65 @@
1
1
  {
2
2
  "name": "datocms-plugin-netlify-forms",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "private": false,
5
- "type": "module",
6
5
  "description": "Plugin that allows DatoCMS show and manage Netlify form submissions",
7
- "homepage": "https://github.com/gempi/datocms-plugin-netlify-forms#readme",
8
- "author": "Matthias Wolgensinger <hello@matthiasgemperli.ch>",
9
- "license": "ISC",
10
6
  "keywords": [
11
7
  "datocms",
12
8
  "datocms-plugin",
13
9
  "netlify"
14
10
  ],
15
- "datoCmsPlugin": {
16
- "title": "Netlify Forms",
17
- "coverImage": "docs/cover.png",
18
- "previewImage": "docs/demo.mp4",
19
- "entryPoint": "dist/index.html",
20
- "permissions": []
11
+ "homepage": "https://github.com/gempi/datocms-plugin-netlify-forms#readme",
12
+ "author": "Matthias Wolgensinger <hello@matthiasgemperli.ch>",
13
+ "repository": {
14
+ "url": "https://github.com/gempi/datocms-plugin-netlify-forms"
21
15
  },
22
16
  "files": [
23
17
  "dist",
24
18
  "docs"
25
19
  ],
20
+ "type": "module",
26
21
  "dependencies": {
27
- "datocms-plugin-sdk": "^2.0.17",
28
- "datocms-react-ui": "^2.0.17",
22
+ "@stylexjs/stylex": "^0.19.0",
23
+ "@stylexjs/unplugin": "^0.19.0",
24
+ "datocms-plugin-sdk": "^2.2.2",
25
+ "datocms-react-ui": "^2.2.4",
29
26
  "netlify": "^13.3.5",
30
- "react": "^18.3.1",
31
- "react-dom": "^18.3.1",
32
- "react-final-form": "^6.5.9"
27
+ "react": "^19.2.8",
28
+ "react-dom": "^19.2.8",
29
+ "react-final-form": "^7.0.1"
33
30
  },
34
31
  "devDependencies": {
35
- "@types/react": "^18.3.27",
36
- "@types/react-dom": "^18.3.7",
37
- "@vitejs/plugin-react": "^6.0.2",
38
- "globals": "^15.9.0",
39
- "typescript": "^5.8.3",
40
- "vite": "^8.0.16"
32
+ "@changesets/cli": "^2.31.1",
33
+ "@types/react": "^19.2.18",
34
+ "@types/react-dom": "^19.2.4",
35
+ "@vitejs/plugin-react": "^6.0.4",
36
+ "globals": "^17.9.0",
37
+ "oxfmt": "^0.62.0",
38
+ "oxlint": "^1.76.0",
39
+ "simple-git-hooks": "^2.13.1",
40
+ "typescript": "^6.0.3",
41
+ "vite": "^8.1.5"
42
+ },
43
+ "simple-git-hooks": {
44
+ "pre-commit": "npm run lint && npm run fmt"
45
+ },
46
+ "engines": {
47
+ "node": ">=24"
48
+ },
49
+ "datoCmsPlugin": {
50
+ "title": "Netlify Forms",
51
+ "coverImage": "docs/cover.png",
52
+ "previewImage": "docs/demo.mp4",
53
+ "entryPoint": "dist/index.html",
54
+ "permissions": []
41
55
  },
42
56
  "scripts": {
43
57
  "dev": "vite",
44
58
  "build": "tsc -b && vite build",
45
59
  "preview": "vite preview",
46
- "prepublishOnly": "npm run build"
47
- },
48
- "repository": {
49
- "type": "git",
50
- "url": "git+https://github.com/gempi/datocms-plugin-netlify-forms.git"
51
- },
52
- "bugs": {
53
- "url": "https://github.com/gempi/datocms-plugin-netlify-forms/issues"
60
+ "lint": "oxlint --fix",
61
+ "fmt": "oxfmt",
62
+ "typecheck": "tsc --noEmit",
63
+ "release": "pnpm build && changeset publish"
54
64
  }
55
- }
65
+ }