@shwfed/config 2.3.3 → 2.3.5

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 (44) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/runtime/components/actions/components/group.d.vue.ts +12 -10
  3. package/dist/runtime/components/actions/components/group.vue +47 -13
  4. package/dist/runtime/components/actions/components/group.vue.d.ts +12 -10
  5. package/dist/runtime/components/actions/config.d.vue.ts +13 -11
  6. package/dist/runtime/components/actions/config.vue +252 -35
  7. package/dist/runtime/components/actions/config.vue.d.ts +13 -11
  8. package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/config.d.vue.ts +37 -0
  9. package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/config.vue +61 -0
  10. package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/config.vue.d.ts +37 -0
  11. package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/runtime.d.vue.ts +7 -0
  12. package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/runtime.vue +22 -0
  13. package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/runtime.vue.d.ts +7 -0
  14. package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/schema.d.ts +23 -0
  15. package/dist/runtime/components/actions/items/2026-05-21/com.shwfed.actions.item.markdown/schema.js +29 -0
  16. package/dist/runtime/components/actions/schema.d.ts +400 -193
  17. package/dist/runtime/components/actions/schema.js +22 -4
  18. package/dist/runtime/components/actions/utils/resolve.d.ts +15 -0
  19. package/dist/runtime/components/actions/utils/resolve.js +45 -0
  20. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/config.d.vue.ts +10 -8
  21. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/config.vue.d.ts +10 -8
  22. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/runtime.d.vue.ts +10 -8
  23. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/runtime.vue.d.ts +10 -8
  24. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.actions/schema.d.ts +115 -57
  25. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/config.d.vue.ts +10 -8
  26. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/config.vue.d.ts +10 -8
  27. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/runtime.d.vue.ts +10 -8
  28. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/runtime.vue.d.ts +10 -8
  29. package/dist/runtime/components/config/blocks/2026-05-06/com.shwfed.block.table/schema.d.ts +120 -61
  30. package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.actions/config.d.vue.ts +10 -8
  31. package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.actions/config.vue.d.ts +10 -8
  32. package/dist/runtime/components/form/fields/2026-04-24/com.shwfed.form.field.actions/schema.d.ts +115 -57
  33. package/dist/runtime/components/table/columns/2026-04-14/com.shwfed.table.column.actions/schema.d.ts +115 -57
  34. package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.combobox-single/config.d.vue.ts +2 -2
  35. package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.combobox-single/config.vue.d.ts +2 -2
  36. package/dist/runtime/components/table/columns/2026-05-20/com.shwfed.table.column.combobox-single/runtime.vue +4 -4
  37. package/dist/runtime/components/table/schema.d.ts +125 -65
  38. package/dist/runtime/components/table/utils/row-reorder.js +16 -5
  39. package/dist/runtime/vendor/cel-js/CLAUDE.md +5 -1
  40. package/dist/runtime/vendor/cel-js/PROMPT.md +19 -0
  41. package/dist/runtime/vendor/cel-js/lib/evaluator.js +2 -0
  42. package/dist/runtime/vendor/cel-js/lib/form-builtins.d.ts +2 -0
  43. package/dist/runtime/vendor/cel-js/lib/form-builtins.js +58 -0
  44. package/package.json +1 -1
@@ -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,8 +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 groupId: string;
80
- readonly items: readonly {
79
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
81
80
  readonly disabled?: string | undefined;
82
81
  readonly id: string;
83
82
  readonly title: readonly [{
@@ -98,7 +97,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
98
97
  }[]] | undefined;
99
98
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
100
99
  readonly action?: any;
101
- }[];
100
+ })[];
101
+ readonly groupId: string;
102
+ readonly hideTitle?: boolean | undefined;
102
103
  })[];
103
104
  readonly groups: readonly {
104
105
  readonly id: string;
@@ -219,7 +220,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
219
220
  readonly size: "default" | "sm" | "xs";
220
221
  readonly style?: string | undefined;
221
222
  readonly gap: number;
222
- readonly items: readonly ({
223
+ readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
223
224
  readonly disabled?: string | undefined;
224
225
  readonly id: string;
225
226
  readonly title: readonly [{
@@ -252,8 +253,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
252
253
  readonly message: string;
253
254
  }[]];
254
255
  readonly icon?: string | undefined;
255
- readonly groupId: string;
256
- readonly items: readonly {
256
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
257
257
  readonly disabled?: string | undefined;
258
258
  readonly id: string;
259
259
  readonly title: readonly [{
@@ -274,7 +274,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_PublicProps, {},
274
274
  }[]] | undefined;
275
275
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
276
276
  readonly action?: any;
277
- }[];
277
+ })[];
278
+ readonly groupId: string;
279
+ readonly hideTitle?: boolean | undefined;
278
280
  })[];
279
281
  readonly groups: readonly {
280
282
  readonly id: string;
@@ -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,8 +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 groupId: string;
75
- readonly items: readonly {
74
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
76
75
  readonly disabled?: string | undefined;
77
76
  readonly id: string;
78
77
  readonly title: readonly [{
@@ -93,7 +92,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
93
92
  }[]] | undefined;
94
93
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
95
94
  readonly action?: any;
96
- }[];
95
+ })[];
96
+ readonly groupId: string;
97
+ readonly hideTitle?: boolean | undefined;
97
98
  })[];
98
99
  readonly groups: readonly {
99
100
  readonly id: string;
@@ -214,7 +215,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
214
215
  readonly size: "default" | "sm" | "xs";
215
216
  readonly style?: string | undefined;
216
217
  readonly gap: number;
217
- readonly items: readonly ({
218
+ readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
218
219
  readonly disabled?: string | undefined;
219
220
  readonly id: string;
220
221
  readonly title: readonly [{
@@ -247,8 +248,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
247
248
  readonly message: string;
248
249
  }[]];
249
250
  readonly icon?: string | undefined;
250
- readonly groupId: string;
251
- readonly items: readonly {
251
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
252
252
  readonly disabled?: string | undefined;
253
253
  readonly id: string;
254
254
  readonly title: readonly [{
@@ -269,7 +269,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
269
269
  }[]] | undefined;
270
270
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
271
271
  readonly action?: any;
272
- }[];
272
+ })[];
273
+ readonly groupId: string;
274
+ readonly hideTitle?: boolean | undefined;
273
275
  })[];
274
276
  readonly groups: readonly {
275
277
  readonly id: string;
@@ -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,8 +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 groupId: string;
75
- readonly items: readonly {
74
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
76
75
  readonly disabled?: string | undefined;
77
76
  readonly id: string;
78
77
  readonly title: readonly [{
@@ -93,7 +92,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
93
92
  }[]] | undefined;
94
93
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
95
94
  readonly action?: any;
96
- }[];
95
+ })[];
96
+ readonly groupId: string;
97
+ readonly hideTitle?: boolean | undefined;
97
98
  })[];
98
99
  readonly groups: readonly {
99
100
  readonly id: string;
@@ -214,7 +215,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
214
215
  readonly size: "default" | "sm" | "xs";
215
216
  readonly style?: string | undefined;
216
217
  readonly gap: number;
217
- readonly items: readonly ({
218
+ readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
218
219
  readonly disabled?: string | undefined;
219
220
  readonly id: string;
220
221
  readonly title: readonly [{
@@ -247,8 +248,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
247
248
  readonly message: string;
248
249
  }[]];
249
250
  readonly icon?: string | undefined;
250
- readonly groupId: string;
251
- readonly items: readonly {
251
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
252
252
  readonly disabled?: string | undefined;
253
253
  readonly id: string;
254
254
  readonly title: readonly [{
@@ -269,7 +269,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
269
269
  }[]] | undefined;
270
270
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
271
271
  readonly action?: any;
272
- }[];
272
+ })[];
273
+ readonly groupId: string;
274
+ readonly hideTitle?: boolean | undefined;
273
275
  })[];
274
276
  readonly groups: readonly {
275
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,8 +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 groupId: string;
90
- readonly items: readonly {
89
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
91
90
  readonly disabled?: string | undefined;
92
91
  readonly id: string;
93
92
  readonly title: readonly [{
@@ -108,7 +107,9 @@ export declare function schema(configure: (env: Environment) => void, _blockRef:
108
107
  }[]] | undefined;
109
108
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
110
109
  readonly action?: any;
111
- }[];
110
+ })[];
111
+ readonly groupId: string;
112
+ readonly hideTitle?: boolean | undefined;
112
113
  })[];
113
114
  readonly groups: readonly {
114
115
  readonly id: string;
@@ -231,63 +232,121 @@ export declare function schema(configure: (env: Environment) => void, _blockRef:
231
232
  id: Schema.refine<string, typeof Schema.String>;
232
233
  variant: Schema.optional<Schema.Literal<["default", "primary", "destructive", "ghost", "link"]>>;
233
234
  }>>;
234
- items: Schema.Array$<Schema.Union<[Schema.Struct<{
235
- id: Schema.refine<string, typeof Schema.String>;
236
- groupId: Schema.refine<string, typeof Schema.String>;
237
- title: Schema.TupleType<readonly [Schema.Struct<{
238
- locale: Schema.Literal<["zh"]>;
239
- message: Schema.SchemaClass<string, string, never>;
240
- }>], [Schema.Struct<{
241
- locale: Schema.Literal<["ja", "en", "ko"]>;
242
- message: Schema.SchemaClass<string, string, never>;
243
- }>]>;
244
- tooltip: Schema.optional<Schema.TupleType<readonly [Schema.Struct<{
245
- locale: Schema.Literal<["zh"]>;
246
- message: Schema.SchemaClass<string, string, never>;
247
- }>], [Schema.Struct<{
248
- locale: Schema.Literal<["ja", "en", "ko"]>;
249
- message: Schema.SchemaClass<string, string, never>;
250
- }>]>>;
251
- icon: Schema.optional<Schema.SchemaClass<string, string, never>>;
252
- hidden: Schema.optional<Schema.Schema<string, string, never>>;
253
- disabled: Schema.optional<Schema.Schema<string, string, never>>;
254
- variant: Schema.optional<Schema.Literal<["default", "primary", "destructive", "ghost", "link"]>>;
255
- hideTitle: Schema.optional<Schema.SchemaClass<boolean, boolean, never>>;
256
- action: Schema.optional<Schema.Schema<any, any, never>>;
257
- }>, Schema.Struct<{
258
- id: Schema.refine<string, typeof Schema.String>;
259
- groupId: Schema.refine<string, typeof Schema.String>;
260
- title: Schema.TupleType<readonly [Schema.Struct<{
261
- locale: Schema.Literal<["zh"]>;
262
- message: Schema.SchemaClass<string, string, never>;
263
- }>], [Schema.Struct<{
264
- locale: Schema.Literal<["ja", "en", "ko"]>;
265
- message: Schema.SchemaClass<string, string, never>;
266
- }>]>;
267
- icon: Schema.optional<Schema.SchemaClass<string, string, never>>;
268
- items: Schema.Array$<Schema.Struct<{
269
- id: Schema.refine<string, typeof Schema.String>;
270
- title: Schema.TupleType<readonly [Schema.Struct<{
271
- locale: Schema.Literal<["zh"]>;
272
- message: Schema.SchemaClass<string, string, never>;
273
- }>], [Schema.Struct<{
274
- locale: Schema.Literal<["ja", "en", "ko"]>;
275
- message: Schema.SchemaClass<string, string, never>;
276
- }>]>;
277
- tooltip: Schema.optional<Schema.TupleType<readonly [Schema.Struct<{
278
- locale: Schema.Literal<["zh"]>;
279
- message: Schema.SchemaClass<string, string, never>;
280
- }>], [Schema.Struct<{
281
- locale: Schema.Literal<["ja", "en", "ko"]>;
282
- message: Schema.SchemaClass<string, string, never>;
283
- }>]>>;
284
- icon: Schema.optional<Schema.SchemaClass<string, string, never>>;
285
- hidden: Schema.optional<Schema.Schema<string, string, never>>;
286
- disabled: Schema.optional<Schema.Schema<string, string, never>>;
287
- variant: Schema.optional<Schema.Literal<["default", "primary", "destructive", "ghost", "link"]>>;
288
- action: Schema.optional<Schema.Schema<any, any, never>>;
289
- }>>;
290
- }>]>>;
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>>;
291
350
  }>>;
292
351
  query: Schema.optional<Schema.refine<{
293
352
  readonly initial?: {
@@ -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,8 +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 groupId: string;
48
- readonly items: readonly {
47
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
49
48
  readonly disabled?: string | undefined;
50
49
  readonly id: string;
51
50
  readonly title: readonly [{
@@ -66,7 +65,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
66
65
  }[]] | undefined;
67
66
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
68
67
  readonly action?: any;
69
- }[];
68
+ })[];
69
+ readonly groupId: string;
70
+ readonly hideTitle?: boolean | undefined;
70
71
  })[];
71
72
  readonly groups: readonly {
72
73
  readonly id: string;
@@ -82,7 +83,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
82
83
  readonly displayName?: string | undefined;
83
84
  readonly gap: number;
84
85
  readonly compatibilityDate: "2026-04-24";
85
- readonly items: readonly ({
86
+ readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
86
87
  readonly disabled?: string | undefined;
87
88
  readonly id: string;
88
89
  readonly title: readonly [{
@@ -115,8 +116,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
115
116
  readonly message: string;
116
117
  }[]];
117
118
  readonly icon?: string | undefined;
118
- readonly groupId: string;
119
- readonly items: readonly {
119
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
120
120
  readonly disabled?: string | undefined;
121
121
  readonly id: string;
122
122
  readonly title: readonly [{
@@ -137,7 +137,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
137
137
  }[]] | undefined;
138
138
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
139
139
  readonly action?: any;
140
- }[];
140
+ })[];
141
+ readonly groupId: string;
142
+ readonly hideTitle?: boolean | undefined;
141
143
  })[];
142
144
  readonly groups: readonly {
143
145
  readonly id: string;
@@ -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,8 +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 groupId: string;
48
- readonly items: readonly {
47
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
49
48
  readonly disabled?: string | undefined;
50
49
  readonly id: string;
51
50
  readonly title: readonly [{
@@ -66,7 +65,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
66
65
  }[]] | undefined;
67
66
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
68
67
  readonly action?: any;
69
- }[];
68
+ })[];
69
+ readonly groupId: string;
70
+ readonly hideTitle?: boolean | undefined;
70
71
  })[];
71
72
  readonly groups: readonly {
72
73
  readonly id: string;
@@ -82,7 +83,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
82
83
  readonly displayName?: string | undefined;
83
84
  readonly gap: number;
84
85
  readonly compatibilityDate: "2026-04-24";
85
- readonly items: readonly ({
86
+ readonly items: readonly (import("../../../../actions/schema.js").RegistryItemValue | {
86
87
  readonly disabled?: string | undefined;
87
88
  readonly id: string;
88
89
  readonly title: readonly [{
@@ -115,8 +116,7 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
115
116
  readonly message: string;
116
117
  }[]];
117
118
  readonly icon?: string | undefined;
118
- readonly groupId: string;
119
- readonly items: readonly {
119
+ readonly items: readonly (import("../../../../actions/schema.js").RegistrySubItemValue | {
120
120
  readonly disabled?: string | undefined;
121
121
  readonly id: string;
122
122
  readonly title: readonly [{
@@ -137,7 +137,9 @@ declare const __VLS_export: import("vue").DefineComponent<__VLS_ModelProps, {},
137
137
  }[]] | undefined;
138
138
  readonly variant?: "default" | "link" | "destructive" | "primary" | "ghost" | undefined;
139
139
  readonly action?: any;
140
- }[];
140
+ })[];
141
+ readonly groupId: string;
142
+ readonly hideTitle?: boolean | undefined;
141
143
  })[];
142
144
  readonly groups: readonly {
143
145
  readonly id: string;