@shwfed/nuxt 0.11.1 → 0.11.2

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 (37) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/button.d.vue.ts +18 -18
  3. package/dist/runtime/components/button.vue.d.ts +18 -18
  4. package/dist/runtime/components/fields.d.vue.ts +10 -10
  5. package/dist/runtime/components/fields.vue.d.ts +10 -10
  6. package/dist/runtime/components/markdown.d.vue.ts +2 -2
  7. package/dist/runtime/components/markdown.vue.d.ts +2 -2
  8. package/dist/runtime/components/menu-tabs.d.vue.ts +2 -2
  9. package/dist/runtime/components/menu-tabs.vue.d.ts +2 -2
  10. package/dist/runtime/components/ui/app/OverlayHost.vue +17 -2
  11. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.d.vue.ts +18 -18
  12. package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue.d.ts +18 -18
  13. package/dist/runtime/components/ui/buttons/Buttons.d.vue.ts +18 -18
  14. package/dist/runtime/components/ui/buttons/Buttons.vue.d.ts +18 -18
  15. package/dist/runtime/components/ui/buttons/schema.d.ts +138 -138
  16. package/dist/runtime/components/ui/fields/Fields.d.vue.ts +20 -20
  17. package/dist/runtime/components/ui/fields/Fields.vue.d.ts +20 -20
  18. package/dist/runtime/components/ui/fields/schema.d.ts +60 -60
  19. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +10 -10
  20. package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +10 -10
  21. package/dist/runtime/components/ui/locale/Locale.d.vue.ts +2 -2
  22. package/dist/runtime/components/ui/locale/Locale.vue.d.ts +2 -2
  23. package/dist/runtime/components/ui/markdown/Markdown.d.vue.ts +2 -2
  24. package/dist/runtime/components/ui/markdown/Markdown.vue.d.ts +2 -2
  25. package/dist/runtime/components/ui/markdown/schema.d.ts +8 -8
  26. package/dist/runtime/components/ui/markdown-configurator/MarkdownConfiguratorDialog.d.vue.ts +2 -2
  27. package/dist/runtime/components/ui/markdown-configurator/MarkdownConfiguratorDialog.vue.d.ts +2 -2
  28. package/dist/runtime/components/ui/menu-tabs/MenuTabs.d.vue.ts +2 -2
  29. package/dist/runtime/components/ui/menu-tabs/MenuTabs.vue.d.ts +2 -2
  30. package/dist/runtime/components/ui/menu-tabs/schema.d.ts +10 -10
  31. package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.d.vue.ts +2 -2
  32. package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.vue.d.ts +2 -2
  33. package/dist/runtime/composables/useOverlay.d.ts +4 -1
  34. package/dist/runtime/composables/useOverlay.js +38 -4
  35. package/dist/runtime/plugins/toast/index.d.ts +2 -2
  36. package/dist/runtime/utils/coders.d.ts +7 -7
  37. package/package.json +1 -1
@@ -11,7 +11,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
11
11
  type: "string";
12
12
  path: string;
13
13
  title: readonly {
14
- locale: "zh" | "ja" | "en" | "ko";
14
+ locale: "en" | "ja" | "ko" | "zh";
15
15
  message: string;
16
16
  }[];
17
17
  required?: boolean | undefined;
@@ -31,7 +31,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
31
31
  type: "textarea";
32
32
  path: string;
33
33
  title: readonly {
34
- locale: "zh" | "ja" | "en" | "ko";
34
+ locale: "en" | "ja" | "ko" | "zh";
35
35
  message: string;
36
36
  }[];
37
37
  required?: boolean | undefined;
@@ -51,7 +51,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
51
51
  type: "number";
52
52
  path: string;
53
53
  title: readonly {
54
- locale: "zh" | "ja" | "en" | "ko";
54
+ locale: "en" | "ja" | "ko" | "zh";
55
55
  message: string;
56
56
  }[];
57
57
  required?: boolean | undefined;
@@ -72,7 +72,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
72
72
  type: "select";
73
73
  path: string;
74
74
  title: readonly {
75
- locale: "zh" | "ja" | "en" | "ko";
75
+ locale: "en" | "ja" | "ko" | "zh";
76
76
  message: string;
77
77
  }[];
78
78
  options: string;
@@ -94,7 +94,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
94
94
  type: "calendar";
95
95
  path: string;
96
96
  title: readonly {
97
- locale: "zh" | "ja" | "en" | "ko";
97
+ locale: "en" | "ja" | "ko" | "zh";
98
98
  message: string;
99
99
  }[];
100
100
  mode: "month" | "year" | "date";
@@ -135,7 +135,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
135
135
  type: "string";
136
136
  path: string;
137
137
  title: readonly {
138
- locale: "zh" | "ja" | "en" | "ko";
138
+ locale: "en" | "ja" | "ko" | "zh";
139
139
  message: string;
140
140
  }[];
141
141
  required?: boolean | undefined;
@@ -155,7 +155,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
155
155
  type: "textarea";
156
156
  path: string;
157
157
  title: readonly {
158
- locale: "zh" | "ja" | "en" | "ko";
158
+ locale: "en" | "ja" | "ko" | "zh";
159
159
  message: string;
160
160
  }[];
161
161
  required?: boolean | undefined;
@@ -175,7 +175,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
175
175
  type: "number";
176
176
  path: string;
177
177
  title: readonly {
178
- locale: "zh" | "ja" | "en" | "ko";
178
+ locale: "en" | "ja" | "ko" | "zh";
179
179
  message: string;
180
180
  }[];
181
181
  required?: boolean | undefined;
@@ -196,7 +196,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
196
196
  type: "select";
197
197
  path: string;
198
198
  title: readonly {
199
- locale: "zh" | "ja" | "en" | "ko";
199
+ locale: "en" | "ja" | "ko" | "zh";
200
200
  message: string;
201
201
  }[];
202
202
  options: string;
@@ -218,7 +218,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
218
218
  type: "calendar";
219
219
  path: string;
220
220
  title: readonly {
221
- locale: "zh" | "ja" | "en" | "ko";
221
+ locale: "en" | "ja" | "ko" | "zh";
222
222
  message: string;
223
223
  }[];
224
224
  mode: "month" | "year" | "date";
@@ -257,7 +257,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
257
257
  type: "string";
258
258
  path: string;
259
259
  title: readonly {
260
- locale: "zh" | "ja" | "en" | "ko";
260
+ locale: "en" | "ja" | "ko" | "zh";
261
261
  message: string;
262
262
  }[];
263
263
  required?: boolean | undefined;
@@ -277,7 +277,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
277
277
  type: "textarea";
278
278
  path: string;
279
279
  title: readonly {
280
- locale: "zh" | "ja" | "en" | "ko";
280
+ locale: "en" | "ja" | "ko" | "zh";
281
281
  message: string;
282
282
  }[];
283
283
  required?: boolean | undefined;
@@ -297,7 +297,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
297
297
  type: "number";
298
298
  path: string;
299
299
  title: readonly {
300
- locale: "zh" | "ja" | "en" | "ko";
300
+ locale: "en" | "ja" | "ko" | "zh";
301
301
  message: string;
302
302
  }[];
303
303
  required?: boolean | undefined;
@@ -318,7 +318,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
318
318
  type: "select";
319
319
  path: string;
320
320
  title: readonly {
321
- locale: "zh" | "ja" | "en" | "ko";
321
+ locale: "en" | "ja" | "ko" | "zh";
322
322
  message: string;
323
323
  }[];
324
324
  options: string;
@@ -340,7 +340,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
340
340
  type: "calendar";
341
341
  path: string;
342
342
  title: readonly {
343
- locale: "zh" | "ja" | "en" | "ko";
343
+ locale: "en" | "ja" | "ko" | "zh";
344
344
  message: string;
345
345
  }[];
346
346
  mode: "month" | "year" | "date";
@@ -381,7 +381,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
381
381
  type: "string";
382
382
  path: string;
383
383
  title: readonly {
384
- locale: "zh" | "ja" | "en" | "ko";
384
+ locale: "en" | "ja" | "ko" | "zh";
385
385
  message: string;
386
386
  }[];
387
387
  required?: boolean | undefined;
@@ -401,7 +401,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
401
401
  type: "textarea";
402
402
  path: string;
403
403
  title: readonly {
404
- locale: "zh" | "ja" | "en" | "ko";
404
+ locale: "en" | "ja" | "ko" | "zh";
405
405
  message: string;
406
406
  }[];
407
407
  required?: boolean | undefined;
@@ -421,7 +421,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
421
421
  type: "number";
422
422
  path: string;
423
423
  title: readonly {
424
- locale: "zh" | "ja" | "en" | "ko";
424
+ locale: "en" | "ja" | "ko" | "zh";
425
425
  message: string;
426
426
  }[];
427
427
  required?: boolean | undefined;
@@ -442,7 +442,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
442
442
  type: "select";
443
443
  path: string;
444
444
  title: readonly {
445
- locale: "zh" | "ja" | "en" | "ko";
445
+ locale: "en" | "ja" | "ko" | "zh";
446
446
  message: string;
447
447
  }[];
448
448
  options: string;
@@ -464,7 +464,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
464
464
  type: "calendar";
465
465
  path: string;
466
466
  title: readonly {
467
- locale: "zh" | "ja" | "en" | "ko";
467
+ locale: "en" | "ja" | "ko" | "zh";
468
468
  message: string;
469
469
  }[];
470
470
  mode: "month" | "year" | "date";
@@ -11,7 +11,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
11
11
  type: "string";
12
12
  path: string;
13
13
  title: readonly {
14
- locale: "zh" | "ja" | "en" | "ko";
14
+ locale: "en" | "ja" | "ko" | "zh";
15
15
  message: string;
16
16
  }[];
17
17
  required?: boolean | undefined;
@@ -31,7 +31,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
31
31
  type: "textarea";
32
32
  path: string;
33
33
  title: readonly {
34
- locale: "zh" | "ja" | "en" | "ko";
34
+ locale: "en" | "ja" | "ko" | "zh";
35
35
  message: string;
36
36
  }[];
37
37
  required?: boolean | undefined;
@@ -51,7 +51,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
51
51
  type: "number";
52
52
  path: string;
53
53
  title: readonly {
54
- locale: "zh" | "ja" | "en" | "ko";
54
+ locale: "en" | "ja" | "ko" | "zh";
55
55
  message: string;
56
56
  }[];
57
57
  required?: boolean | undefined;
@@ -72,7 +72,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
72
72
  type: "select";
73
73
  path: string;
74
74
  title: readonly {
75
- locale: "zh" | "ja" | "en" | "ko";
75
+ locale: "en" | "ja" | "ko" | "zh";
76
76
  message: string;
77
77
  }[];
78
78
  options: string;
@@ -94,7 +94,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
94
94
  type: "calendar";
95
95
  path: string;
96
96
  title: readonly {
97
- locale: "zh" | "ja" | "en" | "ko";
97
+ locale: "en" | "ja" | "ko" | "zh";
98
98
  message: string;
99
99
  }[];
100
100
  mode: "month" | "year" | "date";
@@ -135,7 +135,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
135
135
  type: "string";
136
136
  path: string;
137
137
  title: readonly {
138
- locale: "zh" | "ja" | "en" | "ko";
138
+ locale: "en" | "ja" | "ko" | "zh";
139
139
  message: string;
140
140
  }[];
141
141
  required?: boolean | undefined;
@@ -155,7 +155,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
155
155
  type: "textarea";
156
156
  path: string;
157
157
  title: readonly {
158
- locale: "zh" | "ja" | "en" | "ko";
158
+ locale: "en" | "ja" | "ko" | "zh";
159
159
  message: string;
160
160
  }[];
161
161
  required?: boolean | undefined;
@@ -175,7 +175,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
175
175
  type: "number";
176
176
  path: string;
177
177
  title: readonly {
178
- locale: "zh" | "ja" | "en" | "ko";
178
+ locale: "en" | "ja" | "ko" | "zh";
179
179
  message: string;
180
180
  }[];
181
181
  required?: boolean | undefined;
@@ -196,7 +196,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
196
196
  type: "select";
197
197
  path: string;
198
198
  title: readonly {
199
- locale: "zh" | "ja" | "en" | "ko";
199
+ locale: "en" | "ja" | "ko" | "zh";
200
200
  message: string;
201
201
  }[];
202
202
  options: string;
@@ -218,7 +218,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
218
218
  type: "calendar";
219
219
  path: string;
220
220
  title: readonly {
221
- locale: "zh" | "ja" | "en" | "ko";
221
+ locale: "en" | "ja" | "ko" | "zh";
222
222
  message: string;
223
223
  }[];
224
224
  mode: "month" | "year" | "date";
@@ -257,7 +257,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
257
257
  type: "string";
258
258
  path: string;
259
259
  title: readonly {
260
- locale: "zh" | "ja" | "en" | "ko";
260
+ locale: "en" | "ja" | "ko" | "zh";
261
261
  message: string;
262
262
  }[];
263
263
  required?: boolean | undefined;
@@ -277,7 +277,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
277
277
  type: "textarea";
278
278
  path: string;
279
279
  title: readonly {
280
- locale: "zh" | "ja" | "en" | "ko";
280
+ locale: "en" | "ja" | "ko" | "zh";
281
281
  message: string;
282
282
  }[];
283
283
  required?: boolean | undefined;
@@ -297,7 +297,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
297
297
  type: "number";
298
298
  path: string;
299
299
  title: readonly {
300
- locale: "zh" | "ja" | "en" | "ko";
300
+ locale: "en" | "ja" | "ko" | "zh";
301
301
  message: string;
302
302
  }[];
303
303
  required?: boolean | undefined;
@@ -318,7 +318,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
318
318
  type: "select";
319
319
  path: string;
320
320
  title: readonly {
321
- locale: "zh" | "ja" | "en" | "ko";
321
+ locale: "en" | "ja" | "ko" | "zh";
322
322
  message: string;
323
323
  }[];
324
324
  options: string;
@@ -340,7 +340,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
340
340
  type: "calendar";
341
341
  path: string;
342
342
  title: readonly {
343
- locale: "zh" | "ja" | "en" | "ko";
343
+ locale: "en" | "ja" | "ko" | "zh";
344
344
  message: string;
345
345
  }[];
346
346
  mode: "month" | "year" | "date";
@@ -381,7 +381,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
381
381
  type: "string";
382
382
  path: string;
383
383
  title: readonly {
384
- locale: "zh" | "ja" | "en" | "ko";
384
+ locale: "en" | "ja" | "ko" | "zh";
385
385
  message: string;
386
386
  }[];
387
387
  required?: boolean | undefined;
@@ -401,7 +401,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
401
401
  type: "textarea";
402
402
  path: string;
403
403
  title: readonly {
404
- locale: "zh" | "ja" | "en" | "ko";
404
+ locale: "en" | "ja" | "ko" | "zh";
405
405
  message: string;
406
406
  }[];
407
407
  required?: boolean | undefined;
@@ -421,7 +421,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
421
421
  type: "number";
422
422
  path: string;
423
423
  title: readonly {
424
- locale: "zh" | "ja" | "en" | "ko";
424
+ locale: "en" | "ja" | "ko" | "zh";
425
425
  message: string;
426
426
  }[];
427
427
  required?: boolean | undefined;
@@ -442,7 +442,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
442
442
  type: "select";
443
443
  path: string;
444
444
  title: readonly {
445
- locale: "zh" | "ja" | "en" | "ko";
445
+ locale: "en" | "ja" | "ko" | "zh";
446
446
  message: string;
447
447
  }[];
448
448
  options: string;
@@ -464,7 +464,7 @@ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<{
464
464
  type: "calendar";
465
465
  path: string;
466
466
  title: readonly {
467
- locale: "zh" | "ja" | "en" | "ko";
467
+ locale: "en" | "ja" | "ko" | "zh";
468
468
  message: string;
469
469
  }[];
470
470
  mode: "month" | "year" | "date";