@getodk/web-forms 0.17.0 → 0.18.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 +5 -1
- package/dist/MapBlock-BYfMvIAS.js +28232 -0
- package/dist/{index-BcIPirKE.js → index-HrcI5GPb.js} +29236 -29024
- package/dist/index.js +2 -2
- package/package.json +34 -27
- package/dist/MapBlock-DGAoqRx5.js +0 -23630
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getodk/web-forms",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "ODK Web Forms",
|
|
6
6
|
"author": "getodk",
|
|
@@ -23,21 +23,24 @@
|
|
|
23
23
|
"README.md"
|
|
24
24
|
],
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": "^20.19.3 || ^22.12.0 || ^24.
|
|
27
|
-
"yarn": "
|
|
26
|
+
"node": "^20.19.3 || ^22.12.0 || ^24.11.0",
|
|
27
|
+
"yarn": "4.11.0"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
|
-
"build": "npm-run-all -nl build:*",
|
|
30
|
+
"build": "npm-run-all -nl 'build:*'",
|
|
31
31
|
"build:clean": "rimraf dist/ dist-demo/",
|
|
32
32
|
"build:demo": "vite build --mode demo --outDir dist-demo",
|
|
33
33
|
"build:js": "vite build",
|
|
34
34
|
"dev": "vite",
|
|
35
35
|
"dist-demo": "yarn build && yarn vite serve dist-demo --port 5174",
|
|
36
|
-
"test": "npm-run-all -nl test:*",
|
|
37
|
-
"test:e2e": "playwright test",
|
|
38
|
-
"test:e2e:chromium": "playwright test --project=chromium",
|
|
39
|
-
"test:e2e:firefox": "playwright test --project=firefox",
|
|
40
|
-
"test:e2e:webkit": "playwright test --project=webkit",
|
|
36
|
+
"test": "npm-run-all -nl 'test:*'",
|
|
37
|
+
"test:e2e:functional:all": "playwright test --project=functional-*",
|
|
38
|
+
"test:e2e:functional:chromium": "playwright test --project=functional-chromium",
|
|
39
|
+
"test:e2e:functional:firefox": "playwright test --project=functional-firefox",
|
|
40
|
+
"test:e2e:functional:webkit": "playwright test --project=functional-webkit",
|
|
41
|
+
"test:e2e:visual:chromium": "playwright test --project=visual-chromium",
|
|
42
|
+
"test:e2e:visual:firefox": "playwright test --project=visual-firefox",
|
|
43
|
+
"test:e2e:visual:webkit": "playwright test --project=visual-webkit",
|
|
41
44
|
"test-node:jsdom": "vitest run",
|
|
42
45
|
"test-browser:chromium": "BROWSER_NAME=chromium vitest run",
|
|
43
46
|
"test-browser:firefox": "BROWSER_NAME=firefox vitest run",
|
|
@@ -46,41 +49,45 @@
|
|
|
46
49
|
"test-watch:chromium": "BROWSER_NAME=chromium vitest",
|
|
47
50
|
"test-watch:firefox": "BROWSER_NAME=firefox vitest",
|
|
48
51
|
"test-watch:webkit": "BROWSER_NAME=webkit vitest",
|
|
49
|
-
"test:types": "npm-run-all -nl test:types:*",
|
|
52
|
+
"test:types": "npm-run-all -nl 'test:types:*'",
|
|
50
53
|
"test:types:app": "vue-tsc --project ./tsconfig.app.json --emitDeclarationOnly false --noEmit",
|
|
51
54
|
"test:types:node": "vue-tsc --project ./tsconfig.node.json --emitDeclarationOnly false --noEmit",
|
|
52
55
|
"test:types:vitest": "vue-tsc --project ./tsconfig.vitest.json --emitDeclarationOnly false --noEmit"
|
|
53
56
|
},
|
|
54
57
|
"devDependencies": {
|
|
55
|
-
"@faker-js/faker": "^
|
|
56
|
-
"@fontsource/hanken-grotesk": "^5.2.
|
|
57
|
-
"@fontsource/roboto": "^5.2.
|
|
58
|
-
"@getodk/xforms-engine": "0.
|
|
59
|
-
"@playwright/test": "^1.
|
|
58
|
+
"@faker-js/faker": "^10.1.0",
|
|
59
|
+
"@fontsource/hanken-grotesk": "^5.2.8",
|
|
60
|
+
"@fontsource/roboto": "^5.2.9",
|
|
61
|
+
"@getodk/xforms-engine": "0.16.0",
|
|
62
|
+
"@playwright/test": "^1.57.0",
|
|
60
63
|
"@primeuix/themes": "1.0.3",
|
|
61
|
-
"@types/ramda": "^0.
|
|
62
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
63
|
-
"@vitejs/plugin-vue-jsx": "^5.
|
|
64
|
+
"@types/ramda": "^0.31.1",
|
|
65
|
+
"@vitejs/plugin-vue": "^6.0.2",
|
|
66
|
+
"@vitejs/plugin-vue-jsx": "^5.1.2",
|
|
64
67
|
"@vue/test-utils": "^2.4.6",
|
|
65
|
-
"jsdom": "^
|
|
68
|
+
"jsdom": "^27.2.0",
|
|
69
|
+
"npm-run-all2": "^8.0.4",
|
|
66
70
|
"primeflex": "^4.0.0",
|
|
67
71
|
"primevue": "4.3.3",
|
|
68
|
-
"ramda": "^0.
|
|
69
|
-
"
|
|
70
|
-
"
|
|
72
|
+
"ramda": "^0.32.0",
|
|
73
|
+
"rimraf": "^6.1.2",
|
|
74
|
+
"sass": "^1.94.2",
|
|
75
|
+
"typescript": "~5.9.3",
|
|
76
|
+
"vite": "^7.2.4",
|
|
71
77
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
72
|
-
"vite-plugin-static-copy": "^3.1.
|
|
78
|
+
"vite-plugin-static-copy": "^3.1.4",
|
|
73
79
|
"vitest": "^3.2.4",
|
|
74
|
-
"vue": "3.5.
|
|
75
|
-
"vue-router": "^4.
|
|
80
|
+
"vue": "3.5.25",
|
|
81
|
+
"vue-router": "^4.6.3",
|
|
82
|
+
"vue-tsc": "^3.1.5"
|
|
76
83
|
},
|
|
77
84
|
"peerDependencies": {
|
|
78
85
|
"vue": "^3.5.18"
|
|
79
86
|
},
|
|
80
87
|
"dependencies": {
|
|
81
88
|
"@mdi/js": "^7.4.47",
|
|
82
|
-
"dompurify": "^3.
|
|
83
|
-
"ol": "^10.
|
|
89
|
+
"dompurify": "^3.3.0",
|
|
90
|
+
"ol": "^10.7.0",
|
|
84
91
|
"vue-draggable-plus": "^0.6.0"
|
|
85
92
|
},
|
|
86
93
|
"publishConfig": {
|