ronds-metadata 1.1.85 → 1.1.87

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 (51) hide show
  1. package/es/comps/FormGenerator/Provider.d.ts +3 -0
  2. package/es/comps/FormGenerator/Provider.js +8 -0
  3. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Date.d.ts +2 -0
  4. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Date.js +15 -0
  5. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Input.d.ts +2 -0
  6. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Input.js +17 -0
  7. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/MutiSelect.d.ts +2 -0
  8. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/MutiSelect.js +13 -0
  9. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Number.d.ts +2 -0
  10. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Number.js +11 -0
  11. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Select.d.ts +2 -0
  12. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Select.js +11 -0
  13. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Switch.d.ts +2 -0
  14. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/Switch.js +11 -0
  15. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/TextArea.d.ts +2 -0
  16. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/Cell/TextArea.js +11 -0
  17. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/HOC/index.d.ts +1 -0
  18. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/HOC/index.js +114 -0
  19. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/index.d.ts +7 -0
  20. package/es/comps/FormGenerator/comps/Canvas/core/RenderField/index.js +44 -0
  21. package/es/comps/FormGenerator/comps/Canvas/core/index.d.ts +7 -0
  22. package/es/comps/FormGenerator/comps/Canvas/core/index.js +170 -0
  23. package/es/comps/FormGenerator/comps/Canvas/core/index.less +24 -0
  24. package/es/comps/FormGenerator/comps/Canvas/index.d.ts +2 -0
  25. package/es/comps/FormGenerator/comps/Canvas/index.js +109 -0
  26. package/es/comps/FormGenerator/comps/Settings/index.d.ts +2 -0
  27. package/es/comps/FormGenerator/comps/Settings/index.js +116 -0
  28. package/es/comps/FormGenerator/comps/Sidebar/Elements.d.ts +6 -0
  29. package/es/comps/FormGenerator/comps/Sidebar/Elements.js +48 -0
  30. package/es/comps/FormGenerator/comps/Sidebar/index.d.ts +2 -0
  31. package/es/comps/FormGenerator/comps/Sidebar/index.js +37 -0
  32. package/es/comps/FormGenerator/index.d.ts +5 -0
  33. package/es/comps/FormGenerator/index.js +30 -0
  34. package/es/comps/FormGenerator/index.less +21 -0
  35. package/es/comps/FormGenerator/settings/index.d.ts +702 -0
  36. package/es/comps/FormGenerator/settings/index.js +206 -0
  37. package/es/comps/FormGenerator/settings/ruleConfig.d.ts +364 -0
  38. package/es/comps/FormGenerator/settings/ruleConfig.js +346 -0
  39. package/es/comps/FormGenerator/transformer.d.ts +13 -0
  40. package/es/comps/FormGenerator/transformer.js +66 -0
  41. package/es/comps/MetadataForm/DataCell/Input.js +11 -3
  42. package/es/comps/MetadataForm/DataCell/Number.js +11 -4
  43. package/es/comps/MetadataForm/DataCell/Ref.js +3 -3
  44. package/es/comps/MetadataForm/DataCell/Select.js +11 -3
  45. package/es/comps/MetadataForm/DataCell/Switch.js +11 -3
  46. package/es/comps/MetadataForm/index.js +10 -4
  47. package/es/config.js +2 -1
  48. package/es/index.d.ts +1 -0
  49. package/es/index.js +2 -1
  50. package/es/theme.less +4 -0
  51. package/package.json +1 -1
@@ -0,0 +1,702 @@
1
+ export declare const inputSchema: {
2
+ id: string;
3
+ type: string;
4
+ properties: ({
5
+ id: string;
6
+ type: string;
7
+ fields: {
8
+ id: string;
9
+ type: string;
10
+ refId: string;
11
+ value: {
12
+ label: string;
13
+ };
14
+ }[];
15
+ } | {
16
+ id: string;
17
+ type: string;
18
+ fields: {
19
+ id: string;
20
+ type: string;
21
+ refId: string;
22
+ value: {
23
+ common: {
24
+ label: string;
25
+ };
26
+ 'common-en-US': {};
27
+ };
28
+ }[];
29
+ })[];
30
+ types: {
31
+ id: string;
32
+ type: string;
33
+ properties: {
34
+ id: string;
35
+ type: string;
36
+ fields: {
37
+ id: string;
38
+ type: string;
39
+ refId: string;
40
+ value: {
41
+ text: {};
42
+ common: {
43
+ label: string;
44
+ };
45
+ 'common-en-US': {};
46
+ };
47
+ }[];
48
+ }[];
49
+ }[];
50
+ }[];
51
+ export declare const textareaSchema: {
52
+ id: string;
53
+ type: string;
54
+ properties: ({
55
+ id: string;
56
+ type: string;
57
+ fields: {
58
+ id: string;
59
+ type: string;
60
+ refId: string;
61
+ value: {
62
+ label: string;
63
+ };
64
+ }[];
65
+ } | {
66
+ id: string;
67
+ type: string;
68
+ fields: {
69
+ id: string;
70
+ type: string;
71
+ refId: string;
72
+ value: {
73
+ common: {
74
+ label: string;
75
+ };
76
+ 'common-en-US': {};
77
+ };
78
+ }[];
79
+ })[];
80
+ types: {
81
+ id: string;
82
+ type: string;
83
+ properties: {
84
+ id: string;
85
+ type: string;
86
+ fields: {
87
+ id: string;
88
+ type: string;
89
+ refId: string;
90
+ value: {
91
+ text: {};
92
+ common: {
93
+ label: string;
94
+ };
95
+ 'common-en-US': {};
96
+ };
97
+ }[];
98
+ }[];
99
+ }[];
100
+ }[];
101
+ export declare const dateSchema: {
102
+ id: string;
103
+ type: string;
104
+ properties: ({
105
+ id: string;
106
+ type: string;
107
+ fields: {
108
+ id: string;
109
+ type: string;
110
+ refId: string;
111
+ value: {
112
+ label: string;
113
+ };
114
+ }[];
115
+ } | {
116
+ id: string;
117
+ type: string;
118
+ fields: {
119
+ id: string;
120
+ type: string;
121
+ refId: string;
122
+ value: {
123
+ common: {
124
+ label: string;
125
+ };
126
+ 'common-en-US': {};
127
+ };
128
+ }[];
129
+ })[];
130
+ types: {
131
+ id: string;
132
+ type: string;
133
+ properties: {
134
+ id: string;
135
+ type: string;
136
+ fields: {
137
+ id: string;
138
+ type: string;
139
+ refId: string;
140
+ value: {
141
+ text: {};
142
+ common: {
143
+ label: string;
144
+ };
145
+ 'common-en-US': {};
146
+ };
147
+ }[];
148
+ }[];
149
+ }[];
150
+ }[];
151
+ export declare const settingSchema: {
152
+ input: {
153
+ id: string;
154
+ type: string;
155
+ properties: ({
156
+ id: string;
157
+ type: string;
158
+ fields: {
159
+ id: string;
160
+ type: string;
161
+ refId: string;
162
+ value: {
163
+ label: string;
164
+ };
165
+ }[];
166
+ } | {
167
+ id: string;
168
+ type: string;
169
+ fields: {
170
+ id: string;
171
+ type: string;
172
+ refId: string;
173
+ value: {
174
+ common: {
175
+ label: string;
176
+ };
177
+ 'common-en-US': {};
178
+ };
179
+ }[];
180
+ })[];
181
+ types: {
182
+ id: string;
183
+ type: string;
184
+ properties: {
185
+ id: string;
186
+ type: string;
187
+ fields: {
188
+ id: string;
189
+ type: string;
190
+ refId: string;
191
+ value: {
192
+ text: {};
193
+ common: {
194
+ label: string;
195
+ };
196
+ 'common-en-US': {};
197
+ };
198
+ }[];
199
+ }[];
200
+ }[];
201
+ }[];
202
+ textarea: {
203
+ id: string;
204
+ type: string;
205
+ properties: ({
206
+ id: string;
207
+ type: string;
208
+ fields: {
209
+ id: string;
210
+ type: string;
211
+ refId: string;
212
+ value: {
213
+ label: string;
214
+ };
215
+ }[];
216
+ } | {
217
+ id: string;
218
+ type: string;
219
+ fields: {
220
+ id: string;
221
+ type: string;
222
+ refId: string;
223
+ value: {
224
+ common: {
225
+ label: string;
226
+ };
227
+ 'common-en-US': {};
228
+ };
229
+ }[];
230
+ })[];
231
+ types: {
232
+ id: string;
233
+ type: string;
234
+ properties: {
235
+ id: string;
236
+ type: string;
237
+ fields: {
238
+ id: string;
239
+ type: string;
240
+ refId: string;
241
+ value: {
242
+ text: {};
243
+ common: {
244
+ label: string;
245
+ };
246
+ 'common-en-US': {};
247
+ };
248
+ }[];
249
+ }[];
250
+ }[];
251
+ }[];
252
+ dateSchema: {
253
+ id: string;
254
+ type: string;
255
+ properties: ({
256
+ id: string;
257
+ type: string;
258
+ fields: {
259
+ id: string;
260
+ type: string;
261
+ refId: string;
262
+ value: {
263
+ label: string;
264
+ };
265
+ }[];
266
+ } | {
267
+ id: string;
268
+ type: string;
269
+ fields: {
270
+ id: string;
271
+ type: string;
272
+ refId: string;
273
+ value: {
274
+ common: {
275
+ label: string;
276
+ };
277
+ 'common-en-US': {};
278
+ };
279
+ }[];
280
+ })[];
281
+ types: {
282
+ id: string;
283
+ type: string;
284
+ properties: {
285
+ id: string;
286
+ type: string;
287
+ fields: {
288
+ id: string;
289
+ type: string;
290
+ refId: string;
291
+ value: {
292
+ text: {};
293
+ common: {
294
+ label: string;
295
+ };
296
+ 'common-en-US': {};
297
+ };
298
+ }[];
299
+ }[];
300
+ }[];
301
+ }[];
302
+ };
303
+ export declare const inputParam: {
304
+ type: string;
305
+ schema: {
306
+ id: string;
307
+ type: string;
308
+ properties: ({
309
+ id: string;
310
+ type: string;
311
+ fields: {
312
+ id: string;
313
+ type: string;
314
+ refId: string;
315
+ value: {
316
+ label: string;
317
+ };
318
+ }[];
319
+ } | {
320
+ id: string;
321
+ type: string;
322
+ fields: {
323
+ id: string;
324
+ type: string;
325
+ refId: string;
326
+ value: {
327
+ common: {
328
+ label: string;
329
+ };
330
+ 'common-en-US': {};
331
+ };
332
+ }[];
333
+ })[];
334
+ types: {
335
+ id: string;
336
+ type: string;
337
+ properties: {
338
+ id: string;
339
+ type: string;
340
+ fields: {
341
+ id: string;
342
+ type: string;
343
+ refId: string;
344
+ value: {
345
+ text: {};
346
+ common: {
347
+ label: string;
348
+ };
349
+ 'common-en-US': {};
350
+ };
351
+ }[];
352
+ }[];
353
+ }[];
354
+ }[];
355
+ };
356
+ export declare const textareaParam: {
357
+ type: string;
358
+ schema: {
359
+ id: string;
360
+ type: string;
361
+ properties: ({
362
+ id: string;
363
+ type: string;
364
+ fields: {
365
+ id: string;
366
+ type: string;
367
+ refId: string;
368
+ value: {
369
+ label: string;
370
+ };
371
+ }[];
372
+ } | {
373
+ id: string;
374
+ type: string;
375
+ fields: {
376
+ id: string;
377
+ type: string;
378
+ refId: string;
379
+ value: {
380
+ common: {
381
+ label: string;
382
+ };
383
+ 'common-en-US': {};
384
+ };
385
+ }[];
386
+ })[];
387
+ types: {
388
+ id: string;
389
+ type: string;
390
+ properties: {
391
+ id: string;
392
+ type: string;
393
+ fields: {
394
+ id: string;
395
+ type: string;
396
+ refId: string;
397
+ value: {
398
+ text: {};
399
+ common: {
400
+ label: string;
401
+ };
402
+ 'common-en-US': {};
403
+ };
404
+ }[];
405
+ }[];
406
+ }[];
407
+ }[];
408
+ rule: {
409
+ type: string;
410
+ };
411
+ };
412
+ export declare const dateParam: {
413
+ type: string;
414
+ schema: {
415
+ id: string;
416
+ type: string;
417
+ properties: ({
418
+ id: string;
419
+ type: string;
420
+ fields: {
421
+ id: string;
422
+ type: string;
423
+ refId: string;
424
+ value: {
425
+ label: string;
426
+ };
427
+ }[];
428
+ } | {
429
+ id: string;
430
+ type: string;
431
+ fields: {
432
+ id: string;
433
+ type: string;
434
+ refId: string;
435
+ value: {
436
+ common: {
437
+ label: string;
438
+ };
439
+ 'common-en-US': {};
440
+ };
441
+ }[];
442
+ })[];
443
+ types: {
444
+ id: string;
445
+ type: string;
446
+ properties: {
447
+ id: string;
448
+ type: string;
449
+ fields: {
450
+ id: string;
451
+ type: string;
452
+ refId: string;
453
+ value: {
454
+ text: {};
455
+ common: {
456
+ label: string;
457
+ };
458
+ 'common-en-US': {};
459
+ };
460
+ }[];
461
+ }[];
462
+ }[];
463
+ }[];
464
+ rule: {
465
+ type: string;
466
+ };
467
+ };
468
+ export declare const basicComps: {
469
+ id: string;
470
+ name: string;
471
+ type: string;
472
+ param: {
473
+ type: string;
474
+ schema: {
475
+ id: string;
476
+ type: string;
477
+ properties: ({
478
+ id: string;
479
+ type: string;
480
+ fields: {
481
+ id: string;
482
+ type: string;
483
+ refId: string;
484
+ value: {
485
+ label: string;
486
+ };
487
+ }[];
488
+ } | {
489
+ id: string;
490
+ type: string;
491
+ fields: {
492
+ id: string;
493
+ type: string;
494
+ refId: string;
495
+ value: {
496
+ common: {
497
+ label: string;
498
+ };
499
+ 'common-en-US': {};
500
+ };
501
+ }[];
502
+ })[];
503
+ types: {
504
+ id: string;
505
+ type: string;
506
+ properties: {
507
+ id: string;
508
+ type: string;
509
+ fields: {
510
+ id: string;
511
+ type: string;
512
+ refId: string;
513
+ value: {
514
+ text: {};
515
+ common: {
516
+ label: string;
517
+ };
518
+ 'common-en-US': {};
519
+ };
520
+ }[];
521
+ }[];
522
+ }[];
523
+ }[];
524
+ };
525
+ }[];
526
+ export declare const layoutComps: {
527
+ id: string;
528
+ name: string;
529
+ }[];
530
+ export declare const sidebarCtx: {
531
+ name: string;
532
+ children: {
533
+ id: string;
534
+ name: string;
535
+ }[];
536
+ }[];
537
+ export declare const dragItemType = "fg-drag";
538
+ export declare const formSettingSchema: {
539
+ id: string;
540
+ type: string;
541
+ properties: ({
542
+ id: string;
543
+ type: string;
544
+ fields: {
545
+ id: string;
546
+ refId: string;
547
+ type: string;
548
+ value: {
549
+ 'common-en-US': {
550
+ depend: {};
551
+ };
552
+ common: {
553
+ label: string;
554
+ placeholder: string;
555
+ depend: {};
556
+ };
557
+ enum: {
558
+ value: {
559
+ key: number;
560
+ value: string;
561
+ }[];
562
+ http: {};
563
+ };
564
+ };
565
+ }[];
566
+ } | {
567
+ id: string;
568
+ type: string;
569
+ fields: {
570
+ id: string;
571
+ refId: string;
572
+ type: string;
573
+ value: {
574
+ 'common-en-US': {
575
+ depend: {};
576
+ };
577
+ common: {
578
+ label: string;
579
+ depend: {};
580
+ };
581
+ enum: {
582
+ value: {
583
+ value: string;
584
+ key: string;
585
+ }[];
586
+ type: string;
587
+ http: {};
588
+ };
589
+ };
590
+ }[];
591
+ } | {
592
+ id: string;
593
+ type: string;
594
+ fields: {
595
+ id: string;
596
+ refId: string;
597
+ type: string;
598
+ value: {
599
+ 'common-en-US': {
600
+ depend: {};
601
+ };
602
+ common: {
603
+ label: string;
604
+ tooltip: string;
605
+ depend: {};
606
+ };
607
+ };
608
+ }[];
609
+ })[];
610
+ }[];
611
+ export declare const formSetting: {
612
+ id: string;
613
+ name: string;
614
+ type: string;
615
+ param: {
616
+ type: string;
617
+ schema: {
618
+ id: string;
619
+ type: string;
620
+ properties: ({
621
+ id: string;
622
+ type: string;
623
+ fields: {
624
+ id: string;
625
+ refId: string;
626
+ type: string;
627
+ value: {
628
+ 'common-en-US': {
629
+ depend: {};
630
+ };
631
+ common: {
632
+ label: string;
633
+ placeholder: string;
634
+ depend: {};
635
+ };
636
+ enum: {
637
+ value: {
638
+ key: number;
639
+ value: string;
640
+ }[];
641
+ http: {};
642
+ };
643
+ };
644
+ }[];
645
+ } | {
646
+ id: string;
647
+ type: string;
648
+ fields: {
649
+ id: string;
650
+ refId: string;
651
+ type: string;
652
+ value: {
653
+ 'common-en-US': {
654
+ depend: {};
655
+ };
656
+ common: {
657
+ label: string;
658
+ depend: {};
659
+ };
660
+ enum: {
661
+ value: {
662
+ value: string;
663
+ key: string;
664
+ }[];
665
+ type: string;
666
+ http: {};
667
+ };
668
+ };
669
+ }[];
670
+ } | {
671
+ id: string;
672
+ type: string;
673
+ fields: {
674
+ id: string;
675
+ refId: string;
676
+ type: string;
677
+ value: {
678
+ 'common-en-US': {
679
+ depend: {};
680
+ };
681
+ common: {
682
+ label: string;
683
+ tooltip: string;
684
+ depend: {};
685
+ };
686
+ };
687
+ }[];
688
+ })[];
689
+ }[];
690
+ defaultValue: {
691
+ colSpan: number;
692
+ layout: string;
693
+ };
694
+ };
695
+ };
696
+ export declare const streamEventType: {
697
+ onNodeSelect: string;
698
+ onNodeDelete: string;
699
+ onNodeCopy: string;
700
+ onClearCanvas: string;
701
+ onSettingValueChange: string;
702
+ };