@tachybase/module-cloud-component 0.23.8

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 (109) hide show
  1. package/.turbo/turbo-build.log +9 -0
  2. package/README.md +1 -0
  3. package/client.d.ts +2 -0
  4. package/client.js +1 -0
  5. package/dist/client/CloudComponent.provider.d.ts +2 -0
  6. package/dist/client/cloud-library-manager/CloudLibrary.collection.d.ts +2 -0
  7. package/dist/client/cloud-library-manager/CloudLibraryManager.d.ts +2 -0
  8. package/dist/client/cloud-library-manager/CloudLibraryManager.fields.d.ts +82 -0
  9. package/dist/client/cloud-library-manager/CloudLibraryManager.schema.d.ts +1075 -0
  10. package/dist/client/components/CloudComponentLink.d.ts +2 -0
  11. package/dist/client/components/ComponentEditor.d.ts +6 -0
  12. package/dist/client/components/MarkdownEditor.d.ts +9 -0
  13. package/dist/client/components/Preview.d.ts +9 -0
  14. package/dist/client/index.d.ts +8 -0
  15. package/dist/client/index.js +1107 -0
  16. package/dist/client/locale.d.ts +9 -0
  17. package/dist/client/settings/CloudComponentBlock.d.ts +4 -0
  18. package/dist/client/settings/InitializerItem.d.ts +2 -0
  19. package/dist/client/settings/schema.d.ts +2 -0
  20. package/dist/client/settings/settings.d.ts +2 -0
  21. package/dist/externalVersion.js +15 -0
  22. package/dist/index.d.ts +2 -0
  23. package/dist/index.js +39 -0
  24. package/dist/locale/en-US.json +12 -0
  25. package/dist/locale/zh-CN.json +12 -0
  26. package/dist/node_modules/@babel/core/LICENSE +22 -0
  27. package/dist/node_modules/@babel/core/cjs-proxy.cjs +68 -0
  28. package/dist/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
  29. package/dist/node_modules/@babel/core/lib/config/caching.js +261 -0
  30. package/dist/node_modules/@babel/core/lib/config/config-chain.js +469 -0
  31. package/dist/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
  32. package/dist/node_modules/@babel/core/lib/config/files/configuration.js +287 -0
  33. package/dist/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  34. package/dist/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
  35. package/dist/node_modules/@babel/core/lib/config/files/index.js +78 -0
  36. package/dist/node_modules/@babel/core/lib/config/files/module-types.js +195 -0
  37. package/dist/node_modules/@babel/core/lib/config/files/package.js +61 -0
  38. package/dist/node_modules/@babel/core/lib/config/files/plugins.js +229 -0
  39. package/dist/node_modules/@babel/core/lib/config/files/types.js +3 -0
  40. package/dist/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  41. package/dist/node_modules/@babel/core/lib/config/full.js +312 -0
  42. package/dist/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
  43. package/dist/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  44. package/dist/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  45. package/dist/node_modules/@babel/core/lib/config/index.js +93 -0
  46. package/dist/node_modules/@babel/core/lib/config/item.js +67 -0
  47. package/dist/node_modules/@babel/core/lib/config/partial.js +158 -0
  48. package/dist/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  49. package/dist/node_modules/@babel/core/lib/config/plugin.js +33 -0
  50. package/dist/node_modules/@babel/core/lib/config/printer.js +113 -0
  51. package/dist/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  52. package/dist/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  53. package/dist/node_modules/@babel/core/lib/config/util.js +31 -0
  54. package/dist/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  55. package/dist/node_modules/@babel/core/lib/config/validation/options.js +189 -0
  56. package/dist/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  57. package/dist/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
  58. package/dist/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  59. package/dist/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  60. package/dist/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
  61. package/dist/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
  62. package/dist/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
  63. package/dist/node_modules/@babel/core/lib/index.js +227 -0
  64. package/dist/node_modules/@babel/core/lib/parse.js +47 -0
  65. package/dist/node_modules/@babel/core/lib/parser/index.js +79 -0
  66. package/dist/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
  67. package/dist/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
  68. package/dist/node_modules/@babel/core/lib/transform-ast.js +50 -0
  69. package/dist/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
  70. package/dist/node_modules/@babel/core/lib/transform-file.js +40 -0
  71. package/dist/node_modules/@babel/core/lib/transform.js +49 -0
  72. package/dist/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
  73. package/dist/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +4 -0
  74. package/dist/node_modules/@babel/core/lib/transformation/file/file.js +214 -0
  75. package/dist/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  76. package/dist/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  77. package/dist/node_modules/@babel/core/lib/transformation/index.js +92 -0
  78. package/dist/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
  79. package/dist/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  80. package/dist/node_modules/@babel/core/lib/transformation/plugin-pass.js +50 -0
  81. package/dist/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
  82. package/dist/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1043 -0
  83. package/dist/node_modules/@babel/core/node_modules/.bin/json5 +17 -0
  84. package/dist/node_modules/@babel/core/node_modules/.bin/parser +17 -0
  85. package/dist/node_modules/@babel/core/node_modules/.bin/semver +17 -0
  86. package/dist/node_modules/@babel/core/package.json +1 -0
  87. package/dist/node_modules/@babel/core/src/config/files/index-browser.ts +113 -0
  88. package/dist/node_modules/@babel/core/src/config/files/index.ts +29 -0
  89. package/dist/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
  90. package/dist/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
  91. package/dist/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
  92. package/dist/node_modules/@babel/core/src/transform-file.ts +55 -0
  93. package/dist/server/actions/cloud-libraries-controller.d.ts +7 -0
  94. package/dist/server/actions/cloud-libraries-controller.js +147 -0
  95. package/dist/server/collections/cloud-libraries.d.ts +2 -0
  96. package/dist/server/collections/cloud-libraries.js +98 -0
  97. package/dist/server/collections/effect-libraries.d.ts +2 -0
  98. package/dist/server/collections/effect-libraries.js +78 -0
  99. package/dist/server/index.d.ts +1 -0
  100. package/dist/server/index.js +33 -0
  101. package/dist/server/plugin.d.ts +4 -0
  102. package/dist/server/plugin.js +87 -0
  103. package/dist/server/services/cloud-compiler.d.ts +8 -0
  104. package/dist/server/services/cloud-compiler.js +116 -0
  105. package/dist/server/services/cloud-libraries-service.d.ts +11 -0
  106. package/dist/server/services/cloud-libraries-service.js +196 -0
  107. package/package.json +44 -0
  108. package/server.d.ts +2 -0
  109. package/server.js +1 -0
@@ -0,0 +1,1075 @@
1
+ export declare const table: {
2
+ type: string;
3
+ 'x-decorator': string;
4
+ 'x-acl-action': string;
5
+ 'x-use-decorator-props': string;
6
+ 'x-decorator-props': {
7
+ collection: string;
8
+ dataSource: string;
9
+ action: string;
10
+ params: {
11
+ pageSize: number;
12
+ };
13
+ rowKey: string;
14
+ showIndex: boolean;
15
+ dragSort: boolean;
16
+ };
17
+ 'x-component': string;
18
+ 'x-filter-targets': any[];
19
+ properties: {
20
+ actions: {
21
+ type: string;
22
+ 'x-component': string;
23
+ 'x-component-props': {
24
+ style: {
25
+ marginBottom: string;
26
+ };
27
+ };
28
+ properties: {
29
+ create: {
30
+ type: string;
31
+ 'x-action': string;
32
+ 'x-acl-action': string;
33
+ title: string;
34
+ 'x-component': string;
35
+ 'x-decorator': string;
36
+ 'x-component-props': {
37
+ openMode: string;
38
+ type: string;
39
+ component: string;
40
+ icon: string;
41
+ };
42
+ 'x-align': string;
43
+ 'x-acl-action-props': {
44
+ skipScopeCheck: boolean;
45
+ };
46
+ properties: {
47
+ drawer: {
48
+ type: string;
49
+ title: string;
50
+ 'x-component': string;
51
+ 'x-component-props': {
52
+ className: string;
53
+ };
54
+ properties: {
55
+ card: {
56
+ type: string;
57
+ 'x-acl-action-props': {
58
+ skipScopeCheck: boolean;
59
+ };
60
+ 'x-acl-action': string;
61
+ 'x-decorator': string;
62
+ 'x-use-decorator-props': string;
63
+ 'x-decorator-props': {
64
+ dataSource: string;
65
+ collection: string;
66
+ };
67
+ 'x-component': string;
68
+ properties: {
69
+ form: {
70
+ type: string;
71
+ 'x-component': string;
72
+ 'x-use-component-props': string;
73
+ properties: {
74
+ editor: {
75
+ type: string;
76
+ 'x-component': string;
77
+ properties: {
78
+ actions: {
79
+ type: string;
80
+ 'x-component': string;
81
+ properties: {
82
+ submit: {
83
+ title: string;
84
+ 'x-action': string;
85
+ 'x-component': string;
86
+ 'x-use-component-props': string;
87
+ 'x-component-props': {
88
+ type: string;
89
+ htmlType: string;
90
+ };
91
+ type: string;
92
+ };
93
+ };
94
+ };
95
+ name: {
96
+ type: string;
97
+ 'x-component': string;
98
+ 'x-component-props': {
99
+ tab: string;
100
+ };
101
+ properties: {
102
+ module: {
103
+ type: string;
104
+ 'x-component': string;
105
+ 'x-decorator': string;
106
+ 'x-collection-field': string;
107
+ 'x-component-props': {};
108
+ };
109
+ name: {
110
+ type: string;
111
+ 'x-component': string;
112
+ 'x-decorator': string;
113
+ 'x-collection-field': string;
114
+ 'x-component-props': {};
115
+ };
116
+ };
117
+ };
118
+ };
119
+ };
120
+ };
121
+ };
122
+ };
123
+ };
124
+ };
125
+ };
126
+ };
127
+ };
128
+ import: {
129
+ type: string;
130
+ 'x-action': string;
131
+ 'x-acl-action': string;
132
+ title: string;
133
+ 'x-component': string;
134
+ 'x-decorator': string;
135
+ 'x-component-props': {
136
+ type: string;
137
+ icon: string;
138
+ disabled: boolean;
139
+ };
140
+ 'x-align': string;
141
+ 'x-acl-action-props': {
142
+ skipScopeCheck: boolean;
143
+ };
144
+ };
145
+ };
146
+ };
147
+ table: {
148
+ type: string;
149
+ 'x-component': string;
150
+ 'x-use-component-props': string;
151
+ 'x-component-props': {
152
+ rowKey: string;
153
+ rowSelection: {
154
+ type: string;
155
+ };
156
+ };
157
+ properties: {
158
+ module: {
159
+ type: string;
160
+ 'x-decorator': string;
161
+ 'x-component': string;
162
+ properties: {
163
+ module: {
164
+ 'x-collection-field': string;
165
+ 'x-component': string;
166
+ 'x-component-props': {
167
+ ellipsis: boolean;
168
+ };
169
+ 'x-read-pretty': boolean;
170
+ 'x-decorator': any;
171
+ 'x-decorator-props': {
172
+ labelStyle: {
173
+ display: string;
174
+ };
175
+ };
176
+ };
177
+ };
178
+ };
179
+ name: {
180
+ type: string;
181
+ 'x-decorator': string;
182
+ 'x-component': string;
183
+ properties: {
184
+ name: {
185
+ 'x-collection-field': string;
186
+ 'x-component': string;
187
+ 'x-component-props': {
188
+ ellipsis: boolean;
189
+ };
190
+ 'x-read-pretty': boolean;
191
+ 'x-decorator': any;
192
+ 'x-decorator-props': {
193
+ labelStyle: {
194
+ display: string;
195
+ };
196
+ };
197
+ };
198
+ };
199
+ };
200
+ enabled: {
201
+ type: string;
202
+ 'x-decorator': string;
203
+ 'x-component': string;
204
+ 'x-component-props': {
205
+ width: number;
206
+ };
207
+ properties: {
208
+ enabled: {
209
+ 'x-collection-field': string;
210
+ 'x-component': string;
211
+ 'x-component-props': {
212
+ ellipsis: boolean;
213
+ };
214
+ 'x-read-pretty': boolean;
215
+ 'x-decorator': any;
216
+ 'x-decorator-props': {
217
+ labelStyle: {
218
+ display: string;
219
+ };
220
+ };
221
+ };
222
+ };
223
+ };
224
+ isClient: {
225
+ type: string;
226
+ 'x-decorator': string;
227
+ 'x-component': string;
228
+ 'x-component-props': {
229
+ width: number;
230
+ };
231
+ properties: {
232
+ isClient: {
233
+ 'x-collection-field': string;
234
+ 'x-component': string;
235
+ 'x-component-props': {
236
+ ellipsis: boolean;
237
+ };
238
+ 'x-read-pretty': boolean;
239
+ 'x-decorator': any;
240
+ 'x-decorator-props': {
241
+ labelStyle: {
242
+ display: string;
243
+ };
244
+ };
245
+ };
246
+ };
247
+ };
248
+ isServer: {
249
+ type: string;
250
+ 'x-decorator': string;
251
+ 'x-component': string;
252
+ 'x-component-props': {
253
+ width: number;
254
+ };
255
+ properties: {
256
+ isServer: {
257
+ 'x-collection-field': string;
258
+ 'x-component': string;
259
+ 'x-component-props': {
260
+ ellipsis: boolean;
261
+ };
262
+ 'x-read-pretty': boolean;
263
+ 'x-decorator': any;
264
+ 'x-decorator-props': {
265
+ labelStyle: {
266
+ display: string;
267
+ };
268
+ };
269
+ };
270
+ };
271
+ };
272
+ actions: {
273
+ type: string;
274
+ title: string;
275
+ 'x-action-column': string;
276
+ 'x-decorator': string;
277
+ 'x-component': string;
278
+ 'x-component-props': {
279
+ width: number;
280
+ fixed: string;
281
+ };
282
+ properties: {
283
+ actions: {
284
+ type: string;
285
+ 'x-component': string;
286
+ properties: {
287
+ edit: {
288
+ type: string;
289
+ title: string;
290
+ 'x-action': string;
291
+ 'x-component': string;
292
+ 'x-component-props': {
293
+ openMode: string;
294
+ icon: string;
295
+ };
296
+ 'x-decorator': string;
297
+ properties: {
298
+ drawer: {
299
+ type: string;
300
+ title: string;
301
+ 'x-component': string;
302
+ 'x-component-props': {
303
+ className: string;
304
+ };
305
+ properties: {
306
+ card: {
307
+ type: string;
308
+ 'x-acl-action-props': {
309
+ skipScopeCheck: boolean;
310
+ };
311
+ 'x-acl-action': string;
312
+ 'x-decorator': string;
313
+ 'x-use-decorator-props': string;
314
+ 'x-decorator-props': {
315
+ action: string;
316
+ dataSource: string;
317
+ collection: string;
318
+ };
319
+ 'x-component': string;
320
+ properties: {
321
+ form: {
322
+ type: string;
323
+ 'x-component': string;
324
+ 'x-use-component-props': string;
325
+ properties: {
326
+ editor: {
327
+ type: string;
328
+ 'x-component': string;
329
+ properties: {
330
+ actions: {
331
+ type: string;
332
+ 'x-component': string;
333
+ properties: {
334
+ actions: {
335
+ type: string;
336
+ 'x-component': string;
337
+ properties: {
338
+ save: {
339
+ title: string;
340
+ 'x-action': string;
341
+ 'x-component': string;
342
+ 'x-use-component-props': string;
343
+ 'x-component-props': {
344
+ type: string;
345
+ htmlType: string;
346
+ };
347
+ type: string;
348
+ };
349
+ history: {
350
+ title: string;
351
+ 'x-action': string;
352
+ 'x-component': string;
353
+ 'x-use-component-props': string;
354
+ 'x-component-props': {
355
+ type: string;
356
+ htmlType: string;
357
+ disabled: boolean;
358
+ };
359
+ type: string;
360
+ };
361
+ publish: {
362
+ title: string;
363
+ 'x-action': string;
364
+ 'x-component': string;
365
+ 'x-use-component-props': string;
366
+ 'x-component-props': {
367
+ disabled: boolean;
368
+ type: string;
369
+ htmlType: string;
370
+ };
371
+ type: string;
372
+ };
373
+ };
374
+ };
375
+ };
376
+ };
377
+ name: {
378
+ type: string;
379
+ 'x-component': string;
380
+ 'x-component-props': {
381
+ tab: string;
382
+ };
383
+ properties: {
384
+ module: {
385
+ type: string;
386
+ 'x-component': string;
387
+ 'x-decorator': string;
388
+ 'x-collection-field': string;
389
+ 'x-component-props': {};
390
+ };
391
+ name: {
392
+ type: string;
393
+ 'x-component': string;
394
+ 'x-decorator': string;
395
+ 'x-collection-field': string;
396
+ 'x-component-props': {};
397
+ };
398
+ enabled: {
399
+ type: string;
400
+ 'x-component': string;
401
+ 'x-decorator': string;
402
+ 'x-collection-field': string;
403
+ 'x-component-props': {};
404
+ };
405
+ isClient: {
406
+ type: string;
407
+ 'x-component': string;
408
+ 'x-decorator': string;
409
+ 'x-collection-field': string;
410
+ 'x-component-props': {};
411
+ };
412
+ isServer: {
413
+ type: string;
414
+ 'x-component': string;
415
+ 'x-decorator': string;
416
+ 'x-collection-field': string;
417
+ 'x-component-props': {};
418
+ };
419
+ clientPlugin: {
420
+ type: string;
421
+ 'x-component': string;
422
+ 'x-decorator': string;
423
+ 'x-collection-field': string;
424
+ 'x-component-props': {};
425
+ };
426
+ serverPlugin: {
427
+ type: string;
428
+ 'x-component': string;
429
+ 'x-decorator': string;
430
+ 'x-collection-field': string;
431
+ 'x-component-props': {};
432
+ };
433
+ component: {
434
+ type: string;
435
+ 'x-component': string;
436
+ 'x-decorator': string;
437
+ 'x-collection-field': string;
438
+ 'x-component-props': {};
439
+ };
440
+ };
441
+ };
442
+ code: {
443
+ type: string;
444
+ 'x-component': string;
445
+ 'x-component-props': {
446
+ tab: string;
447
+ };
448
+ properties: {
449
+ code: {
450
+ type: string;
451
+ 'x-component': string;
452
+ 'x-decorator': string;
453
+ 'x-collection-field': string;
454
+ 'x-component-props': {};
455
+ default: string;
456
+ };
457
+ };
458
+ };
459
+ data: {
460
+ type: string;
461
+ 'x-component': string;
462
+ 'x-component-props': {
463
+ tab: string;
464
+ };
465
+ properties: {
466
+ data: {
467
+ type: string;
468
+ 'x-component': string;
469
+ 'x-decorator': string;
470
+ 'x-collection-field': string;
471
+ 'x-component-props': {
472
+ default: string;
473
+ };
474
+ };
475
+ };
476
+ };
477
+ description: {
478
+ type: string;
479
+ 'x-component': string;
480
+ 'x-component-props': {
481
+ tab: string;
482
+ };
483
+ properties: {
484
+ description: {
485
+ type: string;
486
+ 'x-component': string;
487
+ 'x-decorator': string;
488
+ 'x-collection-field': string;
489
+ 'x-component-props': {};
490
+ };
491
+ };
492
+ };
493
+ };
494
+ };
495
+ };
496
+ };
497
+ };
498
+ };
499
+ };
500
+ };
501
+ };
502
+ };
503
+ delete: {
504
+ type: string;
505
+ title: string;
506
+ 'x-action': string;
507
+ 'x-component': string;
508
+ 'x-component-props': {
509
+ confirm: {
510
+ title: string;
511
+ content: string;
512
+ };
513
+ };
514
+ 'x-decorator': string;
515
+ 'x-use-component-props': string;
516
+ };
517
+ export: {
518
+ type: string;
519
+ title: string;
520
+ 'x-action': string;
521
+ 'x-component': string;
522
+ 'x-component-props': {
523
+ disabled: boolean;
524
+ };
525
+ 'x-decorator': string;
526
+ 'x-use-component-props': string;
527
+ };
528
+ };
529
+ };
530
+ };
531
+ };
532
+ };
533
+ };
534
+ };
535
+ };
536
+ export declare const schema: {
537
+ type: string;
538
+ properties: {
539
+ table: {
540
+ type: string;
541
+ 'x-decorator': string;
542
+ 'x-acl-action': string;
543
+ 'x-use-decorator-props': string;
544
+ 'x-decorator-props': {
545
+ collection: string;
546
+ dataSource: string;
547
+ action: string;
548
+ params: {
549
+ pageSize: number;
550
+ };
551
+ rowKey: string;
552
+ showIndex: boolean;
553
+ dragSort: boolean;
554
+ };
555
+ 'x-component': string;
556
+ 'x-filter-targets': any[];
557
+ properties: {
558
+ actions: {
559
+ type: string;
560
+ 'x-component': string;
561
+ 'x-component-props': {
562
+ style: {
563
+ marginBottom: string;
564
+ };
565
+ };
566
+ properties: {
567
+ create: {
568
+ type: string;
569
+ 'x-action': string;
570
+ 'x-acl-action': string;
571
+ title: string;
572
+ 'x-component': string;
573
+ 'x-decorator': string;
574
+ 'x-component-props': {
575
+ openMode: string;
576
+ type: string;
577
+ component: string;
578
+ icon: string;
579
+ };
580
+ 'x-align': string;
581
+ 'x-acl-action-props': {
582
+ skipScopeCheck: boolean;
583
+ };
584
+ properties: {
585
+ drawer: {
586
+ type: string;
587
+ title: string;
588
+ 'x-component': string;
589
+ 'x-component-props': {
590
+ className: string;
591
+ };
592
+ properties: {
593
+ card: {
594
+ type: string;
595
+ 'x-acl-action-props': {
596
+ skipScopeCheck: boolean;
597
+ };
598
+ 'x-acl-action': string;
599
+ 'x-decorator': string;
600
+ 'x-use-decorator-props': string;
601
+ 'x-decorator-props': {
602
+ dataSource: string;
603
+ collection: string;
604
+ };
605
+ 'x-component': string;
606
+ properties: {
607
+ form: {
608
+ type: string;
609
+ 'x-component': string;
610
+ 'x-use-component-props': string;
611
+ properties: {
612
+ editor: {
613
+ type: string;
614
+ 'x-component': string;
615
+ properties: {
616
+ actions: {
617
+ type: string;
618
+ 'x-component': string;
619
+ properties: {
620
+ submit: {
621
+ title: string;
622
+ 'x-action': string;
623
+ 'x-component': string;
624
+ 'x-use-component-props': string;
625
+ 'x-component-props': {
626
+ type: string;
627
+ htmlType: string;
628
+ };
629
+ type: string;
630
+ };
631
+ };
632
+ };
633
+ name: {
634
+ type: string;
635
+ 'x-component': string;
636
+ 'x-component-props': {
637
+ tab: string;
638
+ };
639
+ properties: {
640
+ module: {
641
+ type: string;
642
+ 'x-component': string;
643
+ 'x-decorator': string;
644
+ 'x-collection-field': string;
645
+ 'x-component-props': {};
646
+ };
647
+ name: {
648
+ type: string;
649
+ 'x-component': string;
650
+ 'x-decorator': string;
651
+ 'x-collection-field': string;
652
+ 'x-component-props': {};
653
+ };
654
+ };
655
+ };
656
+ };
657
+ };
658
+ };
659
+ };
660
+ };
661
+ };
662
+ };
663
+ };
664
+ };
665
+ };
666
+ import: {
667
+ type: string;
668
+ 'x-action': string;
669
+ 'x-acl-action': string;
670
+ title: string;
671
+ 'x-component': string;
672
+ 'x-decorator': string;
673
+ 'x-component-props': {
674
+ type: string;
675
+ icon: string;
676
+ disabled: boolean;
677
+ };
678
+ 'x-align': string;
679
+ 'x-acl-action-props': {
680
+ skipScopeCheck: boolean;
681
+ };
682
+ };
683
+ };
684
+ };
685
+ table: {
686
+ type: string;
687
+ 'x-component': string;
688
+ 'x-use-component-props': string;
689
+ 'x-component-props': {
690
+ rowKey: string;
691
+ rowSelection: {
692
+ type: string;
693
+ };
694
+ };
695
+ properties: {
696
+ module: {
697
+ type: string;
698
+ 'x-decorator': string;
699
+ 'x-component': string;
700
+ properties: {
701
+ module: {
702
+ 'x-collection-field': string;
703
+ 'x-component': string;
704
+ 'x-component-props': {
705
+ ellipsis: boolean;
706
+ };
707
+ 'x-read-pretty': boolean;
708
+ 'x-decorator': any;
709
+ 'x-decorator-props': {
710
+ labelStyle: {
711
+ display: string;
712
+ };
713
+ };
714
+ };
715
+ };
716
+ };
717
+ name: {
718
+ type: string;
719
+ 'x-decorator': string;
720
+ 'x-component': string;
721
+ properties: {
722
+ name: {
723
+ 'x-collection-field': string;
724
+ 'x-component': string;
725
+ 'x-component-props': {
726
+ ellipsis: boolean;
727
+ };
728
+ 'x-read-pretty': boolean;
729
+ 'x-decorator': any;
730
+ 'x-decorator-props': {
731
+ labelStyle: {
732
+ display: string;
733
+ };
734
+ };
735
+ };
736
+ };
737
+ };
738
+ enabled: {
739
+ type: string;
740
+ 'x-decorator': string;
741
+ 'x-component': string;
742
+ 'x-component-props': {
743
+ width: number;
744
+ };
745
+ properties: {
746
+ enabled: {
747
+ 'x-collection-field': string;
748
+ 'x-component': string;
749
+ 'x-component-props': {
750
+ ellipsis: boolean;
751
+ };
752
+ 'x-read-pretty': boolean;
753
+ 'x-decorator': any;
754
+ 'x-decorator-props': {
755
+ labelStyle: {
756
+ display: string;
757
+ };
758
+ };
759
+ };
760
+ };
761
+ };
762
+ isClient: {
763
+ type: string;
764
+ 'x-decorator': string;
765
+ 'x-component': string;
766
+ 'x-component-props': {
767
+ width: number;
768
+ };
769
+ properties: {
770
+ isClient: {
771
+ 'x-collection-field': string;
772
+ 'x-component': string;
773
+ 'x-component-props': {
774
+ ellipsis: boolean;
775
+ };
776
+ 'x-read-pretty': boolean;
777
+ 'x-decorator': any;
778
+ 'x-decorator-props': {
779
+ labelStyle: {
780
+ display: string;
781
+ };
782
+ };
783
+ };
784
+ };
785
+ };
786
+ isServer: {
787
+ type: string;
788
+ 'x-decorator': string;
789
+ 'x-component': string;
790
+ 'x-component-props': {
791
+ width: number;
792
+ };
793
+ properties: {
794
+ isServer: {
795
+ 'x-collection-field': string;
796
+ 'x-component': string;
797
+ 'x-component-props': {
798
+ ellipsis: boolean;
799
+ };
800
+ 'x-read-pretty': boolean;
801
+ 'x-decorator': any;
802
+ 'x-decorator-props': {
803
+ labelStyle: {
804
+ display: string;
805
+ };
806
+ };
807
+ };
808
+ };
809
+ };
810
+ actions: {
811
+ type: string;
812
+ title: string;
813
+ 'x-action-column': string;
814
+ 'x-decorator': string;
815
+ 'x-component': string;
816
+ 'x-component-props': {
817
+ width: number;
818
+ fixed: string;
819
+ };
820
+ properties: {
821
+ actions: {
822
+ type: string;
823
+ 'x-component': string;
824
+ properties: {
825
+ edit: {
826
+ type: string;
827
+ title: string;
828
+ 'x-action': string;
829
+ 'x-component': string;
830
+ 'x-component-props': {
831
+ openMode: string;
832
+ icon: string;
833
+ };
834
+ 'x-decorator': string;
835
+ properties: {
836
+ drawer: {
837
+ type: string;
838
+ title: string;
839
+ 'x-component': string;
840
+ 'x-component-props': {
841
+ className: string;
842
+ };
843
+ properties: {
844
+ card: {
845
+ type: string;
846
+ 'x-acl-action-props': {
847
+ skipScopeCheck: boolean;
848
+ };
849
+ 'x-acl-action': string;
850
+ 'x-decorator': string;
851
+ 'x-use-decorator-props': string;
852
+ 'x-decorator-props': {
853
+ action: string;
854
+ dataSource: string;
855
+ collection: string;
856
+ };
857
+ 'x-component': string;
858
+ properties: {
859
+ form: {
860
+ type: string;
861
+ 'x-component': string;
862
+ 'x-use-component-props': string;
863
+ properties: {
864
+ editor: {
865
+ type: string;
866
+ 'x-component': string;
867
+ properties: {
868
+ actions: {
869
+ type: string;
870
+ 'x-component': string;
871
+ properties: {
872
+ actions: {
873
+ type: string;
874
+ 'x-component': string;
875
+ properties: {
876
+ save: {
877
+ title: string;
878
+ 'x-action': string;
879
+ 'x-component': string;
880
+ 'x-use-component-props': string;
881
+ 'x-component-props': {
882
+ type: string;
883
+ htmlType: string;
884
+ };
885
+ type: string;
886
+ };
887
+ history: {
888
+ title: string;
889
+ 'x-action': string;
890
+ 'x-component': string;
891
+ 'x-use-component-props': string;
892
+ 'x-component-props': {
893
+ type: string;
894
+ htmlType: string;
895
+ disabled: boolean;
896
+ };
897
+ type: string;
898
+ };
899
+ publish: {
900
+ title: string;
901
+ 'x-action': string;
902
+ 'x-component': string;
903
+ 'x-use-component-props': string;
904
+ 'x-component-props': {
905
+ disabled: boolean;
906
+ type: string;
907
+ htmlType: string;
908
+ };
909
+ type: string;
910
+ };
911
+ };
912
+ };
913
+ };
914
+ };
915
+ name: {
916
+ type: string;
917
+ 'x-component': string;
918
+ 'x-component-props': {
919
+ tab: string;
920
+ };
921
+ properties: {
922
+ module: {
923
+ type: string;
924
+ 'x-component': string;
925
+ 'x-decorator': string;
926
+ 'x-collection-field': string;
927
+ 'x-component-props': {};
928
+ };
929
+ name: {
930
+ type: string;
931
+ 'x-component': string;
932
+ 'x-decorator': string;
933
+ 'x-collection-field': string;
934
+ 'x-component-props': {};
935
+ };
936
+ enabled: {
937
+ type: string;
938
+ 'x-component': string;
939
+ 'x-decorator': string;
940
+ 'x-collection-field': string;
941
+ 'x-component-props': {};
942
+ };
943
+ isClient: {
944
+ type: string;
945
+ 'x-component': string;
946
+ 'x-decorator': string;
947
+ 'x-collection-field': string;
948
+ 'x-component-props': {};
949
+ };
950
+ isServer: {
951
+ type: string;
952
+ 'x-component': string;
953
+ 'x-decorator': string;
954
+ 'x-collection-field': string;
955
+ 'x-component-props': {};
956
+ };
957
+ clientPlugin: {
958
+ type: string;
959
+ 'x-component': string;
960
+ 'x-decorator': string;
961
+ 'x-collection-field': string;
962
+ 'x-component-props': {};
963
+ };
964
+ serverPlugin: {
965
+ type: string;
966
+ 'x-component': string;
967
+ 'x-decorator': string;
968
+ 'x-collection-field': string;
969
+ 'x-component-props': {};
970
+ };
971
+ component: {
972
+ type: string;
973
+ 'x-component': string;
974
+ 'x-decorator': string;
975
+ 'x-collection-field': string;
976
+ 'x-component-props': {};
977
+ };
978
+ };
979
+ };
980
+ code: {
981
+ type: string;
982
+ 'x-component': string;
983
+ 'x-component-props': {
984
+ tab: string;
985
+ };
986
+ properties: {
987
+ code: {
988
+ type: string;
989
+ 'x-component': string;
990
+ 'x-decorator': string;
991
+ 'x-collection-field': string;
992
+ 'x-component-props': {};
993
+ default: string;
994
+ };
995
+ };
996
+ };
997
+ data: {
998
+ type: string;
999
+ 'x-component': string;
1000
+ 'x-component-props': {
1001
+ tab: string;
1002
+ };
1003
+ properties: {
1004
+ data: {
1005
+ type: string;
1006
+ 'x-component': string;
1007
+ 'x-decorator': string;
1008
+ 'x-collection-field': string;
1009
+ 'x-component-props': {
1010
+ default: string;
1011
+ };
1012
+ };
1013
+ };
1014
+ };
1015
+ description: {
1016
+ type: string;
1017
+ 'x-component': string;
1018
+ 'x-component-props': {
1019
+ tab: string;
1020
+ };
1021
+ properties: {
1022
+ description: {
1023
+ type: string;
1024
+ 'x-component': string;
1025
+ 'x-decorator': string;
1026
+ 'x-collection-field': string;
1027
+ 'x-component-props': {};
1028
+ };
1029
+ };
1030
+ };
1031
+ };
1032
+ };
1033
+ };
1034
+ };
1035
+ };
1036
+ };
1037
+ };
1038
+ };
1039
+ };
1040
+ };
1041
+ delete: {
1042
+ type: string;
1043
+ title: string;
1044
+ 'x-action': string;
1045
+ 'x-component': string;
1046
+ 'x-component-props': {
1047
+ confirm: {
1048
+ title: string;
1049
+ content: string;
1050
+ };
1051
+ };
1052
+ 'x-decorator': string;
1053
+ 'x-use-component-props': string;
1054
+ };
1055
+ export: {
1056
+ type: string;
1057
+ title: string;
1058
+ 'x-action': string;
1059
+ 'x-component': string;
1060
+ 'x-component-props': {
1061
+ disabled: boolean;
1062
+ };
1063
+ 'x-decorator': string;
1064
+ 'x-use-component-props': string;
1065
+ };
1066
+ };
1067
+ };
1068
+ };
1069
+ };
1070
+ };
1071
+ };
1072
+ };
1073
+ };
1074
+ };
1075
+ };