@opengis/form 0.0.124 → 0.0.126
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 +61 -61
- package/dist/api/suggest/suggestions_list.json +7 -7
- package/dist/index-vjdAQE6O.js +9787 -0
- package/dist/index.css +1 -1
- package/dist/index.js +1 -1
- package/dist/index.umd.cjs +26 -26
- package/dist/src/components/inputs/date/datepicker/Datepicker.vue.d.ts.map +1 -1
- package/dist/src/components/inputs/map/ruler/AddCoordinates.vue.d.ts +9 -0
- package/dist/src/components/inputs/map/ruler/AddCoordinates.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/BtnAdd.vue.d.ts +7 -0
- package/dist/src/components/inputs/map/ruler/BtnAdd.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/BtnClear.vue.d.ts +7 -0
- package/dist/src/components/inputs/map/ruler/BtnClear.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/BtnComplete.vue.d.ts +7 -0
- package/dist/src/components/inputs/map/ruler/BtnComplete.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/ControlPanel.vue.d.ts +21 -0
- package/dist/src/components/inputs/map/ruler/ControlPanel.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/DotListItem.vue.d.ts +17 -0
- package/dist/src/components/inputs/map/ruler/DotListItem.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/InfoHint.vue.d.ts +3 -0
- package/dist/src/components/inputs/map/ruler/InfoHint.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/RulerLayer.vue.d.ts +18 -0
- package/dist/src/components/inputs/map/ruler/RulerLayer.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/RulerPanel.vue.d.ts +23 -0
- package/dist/src/components/inputs/map/ruler/RulerPanel.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/ToPointList.vue.d.ts +14 -0
- package/dist/src/components/inputs/map/ruler/ToPointList.vue.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/formatUk.d.ts +4 -0
- package/dist/src/components/inputs/map/ruler/formatUk.d.ts.map +1 -0
- package/dist/src/components/inputs/map/ruler/useRuler.d.ts +62 -0
- package/dist/src/components/inputs/map/ruler/useRuler.d.ts.map +1 -0
- package/dist/src/components/inputs/map/vs-input-map.vue.d.ts.map +1 -1
- package/dist/src/utils/formRules.d.ts.map +1 -1
- package/dist/{vs-richtext-DbAdnEuL.js → vs-richtext-DytmrNj3.js} +8 -8
- package/locales/en.json +34 -34
- package/locales/uk.json +34 -34
- package/package.json +79 -79
- package/dist/index-D_XxO-CG.js +0 -8915
package/package.json
CHANGED
|
@@ -1,79 +1,79 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@opengis/form",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./dist/index.css": "./dist/index.css",
|
|
14
|
-
"./locales/en.json": "./locales/en.json",
|
|
15
|
-
"./locales/uk.json": "./locales/uk.json"
|
|
16
|
-
},
|
|
17
|
-
"description": "A flexible and extensible Vue form library",
|
|
18
|
-
"homepage": "https://form.opengis.info/",
|
|
19
|
-
"author": {
|
|
20
|
-
"name": "OpenGIS",
|
|
21
|
-
"url": "https://opengis.info/"
|
|
22
|
-
},
|
|
23
|
-
"files": [
|
|
24
|
-
"dist",
|
|
25
|
-
"locales"
|
|
26
|
-
],
|
|
27
|
-
"keywords": [
|
|
28
|
-
"vuejs",
|
|
29
|
-
"vue",
|
|
30
|
-
"forms",
|
|
31
|
-
"form",
|
|
32
|
-
"form-builder",
|
|
33
|
-
"form-generator",
|
|
34
|
-
"vue-form",
|
|
35
|
-
"vue-form-generator",
|
|
36
|
-
"vue3",
|
|
37
|
-
"forms-builder",
|
|
38
|
-
"vueforms",
|
|
39
|
-
"vueform",
|
|
40
|
-
"form-generator-vue3"
|
|
41
|
-
],
|
|
42
|
-
"scripts": {
|
|
43
|
-
"dev": "vite",
|
|
44
|
-
"build": "vue-tsc -b && vite build && npm run build:types",
|
|
45
|
-
"type-check": "vue-tsc --noEmit -p tsconfig.app.json",
|
|
46
|
-
"build:types": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json",
|
|
47
|
-
"build:only": "vite build",
|
|
48
|
-
"build:app": "app=true vite build",
|
|
49
|
-
"prepublishOnly": "bun run build",
|
|
50
|
-
"preview": "vite preview",
|
|
51
|
-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"@opengis/core": "^0.0.30",
|
|
55
|
-
"@tsconfig/node22": "^22.0.2",
|
|
56
|
-
"@types/node": "^24.2.1",
|
|
57
|
-
"@typescript-eslint/parser": "^6.21.0",
|
|
58
|
-
"@vitejs/plugin-vue": "^6.0.0",
|
|
59
|
-
"@vue/eslint-config-typescript": "^12.0.0",
|
|
60
|
-
"@vue/tsconfig": "^0.7.0",
|
|
61
|
-
"eslint": "^8.2.0",
|
|
62
|
-
"eslint-config-airbnb": "^19.0.4",
|
|
63
|
-
"eslint-plugin-import": "^2.25.3",
|
|
64
|
-
"eslint-plugin-vue": "^9.33.0",
|
|
65
|
-
"globals": "^16.0.0",
|
|
66
|
-
"imask": "^7.6.1",
|
|
67
|
-
"lucide-vue-next": "^0.564.0",
|
|
68
|
-
"mitt": "^3.0.1",
|
|
69
|
-
"prettier": "^3.2.5",
|
|
70
|
-
"sass": "^1.72.0",
|
|
71
|
-
"typescript": "~5.8.3",
|
|
72
|
-
"vite": "^7.0.0",
|
|
73
|
-
"vue-tsc": "^2.2.10"
|
|
74
|
-
},
|
|
75
|
-
"peerDependencies": {
|
|
76
|
-
"vue": "^3.5.17",
|
|
77
|
-
"lucide-vue-next": "^0.564.0"
|
|
78
|
-
}
|
|
79
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@opengis/form",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.126",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./dist/index.css": "./dist/index.css",
|
|
14
|
+
"./locales/en.json": "./locales/en.json",
|
|
15
|
+
"./locales/uk.json": "./locales/uk.json"
|
|
16
|
+
},
|
|
17
|
+
"description": "A flexible and extensible Vue form library",
|
|
18
|
+
"homepage": "https://form.opengis.info/",
|
|
19
|
+
"author": {
|
|
20
|
+
"name": "OpenGIS",
|
|
21
|
+
"url": "https://opengis.info/"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"locales"
|
|
26
|
+
],
|
|
27
|
+
"keywords": [
|
|
28
|
+
"vuejs",
|
|
29
|
+
"vue",
|
|
30
|
+
"forms",
|
|
31
|
+
"form",
|
|
32
|
+
"form-builder",
|
|
33
|
+
"form-generator",
|
|
34
|
+
"vue-form",
|
|
35
|
+
"vue-form-generator",
|
|
36
|
+
"vue3",
|
|
37
|
+
"forms-builder",
|
|
38
|
+
"vueforms",
|
|
39
|
+
"vueform",
|
|
40
|
+
"form-generator-vue3"
|
|
41
|
+
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"dev": "vite",
|
|
44
|
+
"build": "vue-tsc -b && vite build && npm run build:types",
|
|
45
|
+
"type-check": "vue-tsc --noEmit -p tsconfig.app.json",
|
|
46
|
+
"build:types": "vue-tsc --declaration --emitDeclarationOnly -p tsconfig.app.json",
|
|
47
|
+
"build:only": "vite build",
|
|
48
|
+
"build:app": "app=true vite build",
|
|
49
|
+
"prepublishOnly": "bun run build",
|
|
50
|
+
"preview": "vite preview",
|
|
51
|
+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@opengis/core": "^0.0.30",
|
|
55
|
+
"@tsconfig/node22": "^22.0.2",
|
|
56
|
+
"@types/node": "^24.2.1",
|
|
57
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
58
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
59
|
+
"@vue/eslint-config-typescript": "^12.0.0",
|
|
60
|
+
"@vue/tsconfig": "^0.7.0",
|
|
61
|
+
"eslint": "^8.2.0",
|
|
62
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
63
|
+
"eslint-plugin-import": "^2.25.3",
|
|
64
|
+
"eslint-plugin-vue": "^9.33.0",
|
|
65
|
+
"globals": "^16.0.0",
|
|
66
|
+
"imask": "^7.6.1",
|
|
67
|
+
"lucide-vue-next": "^0.564.0",
|
|
68
|
+
"mitt": "^3.0.1",
|
|
69
|
+
"prettier": "^3.2.5",
|
|
70
|
+
"sass": "^1.72.0",
|
|
71
|
+
"typescript": "~5.8.3",
|
|
72
|
+
"vite": "^7.0.0",
|
|
73
|
+
"vue-tsc": "^2.2.10"
|
|
74
|
+
},
|
|
75
|
+
"peerDependencies": {
|
|
76
|
+
"vue": "^3.5.17",
|
|
77
|
+
"lucide-vue-next": "^0.564.0"
|
|
78
|
+
}
|
|
79
|
+
}
|