@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.
- package/README.md +2 -14
- package/dist/components/inputs/base/vs-input-text.vue.d.ts +1 -1
- package/dist/components/inputs/base/vs-input-text.vue.d.ts.map +1 -1
- package/dist/components/inputs/date/datepicker/Datepicker.vue.d.ts +956 -0
- package/dist/components/inputs/date/datepicker/Datepicker.vue.d.ts.map +1 -0
- package/dist/components/inputs/date/datepicker/DayPicker.vue.d.ts +206 -0
- package/dist/components/inputs/date/datepicker/DayPicker.vue.d.ts.map +1 -0
- package/dist/components/inputs/date/datepicker/MonthPicker.vue.d.ts +142 -0
- package/dist/components/inputs/date/datepicker/MonthPicker.vue.d.ts.map +1 -0
- package/dist/components/inputs/date/datepicker/PickerPopup.vue.d.ts +74 -0
- package/dist/components/inputs/date/datepicker/PickerPopup.vue.d.ts.map +1 -0
- package/dist/components/inputs/date/datepicker/Timepicker.vue.d.ts +132 -0
- package/dist/components/inputs/date/datepicker/Timepicker.vue.d.ts.map +1 -0
- package/dist/components/inputs/date/datepicker/YearPicker.vue.d.ts +122 -0
- package/dist/components/inputs/date/datepicker/YearPicker.vue.d.ts.map +1 -0
- package/dist/components/inputs/date/datepicker/types.d.ts +16 -0
- package/dist/components/inputs/date/datepicker/types.d.ts.map +1 -0
- package/dist/components/inputs/date/vs-input-date2.vue.d.ts +17 -0
- package/dist/components/inputs/date/vs-input-date2.vue.d.ts.map +1 -0
- package/dist/components/modal/modal-edit.vue.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4494 -3166
- package/dist/index.umd.cjs +3 -3
- package/dist/types/form.d.ts +4 -1
- package/dist/types/form.d.ts.map +1 -1
- package/dist/utils/dateHelper.d.ts +57 -0
- package/dist/utils/dateHelper.d.ts.map +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# Vue 3 + TypeScript + Vite
|
|
2
2
|
|
|
3
|
-
|
|
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
|
-
|
|
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-text.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/base/vs-input-text.vue"],"names":[],"mappings":"
|
|
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"}
|