@opengis/form 0.0.79 → 0.0.81

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 (29) hide show
  1. package/README.md +2 -14
  2. package/dist/components/inputs/base/vs-input-text.vue.d.ts +1 -1
  3. package/dist/components/inputs/base/vs-input-text.vue.d.ts.map +1 -1
  4. package/dist/components/inputs/date/datepicker/Datepicker.vue.d.ts +956 -0
  5. package/dist/components/inputs/date/datepicker/Datepicker.vue.d.ts.map +1 -0
  6. package/dist/components/inputs/date/datepicker/DayPicker.vue.d.ts +206 -0
  7. package/dist/components/inputs/date/datepicker/DayPicker.vue.d.ts.map +1 -0
  8. package/dist/components/inputs/date/datepicker/MonthPicker.vue.d.ts +142 -0
  9. package/dist/components/inputs/date/datepicker/MonthPicker.vue.d.ts.map +1 -0
  10. package/dist/components/inputs/date/datepicker/PickerPopup.vue.d.ts +74 -0
  11. package/dist/components/inputs/date/datepicker/PickerPopup.vue.d.ts.map +1 -0
  12. package/dist/components/inputs/date/datepicker/Timepicker.vue.d.ts +132 -0
  13. package/dist/components/inputs/date/datepicker/Timepicker.vue.d.ts.map +1 -0
  14. package/dist/components/inputs/date/datepicker/YearPicker.vue.d.ts +122 -0
  15. package/dist/components/inputs/date/datepicker/YearPicker.vue.d.ts.map +1 -0
  16. package/dist/components/inputs/date/datepicker/types.d.ts +16 -0
  17. package/dist/components/inputs/date/datepicker/types.d.ts.map +1 -0
  18. package/dist/components/inputs/date/vs-input-date2.vue.d.ts +17 -0
  19. package/dist/components/inputs/date/vs-input-date2.vue.d.ts.map +1 -0
  20. package/dist/components/modal/modal-edit.vue.d.ts.map +1 -1
  21. package/dist/index.css +1 -1
  22. package/dist/index.d.ts +1 -1
  23. package/dist/index.js +4494 -3166
  24. package/dist/index.umd.cjs +3 -3
  25. package/dist/types/form.d.ts +4 -1
  26. package/dist/types/form.d.ts.map +1 -1
  27. package/dist/utils/dateHelper.d.ts +57 -0
  28. package/dist/utils/dateHelper.d.ts.map +1 -0
  29. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,6 @@
1
1
  # Vue 3 + TypeScript + Vite
2
2
 
3
- This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
4
-
5
- Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup).
3
+ Flexible and reusable way to create forms with validation, different input types, and layouts
6
4
 
7
5
  ## Features
8
6
 
@@ -24,13 +22,11 @@ Check out the documentation and live demo here: [Live Demo & Docs](https://form.
24
22
 
25
23
  ## Install & Usage
26
24
 
27
- ### Install
28
25
 
29
26
  ```bash
30
27
  npm i @opengis/form
31
28
  ```
32
29
 
33
- ### Usage
34
30
 
35
31
  ```vue
36
32
  <template>
@@ -51,15 +47,7 @@ npm i @opengis/form
51
47
  </script>
52
48
  ```
53
49
 
54
- ### Register
55
-
56
- ```ts
57
- // main.ts
58
- import VsFilter from '@opengis/form';
59
- app.use(VsForm); // Register: VsForm, TextInput, ...
60
- ```
61
-
62
- ### Style
50
+ **Style**
63
51
 
64
52
  ```html
65
53
  <script src="https://cdn.tailwindcss.com"></script>
@@ -1,4 +1,4 @@
1
- import { IInputProps } from "../../../types/form";
1
+ import type { IInputProps } from '../../../types/form';
2
2
  type __VLS_Props = IInputProps;
3
3
  type __VLS_PublicProps = __VLS_Props & {
4
4
  modelValue?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"vs-input-text.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/base/vs-input-text.vue"],"names":[],"mappings":"AA6CA,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAElD,KAAK,WAAW,GAAG,WAAW,CAAC;AAiC/B,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;;;AAuDF,wBAQG"}
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"}