@shwfed/config 2.3.4 → 2.3.6
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/components/group.d.vue.ts +12 -12
- package/dist/runtime/components/actions/components/group.vue +46 -12
- package/dist/runtime/components/actions/components/group.vue.d.ts +12 -12
- package/dist/runtime/components/actions/config.d.vue.ts +13 -13
- package/dist/runtime/components/actions/config.vue +206 -16
- package/dist/runtime/components/actions/config.vue.d.ts +13 -13
- package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/config.d.vue.ts +37 -0
- package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/config.vue +61 -0
- package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/config.vue.d.ts +37 -0
- package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/runtime.d.vue.ts +7 -0
- package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/runtime.vue +28 -0
- package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/runtime.vue.d.ts +7 -0
- package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/schema.d.ts +23 -0
- package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/schema.js +29 -0
- package/dist/runtime/components/actions/schema.d.ts +399 -196
- package/dist/runtime/components/actions/schema.js +13 -4
- package/dist/runtime/components/actions/utils/resolve.d.ts +15 -0
- package/dist/runtime/components/actions/utils/resolve.js +45 -0
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/config.d.vue.ts +10 -10
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/config.vue.d.ts +10 -10
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/runtime.d.vue.ts +10 -10
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/runtime.vue.d.ts +10 -10
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/schema.d.ts +115 -58
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/config.d.vue.ts +10 -10
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/config.vue.d.ts +10 -10
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/runtime.d.vue.ts +10 -10
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/runtime.vue.d.ts +10 -10
- package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/schema.d.ts +120 -63
- package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.actions/config.d.vue.ts +10 -10
- package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.actions/config.vue.d.ts +10 -10
- package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.actions/schema.d.ts +115 -58
- package/dist/runtime/components/table/columns/2026-04-14/com.shwfed.table.column.actions/schema.d.ts +115 -58
- package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.combobox-single/config.d.vue.ts +2 -2
- package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.combobox-single/config.vue.d.ts +2 -2
- package/dist/runtime/components/table/schema.d.ts +125 -68
- package/package.json +1 -1
package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/config.vue.d.ts
CHANGED
|
@@ -43,7 +43,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
43
43
|
readonly size: "default" | "sm" | "xs";
|
|
44
44
|
readonly style?: string | undefined;
|
|
45
45
|
readonly gap: number;
|
|
46
|
-
readonly items: readonly ({
|
|
46
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
47
47
|
readonly disabled?: string | undefined;
|
|
48
48
|
readonly id: string;
|
|
49
49
|
readonly title: readonly [{
|
|
@@ -76,9 +76,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
76
76
|
readonly message: string;
|
|
77
77
|
}[]];
|
|
78
78
|
readonly icon?: string | undefined;
|
|
79
|
-
readonly
|
|
80
|
-
readonly hideTitle?: boolean | undefined;
|
|
81
|
-
readonly items: readonly {
|
|
79
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
82
80
|
readonly disabled?: string | undefined;
|
|
83
81
|
readonly id: string;
|
|
84
82
|
readonly title: readonly [{
|
|
@@ -99,7 +97,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
99
97
|
}[]] | undefined;
|
|
100
98
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
101
99
|
readonly action?: any;
|
|
102
|
-
}[];
|
|
100
|
+
})[];
|
|
101
|
+
readonly groupId: string;
|
|
102
|
+
readonly hideTitle?: boolean | undefined;
|
|
103
103
|
})[];
|
|
104
104
|
readonly groups: readonly {
|
|
105
105
|
readonly id: string;
|
|
@@ -220,7 +220,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
220
220
|
readonly size: "default" | "sm" | "xs";
|
|
221
221
|
readonly style?: string | undefined;
|
|
222
222
|
readonly gap: number;
|
|
223
|
-
readonly items: readonly ({
|
|
223
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
224
224
|
readonly disabled?: string | undefined;
|
|
225
225
|
readonly id: string;
|
|
226
226
|
readonly title: readonly [{
|
|
@@ -253,9 +253,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
253
253
|
readonly message: string;
|
|
254
254
|
}[]];
|
|
255
255
|
readonly icon?: string | undefined;
|
|
256
|
-
readonly
|
|
257
|
-
readonly hideTitle?: boolean | undefined;
|
|
258
|
-
readonly items: readonly {
|
|
256
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
259
257
|
readonly disabled?: string | undefined;
|
|
260
258
|
readonly id: string;
|
|
261
259
|
readonly title: readonly [{
|
|
@@ -276,7 +274,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
|
|
|
276
274
|
}[]] | undefined;
|
|
277
275
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
278
276
|
readonly action?: any;
|
|
279
|
-
}[];
|
|
277
|
+
})[];
|
|
278
|
+
readonly groupId: string;
|
|
279
|
+
readonly hideTitle?: boolean | undefined;
|
|
280
280
|
})[];
|
|
281
281
|
readonly groups: readonly {
|
|
282
282
|
readonly id: string;
|
package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/runtime.d.vue.ts
CHANGED
|
@@ -38,7 +38,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
38
38
|
readonly size: "default" | "sm" | "xs";
|
|
39
39
|
readonly style?: string | undefined;
|
|
40
40
|
readonly gap: number;
|
|
41
|
-
readonly items: readonly ({
|
|
41
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
42
42
|
readonly disabled?: string | undefined;
|
|
43
43
|
readonly id: string;
|
|
44
44
|
readonly title: readonly [{
|
|
@@ -71,9 +71,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
71
71
|
readonly message: string;
|
|
72
72
|
}[]];
|
|
73
73
|
readonly icon?: string | undefined;
|
|
74
|
-
readonly
|
|
75
|
-
readonly hideTitle?: boolean | undefined;
|
|
76
|
-
readonly items: readonly {
|
|
74
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
77
75
|
readonly disabled?: string | undefined;
|
|
78
76
|
readonly id: string;
|
|
79
77
|
readonly title: readonly [{
|
|
@@ -94,7 +92,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
94
92
|
}[]] | undefined;
|
|
95
93
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
96
94
|
readonly action?: any;
|
|
97
|
-
}[];
|
|
95
|
+
})[];
|
|
96
|
+
readonly groupId: string;
|
|
97
|
+
readonly hideTitle?: boolean | undefined;
|
|
98
98
|
})[];
|
|
99
99
|
readonly groups: readonly {
|
|
100
100
|
readonly id: string;
|
|
@@ -215,7 +215,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
215
215
|
readonly size: "default" | "sm" | "xs";
|
|
216
216
|
readonly style?: string | undefined;
|
|
217
217
|
readonly gap: number;
|
|
218
|
-
readonly items: readonly ({
|
|
218
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
219
219
|
readonly disabled?: string | undefined;
|
|
220
220
|
readonly id: string;
|
|
221
221
|
readonly title: readonly [{
|
|
@@ -248,9 +248,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
248
248
|
readonly message: string;
|
|
249
249
|
}[]];
|
|
250
250
|
readonly icon?: string | undefined;
|
|
251
|
-
readonly
|
|
252
|
-
readonly hideTitle?: boolean | undefined;
|
|
253
|
-
readonly items: readonly {
|
|
251
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
254
252
|
readonly disabled?: string | undefined;
|
|
255
253
|
readonly id: string;
|
|
256
254
|
readonly title: readonly [{
|
|
@@ -271,7 +269,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
271
269
|
}[]] | undefined;
|
|
272
270
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
273
271
|
readonly action?: any;
|
|
274
|
-
}[];
|
|
272
|
+
})[];
|
|
273
|
+
readonly groupId: string;
|
|
274
|
+
readonly hideTitle?: boolean | undefined;
|
|
275
275
|
})[];
|
|
276
276
|
readonly groups: readonly {
|
|
277
277
|
readonly id: string;
|
package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/runtime.vue.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
38
38
|
readonly size: "default" | "sm" | "xs";
|
|
39
39
|
readonly style?: string | undefined;
|
|
40
40
|
readonly gap: number;
|
|
41
|
-
readonly items: readonly ({
|
|
41
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
42
42
|
readonly disabled?: string | undefined;
|
|
43
43
|
readonly id: string;
|
|
44
44
|
readonly title: readonly [{
|
|
@@ -71,9 +71,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
71
71
|
readonly message: string;
|
|
72
72
|
}[]];
|
|
73
73
|
readonly icon?: string | undefined;
|
|
74
|
-
readonly
|
|
75
|
-
readonly hideTitle?: boolean | undefined;
|
|
76
|
-
readonly items: readonly {
|
|
74
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
77
75
|
readonly disabled?: string | undefined;
|
|
78
76
|
readonly id: string;
|
|
79
77
|
readonly title: readonly [{
|
|
@@ -94,7 +92,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
94
92
|
}[]] | undefined;
|
|
95
93
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
96
94
|
readonly action?: any;
|
|
97
|
-
}[];
|
|
95
|
+
})[];
|
|
96
|
+
readonly groupId: string;
|
|
97
|
+
readonly hideTitle?: boolean | undefined;
|
|
98
98
|
})[];
|
|
99
99
|
readonly groups: readonly {
|
|
100
100
|
readonly id: string;
|
|
@@ -215,7 +215,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
215
215
|
readonly size: "default" | "sm" | "xs";
|
|
216
216
|
readonly style?: string | undefined;
|
|
217
217
|
readonly gap: number;
|
|
218
|
-
readonly items: readonly ({
|
|
218
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
219
219
|
readonly disabled?: string | undefined;
|
|
220
220
|
readonly id: string;
|
|
221
221
|
readonly title: readonly [{
|
|
@@ -248,9 +248,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
248
248
|
readonly message: string;
|
|
249
249
|
}[]];
|
|
250
250
|
readonly icon?: string | undefined;
|
|
251
|
-
readonly
|
|
252
|
-
readonly hideTitle?: boolean | undefined;
|
|
253
|
-
readonly items: readonly {
|
|
251
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
254
252
|
readonly disabled?: string | undefined;
|
|
255
253
|
readonly id: string;
|
|
256
254
|
readonly title: readonly [{
|
|
@@ -271,7 +269,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
271
269
|
}[]] | undefined;
|
|
272
270
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
273
271
|
readonly action?: any;
|
|
274
|
-
}[];
|
|
272
|
+
})[];
|
|
273
|
+
readonly groupId: string;
|
|
274
|
+
readonly hideTitle?: boolean | undefined;
|
|
275
275
|
})[];
|
|
276
276
|
readonly groups: readonly {
|
|
277
277
|
readonly id: string;
|
|
@@ -53,7 +53,7 @@ export declare function schema(configure: (env: Environment) => void, _blockRef:
|
|
|
53
53
|
readonly size: "default" | "sm" | "xs";
|
|
54
54
|
readonly style?: string | undefined;
|
|
55
55
|
readonly gap: number;
|
|
56
|
-
readonly items: readonly ({
|
|
56
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
57
57
|
readonly disabled?: string | undefined;
|
|
58
58
|
readonly id: string;
|
|
59
59
|
readonly title: readonly [{
|
|
@@ -86,9 +86,7 @@ export declare function schema(configure: (env: Environment) => void, _blockRef:
|
|
|
86
86
|
readonly message: string;
|
|
87
87
|
}[]];
|
|
88
88
|
readonly icon?: string | undefined;
|
|
89
|
-
readonly
|
|
90
|
-
readonly hideTitle?: boolean | undefined;
|
|
91
|
-
readonly items: readonly {
|
|
89
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
92
90
|
readonly disabled?: string | undefined;
|
|
93
91
|
readonly id: string;
|
|
94
92
|
readonly title: readonly [{
|
|
@@ -109,7 +107,9 @@ export declare function schema(configure: (env: Environment) => void, _blockRef:
|
|
|
109
107
|
}[]] | undefined;
|
|
110
108
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
111
109
|
readonly action?: any;
|
|
112
|
-
}[];
|
|
110
|
+
})[];
|
|
111
|
+
readonly groupId: string;
|
|
112
|
+
readonly hideTitle?: boolean | undefined;
|
|
113
113
|
})[];
|
|
114
114
|
readonly groups: readonly {
|
|
115
115
|
readonly id: string;
|
|
@@ -232,64 +232,121 @@ export declare function schema(configure: (env: Environment) => void, _blockRef:
|
|
|
232
232
|
id: Schema.refine<string, typeof Schema.String>;
|
|
233
233
|
variant: Schema.optional<Schema.Literal<["default", "primary", "destructive", "ghost", "link"]>>;
|
|
234
234
|
}>>;
|
|
235
|
-
items: Schema.Array$<Schema.
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
title:
|
|
239
|
-
locale:
|
|
240
|
-
message:
|
|
241
|
-
}
|
|
242
|
-
locale:
|
|
243
|
-
message:
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
}
|
|
259
|
-
id:
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
}
|
|
235
|
+
items: Schema.Array$<Schema.Schema<import("../../../../actions/schema.js").RegistryItemValue | {
|
|
236
|
+
readonly disabled?: string | undefined;
|
|
237
|
+
readonly id: string;
|
|
238
|
+
readonly title: readonly [{
|
|
239
|
+
readonly locale: "zh";
|
|
240
|
+
readonly message: string;
|
|
241
|
+
}, ...{
|
|
242
|
+
readonly locale: "en" | "ja" | "ko";
|
|
243
|
+
readonly message: string;
|
|
244
|
+
}[]];
|
|
245
|
+
readonly icon?: string | undefined;
|
|
246
|
+
readonly hidden?: string | undefined;
|
|
247
|
+
readonly tooltip?: readonly [{
|
|
248
|
+
readonly locale: "zh";
|
|
249
|
+
readonly message: string;
|
|
250
|
+
}, ...{
|
|
251
|
+
readonly locale: "en" | "ja" | "ko";
|
|
252
|
+
readonly message: string;
|
|
253
|
+
}[]] | undefined;
|
|
254
|
+
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
255
|
+
readonly action?: any;
|
|
256
|
+
readonly groupId: string;
|
|
257
|
+
readonly hideTitle?: boolean | undefined;
|
|
258
|
+
} | {
|
|
259
|
+
readonly id: string;
|
|
260
|
+
readonly title: readonly [{
|
|
261
|
+
readonly locale: "zh";
|
|
262
|
+
readonly message: string;
|
|
263
|
+
}, ...{
|
|
264
|
+
readonly locale: "en" | "ja" | "ko";
|
|
265
|
+
readonly message: string;
|
|
266
|
+
}[]];
|
|
267
|
+
readonly icon?: string | undefined;
|
|
268
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
269
|
+
readonly disabled?: string | undefined;
|
|
270
|
+
readonly id: string;
|
|
271
|
+
readonly title: readonly [{
|
|
272
|
+
readonly locale: "zh";
|
|
273
|
+
readonly message: string;
|
|
274
|
+
}, ...{
|
|
275
|
+
readonly locale: "en" | "ja" | "ko";
|
|
276
|
+
readonly message: string;
|
|
277
|
+
}[]];
|
|
278
|
+
readonly icon?: string | undefined;
|
|
279
|
+
readonly hidden?: string | undefined;
|
|
280
|
+
readonly tooltip?: readonly [{
|
|
281
|
+
readonly locale: "zh";
|
|
282
|
+
readonly message: string;
|
|
283
|
+
}, ...{
|
|
284
|
+
readonly locale: "en" | "ja" | "ko";
|
|
285
|
+
readonly message: string;
|
|
286
|
+
}[]] | undefined;
|
|
287
|
+
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
288
|
+
readonly action?: any;
|
|
289
|
+
})[];
|
|
290
|
+
readonly groupId: string;
|
|
291
|
+
readonly hideTitle?: boolean | undefined;
|
|
292
|
+
}, import("../../../../actions/schema.js").RegistryItemValue | {
|
|
293
|
+
readonly id: string;
|
|
294
|
+
readonly title: readonly [{
|
|
295
|
+
readonly locale: "zh";
|
|
296
|
+
readonly message: string;
|
|
297
|
+
}, ...{
|
|
298
|
+
readonly locale: "en" | "ja" | "ko";
|
|
299
|
+
readonly message: string;
|
|
300
|
+
}[]];
|
|
301
|
+
readonly groupId: string;
|
|
302
|
+
readonly disabled?: string | undefined;
|
|
303
|
+
readonly icon?: string | undefined;
|
|
304
|
+
readonly hidden?: string | undefined;
|
|
305
|
+
readonly tooltip?: readonly [{
|
|
306
|
+
readonly locale: "zh";
|
|
307
|
+
readonly message: string;
|
|
308
|
+
}, ...{
|
|
309
|
+
readonly locale: "en" | "ja" | "ko";
|
|
310
|
+
readonly message: string;
|
|
311
|
+
}[]] | undefined;
|
|
312
|
+
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
313
|
+
readonly action?: any;
|
|
314
|
+
readonly hideTitle?: boolean | undefined;
|
|
315
|
+
} | {
|
|
316
|
+
readonly id: string;
|
|
317
|
+
readonly title: readonly [{
|
|
318
|
+
readonly locale: "zh";
|
|
319
|
+
readonly message: string;
|
|
320
|
+
}, ...{
|
|
321
|
+
readonly locale: "en" | "ja" | "ko";
|
|
322
|
+
readonly message: string;
|
|
323
|
+
}[]];
|
|
324
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
325
|
+
readonly id: string;
|
|
326
|
+
readonly title: readonly [{
|
|
327
|
+
readonly locale: "zh";
|
|
328
|
+
readonly message: string;
|
|
329
|
+
}, ...{
|
|
330
|
+
readonly locale: "en" | "ja" | "ko";
|
|
331
|
+
readonly message: string;
|
|
332
|
+
}[]];
|
|
333
|
+
readonly disabled?: string | undefined;
|
|
334
|
+
readonly icon?: string | undefined;
|
|
335
|
+
readonly hidden?: string | undefined;
|
|
336
|
+
readonly tooltip?: readonly [{
|
|
337
|
+
readonly locale: "zh";
|
|
338
|
+
readonly message: string;
|
|
339
|
+
}, ...{
|
|
340
|
+
readonly locale: "en" | "ja" | "ko";
|
|
341
|
+
readonly message: string;
|
|
342
|
+
}[]] | undefined;
|
|
343
|
+
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
344
|
+
readonly action?: any;
|
|
345
|
+
})[];
|
|
346
|
+
readonly groupId: string;
|
|
347
|
+
readonly icon?: string | undefined;
|
|
348
|
+
readonly hideTitle?: boolean | undefined;
|
|
349
|
+
}, never>>;
|
|
293
350
|
}>>;
|
|
294
351
|
query: Schema.optional<Schema.refine<{
|
|
295
352
|
readonly initial?: {
|
package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.actions/config.d.vue.ts
CHANGED
|
@@ -11,7 +11,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
11
11
|
readonly displayName?: string | undefined;
|
|
12
12
|
readonly gap: number;
|
|
13
13
|
readonly compatibilityDate: "2026-04-24";
|
|
14
|
-
readonly items: readonly ({
|
|
14
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
15
15
|
readonly disabled?: string | undefined;
|
|
16
16
|
readonly id: string;
|
|
17
17
|
readonly title: readonly [{
|
|
@@ -44,9 +44,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
44
44
|
readonly message: string;
|
|
45
45
|
}[]];
|
|
46
46
|
readonly icon?: string | undefined;
|
|
47
|
-
readonly
|
|
48
|
-
readonly hideTitle?: boolean | undefined;
|
|
49
|
-
readonly items: readonly {
|
|
47
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
50
48
|
readonly disabled?: string | undefined;
|
|
51
49
|
readonly id: string;
|
|
52
50
|
readonly title: readonly [{
|
|
@@ -67,7 +65,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
67
65
|
}[]] | undefined;
|
|
68
66
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
69
67
|
readonly action?: any;
|
|
70
|
-
}[];
|
|
68
|
+
})[];
|
|
69
|
+
readonly groupId: string;
|
|
70
|
+
readonly hideTitle?: boolean | undefined;
|
|
71
71
|
})[];
|
|
72
72
|
readonly groups: readonly {
|
|
73
73
|
readonly id: string;
|
|
@@ -83,7 +83,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
83
83
|
readonly displayName?: string | undefined;
|
|
84
84
|
readonly gap: number;
|
|
85
85
|
readonly compatibilityDate: "2026-04-24";
|
|
86
|
-
readonly items: readonly ({
|
|
86
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
87
87
|
readonly disabled?: string | undefined;
|
|
88
88
|
readonly id: string;
|
|
89
89
|
readonly title: readonly [{
|
|
@@ -116,9 +116,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
116
116
|
readonly message: string;
|
|
117
117
|
}[]];
|
|
118
118
|
readonly icon?: string | undefined;
|
|
119
|
-
readonly
|
|
120
|
-
readonly hideTitle?: boolean | undefined;
|
|
121
|
-
readonly items: readonly {
|
|
119
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
122
120
|
readonly disabled?: string | undefined;
|
|
123
121
|
readonly id: string;
|
|
124
122
|
readonly title: readonly [{
|
|
@@ -139,7 +137,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
139
137
|
}[]] | undefined;
|
|
140
138
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
141
139
|
readonly action?: any;
|
|
142
|
-
}[];
|
|
140
|
+
})[];
|
|
141
|
+
readonly groupId: string;
|
|
142
|
+
readonly hideTitle?: boolean | undefined;
|
|
143
143
|
})[];
|
|
144
144
|
readonly groups: readonly {
|
|
145
145
|
readonly id: string;
|
package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.actions/config.vue.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
11
11
|
readonly displayName?: string | undefined;
|
|
12
12
|
readonly gap: number;
|
|
13
13
|
readonly compatibilityDate: "2026-04-24";
|
|
14
|
-
readonly items: readonly ({
|
|
14
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
15
15
|
readonly disabled?: string | undefined;
|
|
16
16
|
readonly id: string;
|
|
17
17
|
readonly title: readonly [{
|
|
@@ -44,9 +44,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
44
44
|
readonly message: string;
|
|
45
45
|
}[]];
|
|
46
46
|
readonly icon?: string | undefined;
|
|
47
|
-
readonly
|
|
48
|
-
readonly hideTitle?: boolean | undefined;
|
|
49
|
-
readonly items: readonly {
|
|
47
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
50
48
|
readonly disabled?: string | undefined;
|
|
51
49
|
readonly id: string;
|
|
52
50
|
readonly title: readonly [{
|
|
@@ -67,7 +65,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
67
65
|
}[]] | undefined;
|
|
68
66
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
69
67
|
readonly action?: any;
|
|
70
|
-
}[];
|
|
68
|
+
})[];
|
|
69
|
+
readonly groupId: string;
|
|
70
|
+
readonly hideTitle?: boolean | undefined;
|
|
71
71
|
})[];
|
|
72
72
|
readonly groups: readonly {
|
|
73
73
|
readonly id: string;
|
|
@@ -83,7 +83,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
83
83
|
readonly displayName?: string | undefined;
|
|
84
84
|
readonly gap: number;
|
|
85
85
|
readonly compatibilityDate: "2026-04-24";
|
|
86
|
-
readonly items: readonly ({
|
|
86
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
|
|
87
87
|
readonly disabled?: string | undefined;
|
|
88
88
|
readonly id: string;
|
|
89
89
|
readonly title: readonly [{
|
|
@@ -116,9 +116,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
116
116
|
readonly message: string;
|
|
117
117
|
}[]];
|
|
118
118
|
readonly icon?: string | undefined;
|
|
119
|
-
readonly
|
|
120
|
-
readonly hideTitle?: boolean | undefined;
|
|
121
|
-
readonly items: readonly {
|
|
119
|
+
readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
|
|
122
120
|
readonly disabled?: string | undefined;
|
|
123
121
|
readonly id: string;
|
|
124
122
|
readonly title: readonly [{
|
|
@@ -139,7 +137,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
|
|
|
139
137
|
}[]] | undefined;
|
|
140
138
|
readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
|
|
141
139
|
readonly action?: any;
|
|
142
|
-
}[];
|
|
140
|
+
})[];
|
|
141
|
+
readonly groupId: string;
|
|
142
|
+
readonly hideTitle?: boolean | undefined;
|
|
143
143
|
})[];
|
|
144
144
|
readonly groups: readonly {
|
|
145
145
|
readonly id: string;
|