@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.
Files changed (38) hide show
  1. package/README.md +61 -61
  2. package/dist/api/suggest/suggestions_list.json +7 -7
  3. package/dist/index-vjdAQE6O.js +9787 -0
  4. package/dist/index.css +1 -1
  5. package/dist/index.js +1 -1
  6. package/dist/index.umd.cjs +26 -26
  7. package/dist/src/components/inputs/date/datepicker/Datepicker.vue.d.ts.map +1 -1
  8. package/dist/src/components/inputs/map/ruler/AddCoordinates.vue.d.ts +9 -0
  9. package/dist/src/components/inputs/map/ruler/AddCoordinates.vue.d.ts.map +1 -0
  10. package/dist/src/components/inputs/map/ruler/BtnAdd.vue.d.ts +7 -0
  11. package/dist/src/components/inputs/map/ruler/BtnAdd.vue.d.ts.map +1 -0
  12. package/dist/src/components/inputs/map/ruler/BtnClear.vue.d.ts +7 -0
  13. package/dist/src/components/inputs/map/ruler/BtnClear.vue.d.ts.map +1 -0
  14. package/dist/src/components/inputs/map/ruler/BtnComplete.vue.d.ts +7 -0
  15. package/dist/src/components/inputs/map/ruler/BtnComplete.vue.d.ts.map +1 -0
  16. package/dist/src/components/inputs/map/ruler/ControlPanel.vue.d.ts +21 -0
  17. package/dist/src/components/inputs/map/ruler/ControlPanel.vue.d.ts.map +1 -0
  18. package/dist/src/components/inputs/map/ruler/DotListItem.vue.d.ts +17 -0
  19. package/dist/src/components/inputs/map/ruler/DotListItem.vue.d.ts.map +1 -0
  20. package/dist/src/components/inputs/map/ruler/InfoHint.vue.d.ts +3 -0
  21. package/dist/src/components/inputs/map/ruler/InfoHint.vue.d.ts.map +1 -0
  22. package/dist/src/components/inputs/map/ruler/RulerLayer.vue.d.ts +18 -0
  23. package/dist/src/components/inputs/map/ruler/RulerLayer.vue.d.ts.map +1 -0
  24. package/dist/src/components/inputs/map/ruler/RulerPanel.vue.d.ts +23 -0
  25. package/dist/src/components/inputs/map/ruler/RulerPanel.vue.d.ts.map +1 -0
  26. package/dist/src/components/inputs/map/ruler/ToPointList.vue.d.ts +14 -0
  27. package/dist/src/components/inputs/map/ruler/ToPointList.vue.d.ts.map +1 -0
  28. package/dist/src/components/inputs/map/ruler/formatUk.d.ts +4 -0
  29. package/dist/src/components/inputs/map/ruler/formatUk.d.ts.map +1 -0
  30. package/dist/src/components/inputs/map/ruler/useRuler.d.ts +62 -0
  31. package/dist/src/components/inputs/map/ruler/useRuler.d.ts.map +1 -0
  32. package/dist/src/components/inputs/map/vs-input-map.vue.d.ts.map +1 -1
  33. package/dist/src/utils/formRules.d.ts.map +1 -1
  34. package/dist/{vs-richtext-DbAdnEuL.js → vs-richtext-DytmrNj3.js} +8 -8
  35. package/locales/en.json +34 -34
  36. package/locales/uk.json +34 -34
  37. package/package.json +79 -79
  38. package/dist/index-D_XxO-CG.js +0 -8915
package/README.md CHANGED
@@ -1,61 +1,61 @@
1
- # Vue 3 + TypeScript + Vite
2
-
3
- Flexible and reusable way to create forms with validation, different input types, and layouts
4
-
5
- ## Features
6
-
7
- - Schema-based filter rendering (radio, checkbox)
8
- - Slot-based extensibility for custom filters
9
- - Built-in clear/reset support
10
- - Emits `change` and `clear` events
11
- - Popover support with positioning logic
12
- - Show more / limit options logic
13
- - Written in TypeScript
14
- - Fully styleable with Tailwind CSS
15
- - Mobile-friendly and responsive
16
-
17
- ---
18
-
19
- ## Documentation
20
-
21
- Check out the documentation and live demo here: [Live Demo & Docs](https://form.opengis.info)
22
-
23
- ## Install & Usage
24
-
25
-
26
- ```bash
27
- npm i @opengis/form
28
- ```
29
-
30
-
31
- ```vue
32
- <template>
33
- <VsForm :schema="schema" @change="console.log($event.data)" />
34
- </template>
35
-
36
- <script setup lang="ts">
37
-
38
- import {ref} from 'vue'
39
- import VsForm from "@opengis/form";
40
-
41
- const schema = [
42
- { name: 'name', label: 'Name', type: 'text', col: 6, conditions: ['number', '==', 2], },
43
- { name: 'date', label: 'Date', type: 'date', col: 6, time: true, },
44
- { name: 'file', label: 'File', type: 'file', multiple: true, },
45
- { name: 'number', label: 'Number', type: 'number', col: 6, }
46
- ];
47
- </script>
48
- ```
49
-
50
- **Style**
51
-
52
- ```html
53
- <script src="https://cdn.tailwindcss.com"></script>
54
- ```
55
-
56
- ---
57
-
58
- ## Contributions
59
-
60
- We welcome contributions!
61
- Feel free to open issues, suggest features, or submit pull requests.
1
+ # Vue 3 + TypeScript + Vite
2
+
3
+ Flexible and reusable way to create forms with validation, different input types, and layouts
4
+
5
+ ## Features
6
+
7
+ - Schema-based filter rendering (radio, checkbox)
8
+ - Slot-based extensibility for custom filters
9
+ - Built-in clear/reset support
10
+ - Emits `change` and `clear` events
11
+ - Popover support with positioning logic
12
+ - Show more / limit options logic
13
+ - Written in TypeScript
14
+ - Fully styleable with Tailwind CSS
15
+ - Mobile-friendly and responsive
16
+
17
+ ---
18
+
19
+ ## Documentation
20
+
21
+ Check out the documentation and live demo here: [Live Demo & Docs](https://form.opengis.info)
22
+
23
+ ## Install & Usage
24
+
25
+
26
+ ```bash
27
+ npm i @opengis/form
28
+ ```
29
+
30
+
31
+ ```vue
32
+ <template>
33
+ <VsForm :schema="schema" @change="console.log($event.data)" />
34
+ </template>
35
+
36
+ <script setup lang="ts">
37
+
38
+ import {ref} from 'vue'
39
+ import VsForm from "@opengis/form";
40
+
41
+ const schema = [
42
+ { name: 'name', label: 'Name', type: 'text', col: 6, conditions: ['number', '==', 2], },
43
+ { name: 'date', label: 'Date', type: 'date', col: 6, time: true, },
44
+ { name: 'file', label: 'File', type: 'file', multiple: true, },
45
+ { name: 'number', label: 'Number', type: 'number', col: 6, }
46
+ ];
47
+ </script>
48
+ ```
49
+
50
+ **Style**
51
+
52
+ ```html
53
+ <script src="https://cdn.tailwindcss.com"></script>
54
+ ```
55
+
56
+ ---
57
+
58
+ ## Contributions
59
+
60
+ We welcome contributions!
61
+ Feel free to open issues, suggest features, or submit pull requests.
@@ -1,7 +1,7 @@
1
- {
2
- "data": [
3
- { "id": "remote-1", "text": "Remote option A" },
4
- { "id": "remote-2", "text": "Remote option B" },
5
- { "id": "remote-3", "text": "Remote option C" }
6
- ]
7
- }
1
+ {
2
+ "data": [
3
+ { "id": "remote-1", "text": "Remote option A" },
4
+ { "id": "remote-2", "text": "Remote option B" },
5
+ { "id": "remote-3", "text": "Remote option C" }
6
+ ]
7
+ }