@shwfed/config 3.0.15 → 3.0.16
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/module.json +1 -1
- package/dist/runtime/components/actions/buttons/2026-06-25/com.shwfed.actions.button.state.write/config.d.vue.ts +8 -8
- package/dist/runtime/components/actions/buttons/2026-06-25/com.shwfed.actions.button.state.write/config.vue.d.ts +8 -8
- package/dist/runtime/components/form/fields/2026-04-22/com.shwfed.form.field.text/config.d.vue.ts +22 -22
- package/dist/runtime/components/form/fields/2026-04-22/com.shwfed.form.field.text/config.vue.d.ts +22 -22
- package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.combobox.single/config.d.vue.ts +16 -16
- package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.combobox.single/config.vue.d.ts +16 -16
- package/dist/runtime/components/form/fields/2026-04-27/com.shwfed.form.field.daterange/config.d.vue.ts +6 -6
- package/dist/runtime/components/form/fields/2026-04-27/com.shwfed.form.field.daterange/config.vue.d.ts +6 -6
- package/dist/runtime/components/form/fields/2026-04-27/com.shwfed.form.field.datetimerange/config.d.vue.ts +8 -8
- package/dist/runtime/components/form/fields/2026-04-27/com.shwfed.form.field.datetimerange/config.vue.d.ts +8 -8
- package/dist/runtime/components/form/fields/2026-04-27/com.shwfed.form.field.timerange/config.d.vue.ts +2 -2
- package/dist/runtime/components/form/fields/2026-04-27/com.shwfed.form.field.timerange/config.vue.d.ts +2 -2
- package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/config.d.vue.ts +22 -22
- package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/config.vue.d.ts +22 -22
- package/dist/runtime/components/form/fields/2026-05-13/com.shwfed.form.field.combobox.single.remote/config.d.vue.ts +16 -16
- package/dist/runtime/components/form/fields/2026-05-13/com.shwfed.form.field.combobox.single.remote/config.vue.d.ts +16 -16
- package/dist/runtime/components/form/fields/2026-05-24/com.shwfed.form.field.monthrange/config.d.vue.ts +6 -6
- package/dist/runtime/components/form/fields/2026-05-24/com.shwfed.form.field.monthrange/config.vue.d.ts +6 -6
- package/dist/runtime/components/form/fields/2026-05-25/com.shwfed.form.field.combobox.multi/config.d.vue.ts +16 -16
- package/dist/runtime/components/form/fields/2026-05-25/com.shwfed.form.field.combobox.multi/config.vue.d.ts +16 -16
- package/dist/runtime/components/form/utils/derived.js +1 -0
- package/dist/runtime/components/ui/date-picker/DatePickerInput.d.vue.ts +1 -1
- package/dist/runtime/components/ui/date-picker/DatePickerInput.vue.d.ts +1 -1
- package/dist/runtime/components/ui/date-picker/DatePickerTimeInput.d.vue.ts +1 -1
- package/dist/runtime/components/ui/date-picker/DatePickerTimeInput.vue.d.ts +1 -1
- package/dist/runtime/components/ui/date-range-picker/DateRangePickerInput.d.vue.ts +1 -1
- package/dist/runtime/components/ui/date-range-picker/DateRangePickerInput.vue.d.ts +1 -1
- package/dist/runtime/components/ui/date-range-picker/DateRangePickerTimeInput.d.vue.ts +2 -2
- package/dist/runtime/components/ui/date-range-picker/DateRangePickerTimeInput.vue.d.ts +2 -2
- package/package.json +1 -1
package/dist/module.json
CHANGED
|
@@ -13,14 +13,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
13
13
|
readonly target: string;
|
|
14
14
|
readonly operation: string;
|
|
15
15
|
}[] | undefined;
|
|
16
|
-
readonly requests?: readonly {
|
|
17
|
-
readonly id: string;
|
|
18
|
-
readonly request: string;
|
|
19
|
-
}[] | undefined;
|
|
20
16
|
readonly writes: readonly {
|
|
21
17
|
readonly path: string;
|
|
22
18
|
readonly value: string;
|
|
23
19
|
}[];
|
|
20
|
+
readonly requests?: readonly {
|
|
21
|
+
readonly id: string;
|
|
22
|
+
readonly request: string;
|
|
23
|
+
}[] | undefined;
|
|
24
24
|
}) => any;
|
|
25
25
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
26
26
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -33,14 +33,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
33
33
|
readonly target: string;
|
|
34
34
|
readonly operation: string;
|
|
35
35
|
}[] | undefined;
|
|
36
|
-
readonly requests?: readonly {
|
|
37
|
-
readonly id: string;
|
|
38
|
-
readonly request: string;
|
|
39
|
-
}[] | undefined;
|
|
40
36
|
readonly writes: readonly {
|
|
41
37
|
readonly path: string;
|
|
42
38
|
readonly value: string;
|
|
43
39
|
}[];
|
|
40
|
+
readonly requests?: readonly {
|
|
41
|
+
readonly id: string;
|
|
42
|
+
readonly request: string;
|
|
43
|
+
}[] | undefined;
|
|
44
44
|
}) => any) | undefined;
|
|
45
45
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
46
46
|
declare const _default: typeof __VLS_export;
|
|
@@ -13,14 +13,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
13
13
|
readonly target: string;
|
|
14
14
|
readonly operation: string;
|
|
15
15
|
}[] | undefined;
|
|
16
|
-
readonly requests?: readonly {
|
|
17
|
-
readonly id: string;
|
|
18
|
-
readonly request: string;
|
|
19
|
-
}[] | undefined;
|
|
20
16
|
readonly writes: readonly {
|
|
21
17
|
readonly path: string;
|
|
22
18
|
readonly value: string;
|
|
23
19
|
}[];
|
|
20
|
+
readonly requests?: readonly {
|
|
21
|
+
readonly id: string;
|
|
22
|
+
readonly request: string;
|
|
23
|
+
}[] | undefined;
|
|
24
24
|
}) => any;
|
|
25
25
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
26
26
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -33,14 +33,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
33
33
|
readonly target: string;
|
|
34
34
|
readonly operation: string;
|
|
35
35
|
}[] | undefined;
|
|
36
|
-
readonly requests?: readonly {
|
|
37
|
-
readonly id: string;
|
|
38
|
-
readonly request: string;
|
|
39
|
-
}[] | undefined;
|
|
40
36
|
readonly writes: readonly {
|
|
41
37
|
readonly path: string;
|
|
42
38
|
readonly value: string;
|
|
43
39
|
}[];
|
|
40
|
+
readonly requests?: readonly {
|
|
41
|
+
readonly id: string;
|
|
42
|
+
readonly request: string;
|
|
43
|
+
}[] | undefined;
|
|
44
44
|
}) => any) | undefined;
|
|
45
45
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
46
46
|
declare const _default: typeof __VLS_export;
|
package/dist/runtime/components/form/fields/2026-04-22/com.shwfed.form.field.text/config.d.vue.ts
CHANGED
|
@@ -39,17 +39,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
39
39
|
readonly mode: "formula" | "prefill";
|
|
40
40
|
readonly expression: string;
|
|
41
41
|
} | undefined;
|
|
42
|
-
readonly validations?: readonly {
|
|
43
|
-
readonly message: readonly [{
|
|
44
|
-
readonly locale: "zh";
|
|
45
|
-
readonly message: string;
|
|
46
|
-
}, ...{
|
|
47
|
-
readonly locale: "en" | "ja" | "ko";
|
|
48
|
-
readonly message: string;
|
|
49
|
-
}[]];
|
|
50
|
-
readonly warning?: boolean | undefined;
|
|
51
|
-
readonly when: string;
|
|
52
|
-
}[] | undefined;
|
|
53
42
|
readonly addon?: {
|
|
54
43
|
readonly size: "default" | "sm" | "xs";
|
|
55
44
|
readonly style?: string | undefined;
|
|
@@ -117,6 +106,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
117
106
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
118
107
|
}[];
|
|
119
108
|
} | undefined;
|
|
109
|
+
readonly validations?: readonly {
|
|
110
|
+
readonly message: readonly [{
|
|
111
|
+
readonly locale: "zh";
|
|
112
|
+
readonly message: string;
|
|
113
|
+
}, ...{
|
|
114
|
+
readonly locale: "en" | "ja" | "ko";
|
|
115
|
+
readonly message: string;
|
|
116
|
+
}[]];
|
|
117
|
+
readonly warning?: boolean | undefined;
|
|
118
|
+
readonly when: string;
|
|
119
|
+
}[] | undefined;
|
|
120
120
|
}) => any;
|
|
121
121
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
122
122
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -155,17 +155,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
155
155
|
readonly mode: "formula" | "prefill";
|
|
156
156
|
readonly expression: string;
|
|
157
157
|
} | undefined;
|
|
158
|
-
readonly validations?: readonly {
|
|
159
|
-
readonly message: readonly [{
|
|
160
|
-
readonly locale: "zh";
|
|
161
|
-
readonly message: string;
|
|
162
|
-
}, ...{
|
|
163
|
-
readonly locale: "en" | "ja" | "ko";
|
|
164
|
-
readonly message: string;
|
|
165
|
-
}[]];
|
|
166
|
-
readonly warning?: boolean | undefined;
|
|
167
|
-
readonly when: string;
|
|
168
|
-
}[] | undefined;
|
|
169
158
|
readonly addon?: {
|
|
170
159
|
readonly size: "default" | "sm" | "xs";
|
|
171
160
|
readonly style?: string | undefined;
|
|
@@ -233,6 +222,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
233
222
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
234
223
|
}[];
|
|
235
224
|
} | undefined;
|
|
225
|
+
readonly validations?: readonly {
|
|
226
|
+
readonly message: readonly [{
|
|
227
|
+
readonly locale: "zh";
|
|
228
|
+
readonly message: string;
|
|
229
|
+
}, ...{
|
|
230
|
+
readonly locale: "en" | "ja" | "ko";
|
|
231
|
+
readonly message: string;
|
|
232
|
+
}[]];
|
|
233
|
+
readonly warning?: boolean | undefined;
|
|
234
|
+
readonly when: string;
|
|
235
|
+
}[] | undefined;
|
|
236
236
|
}) => any) | undefined;
|
|
237
237
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
238
238
|
declare const _default: typeof __VLS_export;
|
package/dist/runtime/components/form/fields/2026-04-22/com.shwfed.form.field.text/config.vue.d.ts
CHANGED
|
@@ -39,17 +39,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
39
39
|
readonly mode: "formula" | "prefill";
|
|
40
40
|
readonly expression: string;
|
|
41
41
|
} | undefined;
|
|
42
|
-
readonly validations?: readonly {
|
|
43
|
-
readonly message: readonly [{
|
|
44
|
-
readonly locale: "zh";
|
|
45
|
-
readonly message: string;
|
|
46
|
-
}, ...{
|
|
47
|
-
readonly locale: "en" | "ja" | "ko";
|
|
48
|
-
readonly message: string;
|
|
49
|
-
}[]];
|
|
50
|
-
readonly warning?: boolean | undefined;
|
|
51
|
-
readonly when: string;
|
|
52
|
-
}[] | undefined;
|
|
53
42
|
readonly addon?: {
|
|
54
43
|
readonly size: "default" | "sm" | "xs";
|
|
55
44
|
readonly style?: string | undefined;
|
|
@@ -117,6 +106,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
117
106
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
118
107
|
}[];
|
|
119
108
|
} | undefined;
|
|
109
|
+
readonly validations?: readonly {
|
|
110
|
+
readonly message: readonly [{
|
|
111
|
+
readonly locale: "zh";
|
|
112
|
+
readonly message: string;
|
|
113
|
+
}, ...{
|
|
114
|
+
readonly locale: "en" | "ja" | "ko";
|
|
115
|
+
readonly message: string;
|
|
116
|
+
}[]];
|
|
117
|
+
readonly warning?: boolean | undefined;
|
|
118
|
+
readonly when: string;
|
|
119
|
+
}[] | undefined;
|
|
120
120
|
}) => any;
|
|
121
121
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
122
122
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -155,17 +155,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
155
155
|
readonly mode: "formula" | "prefill";
|
|
156
156
|
readonly expression: string;
|
|
157
157
|
} | undefined;
|
|
158
|
-
readonly validations?: readonly {
|
|
159
|
-
readonly message: readonly [{
|
|
160
|
-
readonly locale: "zh";
|
|
161
|
-
readonly message: string;
|
|
162
|
-
}, ...{
|
|
163
|
-
readonly locale: "en" | "ja" | "ko";
|
|
164
|
-
readonly message: string;
|
|
165
|
-
}[]];
|
|
166
|
-
readonly warning?: boolean | undefined;
|
|
167
|
-
readonly when: string;
|
|
168
|
-
}[] | undefined;
|
|
169
158
|
readonly addon?: {
|
|
170
159
|
readonly size: "default" | "sm" | "xs";
|
|
171
160
|
readonly style?: string | undefined;
|
|
@@ -233,6 +222,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
233
222
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
234
223
|
}[];
|
|
235
224
|
} | undefined;
|
|
225
|
+
readonly validations?: readonly {
|
|
226
|
+
readonly message: readonly [{
|
|
227
|
+
readonly locale: "zh";
|
|
228
|
+
readonly message: string;
|
|
229
|
+
}, ...{
|
|
230
|
+
readonly locale: "en" | "ja" | "ko";
|
|
231
|
+
readonly message: string;
|
|
232
|
+
}[]];
|
|
233
|
+
readonly warning?: boolean | undefined;
|
|
234
|
+
readonly when: string;
|
|
235
|
+
}[] | undefined;
|
|
236
236
|
}) => any) | undefined;
|
|
237
237
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
238
238
|
declare const _default: typeof __VLS_export;
|
|
@@ -40,14 +40,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
40
40
|
readonly mode: "formula" | "prefill";
|
|
41
41
|
readonly expression: string;
|
|
42
42
|
} | undefined;
|
|
43
|
-
readonly optionValue: string;
|
|
44
|
-
readonly optionLabel: readonly [{
|
|
45
|
-
readonly locale: "zh";
|
|
46
|
-
readonly message: string;
|
|
47
|
-
}, ...{
|
|
48
|
-
readonly locale: "en" | "ja" | "ko";
|
|
49
|
-
readonly message: string;
|
|
50
|
-
}[]];
|
|
51
43
|
readonly validations?: readonly {
|
|
52
44
|
readonly message: readonly [{
|
|
53
45
|
readonly locale: "zh";
|
|
@@ -59,6 +51,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
59
51
|
readonly warning?: boolean | undefined;
|
|
60
52
|
readonly when: string;
|
|
61
53
|
}[] | undefined;
|
|
54
|
+
readonly optionValue: string;
|
|
55
|
+
readonly optionLabel: readonly [{
|
|
56
|
+
readonly locale: "zh";
|
|
57
|
+
readonly message: string;
|
|
58
|
+
}, ...{
|
|
59
|
+
readonly locale: "en" | "ja" | "ko";
|
|
60
|
+
readonly message: string;
|
|
61
|
+
}[]];
|
|
62
62
|
}) => any;
|
|
63
63
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
64
64
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -98,14 +98,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
98
98
|
readonly mode: "formula" | "prefill";
|
|
99
99
|
readonly expression: string;
|
|
100
100
|
} | undefined;
|
|
101
|
-
readonly optionValue: string;
|
|
102
|
-
readonly optionLabel: readonly [{
|
|
103
|
-
readonly locale: "zh";
|
|
104
|
-
readonly message: string;
|
|
105
|
-
}, ...{
|
|
106
|
-
readonly locale: "en" | "ja" | "ko";
|
|
107
|
-
readonly message: string;
|
|
108
|
-
}[]];
|
|
109
101
|
readonly validations?: readonly {
|
|
110
102
|
readonly message: readonly [{
|
|
111
103
|
readonly locale: "zh";
|
|
@@ -117,6 +109,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
117
109
|
readonly warning?: boolean | undefined;
|
|
118
110
|
readonly when: string;
|
|
119
111
|
}[] | undefined;
|
|
112
|
+
readonly optionValue: string;
|
|
113
|
+
readonly optionLabel: readonly [{
|
|
114
|
+
readonly locale: "zh";
|
|
115
|
+
readonly message: string;
|
|
116
|
+
}, ...{
|
|
117
|
+
readonly locale: "en" | "ja" | "ko";
|
|
118
|
+
readonly message: string;
|
|
119
|
+
}[]];
|
|
120
120
|
}) => any) | undefined;
|
|
121
121
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
122
122
|
declare const _default: typeof __VLS_export;
|
|
@@ -40,14 +40,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
40
40
|
readonly mode: "formula" | "prefill";
|
|
41
41
|
readonly expression: string;
|
|
42
42
|
} | undefined;
|
|
43
|
-
readonly optionValue: string;
|
|
44
|
-
readonly optionLabel: readonly [{
|
|
45
|
-
readonly locale: "zh";
|
|
46
|
-
readonly message: string;
|
|
47
|
-
}, ...{
|
|
48
|
-
readonly locale: "en" | "ja" | "ko";
|
|
49
|
-
readonly message: string;
|
|
50
|
-
}[]];
|
|
51
43
|
readonly validations?: readonly {
|
|
52
44
|
readonly message: readonly [{
|
|
53
45
|
readonly locale: "zh";
|
|
@@ -59,6 +51,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
59
51
|
readonly warning?: boolean | undefined;
|
|
60
52
|
readonly when: string;
|
|
61
53
|
}[] | undefined;
|
|
54
|
+
readonly optionValue: string;
|
|
55
|
+
readonly optionLabel: readonly [{
|
|
56
|
+
readonly locale: "zh";
|
|
57
|
+
readonly message: string;
|
|
58
|
+
}, ...{
|
|
59
|
+
readonly locale: "en" | "ja" | "ko";
|
|
60
|
+
readonly message: string;
|
|
61
|
+
}[]];
|
|
62
62
|
}) => any;
|
|
63
63
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
64
64
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -98,14 +98,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
98
98
|
readonly mode: "formula" | "prefill";
|
|
99
99
|
readonly expression: string;
|
|
100
100
|
} | undefined;
|
|
101
|
-
readonly optionValue: string;
|
|
102
|
-
readonly optionLabel: readonly [{
|
|
103
|
-
readonly locale: "zh";
|
|
104
|
-
readonly message: string;
|
|
105
|
-
}, ...{
|
|
106
|
-
readonly locale: "en" | "ja" | "ko";
|
|
107
|
-
readonly message: string;
|
|
108
|
-
}[]];
|
|
109
101
|
readonly validations?: readonly {
|
|
110
102
|
readonly message: readonly [{
|
|
111
103
|
readonly locale: "zh";
|
|
@@ -117,6 +109,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
117
109
|
readonly warning?: boolean | undefined;
|
|
118
110
|
readonly when: string;
|
|
119
111
|
}[] | undefined;
|
|
112
|
+
readonly optionValue: string;
|
|
113
|
+
readonly optionLabel: readonly [{
|
|
114
|
+
readonly locale: "zh";
|
|
115
|
+
readonly message: string;
|
|
116
|
+
}, ...{
|
|
117
|
+
readonly locale: "en" | "ja" | "ko";
|
|
118
|
+
readonly message: string;
|
|
119
|
+
}[]];
|
|
120
120
|
}) => any) | undefined;
|
|
121
121
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
122
122
|
declare const _default: typeof __VLS_export;
|
|
@@ -33,8 +33,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
33
33
|
readonly expression: string;
|
|
34
34
|
} | undefined;
|
|
35
35
|
readonly numberOfMonths?: number | undefined;
|
|
36
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
37
36
|
readonly format?: string | undefined;
|
|
37
|
+
readonly valueFormat?: string | undefined;
|
|
38
|
+
readonly disabledDate?: string | undefined;
|
|
39
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
38
40
|
readonly startPlaceholder?: readonly [{
|
|
39
41
|
readonly locale: "zh";
|
|
40
42
|
readonly message: string;
|
|
@@ -49,8 +51,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
49
51
|
readonly locale: "en" | "ja" | "ko";
|
|
50
52
|
readonly message: string;
|
|
51
53
|
}[]] | undefined;
|
|
52
|
-
readonly valueFormat?: string | undefined;
|
|
53
|
-
readonly disabledDate?: string | undefined;
|
|
54
54
|
readonly validations?: readonly {
|
|
55
55
|
readonly message: readonly [{
|
|
56
56
|
readonly locale: "zh";
|
|
@@ -106,8 +106,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
106
106
|
readonly expression: string;
|
|
107
107
|
} | undefined;
|
|
108
108
|
readonly numberOfMonths?: number | undefined;
|
|
109
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
110
109
|
readonly format?: string | undefined;
|
|
110
|
+
readonly valueFormat?: string | undefined;
|
|
111
|
+
readonly disabledDate?: string | undefined;
|
|
112
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
111
113
|
readonly startPlaceholder?: readonly [{
|
|
112
114
|
readonly locale: "zh";
|
|
113
115
|
readonly message: string;
|
|
@@ -122,8 +124,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
122
124
|
readonly locale: "en" | "ja" | "ko";
|
|
123
125
|
readonly message: string;
|
|
124
126
|
}[]] | undefined;
|
|
125
|
-
readonly valueFormat?: string | undefined;
|
|
126
|
-
readonly disabledDate?: string | undefined;
|
|
127
127
|
readonly validations?: readonly {
|
|
128
128
|
readonly message: readonly [{
|
|
129
129
|
readonly locale: "zh";
|
|
@@ -33,8 +33,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
33
33
|
readonly expression: string;
|
|
34
34
|
} | undefined;
|
|
35
35
|
readonly numberOfMonths?: number | undefined;
|
|
36
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
37
36
|
readonly format?: string | undefined;
|
|
37
|
+
readonly valueFormat?: string | undefined;
|
|
38
|
+
readonly disabledDate?: string | undefined;
|
|
39
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
38
40
|
readonly startPlaceholder?: readonly [{
|
|
39
41
|
readonly locale: "zh";
|
|
40
42
|
readonly message: string;
|
|
@@ -49,8 +51,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
49
51
|
readonly locale: "en" | "ja" | "ko";
|
|
50
52
|
readonly message: string;
|
|
51
53
|
}[]] | undefined;
|
|
52
|
-
readonly valueFormat?: string | undefined;
|
|
53
|
-
readonly disabledDate?: string | undefined;
|
|
54
54
|
readonly validations?: readonly {
|
|
55
55
|
readonly message: readonly [{
|
|
56
56
|
readonly locale: "zh";
|
|
@@ -106,8 +106,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
106
106
|
readonly expression: string;
|
|
107
107
|
} | undefined;
|
|
108
108
|
readonly numberOfMonths?: number | undefined;
|
|
109
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
110
109
|
readonly format?: string | undefined;
|
|
110
|
+
readonly valueFormat?: string | undefined;
|
|
111
|
+
readonly disabledDate?: string | undefined;
|
|
112
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
111
113
|
readonly startPlaceholder?: readonly [{
|
|
112
114
|
readonly locale: "zh";
|
|
113
115
|
readonly message: string;
|
|
@@ -122,8 +124,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
122
124
|
readonly locale: "en" | "ja" | "ko";
|
|
123
125
|
readonly message: string;
|
|
124
126
|
}[]] | undefined;
|
|
125
|
-
readonly valueFormat?: string | undefined;
|
|
126
|
-
readonly disabledDate?: string | undefined;
|
|
127
127
|
readonly validations?: readonly {
|
|
128
128
|
readonly message: readonly [{
|
|
129
129
|
readonly locale: "zh";
|
|
@@ -34,8 +34,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
34
34
|
} | undefined;
|
|
35
35
|
readonly numberOfMonths?: number | undefined;
|
|
36
36
|
readonly hourCycle?: 12 | 24 | undefined;
|
|
37
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
38
37
|
readonly format?: string | undefined;
|
|
38
|
+
readonly valueFormat?: string | undefined;
|
|
39
|
+
readonly disabledDate?: string | undefined;
|
|
40
|
+
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
41
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
39
42
|
readonly startPlaceholder?: readonly [{
|
|
40
43
|
readonly locale: "zh";
|
|
41
44
|
readonly message: string;
|
|
@@ -50,9 +53,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
50
53
|
readonly locale: "en" | "ja" | "ko";
|
|
51
54
|
readonly message: string;
|
|
52
55
|
}[]] | undefined;
|
|
53
|
-
readonly valueFormat?: string | undefined;
|
|
54
|
-
readonly disabledDate?: string | undefined;
|
|
55
|
-
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
56
56
|
readonly validations?: readonly {
|
|
57
57
|
readonly message: readonly [{
|
|
58
58
|
readonly locale: "zh";
|
|
@@ -109,8 +109,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
readonly numberOfMonths?: number | undefined;
|
|
111
111
|
readonly hourCycle?: 12 | 24 | undefined;
|
|
112
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
113
112
|
readonly format?: string | undefined;
|
|
113
|
+
readonly valueFormat?: string | undefined;
|
|
114
|
+
readonly disabledDate?: string | undefined;
|
|
115
|
+
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
116
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
114
117
|
readonly startPlaceholder?: readonly [{
|
|
115
118
|
readonly locale: "zh";
|
|
116
119
|
readonly message: string;
|
|
@@ -125,9 +128,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
125
128
|
readonly locale: "en" | "ja" | "ko";
|
|
126
129
|
readonly message: string;
|
|
127
130
|
}[]] | undefined;
|
|
128
|
-
readonly valueFormat?: string | undefined;
|
|
129
|
-
readonly disabledDate?: string | undefined;
|
|
130
|
-
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
131
131
|
readonly validations?: readonly {
|
|
132
132
|
readonly message: readonly [{
|
|
133
133
|
readonly locale: "zh";
|
|
@@ -34,8 +34,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
34
34
|
} | undefined;
|
|
35
35
|
readonly numberOfMonths?: number | undefined;
|
|
36
36
|
readonly hourCycle?: 12 | 24 | undefined;
|
|
37
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
38
37
|
readonly format?: string | undefined;
|
|
38
|
+
readonly valueFormat?: string | undefined;
|
|
39
|
+
readonly disabledDate?: string | undefined;
|
|
40
|
+
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
41
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
39
42
|
readonly startPlaceholder?: readonly [{
|
|
40
43
|
readonly locale: "zh";
|
|
41
44
|
readonly message: string;
|
|
@@ -50,9 +53,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
50
53
|
readonly locale: "en" | "ja" | "ko";
|
|
51
54
|
readonly message: string;
|
|
52
55
|
}[]] | undefined;
|
|
53
|
-
readonly valueFormat?: string | undefined;
|
|
54
|
-
readonly disabledDate?: string | undefined;
|
|
55
|
-
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
56
56
|
readonly validations?: readonly {
|
|
57
57
|
readonly message: readonly [{
|
|
58
58
|
readonly locale: "zh";
|
|
@@ -109,8 +109,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
109
109
|
} | undefined;
|
|
110
110
|
readonly numberOfMonths?: number | undefined;
|
|
111
111
|
readonly hourCycle?: 12 | 24 | undefined;
|
|
112
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
113
112
|
readonly format?: string | undefined;
|
|
113
|
+
readonly valueFormat?: string | undefined;
|
|
114
|
+
readonly disabledDate?: string | undefined;
|
|
115
|
+
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
116
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
114
117
|
readonly startPlaceholder?: readonly [{
|
|
115
118
|
readonly locale: "zh";
|
|
116
119
|
readonly message: string;
|
|
@@ -125,9 +128,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
125
128
|
readonly locale: "en" | "ja" | "ko";
|
|
126
129
|
readonly message: string;
|
|
127
130
|
}[]] | undefined;
|
|
128
|
-
readonly valueFormat?: string | undefined;
|
|
129
|
-
readonly disabledDate?: string | undefined;
|
|
130
|
-
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
131
131
|
readonly validations?: readonly {
|
|
132
132
|
readonly message: readonly [{
|
|
133
133
|
readonly locale: "zh";
|
|
@@ -33,9 +33,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
33
33
|
readonly expression: string;
|
|
34
34
|
} | undefined;
|
|
35
35
|
readonly hourCycle?: 12 | 24 | undefined;
|
|
36
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
37
36
|
readonly valueFormat?: string | undefined;
|
|
38
37
|
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
38
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
39
39
|
readonly validations?: readonly {
|
|
40
40
|
readonly message: readonly [{
|
|
41
41
|
readonly locale: "zh";
|
|
@@ -79,9 +79,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
79
79
|
readonly expression: string;
|
|
80
80
|
} | undefined;
|
|
81
81
|
readonly hourCycle?: 12 | 24 | undefined;
|
|
82
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
83
82
|
readonly valueFormat?: string | undefined;
|
|
84
83
|
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
84
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
85
85
|
readonly validations?: readonly {
|
|
86
86
|
readonly message: readonly [{
|
|
87
87
|
readonly locale: "zh";
|
|
@@ -33,9 +33,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
33
33
|
readonly expression: string;
|
|
34
34
|
} | undefined;
|
|
35
35
|
readonly hourCycle?: 12 | 24 | undefined;
|
|
36
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
37
36
|
readonly valueFormat?: string | undefined;
|
|
38
37
|
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
38
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
39
39
|
readonly validations?: readonly {
|
|
40
40
|
readonly message: readonly [{
|
|
41
41
|
readonly locale: "zh";
|
|
@@ -79,9 +79,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
79
79
|
readonly expression: string;
|
|
80
80
|
} | undefined;
|
|
81
81
|
readonly hourCycle?: 12 | 24 | undefined;
|
|
82
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
83
82
|
readonly valueFormat?: string | undefined;
|
|
84
83
|
readonly timeGranularity?: "second" | "minute" | "hour" | undefined;
|
|
84
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
85
85
|
readonly validations?: readonly {
|
|
86
86
|
readonly message: readonly [{
|
|
87
87
|
readonly locale: "zh";
|
package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/config.d.vue.ts
CHANGED
|
@@ -42,17 +42,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
42
42
|
readonly mode: "formula" | "prefill";
|
|
43
43
|
readonly expression: string;
|
|
44
44
|
} | undefined;
|
|
45
|
-
readonly validations?: readonly {
|
|
46
|
-
readonly message: readonly [{
|
|
47
|
-
readonly locale: "zh";
|
|
48
|
-
readonly message: string;
|
|
49
|
-
}, ...{
|
|
50
|
-
readonly locale: "en" | "ja" | "ko";
|
|
51
|
-
readonly message: string;
|
|
52
|
-
}[]];
|
|
53
|
-
readonly warning?: boolean | undefined;
|
|
54
|
-
readonly when: string;
|
|
55
|
-
}[] | undefined;
|
|
56
45
|
readonly addon?: {
|
|
57
46
|
readonly size: "default" | "sm" | "xs";
|
|
58
47
|
readonly style?: string | undefined;
|
|
@@ -120,6 +109,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
120
109
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
121
110
|
}[];
|
|
122
111
|
} | undefined;
|
|
112
|
+
readonly validations?: readonly {
|
|
113
|
+
readonly message: readonly [{
|
|
114
|
+
readonly locale: "zh";
|
|
115
|
+
readonly message: string;
|
|
116
|
+
}, ...{
|
|
117
|
+
readonly locale: "en" | "ja" | "ko";
|
|
118
|
+
readonly message: string;
|
|
119
|
+
}[]];
|
|
120
|
+
readonly warning?: boolean | undefined;
|
|
121
|
+
readonly when: string;
|
|
122
|
+
}[] | undefined;
|
|
123
123
|
readonly precision?: number | undefined;
|
|
124
124
|
readonly roundingMode?: "round" | "floor" | "ceil" | undefined;
|
|
125
125
|
readonly valueAsString?: boolean | undefined;
|
|
@@ -165,17 +165,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
165
165
|
readonly mode: "formula" | "prefill";
|
|
166
166
|
readonly expression: string;
|
|
167
167
|
} | undefined;
|
|
168
|
-
readonly validations?: readonly {
|
|
169
|
-
readonly message: readonly [{
|
|
170
|
-
readonly locale: "zh";
|
|
171
|
-
readonly message: string;
|
|
172
|
-
}, ...{
|
|
173
|
-
readonly locale: "en" | "ja" | "ko";
|
|
174
|
-
readonly message: string;
|
|
175
|
-
}[]];
|
|
176
|
-
readonly warning?: boolean | undefined;
|
|
177
|
-
readonly when: string;
|
|
178
|
-
}[] | undefined;
|
|
179
168
|
readonly addon?: {
|
|
180
169
|
readonly size: "default" | "sm" | "xs";
|
|
181
170
|
readonly style?: string | undefined;
|
|
@@ -243,6 +232,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
243
232
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
244
233
|
}[];
|
|
245
234
|
} | undefined;
|
|
235
|
+
readonly validations?: readonly {
|
|
236
|
+
readonly message: readonly [{
|
|
237
|
+
readonly locale: "zh";
|
|
238
|
+
readonly message: string;
|
|
239
|
+
}, ...{
|
|
240
|
+
readonly locale: "en" | "ja" | "ko";
|
|
241
|
+
readonly message: string;
|
|
242
|
+
}[]];
|
|
243
|
+
readonly warning?: boolean | undefined;
|
|
244
|
+
readonly when: string;
|
|
245
|
+
}[] | undefined;
|
|
246
246
|
readonly precision?: number | undefined;
|
|
247
247
|
readonly roundingMode?: "round" | "floor" | "ceil" | undefined;
|
|
248
248
|
readonly valueAsString?: boolean | undefined;
|
package/dist/runtime/components/form/fields/2026-04-28/com.shwfed.form.field.number/config.vue.d.ts
CHANGED
|
@@ -42,17 +42,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
42
42
|
readonly mode: "formula" | "prefill";
|
|
43
43
|
readonly expression: string;
|
|
44
44
|
} | undefined;
|
|
45
|
-
readonly validations?: readonly {
|
|
46
|
-
readonly message: readonly [{
|
|
47
|
-
readonly locale: "zh";
|
|
48
|
-
readonly message: string;
|
|
49
|
-
}, ...{
|
|
50
|
-
readonly locale: "en" | "ja" | "ko";
|
|
51
|
-
readonly message: string;
|
|
52
|
-
}[]];
|
|
53
|
-
readonly warning?: boolean | undefined;
|
|
54
|
-
readonly when: string;
|
|
55
|
-
}[] | undefined;
|
|
56
45
|
readonly addon?: {
|
|
57
46
|
readonly size: "default" | "sm" | "xs";
|
|
58
47
|
readonly style?: string | undefined;
|
|
@@ -120,6 +109,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
120
109
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
121
110
|
}[];
|
|
122
111
|
} | undefined;
|
|
112
|
+
readonly validations?: readonly {
|
|
113
|
+
readonly message: readonly [{
|
|
114
|
+
readonly locale: "zh";
|
|
115
|
+
readonly message: string;
|
|
116
|
+
}, ...{
|
|
117
|
+
readonly locale: "en" | "ja" | "ko";
|
|
118
|
+
readonly message: string;
|
|
119
|
+
}[]];
|
|
120
|
+
readonly warning?: boolean | undefined;
|
|
121
|
+
readonly when: string;
|
|
122
|
+
}[] | undefined;
|
|
123
123
|
readonly precision?: number | undefined;
|
|
124
124
|
readonly roundingMode?: "round" | "floor" | "ceil" | undefined;
|
|
125
125
|
readonly valueAsString?: boolean | undefined;
|
|
@@ -165,17 +165,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
165
165
|
readonly mode: "formula" | "prefill";
|
|
166
166
|
readonly expression: string;
|
|
167
167
|
} | undefined;
|
|
168
|
-
readonly validations?: readonly {
|
|
169
|
-
readonly message: readonly [{
|
|
170
|
-
readonly locale: "zh";
|
|
171
|
-
readonly message: string;
|
|
172
|
-
}, ...{
|
|
173
|
-
readonly locale: "en" | "ja" | "ko";
|
|
174
|
-
readonly message: string;
|
|
175
|
-
}[]];
|
|
176
|
-
readonly warning?: boolean | undefined;
|
|
177
|
-
readonly when: string;
|
|
178
|
-
}[] | undefined;
|
|
179
168
|
readonly addon?: {
|
|
180
169
|
readonly size: "default" | "sm" | "xs";
|
|
181
170
|
readonly style?: string | undefined;
|
|
@@ -243,6 +232,17 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
243
232
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
244
233
|
}[];
|
|
245
234
|
} | undefined;
|
|
235
|
+
readonly validations?: readonly {
|
|
236
|
+
readonly message: readonly [{
|
|
237
|
+
readonly locale: "zh";
|
|
238
|
+
readonly message: string;
|
|
239
|
+
}, ...{
|
|
240
|
+
readonly locale: "en" | "ja" | "ko";
|
|
241
|
+
readonly message: string;
|
|
242
|
+
}[]];
|
|
243
|
+
readonly warning?: boolean | undefined;
|
|
244
|
+
readonly when: string;
|
|
245
|
+
}[] | undefined;
|
|
246
246
|
readonly precision?: number | undefined;
|
|
247
247
|
readonly roundingMode?: "round" | "floor" | "ceil" | undefined;
|
|
248
248
|
readonly valueAsString?: boolean | undefined;
|
|
@@ -41,14 +41,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
41
41
|
readonly mode: "formula" | "prefill";
|
|
42
42
|
readonly expression: string;
|
|
43
43
|
} | undefined;
|
|
44
|
-
readonly optionValue: string;
|
|
45
|
-
readonly optionLabel: readonly [{
|
|
46
|
-
readonly locale: "zh";
|
|
47
|
-
readonly message: string;
|
|
48
|
-
}, ...{
|
|
49
|
-
readonly locale: "en" | "ja" | "ko";
|
|
50
|
-
readonly message: string;
|
|
51
|
-
}[]];
|
|
52
44
|
readonly validations?: readonly {
|
|
53
45
|
readonly message: readonly [{
|
|
54
46
|
readonly locale: "zh";
|
|
@@ -60,6 +52,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
60
52
|
readonly warning?: boolean | undefined;
|
|
61
53
|
readonly when: string;
|
|
62
54
|
}[] | undefined;
|
|
55
|
+
readonly optionValue: string;
|
|
56
|
+
readonly optionLabel: readonly [{
|
|
57
|
+
readonly locale: "zh";
|
|
58
|
+
readonly message: string;
|
|
59
|
+
}, ...{
|
|
60
|
+
readonly locale: "en" | "ja" | "ko";
|
|
61
|
+
readonly message: string;
|
|
62
|
+
}[]];
|
|
63
63
|
}) => any;
|
|
64
64
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
65
65
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -100,14 +100,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
100
100
|
readonly mode: "formula" | "prefill";
|
|
101
101
|
readonly expression: string;
|
|
102
102
|
} | undefined;
|
|
103
|
-
readonly optionValue: string;
|
|
104
|
-
readonly optionLabel: readonly [{
|
|
105
|
-
readonly locale: "zh";
|
|
106
|
-
readonly message: string;
|
|
107
|
-
}, ...{
|
|
108
|
-
readonly locale: "en" | "ja" | "ko";
|
|
109
|
-
readonly message: string;
|
|
110
|
-
}[]];
|
|
111
103
|
readonly validations?: readonly {
|
|
112
104
|
readonly message: readonly [{
|
|
113
105
|
readonly locale: "zh";
|
|
@@ -119,6 +111,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
119
111
|
readonly warning?: boolean | undefined;
|
|
120
112
|
readonly when: string;
|
|
121
113
|
}[] | undefined;
|
|
114
|
+
readonly optionValue: string;
|
|
115
|
+
readonly optionLabel: readonly [{
|
|
116
|
+
readonly locale: "zh";
|
|
117
|
+
readonly message: string;
|
|
118
|
+
}, ...{
|
|
119
|
+
readonly locale: "en" | "ja" | "ko";
|
|
120
|
+
readonly message: string;
|
|
121
|
+
}[]];
|
|
122
122
|
}) => any) | undefined;
|
|
123
123
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
124
124
|
declare const _default: typeof __VLS_export;
|
|
@@ -41,14 +41,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
41
41
|
readonly mode: "formula" | "prefill";
|
|
42
42
|
readonly expression: string;
|
|
43
43
|
} | undefined;
|
|
44
|
-
readonly optionValue: string;
|
|
45
|
-
readonly optionLabel: readonly [{
|
|
46
|
-
readonly locale: "zh";
|
|
47
|
-
readonly message: string;
|
|
48
|
-
}, ...{
|
|
49
|
-
readonly locale: "en" | "ja" | "ko";
|
|
50
|
-
readonly message: string;
|
|
51
|
-
}[]];
|
|
52
44
|
readonly validations?: readonly {
|
|
53
45
|
readonly message: readonly [{
|
|
54
46
|
readonly locale: "zh";
|
|
@@ -60,6 +52,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
60
52
|
readonly warning?: boolean | undefined;
|
|
61
53
|
readonly when: string;
|
|
62
54
|
}[] | undefined;
|
|
55
|
+
readonly optionValue: string;
|
|
56
|
+
readonly optionLabel: readonly [{
|
|
57
|
+
readonly locale: "zh";
|
|
58
|
+
readonly message: string;
|
|
59
|
+
}, ...{
|
|
60
|
+
readonly locale: "en" | "ja" | "ko";
|
|
61
|
+
readonly message: string;
|
|
62
|
+
}[]];
|
|
63
63
|
}) => any;
|
|
64
64
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
65
65
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -100,14 +100,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
100
100
|
readonly mode: "formula" | "prefill";
|
|
101
101
|
readonly expression: string;
|
|
102
102
|
} | undefined;
|
|
103
|
-
readonly optionValue: string;
|
|
104
|
-
readonly optionLabel: readonly [{
|
|
105
|
-
readonly locale: "zh";
|
|
106
|
-
readonly message: string;
|
|
107
|
-
}, ...{
|
|
108
|
-
readonly locale: "en" | "ja" | "ko";
|
|
109
|
-
readonly message: string;
|
|
110
|
-
}[]];
|
|
111
103
|
readonly validations?: readonly {
|
|
112
104
|
readonly message: readonly [{
|
|
113
105
|
readonly locale: "zh";
|
|
@@ -119,6 +111,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
119
111
|
readonly warning?: boolean | undefined;
|
|
120
112
|
readonly when: string;
|
|
121
113
|
}[] | undefined;
|
|
114
|
+
readonly optionValue: string;
|
|
115
|
+
readonly optionLabel: readonly [{
|
|
116
|
+
readonly locale: "zh";
|
|
117
|
+
readonly message: string;
|
|
118
|
+
}, ...{
|
|
119
|
+
readonly locale: "en" | "ja" | "ko";
|
|
120
|
+
readonly message: string;
|
|
121
|
+
}[]];
|
|
122
122
|
}) => any) | undefined;
|
|
123
123
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
124
124
|
declare const _default: typeof __VLS_export;
|
|
@@ -32,8 +32,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
32
32
|
readonly mode: "formula" | "prefill";
|
|
33
33
|
readonly expression: string;
|
|
34
34
|
} | undefined;
|
|
35
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
36
35
|
readonly format?: string | undefined;
|
|
36
|
+
readonly valueFormat?: string | undefined;
|
|
37
|
+
readonly disabledDate?: string | undefined;
|
|
38
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
37
39
|
readonly startPlaceholder?: readonly [{
|
|
38
40
|
readonly locale: "zh";
|
|
39
41
|
readonly message: string;
|
|
@@ -48,8 +50,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
48
50
|
readonly locale: "en" | "ja" | "ko";
|
|
49
51
|
readonly message: string;
|
|
50
52
|
}[]] | undefined;
|
|
51
|
-
readonly valueFormat?: string | undefined;
|
|
52
|
-
readonly disabledDate?: string | undefined;
|
|
53
53
|
readonly validations?: readonly {
|
|
54
54
|
readonly message: readonly [{
|
|
55
55
|
readonly locale: "zh";
|
|
@@ -104,8 +104,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
104
104
|
readonly mode: "formula" | "prefill";
|
|
105
105
|
readonly expression: string;
|
|
106
106
|
} | undefined;
|
|
107
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
108
107
|
readonly format?: string | undefined;
|
|
108
|
+
readonly valueFormat?: string | undefined;
|
|
109
|
+
readonly disabledDate?: string | undefined;
|
|
110
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
109
111
|
readonly startPlaceholder?: readonly [{
|
|
110
112
|
readonly locale: "zh";
|
|
111
113
|
readonly message: string;
|
|
@@ -120,8 +122,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
120
122
|
readonly locale: "en" | "ja" | "ko";
|
|
121
123
|
readonly message: string;
|
|
122
124
|
}[]] | undefined;
|
|
123
|
-
readonly valueFormat?: string | undefined;
|
|
124
|
-
readonly disabledDate?: string | undefined;
|
|
125
125
|
readonly validations?: readonly {
|
|
126
126
|
readonly message: readonly [{
|
|
127
127
|
readonly locale: "zh";
|
|
@@ -32,8 +32,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
32
32
|
readonly mode: "formula" | "prefill";
|
|
33
33
|
readonly expression: string;
|
|
34
34
|
} | undefined;
|
|
35
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
36
35
|
readonly format?: string | undefined;
|
|
36
|
+
readonly valueFormat?: string | undefined;
|
|
37
|
+
readonly disabledDate?: string | undefined;
|
|
38
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
37
39
|
readonly startPlaceholder?: readonly [{
|
|
38
40
|
readonly locale: "zh";
|
|
39
41
|
readonly message: string;
|
|
@@ -48,8 +50,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
48
50
|
readonly locale: "en" | "ja" | "ko";
|
|
49
51
|
readonly message: string;
|
|
50
52
|
}[]] | undefined;
|
|
51
|
-
readonly valueFormat?: string | undefined;
|
|
52
|
-
readonly disabledDate?: string | undefined;
|
|
53
53
|
readonly validations?: readonly {
|
|
54
54
|
readonly message: readonly [{
|
|
55
55
|
readonly locale: "zh";
|
|
@@ -104,8 +104,10 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
104
104
|
readonly mode: "formula" | "prefill";
|
|
105
105
|
readonly expression: string;
|
|
106
106
|
} | undefined;
|
|
107
|
-
readonly rangeSeparatorIcon?: string | undefined;
|
|
108
107
|
readonly format?: string | undefined;
|
|
108
|
+
readonly valueFormat?: string | undefined;
|
|
109
|
+
readonly disabledDate?: string | undefined;
|
|
110
|
+
readonly rangeSeparatorIcon?: string | undefined;
|
|
109
111
|
readonly startPlaceholder?: readonly [{
|
|
110
112
|
readonly locale: "zh";
|
|
111
113
|
readonly message: string;
|
|
@@ -120,8 +122,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
120
122
|
readonly locale: "en" | "ja" | "ko";
|
|
121
123
|
readonly message: string;
|
|
122
124
|
}[]] | undefined;
|
|
123
|
-
readonly valueFormat?: string | undefined;
|
|
124
|
-
readonly disabledDate?: string | undefined;
|
|
125
125
|
readonly validations?: readonly {
|
|
126
126
|
readonly message: readonly [{
|
|
127
127
|
readonly locale: "zh";
|
|
@@ -40,14 +40,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
40
40
|
readonly mode: "formula" | "prefill";
|
|
41
41
|
readonly expression: string;
|
|
42
42
|
} | undefined;
|
|
43
|
-
readonly optionValue: string;
|
|
44
|
-
readonly optionLabel: readonly [{
|
|
45
|
-
readonly locale: "zh";
|
|
46
|
-
readonly message: string;
|
|
47
|
-
}, ...{
|
|
48
|
-
readonly locale: "en" | "ja" | "ko";
|
|
49
|
-
readonly message: string;
|
|
50
|
-
}[]];
|
|
51
43
|
readonly validations?: readonly {
|
|
52
44
|
readonly message: readonly [{
|
|
53
45
|
readonly locale: "zh";
|
|
@@ -59,6 +51,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
59
51
|
readonly warning?: boolean | undefined;
|
|
60
52
|
readonly when: string;
|
|
61
53
|
}[] | undefined;
|
|
54
|
+
readonly optionValue: string;
|
|
55
|
+
readonly optionLabel: readonly [{
|
|
56
|
+
readonly locale: "zh";
|
|
57
|
+
readonly message: string;
|
|
58
|
+
}, ...{
|
|
59
|
+
readonly locale: "en" | "ja" | "ko";
|
|
60
|
+
readonly message: string;
|
|
61
|
+
}[]];
|
|
62
62
|
}) => any;
|
|
63
63
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
64
64
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -98,14 +98,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
98
98
|
readonly mode: "formula" | "prefill";
|
|
99
99
|
readonly expression: string;
|
|
100
100
|
} | undefined;
|
|
101
|
-
readonly optionValue: string;
|
|
102
|
-
readonly optionLabel: readonly [{
|
|
103
|
-
readonly locale: "zh";
|
|
104
|
-
readonly message: string;
|
|
105
|
-
}, ...{
|
|
106
|
-
readonly locale: "en" | "ja" | "ko";
|
|
107
|
-
readonly message: string;
|
|
108
|
-
}[]];
|
|
109
101
|
readonly validations?: readonly {
|
|
110
102
|
readonly message: readonly [{
|
|
111
103
|
readonly locale: "zh";
|
|
@@ -117,6 +109,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
117
109
|
readonly warning?: boolean | undefined;
|
|
118
110
|
readonly when: string;
|
|
119
111
|
}[] | undefined;
|
|
112
|
+
readonly optionValue: string;
|
|
113
|
+
readonly optionLabel: readonly [{
|
|
114
|
+
readonly locale: "zh";
|
|
115
|
+
readonly message: string;
|
|
116
|
+
}, ...{
|
|
117
|
+
readonly locale: "en" | "ja" | "ko";
|
|
118
|
+
readonly message: string;
|
|
119
|
+
}[]];
|
|
120
120
|
}) => any) | undefined;
|
|
121
121
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
122
122
|
declare const _default: typeof __VLS_export;
|
|
@@ -40,14 +40,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
40
40
|
readonly mode: "formula" | "prefill";
|
|
41
41
|
readonly expression: string;
|
|
42
42
|
} | undefined;
|
|
43
|
-
readonly optionValue: string;
|
|
44
|
-
readonly optionLabel: readonly [{
|
|
45
|
-
readonly locale: "zh";
|
|
46
|
-
readonly message: string;
|
|
47
|
-
}, ...{
|
|
48
|
-
readonly locale: "en" | "ja" | "ko";
|
|
49
|
-
readonly message: string;
|
|
50
|
-
}[]];
|
|
51
43
|
readonly validations?: readonly {
|
|
52
44
|
readonly message: readonly [{
|
|
53
45
|
readonly locale: "zh";
|
|
@@ -59,6 +51,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
59
51
|
readonly warning?: boolean | undefined;
|
|
60
52
|
readonly when: string;
|
|
61
53
|
}[] | undefined;
|
|
54
|
+
readonly optionValue: string;
|
|
55
|
+
readonly optionLabel: readonly [{
|
|
56
|
+
readonly locale: "zh";
|
|
57
|
+
readonly message: string;
|
|
58
|
+
}, ...{
|
|
59
|
+
readonly locale: "en" | "ja" | "ko";
|
|
60
|
+
readonly message: string;
|
|
61
|
+
}[]];
|
|
62
62
|
}) => any;
|
|
63
63
|
}, string, import("vue").PublicProps, Readonly<__VLS_ModelProps> & Readonly<{
|
|
64
64
|
"onUpdate:modelValue"?: ((value: {
|
|
@@ -98,14 +98,6 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
98
98
|
readonly mode: "formula" | "prefill";
|
|
99
99
|
readonly expression: string;
|
|
100
100
|
} | undefined;
|
|
101
|
-
readonly optionValue: string;
|
|
102
|
-
readonly optionLabel: readonly [{
|
|
103
|
-
readonly locale: "zh";
|
|
104
|
-
readonly message: string;
|
|
105
|
-
}, ...{
|
|
106
|
-
readonly locale: "en" | "ja" | "ko";
|
|
107
|
-
readonly message: string;
|
|
108
|
-
}[]];
|
|
109
101
|
readonly validations?: readonly {
|
|
110
102
|
readonly message: readonly [{
|
|
111
103
|
readonly locale: "zh";
|
|
@@ -117,6 +109,14 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
117
109
|
readonly warning?: boolean | undefined;
|
|
118
110
|
readonly when: string;
|
|
119
111
|
}[] | undefined;
|
|
112
|
+
readonly optionValue: string;
|
|
113
|
+
readonly optionLabel: readonly [{
|
|
114
|
+
readonly locale: "zh";
|
|
115
|
+
readonly message: string;
|
|
116
|
+
}, ...{
|
|
117
|
+
readonly locale: "en" | "ja" | "ko";
|
|
118
|
+
readonly message: string;
|
|
119
|
+
}[]];
|
|
120
120
|
}) => any) | undefined;
|
|
121
121
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
122
122
|
declare const _default: typeof __VLS_export;
|
|
@@ -76,6 +76,7 @@ export function useDerived(options) {
|
|
|
76
76
|
(result) => {
|
|
77
77
|
if (gen !== generation) return;
|
|
78
78
|
if (field.mode === "prefill" && isDirty(field.binding)) return;
|
|
79
|
+
if (field.mode === "prefill" && result === void 0) return;
|
|
79
80
|
const normalized = coerce(field.binding, result === void 0 ? null : result);
|
|
80
81
|
if (!deepEqual(getAt(field.binding), normalized)) setAtSilent(field.binding, normalized);
|
|
81
82
|
},
|
|
@@ -28,8 +28,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
28
28
|
"onUpdate:modelValue"?: ((args_0: Date | undefined) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
30
|
size: "sm" | "md" | "lg";
|
|
31
|
-
clearIcon: string;
|
|
32
31
|
clearable: boolean;
|
|
32
|
+
clearIcon: string;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
35
35
|
declare const _default: typeof __VLS_export;
|
|
@@ -28,8 +28,8 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {},
|
|
|
28
28
|
"onUpdate:modelValue"?: ((args_0: Date | undefined) => any) | undefined;
|
|
29
29
|
}>, {
|
|
30
30
|
size: "sm" | "md" | "lg";
|
|
31
|
-
clearIcon: string;
|
|
32
31
|
clearable: boolean;
|
|
32
|
+
clearIcon: string;
|
|
33
33
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
34
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
35
35
|
declare const _default: typeof __VLS_export;
|
|
@@ -22,8 +22,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
22
22
|
size: "sm" | "md" | "lg";
|
|
23
23
|
granularity: "hour" | "minute" | "second";
|
|
24
24
|
hourCycle: 12 | 24;
|
|
25
|
-
clearIcon: string;
|
|
26
25
|
clearable: boolean;
|
|
26
|
+
clearIcon: string;
|
|
27
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const _default: typeof __VLS_export;
|
|
29
29
|
export default _default;
|
|
@@ -22,8 +22,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
22
22
|
size: "sm" | "md" | "lg";
|
|
23
23
|
granularity: "hour" | "minute" | "second";
|
|
24
24
|
hourCycle: 12 | 24;
|
|
25
|
-
clearIcon: string;
|
|
26
25
|
clearable: boolean;
|
|
26
|
+
clearIcon: string;
|
|
27
27
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const _default: typeof __VLS_export;
|
|
29
29
|
export default _default;
|
|
@@ -27,8 +27,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
27
27
|
onCommit?: ((args_0: Date | undefined, args_1: Date | undefined) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
29
|
size: "sm" | "md" | "lg";
|
|
30
|
-
clearIcon: string;
|
|
31
30
|
clearable: boolean;
|
|
31
|
+
clearIcon: string;
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
34
34
|
export default _default;
|
|
@@ -27,8 +27,8 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
27
27
|
onCommit?: ((args_0: Date | undefined, args_1: Date | undefined) => any) | undefined;
|
|
28
28
|
}>, {
|
|
29
29
|
size: "sm" | "md" | "lg";
|
|
30
|
-
clearIcon: string;
|
|
31
30
|
clearable: boolean;
|
|
31
|
+
clearIcon: string;
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
34
34
|
export default _default;
|
|
@@ -26,9 +26,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
26
26
|
size: "sm" | "md" | "lg";
|
|
27
27
|
granularity: "hour" | "minute" | "second";
|
|
28
28
|
hourCycle: 12 | 24;
|
|
29
|
-
rangeSeparatorIcon: string;
|
|
30
|
-
clearIcon: string;
|
|
31
29
|
clearable: boolean;
|
|
30
|
+
clearIcon: string;
|
|
31
|
+
rangeSeparatorIcon: string;
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
34
34
|
export default _default;
|
|
@@ -26,9 +26,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {
|
|
|
26
26
|
size: "sm" | "md" | "lg";
|
|
27
27
|
granularity: "hour" | "minute" | "second";
|
|
28
28
|
hourCycle: 12 | 24;
|
|
29
|
-
rangeSeparatorIcon: string;
|
|
30
|
-
clearIcon: string;
|
|
31
29
|
clearable: boolean;
|
|
30
|
+
clearIcon: string;
|
|
31
|
+
rangeSeparatorIcon: string;
|
|
32
32
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
33
33
|
declare const _default: typeof __VLS_export;
|
|
34
34
|
export default _default;
|