@kong-ui-public/forms 0.1.0
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/LICENSE +201 -0
- package/README.md +15 -0
- package/dist/forms.es.js +10713 -0
- package/dist/forms.es.js.map +1 -0
- package/dist/forms.umd.js +49 -0
- package/dist/forms.umd.js.map +1 -0
- package/dist/style.css +1 -0
- package/dist/types/const.d.ts +2 -0
- package/dist/types/const.d.ts.map +1 -0
- package/dist/types/forms/OIDCForm.vue.d.ts +68 -0
- package/dist/types/forms/OIDCForm.vue.d.ts.map +1 -0
- package/dist/types/forms/PostFunction.vue.d.ts +48 -0
- package/dist/types/forms/PostFunction.vue.d.ts.map +1 -0
- package/dist/types/forms/index.d.ts +3 -0
- package/dist/types/forms/index.d.ts.map +1 -0
- package/dist/types/forms/schemas/ExitTransformer.d.ts +9 -0
- package/dist/types/forms/schemas/ExitTransformer.d.ts.map +1 -0
- package/dist/types/forms/schemas/OIDCAuth.d.ts +40 -0
- package/dist/types/forms/schemas/OIDCAuth.d.ts.map +1 -0
- package/dist/types/forms/schemas/OIDCCommon.d.ts +19 -0
- package/dist/types/forms/schemas/OIDCCommon.d.ts.map +1 -0
- package/dist/types/generator/FormGenerator.vue.d.ts +252 -0
- package/dist/types/generator/FormGenerator.vue.d.ts.map +1 -0
- package/dist/types/generator/FormGroup.vue.d.ts +74 -0
- package/dist/types/generator/FormGroup.vue.d.ts.map +1 -0
- package/dist/types/generator/FormMixin.vue.d.ts +10 -0
- package/dist/types/generator/FormMixin.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/abstractField.d.ts +38 -0
- package/dist/types/generator/fields/abstractField.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldAdvanced.vue.d.ts +48 -0
- package/dist/types/generator/fields/advanced/FieldAdvanced.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldArray.vue.d.ts +64 -0
- package/dist/types/generator/fields/advanced/FieldArray.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldArrayCardContainer.vue.d.ts +26 -0
- package/dist/types/generator/fields/advanced/FieldArrayCardContainer.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldArrayItem.vue.d.ts +19 -0
- package/dist/types/generator/fields/advanced/FieldArrayItem.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldArrayMultiItem.vue.d.ts +7 -0
- package/dist/types/generator/fields/advanced/FieldArrayMultiItem.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldAutoSuggest.vue.d.ts +63 -0
- package/dist/types/generator/fields/advanced/FieldAutoSuggest.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldMetric.vue.d.ts +19 -0
- package/dist/types/generator/fields/advanced/FieldMetric.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldObject.vue.d.ts +45 -0
- package/dist/types/generator/fields/advanced/FieldObject.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldObjectAdvanced.vue.d.ts +71 -0
- package/dist/types/generator/fields/advanced/FieldObjectAdvanced.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldRadio.vue.d.ts +43 -0
- package/dist/types/generator/fields/advanced/FieldRadio.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldSchema.vue.d.ts +19 -0
- package/dist/types/generator/fields/advanced/FieldSchema.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/FieldSelectionGroup.vue.d.ts +56 -0
- package/dist/types/generator/fields/advanced/FieldSelectionGroup.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/advanced/exports.d.ts +2 -0
- package/dist/types/generator/fields/advanced/exports.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldCheckbox.vue.d.ts +37 -0
- package/dist/types/generator/fields/core/fieldCheckbox.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldChecklist.vue.d.ts +49 -0
- package/dist/types/generator/fields/core/fieldChecklist.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldInput.vue.d.ts +47 -0
- package/dist/types/generator/fields/core/fieldInput.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldLabel.vue.d.ts +37 -0
- package/dist/types/generator/fields/core/fieldLabel.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldRadios.vue.d.ts +47 -0
- package/dist/types/generator/fields/core/fieldRadios.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldSelect.vue.d.ts +46 -0
- package/dist/types/generator/fields/core/fieldSelect.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldSubmit.vue.d.ts +39 -0
- package/dist/types/generator/fields/core/fieldSubmit.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldTextArea.vue.d.ts +37 -0
- package/dist/types/generator/fields/core/fieldTextArea.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/core/fieldUpload.vue.d.ts +39 -0
- package/dist/types/generator/fields/core/fieldUpload.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldCleave.vue.d.ts +41 -0
- package/dist/types/generator/fields/optional/fieldCleave.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldDateTimePicker.vue.d.ts +41 -0
- package/dist/types/generator/fields/optional/fieldDateTimePicker.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldGoogleAddress.vue.d.ts +59 -0
- package/dist/types/generator/fields/optional/fieldGoogleAddress.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldImage.vue.d.ts +52 -0
- package/dist/types/generator/fields/optional/fieldImage.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldMasked.vue.d.ts +37 -0
- package/dist/types/generator/fields/optional/fieldMasked.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldNoUiSlider.vue.d.ts +47 -0
- package/dist/types/generator/fields/optional/fieldNoUiSlider.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldPikaday.vue.d.ts +45 -0
- package/dist/types/generator/fields/optional/fieldPikaday.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldRangeSlider.vue.d.ts +39 -0
- package/dist/types/generator/fields/optional/fieldRangeSlider.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldSelectEx.vue.d.ts +42 -0
- package/dist/types/generator/fields/optional/fieldSelectEx.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldSpectrum.vue.d.ts +39 -0
- package/dist/types/generator/fields/optional/fieldSpectrum.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldStaticMap.vue.d.ts +39 -0
- package/dist/types/generator/fields/optional/fieldStaticMap.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldSwitch.vue.d.ts +40 -0
- package/dist/types/generator/fields/optional/fieldSwitch.vue.d.ts.map +1 -0
- package/dist/types/generator/fields/optional/fieldVueMultiSelect.vue.d.ts +49 -0
- package/dist/types/generator/fields/optional/fieldVueMultiSelect.vue.d.ts.map +1 -0
- package/dist/types/generator/utils/dateFieldHelper.d.ts +6 -0
- package/dist/types/generator/utils/dateFieldHelper.d.ts.map +1 -0
- package/dist/types/generator/utils/fieldsLoader.d.ts +35 -0
- package/dist/types/generator/utils/fieldsLoader.d.ts.map +1 -0
- package/dist/types/generator/utils/isValidUuid.d.ts +8 -0
- package/dist/types/generator/utils/isValidUuid.d.ts.map +1 -0
- package/dist/types/generator/utils/schema.d.ts +6 -0
- package/dist/types/generator/utils/schema.d.ts.map +1 -0
- package/dist/types/generator/utils/validators.d.ts +3 -0
- package/dist/types/generator/utils/validators.d.ts.map +1 -0
- package/dist/types/index.d.ts +22 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +69 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {
|
|
2
|
+
inputType(): any;
|
|
3
|
+
}, {
|
|
4
|
+
formatValueToModel(value: any): any;
|
|
5
|
+
formatValueToField(value: any): any;
|
|
6
|
+
formatDatetimeToModel(newValue: any, oldValue: any): void;
|
|
7
|
+
formatDatetimeValueToField(value: any): any;
|
|
8
|
+
formatNumberToModel(newValue: any, oldValue: any): void;
|
|
9
|
+
onInput($event: any): void;
|
|
10
|
+
onBlur(): void;
|
|
11
|
+
}, {
|
|
12
|
+
name: string;
|
|
13
|
+
props: string[];
|
|
14
|
+
emits: string[];
|
|
15
|
+
data(): {
|
|
16
|
+
errors: never[];
|
|
17
|
+
debouncedValidateFunc: null;
|
|
18
|
+
debouncedFormatFunc: null;
|
|
19
|
+
};
|
|
20
|
+
directives: {
|
|
21
|
+
attributes: {
|
|
22
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
23
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
24
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
computed: {
|
|
28
|
+
value: {
|
|
29
|
+
cache: boolean;
|
|
30
|
+
get(): any;
|
|
31
|
+
set(newValue: any): void;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
methods: {
|
|
35
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
36
|
+
debouncedValidate(): void;
|
|
37
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
38
|
+
clearValidationErrors(): void;
|
|
39
|
+
setModelValueByPath(path: any, value: any): void;
|
|
40
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
41
|
+
getFieldClasses(): any;
|
|
42
|
+
formatValueToField(value: any): any;
|
|
43
|
+
formatValueToModel(value: any): any;
|
|
44
|
+
};
|
|
45
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
46
|
+
export default _default;
|
|
47
|
+
//# sourceMappingURL=fieldInput.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldInput.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/core/fieldInput.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, {
|
|
2
|
+
name: string;
|
|
3
|
+
props: string[];
|
|
4
|
+
emits: string[];
|
|
5
|
+
data(): {
|
|
6
|
+
errors: never[];
|
|
7
|
+
debouncedValidateFunc: null;
|
|
8
|
+
debouncedFormatFunc: null;
|
|
9
|
+
};
|
|
10
|
+
directives: {
|
|
11
|
+
attributes: {
|
|
12
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
13
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
14
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
computed: {
|
|
18
|
+
value: {
|
|
19
|
+
cache: boolean;
|
|
20
|
+
get(): any;
|
|
21
|
+
set(newValue: any): void;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
methods: {
|
|
25
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
26
|
+
debouncedValidate(): void;
|
|
27
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
28
|
+
clearValidationErrors(): void;
|
|
29
|
+
setModelValueByPath(path: any, value: any): void;
|
|
30
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
31
|
+
getFieldClasses(): any;
|
|
32
|
+
formatValueToField(value: any): any;
|
|
33
|
+
formatValueToModel(value: any): any;
|
|
34
|
+
};
|
|
35
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
36
|
+
export default _default;
|
|
37
|
+
//# sourceMappingURL=fieldLabel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldLabel.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/core/fieldLabel.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {
|
|
2
|
+
items(): any;
|
|
3
|
+
id(): any;
|
|
4
|
+
}, {
|
|
5
|
+
getItemValue(item: any): any;
|
|
6
|
+
getItemName(item: any): any;
|
|
7
|
+
getItemCssClasses(item: any): any;
|
|
8
|
+
onSelection(item: any): void;
|
|
9
|
+
isItemChecked(item: any): any;
|
|
10
|
+
isItemDisabled(item: any): any;
|
|
11
|
+
}, {
|
|
12
|
+
name: string;
|
|
13
|
+
props: string[];
|
|
14
|
+
emits: string[];
|
|
15
|
+
data(): {
|
|
16
|
+
errors: never[];
|
|
17
|
+
debouncedValidateFunc: null;
|
|
18
|
+
debouncedFormatFunc: null;
|
|
19
|
+
};
|
|
20
|
+
directives: {
|
|
21
|
+
attributes: {
|
|
22
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
23
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
24
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
computed: {
|
|
28
|
+
value: {
|
|
29
|
+
cache: boolean;
|
|
30
|
+
get(): any;
|
|
31
|
+
set(newValue: any): void;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
methods: {
|
|
35
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
36
|
+
debouncedValidate(): void;
|
|
37
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
38
|
+
clearValidationErrors(): void;
|
|
39
|
+
setModelValueByPath(path: any, value: any): void;
|
|
40
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
41
|
+
getFieldClasses(): any;
|
|
42
|
+
formatValueToField(value: any): any;
|
|
43
|
+
formatValueToModel(value: any): any;
|
|
44
|
+
};
|
|
45
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
46
|
+
export default _default;
|
|
47
|
+
//# sourceMappingURL=fieldRadios.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldRadios.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/core/fieldRadios.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {
|
|
2
|
+
selectOptions(): any;
|
|
3
|
+
items(): any;
|
|
4
|
+
}, {
|
|
5
|
+
formatValueToField(value: any): any;
|
|
6
|
+
groupValues(values: any): any[];
|
|
7
|
+
getGroupName(item: any): any;
|
|
8
|
+
getItemValue(item: any): any;
|
|
9
|
+
getItemName(item: any): any;
|
|
10
|
+
}, {
|
|
11
|
+
name: string;
|
|
12
|
+
props: string[];
|
|
13
|
+
emits: string[];
|
|
14
|
+
data(): {
|
|
15
|
+
errors: never[];
|
|
16
|
+
debouncedValidateFunc: null;
|
|
17
|
+
debouncedFormatFunc: null;
|
|
18
|
+
};
|
|
19
|
+
directives: {
|
|
20
|
+
attributes: {
|
|
21
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
22
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
23
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
computed: {
|
|
27
|
+
value: {
|
|
28
|
+
cache: boolean;
|
|
29
|
+
get(): any;
|
|
30
|
+
set(newValue: any): void;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
methods: {
|
|
34
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
35
|
+
debouncedValidate(): void;
|
|
36
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
37
|
+
clearValidationErrors(): void;
|
|
38
|
+
setModelValueByPath(path: any, value: any): void;
|
|
39
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
40
|
+
getFieldClasses(): any;
|
|
41
|
+
formatValueToField(value: any): any;
|
|
42
|
+
formatValueToModel(value: any): any;
|
|
43
|
+
};
|
|
44
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
45
|
+
export default _default;
|
|
46
|
+
//# sourceMappingURL=fieldSelect.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldSelect.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/core/fieldSelect.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
|
|
2
|
+
onClick($event: any): void;
|
|
3
|
+
}, {
|
|
4
|
+
name: string;
|
|
5
|
+
props: string[];
|
|
6
|
+
emits: string[];
|
|
7
|
+
data(): {
|
|
8
|
+
errors: never[];
|
|
9
|
+
debouncedValidateFunc: null;
|
|
10
|
+
debouncedFormatFunc: null;
|
|
11
|
+
};
|
|
12
|
+
directives: {
|
|
13
|
+
attributes: {
|
|
14
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
15
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
16
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
computed: {
|
|
20
|
+
value: {
|
|
21
|
+
cache: boolean;
|
|
22
|
+
get(): any;
|
|
23
|
+
set(newValue: any): void;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
methods: {
|
|
27
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
28
|
+
debouncedValidate(): void;
|
|
29
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
30
|
+
clearValidationErrors(): void;
|
|
31
|
+
setModelValueByPath(path: any, value: any): void;
|
|
32
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
33
|
+
getFieldClasses(): any;
|
|
34
|
+
formatValueToField(value: any): any;
|
|
35
|
+
formatValueToModel(value: any): any;
|
|
36
|
+
};
|
|
37
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
38
|
+
export default _default;
|
|
39
|
+
//# sourceMappingURL=fieldSubmit.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldSubmit.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/core/fieldSubmit.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, {
|
|
2
|
+
name: string;
|
|
3
|
+
props: string[];
|
|
4
|
+
emits: string[];
|
|
5
|
+
data(): {
|
|
6
|
+
errors: never[];
|
|
7
|
+
debouncedValidateFunc: null;
|
|
8
|
+
debouncedFormatFunc: null;
|
|
9
|
+
};
|
|
10
|
+
directives: {
|
|
11
|
+
attributes: {
|
|
12
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
13
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
14
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
computed: {
|
|
18
|
+
value: {
|
|
19
|
+
cache: boolean;
|
|
20
|
+
get(): any;
|
|
21
|
+
set(newValue: any): void;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
methods: {
|
|
25
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
26
|
+
debouncedValidate(): void;
|
|
27
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
28
|
+
clearValidationErrors(): void;
|
|
29
|
+
setModelValueByPath(path: any, value: any): void;
|
|
30
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
31
|
+
getFieldClasses(): any;
|
|
32
|
+
formatValueToField(value: any): any;
|
|
33
|
+
formatValueToModel(value: any): any;
|
|
34
|
+
};
|
|
35
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
36
|
+
export default _default;
|
|
37
|
+
//# sourceMappingURL=fieldTextArea.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldTextArea.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/core/fieldTextArea.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
|
|
2
|
+
onChange($event: any): void;
|
|
3
|
+
}, {
|
|
4
|
+
name: string;
|
|
5
|
+
props: string[];
|
|
6
|
+
emits: string[];
|
|
7
|
+
data(): {
|
|
8
|
+
errors: never[];
|
|
9
|
+
debouncedValidateFunc: null;
|
|
10
|
+
debouncedFormatFunc: null;
|
|
11
|
+
};
|
|
12
|
+
directives: {
|
|
13
|
+
attributes: {
|
|
14
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
15
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
16
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
computed: {
|
|
20
|
+
value: {
|
|
21
|
+
cache: boolean;
|
|
22
|
+
get(): any;
|
|
23
|
+
set(newValue: any): void;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
methods: {
|
|
27
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
28
|
+
debouncedValidate(): void;
|
|
29
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
30
|
+
clearValidationErrors(): void;
|
|
31
|
+
setModelValueByPath(path: any, value: any): void;
|
|
32
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
33
|
+
getFieldClasses(): any;
|
|
34
|
+
formatValueToField(value: any): any;
|
|
35
|
+
formatValueToModel(value: any): any;
|
|
36
|
+
};
|
|
37
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
38
|
+
export default _default;
|
|
39
|
+
//# sourceMappingURL=fieldUpload.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldUpload.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/core/fieldUpload.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
cleave: null;
|
|
3
|
+
}, {}, {
|
|
4
|
+
inputChange(): void;
|
|
5
|
+
}, {
|
|
6
|
+
name: string;
|
|
7
|
+
props: string[];
|
|
8
|
+
emits: string[];
|
|
9
|
+
data(): {
|
|
10
|
+
errors: never[];
|
|
11
|
+
debouncedValidateFunc: null;
|
|
12
|
+
debouncedFormatFunc: null;
|
|
13
|
+
};
|
|
14
|
+
directives: {
|
|
15
|
+
attributes: {
|
|
16
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
17
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
18
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
computed: {
|
|
22
|
+
value: {
|
|
23
|
+
cache: boolean;
|
|
24
|
+
get(): any;
|
|
25
|
+
set(newValue: any): void;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
methods: {
|
|
29
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
30
|
+
debouncedValidate(): void;
|
|
31
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
32
|
+
clearValidationErrors(): void;
|
|
33
|
+
setModelValueByPath(path: any, value: any): void;
|
|
34
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
35
|
+
getFieldClasses(): any;
|
|
36
|
+
formatValueToField(value: any): any;
|
|
37
|
+
formatValueToModel(value: any): any;
|
|
38
|
+
};
|
|
39
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
40
|
+
export default _default;
|
|
41
|
+
//# sourceMappingURL=fieldCleave.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldCleave.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/optional/fieldCleave.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {
|
|
2
|
+
formatValueToField(value: any): any;
|
|
3
|
+
formatValueToModel(value: any): any;
|
|
4
|
+
getDateFormat(): any;
|
|
5
|
+
}, {
|
|
6
|
+
name: string;
|
|
7
|
+
props: string[];
|
|
8
|
+
emits: string[];
|
|
9
|
+
data(): {
|
|
10
|
+
errors: never[];
|
|
11
|
+
debouncedValidateFunc: null;
|
|
12
|
+
debouncedFormatFunc: null;
|
|
13
|
+
};
|
|
14
|
+
directives: {
|
|
15
|
+
attributes: {
|
|
16
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
17
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
18
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
computed: {
|
|
22
|
+
value: {
|
|
23
|
+
cache: boolean;
|
|
24
|
+
get(): any;
|
|
25
|
+
set(newValue: any): void;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
methods: {
|
|
29
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
30
|
+
debouncedValidate(): void;
|
|
31
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
32
|
+
clearValidationErrors(): void;
|
|
33
|
+
setModelValueByPath(path: any, value: any): void;
|
|
34
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
35
|
+
getFieldClasses(): any;
|
|
36
|
+
formatValueToField(value: any): any;
|
|
37
|
+
formatValueToModel(value: any): any;
|
|
38
|
+
};
|
|
39
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
40
|
+
export default _default;
|
|
41
|
+
//# sourceMappingURL=fieldDateTimePicker.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldDateTimePicker.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/optional/fieldDateTimePicker.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
autocomplete: string;
|
|
3
|
+
inputs: {
|
|
4
|
+
street_number: string;
|
|
5
|
+
route: string;
|
|
6
|
+
country: string;
|
|
7
|
+
administrative_area_level_1: string;
|
|
8
|
+
administrative_area_level_2: string;
|
|
9
|
+
locality: string;
|
|
10
|
+
postal_code: string;
|
|
11
|
+
};
|
|
12
|
+
}, {}, {
|
|
13
|
+
/**
|
|
14
|
+
* Look up places and dispatch an event.
|
|
15
|
+
* @return void
|
|
16
|
+
*/
|
|
17
|
+
pipeAddress(): void;
|
|
18
|
+
/**
|
|
19
|
+
* Get the user location.
|
|
20
|
+
* @return void
|
|
21
|
+
*/
|
|
22
|
+
geolocate(): void;
|
|
23
|
+
}, {
|
|
24
|
+
name: string;
|
|
25
|
+
props: string[];
|
|
26
|
+
emits: string[];
|
|
27
|
+
data(): {
|
|
28
|
+
errors: never[];
|
|
29
|
+
debouncedValidateFunc: null;
|
|
30
|
+
debouncedFormatFunc: null;
|
|
31
|
+
};
|
|
32
|
+
directives: {
|
|
33
|
+
attributes: {
|
|
34
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
35
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
36
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
computed: {
|
|
40
|
+
value: {
|
|
41
|
+
cache: boolean;
|
|
42
|
+
get(): any;
|
|
43
|
+
set(newValue: any): void;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
methods: {
|
|
47
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
48
|
+
debouncedValidate(): void;
|
|
49
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
50
|
+
clearValidationErrors(): void;
|
|
51
|
+
setModelValueByPath(path: any, value: any): void;
|
|
52
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
53
|
+
getFieldClasses(): any;
|
|
54
|
+
formatValueToField(value: any): any;
|
|
55
|
+
formatValueToModel(value: any): any;
|
|
56
|
+
};
|
|
57
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
58
|
+
export default _default;
|
|
59
|
+
//# sourceMappingURL=fieldGoogleAddress.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldGoogleAddress.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/optional/fieldGoogleAddress.vue.js"],"names":[],"mappings":";;;;;;;;;;;;IAqDI;;;OAGG;;IAqBH;;;OAGG"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {
|
|
2
|
+
previewStyle(): {
|
|
3
|
+
display: string;
|
|
4
|
+
'background-image': string;
|
|
5
|
+
} | {
|
|
6
|
+
display: string;
|
|
7
|
+
'background-image'?: undefined;
|
|
8
|
+
};
|
|
9
|
+
wrappedValue: {
|
|
10
|
+
get(): any;
|
|
11
|
+
set(newValue: any): void;
|
|
12
|
+
};
|
|
13
|
+
}, {
|
|
14
|
+
remove(): void;
|
|
15
|
+
fileChanged(event: any): void;
|
|
16
|
+
}, {
|
|
17
|
+
name: string;
|
|
18
|
+
props: string[];
|
|
19
|
+
emits: string[];
|
|
20
|
+
data(): {
|
|
21
|
+
errors: never[];
|
|
22
|
+
debouncedValidateFunc: null;
|
|
23
|
+
debouncedFormatFunc: null;
|
|
24
|
+
};
|
|
25
|
+
directives: {
|
|
26
|
+
attributes: {
|
|
27
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
28
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
29
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
computed: {
|
|
33
|
+
value: {
|
|
34
|
+
cache: boolean;
|
|
35
|
+
get(): any;
|
|
36
|
+
set(newValue: any): void;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
methods: {
|
|
40
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
41
|
+
debouncedValidate(): void;
|
|
42
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
43
|
+
clearValidationErrors(): void;
|
|
44
|
+
setModelValueByPath(path: any, value: any): void;
|
|
45
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
46
|
+
getFieldClasses(): any;
|
|
47
|
+
formatValueToField(value: any): any;
|
|
48
|
+
formatValueToModel(value: any): any;
|
|
49
|
+
};
|
|
50
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
51
|
+
export default _default;
|
|
52
|
+
//# sourceMappingURL=fieldImage.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldImage.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/optional/fieldImage.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, {
|
|
2
|
+
name: string;
|
|
3
|
+
props: string[];
|
|
4
|
+
emits: string[];
|
|
5
|
+
data(): {
|
|
6
|
+
errors: never[];
|
|
7
|
+
debouncedValidateFunc: null;
|
|
8
|
+
debouncedFormatFunc: null;
|
|
9
|
+
};
|
|
10
|
+
directives: {
|
|
11
|
+
attributes: {
|
|
12
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
13
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
14
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
computed: {
|
|
18
|
+
value: {
|
|
19
|
+
cache: boolean;
|
|
20
|
+
get(): any;
|
|
21
|
+
set(newValue: any): void;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
methods: {
|
|
25
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
26
|
+
debouncedValidate(): void;
|
|
27
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
28
|
+
clearValidationErrors(): void;
|
|
29
|
+
setModelValueByPath(path: any, value: any): void;
|
|
30
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
31
|
+
getFieldClasses(): any;
|
|
32
|
+
formatValueToField(value: any): any;
|
|
33
|
+
formatValueToModel(value: any): any;
|
|
34
|
+
};
|
|
35
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
36
|
+
export default _default;
|
|
37
|
+
//# sourceMappingURL=fieldMasked.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldMasked.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/optional/fieldMasked.vue.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {
|
|
2
|
+
slider: null;
|
|
3
|
+
}, {
|
|
4
|
+
containPips(): any;
|
|
5
|
+
containTooltip(): any;
|
|
6
|
+
}, {
|
|
7
|
+
onChange(value: any): void;
|
|
8
|
+
formatValueToField(value: any): void;
|
|
9
|
+
formatValueToModel(val: any): number | number[] | undefined;
|
|
10
|
+
getStartValue(): any;
|
|
11
|
+
}, {
|
|
12
|
+
name: string;
|
|
13
|
+
props: string[];
|
|
14
|
+
emits: string[];
|
|
15
|
+
data(): {
|
|
16
|
+
errors: never[];
|
|
17
|
+
debouncedValidateFunc: null;
|
|
18
|
+
debouncedFormatFunc: null;
|
|
19
|
+
};
|
|
20
|
+
directives: {
|
|
21
|
+
attributes: {
|
|
22
|
+
beforeMount: (el: any, binding: any, vnode: any) => void;
|
|
23
|
+
updated: (el: any, binding: any, vnode: any) => void;
|
|
24
|
+
componentUpdated: (el: any, binding: any, vnode: any) => void;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
computed: {
|
|
28
|
+
value: {
|
|
29
|
+
cache: boolean;
|
|
30
|
+
get(): any;
|
|
31
|
+
set(newValue: any): void;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
methods: {
|
|
35
|
+
validate(calledParent: any): any[] | Promise<any[]>;
|
|
36
|
+
debouncedValidate(): void;
|
|
37
|
+
updateModelValue(newValue: any, oldValue: any): void;
|
|
38
|
+
clearValidationErrors(): void;
|
|
39
|
+
setModelValueByPath(path: any, value: any): void;
|
|
40
|
+
getFieldID(schema: any, unique?: boolean): string;
|
|
41
|
+
getFieldClasses(): any;
|
|
42
|
+
formatValueToField(value: any): any;
|
|
43
|
+
formatValueToModel(value: any): any;
|
|
44
|
+
};
|
|
45
|
+
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
46
|
+
export default _default;
|
|
47
|
+
//# sourceMappingURL=fieldNoUiSlider.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fieldNoUiSlider.vue.d.ts","sourceRoot":"","sources":["../../../../../src/generator/fields/optional/fieldNoUiSlider.vue.js"],"names":[],"mappings":""}
|