@ramathibodi/nuxt-commons 0.1.74 → 4.0.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/README.md +9 -2
- package/dist/module.json +4 -4
- package/dist/module.mjs +4 -4
- package/dist/runtime/bridges/authentication.d.ts +21 -0
- package/dist/runtime/bridges/authentication.js +20 -0
- package/dist/runtime/bridges/graphql.d.ts +17 -0
- package/dist/runtime/bridges/graphql.js +45 -0
- package/dist/runtime/components/Alert.d.vue.ts +3 -0
- package/dist/runtime/components/Alert.vue +17 -26
- package/dist/runtime/components/Alert.vue.d.ts +3 -0
- package/dist/runtime/components/BarcodeReader.d.vue.ts +9 -0
- package/dist/runtime/components/BarcodeReader.vue +56 -81
- package/dist/runtime/components/BarcodeReader.vue.d.ts +9 -0
- package/dist/runtime/components/ExportCSV.d.vue.ts +55 -0
- package/dist/runtime/components/ExportCSV.vue +39 -76
- package/dist/runtime/components/ExportCSV.vue.d.ts +55 -0
- package/dist/runtime/components/FileBtn.d.vue.ts +53 -0
- package/dist/runtime/components/FileBtn.vue +23 -50
- package/dist/runtime/components/FileBtn.vue.d.ts +53 -0
- package/dist/runtime/components/ImportCSV.d.vue.ts +52 -0
- package/dist/runtime/components/ImportCSV.vue +60 -111
- package/dist/runtime/components/ImportCSV.vue.d.ts +52 -0
- package/dist/runtime/components/MrzReader.d.vue.ts +19 -0
- package/dist/runtime/components/MrzReader.vue +69 -109
- package/dist/runtime/components/MrzReader.vue.d.ts +19 -0
- package/dist/runtime/components/SplitterPanel.d.vue.ts +15 -0
- package/dist/runtime/components/SplitterPanel.vue +18 -35
- package/dist/runtime/components/SplitterPanel.vue.d.ts +15 -0
- package/dist/runtime/components/TabsGroup.d.vue.ts +19 -0
- package/dist/runtime/components/TabsGroup.vue +8 -20
- package/dist/runtime/components/TabsGroup.vue.d.ts +19 -0
- package/dist/runtime/components/TextBarcode.d.vue.ts +12 -0
- package/dist/runtime/components/TextBarcode.vue +22 -45
- package/dist/runtime/components/TextBarcode.vue.d.ts +12 -0
- package/dist/runtime/components/device/IdCardButton.d.vue.ts +57 -0
- package/dist/runtime/components/device/IdCardButton.vue +30 -67
- package/dist/runtime/components/device/IdCardButton.vue.d.ts +57 -0
- package/dist/runtime/components/device/IdCardWebSocket.d.vue.ts +55 -0
- package/dist/runtime/components/device/IdCardWebSocket.vue +104 -165
- package/dist/runtime/components/device/IdCardWebSocket.vue.d.ts +55 -0
- package/dist/runtime/components/device/Scanner.d.vue.ts +66 -0
- package/dist/runtime/components/device/Scanner.vue +97 -178
- package/dist/runtime/components/device/Scanner.vue.d.ts +66 -0
- package/dist/runtime/components/dialog/Confirm.d.vue.ts +37 -0
- package/dist/runtime/components/dialog/Confirm.vue +30 -59
- package/dist/runtime/components/dialog/Confirm.vue.d.ts +37 -0
- package/dist/runtime/components/dialog/Host.d.vue.ts +9 -0
- package/dist/runtime/components/dialog/Host.vue +34 -57
- package/dist/runtime/components/dialog/Host.vue.d.ts +9 -0
- package/dist/runtime/components/dialog/Index.d.vue.ts +24 -0
- package/dist/runtime/components/dialog/Index.vue +20 -40
- package/dist/runtime/components/dialog/Index.vue.d.ts +24 -0
- package/dist/runtime/components/dialog/Loading.d.vue.ts +21 -0
- package/dist/runtime/components/dialog/Loading.vue +12 -29
- package/dist/runtime/components/dialog/Loading.vue.d.ts +21 -0
- package/dist/runtime/components/dialog/default/Confirm.d.vue.ts +40 -0
- package/dist/runtime/components/dialog/default/Confirm.vue +29 -62
- package/dist/runtime/components/dialog/default/Confirm.vue.d.ts +40 -0
- package/dist/runtime/components/dialog/default/Loading.d.vue.ts +23 -0
- package/dist/runtime/components/dialog/default/Loading.vue +12 -29
- package/dist/runtime/components/dialog/default/Loading.vue.d.ts +23 -0
- package/dist/runtime/components/dialog/default/Notify.d.vue.ts +23 -0
- package/dist/runtime/components/dialog/default/Notify.vue +19 -48
- package/dist/runtime/components/dialog/default/Notify.vue.d.ts +23 -0
- package/dist/runtime/components/dialog/default/Printing.d.vue.ts +21 -0
- package/dist/runtime/components/dialog/default/Printing.vue +13 -29
- package/dist/runtime/components/dialog/default/Printing.vue.d.ts +21 -0
- package/dist/runtime/components/dialog/default/VerifyUser.d.vue.ts +29 -0
- package/dist/runtime/components/dialog/default/VerifyUser.vue +44 -82
- package/dist/runtime/components/dialog/default/VerifyUser.vue.d.ts +29 -0
- package/dist/runtime/components/document/Form.d.vue.ts +9 -0
- package/dist/runtime/components/document/Form.vue +27 -42
- package/dist/runtime/components/document/Form.vue.d.ts +9 -0
- package/dist/runtime/components/document/TemplateBuilder.d.vue.ts +24 -0
- package/dist/runtime/components/document/TemplateBuilder.vue +154 -194
- package/dist/runtime/components/document/TemplateBuilder.vue.d.ts +24 -0
- package/dist/runtime/components/form/ActionPad.d.vue.ts +114 -0
- package/dist/runtime/components/form/ActionPad.vue +48 -85
- package/dist/runtime/components/form/ActionPad.vue.d.ts +114 -0
- package/dist/runtime/components/form/Birthdate.d.vue.ts +38 -0
- package/dist/runtime/components/form/Birthdate.vue +44 -76
- package/dist/runtime/components/form/Birthdate.vue.d.ts +38 -0
- package/dist/runtime/components/form/CheckboxGroup.d.vue.ts +41 -0
- package/dist/runtime/components/form/CheckboxGroup.vue +34 -64
- package/dist/runtime/components/form/CheckboxGroup.vue.d.ts +41 -0
- package/dist/runtime/components/form/CodeEditor.d.vue.ts +25 -0
- package/dist/runtime/components/form/CodeEditor.vue +18 -36
- package/dist/runtime/components/form/CodeEditor.vue.d.ts +25 -0
- package/dist/runtime/components/form/Date.d.vue.ts +86 -0
- package/dist/runtime/components/form/Date.vue +109 -162
- package/dist/runtime/components/form/Date.vue.d.ts +86 -0
- package/dist/runtime/components/form/DateTime.d.vue.ts +36 -0
- package/dist/runtime/components/form/DateTime.vue +94 -143
- package/dist/runtime/components/form/DateTime.vue.d.ts +36 -0
- package/dist/runtime/components/form/Dialog.d.vue.ts +69 -0
- package/dist/runtime/components/form/Dialog.vue +60 -96
- package/dist/runtime/components/form/Dialog.vue.d.ts +69 -0
- package/dist/runtime/components/form/EditPad.d.vue.ts +113 -0
- package/dist/runtime/components/form/EditPad.vue +49 -85
- package/dist/runtime/components/form/EditPad.vue.d.ts +113 -0
- package/dist/runtime/components/form/File.d.vue.ts +65 -0
- package/dist/runtime/components/form/File.vue +112 -186
- package/dist/runtime/components/form/File.vue.d.ts +65 -0
- package/dist/runtime/components/form/Hidden.d.vue.ts +12 -0
- package/dist/runtime/components/form/Hidden.vue +17 -34
- package/dist/runtime/components/form/Hidden.vue.d.ts +12 -0
- package/dist/runtime/components/form/Iterator.d.vue.ts +279 -0
- package/dist/runtime/components/form/Iterator.vue +162 -252
- package/dist/runtime/components/form/Iterator.vue.d.ts +279 -0
- package/dist/runtime/components/form/Login.d.vue.ts +32 -0
- package/dist/runtime/components/form/Login.vue +23 -55
- package/dist/runtime/components/form/Login.vue.d.ts +32 -0
- package/dist/runtime/components/form/Pad.d.vue.ts +674 -0
- package/dist/runtime/components/form/Pad.vue +166 -265
- package/dist/runtime/components/form/Pad.vue.d.ts +674 -0
- package/dist/runtime/components/form/SignPad.d.vue.ts +62 -0
- package/dist/runtime/components/form/SignPad.vue +80 -126
- package/dist/runtime/components/form/SignPad.vue.d.ts +62 -0
- package/dist/runtime/components/form/System.d.vue.ts +34 -0
- package/dist/runtime/components/form/System.vue +18 -32
- package/dist/runtime/components/form/System.vue.d.ts +34 -0
- package/dist/runtime/components/form/Table.d.vue.ts +221 -0
- package/dist/runtime/components/form/Table.vue +123 -182
- package/dist/runtime/components/form/Table.vue.d.ts +221 -0
- package/dist/runtime/components/form/TableData.d.vue.ts +102 -0
- package/dist/runtime/components/form/TableData.vue +109 -139
- package/dist/runtime/components/form/TableData.vue.d.ts +102 -0
- package/dist/runtime/components/form/Time.d.vue.ts +49 -0
- package/dist/runtime/components/form/Time.vue +64 -99
- package/dist/runtime/components/form/Time.vue.d.ts +49 -0
- package/dist/runtime/components/form/images/Capture.d.vue.ts +96 -0
- package/dist/runtime/components/form/images/Capture.vue +104 -147
- package/dist/runtime/components/form/images/Capture.vue.d.ts +96 -0
- package/dist/runtime/components/form/images/Edit.d.vue.ts +29 -0
- package/dist/runtime/components/form/images/Edit.vue +57 -81
- package/dist/runtime/components/form/images/Edit.vue.d.ts +29 -0
- package/dist/runtime/components/form/images/Field.d.vue.ts +27 -0
- package/dist/runtime/components/form/images/Field.vue +136 -205
- package/dist/runtime/components/form/images/Field.vue.d.ts +27 -0
- package/dist/runtime/components/form/images/Pad.d.vue.ts +13 -0
- package/dist/runtime/components/form/images/Pad.vue +23 -40
- package/dist/runtime/components/form/images/Pad.vue.d.ts +13 -0
- package/dist/runtime/components/label/Date.d.vue.ts +13 -0
- package/dist/runtime/components/label/Date.vue +13 -29
- package/dist/runtime/components/label/Date.vue.d.ts +13 -0
- package/dist/runtime/components/label/DateAgo.d.vue.ts +20 -0
- package/dist/runtime/components/label/DateAgo.vue +43 -75
- package/dist/runtime/components/label/DateAgo.vue.d.ts +20 -0
- package/dist/runtime/components/label/DateCount.d.vue.ts +22 -0
- package/dist/runtime/components/label/DateCount.vue +58 -105
- package/dist/runtime/components/label/DateCount.vue.d.ts +22 -0
- package/dist/runtime/components/label/Field.d.vue.ts +38 -0
- package/dist/runtime/components/label/Field.vue +18 -40
- package/dist/runtime/components/label/Field.vue.d.ts +38 -0
- package/dist/runtime/components/label/FormatMoney.d.vue.ts +12 -0
- package/dist/runtime/components/label/FormatMoney.vue +12 -28
- package/dist/runtime/components/label/FormatMoney.vue.d.ts +12 -0
- package/dist/runtime/components/label/Mask.d.vue.ts +10 -0
- package/dist/runtime/components/label/Mask.vue +21 -38
- package/dist/runtime/components/label/Mask.vue.d.ts +10 -0
- package/dist/runtime/components/label/Object.d.vue.ts +8 -0
- package/dist/runtime/components/label/Object.vue +10 -20
- package/dist/runtime/components/label/Object.vue.d.ts +8 -0
- package/dist/runtime/components/master/Autocomplete.d.vue.ts +70 -0
- package/dist/runtime/components/master/Autocomplete.vue +25 -34
- package/dist/runtime/components/master/Autocomplete.vue.d.ts +70 -0
- package/dist/runtime/components/master/Combobox.d.vue.ts +70 -0
- package/dist/runtime/components/master/Combobox.vue +26 -35
- package/dist/runtime/components/master/Combobox.vue.d.ts +70 -0
- package/dist/runtime/components/master/RadioGroup.d.vue.ts +51 -0
- package/dist/runtime/components/master/RadioGroup.vue +44 -59
- package/dist/runtime/components/master/RadioGroup.vue.d.ts +51 -0
- package/dist/runtime/components/master/Select.d.vue.ts +68 -0
- package/dist/runtime/components/master/Select.vue +25 -34
- package/dist/runtime/components/master/Select.vue.d.ts +68 -0
- package/dist/runtime/components/master/label.d.vue.ts +24 -0
- package/dist/runtime/components/master/label.vue +22 -42
- package/dist/runtime/components/master/label.vue.d.ts +24 -0
- package/dist/runtime/components/model/Autocomplete.d.vue.ts +82 -0
- package/dist/runtime/components/model/Autocomplete.vue +50 -49
- package/dist/runtime/components/model/Autocomplete.vue.d.ts +82 -0
- package/dist/runtime/components/model/Combobox.d.vue.ts +82 -0
- package/dist/runtime/components/model/Combobox.vue +51 -49
- package/dist/runtime/components/model/Combobox.vue.d.ts +82 -0
- package/dist/runtime/components/model/Pad.d.vue.ts +72 -0
- package/dist/runtime/components/model/Pad.vue +50 -65
- package/dist/runtime/components/model/Pad.vue.d.ts +72 -0
- package/dist/runtime/components/model/Select.d.vue.ts +72 -0
- package/dist/runtime/components/model/Select.vue +42 -44
- package/dist/runtime/components/model/Select.vue.d.ts +72 -0
- package/dist/runtime/components/model/Table.d.vue.ts +272 -0
- package/dist/runtime/components/model/Table.vue +121 -145
- package/dist/runtime/components/model/Table.vue.d.ts +272 -0
- package/dist/runtime/components/model/iterator.d.vue.ts +321 -0
- package/dist/runtime/components/model/iterator.vue +148 -183
- package/dist/runtime/components/model/iterator.vue.d.ts +321 -0
- package/dist/runtime/components/model/label.d.vue.ts +26 -0
- package/dist/runtime/components/model/label.vue +25 -43
- package/dist/runtime/components/model/label.vue.d.ts +26 -0
- package/dist/runtime/components/pdf/Print.d.vue.ts +17 -0
- package/dist/runtime/components/pdf/Print.vue +27 -50
- package/dist/runtime/components/pdf/Print.vue.d.ts +17 -0
- package/dist/runtime/components/pdf/View.d.vue.ts +52 -0
- package/dist/runtime/components/pdf/View.vue +58 -95
- package/dist/runtime/components/pdf/View.vue.d.ts +52 -0
- package/dist/runtime/composables/api.js +4 -2
- package/dist/runtime/composables/assetFile.js +4 -2
- package/dist/runtime/composables/dialog.d.ts +1 -1
- package/dist/runtime/composables/document/template.js +3 -3
- package/dist/runtime/composables/document/templateFormTable.js +1 -0
- package/dist/runtime/composables/graphql.d.ts +2 -2
- package/dist/runtime/composables/graphql.js +5 -5
- package/dist/runtime/composables/graphqlModel.d.ts +6 -6
- package/dist/runtime/composables/graphqlModelItem.d.ts +4 -4
- package/dist/runtime/composables/graphqlModelOperation.d.ts +6 -6
- package/dist/runtime/composables/graphqlModelOperation.js +2 -1
- package/dist/runtime/composables/graphqlOperation.js +5 -1
- package/dist/runtime/composables/hostAgentWs.d.ts +1 -1
- package/dist/runtime/composables/lookupListMaster.js +3 -3
- package/dist/runtime/composables/menu.js +2 -2
- package/dist/runtime/composables/userPermission.d.ts +1 -1
- package/dist/runtime/composables/utils/fuzzy.d.ts +2 -1
- package/dist/runtime/labs/Calendar.d.vue.ts +35 -0
- package/dist/runtime/labs/Calendar.vue +47 -75
- package/dist/runtime/labs/Calendar.vue.d.ts +35 -0
- package/dist/runtime/labs/form/EditMobile.d.vue.ts +12 -0
- package/dist/runtime/labs/form/EditMobile.vue +19 -36
- package/dist/runtime/labs/form/EditMobile.vue.d.ts +12 -0
- package/dist/runtime/labs/form/TextFieldMask.d.vue.ts +21 -0
- package/dist/runtime/labs/form/TextFieldMask.vue +19 -25
- package/dist/runtime/labs/form/TextFieldMask.vue.d.ts +21 -0
- package/dist/runtime/plugins/dialogManager.js +2 -2
- package/dist/runtime/plugins/permission.js +3 -3
- package/dist/runtime/types/bridge.d.ts +14 -0
- package/dist/runtime/utils/datetime.js +1 -1
- package/dist/types.d.mts +2 -6
- package/package.json +71 -58
- package/scripts/ci-release.mjs +125 -0
- package/scripts/release-version.mjs +68 -0
- package/scripts/release.mjs +49 -0
- package/dist/module.cjs +0 -5
- package/dist/module.d.ts +0 -8
- package/dist/types.d.ts +0 -7
|
@@ -0,0 +1,674 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue?: object;
|
|
3
|
+
originalData?: object;
|
|
4
|
+
template?: any;
|
|
5
|
+
templateScript?: string;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
readonly?: boolean;
|
|
8
|
+
isolated?: boolean;
|
|
9
|
+
decoration?: object;
|
|
10
|
+
parentTemplates?: string | string[];
|
|
11
|
+
dirtyClass?: string;
|
|
12
|
+
dirtyOnCreate?: boolean;
|
|
13
|
+
sanitizeDelay?: number;
|
|
14
|
+
}
|
|
15
|
+
declare function reset(): void;
|
|
16
|
+
declare function validate(): void;
|
|
17
|
+
declare function resetValidate(): void;
|
|
18
|
+
declare var __VLS_10: {
|
|
19
|
+
data: any;
|
|
20
|
+
formProvided: {
|
|
21
|
+
errors: import("vuetify/lib/composables/form.mjs").FieldValidationResult[];
|
|
22
|
+
isDisabled: boolean;
|
|
23
|
+
isReadonly: boolean;
|
|
24
|
+
isValidating: boolean;
|
|
25
|
+
isValid: boolean | null;
|
|
26
|
+
items: import("vuetify/lib/composables/form.mjs").FormField[];
|
|
27
|
+
validate: () => Promise<import("vuetify/lib/composables/form.mjs").FormValidationResult>;
|
|
28
|
+
reset: () => void;
|
|
29
|
+
resetValidation: () => void;
|
|
30
|
+
};
|
|
31
|
+
isDisabled: boolean;
|
|
32
|
+
isReadonly: boolean;
|
|
33
|
+
rules: {
|
|
34
|
+
require: (customError?: string) => (
|
|
35
|
+
/**
|
|
36
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
37
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
38
|
+
*/
|
|
39
|
+
value: any
|
|
40
|
+
/**
|
|
41
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
42
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
43
|
+
*/
|
|
44
|
+
) => string | true;
|
|
45
|
+
requireIf: (conditionIf: boolean, customError?: string) => (
|
|
46
|
+
/**
|
|
47
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
48
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
49
|
+
*/
|
|
50
|
+
value: any
|
|
51
|
+
/**
|
|
52
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
53
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
54
|
+
*/
|
|
55
|
+
) => string | true;
|
|
56
|
+
requireTrue: (customError?: string) => (
|
|
57
|
+
/**
|
|
58
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
59
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
60
|
+
*/
|
|
61
|
+
value: any
|
|
62
|
+
/**
|
|
63
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
64
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
65
|
+
*/
|
|
66
|
+
) => string | true;
|
|
67
|
+
requireTrueIf: (conditionIf: boolean, customError?: string) => (
|
|
68
|
+
/**
|
|
69
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
70
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
71
|
+
*/
|
|
72
|
+
value: any
|
|
73
|
+
/**
|
|
74
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
75
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
76
|
+
*/
|
|
77
|
+
) => string | true;
|
|
78
|
+
numeric: (customError?: string) => (
|
|
79
|
+
/**
|
|
80
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
81
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
82
|
+
*/
|
|
83
|
+
value: any
|
|
84
|
+
/**
|
|
85
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
86
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
87
|
+
*/
|
|
88
|
+
) => string | true;
|
|
89
|
+
range: (minValue: number, maxValue: number, customError?: string) => (
|
|
90
|
+
/**
|
|
91
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
92
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
93
|
+
*/
|
|
94
|
+
value: any
|
|
95
|
+
/**
|
|
96
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
97
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
98
|
+
*/
|
|
99
|
+
) => string | true;
|
|
100
|
+
integer: (customError?: string) => (
|
|
101
|
+
/**
|
|
102
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
103
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
104
|
+
*/
|
|
105
|
+
value: any
|
|
106
|
+
/**
|
|
107
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
108
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
109
|
+
*/
|
|
110
|
+
) => string | true;
|
|
111
|
+
unique: (data: Array<any> | object, fieldName: string, customError?: string) => (
|
|
112
|
+
/**
|
|
113
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
114
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
115
|
+
*/
|
|
116
|
+
value: any
|
|
117
|
+
/**
|
|
118
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
119
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
120
|
+
*/
|
|
121
|
+
) => string | true;
|
|
122
|
+
length: (length: number, customError?: string) => (
|
|
123
|
+
/**
|
|
124
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
125
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
126
|
+
*/
|
|
127
|
+
value: any
|
|
128
|
+
/**
|
|
129
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
130
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
131
|
+
*/
|
|
132
|
+
) => string | true;
|
|
133
|
+
lengthGreater: (length: number, customError?: string) => (
|
|
134
|
+
/**
|
|
135
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
136
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
137
|
+
*/
|
|
138
|
+
value: any
|
|
139
|
+
/**
|
|
140
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
141
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
142
|
+
*/
|
|
143
|
+
) => string | true;
|
|
144
|
+
lengthLess: (length: number, customError?: string) => (
|
|
145
|
+
/**
|
|
146
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
147
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
148
|
+
*/
|
|
149
|
+
value: any
|
|
150
|
+
/**
|
|
151
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
152
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
153
|
+
*/
|
|
154
|
+
) => string | true;
|
|
155
|
+
telephone: (customError?: string) => (
|
|
156
|
+
/**
|
|
157
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
158
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
159
|
+
*/
|
|
160
|
+
value: any
|
|
161
|
+
/**
|
|
162
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
163
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
164
|
+
*/
|
|
165
|
+
) => string | true;
|
|
166
|
+
telephoneSingle: (customError?: string) => (
|
|
167
|
+
/**
|
|
168
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
169
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
170
|
+
*/
|
|
171
|
+
value: any
|
|
172
|
+
/**
|
|
173
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
174
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
175
|
+
*/
|
|
176
|
+
) => string | true;
|
|
177
|
+
internationalTelephone: (customError?: string) => (
|
|
178
|
+
/**
|
|
179
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
180
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
181
|
+
*/
|
|
182
|
+
value: any
|
|
183
|
+
/**
|
|
184
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
185
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
186
|
+
*/
|
|
187
|
+
) => string | true;
|
|
188
|
+
internationalTelephoneSingle: (customError?: string) => (
|
|
189
|
+
/**
|
|
190
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
191
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
192
|
+
*/
|
|
193
|
+
value: any
|
|
194
|
+
/**
|
|
195
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
196
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
197
|
+
*/
|
|
198
|
+
) => string | true;
|
|
199
|
+
mobilePhone: (customError?: string) => (
|
|
200
|
+
/**
|
|
201
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
202
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
203
|
+
*/
|
|
204
|
+
value: any
|
|
205
|
+
/**
|
|
206
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
207
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
208
|
+
*/
|
|
209
|
+
) => string | true;
|
|
210
|
+
mobilePhoneSingle: (customError?: string) => (
|
|
211
|
+
/**
|
|
212
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
213
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
214
|
+
*/
|
|
215
|
+
value: any
|
|
216
|
+
/**
|
|
217
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
218
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
219
|
+
*/
|
|
220
|
+
) => string | true;
|
|
221
|
+
email: (customError?: string) => (
|
|
222
|
+
/**
|
|
223
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
224
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
225
|
+
*/
|
|
226
|
+
value: any
|
|
227
|
+
/**
|
|
228
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
229
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
230
|
+
*/
|
|
231
|
+
) => string | true;
|
|
232
|
+
regex: (regex: RegExp | string, customError?: string) => (
|
|
233
|
+
/**
|
|
234
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
235
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
236
|
+
*/
|
|
237
|
+
value: any
|
|
238
|
+
/**
|
|
239
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
240
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
241
|
+
*/
|
|
242
|
+
) => string | true;
|
|
243
|
+
idcard: (customError?: string) => (
|
|
244
|
+
/**
|
|
245
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
246
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
247
|
+
*/
|
|
248
|
+
value: any
|
|
249
|
+
/**
|
|
250
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
251
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
252
|
+
*/
|
|
253
|
+
) => string | true;
|
|
254
|
+
DateFuture: (customError?: string) => (
|
|
255
|
+
/**
|
|
256
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
257
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
258
|
+
*/
|
|
259
|
+
value: any
|
|
260
|
+
/**
|
|
261
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
262
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
263
|
+
*/
|
|
264
|
+
) => string | true;
|
|
265
|
+
DatetimeFuture: (customError?: string) => (
|
|
266
|
+
/**
|
|
267
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
268
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
269
|
+
*/
|
|
270
|
+
value: any
|
|
271
|
+
/**
|
|
272
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
273
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
274
|
+
*/
|
|
275
|
+
) => string | true;
|
|
276
|
+
DateHappen: (customError?: string) => (
|
|
277
|
+
/**
|
|
278
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
279
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
280
|
+
*/
|
|
281
|
+
value: any
|
|
282
|
+
/**
|
|
283
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
284
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
285
|
+
*/
|
|
286
|
+
) => string | true;
|
|
287
|
+
DatetimeHappen: (customError?: string) => (
|
|
288
|
+
/**
|
|
289
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
290
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
291
|
+
*/
|
|
292
|
+
value: any
|
|
293
|
+
/**
|
|
294
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
295
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
296
|
+
*/
|
|
297
|
+
) => string | true;
|
|
298
|
+
DateAfter: (compareDate: string, customError: string) => (
|
|
299
|
+
/**
|
|
300
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
301
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
302
|
+
*/
|
|
303
|
+
value: any
|
|
304
|
+
/**
|
|
305
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
306
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
307
|
+
*/
|
|
308
|
+
) => string | true;
|
|
309
|
+
DateBefore: (compareDate: string, customError: string) => (
|
|
310
|
+
/**
|
|
311
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
312
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
313
|
+
*/
|
|
314
|
+
value: any
|
|
315
|
+
/**
|
|
316
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
317
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
318
|
+
*/
|
|
319
|
+
) => string | true;
|
|
320
|
+
DateEqual: (compareDate: string, customError: string) => (
|
|
321
|
+
/**
|
|
322
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
323
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
324
|
+
*/
|
|
325
|
+
value: any
|
|
326
|
+
/**
|
|
327
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
328
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
329
|
+
*/
|
|
330
|
+
) => string | true;
|
|
331
|
+
};
|
|
332
|
+
decoration: object;
|
|
333
|
+
injectedClass: Record<string, string>;
|
|
334
|
+
}, __VLS_12: {
|
|
335
|
+
data: any;
|
|
336
|
+
formProvided: any;
|
|
337
|
+
isDisabled: boolean;
|
|
338
|
+
isReadonly: boolean;
|
|
339
|
+
rules: {
|
|
340
|
+
require: (customError?: string) => (
|
|
341
|
+
/**
|
|
342
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
343
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
344
|
+
*/
|
|
345
|
+
value: any
|
|
346
|
+
/**
|
|
347
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
348
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
349
|
+
*/
|
|
350
|
+
) => string | true;
|
|
351
|
+
requireIf: (conditionIf: boolean, customError?: string) => (
|
|
352
|
+
/**
|
|
353
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
354
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
355
|
+
*/
|
|
356
|
+
value: any
|
|
357
|
+
/**
|
|
358
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
359
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
360
|
+
*/
|
|
361
|
+
) => string | true;
|
|
362
|
+
requireTrue: (customError?: string) => (
|
|
363
|
+
/**
|
|
364
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
365
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
366
|
+
*/
|
|
367
|
+
value: any
|
|
368
|
+
/**
|
|
369
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
370
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
371
|
+
*/
|
|
372
|
+
) => string | true;
|
|
373
|
+
requireTrueIf: (conditionIf: boolean, customError?: string) => (
|
|
374
|
+
/**
|
|
375
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
376
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
377
|
+
*/
|
|
378
|
+
value: any
|
|
379
|
+
/**
|
|
380
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
381
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
382
|
+
*/
|
|
383
|
+
) => string | true;
|
|
384
|
+
numeric: (customError?: string) => (
|
|
385
|
+
/**
|
|
386
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
387
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
388
|
+
*/
|
|
389
|
+
value: any
|
|
390
|
+
/**
|
|
391
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
392
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
393
|
+
*/
|
|
394
|
+
) => string | true;
|
|
395
|
+
range: (minValue: number, maxValue: number, customError?: string) => (
|
|
396
|
+
/**
|
|
397
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
398
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
399
|
+
*/
|
|
400
|
+
value: any
|
|
401
|
+
/**
|
|
402
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
403
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
404
|
+
*/
|
|
405
|
+
) => string | true;
|
|
406
|
+
integer: (customError?: string) => (
|
|
407
|
+
/**
|
|
408
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
409
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
410
|
+
*/
|
|
411
|
+
value: any
|
|
412
|
+
/**
|
|
413
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
414
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
415
|
+
*/
|
|
416
|
+
) => string | true;
|
|
417
|
+
unique: (data: Array<any> | object, fieldName: string, customError?: string) => (
|
|
418
|
+
/**
|
|
419
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
420
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
421
|
+
*/
|
|
422
|
+
value: any
|
|
423
|
+
/**
|
|
424
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
425
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
426
|
+
*/
|
|
427
|
+
) => string | true;
|
|
428
|
+
length: (length: number, customError?: string) => (
|
|
429
|
+
/**
|
|
430
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
431
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
432
|
+
*/
|
|
433
|
+
value: any
|
|
434
|
+
/**
|
|
435
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
436
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
437
|
+
*/
|
|
438
|
+
) => string | true;
|
|
439
|
+
lengthGreater: (length: number, customError?: string) => (
|
|
440
|
+
/**
|
|
441
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
442
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
443
|
+
*/
|
|
444
|
+
value: any
|
|
445
|
+
/**
|
|
446
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
447
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
448
|
+
*/
|
|
449
|
+
) => string | true;
|
|
450
|
+
lengthLess: (length: number, customError?: string) => (
|
|
451
|
+
/**
|
|
452
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
453
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
454
|
+
*/
|
|
455
|
+
value: any
|
|
456
|
+
/**
|
|
457
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
458
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
459
|
+
*/
|
|
460
|
+
) => string | true;
|
|
461
|
+
telephone: (customError?: string) => (
|
|
462
|
+
/**
|
|
463
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
464
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
465
|
+
*/
|
|
466
|
+
value: any
|
|
467
|
+
/**
|
|
468
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
469
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
470
|
+
*/
|
|
471
|
+
) => string | true;
|
|
472
|
+
telephoneSingle: (customError?: string) => (
|
|
473
|
+
/**
|
|
474
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
475
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
476
|
+
*/
|
|
477
|
+
value: any
|
|
478
|
+
/**
|
|
479
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
480
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
481
|
+
*/
|
|
482
|
+
) => string | true;
|
|
483
|
+
internationalTelephone: (customError?: string) => (
|
|
484
|
+
/**
|
|
485
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
486
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
487
|
+
*/
|
|
488
|
+
value: any
|
|
489
|
+
/**
|
|
490
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
491
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
492
|
+
*/
|
|
493
|
+
) => string | true;
|
|
494
|
+
internationalTelephoneSingle: (customError?: string) => (
|
|
495
|
+
/**
|
|
496
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
497
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
498
|
+
*/
|
|
499
|
+
value: any
|
|
500
|
+
/**
|
|
501
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
502
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
503
|
+
*/
|
|
504
|
+
) => string | true;
|
|
505
|
+
mobilePhone: (customError?: string) => (
|
|
506
|
+
/**
|
|
507
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
508
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
509
|
+
*/
|
|
510
|
+
value: any
|
|
511
|
+
/**
|
|
512
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
513
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
514
|
+
*/
|
|
515
|
+
) => string | true;
|
|
516
|
+
mobilePhoneSingle: (customError?: string) => (
|
|
517
|
+
/**
|
|
518
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
519
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
520
|
+
*/
|
|
521
|
+
value: any
|
|
522
|
+
/**
|
|
523
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
524
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
525
|
+
*/
|
|
526
|
+
) => string | true;
|
|
527
|
+
email: (customError?: string) => (
|
|
528
|
+
/**
|
|
529
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
530
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
531
|
+
*/
|
|
532
|
+
value: any
|
|
533
|
+
/**
|
|
534
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
535
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
536
|
+
*/
|
|
537
|
+
) => string | true;
|
|
538
|
+
regex: (regex: RegExp | string, customError?: string) => (
|
|
539
|
+
/**
|
|
540
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
541
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
542
|
+
*/
|
|
543
|
+
value: any
|
|
544
|
+
/**
|
|
545
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
546
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
547
|
+
*/
|
|
548
|
+
) => string | true;
|
|
549
|
+
idcard: (customError?: string) => (
|
|
550
|
+
/**
|
|
551
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
552
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
553
|
+
*/
|
|
554
|
+
value: any
|
|
555
|
+
/**
|
|
556
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
557
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
558
|
+
*/
|
|
559
|
+
) => string | true;
|
|
560
|
+
DateFuture: (customError?: string) => (
|
|
561
|
+
/**
|
|
562
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
563
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
564
|
+
*/
|
|
565
|
+
value: any
|
|
566
|
+
/**
|
|
567
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
568
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
569
|
+
*/
|
|
570
|
+
) => string | true;
|
|
571
|
+
DatetimeFuture: (customError?: string) => (
|
|
572
|
+
/**
|
|
573
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
574
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
575
|
+
*/
|
|
576
|
+
value: any
|
|
577
|
+
/**
|
|
578
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
579
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
580
|
+
*/
|
|
581
|
+
) => string | true;
|
|
582
|
+
DateHappen: (customError?: string) => (
|
|
583
|
+
/**
|
|
584
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
585
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
586
|
+
*/
|
|
587
|
+
value: any
|
|
588
|
+
/**
|
|
589
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
590
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
591
|
+
*/
|
|
592
|
+
) => string | true;
|
|
593
|
+
DatetimeHappen: (customError?: string) => (
|
|
594
|
+
/**
|
|
595
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
596
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
597
|
+
*/
|
|
598
|
+
value: any
|
|
599
|
+
/**
|
|
600
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
601
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
602
|
+
*/
|
|
603
|
+
) => string | true;
|
|
604
|
+
DateAfter: (compareDate: string, customError: string) => (
|
|
605
|
+
/**
|
|
606
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
607
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
608
|
+
*/
|
|
609
|
+
value: any
|
|
610
|
+
/**
|
|
611
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
612
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
613
|
+
*/
|
|
614
|
+
) => string | true;
|
|
615
|
+
DateBefore: (compareDate: string, customError: string) => (
|
|
616
|
+
/**
|
|
617
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
618
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
619
|
+
*/
|
|
620
|
+
value: any
|
|
621
|
+
/**
|
|
622
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
623
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
624
|
+
*/
|
|
625
|
+
) => string | true;
|
|
626
|
+
DateEqual: (compareDate: string, customError: string) => (
|
|
627
|
+
/**
|
|
628
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
629
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
630
|
+
*/
|
|
631
|
+
value: any
|
|
632
|
+
/**
|
|
633
|
+
* FormPad is a schema-driven form field component that binds model data, renders field UI, and emits normalized updates.
|
|
634
|
+
* This doc block is consumed by vue-docgen for generated API documentation.
|
|
635
|
+
*/
|
|
636
|
+
) => string | true;
|
|
637
|
+
};
|
|
638
|
+
decoration: object;
|
|
639
|
+
injectedClass: Record<string, string>;
|
|
640
|
+
};
|
|
641
|
+
type __VLS_Slots = {} & {
|
|
642
|
+
default?: (props: typeof __VLS_10) => any;
|
|
643
|
+
} & {
|
|
644
|
+
default?: (props: typeof __VLS_12) => any;
|
|
645
|
+
};
|
|
646
|
+
declare const __VLS_base: import("vue").DefineComponent<Props, {
|
|
647
|
+
isValid: import("vue").ComputedRef<any>;
|
|
648
|
+
disabled: import("vue").Ref<boolean, boolean>;
|
|
649
|
+
readonly: import("vue").Ref<boolean, boolean>;
|
|
650
|
+
reset: typeof reset;
|
|
651
|
+
validate: typeof validate;
|
|
652
|
+
resetValidate: typeof resetValidate;
|
|
653
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
654
|
+
"update:modelValue": (...args: any[]) => void;
|
|
655
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
656
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
657
|
+
}>, {
|
|
658
|
+
disabled: boolean;
|
|
659
|
+
readonly: boolean;
|
|
660
|
+
parentTemplates: string | string[];
|
|
661
|
+
isolated: boolean;
|
|
662
|
+
decoration: object;
|
|
663
|
+
dirtyClass: string;
|
|
664
|
+
dirtyOnCreate: boolean;
|
|
665
|
+
sanitizeDelay: number;
|
|
666
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
667
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
668
|
+
declare const _default: typeof __VLS_export;
|
|
669
|
+
export default _default;
|
|
670
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
671
|
+
new (): {
|
|
672
|
+
$slots: S;
|
|
673
|
+
};
|
|
674
|
+
};
|