@opengis/form 0.0.83 → 0.0.85

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 (49) hide show
  1. package/README.md +61 -61
  2. package/dist/components/inputs/address/vs-input-address.vue.d.ts +1 -1
  3. package/dist/components/inputs/array/vs-input-array.vue.d.ts +1 -1
  4. package/dist/components/inputs/base/vs-input-color.vue.d.ts +1 -1
  5. package/dist/components/inputs/base/vs-input-email.vue.d.ts +1 -1
  6. package/dist/components/inputs/base/vs-input-mask.vue.d.ts +1 -1
  7. package/dist/components/inputs/base/vs-input-password.vue.d.ts +1 -1
  8. package/dist/components/inputs/base/vs-input-range.vue.d.ts +1 -1
  9. package/dist/components/inputs/base/vs-input-switcher.vue.d.ts +1 -1
  10. package/dist/components/inputs/base/vs-input-tel.vue.d.ts +1 -1
  11. package/dist/components/inputs/base/vs-input-text.vue.d.ts +1 -1
  12. package/dist/components/inputs/base/vs-input-text.vue.d.ts.map +1 -1
  13. package/dist/components/inputs/base/vs-input-textarea.vue.d.ts +1 -1
  14. package/dist/components/inputs/date/datepicker/Datepicker.vue.d.ts.map +1 -1
  15. package/dist/components/inputs/date/vs-input-date.vue.d.ts +1 -1
  16. package/dist/components/inputs/date/vs-input-date1.vue.d.ts +1 -1
  17. package/dist/components/inputs/date/vs-input-date2.vue.d.ts +1 -1
  18. package/dist/components/inputs/date/vs-input-time.vue.d.ts +1 -1
  19. package/dist/components/inputs/index.d.ts +21 -21
  20. package/dist/components/inputs/list/vs-input-datalist.vue.d.ts.map +1 -1
  21. package/dist/components/inputs/map/vs-input-map.vue.d.ts.map +1 -1
  22. package/dist/components/inputs/options/radio/index.d.ts +2 -2
  23. package/dist/components/inputs/options/radio/vs-input-radio-buttons.vue.d.ts +1 -1
  24. package/dist/components/inputs/options/radio/vs-input-radio-default.vue.d.ts +1 -1
  25. package/dist/components/inputs/table/vs-input-datatable.vue.d.ts.map +1 -1
  26. package/dist/components/inputs/tag/vs-input-tag.vue.d.ts +1 -1
  27. package/dist/components/inputs/vs-input-select.vue.d.ts +4 -4
  28. package/dist/components/inputs/vs-input-select.vue.d.ts.map +1 -1
  29. package/dist/components/layouts/index.d.ts +12 -12
  30. package/dist/components/layouts/vs-compact-form-layout.vue.d.ts +1 -1
  31. package/dist/components/layouts/vs-compact-form-layout.vue.d.ts.map +1 -1
  32. package/dist/components/layouts/vs-layout-default.vue.d.ts +3 -3
  33. package/dist/components/layouts/vs-layout-default.vue.d.ts.map +1 -1
  34. package/dist/components/layouts/vs-layout-horizontal.vue.d.ts +3 -3
  35. package/dist/components/layouts/vs-layout-horizontal.vue.d.ts.map +1 -1
  36. package/dist/components/layouts/vs-layout-inline.vue.d.ts +1 -1
  37. package/dist/components/layouts/vs-layout-settings.vue.d.ts +1 -1
  38. package/dist/components/ui/vs-info-tooltip.vue.d.ts +16 -0
  39. package/dist/components/ui/vs-info-tooltip.vue.d.ts.map +1 -0
  40. package/dist/composables/useForm.d.ts.map +1 -1
  41. package/dist/index.css +1 -1
  42. package/dist/index.js +3577 -3310
  43. package/dist/index.umd.cjs +3 -3
  44. package/dist/schema.d.ts +7 -490
  45. package/dist/schema.d.ts.map +1 -1
  46. package/dist/types/form.d.ts +5 -0
  47. package/dist/types/form.d.ts.map +1 -1
  48. package/dist/utils/formRules.d.ts.map +1 -1
  49. package/package.json +68 -68
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.
@@ -19,8 +19,8 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
19
19
  geom: string;
20
20
  includes: string[];
21
21
  error: string | null;
22
- customClass: string;
23
22
  disabled: boolean;
23
+ customClass: string;
24
24
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
25
25
  export default _default;
26
26
  //# sourceMappingURL=vs-input-address.vue.d.ts.map
@@ -16,9 +16,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
16
16
  isAdded: boolean;
17
17
  style: Record<string, any>;
18
18
  error: string | null;
19
- customClass: string;
20
19
  disabled: boolean;
21
20
  placeholder: string;
21
+ customClass: string;
22
22
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
23
23
  export default _default;
24
24
  //# sourceMappingURL=vs-input-array.vue.d.ts.map
@@ -5,9 +5,9 @@ declare const _default: import("vue").DefineComponent<IInputProps, {}, {}, {}, {
5
5
  "onUpdate:modelValue"?: ((v: string) => any) | undefined;
6
6
  }>, {
7
7
  style: Record<string, any>;
8
- customClass: string;
9
8
  disabled: boolean;
10
9
  placeholder: string;
10
+ customClass: string;
11
11
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
12
  export default _default;
13
13
  //# sourceMappingURL=vs-input-color.vue.d.ts.map
@@ -10,9 +10,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
10
10
  }>, {
11
11
  style: Record<string, any>;
12
12
  error: string | null;
13
- customClass: string;
14
13
  disabled: boolean;
15
14
  placeholder: string;
15
+ customClass: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
18
18
  //# sourceMappingURL=vs-input-email.vue.d.ts.map
@@ -11,9 +11,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
11
11
  mask: string;
12
12
  unmask: boolean;
13
13
  style: Record<string, any>;
14
- customClass: string;
15
14
  disabled: boolean;
16
15
  placeholder: string;
16
+ customClass: string;
17
17
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
18
18
  export default _default;
19
19
  //# sourceMappingURL=vs-input-mask.vue.d.ts.map
@@ -10,9 +10,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
10
10
  }>, {
11
11
  style: Record<string, any>;
12
12
  error: string | null;
13
- customClass: string;
14
13
  disabled: boolean;
15
14
  placeholder: string;
15
+ customClass: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
18
18
  //# sourceMappingURL=vs-input-password.vue.d.ts.map
@@ -12,9 +12,9 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
12
12
  min: number;
13
13
  max: number;
14
14
  style: Record<string, any>;
15
- customClass: string;
16
15
  disabled: boolean;
17
16
  placeholder: string;
17
+ customClass: string;
18
18
  step: number;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
20
  export default _default;
@@ -15,8 +15,8 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
15
15
  label: string;
16
16
  i: string;
17
17
  error: string | null;
18
- customClass: string;
19
18
  disabled: boolean;
19
+ customClass: string;
20
20
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
21
21
  export default _default;
22
22
  //# sourceMappingURL=vs-input-switcher.vue.d.ts.map
@@ -10,9 +10,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
10
10
  }>, {
11
11
  style: Record<string, any>;
12
12
  error: string | null;
13
- customClass: string;
14
13
  disabled: boolean;
15
14
  placeholder: string;
15
+ customClass: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
18
18
  //# sourceMappingURL=vs-input-tel.vue.d.ts.map
@@ -10,9 +10,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
10
10
  }>, {
11
11
  style: Record<string, any>;
12
12
  error: string | null;
13
- customClass: string;
14
13
  disabled: boolean;
15
14
  placeholder: string;
15
+ customClass: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
18
18
  //# sourceMappingURL=vs-input-text.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-text.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/base/vs-input-text.vue"],"names":[],"mappings":"AA0CA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAEvD,KAAK,WAAW,GAAG,WAAW,CAAC;AAiC/B,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;;;AAqDF,wBAQG"}
1
+ {"version":3,"file":"vs-input-text.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/base/vs-input-text.vue"],"names":[],"mappings":"AA8CA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAEvD,KAAK,WAAW,GAAG,WAAW,CAAC;AAmC/B,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;;;AAyDF,wBAQG"}
@@ -9,9 +9,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
9
9
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
10
10
  }>, {
11
11
  style: Record<string, any>;
12
- customClass: string;
13
12
  disabled: boolean;
14
13
  placeholder: string;
14
+ customClass: string;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  export default _default;
17
17
  //# sourceMappingURL=vs-input-textarea.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Datepicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/Datepicker.vue"],"names":[],"mappings":"AAukBA,OAAO,EAKL,QAAQ,EAKT,MAAM,KAAK,CAAA;;;;;;IAyCR;;OAEG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;IAG9B;;OAEG;;cAEe,QAAQ,CAAC;YACvB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;YACd,SAAS,CAAC,EAAE,CAAC,WAAW,EAAE,IAAI,KAAK,OAAO,CAAA;SAC3C,CAAC;;;;;;;;IAQJ;;OAEG;;cAEe,QAAQ,CAAC;YACvB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;YACd,SAAS,CAAC,EAAE,CAAC,WAAW,EAAE,IAAI,KAAK,OAAO,CAAA;SAC3C,CAAC;;;IAGJ;;OAEG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;IAG9B;;OAEG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;IAG9B;;OAEG;;cAEe,QAAQ,CAAC,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,MAAM,CAAC;;;sBAG7C,OAAO;;IAGvB;;;;OAIG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;;IAI9B;;OAEG;;;;;;IAMH;;OAEG;;;;;;IAMH;;OAEG;;;;;;IAMH;;OAEG;;;;;;IAMH;;;OAGG;;;;;;IAMH;;OAEG;;cAEc,QAAQ,CAAC,MAAM,EAAE,CAAC;;;IAGnC;;;;;OAKG;;cAEe,QAAQ,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;;2BAGhC,GAAG;;IAExB;;OAEG;;;;;;IAMH;;OAEG;;;;;;;;;;;IAcH;;OAEG;;cAEe,QAAQ,CAAC,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,MAAM,CAAC;;;sBAG7C,OAAO;;;;;;;;;;2BAwHf,MAAM,GAAG,OAAO,GAAG,KAAK,eACjB,IAAI;uBAUO,IAAI;wBAUH,IAAI;sBAUN,IAAI;uBAWH,IAAI;mBAsBR,aAAa;;;;;;aAkExB,GAAG;wBAjCa,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,SAAS;;;;iCApNhC,IAAI,GAAG,IAAI,GAAG,SAAS;kCAEtB,IAAI;gCACN,IAAI;iCACH,IAAI;;;;;;;;IAtKjC;;OAEG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;IAG9B;;OAEG;;cAEe,QAAQ,CAAC;YACvB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;YACd,SAAS,CAAC,EAAE,CAAC,WAAW,EAAE,IAAI,KAAK,OAAO,CAAA;SAC3C,CAAC;;;;;;;;IAQJ;;OAEG;;cAEe,QAAQ,CAAC;YACvB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;YACd,SAAS,CAAC,EAAE,CAAC,WAAW,EAAE,IAAI,KAAK,OAAO,CAAA;SAC3C,CAAC;;;IAGJ;;OAEG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;IAG9B;;OAEG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;IAG9B;;OAEG;;cAEe,QAAQ,CAAC,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,MAAM,CAAC;;;sBAG7C,OAAO;;IAGvB;;;;OAIG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;;IAI9B;;OAEG;;;;;;IAMH;;OAEG;;;;;;IAMH;;OAEG;;;;;;IAMH;;OAEG;;;;;;IAMH;;;OAGG;;;;;;IAMH;;OAEG;;cAEc,QAAQ,CAAC,MAAM,EAAE,CAAC;;;IAGnC;;;;;OAKG;;cAEe,QAAQ,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;;;2BAGhC,GAAG;;IAExB;;OAEG;;;;;;IAMH;;OAEG;;;;;;;;;;;IAcH;;OAEG;;cAEe,QAAQ,CAAC,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,MAAM,CAAC;;;sBAG7C,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAhN3B,CAvRU;yBAuRV,CAvRsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAuRtC,CAvRU;yBAuRV,CAvRsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAuRtC,CAlSc;yBAkSd,CAlS0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAkS1C,CAlSc;yBAkSd,CAlS0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwU1C,wBAwaE"}
1
+ {"version":3,"file":"Datepicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/Datepicker.vue"],"names":[],"mappings":"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"}
@@ -11,8 +11,8 @@ declare const _default: import("vue").DefineComponent<IInputDateProps, {}, {}, {
11
11
  time: boolean;
12
12
  isInfinity: boolean;
13
13
  disabled: boolean;
14
- modelValue: any;
15
14
  placeholder: string;
15
+ modelValue: any;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
18
18
  //# sourceMappingURL=vs-input-date.vue.d.ts.map
@@ -9,9 +9,9 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
9
9
  }>, {
10
10
  style: Record<string, any>;
11
11
  mode: "datetime" | "month" | "week" | "time" | "date";
12
- customClass: string;
13
12
  disabled: boolean;
14
13
  placeholder: string;
14
+ customClass: string;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  export default _default;
17
17
  //# sourceMappingURL=vs-input-date1.vue.d.ts.map
@@ -9,9 +9,9 @@ declare const _default: import("vue").DefineComponent<IInputDateProps, {}, {}, {
9
9
  editable: boolean;
10
10
  mode: "datetime" | "month" | "week" | "time" | "date" | "year";
11
11
  error: string | null;
12
- customClass: string;
13
12
  disabled: boolean;
14
13
  placeholder: string;
14
+ customClass: string;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  export default _default;
17
17
  //# sourceMappingURL=vs-input-date2.vue.d.ts.map
@@ -9,9 +9,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
9
9
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
10
10
  }>, {
11
11
  style: Record<string, any>;
12
- customClass: string;
13
12
  disabled: boolean;
14
13
  placeholder: string;
14
+ customClass: string;
15
15
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
16
  export default _default;
17
17
  //# sourceMappingURL=vs-input-time.vue.d.ts.map
@@ -10,9 +10,9 @@ declare const _default: {
10
10
  }>, {
11
11
  style: Record<string, any>;
12
12
  error: string | null;
13
- customClass: string;
14
13
  disabled: boolean;
15
14
  placeholder: string;
15
+ customClass: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  VsInputRadio: import("vue").DefineComponent<import("../../types/form.js").IInputRadioProps & {
18
18
  modelValue?: string;
@@ -37,9 +37,9 @@ declare const _default: {
37
37
  }>, {
38
38
  style: Record<string, any>;
39
39
  error: string | null;
40
- customClass: string;
41
40
  disabled: boolean;
42
41
  placeholder: string;
42
+ customClass: string;
43
43
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
44
44
  'vs-input-password': import("vue").DefineComponent<import("../../types/form.js").IInputProps & {
45
45
  modelValue?: string;
@@ -52,9 +52,9 @@ declare const _default: {
52
52
  }>, {
53
53
  style: Record<string, any>;
54
54
  error: string | null;
55
- customClass: string;
56
55
  disabled: boolean;
57
56
  placeholder: string;
57
+ customClass: string;
58
58
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
59
59
  'vs-input-textarea': import("vue").DefineComponent<import("../../types/form.js").IInputProps & {
60
60
  modelValue?: string;
@@ -66,9 +66,9 @@ declare const _default: {
66
66
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
67
67
  }>, {
68
68
  style: Record<string, any>;
69
- customClass: string;
70
69
  disabled: boolean;
71
70
  placeholder: string;
71
+ customClass: string;
72
72
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
73
73
  'vs-input-mask': import("vue").DefineComponent<import("../../types/form.js").IInputMaskProps & {
74
74
  modelValue?: string;
@@ -82,9 +82,9 @@ declare const _default: {
82
82
  mask: string;
83
83
  unmask: boolean;
84
84
  style: Record<string, any>;
85
- customClass: string;
86
85
  disabled: boolean;
87
86
  placeholder: string;
87
+ customClass: string;
88
88
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
89
89
  'vs-input-number': import("vue").DefineComponent<import("../../types/form.js").IInputNumberProps & {
90
90
  modelValue?: number;
@@ -135,14 +135,14 @@ declare const _default: {
135
135
  options: import("../../types/form.js").IOption[];
136
136
  data: string;
137
137
  error: string | null;
138
- search: boolean;
139
- auto: 0 | 1;
140
- customClass: string;
138
+ teleport: string;
141
139
  disabled: boolean;
142
140
  placeholder: string;
141
+ auto: 0 | 1;
142
+ search: boolean;
143
+ customClass: string;
143
144
  host: string;
144
145
  maxHeight: number;
145
- teleport: string;
146
146
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
147
147
  'vs-input-switcher': import("vue").DefineComponent<import("../../types/form.js").IInputSwitchProps & {
148
148
  modelValue?: boolean;
@@ -160,8 +160,8 @@ declare const _default: {
160
160
  label: string;
161
161
  i: string;
162
162
  error: string | null;
163
- customClass: string;
164
163
  disabled: boolean;
164
+ customClass: string;
165
165
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
166
166
  'vs-input-static': import("vue").DefineComponent<import("../../types/form.js").IInputStaticProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputStaticProps> & Readonly<{}>, {
167
167
  text: string;
@@ -228,9 +228,9 @@ declare const _default: {
228
228
  }>, {
229
229
  style: Record<string, any>;
230
230
  mode: "datetime" | "month" | "week" | "time" | "date";
231
- customClass: string;
232
231
  disabled: boolean;
233
232
  placeholder: string;
233
+ customClass: string;
234
234
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
235
235
  'vs-input-checkbox': import("vue").DefineComponent<import("../../types/form.js").IInputCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
236
236
  "update:modelValue": (...args: any[]) => void;
@@ -272,9 +272,9 @@ declare const _default: {
272
272
  }>, {
273
273
  style: Record<string, any>;
274
274
  error: string | null;
275
- customClass: string;
276
275
  disabled: boolean;
277
276
  placeholder: string;
277
+ customClass: string;
278
278
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
279
279
  'vs-input-tel': import("vue").DefineComponent<import("../../types/form.js").IInputProps & {
280
280
  modelValue?: string;
@@ -287,9 +287,9 @@ declare const _default: {
287
287
  }>, {
288
288
  style: Record<string, any>;
289
289
  error: string | null;
290
- customClass: string;
291
290
  disabled: boolean;
292
291
  placeholder: string;
292
+ customClass: string;
293
293
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
294
294
  'vs-input-datatable': import("vue").DefineComponent<import("../../types/form.js").IInputTableProps & {
295
295
  modelValue?: any[];
@@ -333,9 +333,9 @@ declare const _default: {
333
333
  }>, {
334
334
  style: Record<string, any>;
335
335
  unique: boolean;
336
- customClass: string;
337
336
  disabled: boolean;
338
337
  placeholder: string;
338
+ customClass: string;
339
339
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
340
340
  'vs-input-slug': import("vue").DefineComponent<{
341
341
  disabled?: boolean;
@@ -421,9 +421,9 @@ declare const _default: {
421
421
  min: number;
422
422
  max: number;
423
423
  style: Record<string, any>;
424
- customClass: string;
425
424
  disabled: boolean;
426
425
  placeholder: string;
426
+ customClass: string;
427
427
  step: number;
428
428
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
429
429
  'vs-input-color': import("vue").DefineComponent<import("../../types/form.js").IInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
@@ -432,9 +432,9 @@ declare const _default: {
432
432
  "onUpdate:modelValue"?: ((v: string) => any) | undefined;
433
433
  }>, {
434
434
  style: Record<string, any>;
435
- customClass: string;
436
435
  disabled: boolean;
437
436
  placeholder: string;
437
+ customClass: string;
438
438
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
439
439
  'vs-input-native-select': import("vue").DefineComponent<import("../../types/form.js").IInputSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
440
440
  change: (value: string | number | (string | number)[] | null) => any;
@@ -460,14 +460,14 @@ declare const _default: {
460
460
  options: import("../../types/form.js").IOption[];
461
461
  data: string;
462
462
  error: string | null;
463
- search: boolean;
464
- auto: 0 | 1;
465
- customClass: string;
463
+ teleport: string;
466
464
  disabled: boolean;
467
465
  placeholder: string;
466
+ auto: 0 | 1;
467
+ search: boolean;
468
+ customClass: string;
468
469
  host: string;
469
470
  maxHeight: number;
470
- teleport: string;
471
471
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
472
472
  'vs-input-array': import("vue").DefineComponent<{
473
473
  addButtonText?: string;
@@ -520,8 +520,8 @@ declare const _default: {
520
520
  geom: string;
521
521
  includes: string[];
522
522
  error: string | null;
523
- customClass: string;
524
523
  disabled: boolean;
524
+ customClass: string;
525
525
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
526
526
  'vs-input-datalist': import("vue").DefineComponent<import("../../types/form.js").IInputDataListProps & {
527
527
  modelValue?: Record<string, any>[];
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-datalist.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/list/vs-input-datalist.vue"],"names":[],"mappings":"AAwJA,OAAO,KAAK,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAG5E,KAAK,WAAW,GAAG,mBAAmB,CAAC;AAyFvC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,CAAC;CAClC,CAAC;;;;;;;;;;;;AAkJF,wBAQG"}
1
+ {"version":3,"file":"vs-input-datalist.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/list/vs-input-datalist.vue"],"names":[],"mappings":"AAyJA,OAAO,KAAK,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAG5E,KAAK,WAAW,GAAG,mBAAmB,CAAC;AA0FvC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,CAAC;CAClC,CAAC;;;;;;;;;;;;AAkJF,wBAQG"}
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-map.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/map/vs-input-map.vue"],"names":[],"mappings":"AAkoCA,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;;;;;;;;;;;;;AA+jD9E,wBAQG"}
1
+ {"version":3,"file":"vs-input-map.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/map/vs-input-map.vue"],"names":[],"mappings":"AAisCA,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;;;;;;;;;;;;;AA8nD9E,wBAQG"}
@@ -14,8 +14,8 @@ declare const _default: {
14
14
  }> & Readonly<{
15
15
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
16
16
  }>, {
17
- customClass: string;
18
17
  disabled: boolean;
18
+ customClass: string;
19
19
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
20
  'vs-input-radio-buttons': import("vue").DefineComponent<import("../../../../types/form.js").IInputProps & {
21
21
  value?: any;
@@ -32,8 +32,8 @@ declare const _default: {
32
32
  }> & Readonly<{
33
33
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
34
34
  }>, {
35
- customClass: string;
36
35
  disabled: boolean;
36
+ customClass: string;
37
37
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
38
38
  };
39
39
  export default _default;
@@ -11,8 +11,8 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
11
11
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
12
12
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
13
13
  }>, {
14
- customClass: string;
15
14
  disabled: boolean;
15
+ customClass: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
18
18
  //# sourceMappingURL=vs-input-radio-buttons.vue.d.ts.map
@@ -11,8 +11,8 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
11
11
  }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
12
12
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
13
13
  }>, {
14
- customClass: string;
15
14
  disabled: boolean;
15
+ customClass: string;
16
16
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
18
18
  //# sourceMappingURL=vs-input-radio-default.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-datatable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/table/vs-input-datatable.vue"],"names":[],"mappings":"AAqYA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAGvD,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAgLpC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,CAAC;;;;;;AAq4BF,wBAOG"}
1
+ {"version":3,"file":"vs-input-datatable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/table/vs-input-datatable.vue"],"names":[],"mappings":"AAweA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAGvD,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAmRpC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,CAAC;;;;;;AAq4BF,wBAOG"}
@@ -12,9 +12,9 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
12
12
  }>, {
13
13
  style: Record<string, any>;
14
14
  unique: boolean;
15
- customClass: string;
16
15
  disabled: boolean;
17
16
  placeholder: string;
17
+ customClass: string;
18
18
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
19
19
  export default _default;
20
20
  //# sourceMappingURL=vs-input-tag.vue.d.ts.map
@@ -20,14 +20,14 @@ declare const _default: import("vue").DefineComponent<IInputSelectProps, {}, {},
20
20
  options: IOption[];
21
21
  data: string;
22
22
  error: string | null;
23
- search: boolean;
24
- auto: 0 | 1;
25
- customClass: string;
23
+ teleport: string;
26
24
  disabled: boolean;
27
25
  placeholder: string;
26
+ auto: 0 | 1;
27
+ search: boolean;
28
+ customClass: string;
28
29
  host: string;
29
30
  maxHeight: number;
30
- teleport: string;
31
31
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
32
32
  export default _default;
33
33
  //# sourceMappingURL=vs-input-select.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-select.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-select.vue"],"names":[],"mappings":"AA+7BA,OAAO,KAAK,EAAE,iBAAiB,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AA2BnE,KAAK,oBAAoB,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;IACvD,MAAM,EAAE,OAAO,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;AA+vCF,wBAQG"}
1
+ {"version":3,"file":"vs-input-select.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-select.vue"],"names":[],"mappings":"AAi8BA,OAAO,KAAK,EAAE,iBAAiB,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AA2BnE,KAAK,oBAAoB,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;IACvD,MAAM,EAAE,OAAO,GAAG,IAAI,CAAC;CACxB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;AAkwCF,wBAQG"}