@opengis/form 0.0.168 → 0.0.169

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.
Files changed (34) hide show
  1. package/README.md +61 -61
  2. package/dist/api/suggest/suggestions_list.json +7 -7
  3. package/dist/index-D42jrW1B.js +11738 -0
  4. package/dist/index.css +1 -1
  5. package/dist/index.js +1 -1
  6. package/dist/index.umd.cjs +23 -23
  7. package/dist/src/components/inputs/date/datepicker/Datepicker.vue.d.ts +144 -24
  8. package/dist/src/components/inputs/date/datepicker/Datepicker.vue.d.ts.map +1 -1
  9. package/dist/src/components/inputs/date/datepicker/DayPicker.vue.d.ts +32 -3
  10. package/dist/src/components/inputs/date/datepicker/DayPicker.vue.d.ts.map +1 -1
  11. package/dist/src/components/inputs/date/datepicker/MonthPicker.vue.d.ts +28 -3
  12. package/dist/src/components/inputs/date/datepicker/MonthPicker.vue.d.ts.map +1 -1
  13. package/dist/src/components/inputs/date/datepicker/PickerPopup.vue.d.ts +28 -3
  14. package/dist/src/components/inputs/date/datepicker/PickerPopup.vue.d.ts.map +1 -1
  15. package/dist/src/components/inputs/date/datepicker/Timepicker.vue.d.ts +48 -14
  16. package/dist/src/components/inputs/date/datepicker/Timepicker.vue.d.ts.map +1 -1
  17. package/dist/src/components/inputs/date/datepicker/YearPicker.vue.d.ts +28 -3
  18. package/dist/src/components/inputs/date/datepicker/YearPicker.vue.d.ts.map +1 -1
  19. package/dist/src/components/inputs/date/vs-input-date2.vue.d.ts.map +1 -1
  20. package/dist/src/components/inputs/index.d.ts +8 -9
  21. package/dist/src/components/inputs/index.d.ts.map +1 -1
  22. package/dist/src/composables/useInputOptions.d.ts +2 -2
  23. package/dist/src/composables/useInputOptions.d.ts.map +1 -1
  24. package/dist/src/types/form.d.ts +4 -0
  25. package/dist/src/types/form.d.ts.map +1 -1
  26. package/dist/{vs-richtext-Czpw9A9u.js → vs-richtext-CxzLx91c.js} +8 -8
  27. package/locales/en.json +34 -34
  28. package/locales/uk.json +34 -34
  29. package/package.json +79 -79
  30. package/dist/index-DBJ48paI.js +0 -11543
  31. package/dist/src/components/inputs/date/vs-input-date.vue.d.ts +0 -18
  32. package/dist/src/components/inputs/date/vs-input-date.vue.d.ts.map +0 -1
  33. package/dist/src/components/inputs/date/vs-input-date1.vue.d.ts +0 -17
  34. package/dist/src/components/inputs/date/vs-input-date1.vue.d.ts.map +0 -1
package/package.json CHANGED
@@ -1,79 +1,79 @@
1
- {
2
- "name": "@opengis/form",
3
- "private": false,
4
- "version": "0.0.168",
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.577.0"
78
- }
79
- }
1
+ {
2
+ "name": "@opengis/form",
3
+ "private": false,
4
+ "version": "0.0.169",
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.577.0"
78
+ }
79
+ }