@opengis/form 0.0.92 → 0.0.93
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/dist/components/form/vs-compact-form.vue.d.ts +6 -4
- package/dist/components/form/vs-compact-form.vue.d.ts.map +1 -1
- package/dist/components/inputs/index.d.ts +43 -6
- package/dist/components/inputs/index.d.ts.map +1 -1
- package/dist/components/inputs/table/vs-input-datatable.vue.d.ts +24 -1
- package/dist/components/inputs/table/vs-input-datatable.vue.d.ts.map +1 -1
- package/dist/index.js +2806 -2787
- package/dist/index.umd.cjs +3 -3
- package/dist/types/form.d.ts +1 -0
- package/dist/types/form.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -16,24 +16,26 @@ interface FormProps {
|
|
|
16
16
|
type __VLS_Props = FormProps;
|
|
17
17
|
type __VLS_PublicProps = __VLS_Props & {
|
|
18
18
|
'form'?: IForm;
|
|
19
|
-
|
|
19
|
+
modelValue?: Record<string, any>;
|
|
20
|
+
'values'?: Record<string, any> | undefined;
|
|
20
21
|
};
|
|
21
22
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
22
23
|
validate: (schemaList?: ISchemaItem[], isRoot?: boolean) => import("../../types/form").IErrors | null;
|
|
23
24
|
reset: () => void;
|
|
24
25
|
errors: import("vue").Ref<import("../../types/form").IErrors, import("../../types/form").IErrors>;
|
|
25
26
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
27
|
+
"update:modelValue": (value: Record<string, any>) => any;
|
|
26
28
|
"update:form": (value: IForm) => any;
|
|
27
|
-
"update:values": (value: Record<string, any>) => any;
|
|
29
|
+
"update:values": (value: Record<string, any> | undefined) => any;
|
|
28
30
|
} & {
|
|
29
31
|
"update:modelValue": (formValues: Record<string, any>) => any;
|
|
30
32
|
"value-selected": (payload: Record<string, any>) => any;
|
|
31
33
|
"handle-submit": (formValues: Record<string, any>) => any;
|
|
32
34
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
33
|
-
"onUpdate:modelValue"?: ((
|
|
35
|
+
"onUpdate:modelValue"?: ((value: Record<string, any>) => any) | undefined;
|
|
34
36
|
"onValue-selected"?: ((payload: Record<string, any>) => any) | undefined;
|
|
35
37
|
"onUpdate:form"?: ((value: IForm) => any) | undefined;
|
|
36
|
-
"onUpdate:values"?: ((value: Record<string, any>) => any) | undefined;
|
|
38
|
+
"onUpdate:values"?: ((value: Record<string, any> | undefined) => any) | undefined;
|
|
37
39
|
"onHandle-submit"?: ((formValues: Record<string, any>) => any) | undefined;
|
|
38
40
|
}>, {
|
|
39
41
|
style: object;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vs-compact-form.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/vs-compact-form.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"vs-compact-form.vue.d.ts","sourceRoot":"","sources":["../../../src/components/form/vs-compact-form.vue"],"names":[],"mappings":"AAsKA,OAAO,KAAK,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAQ3D,UAAU,SAAS;IACjB,MAAM,EAAE,WAAW,EAAE,GAAG,GAAG,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE;QACR,SAAS,EAAE,MAAM,CAAC;QAClB,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;CACH;AAED,KAAK,WAAW,GAAG,SAAS,CAAC;AAoG7B,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,MAAM,CAAC,EAAE,KAAK,CAAC;IACf,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjC,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,SAAS,CAAC;CAC1C,CAAC;;;;;;;;;;;;;;;;;;;;WArHQ,MAAM;YADN,WAAW,EAAE,GAAG,GAAG;cAKhB,OAAO;YAFT,MAAM;YACN,MAAM;gBAEF,OAAO;cACT,MAAM;;AAgQnB,wBASG"}
|
|
@@ -292,15 +292,52 @@ declare const _default: {
|
|
|
292
292
|
placeholder: string;
|
|
293
293
|
customClass: string;
|
|
294
294
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
295
|
-
'vs-input-datatable':
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
295
|
+
'vs-input-datatable': {
|
|
296
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("../../types/form.js").IInputTableProps & {
|
|
297
|
+
modelValue?: any[];
|
|
298
|
+
}> & Readonly<{
|
|
299
|
+
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
300
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
301
|
+
"update:modelValue": (value: any[]) => any;
|
|
302
|
+
}, import("vue").PublicProps, {}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
303
|
+
P: {};
|
|
304
|
+
B: {};
|
|
305
|
+
D: {};
|
|
306
|
+
C: {};
|
|
307
|
+
M: {};
|
|
308
|
+
Defaults: {};
|
|
309
|
+
}, Readonly<import("../../types/form.js").IInputTableProps & {
|
|
310
|
+
modelValue?: any[];
|
|
311
|
+
}> & Readonly<{
|
|
312
|
+
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
313
|
+
}>, {}, {}, {}, {}, {}>;
|
|
314
|
+
__isFragment?: never;
|
|
315
|
+
__isTeleport?: never;
|
|
316
|
+
__isSuspense?: never;
|
|
317
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("../../types/form.js").IInputTableProps & {
|
|
300
318
|
modelValue?: any[];
|
|
301
319
|
}> & Readonly<{
|
|
302
320
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
303
|
-
}>, {}, {}, {}, {},
|
|
321
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
322
|
+
"update:modelValue": (value: any[]) => any;
|
|
323
|
+
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
324
|
+
$slots: {
|
|
325
|
+
[x: string]: ((props: {
|
|
326
|
+
row: any;
|
|
327
|
+
value: any;
|
|
328
|
+
column: {
|
|
329
|
+
key: string;
|
|
330
|
+
name?: string;
|
|
331
|
+
ua?: string;
|
|
332
|
+
label?: string;
|
|
333
|
+
type: string;
|
|
334
|
+
data?: string;
|
|
335
|
+
validators?: [];
|
|
336
|
+
slot?: string;
|
|
337
|
+
};
|
|
338
|
+
}) => any) | undefined;
|
|
339
|
+
};
|
|
340
|
+
});
|
|
304
341
|
'vs-input-map': import("vue").DefineComponent<import("../../types/form.js").IInputMapProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
305
342
|
"update:modelValue": (...args: any[]) => void;
|
|
306
343
|
}, string, import("vue").PublicProps, Readonly<import("../../types/form.js").IInputMapProps> & Readonly<{
|
|
@@ -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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoCA,wBAkCE"}
|
|
@@ -3,10 +3,33 @@ type __VLS_Props = IInputTableProps;
|
|
|
3
3
|
type __VLS_PublicProps = __VLS_Props & {
|
|
4
4
|
modelValue?: any[];
|
|
5
5
|
};
|
|
6
|
-
declare
|
|
6
|
+
declare var __VLS_23: string | undefined, __VLS_24: {
|
|
7
|
+
row: any;
|
|
8
|
+
value: any;
|
|
9
|
+
column: {
|
|
10
|
+
key: string;
|
|
11
|
+
name?: string;
|
|
12
|
+
ua?: string;
|
|
13
|
+
label?: string;
|
|
14
|
+
type: string;
|
|
15
|
+
data?: string;
|
|
16
|
+
validators?: [];
|
|
17
|
+
slot?: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
type __VLS_Slots = {} & {
|
|
21
|
+
[K in NonNullable<typeof __VLS_23>]?: (props: typeof __VLS_24) => any;
|
|
22
|
+
};
|
|
23
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
24
|
"update:modelValue": (value: any[]) => any;
|
|
8
25
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
9
26
|
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
10
27
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
11
29
|
export default _default;
|
|
30
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
12
35
|
//# sourceMappingURL=vs-input-datatable.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":"
|
|
1
|
+
{"version":3,"file":"vs-input-datatable.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/inputs/table/vs-input-datatable.vue"],"names":[],"mappings":"AAgiBA,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAGvD,KAAK,WAAW,GAAG,gBAAgB,CAAC;AAoVpC,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC;CAClB,CAAC;AA+pBF,QAAA,IAAI,QAAQ,oBAAW,EAAE,QAAQ;;;;;;;;;;;;;CAAY,CAAE;AAC/C,KAAK,WAAW,GAAG,EAAE,GACnB;KAAG,CAAC,IAAI,WAAW,CAAC,OAAO,QAAQ,CAAC,CAAC,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG;CAAE,CAAC;AA6D5E,QAAA,MAAM,eAAe;;;;kFAOnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAQ1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|