@shwfed/nuxt 0.11.1 → 0.11.3
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/button.d.vue.ts +18 -18
- package/dist/runtime/components/button.vue.d.ts +18 -18
- package/dist/runtime/components/fields.d.vue.ts +10 -10
- package/dist/runtime/components/fields.vue.d.ts +10 -10
- package/dist/runtime/components/markdown.d.vue.ts +2 -2
- package/dist/runtime/components/markdown.vue.d.ts +2 -2
- package/dist/runtime/components/menu-tabs.d.vue.ts +2 -2
- package/dist/runtime/components/menu-tabs.vue.d.ts +2 -2
- package/dist/runtime/components/ui/app/OverlayHost.vue +51 -2
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.d.vue.ts +18 -18
- package/dist/runtime/components/ui/button-configurator/ButtonConfiguratorDialog.vue.d.ts +18 -18
- package/dist/runtime/components/ui/buttons/Buttons.d.vue.ts +18 -18
- package/dist/runtime/components/ui/buttons/Buttons.vue +9 -25
- package/dist/runtime/components/ui/buttons/Buttons.vue.d.ts +18 -18
- package/dist/runtime/components/ui/buttons/schema.d.ts +138 -138
- package/dist/runtime/components/ui/fields/Fields.d.vue.ts +20 -20
- package/dist/runtime/components/ui/fields/Fields.vue.d.ts +20 -20
- package/dist/runtime/components/ui/fields/schema.d.ts +60 -60
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.d.vue.ts +10 -10
- package/dist/runtime/components/ui/fields-configurator/FieldsConfiguratorDialog.vue.d.ts +10 -10
- package/dist/runtime/components/ui/locale/Locale.d.vue.ts +2 -2
- package/dist/runtime/components/ui/locale/Locale.vue.d.ts +2 -2
- package/dist/runtime/components/ui/markdown/Markdown.d.vue.ts +2 -2
- package/dist/runtime/components/ui/markdown/Markdown.vue.d.ts +2 -2
- package/dist/runtime/components/ui/markdown/schema.d.ts +8 -8
- package/dist/runtime/components/ui/markdown-configurator/MarkdownConfiguratorDialog.d.vue.ts +2 -2
- package/dist/runtime/components/ui/markdown-configurator/MarkdownConfiguratorDialog.vue.d.ts +2 -2
- package/dist/runtime/components/ui/menu-tabs/MenuTabs.d.vue.ts +2 -2
- package/dist/runtime/components/ui/menu-tabs/MenuTabs.vue.d.ts +2 -2
- package/dist/runtime/components/ui/menu-tabs/schema.d.ts +10 -10
- package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.d.vue.ts +2 -2
- package/dist/runtime/components/ui/menu-tabs-configurator/MenuTabsConfiguratorDialog.vue.d.ts +2 -2
- package/dist/runtime/composables/useOverlay.d.ts +14 -1
- package/dist/runtime/composables/useOverlay.js +59 -4
- package/dist/runtime/utils/coders.d.ts +7 -7
- 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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
467
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
468
468
|
message: string;
|
|
469
469
|
}[];
|
|
470
470
|
mode: "month" | "year" | "date";
|