@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
|
@@ -14,11 +14,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
14
14
|
items: readonly (Readonly<{
|
|
15
15
|
id: string;
|
|
16
16
|
title: readonly {
|
|
17
|
-
locale: "
|
|
17
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
18
18
|
message: string;
|
|
19
19
|
}[];
|
|
20
20
|
tooltip?: readonly {
|
|
21
|
-
locale: "
|
|
21
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
22
22
|
message: string;
|
|
23
23
|
}[] | undefined;
|
|
24
24
|
icon?: string | undefined;
|
|
@@ -26,11 +26,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
26
26
|
hideTitle?: boolean | undefined;
|
|
27
27
|
modal?: Readonly<{
|
|
28
28
|
title?: readonly {
|
|
29
|
-
locale: "
|
|
29
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
30
30
|
message: string;
|
|
31
31
|
}[] | undefined;
|
|
32
32
|
description?: readonly {
|
|
33
|
-
locale: "
|
|
33
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
34
34
|
message: string;
|
|
35
35
|
}[] | undefined;
|
|
36
36
|
showCloseButton?: boolean | undefined;
|
|
@@ -40,28 +40,28 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
40
40
|
}> | Readonly<{
|
|
41
41
|
id: string;
|
|
42
42
|
title: readonly {
|
|
43
|
-
locale: "
|
|
43
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
44
44
|
message: string;
|
|
45
45
|
}[];
|
|
46
46
|
items: readonly Readonly<{
|
|
47
47
|
id: string;
|
|
48
48
|
title: readonly {
|
|
49
|
-
locale: "
|
|
49
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
50
50
|
message: string;
|
|
51
51
|
}[];
|
|
52
52
|
tooltip?: readonly {
|
|
53
|
-
locale: "
|
|
53
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
54
54
|
message: string;
|
|
55
55
|
}[] | undefined;
|
|
56
56
|
icon?: string | undefined;
|
|
57
57
|
variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
|
|
58
58
|
modal?: Readonly<{
|
|
59
59
|
title?: readonly {
|
|
60
|
-
locale: "
|
|
60
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
61
61
|
message: string;
|
|
62
62
|
}[] | undefined;
|
|
63
63
|
description?: readonly {
|
|
64
|
-
locale: "
|
|
64
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
65
65
|
message: string;
|
|
66
66
|
}[] | undefined;
|
|
67
67
|
showCloseButton?: boolean | undefined;
|
|
@@ -85,11 +85,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
85
85
|
items: readonly (Readonly<{
|
|
86
86
|
id: string;
|
|
87
87
|
title: readonly {
|
|
88
|
-
locale: "
|
|
88
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
89
89
|
message: string;
|
|
90
90
|
}[];
|
|
91
91
|
tooltip?: readonly {
|
|
92
|
-
locale: "
|
|
92
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
93
93
|
message: string;
|
|
94
94
|
}[] | undefined;
|
|
95
95
|
icon?: string | undefined;
|
|
@@ -97,11 +97,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
97
97
|
hideTitle?: boolean | undefined;
|
|
98
98
|
modal?: Readonly<{
|
|
99
99
|
title?: readonly {
|
|
100
|
-
locale: "
|
|
100
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
101
101
|
message: string;
|
|
102
102
|
}[] | undefined;
|
|
103
103
|
description?: readonly {
|
|
104
|
-
locale: "
|
|
104
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
105
105
|
message: string;
|
|
106
106
|
}[] | undefined;
|
|
107
107
|
showCloseButton?: boolean | undefined;
|
|
@@ -111,28 +111,28 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
111
111
|
}> | Readonly<{
|
|
112
112
|
id: string;
|
|
113
113
|
title: readonly {
|
|
114
|
-
locale: "
|
|
114
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
115
115
|
message: string;
|
|
116
116
|
}[];
|
|
117
117
|
items: readonly Readonly<{
|
|
118
118
|
id: string;
|
|
119
119
|
title: readonly {
|
|
120
|
-
locale: "
|
|
120
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
121
121
|
message: string;
|
|
122
122
|
}[];
|
|
123
123
|
tooltip?: readonly {
|
|
124
|
-
locale: "
|
|
124
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
125
125
|
message: string;
|
|
126
126
|
}[] | undefined;
|
|
127
127
|
icon?: string | undefined;
|
|
128
128
|
variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
|
|
129
129
|
modal?: Readonly<{
|
|
130
130
|
title?: readonly {
|
|
131
|
-
locale: "
|
|
131
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
132
132
|
message: string;
|
|
133
133
|
}[] | undefined;
|
|
134
134
|
description?: readonly {
|
|
135
|
-
locale: "
|
|
135
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
136
136
|
message: string;
|
|
137
137
|
}[] | undefined;
|
|
138
138
|
showCloseButton?: boolean | undefined;
|
|
@@ -14,11 +14,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
14
14
|
items: readonly (Readonly<{
|
|
15
15
|
id: string;
|
|
16
16
|
title: readonly {
|
|
17
|
-
locale: "
|
|
17
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
18
18
|
message: string;
|
|
19
19
|
}[];
|
|
20
20
|
tooltip?: readonly {
|
|
21
|
-
locale: "
|
|
21
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
22
22
|
message: string;
|
|
23
23
|
}[] | undefined;
|
|
24
24
|
icon?: string | undefined;
|
|
@@ -26,11 +26,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
26
26
|
hideTitle?: boolean | undefined;
|
|
27
27
|
modal?: Readonly<{
|
|
28
28
|
title?: readonly {
|
|
29
|
-
locale: "
|
|
29
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
30
30
|
message: string;
|
|
31
31
|
}[] | undefined;
|
|
32
32
|
description?: readonly {
|
|
33
|
-
locale: "
|
|
33
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
34
34
|
message: string;
|
|
35
35
|
}[] | undefined;
|
|
36
36
|
showCloseButton?: boolean | undefined;
|
|
@@ -40,28 +40,28 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
40
40
|
}> | Readonly<{
|
|
41
41
|
id: string;
|
|
42
42
|
title: readonly {
|
|
43
|
-
locale: "
|
|
43
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
44
44
|
message: string;
|
|
45
45
|
}[];
|
|
46
46
|
items: readonly Readonly<{
|
|
47
47
|
id: string;
|
|
48
48
|
title: readonly {
|
|
49
|
-
locale: "
|
|
49
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
50
50
|
message: string;
|
|
51
51
|
}[];
|
|
52
52
|
tooltip?: readonly {
|
|
53
|
-
locale: "
|
|
53
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
54
54
|
message: string;
|
|
55
55
|
}[] | undefined;
|
|
56
56
|
icon?: string | undefined;
|
|
57
57
|
variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
|
|
58
58
|
modal?: Readonly<{
|
|
59
59
|
title?: readonly {
|
|
60
|
-
locale: "
|
|
60
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
61
61
|
message: string;
|
|
62
62
|
}[] | undefined;
|
|
63
63
|
description?: readonly {
|
|
64
|
-
locale: "
|
|
64
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
65
65
|
message: string;
|
|
66
66
|
}[] | undefined;
|
|
67
67
|
showCloseButton?: boolean | undefined;
|
|
@@ -85,11 +85,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
85
85
|
items: readonly (Readonly<{
|
|
86
86
|
id: string;
|
|
87
87
|
title: readonly {
|
|
88
|
-
locale: "
|
|
88
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
89
89
|
message: string;
|
|
90
90
|
}[];
|
|
91
91
|
tooltip?: readonly {
|
|
92
|
-
locale: "
|
|
92
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
93
93
|
message: string;
|
|
94
94
|
}[] | undefined;
|
|
95
95
|
icon?: string | undefined;
|
|
@@ -97,11 +97,11 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
97
97
|
hideTitle?: boolean | undefined;
|
|
98
98
|
modal?: Readonly<{
|
|
99
99
|
title?: readonly {
|
|
100
|
-
locale: "
|
|
100
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
101
101
|
message: string;
|
|
102
102
|
}[] | undefined;
|
|
103
103
|
description?: readonly {
|
|
104
|
-
locale: "
|
|
104
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
105
105
|
message: string;
|
|
106
106
|
}[] | undefined;
|
|
107
107
|
showCloseButton?: boolean | undefined;
|
|
@@ -111,28 +111,28 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
111
111
|
}> | Readonly<{
|
|
112
112
|
id: string;
|
|
113
113
|
title: readonly {
|
|
114
|
-
locale: "
|
|
114
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
115
115
|
message: string;
|
|
116
116
|
}[];
|
|
117
117
|
items: readonly Readonly<{
|
|
118
118
|
id: string;
|
|
119
119
|
title: readonly {
|
|
120
|
-
locale: "
|
|
120
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
121
121
|
message: string;
|
|
122
122
|
}[];
|
|
123
123
|
tooltip?: readonly {
|
|
124
|
-
locale: "
|
|
124
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
125
125
|
message: string;
|
|
126
126
|
}[] | undefined;
|
|
127
127
|
icon?: string | undefined;
|
|
128
128
|
variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
|
|
129
129
|
modal?: Readonly<{
|
|
130
130
|
title?: readonly {
|
|
131
|
-
locale: "
|
|
131
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
132
132
|
message: string;
|
|
133
133
|
}[] | undefined;
|
|
134
134
|
description?: readonly {
|
|
135
|
-
locale: "
|
|
135
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
136
136
|
message: string;
|
|
137
137
|
}[] | undefined;
|
|
138
138
|
showCloseButton?: boolean | undefined;
|
|
@@ -16,11 +16,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
16
16
|
items: readonly (Readonly<{
|
|
17
17
|
id: string;
|
|
18
18
|
title: readonly {
|
|
19
|
-
locale: "
|
|
19
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
20
20
|
message: string;
|
|
21
21
|
}[];
|
|
22
22
|
tooltip?: readonly {
|
|
23
|
-
locale: "
|
|
23
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
24
24
|
message: string;
|
|
25
25
|
}[] | undefined;
|
|
26
26
|
icon?: string | undefined;
|
|
@@ -28,11 +28,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
28
28
|
hideTitle?: boolean | undefined;
|
|
29
29
|
modal?: Readonly<{
|
|
30
30
|
title?: readonly {
|
|
31
|
-
locale: "
|
|
31
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
32
32
|
message: string;
|
|
33
33
|
}[] | undefined;
|
|
34
34
|
description?: readonly {
|
|
35
|
-
locale: "
|
|
35
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
36
36
|
message: string;
|
|
37
37
|
}[] | undefined;
|
|
38
38
|
showCloseButton?: boolean | undefined;
|
|
@@ -42,28 +42,28 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
42
42
|
}> | Readonly<{
|
|
43
43
|
id: string;
|
|
44
44
|
title: readonly {
|
|
45
|
-
locale: "
|
|
45
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
46
46
|
message: string;
|
|
47
47
|
}[];
|
|
48
48
|
items: readonly Readonly<{
|
|
49
49
|
id: string;
|
|
50
50
|
title: readonly {
|
|
51
|
-
locale: "
|
|
51
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
52
52
|
message: string;
|
|
53
53
|
}[];
|
|
54
54
|
tooltip?: readonly {
|
|
55
|
-
locale: "
|
|
55
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
56
56
|
message: string;
|
|
57
57
|
}[] | undefined;
|
|
58
58
|
icon?: string | undefined;
|
|
59
59
|
variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
|
|
60
60
|
modal?: Readonly<{
|
|
61
61
|
title?: readonly {
|
|
62
|
-
locale: "
|
|
62
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
63
63
|
message: string;
|
|
64
64
|
}[] | undefined;
|
|
65
65
|
description?: readonly {
|
|
66
|
-
locale: "
|
|
66
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
67
67
|
message: string;
|
|
68
68
|
}[] | undefined;
|
|
69
69
|
showCloseButton?: boolean | undefined;
|
|
@@ -88,11 +88,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
88
88
|
items: readonly (Readonly<{
|
|
89
89
|
id: string;
|
|
90
90
|
title: readonly {
|
|
91
|
-
locale: "
|
|
91
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
92
92
|
message: string;
|
|
93
93
|
}[];
|
|
94
94
|
tooltip?: readonly {
|
|
95
|
-
locale: "
|
|
95
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
96
96
|
message: string;
|
|
97
97
|
}[] | undefined;
|
|
98
98
|
icon?: string | undefined;
|
|
@@ -100,11 +100,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
100
100
|
hideTitle?: boolean | undefined;
|
|
101
101
|
modal?: Readonly<{
|
|
102
102
|
title?: readonly {
|
|
103
|
-
locale: "
|
|
103
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
104
104
|
message: string;
|
|
105
105
|
}[] | undefined;
|
|
106
106
|
description?: readonly {
|
|
107
|
-
locale: "
|
|
107
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
108
108
|
message: string;
|
|
109
109
|
}[] | undefined;
|
|
110
110
|
showCloseButton?: boolean | undefined;
|
|
@@ -114,28 +114,28 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
114
114
|
}> | Readonly<{
|
|
115
115
|
id: string;
|
|
116
116
|
title: readonly {
|
|
117
|
-
locale: "
|
|
117
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
118
118
|
message: string;
|
|
119
119
|
}[];
|
|
120
120
|
items: readonly Readonly<{
|
|
121
121
|
id: string;
|
|
122
122
|
title: readonly {
|
|
123
|
-
locale: "
|
|
123
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
124
124
|
message: string;
|
|
125
125
|
}[];
|
|
126
126
|
tooltip?: readonly {
|
|
127
|
-
locale: "
|
|
127
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
128
128
|
message: string;
|
|
129
129
|
}[] | undefined;
|
|
130
130
|
icon?: string | undefined;
|
|
131
131
|
variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
|
|
132
132
|
modal?: Readonly<{
|
|
133
133
|
title?: readonly {
|
|
134
|
-
locale: "
|
|
134
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
135
135
|
message: string;
|
|
136
136
|
}[] | undefined;
|
|
137
137
|
description?: readonly {
|
|
138
|
-
locale: "
|
|
138
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
139
139
|
message: string;
|
|
140
140
|
}[] | undefined;
|
|
141
141
|
showCloseButton?: boolean | undefined;
|
|
@@ -54,32 +54,16 @@ watch(currentConfig, (value) => {
|
|
|
54
54
|
}, { immediate: true });
|
|
55
55
|
const modalDefinitions = computed(() => {
|
|
56
56
|
const nextDefinitions = [];
|
|
57
|
-
for (const
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
for (const child of item.items) {
|
|
61
|
-
const render2 = slots[child.id];
|
|
62
|
-
if (render2) {
|
|
63
|
-
nextDefinitions.push({
|
|
64
|
-
definitionId: child.id,
|
|
65
|
-
ownerId: overlayOwnerId,
|
|
66
|
-
render: render2,
|
|
67
|
-
shell: getModalShell(child.modal)
|
|
68
|
-
});
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
continue;
|
|
72
|
-
}
|
|
73
|
-
const render = slots[item.id];
|
|
74
|
-
if (render) {
|
|
75
|
-
nextDefinitions.push({
|
|
76
|
-
definitionId: item.id,
|
|
77
|
-
ownerId: overlayOwnerId,
|
|
78
|
-
render,
|
|
79
|
-
shell: getModalShell(item.modal)
|
|
80
|
-
});
|
|
81
|
-
}
|
|
57
|
+
for (const [slotName, render] of Object.entries(slots)) {
|
|
58
|
+
if (!uuidPattern.test(slotName) || typeof render !== "function") {
|
|
59
|
+
continue;
|
|
82
60
|
}
|
|
61
|
+
nextDefinitions.push({
|
|
62
|
+
definitionId: slotName,
|
|
63
|
+
ownerId: overlayOwnerId,
|
|
64
|
+
render,
|
|
65
|
+
shell: getModalShell(findButtonAction(slotName)?.modal)
|
|
66
|
+
});
|
|
83
67
|
}
|
|
84
68
|
return nextDefinitions;
|
|
85
69
|
});
|
|
@@ -16,11 +16,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
16
16
|
items: readonly (Readonly<{
|
|
17
17
|
id: string;
|
|
18
18
|
title: readonly {
|
|
19
|
-
locale: "
|
|
19
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
20
20
|
message: string;
|
|
21
21
|
}[];
|
|
22
22
|
tooltip?: readonly {
|
|
23
|
-
locale: "
|
|
23
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
24
24
|
message: string;
|
|
25
25
|
}[] | undefined;
|
|
26
26
|
icon?: string | undefined;
|
|
@@ -28,11 +28,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
28
28
|
hideTitle?: boolean | undefined;
|
|
29
29
|
modal?: Readonly<{
|
|
30
30
|
title?: readonly {
|
|
31
|
-
locale: "
|
|
31
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
32
32
|
message: string;
|
|
33
33
|
}[] | undefined;
|
|
34
34
|
description?: readonly {
|
|
35
|
-
locale: "
|
|
35
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
36
36
|
message: string;
|
|
37
37
|
}[] | undefined;
|
|
38
38
|
showCloseButton?: boolean | undefined;
|
|
@@ -42,28 +42,28 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
42
42
|
}> | Readonly<{
|
|
43
43
|
id: string;
|
|
44
44
|
title: readonly {
|
|
45
|
-
locale: "
|
|
45
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
46
46
|
message: string;
|
|
47
47
|
}[];
|
|
48
48
|
items: readonly Readonly<{
|
|
49
49
|
id: string;
|
|
50
50
|
title: readonly {
|
|
51
|
-
locale: "
|
|
51
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
52
52
|
message: string;
|
|
53
53
|
}[];
|
|
54
54
|
tooltip?: readonly {
|
|
55
|
-
locale: "
|
|
55
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
56
56
|
message: string;
|
|
57
57
|
}[] | undefined;
|
|
58
58
|
icon?: string | undefined;
|
|
59
59
|
variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
|
|
60
60
|
modal?: Readonly<{
|
|
61
61
|
title?: readonly {
|
|
62
|
-
locale: "
|
|
62
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
63
63
|
message: string;
|
|
64
64
|
}[] | undefined;
|
|
65
65
|
description?: readonly {
|
|
66
|
-
locale: "
|
|
66
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
67
67
|
message: string;
|
|
68
68
|
}[] | undefined;
|
|
69
69
|
showCloseButton?: boolean | undefined;
|
|
@@ -88,11 +88,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
88
88
|
items: readonly (Readonly<{
|
|
89
89
|
id: string;
|
|
90
90
|
title: readonly {
|
|
91
|
-
locale: "
|
|
91
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
92
92
|
message: string;
|
|
93
93
|
}[];
|
|
94
94
|
tooltip?: readonly {
|
|
95
|
-
locale: "
|
|
95
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
96
96
|
message: string;
|
|
97
97
|
}[] | undefined;
|
|
98
98
|
icon?: string | undefined;
|
|
@@ -100,11 +100,11 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
100
100
|
hideTitle?: boolean | undefined;
|
|
101
101
|
modal?: Readonly<{
|
|
102
102
|
title?: readonly {
|
|
103
|
-
locale: "
|
|
103
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
104
104
|
message: string;
|
|
105
105
|
}[] | undefined;
|
|
106
106
|
description?: readonly {
|
|
107
|
-
locale: "
|
|
107
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
108
108
|
message: string;
|
|
109
109
|
}[] | undefined;
|
|
110
110
|
showCloseButton?: boolean | undefined;
|
|
@@ -114,28 +114,28 @@ declare const __VLS_export: import("vue").DefineComponent<{
|
|
|
114
114
|
}> | Readonly<{
|
|
115
115
|
id: string;
|
|
116
116
|
title: readonly {
|
|
117
|
-
locale: "
|
|
117
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
118
118
|
message: string;
|
|
119
119
|
}[];
|
|
120
120
|
items: readonly Readonly<{
|
|
121
121
|
id: string;
|
|
122
122
|
title: readonly {
|
|
123
|
-
locale: "
|
|
123
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
124
124
|
message: string;
|
|
125
125
|
}[];
|
|
126
126
|
tooltip?: readonly {
|
|
127
|
-
locale: "
|
|
127
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
128
128
|
message: string;
|
|
129
129
|
}[] | undefined;
|
|
130
130
|
icon?: string | undefined;
|
|
131
131
|
variant?: "default" | "destructive" | "primary" | "ghost" | undefined;
|
|
132
132
|
modal?: Readonly<{
|
|
133
133
|
title?: readonly {
|
|
134
|
-
locale: "
|
|
134
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
135
135
|
message: string;
|
|
136
136
|
}[] | undefined;
|
|
137
137
|
description?: readonly {
|
|
138
|
-
locale: "
|
|
138
|
+
locale: "en" | "ja" | "ko" | "zh";
|
|
139
139
|
message: string;
|
|
140
140
|
}[] | undefined;
|
|
141
141
|
showCloseButton?: boolean | undefined;
|