@shwfed/nuxt 0.7.9 → 0.7.11

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.
Files changed (108) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/app.d.vue.ts +7 -56
  3. package/dist/runtime/components/app.vue +17 -404
  4. package/dist/runtime/components/app.vue.d.ts +7 -56
  5. package/dist/runtime/components/fields.d.vue.ts +154 -132
  6. package/dist/runtime/components/fields.vue +30 -295
  7. package/dist/runtime/components/fields.vue.d.ts +154 -132
  8. package/dist/runtime/components/table.d.vue.ts +129 -59
  9. package/dist/runtime/components/table.vue +51 -617
  10. package/dist/runtime/components/table.vue.d.ts +129 -59
  11. package/dist/runtime/components/ui/app/App.d.vue.ts +86 -0
  12. package/dist/runtime/components/ui/app/App.vue +414 -0
  13. package/dist/runtime/components/ui/app/App.vue.d.ts +86 -0
  14. package/dist/runtime/components/ui/checkbox/Checkbox.vue +6 -2
  15. package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.vue +1 -1
  16. package/dist/runtime/components/ui/expression-editor/ExpressionEditor.d.vue.ts +30 -0
  17. package/dist/runtime/components/ui/expression-editor/ExpressionEditor.vue +87 -0
  18. package/dist/runtime/components/ui/expression-editor/ExpressionEditor.vue.d.ts +30 -0
  19. package/dist/runtime/components/ui/expression-editor/index.d.ts +1 -0
  20. package/dist/runtime/components/ui/expression-editor/index.js +1 -0
  21. package/dist/runtime/components/ui/field/FieldContent.vue +1 -1
  22. package/dist/runtime/components/ui/field/FieldError.vue +2 -2
  23. package/dist/runtime/components/ui/field/FieldLabel.vue +1 -1
  24. package/dist/runtime/components/ui/fields/Fields.d.vue.ts +376 -0
  25. package/dist/runtime/components/ui/fields/Fields.vue +441 -0
  26. package/dist/runtime/components/ui/fields/Fields.vue.d.ts +376 -0
  27. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +163 -0
  28. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue +363 -0
  29. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +163 -0
  30. package/dist/runtime/components/ui/icon-picker/IconPicker.d.vue.ts +15 -0
  31. package/dist/runtime/components/ui/icon-picker/IconPicker.vue +178 -0
  32. package/dist/runtime/components/ui/icon-picker/IconPicker.vue.d.ts +15 -0
  33. package/dist/runtime/components/ui/icon-picker/index.d.ts +1 -0
  34. package/dist/runtime/components/ui/icon-picker/index.js +1 -0
  35. package/dist/runtime/components/ui/input/Input.d.vue.ts +1 -0
  36. package/dist/runtime/components/ui/input/Input.vue +2 -0
  37. package/dist/runtime/components/ui/input/Input.vue.d.ts +1 -0
  38. package/dist/runtime/components/ui/input-group/InputGroupAddon.vue +4 -1
  39. package/dist/runtime/components/ui/input-group/InputGroupCombobox.d.vue.ts +8 -3
  40. package/dist/runtime/components/ui/input-group/InputGroupCombobox.vue +8 -3
  41. package/dist/runtime/components/ui/input-group/InputGroupCombobox.vue.d.ts +8 -3
  42. package/dist/runtime/components/ui/input-group/InputGroupComboboxInput.d.vue.ts +8 -1
  43. package/dist/runtime/components/ui/input-group/InputGroupComboboxInput.vue +11 -2
  44. package/dist/runtime/components/ui/input-group/InputGroupComboboxInput.vue.d.ts +8 -1
  45. package/dist/runtime/components/ui/input-group/InputGroupInput.vue +1 -1
  46. package/dist/runtime/components/ui/input-group/InputGroupNumberField.d.vue.ts +5 -2
  47. package/dist/runtime/components/ui/input-group/InputGroupNumberField.vue +10 -4
  48. package/dist/runtime/components/ui/input-group/InputGroupNumberField.vue.d.ts +5 -2
  49. package/dist/runtime/components/ui/input-group/InputGroupTextarea.vue +1 -1
  50. package/dist/runtime/components/ui/input-group/index.js +1 -1
  51. package/dist/runtime/components/ui/locale/Locale.d.vue.ts +20 -0
  52. package/dist/runtime/components/ui/locale/Locale.vue +291 -0
  53. package/dist/runtime/components/ui/locale/Locale.vue.d.ts +20 -0
  54. package/dist/runtime/components/ui/locale/index.d.ts +1 -0
  55. package/dist/runtime/components/ui/locale/index.js +1 -0
  56. package/dist/runtime/components/ui/native-select/NativeSelect.d.vue.ts +2 -2
  57. package/dist/runtime/components/ui/native-select/NativeSelect.vue +1 -1
  58. package/dist/runtime/components/ui/native-select/NativeSelect.vue.d.ts +2 -2
  59. package/dist/runtime/components/ui/native-select/NativeSelectOption.d.vue.ts +1 -0
  60. package/dist/runtime/components/ui/native-select/NativeSelectOption.vue +4 -1
  61. package/dist/runtime/components/ui/native-select/NativeSelectOption.vue.d.ts +1 -0
  62. package/dist/runtime/components/ui/number-field/NumberFieldInput.vue +1 -1
  63. package/dist/runtime/components/ui/switch/Switch.vue +2 -2
  64. package/dist/runtime/components/ui/table/Table.d.vue.ts +147 -0
  65. package/dist/runtime/components/ui/table/Table.vue +952 -0
  66. package/dist/runtime/components/ui/table/Table.vue.d.ts +147 -0
  67. package/dist/runtime/components/ui/table/schema.d.ts +151 -0
  68. package/dist/runtime/components/ui/table/schema.js +142 -0
  69. package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.d.vue.ts +128 -0
  70. package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue +2719 -0
  71. package/dist/runtime/components/ui/table-configurator/TableConfiguratorDialog.vue.d.ts +128 -0
  72. package/dist/runtime/components/ui/table-configurator/menu.d.ts +37 -0
  73. package/dist/runtime/components/ui/table-configurator/menu.js +227 -0
  74. package/dist/runtime/components/ui/tabs/Tabs.d.vue.ts +24 -0
  75. package/dist/runtime/components/ui/tabs/Tabs.vue +30 -0
  76. package/dist/runtime/components/ui/tabs/Tabs.vue.d.ts +24 -0
  77. package/dist/runtime/components/ui/tabs/TabsContent.d.vue.ts +18 -0
  78. package/dist/runtime/components/ui/tabs/TabsContent.vue +23 -0
  79. package/dist/runtime/components/ui/tabs/TabsContent.vue.d.ts +18 -0
  80. package/dist/runtime/components/ui/tabs/TabsList.d.vue.ts +18 -0
  81. package/dist/runtime/components/ui/tabs/TabsList.vue +25 -0
  82. package/dist/runtime/components/ui/tabs/TabsList.vue.d.ts +18 -0
  83. package/dist/runtime/components/ui/tabs/TabsTrigger.d.vue.ts +18 -0
  84. package/dist/runtime/components/ui/tabs/TabsTrigger.vue +27 -0
  85. package/dist/runtime/components/ui/tabs/TabsTrigger.vue.d.ts +18 -0
  86. package/dist/runtime/components/ui/tabs/index.d.ts +4 -0
  87. package/dist/runtime/components/ui/tabs/index.js +4 -0
  88. package/dist/runtime/components/ui/textarea/Textarea.d.vue.ts +1 -0
  89. package/dist/runtime/components/ui/textarea/Textarea.vue +4 -2
  90. package/dist/runtime/components/ui/textarea/Textarea.vue.d.ts +1 -0
  91. package/dist/runtime/components/ui/toggle/Toggle.d.vue.ts +34 -0
  92. package/dist/runtime/components/ui/toggle/Toggle.vue +32 -0
  93. package/dist/runtime/components/ui/toggle/Toggle.vue.d.ts +34 -0
  94. package/dist/runtime/components/ui/toggle/index.d.ts +7 -0
  95. package/dist/runtime/components/ui/toggle/index.js +22 -0
  96. package/dist/runtime/composables/useTableRenderers.d.ts +2 -1
  97. package/dist/runtime/composables/useTableRenderers.js +2 -1
  98. package/dist/runtime/plugins/toast/index.d.ts +2 -2
  99. package/dist/runtime/style.css +1 -1
  100. package/dist/runtime/table-renderers/builtins.js +328 -137
  101. package/dist/runtime/table-renderers/registry.d.ts +2 -1
  102. package/dist/runtime/table-renderers/registry.js +3 -0
  103. package/dist/runtime/utils/coders.d.ts +29 -2
  104. package/dist/runtime/utils/coders.js +40 -2
  105. package/package.json +8 -6
  106. /package/dist/runtime/components/{logo.d.vue.ts → ui/logo/Logo.d.vue.ts} +0 -0
  107. /package/dist/runtime/components/{logo.vue → ui/logo/Logo.vue} +0 -0
  108. /package/dist/runtime/components/{logo.vue.d.ts → ui/logo/Logo.vue.d.ts} +0 -0
@@ -0,0 +1,376 @@
1
+ import z from 'zod';
2
+ import { Effect } from 'effect';
3
+ export declare const StringFieldC: z.ZodObject<{
4
+ type: z.ZodLiteral<"string">;
5
+ path: z.ZodString;
6
+ title: z.ZodReadonly<z.ZodArray<z.ZodObject<{
7
+ locale: z.ZodEnum<{
8
+ zh: "zh";
9
+ ja: "ja";
10
+ en: "en";
11
+ ko: "ko";
12
+ }>;
13
+ message: z.ZodString;
14
+ }, z.core.$strip>>>;
15
+ icon: z.ZodOptional<z.ZodString>;
16
+ style: z.ZodOptional<z.ZodString>;
17
+ discardEmptyString: z.ZodOptional<z.ZodBoolean>;
18
+ maxLength: z.ZodOptional<z.ZodString>;
19
+ hidden: z.ZodOptional<z.ZodString>;
20
+ disabled: z.ZodOptional<z.ZodString>;
21
+ validation: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
22
+ expression: z.ZodString;
23
+ message: z.ZodString;
24
+ }, z.core.$strip>>>>>;
25
+ }, z.core.$strip>;
26
+ export declare const NumberFieldC: z.ZodObject<{
27
+ type: z.ZodLiteral<"number">;
28
+ path: z.ZodString;
29
+ title: z.ZodReadonly<z.ZodArray<z.ZodObject<{
30
+ locale: z.ZodEnum<{
31
+ zh: "zh";
32
+ ja: "ja";
33
+ en: "en";
34
+ ko: "ko";
35
+ }>;
36
+ message: z.ZodString;
37
+ }, z.core.$strip>>>;
38
+ icon: z.ZodOptional<z.ZodString>;
39
+ style: z.ZodOptional<z.ZodString>;
40
+ min: z.ZodOptional<z.ZodString>;
41
+ max: z.ZodOptional<z.ZodString>;
42
+ step: z.ZodOptional<z.ZodString>;
43
+ hidden: z.ZodOptional<z.ZodString>;
44
+ disabled: z.ZodOptional<z.ZodString>;
45
+ validation: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
46
+ expression: z.ZodString;
47
+ message: z.ZodString;
48
+ }, z.core.$strip>>>>>;
49
+ }, z.core.$strip>;
50
+ export declare const SelectFieldC: z.ZodObject<{
51
+ type: z.ZodLiteral<"select">;
52
+ path: z.ZodString;
53
+ title: z.ZodReadonly<z.ZodArray<z.ZodObject<{
54
+ locale: z.ZodEnum<{
55
+ zh: "zh";
56
+ ja: "ja";
57
+ en: "en";
58
+ ko: "ko";
59
+ }>;
60
+ message: z.ZodString;
61
+ }, z.core.$strip>>>;
62
+ icon: z.ZodOptional<z.ZodString>;
63
+ options: z.ZodString;
64
+ label: z.ZodString;
65
+ value: z.ZodString;
66
+ key: z.ZodString;
67
+ style: z.ZodOptional<z.ZodString>;
68
+ hidden: z.ZodOptional<z.ZodString>;
69
+ disabled: z.ZodOptional<z.ZodString>;
70
+ validation: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
71
+ expression: z.ZodString;
72
+ message: z.ZodString;
73
+ }, z.core.$strip>>>>>;
74
+ }, z.core.$strip>;
75
+ export declare const CalendarFieldC: z.ZodObject<{
76
+ type: z.ZodLiteral<"calendar">;
77
+ path: z.ZodString;
78
+ title: z.ZodReadonly<z.ZodArray<z.ZodObject<{
79
+ locale: z.ZodEnum<{
80
+ zh: "zh";
81
+ ja: "ja";
82
+ en: "en";
83
+ ko: "ko";
84
+ }>;
85
+ message: z.ZodString;
86
+ }, z.core.$strip>>>;
87
+ icon: z.ZodOptional<z.ZodString>;
88
+ style: z.ZodOptional<z.ZodString>;
89
+ mode: z.ZodEnum<{
90
+ year: "year";
91
+ month: "month";
92
+ date: "date";
93
+ }>;
94
+ display: z.ZodOptional<z.ZodString>;
95
+ value: z.ZodString;
96
+ disableDate: z.ZodOptional<z.ZodString>;
97
+ hidden: z.ZodOptional<z.ZodString>;
98
+ disabled: z.ZodOptional<z.ZodString>;
99
+ validation: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
100
+ expression: z.ZodString;
101
+ message: z.ZodString;
102
+ }, z.core.$strip>>>>>;
103
+ }, z.core.$strip>;
104
+ export declare const FieldC: z.ZodUnion<readonly [z.ZodObject<{
105
+ type: z.ZodLiteral<"string">;
106
+ path: z.ZodString;
107
+ title: z.ZodReadonly<z.ZodArray<z.ZodObject<{
108
+ locale: z.ZodEnum<{
109
+ zh: "zh";
110
+ ja: "ja";
111
+ en: "en";
112
+ ko: "ko";
113
+ }>;
114
+ message: z.ZodString;
115
+ }, z.core.$strip>>>;
116
+ icon: z.ZodOptional<z.ZodString>;
117
+ style: z.ZodOptional<z.ZodString>;
118
+ discardEmptyString: z.ZodOptional<z.ZodBoolean>;
119
+ maxLength: z.ZodOptional<z.ZodString>;
120
+ hidden: z.ZodOptional<z.ZodString>;
121
+ disabled: z.ZodOptional<z.ZodString>;
122
+ validation: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
123
+ expression: z.ZodString;
124
+ message: z.ZodString;
125
+ }, z.core.$strip>>>>>;
126
+ }, z.core.$strip>, z.ZodObject<{
127
+ type: z.ZodLiteral<"number">;
128
+ path: z.ZodString;
129
+ title: z.ZodReadonly<z.ZodArray<z.ZodObject<{
130
+ locale: z.ZodEnum<{
131
+ zh: "zh";
132
+ ja: "ja";
133
+ en: "en";
134
+ ko: "ko";
135
+ }>;
136
+ message: z.ZodString;
137
+ }, z.core.$strip>>>;
138
+ icon: z.ZodOptional<z.ZodString>;
139
+ style: z.ZodOptional<z.ZodString>;
140
+ min: z.ZodOptional<z.ZodString>;
141
+ max: z.ZodOptional<z.ZodString>;
142
+ step: z.ZodOptional<z.ZodString>;
143
+ hidden: z.ZodOptional<z.ZodString>;
144
+ disabled: z.ZodOptional<z.ZodString>;
145
+ validation: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
146
+ expression: z.ZodString;
147
+ message: z.ZodString;
148
+ }, z.core.$strip>>>>>;
149
+ }, z.core.$strip>, z.ZodObject<{
150
+ type: z.ZodLiteral<"select">;
151
+ path: z.ZodString;
152
+ title: z.ZodReadonly<z.ZodArray<z.ZodObject<{
153
+ locale: z.ZodEnum<{
154
+ zh: "zh";
155
+ ja: "ja";
156
+ en: "en";
157
+ ko: "ko";
158
+ }>;
159
+ message: z.ZodString;
160
+ }, z.core.$strip>>>;
161
+ icon: z.ZodOptional<z.ZodString>;
162
+ options: z.ZodString;
163
+ label: z.ZodString;
164
+ value: z.ZodString;
165
+ key: z.ZodString;
166
+ style: z.ZodOptional<z.ZodString>;
167
+ hidden: z.ZodOptional<z.ZodString>;
168
+ disabled: z.ZodOptional<z.ZodString>;
169
+ validation: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
170
+ expression: z.ZodString;
171
+ message: z.ZodString;
172
+ }, z.core.$strip>>>>>;
173
+ }, z.core.$strip>, z.ZodObject<{
174
+ type: z.ZodLiteral<"calendar">;
175
+ path: z.ZodString;
176
+ title: z.ZodReadonly<z.ZodArray<z.ZodObject<{
177
+ locale: z.ZodEnum<{
178
+ zh: "zh";
179
+ ja: "ja";
180
+ en: "en";
181
+ ko: "ko";
182
+ }>;
183
+ message: z.ZodString;
184
+ }, z.core.$strip>>>;
185
+ icon: z.ZodOptional<z.ZodString>;
186
+ style: z.ZodOptional<z.ZodString>;
187
+ mode: z.ZodEnum<{
188
+ year: "year";
189
+ month: "month";
190
+ date: "date";
191
+ }>;
192
+ display: z.ZodOptional<z.ZodString>;
193
+ value: z.ZodString;
194
+ disableDate: z.ZodOptional<z.ZodString>;
195
+ hidden: z.ZodOptional<z.ZodString>;
196
+ disabled: z.ZodOptional<z.ZodString>;
197
+ validation: z.ZodOptional<z.ZodReadonly<z.ZodArray<z.ZodReadonly<z.ZodObject<{
198
+ expression: z.ZodString;
199
+ message: z.ZodString;
200
+ }, z.core.$strip>>>>>;
201
+ }, z.core.$strip>]>;
202
+ export type Field = z.infer<typeof FieldC>;
203
+ declare const _default: typeof __VLS_export;
204
+ export default _default;
205
+ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
206
+ orientation?: "horizontal" | "vertical" | "floating";
207
+ fields: Effect.Effect<ReadonlyArray<z.infer<typeof FieldC>>>;
208
+ } & {
209
+ modelValue?: Record<string, unknown>;
210
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
211
+ "update:modelValue": (value: Record<string, unknown>) => any;
212
+ "update:fields": (args_0: readonly ({
213
+ type: "string";
214
+ path: string;
215
+ title: readonly {
216
+ locale: "zh" | "ja" | "en" | "ko";
217
+ message: string;
218
+ }[];
219
+ icon?: string | undefined;
220
+ style?: string | undefined;
221
+ discardEmptyString?: boolean | undefined;
222
+ maxLength?: string | undefined;
223
+ hidden?: string | undefined;
224
+ disabled?: string | undefined;
225
+ validation?: readonly Readonly<{
226
+ expression: string;
227
+ message: string;
228
+ }>[] | undefined;
229
+ } | {
230
+ type: "number";
231
+ path: string;
232
+ title: readonly {
233
+ locale: "zh" | "ja" | "en" | "ko";
234
+ message: string;
235
+ }[];
236
+ icon?: string | undefined;
237
+ style?: string | undefined;
238
+ min?: string | undefined;
239
+ max?: string | undefined;
240
+ step?: string | undefined;
241
+ hidden?: string | undefined;
242
+ disabled?: string | undefined;
243
+ validation?: readonly Readonly<{
244
+ expression: string;
245
+ message: string;
246
+ }>[] | undefined;
247
+ } | {
248
+ type: "select";
249
+ path: string;
250
+ title: readonly {
251
+ locale: "zh" | "ja" | "en" | "ko";
252
+ message: string;
253
+ }[];
254
+ options: string;
255
+ label: string;
256
+ value: string;
257
+ key: string;
258
+ icon?: string | undefined;
259
+ style?: string | undefined;
260
+ hidden?: string | undefined;
261
+ disabled?: string | undefined;
262
+ validation?: readonly Readonly<{
263
+ expression: string;
264
+ message: string;
265
+ }>[] | undefined;
266
+ } | {
267
+ type: "calendar";
268
+ path: string;
269
+ title: readonly {
270
+ locale: "zh" | "ja" | "en" | "ko";
271
+ message: string;
272
+ }[];
273
+ mode: "year" | "month" | "date";
274
+ value: string;
275
+ icon?: string | undefined;
276
+ style?: string | undefined;
277
+ display?: string | undefined;
278
+ disableDate?: string | undefined;
279
+ hidden?: string | undefined;
280
+ disabled?: string | undefined;
281
+ validation?: readonly Readonly<{
282
+ expression: string;
283
+ message: string;
284
+ }>[] | undefined;
285
+ })[]) => any;
286
+ }, string, import("vue").PublicProps, Readonly<{
287
+ orientation?: "horizontal" | "vertical" | "floating";
288
+ fields: Effect.Effect<ReadonlyArray<z.infer<typeof FieldC>>>;
289
+ } & {
290
+ modelValue?: Record<string, unknown>;
291
+ }> & Readonly<{
292
+ "onUpdate:modelValue"?: ((value: Record<string, unknown>) => any) | undefined;
293
+ "onUpdate:fields"?: ((args_0: readonly ({
294
+ type: "string";
295
+ path: string;
296
+ title: readonly {
297
+ locale: "zh" | "ja" | "en" | "ko";
298
+ message: string;
299
+ }[];
300
+ icon?: string | undefined;
301
+ style?: string | undefined;
302
+ discardEmptyString?: boolean | undefined;
303
+ maxLength?: string | undefined;
304
+ hidden?: string | undefined;
305
+ disabled?: string | undefined;
306
+ validation?: readonly Readonly<{
307
+ expression: string;
308
+ message: string;
309
+ }>[] | undefined;
310
+ } | {
311
+ type: "number";
312
+ path: string;
313
+ title: readonly {
314
+ locale: "zh" | "ja" | "en" | "ko";
315
+ message: string;
316
+ }[];
317
+ icon?: string | undefined;
318
+ style?: string | undefined;
319
+ min?: string | undefined;
320
+ max?: string | undefined;
321
+ step?: string | undefined;
322
+ hidden?: string | undefined;
323
+ disabled?: string | undefined;
324
+ validation?: readonly Readonly<{
325
+ expression: string;
326
+ message: string;
327
+ }>[] | undefined;
328
+ } | {
329
+ type: "select";
330
+ path: string;
331
+ title: readonly {
332
+ locale: "zh" | "ja" | "en" | "ko";
333
+ message: string;
334
+ }[];
335
+ options: string;
336
+ label: string;
337
+ value: string;
338
+ key: string;
339
+ icon?: string | undefined;
340
+ style?: string | undefined;
341
+ hidden?: string | undefined;
342
+ disabled?: string | undefined;
343
+ validation?: readonly Readonly<{
344
+ expression: string;
345
+ message: string;
346
+ }>[] | undefined;
347
+ } | {
348
+ type: "calendar";
349
+ path: string;
350
+ title: readonly {
351
+ locale: "zh" | "ja" | "en" | "ko";
352
+ message: string;
353
+ }[];
354
+ mode: "year" | "month" | "date";
355
+ value: string;
356
+ icon?: string | undefined;
357
+ style?: string | undefined;
358
+ display?: string | undefined;
359
+ disableDate?: string | undefined;
360
+ hidden?: string | undefined;
361
+ disabled?: string | undefined;
362
+ validation?: readonly Readonly<{
363
+ expression: string;
364
+ message: string;
365
+ }>[] | undefined;
366
+ })[]) => any) | undefined;
367
+ }>, {
368
+ orientation: "horizontal" | "vertical" | "floating";
369
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
370
+ default?: (props: {}) => any;
371
+ }>;
372
+ type __VLS_WithSlots<T, S> = T & {
373
+ new (): {
374
+ $slots: S;
375
+ };
376
+ };
@@ -0,0 +1,163 @@
1
+ import type { Field } from '../fields/Fields.vue.js';
2
+ type __VLS_Props = {
3
+ fields: ReadonlyArray<Field>;
4
+ };
5
+ type __VLS_ModelProps = {
6
+ 'open'?: boolean;
7
+ };
8
+ type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
9
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ "update:open": (value: boolean) => any;
11
+ confirm: (args_0: readonly ({
12
+ type: "string";
13
+ path: string;
14
+ title: readonly {
15
+ locale: "zh" | "ja" | "en" | "ko";
16
+ message: string;
17
+ }[];
18
+ icon?: string | undefined;
19
+ style?: string | undefined;
20
+ discardEmptyString?: boolean | undefined;
21
+ maxLength?: string | undefined;
22
+ hidden?: string | undefined;
23
+ disabled?: string | undefined;
24
+ validation?: readonly Readonly<{
25
+ expression: string;
26
+ message: string;
27
+ }>[] | undefined;
28
+ } | {
29
+ type: "number";
30
+ path: string;
31
+ title: readonly {
32
+ locale: "zh" | "ja" | "en" | "ko";
33
+ message: string;
34
+ }[];
35
+ icon?: string | undefined;
36
+ style?: string | undefined;
37
+ min?: string | undefined;
38
+ max?: string | undefined;
39
+ step?: string | undefined;
40
+ hidden?: string | undefined;
41
+ disabled?: string | undefined;
42
+ validation?: readonly Readonly<{
43
+ expression: string;
44
+ message: string;
45
+ }>[] | undefined;
46
+ } | {
47
+ type: "select";
48
+ path: string;
49
+ title: readonly {
50
+ locale: "zh" | "ja" | "en" | "ko";
51
+ message: string;
52
+ }[];
53
+ options: string;
54
+ label: string;
55
+ value: string;
56
+ key: string;
57
+ icon?: string | undefined;
58
+ style?: string | undefined;
59
+ hidden?: string | undefined;
60
+ disabled?: string | undefined;
61
+ validation?: readonly Readonly<{
62
+ expression: string;
63
+ message: string;
64
+ }>[] | undefined;
65
+ } | {
66
+ type: "calendar";
67
+ path: string;
68
+ title: readonly {
69
+ locale: "zh" | "ja" | "en" | "ko";
70
+ message: string;
71
+ }[];
72
+ mode: "year" | "month" | "date";
73
+ value: string;
74
+ icon?: string | undefined;
75
+ style?: string | undefined;
76
+ display?: string | undefined;
77
+ disableDate?: string | undefined;
78
+ hidden?: string | undefined;
79
+ disabled?: string | undefined;
80
+ validation?: readonly Readonly<{
81
+ expression: string;
82
+ message: string;
83
+ }>[] | undefined;
84
+ })[]) => any;
85
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
86
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
87
+ onConfirm?: ((args_0: readonly ({
88
+ type: "string";
89
+ path: string;
90
+ title: readonly {
91
+ locale: "zh" | "ja" | "en" | "ko";
92
+ message: string;
93
+ }[];
94
+ icon?: string | undefined;
95
+ style?: string | undefined;
96
+ discardEmptyString?: boolean | undefined;
97
+ maxLength?: string | undefined;
98
+ hidden?: string | undefined;
99
+ disabled?: string | undefined;
100
+ validation?: readonly Readonly<{
101
+ expression: string;
102
+ message: string;
103
+ }>[] | undefined;
104
+ } | {
105
+ type: "number";
106
+ path: string;
107
+ title: readonly {
108
+ locale: "zh" | "ja" | "en" | "ko";
109
+ message: string;
110
+ }[];
111
+ icon?: string | undefined;
112
+ style?: string | undefined;
113
+ min?: string | undefined;
114
+ max?: string | undefined;
115
+ step?: string | undefined;
116
+ hidden?: string | undefined;
117
+ disabled?: string | undefined;
118
+ validation?: readonly Readonly<{
119
+ expression: string;
120
+ message: string;
121
+ }>[] | undefined;
122
+ } | {
123
+ type: "select";
124
+ path: string;
125
+ title: readonly {
126
+ locale: "zh" | "ja" | "en" | "ko";
127
+ message: string;
128
+ }[];
129
+ options: string;
130
+ label: string;
131
+ value: string;
132
+ key: string;
133
+ icon?: string | undefined;
134
+ style?: string | undefined;
135
+ hidden?: string | undefined;
136
+ disabled?: string | undefined;
137
+ validation?: readonly Readonly<{
138
+ expression: string;
139
+ message: string;
140
+ }>[] | undefined;
141
+ } | {
142
+ type: "calendar";
143
+ path: string;
144
+ title: readonly {
145
+ locale: "zh" | "ja" | "en" | "ko";
146
+ message: string;
147
+ }[];
148
+ mode: "year" | "month" | "date";
149
+ value: string;
150
+ icon?: string | undefined;
151
+ style?: string | undefined;
152
+ display?: string | undefined;
153
+ disableDate?: string | undefined;
154
+ hidden?: string | undefined;
155
+ disabled?: string | undefined;
156
+ validation?: readonly Readonly<{
157
+ expression: string;
158
+ message: string;
159
+ }>[] | undefined;
160
+ })[]) => any) | undefined;
161
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
162
+ declare const _default: typeof __VLS_export;
163
+ export default _default;