@opengis/form 0.0.99 → 0.0.101
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 +61 -61
- package/dist/api/suggest/suggestions_list.json +7 -0
- package/dist/components/inputs/address/vs-input-address.vue.d.ts +1 -1
- package/dist/components/inputs/address/vs-input-address.vue.d.ts.map +1 -1
- package/dist/components/inputs/array-select/vs-input-array-select.vue.d.ts +34 -0
- package/dist/components/inputs/array-select/vs-input-array-select.vue.d.ts.map +1 -0
- package/dist/components/inputs/base/vs-input-number.vue.d.ts.map +1 -1
- package/dist/components/inputs/date/datepicker/Datepicker.vue.d.ts.map +1 -1
- package/dist/components/inputs/date/datepicker/DayPicker.vue.d.ts.map +1 -1
- package/dist/components/inputs/date/datepicker/MonthPicker.vue.d.ts.map +1 -1
- package/dist/components/inputs/date/datepicker/PickerPopup.vue.d.ts.map +1 -1
- package/dist/components/inputs/date/datepicker/Timepicker.vue.d.ts.map +1 -1
- package/dist/components/inputs/date/datepicker/YearPicker.vue.d.ts.map +1 -1
- package/dist/components/inputs/date/datepicker/types.d.ts.map +1 -1
- package/dist/components/inputs/file/vs-input-file.vue.d.ts.map +1 -1
- package/dist/components/inputs/file/vs-input-file2.vue.d.ts +15 -0
- package/dist/components/inputs/file/vs-input-file2.vue.d.ts.map +1 -0
- package/dist/components/inputs/file-list/vs-input-file-list.vue.d.ts.map +1 -1
- package/dist/components/inputs/index.d.ts +167 -12
- package/dist/components/inputs/index.d.ts.map +1 -1
- package/dist/components/inputs/list/vs-input-dataform.vue.d.ts +3 -0
- package/dist/components/inputs/list/vs-input-dataform.vue.d.ts.map +1 -1
- package/dist/components/inputs/list/vs-input-datalist.vue.d.ts.map +1 -1
- package/dist/components/inputs/map/map-search.vue.d.ts.map +1 -1
- package/dist/components/inputs/map/vs-input-map.vue.d.ts.map +1 -1
- package/dist/components/inputs/tag/vs-input-tag.vue.d.ts.map +1 -1
- package/dist/components/inputs/vs-input-key-value.vue.d.ts.map +1 -1
- package/dist/components/inputs/vs-input-monaco.vue.d.ts +17 -0
- package/dist/components/inputs/vs-input-monaco.vue.d.ts.map +1 -0
- package/dist/components/inputs/vs-input-select.vue.d.ts +7 -7
- package/dist/components/inputs/vs-input-select.vue.d.ts.map +1 -1
- package/dist/components/layouts/vs-layout-settings.vue.d.ts.map +1 -1
- package/dist/components/modal/modal-edit.vue.d.ts.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4380 -3600
- package/dist/index.umd.cjs +4 -3
- package/dist/plugin/form-plugin.d.ts.map +1 -1
- package/dist/schema.d.ts.map +1 -1
- package/dist/types/form.d.ts +30 -0
- package/dist/types/form.d.ts.map +1 -1
- package/dist/utils/dateHelper.d.ts.map +1 -1
- 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.
|
|
@@ -10,8 +10,8 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
10
10
|
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
11
11
|
"onUpdate:geom"?: ((geom: any) => any) | undefined;
|
|
12
12
|
}>, {
|
|
13
|
-
style: Record<string, any>;
|
|
14
13
|
api: string;
|
|
14
|
+
style: Record<string, any>;
|
|
15
15
|
geom: string;
|
|
16
16
|
includes: string[];
|
|
17
17
|
error: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-address.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/address/vs-input-address.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-address.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/address/vs-input-address.vue"],"names":[],"mappings":"AA0TA,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAIzD,KAAK,WAAW,GAAG,kBAAkB,CAAC;AA6KtC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;;;;;;;AA8RF,wBAQG"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import type { IInputArraySelectProps, IOption } from '../../../types/form';
|
|
2
|
+
type __VLS_Props = IInputArraySelectProps;
|
|
3
|
+
type SelectedPayload = {
|
|
4
|
+
name?: string;
|
|
5
|
+
value: Array<string | number>;
|
|
6
|
+
option: IOption | null;
|
|
7
|
+
};
|
|
8
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
9
|
+
modelValue?: Array<string | number>;
|
|
10
|
+
};
|
|
11
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
13
|
+
} & {
|
|
14
|
+
change: (value: (string | number)[]) => any;
|
|
15
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
16
|
+
"value-selected": (payload: SelectedPayload) => any;
|
|
17
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
18
|
+
onChange?: ((value: (string | number)[]) => any) | undefined;
|
|
19
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
20
|
+
"onValue-selected"?: ((payload: SelectedPayload) => any) | undefined;
|
|
21
|
+
}>, {
|
|
22
|
+
options: IOption[];
|
|
23
|
+
data: string;
|
|
24
|
+
api: string;
|
|
25
|
+
prefix: string;
|
|
26
|
+
host: string;
|
|
27
|
+
search: boolean;
|
|
28
|
+
maxHeight: number;
|
|
29
|
+
start: 0 | 1;
|
|
30
|
+
disabled: boolean;
|
|
31
|
+
placeholder: string;
|
|
32
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
|
+
export default _default;
|
|
34
|
+
//# sourceMappingURL=vs-input-array-select.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vs-input-array-select.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/array-select/vs-input-array-select.vue"],"names":[],"mappings":"AA0hBA,OAAO,KAAK,EAAE,sBAAsB,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAW3E,KAAK,WAAW,GAAG,sBAAsB,CAAC;AAc1C,KAAK,eAAe,GAAG;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;IAC9B,MAAM,EAAE,OAAO,GAAG,IAAI,CAAC;CACxB,CAAC;AAyYF,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAC;CACnC,CAAC;;;;;;;;;;;;;;;;;;;;;;;AA+SF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-number.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/base/vs-input-number.vue"],"names":[],"mappings":"AAqCA,OAAO,
|
|
1
|
+
{"version":3,"file":"vs-input-number.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/base/vs-input-number.vue"],"names":[],"mappings":"AAqCA,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAExD,KAAK,WAAW,GAAG,iBAAiB,CAAC;AAsBrC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;AAqDF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Datepicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/Datepicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Datepicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/Datepicker.vue"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DayPicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/DayPicker.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"DayPicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/DayPicker.vue"],"names":[],"mappings":"AAAA,OAwNO,EACwC,QAAQ,EACtD,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAqB5D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;;;cAa1B,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;;;;;cAmBZ,QAAQ,CAAC,aAAa,CAAC;;;uBAGxB,OAAO,KAAG,OAAO;;;cAGjB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;cAInB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;cAIZ,QAAQ,CAAC;YACvB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;YACd,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,KAAK,OAAO,CAAA;SACtC,CAAC;;;;;;;;;;;;;;;;;8BAlDsB,IAAI;mBACf,IAAI;;;;cAKH,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;;;;;cAmBZ,QAAQ,CAAC,aAAa,CAAC;;;uBAGxB,OAAO,KAAG,OAAO;;;cAGjB,QAAQ,CAAC,MAAM,EAAE,CAAC;;;;cAInB,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;cAIZ,QAAQ,CAAC;YACvB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;YACd,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,KAAK,OAAO,CAAA;SACtC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAvDR,wBA8JG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MonthPicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/MonthPicker.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"MonthPicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/MonthPicker.vue"],"names":[],"mappings":"AAAA,OAsIO,EAA6B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAkB1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;;IAY1C;;OAEG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;cASd,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;8BA1BJ,IAAI;mBACf,IAAI;;;IAInB;;OAEG;;cAEa,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;cASd,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA/BlC,wBA4FG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PickerPopup.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/PickerPopup.vue"],"names":[],"mappings":"AAAA,OAyPO,EAAmB,QAAQ,EAAE,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"PickerPopup.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/PickerPopup.vue"],"names":[],"mappings":"AAAA,OAyPO,EAAmB,QAAQ,EAAE,MAAM,KAAK,CAAC;AAEhD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;AAE9C,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,MAAM,GAAG,QAAQ,CAAA;;;;;;;;;;;;;;;;;;;cA4B9C,QAAQ,CAAC,cAAc,EAAE,CAAC;uBAC5B,cAAc,EAAE;;;cAGb,QAAQ,CAAC,QAAQ,CAAC;;sBAEpB,OAAO;;;0BA7BD,IAAI;;;;;;;;;;;;;;;;;;;;;;cAuBT,QAAQ,CAAC,cAAc,EAAE,CAAC;uBAC5B,cAAc,EAAE;;;cAGb,QAAQ,CAAC,QAAQ,CAAC;;sBAEpB,OAAO;;;;;;;;;;;;;;AA/B3B,wBAkCG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Timepicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/Timepicker.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Timepicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/Timepicker.vue"],"names":[],"mappings":"AAoOA,OAAO,EAML,GAAG,EACH,QAAQ,EACR,WAAW,EACZ,MAAM,KAAK,CAAC;AAQb,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAC;;;cAmC9B,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;cAQZ,QAAQ,CAAC;YACvB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;YACd,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,KAAK,OAAO,CAAA;SACtC,CAAC;;;;;;;;;;yBA2FwB,MAAM,KAAG,MAAM;0BAzCd,kBAAkB;wBA6BpB,IAAI,KAAG,OAAO;;;mBAnG1B,IAAI;;;;cAKH,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;cAQZ,QAAQ,CAAC;YACvB,KAAK,CAAC,EAAE,IAAI,EAAE,CAAA;YACd,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,KAAK,OAAO,CAAA;SACtC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAzBR,wBAmIG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"YearPicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/YearPicker.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"YearPicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/YearPicker.vue"],"names":[],"mappings":"AAAA,OAyHO,EAA6B,QAAQ,EAAE,MAAM,KAAK,CAAC;AAc1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAC;;;cAY1B,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;8BAjBJ,IAAI;mBACf,IAAI;;;cAIH,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;cAId,QAAQ,CAAC,IAAI,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAtBlC,wBAqFG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/components/inputs/date/datepicker/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE/B,MAAM,WAAW,cAAc;IAC7B,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,IAAI,CAAC;IACZ,OAAO,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,OAAO,CAAC;IAClB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,IAAI,CAAC;IACX,QAAQ,EAAE,OAAO,CAAC;IAClB,GAAG,EAAE,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;CAC9B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-file.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/file/vs-input-file.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-file.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/file/vs-input-file.vue"],"names":[],"mappings":"AAoSA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEtD,KAAK,WAAW,GAAG,eAAe,CAAC;AAqNnC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;CAC9B,CAAC;;;;;;;;AAoLF,wBAOG"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { IInputFileChunkProps } from '../../../types/form';
|
|
2
|
+
type __VLS_Props = IInputFileChunkProps;
|
|
3
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
4
|
+
modelValue?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (value: string) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
chunkSize: number;
|
|
12
|
+
subdir: string;
|
|
13
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
export default _default;
|
|
15
|
+
//# sourceMappingURL=vs-input-file2.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vs-input-file2.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/file/vs-input-file2.vue"],"names":[],"mappings":"AAmXA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAEhE,KAAK,WAAW,GAAG,oBAAoB,CAAC;AAkQxC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;AA4QF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-file-list.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/file-list/vs-input-file-list.vue"],"names":[],"mappings":"AA8NA,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"vs-input-file-list.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/file-list/vs-input-file-list.vue"],"names":[],"mappings":"AA8NA,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;;;;;;;;;AAgb7D,wBAQG"}
|
|
@@ -147,22 +147,22 @@ declare const _default: {
|
|
|
147
147
|
option: import("../../types/form.js").IOption | null;
|
|
148
148
|
}) => any) | undefined;
|
|
149
149
|
}>, {
|
|
150
|
+
options: import("../../types/form.js").IOption[];
|
|
151
|
+
data: string;
|
|
152
|
+
api: string;
|
|
150
153
|
prefix: string;
|
|
154
|
+
host: string;
|
|
155
|
+
search: boolean;
|
|
156
|
+
maxHeight: number;
|
|
157
|
+
start: 0 | 1;
|
|
151
158
|
style: Record<string, any>;
|
|
152
|
-
api: string;
|
|
153
159
|
multiple: boolean;
|
|
154
|
-
options: import("../../types/form.js").IOption[];
|
|
155
|
-
data: string;
|
|
156
160
|
error: string | null;
|
|
157
161
|
teleport: string;
|
|
158
162
|
disabled: boolean;
|
|
159
163
|
placeholder: string;
|
|
160
164
|
auto: 0 | 1;
|
|
161
|
-
search: boolean;
|
|
162
165
|
customClass: string;
|
|
163
|
-
host: string;
|
|
164
|
-
maxHeight: number;
|
|
165
|
-
start: 0 | 1;
|
|
166
166
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
167
167
|
'vs-input-switcher': import("vue").DefineComponent<import("../../types/form.js").IInputSwitchProps & {
|
|
168
168
|
modelValue?: boolean;
|
|
@@ -276,6 +276,42 @@ declare const _default: {
|
|
|
276
276
|
onChange?: ((value: string | string[]) => any) | undefined;
|
|
277
277
|
"onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
|
|
278
278
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
279
|
+
'vs-input-file2': import("vue").DefineComponent<import("../../types/form.js").IInputFileChunkProps & {
|
|
280
|
+
modelValue?: string;
|
|
281
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
282
|
+
"update:modelValue": (value: string) => any;
|
|
283
|
+
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputFileChunkProps & {
|
|
284
|
+
modelValue?: string;
|
|
285
|
+
}> & Readonly<{
|
|
286
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
287
|
+
}>, {
|
|
288
|
+
chunkSize: number;
|
|
289
|
+
subdir: string;
|
|
290
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
291
|
+
file2: import("vue").DefineComponent<import("../../types/form.js").IInputFileChunkProps & {
|
|
292
|
+
modelValue?: string;
|
|
293
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
294
|
+
"update:modelValue": (value: string) => any;
|
|
295
|
+
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputFileChunkProps & {
|
|
296
|
+
modelValue?: string;
|
|
297
|
+
}> & Readonly<{
|
|
298
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
299
|
+
}>, {
|
|
300
|
+
chunkSize: number;
|
|
301
|
+
subdir: string;
|
|
302
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
303
|
+
File2: import("vue").DefineComponent<import("../../types/form.js").IInputFileChunkProps & {
|
|
304
|
+
modelValue?: string;
|
|
305
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
306
|
+
"update:modelValue": (value: string) => any;
|
|
307
|
+
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputFileChunkProps & {
|
|
308
|
+
modelValue?: string;
|
|
309
|
+
}> & Readonly<{
|
|
310
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
311
|
+
}>, {
|
|
312
|
+
chunkSize: number;
|
|
313
|
+
subdir: string;
|
|
314
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
279
315
|
'vs-input-html': 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<{}>, {
|
|
280
316
|
text: string;
|
|
281
317
|
html: string;
|
|
@@ -512,22 +548,56 @@ declare const _default: {
|
|
|
512
548
|
option: import("../../types/form.js").IOption | null;
|
|
513
549
|
}) => any) | undefined;
|
|
514
550
|
}>, {
|
|
551
|
+
options: import("../../types/form.js").IOption[];
|
|
552
|
+
data: string;
|
|
553
|
+
api: string;
|
|
515
554
|
prefix: string;
|
|
555
|
+
host: string;
|
|
556
|
+
search: boolean;
|
|
557
|
+
maxHeight: number;
|
|
558
|
+
start: 0 | 1;
|
|
516
559
|
style: Record<string, any>;
|
|
517
|
-
api: string;
|
|
518
560
|
multiple: boolean;
|
|
519
|
-
options: import("../../types/form.js").IOption[];
|
|
520
|
-
data: string;
|
|
521
561
|
error: string | null;
|
|
522
562
|
teleport: string;
|
|
523
563
|
disabled: boolean;
|
|
524
564
|
placeholder: string;
|
|
525
565
|
auto: 0 | 1;
|
|
526
|
-
search: boolean;
|
|
527
566
|
customClass: string;
|
|
567
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
568
|
+
VsInputArraySelect: import("vue").DefineComponent<import("../../types/form.js").IInputArraySelectProps & {
|
|
569
|
+
modelValue?: Array<string | number>;
|
|
570
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
571
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
572
|
+
} & {
|
|
573
|
+
change: (value: (string | number)[]) => any;
|
|
574
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
575
|
+
"value-selected": (payload: {
|
|
576
|
+
name?: string;
|
|
577
|
+
value: Array<string | number>;
|
|
578
|
+
option: import("../../types/form.js").IOption | null;
|
|
579
|
+
}) => any;
|
|
580
|
+
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputArraySelectProps & {
|
|
581
|
+
modelValue?: Array<string | number>;
|
|
582
|
+
}> & Readonly<{
|
|
583
|
+
onChange?: ((value: (string | number)[]) => any) | undefined;
|
|
584
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
585
|
+
"onValue-selected"?: ((payload: {
|
|
586
|
+
name?: string;
|
|
587
|
+
value: Array<string | number>;
|
|
588
|
+
option: import("../../types/form.js").IOption | null;
|
|
589
|
+
}) => any) | undefined;
|
|
590
|
+
}>, {
|
|
591
|
+
options: import("../../types/form.js").IOption[];
|
|
592
|
+
data: string;
|
|
593
|
+
api: string;
|
|
594
|
+
prefix: string;
|
|
528
595
|
host: string;
|
|
596
|
+
search: boolean;
|
|
529
597
|
maxHeight: number;
|
|
530
598
|
start: 0 | 1;
|
|
599
|
+
disabled: boolean;
|
|
600
|
+
placeholder: string;
|
|
531
601
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
532
602
|
'vs-input-array': import("vue").DefineComponent<import("../../types/form.js").IInputArrayProps & {
|
|
533
603
|
modelValue?: (string | number | null)[];
|
|
@@ -550,6 +620,74 @@ declare const _default: {
|
|
|
550
620
|
placeholder: string;
|
|
551
621
|
customClass: string;
|
|
552
622
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
623
|
+
'vs-input-array-select': import("vue").DefineComponent<import("../../types/form.js").IInputArraySelectProps & {
|
|
624
|
+
modelValue?: Array<string | number>;
|
|
625
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
626
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
627
|
+
} & {
|
|
628
|
+
change: (value: (string | number)[]) => any;
|
|
629
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
630
|
+
"value-selected": (payload: {
|
|
631
|
+
name?: string;
|
|
632
|
+
value: Array<string | number>;
|
|
633
|
+
option: import("../../types/form.js").IOption | null;
|
|
634
|
+
}) => any;
|
|
635
|
+
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputArraySelectProps & {
|
|
636
|
+
modelValue?: Array<string | number>;
|
|
637
|
+
}> & Readonly<{
|
|
638
|
+
onChange?: ((value: (string | number)[]) => any) | undefined;
|
|
639
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
640
|
+
"onValue-selected"?: ((payload: {
|
|
641
|
+
name?: string;
|
|
642
|
+
value: Array<string | number>;
|
|
643
|
+
option: import("../../types/form.js").IOption | null;
|
|
644
|
+
}) => any) | undefined;
|
|
645
|
+
}>, {
|
|
646
|
+
options: import("../../types/form.js").IOption[];
|
|
647
|
+
data: string;
|
|
648
|
+
api: string;
|
|
649
|
+
prefix: string;
|
|
650
|
+
host: string;
|
|
651
|
+
search: boolean;
|
|
652
|
+
maxHeight: number;
|
|
653
|
+
start: 0 | 1;
|
|
654
|
+
disabled: boolean;
|
|
655
|
+
placeholder: string;
|
|
656
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
657
|
+
'array-select': import("vue").DefineComponent<import("../../types/form.js").IInputArraySelectProps & {
|
|
658
|
+
modelValue?: Array<string | number>;
|
|
659
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
660
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
661
|
+
} & {
|
|
662
|
+
change: (value: (string | number)[]) => any;
|
|
663
|
+
"update:modelValue": (value: (string | number)[]) => any;
|
|
664
|
+
"value-selected": (payload: {
|
|
665
|
+
name?: string;
|
|
666
|
+
value: Array<string | number>;
|
|
667
|
+
option: import("../../types/form.js").IOption | null;
|
|
668
|
+
}) => any;
|
|
669
|
+
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputArraySelectProps & {
|
|
670
|
+
modelValue?: Array<string | number>;
|
|
671
|
+
}> & Readonly<{
|
|
672
|
+
onChange?: ((value: (string | number)[]) => any) | undefined;
|
|
673
|
+
"onUpdate:modelValue"?: ((value: (string | number)[]) => any) | undefined;
|
|
674
|
+
"onValue-selected"?: ((payload: {
|
|
675
|
+
name?: string;
|
|
676
|
+
value: Array<string | number>;
|
|
677
|
+
option: import("../../types/form.js").IOption | null;
|
|
678
|
+
}) => any) | undefined;
|
|
679
|
+
}>, {
|
|
680
|
+
options: import("../../types/form.js").IOption[];
|
|
681
|
+
data: string;
|
|
682
|
+
api: string;
|
|
683
|
+
prefix: string;
|
|
684
|
+
host: string;
|
|
685
|
+
search: boolean;
|
|
686
|
+
maxHeight: number;
|
|
687
|
+
start: 0 | 1;
|
|
688
|
+
disabled: boolean;
|
|
689
|
+
placeholder: string;
|
|
690
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
553
691
|
'vs-input-address': import("vue").DefineComponent<import("../../types/form.js").IInputAddressProps & {
|
|
554
692
|
modelValue?: string;
|
|
555
693
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -561,8 +699,8 @@ declare const _default: {
|
|
|
561
699
|
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
562
700
|
"onUpdate:geom"?: ((geom: any) => any) | undefined;
|
|
563
701
|
}>, {
|
|
564
|
-
style: Record<string, any>;
|
|
565
702
|
api: string;
|
|
703
|
+
style: Record<string, any>;
|
|
566
704
|
geom: string;
|
|
567
705
|
includes: string[];
|
|
568
706
|
error: string | null;
|
|
@@ -593,6 +731,7 @@ declare const _default: {
|
|
|
593
731
|
}> & Readonly<{
|
|
594
732
|
"onUpdate:modelValue"?: ((value: Record<string, any>[]) => any) | undefined;
|
|
595
733
|
}>, {
|
|
734
|
+
view: "default" | "accordion";
|
|
596
735
|
schema: import("../../types/form.js").ISchemaItem[];
|
|
597
736
|
minGroups: number;
|
|
598
737
|
maxGroups: number;
|
|
@@ -600,6 +739,22 @@ declare const _default: {
|
|
|
600
739
|
groupLabel: string;
|
|
601
740
|
duplicateTitle: string;
|
|
602
741
|
removeTitle: string;
|
|
742
|
+
collapsible: boolean;
|
|
743
|
+
draggable: boolean;
|
|
744
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
745
|
+
'vs-input-monaco': import("vue").DefineComponent<import("../../types/form.js").IInputMonacoProps & {
|
|
746
|
+
modelValue?: string;
|
|
747
|
+
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
748
|
+
"update:modelValue": (value: string) => any;
|
|
749
|
+
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputMonacoProps & {
|
|
750
|
+
modelValue?: string;
|
|
751
|
+
}> & Readonly<{
|
|
752
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
753
|
+
}>, {
|
|
754
|
+
syntax: string;
|
|
755
|
+
theme: string;
|
|
756
|
+
height: number | string;
|
|
757
|
+
minimap: boolean;
|
|
603
758
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
604
759
|
};
|
|
605
760
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuCA,wBA0CE"}
|
|
@@ -8,6 +8,7 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
9
|
"onUpdate:modelValue"?: ((value: Record<string, any>[]) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
|
+
view: "default" | "accordion";
|
|
11
12
|
schema: ISchemaItem[];
|
|
12
13
|
minGroups: number;
|
|
13
14
|
maxGroups: number;
|
|
@@ -15,6 +16,8 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
15
16
|
groupLabel: string;
|
|
16
17
|
duplicateTitle: string;
|
|
17
18
|
removeTitle: string;
|
|
19
|
+
collapsible: boolean;
|
|
20
|
+
draggable: boolean;
|
|
18
21
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
22
|
export default _default;
|
|
20
23
|
//# sourceMappingURL=vs-input-dataform.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-dataform.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/list/vs-input-dataform.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-dataform.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/list/vs-input-dataform.vue"],"names":[],"mappings":"AAqYA,OAAO,KAAK,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAE5E,KAAK,WAAW,GAAG,mBAAmB,CAAC;AA+QvC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,EAAE,CAAC;CAClC,CAAC;;;;;;;;;;;;;;;;;AAiSF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-datalist.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/list/vs-input-datalist.vue"],"names":[],"mappings":"
|
|
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;AAE5E,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":"map-search.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/map/map-search.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"map-search.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/map/map-search.vue"],"names":[],"mappings":"AAmPA,KAAK,IAAI,GAAG,MAAM,GAAG,IAAI,GAAG,QAAQ,CAAA;AAGpC,KAAK,WAAW,GAAG;IAAE,MAAM,CAAC,EAAE;QAAE,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAA;CAAE,CAAC;;;;;;AAmXxF,wBAOG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-map.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/map/vs-input-map.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-map.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/map/vs-input-map.vue"],"names":[],"mappings":"AAqxCA,OAAO,KAAK,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;;;;;;;;;;;;;;;AAotD9E,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-tag.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/tag/vs-input-tag.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-tag.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/tag/vs-input-tag.vue"],"names":[],"mappings":"AA6MA,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,KAAK,WAAW,GAAG,aAAa,CAAC;AA0GjC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB,CAAC;;;;;;;;;;;;;;AA2OF,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-input-key-value.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-key-value.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-input-key-value.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-key-value.vue"],"names":[],"mappings":"AA6KA,KAAK,WAAW,GAAG;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACrC,CAAC;;;;;;AAoSF,wBAOG"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { IInputMonacoProps } from '../../types/form';
|
|
2
|
+
type __VLS_Props = IInputMonacoProps;
|
|
3
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
4
|
+
modelValue?: string;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (value: string) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
syntax: string;
|
|
12
|
+
theme: string;
|
|
13
|
+
height: number | string;
|
|
14
|
+
minimap: boolean;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
export default _default;
|
|
17
|
+
//# sourceMappingURL=vs-input-monaco.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"vs-input-monaco.vue.d.ts","sourceRoot":"","sources":["../../../src/components/inputs/vs-input-monaco.vue"],"names":[],"mappings":"AAyLA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAE1D,KAAK,WAAW,GAAG,iBAAiB,CAAC;AAoLrC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;;AAkDF,wBAQG"}
|