@zealicsolutions/web-ui 1.0.107 → 1.0.109-test.0

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/cjs/containers/Container.d.ts +1 -1
  2. package/dist/cjs/containers/ReplicatorContainer/ReplicatorContainer.d.ts +1 -1
  3. package/dist/cjs/containers/styles.d.ts +1 -1
  4. package/dist/cjs/containers/types/types.d.ts +2 -2
  5. package/dist/cjs/helpers/dataResolution.d.ts +9 -0
  6. package/dist/cjs/index.js +2 -2
  7. package/dist/cjs/index.js.map +1 -1
  8. package/dist/cjs/organisms/@MUI_ONLY/TodaysTasksOrganism.d.ts +3 -0
  9. package/dist/cjs/organisms/@MUI_ONLY/TodaysTasksOrganism.stories.d.ts +5 -0
  10. package/dist/cjs/organisms/stories/AppointmentBookingDisplay.stories.d.ts +4 -0
  11. package/dist/cjs/organisms/stories/AppointmentBookingOrganism.stories.d.ts +5 -0
  12. package/dist/cjs/organisms/stories/StudyDetailsDisplayOrganism.stories.d.ts +5 -0
  13. package/dist/cjs/organisms/stories/StudyWithVisitSchedulesDisplayOrganism.stories.d.ts +5 -0
  14. package/dist/cjs/organisms/stories/organism-configs/appointment-booking.d.ts +1525 -0
  15. package/dist/cjs/organisms/stories/{organism_example.d.ts → organism-configs/organism-with-nested-replicators.d.ts} +19 -1
  16. package/dist/cjs/organisms/stories/organism-configs/study-details-display.d.ts +2650 -0
  17. package/dist/cjs/organisms/stories/organism-configs/study-with-visit-schedules.d.ts +2241 -0
  18. package/dist/cjs/organisms/stories/utils/organismMappers.d.ts +1 -0
  19. package/dist/esm/containers/Container.d.ts +1 -1
  20. package/dist/esm/containers/Container.js +1 -1
  21. package/dist/esm/containers/Container.js.map +1 -1
  22. package/dist/esm/containers/ReplicatorContainer/ReplicatorContainer.d.ts +1 -1
  23. package/dist/esm/containers/ReplicatorContainer/ReplicatorContainer.js +1 -1
  24. package/dist/esm/containers/ReplicatorContainer/ReplicatorContainer.js.map +1 -1
  25. package/dist/esm/containers/styles.d.ts +1 -1
  26. package/dist/esm/containers/types/types.d.ts +2 -2
  27. package/dist/esm/helpers/dataResolution.d.ts +9 -0
  28. package/dist/esm/molecules/BaseMolecule.js +1 -1
  29. package/dist/esm/molecules/BaseMolecule.js.map +1 -1
  30. package/dist/esm/organisms/@MUI_ONLY/TodaysTasksOrganism.d.ts +3 -0
  31. package/dist/esm/organisms/@MUI_ONLY/TodaysTasksOrganism.stories.d.ts +5 -0
  32. package/dist/esm/organisms/stories/AppointmentBookingDisplay.stories.d.ts +4 -0
  33. package/dist/esm/organisms/stories/AppointmentBookingOrganism.stories.d.ts +5 -0
  34. package/dist/esm/organisms/stories/StudyDetailsDisplayOrganism.stories.d.ts +5 -0
  35. package/dist/esm/organisms/stories/StudyWithVisitSchedulesDisplayOrganism.stories.d.ts +5 -0
  36. package/dist/esm/organisms/stories/organism-configs/appointment-booking.d.ts +1525 -0
  37. package/dist/esm/organisms/stories/{organism_example.d.ts → organism-configs/organism-with-nested-replicators.d.ts} +19 -1
  38. package/dist/esm/organisms/stories/organism-configs/study-details-display.d.ts +2650 -0
  39. package/dist/esm/organisms/stories/organism-configs/study-with-visit-schedules.d.ts +2241 -0
  40. package/dist/esm/organisms/stories/utils/organismMappers.d.ts +1 -0
  41. package/dist/index.d.ts +4 -4
  42. package/package.json +1 -1
  43. package/dist/cjs/organisms/stories/DisplayOrganismNestedLevels.d.ts +0 -8
  44. package/dist/esm/organisms/stories/DisplayOrganismNestedLevels.d.ts +0 -8
@@ -0,0 +1,2241 @@
1
+ export declare const mockCalendarBookingData: {
2
+ 'visit-instruction': {
3
+ value: string;
4
+ };
5
+ location: {
6
+ value: string;
7
+ };
8
+ 'visit-window': {
9
+ value: string;
10
+ };
11
+ duration: {
12
+ value: string;
13
+ };
14
+ 'calendar-days': {
15
+ 'day-name': {
16
+ value: string;
17
+ };
18
+ 'time-slots': {
19
+ time: {
20
+ value: string;
21
+ };
22
+ room: {
23
+ value: string;
24
+ };
25
+ 'assigned-user': {
26
+ value: string;
27
+ };
28
+ }[];
29
+ }[];
30
+ 'selected-slot': {
31
+ value: null;
32
+ };
33
+ 'notification-message': {
34
+ value: string;
35
+ };
36
+ };
37
+ export declare const studyWithVisitSchedulesOrganismConfig: {
38
+ id: string;
39
+ name: string;
40
+ type: string;
41
+ body: {
42
+ id: string;
43
+ pmiObjectId: null;
44
+ stateValueOptionMasterStateId: null;
45
+ instance: string;
46
+ organismLibraryContainerId: string;
47
+ containerLibraryId: string;
48
+ type: string;
49
+ ordering: number;
50
+ config: {
51
+ wide: {
52
+ containerProps: {};
53
+ containerStyle: {
54
+ gap: string;
55
+ width: string;
56
+ zIndex: string;
57
+ display: string;
58
+ flexWrap: string;
59
+ position: string;
60
+ boxShadow: string;
61
+ overflowX: string;
62
+ overflowY: string;
63
+ alignItems: string;
64
+ paddingTop: string;
65
+ borderColor: string;
66
+ borderStyle: string;
67
+ paddingLeft: string;
68
+ paddingRight: string;
69
+ flexDirection: string;
70
+ paddingBottom: string;
71
+ justifyContent: string;
72
+ backgroundColor: string;
73
+ enableBackgroundImage: string;
74
+ 'border-top-left-radius': string;
75
+ 'border-top-right-radius': string;
76
+ 'border-bottom-left-radius': string;
77
+ 'border-bottom-right-radius': string;
78
+ };
79
+ };
80
+ compact: {
81
+ containerProps: {};
82
+ containerStyle: {
83
+ gap: string;
84
+ width: string;
85
+ flexWrap: string;
86
+ overflowX: string;
87
+ overflowY: string;
88
+ paddingTop: string;
89
+ paddingLeft: string;
90
+ paddingRight: string;
91
+ paddingBottom: string;
92
+ };
93
+ };
94
+ };
95
+ metadata: {
96
+ group: string[];
97
+ };
98
+ properties: {
99
+ backgroundImage: {
100
+ id: string;
101
+ property: string;
102
+ propertyType: string;
103
+ imageFile: {
104
+ id: string;
105
+ url: string;
106
+ name: string;
107
+ size: number;
108
+ type: string;
109
+ source: string;
110
+ property: string;
111
+ fileType: string;
112
+ createdAt: string;
113
+ updatedAt: string;
114
+ description: null;
115
+ originalName: string;
116
+ propertyType: string;
117
+ };
118
+ };
119
+ };
120
+ children: ({
121
+ id: string;
122
+ name: string;
123
+ type: string;
124
+ config: {
125
+ wide: {
126
+ containerProps: {};
127
+ containerStyle: {
128
+ gap: string;
129
+ width: string;
130
+ zIndex: string;
131
+ display: string;
132
+ flexWrap: string;
133
+ position: string;
134
+ boxShadow: string;
135
+ overflowX: string;
136
+ overflowY: string;
137
+ alignItems: string;
138
+ paddingTop: string;
139
+ borderColor: string;
140
+ borderStyle: string;
141
+ paddingLeft: string;
142
+ paddingRight: string;
143
+ flexDirection: string;
144
+ paddingBottom: string;
145
+ justifyContent: string;
146
+ backgroundColor: string;
147
+ enableBackgroundImage: string;
148
+ 'border-top-left-radius': string;
149
+ 'border-top-right-radius': string;
150
+ 'border-bottom-left-radius': string;
151
+ 'border-bottom-right-radius': string;
152
+ };
153
+ };
154
+ compact: {
155
+ containerProps: {};
156
+ containerStyle: {
157
+ gap: string;
158
+ width: string;
159
+ flexWrap: string;
160
+ overflowX: string;
161
+ overflowY: string;
162
+ paddingTop: string;
163
+ paddingLeft: string;
164
+ paddingRight: string;
165
+ paddingBottom: string;
166
+ };
167
+ };
168
+ };
169
+ instance: string;
170
+ metadata: {
171
+ group: string[];
172
+ };
173
+ ordering: number;
174
+ properties: {
175
+ backgroundImage: {
176
+ id: string;
177
+ property: string;
178
+ propertyType: string;
179
+ imageFile: {
180
+ id: string;
181
+ url: string;
182
+ name: string;
183
+ size: number;
184
+ type: string;
185
+ source: string;
186
+ property: string;
187
+ fileType: string;
188
+ createdAt: string;
189
+ updatedAt: string;
190
+ description: null;
191
+ originalName: string;
192
+ propertyType: string;
193
+ };
194
+ };
195
+ };
196
+ pmiObjectId: null;
197
+ containerLibraryId: string;
198
+ containerLibraryName: string;
199
+ organismLibraryContainerId: string;
200
+ stateValueOptionMasterStateId: null;
201
+ children: ({
202
+ id: string;
203
+ name: string;
204
+ type: string;
205
+ config: {
206
+ wide: {
207
+ containerProps: {};
208
+ containerStyle: {
209
+ gap: string;
210
+ width: string;
211
+ zIndex: string;
212
+ display: string;
213
+ flexWrap: string;
214
+ position: string;
215
+ boxShadow: string;
216
+ overflowX: string;
217
+ overflowY: string;
218
+ alignItems: string;
219
+ paddingTop: string;
220
+ borderColor: string;
221
+ borderStyle: string;
222
+ paddingLeft: string;
223
+ paddingRight: string;
224
+ flexDirection: string;
225
+ paddingBottom: string;
226
+ justifyContent: string;
227
+ backgroundColor: string;
228
+ enableBackgroundImage: string;
229
+ 'border-top-left-radius': string;
230
+ 'border-top-right-radius': string;
231
+ 'border-bottom-left-radius': string;
232
+ 'border-bottom-right-radius': string;
233
+ };
234
+ };
235
+ compact: {
236
+ containerProps: {};
237
+ containerStyle: {
238
+ gap: string;
239
+ width: string;
240
+ flexWrap: string;
241
+ overflowX: string;
242
+ overflowY: string;
243
+ paddingTop: string;
244
+ paddingLeft: string;
245
+ paddingRight: string;
246
+ paddingBottom: string;
247
+ };
248
+ };
249
+ };
250
+ instance: string;
251
+ metadata: {
252
+ group: string[];
253
+ };
254
+ ordering: number;
255
+ properties: {
256
+ backgroundImage: {
257
+ id: string;
258
+ property: string;
259
+ propertyType: string;
260
+ imageFile: {
261
+ id: string;
262
+ url: string;
263
+ name: string;
264
+ size: number;
265
+ type: string;
266
+ source: string;
267
+ property: string;
268
+ fileType: string;
269
+ createdAt: string;
270
+ updatedAt: string;
271
+ description: null;
272
+ originalName: string;
273
+ propertyType: string;
274
+ };
275
+ };
276
+ };
277
+ pmiObjectId: null;
278
+ containerLibraryId: string;
279
+ containerLibraryName: string;
280
+ organismLibraryContainerId: string;
281
+ stateValueOptionMasterStateId: null;
282
+ children: ({
283
+ id: string;
284
+ name: string;
285
+ type: string;
286
+ config: {
287
+ props: {
288
+ styles: {};
289
+ paddingTop: string;
290
+ paddingLeft: string;
291
+ paddingRight: string;
292
+ paddingBottom: string;
293
+ };
294
+ wide?: undefined;
295
+ compact?: undefined;
296
+ };
297
+ children: never[];
298
+ instance: string;
299
+ metadata: {
300
+ group: string[];
301
+ };
302
+ ordering: number;
303
+ actionable: boolean;
304
+ properties: {
305
+ text: {
306
+ id: string;
307
+ text: string;
308
+ property: string;
309
+ createdAt: string;
310
+ updatedAt: string;
311
+ isRichText: boolean;
312
+ propertyType: string;
313
+ moleculeItemId: null;
314
+ showRichTextToolbar: boolean;
315
+ };
316
+ backgroundImage?: undefined;
317
+ };
318
+ triggerable: boolean;
319
+ referenceName: string;
320
+ moleculeLibraryId: string;
321
+ organismLibraryMoleculeId: string;
322
+ pmiObjectId?: undefined;
323
+ containerLibraryId?: undefined;
324
+ containerLibraryName?: undefined;
325
+ organismLibraryContainerId?: undefined;
326
+ stateValueOptionMasterStateId?: undefined;
327
+ } | {
328
+ id: string;
329
+ name: string;
330
+ type: string;
331
+ config: {
332
+ wide: {
333
+ containerProps: {};
334
+ containerStyle: {
335
+ gap: string;
336
+ width: string;
337
+ zIndex: string;
338
+ display: string;
339
+ flexWrap: string;
340
+ position: string;
341
+ boxShadow: string;
342
+ overflowX: string;
343
+ overflowY: string;
344
+ alignItems: string;
345
+ paddingTop: string;
346
+ borderColor: string;
347
+ borderStyle: string;
348
+ paddingLeft: string;
349
+ paddingRight: string;
350
+ flexDirection: string;
351
+ paddingBottom: string;
352
+ justifyContent: string;
353
+ backgroundColor: string;
354
+ enableBackgroundImage: string;
355
+ 'border-top-left-radius': string;
356
+ 'border-top-right-radius': string;
357
+ 'border-bottom-left-radius': string;
358
+ 'border-bottom-right-radius': string;
359
+ };
360
+ };
361
+ compact: {
362
+ containerProps: {};
363
+ containerStyle: {
364
+ gap: string;
365
+ width: string;
366
+ flexWrap: string;
367
+ overflowX: string;
368
+ overflowY: string;
369
+ paddingTop: string;
370
+ paddingLeft: string;
371
+ paddingRight: string;
372
+ paddingBottom: string;
373
+ };
374
+ };
375
+ props?: undefined;
376
+ };
377
+ instance: string;
378
+ metadata: {
379
+ group: string[];
380
+ };
381
+ ordering: number;
382
+ properties: {
383
+ backgroundImage: {
384
+ id: string;
385
+ property: string;
386
+ propertyType: string;
387
+ imageFile: {
388
+ id: string;
389
+ url: string;
390
+ name: string;
391
+ size: number;
392
+ type: string;
393
+ source: string;
394
+ property: string;
395
+ fileType: string;
396
+ createdAt: string;
397
+ updatedAt: string;
398
+ description: null;
399
+ originalName: string;
400
+ propertyType: string;
401
+ };
402
+ };
403
+ text?: undefined;
404
+ };
405
+ pmiObjectId: null;
406
+ containerLibraryId: string;
407
+ containerLibraryName: string;
408
+ organismLibraryContainerId: string;
409
+ stateValueOptionMasterStateId: null;
410
+ children: ({
411
+ id: string;
412
+ name: string;
413
+ type: string;
414
+ config: {
415
+ wide: {
416
+ containerProps: {};
417
+ containerStyle: {
418
+ gap: string;
419
+ width: string;
420
+ zIndex: string;
421
+ display: string;
422
+ flexWrap: string;
423
+ position: string;
424
+ boxShadow: string;
425
+ overflowX: string;
426
+ overflowY: string;
427
+ alignItems: string;
428
+ paddingTop: string;
429
+ borderColor: string;
430
+ borderStyle: string;
431
+ paddingLeft: string;
432
+ paddingRight: string;
433
+ flexDirection: string;
434
+ paddingBottom: string;
435
+ justifyContent: string;
436
+ backgroundColor: string;
437
+ enableBackgroundImage: string;
438
+ 'border-top-left-radius': string;
439
+ 'border-top-right-radius': string;
440
+ 'border-bottom-left-radius': string;
441
+ 'border-bottom-right-radius': string;
442
+ };
443
+ };
444
+ compact: {
445
+ containerProps: {};
446
+ containerStyle: {
447
+ gap: string;
448
+ width: string;
449
+ flexWrap: string;
450
+ overflowX: string;
451
+ overflowY: string;
452
+ paddingTop: string;
453
+ paddingLeft: string;
454
+ paddingRight: string;
455
+ paddingBottom: string;
456
+ };
457
+ };
458
+ props?: undefined;
459
+ };
460
+ instance: string;
461
+ metadata: {
462
+ group: string[];
463
+ };
464
+ ordering: number;
465
+ properties: {
466
+ backgroundImage: {
467
+ id: string;
468
+ property: string;
469
+ propertyType: string;
470
+ imageFile: {
471
+ id: string;
472
+ url: string;
473
+ name: string;
474
+ size: number;
475
+ type: string;
476
+ source: string;
477
+ property: string;
478
+ fileType: string;
479
+ createdAt: string;
480
+ updatedAt: string;
481
+ description: null;
482
+ originalName: string;
483
+ propertyType: string;
484
+ };
485
+ };
486
+ dataCapture?: undefined;
487
+ placeholderText?: undefined;
488
+ };
489
+ pmiObjectId: null;
490
+ containerLibraryId: string;
491
+ containerLibraryName: string;
492
+ organismLibraryContainerId: string;
493
+ stateValueOptionMasterStateId: null;
494
+ children: ({
495
+ id: string;
496
+ name: string;
497
+ type: string;
498
+ config: {
499
+ props: {
500
+ styles: {};
501
+ paddingTop: string;
502
+ paddingLeft: string;
503
+ paddingRight: string;
504
+ paddingBottom: string;
505
+ color?: undefined;
506
+ width?: undefined;
507
+ masked?: undefined;
508
+ fontSize?: undefined;
509
+ inputType?: undefined;
510
+ multiLine?: undefined;
511
+ textAlign?: undefined;
512
+ fontFamily?: undefined;
513
+ fontWeight?: undefined;
514
+ borderColor?: undefined;
515
+ backgroundColor?: undefined;
516
+ dataCaptureName?: undefined;
517
+ };
518
+ };
519
+ children: never[];
520
+ instance: string;
521
+ metadata: {
522
+ group: string[];
523
+ };
524
+ ordering: number;
525
+ actionable: boolean;
526
+ properties: {
527
+ text: {
528
+ id: string;
529
+ text: string;
530
+ property: string;
531
+ createdAt: string;
532
+ updatedAt: string;
533
+ isRichText: boolean;
534
+ propertyType: string;
535
+ moleculeItemId: null;
536
+ showRichTextToolbar: boolean;
537
+ };
538
+ dataCapture?: undefined;
539
+ placeholderText?: undefined;
540
+ };
541
+ triggerable: boolean;
542
+ referenceName: string;
543
+ moleculeLibraryId: string;
544
+ organismLibraryMoleculeId: string;
545
+ } | {
546
+ id: string;
547
+ name: string;
548
+ type: string;
549
+ config: {
550
+ props: {
551
+ color: string;
552
+ width: string;
553
+ masked: string;
554
+ styles: {};
555
+ fontSize: string;
556
+ inputType: string;
557
+ multiLine: string;
558
+ textAlign: string;
559
+ fontFamily: string;
560
+ fontWeight: string;
561
+ paddingTop: string;
562
+ borderColor: string;
563
+ paddingLeft: string;
564
+ paddingRight: string;
565
+ paddingBottom: string;
566
+ backgroundColor: string;
567
+ dataCaptureName: string;
568
+ };
569
+ };
570
+ children: never[];
571
+ instance: string;
572
+ metadata: {
573
+ group?: undefined;
574
+ };
575
+ ordering: number;
576
+ actionable: boolean;
577
+ properties: {
578
+ dataCapture: {
579
+ id: string;
580
+ property: string;
581
+ required: boolean;
582
+ createdAt: string;
583
+ updatedAt: string;
584
+ propertyType: string;
585
+ isConfigurable: boolean;
586
+ moleculeItemId: null;
587
+ predefinedValue: null;
588
+ dataCaptureName: string;
589
+ sourceDataModelFieldId: string;
590
+ };
591
+ placeholderText: {
592
+ id: string;
593
+ text: string;
594
+ property: string;
595
+ createdAt: string;
596
+ updatedAt: string;
597
+ isRichText: boolean;
598
+ propertyType: string;
599
+ moleculeItemId: null;
600
+ showRichTextToolbar: boolean;
601
+ };
602
+ text?: undefined;
603
+ };
604
+ triggerable: boolean;
605
+ referenceName: string;
606
+ moleculeLibraryId: string;
607
+ organismLibraryMoleculeId: string;
608
+ })[];
609
+ actionable?: undefined;
610
+ triggerable?: undefined;
611
+ referenceName?: undefined;
612
+ moleculeLibraryId?: undefined;
613
+ organismLibraryMoleculeId?: undefined;
614
+ } | {
615
+ id: string;
616
+ name: string;
617
+ type: string;
618
+ config: {
619
+ props: {
620
+ color: string;
621
+ width: string;
622
+ masked: string;
623
+ styles: {};
624
+ fontSize: string;
625
+ inputType: string;
626
+ multiLine: string;
627
+ textAlign: string;
628
+ fontFamily: string;
629
+ fontWeight: string;
630
+ paddingTop: string;
631
+ borderColor: string;
632
+ paddingLeft: string;
633
+ paddingRight: string;
634
+ paddingBottom: string;
635
+ backgroundColor: string;
636
+ dataCaptureName: string;
637
+ };
638
+ wide?: undefined;
639
+ compact?: undefined;
640
+ };
641
+ children: never[];
642
+ instance: string;
643
+ metadata: {
644
+ group?: undefined;
645
+ };
646
+ ordering: number;
647
+ actionable: boolean;
648
+ properties: {
649
+ dataCapture: {
650
+ id: string;
651
+ property: string;
652
+ required: boolean;
653
+ createdAt: string;
654
+ updatedAt: string;
655
+ propertyType: string;
656
+ isConfigurable: boolean;
657
+ moleculeItemId: null;
658
+ predefinedValue: null;
659
+ dataCaptureName: string;
660
+ sourceDataModelFieldId: string;
661
+ };
662
+ placeholderText: {
663
+ id: string;
664
+ text: string;
665
+ property: string;
666
+ createdAt: string;
667
+ updatedAt: string;
668
+ isRichText: boolean;
669
+ propertyType: string;
670
+ moleculeItemId: null;
671
+ showRichTextToolbar: boolean;
672
+ };
673
+ backgroundImage?: undefined;
674
+ };
675
+ triggerable: boolean;
676
+ referenceName: string;
677
+ moleculeLibraryId: string;
678
+ organismLibraryMoleculeId: string;
679
+ pmiObjectId?: undefined;
680
+ containerLibraryId?: undefined;
681
+ containerLibraryName?: undefined;
682
+ organismLibraryContainerId?: undefined;
683
+ stateValueOptionMasterStateId?: undefined;
684
+ })[];
685
+ actionable?: undefined;
686
+ triggerable?: undefined;
687
+ referenceName?: undefined;
688
+ moleculeLibraryId?: undefined;
689
+ organismLibraryMoleculeId?: undefined;
690
+ })[];
691
+ } | {
692
+ id: string;
693
+ name: string;
694
+ type: string;
695
+ config: {
696
+ wide: {
697
+ containerProps: {};
698
+ containerStyle: {
699
+ gap: string;
700
+ width: string;
701
+ zIndex: string;
702
+ display: string;
703
+ flexWrap: string;
704
+ position: string;
705
+ boxShadow: string;
706
+ overflowX: string;
707
+ overflowY: string;
708
+ alignItems: string;
709
+ paddingTop: string;
710
+ borderColor: string;
711
+ borderStyle: string;
712
+ paddingLeft: string;
713
+ paddingRight: string;
714
+ flexDirection: string;
715
+ paddingBottom: string;
716
+ justifyContent: string;
717
+ backgroundColor: string;
718
+ enableBackgroundImage: string;
719
+ 'border-top-left-radius': string;
720
+ 'border-top-right-radius': string;
721
+ 'border-bottom-left-radius': string;
722
+ 'border-bottom-right-radius': string;
723
+ };
724
+ };
725
+ compact: {
726
+ containerProps: {};
727
+ containerStyle: {
728
+ gap: string;
729
+ width: string;
730
+ flexWrap: string;
731
+ overflowX: string;
732
+ overflowY: string;
733
+ paddingTop: string;
734
+ paddingLeft: string;
735
+ paddingRight: string;
736
+ paddingBottom: string;
737
+ };
738
+ };
739
+ };
740
+ instance: string;
741
+ metadata: {
742
+ group: string[];
743
+ };
744
+ ordering: number;
745
+ properties: {
746
+ backgroundImage: {
747
+ id: string;
748
+ property: string;
749
+ propertyType: string;
750
+ imageFile: {
751
+ id: string;
752
+ url: string;
753
+ name: string;
754
+ size: number;
755
+ type: string;
756
+ source: string;
757
+ property: string;
758
+ fileType: string;
759
+ createdAt: string;
760
+ updatedAt: string;
761
+ description: null;
762
+ originalName: string;
763
+ propertyType: string;
764
+ };
765
+ };
766
+ };
767
+ pmiObjectId: null;
768
+ containerLibraryId: string;
769
+ containerLibraryName: string;
770
+ organismLibraryContainerId: string;
771
+ stateValueOptionMasterStateId: null;
772
+ children: ({
773
+ id: string;
774
+ name: string;
775
+ type: string;
776
+ config: {
777
+ wide: {
778
+ containerProps: {};
779
+ containerStyle: {
780
+ gap: string;
781
+ width: string;
782
+ zIndex: string;
783
+ display: string;
784
+ flexWrap: string;
785
+ position: string;
786
+ boxShadow: string;
787
+ overflowX: string;
788
+ overflowY: string;
789
+ alignItems: string;
790
+ paddingTop: string;
791
+ borderColor: string;
792
+ borderStyle: string;
793
+ paddingLeft: string;
794
+ paddingRight: string;
795
+ flexDirection: string;
796
+ paddingBottom: string;
797
+ justifyContent: string;
798
+ backgroundColor: string;
799
+ enableBackgroundImage: string;
800
+ 'border-top-left-radius': string;
801
+ 'border-top-right-radius': string;
802
+ 'border-bottom-left-radius': string;
803
+ 'border-bottom-right-radius': string;
804
+ };
805
+ };
806
+ compact: {
807
+ containerProps: {};
808
+ containerStyle: {
809
+ gap: string;
810
+ width: string;
811
+ flexWrap: string;
812
+ overflowX: string;
813
+ overflowY: string;
814
+ paddingTop: string;
815
+ paddingLeft: string;
816
+ paddingRight: string;
817
+ paddingBottom: string;
818
+ };
819
+ };
820
+ props?: undefined;
821
+ };
822
+ instance: string;
823
+ metadata: {
824
+ group: string[];
825
+ };
826
+ ordering: number;
827
+ properties: {
828
+ backgroundImage: {
829
+ id: string;
830
+ property: string;
831
+ propertyType: string;
832
+ imageFile: {
833
+ id: string;
834
+ url: string;
835
+ name: string;
836
+ size: number;
837
+ type: string;
838
+ source: string;
839
+ property: string;
840
+ fileType: string;
841
+ createdAt: string;
842
+ updatedAt: string;
843
+ description: null;
844
+ originalName: string;
845
+ propertyType: string;
846
+ };
847
+ };
848
+ text?: undefined;
849
+ action?: undefined;
850
+ disabled?: undefined;
851
+ interacted?: undefined;
852
+ };
853
+ pmiObjectId: null;
854
+ containerLibraryId: string;
855
+ containerLibraryName: string;
856
+ organismLibraryContainerId: string;
857
+ stateValueOptionMasterStateId: null;
858
+ children: {
859
+ id: string;
860
+ name: string;
861
+ type: string;
862
+ config: {
863
+ wide: {
864
+ containerProps: {};
865
+ containerStyle: {
866
+ gap: string;
867
+ width: string;
868
+ zIndex: string;
869
+ display: string;
870
+ flexWrap: string;
871
+ position: string;
872
+ boxShadow: string;
873
+ overflowX: string;
874
+ overflowY: string;
875
+ alignItems: string;
876
+ paddingTop: string;
877
+ borderColor: string;
878
+ borderStyle: string;
879
+ paddingLeft: string;
880
+ paddingRight: string;
881
+ flexDirection: string;
882
+ paddingBottom: string;
883
+ justifyContent: string;
884
+ backgroundColor: string;
885
+ enableBackgroundImage: string;
886
+ 'border-top-left-radius': string;
887
+ 'border-top-right-radius': string;
888
+ 'border-bottom-left-radius': string;
889
+ 'border-bottom-right-radius': string;
890
+ };
891
+ };
892
+ compact: {
893
+ containerProps: {};
894
+ containerStyle: {
895
+ gap: string;
896
+ width: string;
897
+ flexWrap: string;
898
+ overflowX: string;
899
+ overflowY: string;
900
+ paddingTop: string;
901
+ paddingLeft: string;
902
+ paddingRight: string;
903
+ paddingBottom: string;
904
+ };
905
+ };
906
+ };
907
+ instance: string;
908
+ metadata: {
909
+ group: string[];
910
+ };
911
+ ordering: number;
912
+ properties: {
913
+ backgroundImage: {
914
+ id: string;
915
+ property: string;
916
+ propertyType: string;
917
+ imageFile: {
918
+ id: string;
919
+ url: string;
920
+ name: string;
921
+ size: number;
922
+ type: string;
923
+ source: string;
924
+ property: string;
925
+ fileType: string;
926
+ createdAt: string;
927
+ updatedAt: string;
928
+ description: null;
929
+ originalName: string;
930
+ propertyType: string;
931
+ };
932
+ };
933
+ };
934
+ pmiObjectId: null;
935
+ containerLibraryId: string;
936
+ containerLibraryName: string;
937
+ organismLibraryContainerId: string;
938
+ stateValueOptionMasterStateId: null;
939
+ children: ({
940
+ id: string;
941
+ name: string;
942
+ type: string;
943
+ config: {
944
+ props: {
945
+ styles: {};
946
+ paddingTop: string;
947
+ paddingLeft: string;
948
+ paddingRight: string;
949
+ paddingBottom: string;
950
+ color?: undefined;
951
+ width?: undefined;
952
+ masked?: undefined;
953
+ fontSize?: undefined;
954
+ inputType?: undefined;
955
+ multiLine?: undefined;
956
+ textAlign?: undefined;
957
+ fontFamily?: undefined;
958
+ fontWeight?: undefined;
959
+ borderColor?: undefined;
960
+ backgroundColor?: undefined;
961
+ dataCaptureName?: undefined;
962
+ };
963
+ };
964
+ children: never[];
965
+ instance: string;
966
+ metadata: {
967
+ group: string[];
968
+ };
969
+ ordering: number;
970
+ actionable: boolean;
971
+ properties: {
972
+ text: {
973
+ id: string;
974
+ text: string;
975
+ property: string;
976
+ createdAt: string;
977
+ updatedAt: string;
978
+ isRichText: boolean;
979
+ propertyType: string;
980
+ moleculeItemId: null;
981
+ showRichTextToolbar: boolean;
982
+ };
983
+ dataCapture?: undefined;
984
+ placeholderText?: undefined;
985
+ };
986
+ triggerable: boolean;
987
+ referenceName: string;
988
+ moleculeLibraryId: string;
989
+ organismLibraryMoleculeId: string;
990
+ } | {
991
+ id: string;
992
+ name: string;
993
+ type: string;
994
+ config: {
995
+ props: {
996
+ color: string;
997
+ width: string;
998
+ masked: string;
999
+ styles: {};
1000
+ fontSize: string;
1001
+ inputType: string;
1002
+ multiLine: string;
1003
+ textAlign: string;
1004
+ fontFamily: string;
1005
+ fontWeight: string;
1006
+ paddingTop: string;
1007
+ borderColor: string;
1008
+ paddingLeft: string;
1009
+ paddingRight: string;
1010
+ paddingBottom: string;
1011
+ backgroundColor: string;
1012
+ dataCaptureName: string;
1013
+ };
1014
+ };
1015
+ children: never[];
1016
+ instance: string;
1017
+ metadata: {
1018
+ group?: undefined;
1019
+ };
1020
+ ordering: number;
1021
+ actionable: boolean;
1022
+ properties: {
1023
+ dataCapture: {
1024
+ id: string;
1025
+ property: string;
1026
+ required: boolean;
1027
+ createdAt: string;
1028
+ updatedAt: string;
1029
+ propertyType: string;
1030
+ isConfigurable: boolean;
1031
+ moleculeItemId: null;
1032
+ predefinedValue: null;
1033
+ dataCaptureName: string;
1034
+ sourceDataModelFieldId: string;
1035
+ };
1036
+ placeholderText: {
1037
+ id: string;
1038
+ text: string;
1039
+ property: string;
1040
+ createdAt: string;
1041
+ updatedAt: string;
1042
+ isRichText: boolean;
1043
+ propertyType: string;
1044
+ moleculeItemId: null;
1045
+ showRichTextToolbar: boolean;
1046
+ };
1047
+ text?: undefined;
1048
+ };
1049
+ triggerable: boolean;
1050
+ referenceName: string;
1051
+ moleculeLibraryId: string;
1052
+ organismLibraryMoleculeId: string;
1053
+ })[];
1054
+ }[];
1055
+ actionable?: undefined;
1056
+ triggerable?: undefined;
1057
+ referenceName?: undefined;
1058
+ moleculeLibraryId?: undefined;
1059
+ organismLibraryMoleculeId?: undefined;
1060
+ } | {
1061
+ id: string;
1062
+ name: string;
1063
+ type: string;
1064
+ config: {
1065
+ props: {
1066
+ styles: {};
1067
+ endIcon: string;
1068
+ variant: string;
1069
+ elevated: string;
1070
+ fontSize: string;
1071
+ iconOnly: string;
1072
+ wrapText: string;
1073
+ elevation: string;
1074
+ fillColor: string;
1075
+ fullWidth: boolean;
1076
+ startIcon: string;
1077
+ textAlign: string;
1078
+ textColor: string;
1079
+ fontFamily: string;
1080
+ fontWeight: string;
1081
+ paddingTop: string;
1082
+ borderColor: string;
1083
+ paddingLeft: string;
1084
+ borderRadius: string;
1085
+ paddingRight: string;
1086
+ paddingBottom: string;
1087
+ fillColorHover: string;
1088
+ textColorHover: string;
1089
+ borderColorHover: string;
1090
+ fillColorPressed: string;
1091
+ textColorPressed: string;
1092
+ fillColorDisabled: string;
1093
+ textColorDisabled: string;
1094
+ borderColorPressed: string;
1095
+ borderColorDisabled: string;
1096
+ };
1097
+ wide?: undefined;
1098
+ compact?: undefined;
1099
+ };
1100
+ children: never[];
1101
+ instance: string;
1102
+ metadata: {
1103
+ group?: undefined;
1104
+ };
1105
+ ordering: number;
1106
+ actionable: boolean;
1107
+ properties: {
1108
+ text: {
1109
+ id: string;
1110
+ text: string;
1111
+ property: string;
1112
+ createdAt: string;
1113
+ updatedAt: string;
1114
+ isRichText: boolean;
1115
+ propertyType: string;
1116
+ moleculeItemId: null;
1117
+ showRichTextToolbar: boolean;
1118
+ };
1119
+ action: {
1120
+ id: string;
1121
+ propertyType: string;
1122
+ property: string;
1123
+ action: {
1124
+ type: string;
1125
+ link: {
1126
+ internalLink: string;
1127
+ externalLink: string;
1128
+ name: string;
1129
+ type: string;
1130
+ };
1131
+ };
1132
+ };
1133
+ disabled: {
1134
+ id: string;
1135
+ value: string;
1136
+ property: string;
1137
+ createdAt: string;
1138
+ updatedAt: string;
1139
+ propertyType: string;
1140
+ moleculeItemId: null;
1141
+ organismAppliedId: null;
1142
+ containerAppliedId: null;
1143
+ };
1144
+ interacted: {
1145
+ id: string;
1146
+ value: string;
1147
+ property: string;
1148
+ createdAt: string;
1149
+ updatedAt: string;
1150
+ propertyType: string;
1151
+ moleculeItemId: null;
1152
+ organismAppliedId: null;
1153
+ containerAppliedId: null;
1154
+ };
1155
+ backgroundImage?: undefined;
1156
+ };
1157
+ triggerable: boolean;
1158
+ referenceName: string;
1159
+ moleculeLibraryId: string;
1160
+ organismLibraryMoleculeId: string;
1161
+ pmiObjectId?: undefined;
1162
+ containerLibraryId?: undefined;
1163
+ containerLibraryName?: undefined;
1164
+ organismLibraryContainerId?: undefined;
1165
+ stateValueOptionMasterStateId?: undefined;
1166
+ })[];
1167
+ })[];
1168
+ } | {
1169
+ id: string;
1170
+ name: string;
1171
+ type: string;
1172
+ config: {
1173
+ wide: {
1174
+ containerProps: {};
1175
+ containerStyle: {
1176
+ gap: string;
1177
+ width: string;
1178
+ paddingTop: string;
1179
+ paddingLeft: string;
1180
+ paddingRight: string;
1181
+ paddingBottom: string;
1182
+ zIndex?: undefined;
1183
+ display?: undefined;
1184
+ flexWrap?: undefined;
1185
+ position?: undefined;
1186
+ boxShadow?: undefined;
1187
+ overflowX?: undefined;
1188
+ overflowY?: undefined;
1189
+ alignItems?: undefined;
1190
+ borderColor?: undefined;
1191
+ borderStyle?: undefined;
1192
+ flexDirection?: undefined;
1193
+ justifyContent?: undefined;
1194
+ backgroundColor?: undefined;
1195
+ enableBackgroundImage?: undefined;
1196
+ "border-top-left-radius"?: undefined;
1197
+ "border-top-right-radius"?: undefined;
1198
+ "border-bottom-left-radius"?: undefined;
1199
+ "border-bottom-right-radius"?: undefined;
1200
+ };
1201
+ };
1202
+ compact: {
1203
+ containerProps: {};
1204
+ containerStyle: {
1205
+ gap: string;
1206
+ width: string;
1207
+ paddingTop: string;
1208
+ paddingLeft: string;
1209
+ paddingRight: string;
1210
+ paddingBottom: string;
1211
+ flexWrap?: undefined;
1212
+ overflowX?: undefined;
1213
+ overflowY?: undefined;
1214
+ };
1215
+ };
1216
+ };
1217
+ instance: string;
1218
+ metadata: {
1219
+ group: string[];
1220
+ };
1221
+ ordering: number;
1222
+ properties: {
1223
+ backgroundImage: {
1224
+ id: string;
1225
+ property: string;
1226
+ propertyType: string;
1227
+ imageFile: {
1228
+ id: string;
1229
+ url: string;
1230
+ name: string;
1231
+ size: number;
1232
+ type: string;
1233
+ source: string;
1234
+ property: string;
1235
+ fileType: string;
1236
+ createdAt: string;
1237
+ updatedAt: string;
1238
+ description: null;
1239
+ originalName: string;
1240
+ propertyType: string;
1241
+ };
1242
+ };
1243
+ };
1244
+ pmiObjectId: null;
1245
+ containerLibraryId: string;
1246
+ containerLibraryName: string;
1247
+ organismLibraryContainerId: string;
1248
+ stateValueOptionMasterStateId: null;
1249
+ children: {
1250
+ id: string;
1251
+ name: string;
1252
+ type: string;
1253
+ config: {
1254
+ props: {
1255
+ color: string;
1256
+ variant: string;
1257
+ orientation: string;
1258
+ };
1259
+ };
1260
+ children: never[];
1261
+ instance: string;
1262
+ metadata: {};
1263
+ ordering: number;
1264
+ actionable: boolean;
1265
+ properties: {};
1266
+ triggerable: boolean;
1267
+ referenceName: null;
1268
+ moleculeLibraryId: string;
1269
+ organismLibraryMoleculeId: string;
1270
+ }[];
1271
+ } | {
1272
+ id: string;
1273
+ name: string;
1274
+ type: string;
1275
+ config: {
1276
+ wide: {
1277
+ containerProps: {};
1278
+ containerStyle: {
1279
+ gap: string;
1280
+ width: string;
1281
+ zIndex: string;
1282
+ display: string;
1283
+ flexWrap: string;
1284
+ position: string;
1285
+ boxShadow: string;
1286
+ overflowX: string;
1287
+ overflowY: string;
1288
+ alignItems: string;
1289
+ paddingTop: string;
1290
+ borderColor: string;
1291
+ borderStyle: string;
1292
+ paddingLeft: string;
1293
+ paddingRight: string;
1294
+ flexDirection: string;
1295
+ paddingBottom: string;
1296
+ justifyContent: string;
1297
+ backgroundColor: string;
1298
+ enableBackgroundImage: string;
1299
+ 'border-top-left-radius': string;
1300
+ 'border-top-right-radius': string;
1301
+ 'border-bottom-left-radius': string;
1302
+ 'border-bottom-right-radius': string;
1303
+ };
1304
+ };
1305
+ compact: {
1306
+ containerProps: {};
1307
+ containerStyle: {
1308
+ gap: string;
1309
+ width: string;
1310
+ flexWrap: string;
1311
+ overflowX: string;
1312
+ overflowY: string;
1313
+ paddingTop: string;
1314
+ paddingLeft: string;
1315
+ paddingRight: string;
1316
+ paddingBottom: string;
1317
+ };
1318
+ };
1319
+ };
1320
+ instance: string;
1321
+ metadata: {
1322
+ group: string[];
1323
+ };
1324
+ ordering: number;
1325
+ properties: {
1326
+ backgroundImage: {
1327
+ id: string;
1328
+ property: string;
1329
+ propertyType: string;
1330
+ imageFile: {
1331
+ id: string;
1332
+ url: string;
1333
+ name: string;
1334
+ size: number;
1335
+ type: string;
1336
+ source: string;
1337
+ property: string;
1338
+ fileType: string;
1339
+ createdAt: string;
1340
+ updatedAt: string;
1341
+ description: null;
1342
+ originalName: string;
1343
+ propertyType: string;
1344
+ };
1345
+ };
1346
+ };
1347
+ pmiObjectId: null;
1348
+ containerLibraryId: string;
1349
+ containerLibraryName: string;
1350
+ organismLibraryContainerId: string;
1351
+ stateValueOptionMasterStateId: null;
1352
+ children: {
1353
+ id: string;
1354
+ name: string;
1355
+ type: string;
1356
+ config: {
1357
+ wide: {
1358
+ containerProps: {};
1359
+ containerStyle: {
1360
+ gap: string;
1361
+ width: string;
1362
+ zIndex: string;
1363
+ display: string;
1364
+ flexWrap: string;
1365
+ position: string;
1366
+ boxShadow: string;
1367
+ overflowX: string;
1368
+ overflowY: string;
1369
+ alignItems: string;
1370
+ paddingTop: string;
1371
+ borderColor: string;
1372
+ borderStyle: string;
1373
+ paddingLeft: string;
1374
+ paddingRight: string;
1375
+ flexDirection: string;
1376
+ paddingBottom: string;
1377
+ justifyContent: string;
1378
+ backgroundColor: string;
1379
+ enableBackgroundImage: string;
1380
+ 'border-top-left-radius': string;
1381
+ 'border-top-right-radius': string;
1382
+ 'border-bottom-left-radius': string;
1383
+ 'border-bottom-right-radius': string;
1384
+ };
1385
+ };
1386
+ compact: {
1387
+ containerProps: {};
1388
+ containerStyle: {
1389
+ gap: string;
1390
+ width: string;
1391
+ display: string;
1392
+ flexWrap: string;
1393
+ flexDirection: string;
1394
+ overflowX: string;
1395
+ overflowY: string;
1396
+ paddingTop: string;
1397
+ paddingLeft: string;
1398
+ paddingRight: string;
1399
+ paddingBottom: string;
1400
+ };
1401
+ };
1402
+ };
1403
+ instance: string;
1404
+ metadata: {
1405
+ group: string[];
1406
+ };
1407
+ ordering: number;
1408
+ properties: {
1409
+ backgroundImage: {
1410
+ id: string;
1411
+ property: string;
1412
+ propertyType: string;
1413
+ imageFile: {
1414
+ id: string;
1415
+ url: string;
1416
+ name: string;
1417
+ size: number;
1418
+ type: string;
1419
+ source: string;
1420
+ property: string;
1421
+ fileType: string;
1422
+ createdAt: string;
1423
+ updatedAt: string;
1424
+ description: null;
1425
+ originalName: string;
1426
+ propertyType: string;
1427
+ };
1428
+ };
1429
+ };
1430
+ pmiObjectId: null;
1431
+ containerLibraryId: string;
1432
+ containerLibraryName: string;
1433
+ organismLibraryContainerId: string;
1434
+ stateValueOptionMasterStateId: null;
1435
+ children: {
1436
+ id: string;
1437
+ name: string;
1438
+ type: string;
1439
+ linkedDataModelFieldId: string;
1440
+ config: {
1441
+ wide: {
1442
+ containerProps: {};
1443
+ containerStyle: {
1444
+ gap: string;
1445
+ width: string;
1446
+ minWidth: string;
1447
+ zIndex: string;
1448
+ display: string;
1449
+ flexWrap: string;
1450
+ position: string;
1451
+ boxShadow: string;
1452
+ overflowX: string;
1453
+ overflowY: string;
1454
+ alignItems: string;
1455
+ paddingTop: string;
1456
+ borderColor: string;
1457
+ borderStyle: string;
1458
+ paddingLeft: string;
1459
+ paddingRight: string;
1460
+ flexDirection: string;
1461
+ paddingBottom: string;
1462
+ justifyContent: string;
1463
+ backgroundColor: string;
1464
+ enableBackgroundImage: string;
1465
+ 'border-top-left-radius': string;
1466
+ 'border-top-right-radius': string;
1467
+ 'border-bottom-left-radius': string;
1468
+ 'border-bottom-right-radius': string;
1469
+ };
1470
+ };
1471
+ compact: {
1472
+ containerProps: {};
1473
+ containerStyle: {
1474
+ gap: string;
1475
+ width: string;
1476
+ flexWrap: string;
1477
+ overflowX: string;
1478
+ overflowY: string;
1479
+ paddingTop: string;
1480
+ paddingLeft: string;
1481
+ paddingRight: string;
1482
+ paddingBottom: string;
1483
+ };
1484
+ };
1485
+ };
1486
+ instance: string;
1487
+ metadata: {
1488
+ group: string[];
1489
+ };
1490
+ ordering: number;
1491
+ properties: {
1492
+ backgroundImage: {
1493
+ id: string;
1494
+ property: string;
1495
+ propertyType: string;
1496
+ imageFile: {
1497
+ id: string;
1498
+ url: string;
1499
+ name: string;
1500
+ size: number;
1501
+ type: string;
1502
+ source: string;
1503
+ property: string;
1504
+ fileType: string;
1505
+ createdAt: string;
1506
+ updatedAt: string;
1507
+ description: null;
1508
+ originalName: string;
1509
+ propertyType: string;
1510
+ };
1511
+ };
1512
+ };
1513
+ pmiObjectId: null;
1514
+ containerLibraryId: string;
1515
+ containerLibraryName: string;
1516
+ organismLibraryContainerId: string;
1517
+ stateValueOptionMasterStateId: null;
1518
+ children: {
1519
+ id: string;
1520
+ name: string;
1521
+ type: string;
1522
+ config: {
1523
+ wide: {
1524
+ containerProps: {};
1525
+ containerStyle: {
1526
+ gap: string;
1527
+ width: string;
1528
+ minWidth: string;
1529
+ zIndex: string;
1530
+ display: string;
1531
+ flexWrap: string;
1532
+ position: string;
1533
+ boxShadow: string;
1534
+ overflowX: string;
1535
+ overflowY: string;
1536
+ alignItems: string;
1537
+ paddingTop: string;
1538
+ borderColor: string;
1539
+ borderStyle: string;
1540
+ paddingLeft: string;
1541
+ paddingRight: string;
1542
+ flexDirection: string;
1543
+ paddingBottom: string;
1544
+ justifyContent: string;
1545
+ backgroundColor: string;
1546
+ enableBackgroundImage: string;
1547
+ 'border-top-left-radius': string;
1548
+ 'border-top-right-radius': string;
1549
+ 'border-bottom-left-radius': string;
1550
+ 'border-bottom-right-radius': string;
1551
+ };
1552
+ };
1553
+ compact: {
1554
+ containerProps: {};
1555
+ containerStyle: {
1556
+ gap: string;
1557
+ width: string;
1558
+ flexWrap: string;
1559
+ overflowX: string;
1560
+ overflowY: string;
1561
+ paddingTop: string;
1562
+ paddingLeft: string;
1563
+ paddingRight: string;
1564
+ paddingBottom: string;
1565
+ };
1566
+ };
1567
+ };
1568
+ instance: string;
1569
+ metadata: {
1570
+ group: string[];
1571
+ };
1572
+ ordering: number;
1573
+ properties: {
1574
+ backgroundImage: {
1575
+ id: string;
1576
+ property: string;
1577
+ propertyType: string;
1578
+ imageFile: {
1579
+ id: string;
1580
+ url: string;
1581
+ name: string;
1582
+ size: number;
1583
+ type: string;
1584
+ source: string;
1585
+ property: string;
1586
+ fileType: string;
1587
+ createdAt: string;
1588
+ updatedAt: string;
1589
+ description: null;
1590
+ originalName: string;
1591
+ propertyType: string;
1592
+ };
1593
+ };
1594
+ };
1595
+ pmiObjectId: null;
1596
+ containerLibraryId: string;
1597
+ containerLibraryName: string;
1598
+ organismLibraryContainerId: string;
1599
+ stateValueOptionMasterStateId: null;
1600
+ children: ({
1601
+ id: string;
1602
+ name: string;
1603
+ type: string;
1604
+ config: {
1605
+ props: {
1606
+ color: string;
1607
+ styles: {};
1608
+ fontSize: string;
1609
+ inputType: string;
1610
+ textAlign: string;
1611
+ fontFamily: string;
1612
+ fontWeight: string;
1613
+ paddingTop: string;
1614
+ borderColor: string;
1615
+ paddingLeft: string;
1616
+ paddingRight: string;
1617
+ paddingBottom: string;
1618
+ };
1619
+ wide?: undefined;
1620
+ compact?: undefined;
1621
+ };
1622
+ children: never[];
1623
+ instance: string;
1624
+ metadata: {
1625
+ group?: undefined;
1626
+ };
1627
+ ordering: number;
1628
+ actionable: boolean;
1629
+ properties: {
1630
+ dataCapture: {
1631
+ id: string;
1632
+ property: string;
1633
+ required: boolean;
1634
+ createdAt: string;
1635
+ updatedAt: string;
1636
+ propertyType: string;
1637
+ isConfigurable: boolean;
1638
+ moleculeItemId: null;
1639
+ predefinedValue: null;
1640
+ dataCaptureName: string;
1641
+ sourceDataModelFieldId: string;
1642
+ };
1643
+ placeholderText: {
1644
+ id: string;
1645
+ text: string;
1646
+ property: string;
1647
+ createdAt: string;
1648
+ updatedAt: string;
1649
+ isRichText: boolean;
1650
+ propertyType: string;
1651
+ moleculeItemId: null;
1652
+ showRichTextToolbar: boolean;
1653
+ };
1654
+ backgroundImage?: undefined;
1655
+ };
1656
+ triggerable: boolean;
1657
+ referenceName: null;
1658
+ moleculeLibraryId: string;
1659
+ organismLibraryMoleculeId: string;
1660
+ linkedDataModelFieldId?: undefined;
1661
+ pmiObjectId?: undefined;
1662
+ containerLibraryId?: undefined;
1663
+ containerLibraryName?: undefined;
1664
+ organismLibraryContainerId?: undefined;
1665
+ stateValueOptionMasterStateId?: undefined;
1666
+ } | {
1667
+ id: string;
1668
+ name: string;
1669
+ type: string;
1670
+ linkedDataModelFieldId: string;
1671
+ config: {
1672
+ wide: {
1673
+ containerProps: {};
1674
+ containerStyle: {
1675
+ gap: string;
1676
+ width: string;
1677
+ zIndex: string;
1678
+ display: string;
1679
+ flexWrap: string;
1680
+ position: string;
1681
+ boxShadow: string;
1682
+ overflowX: string;
1683
+ overflowY: string;
1684
+ alignItems: string;
1685
+ paddingTop: string;
1686
+ borderColor: string;
1687
+ borderStyle: string;
1688
+ paddingLeft: string;
1689
+ paddingRight: string;
1690
+ flexDirection: string;
1691
+ paddingBottom: string;
1692
+ justifyContent: string;
1693
+ backgroundColor: string;
1694
+ enableBackgroundImage: string;
1695
+ 'border-top-left-radius': string;
1696
+ 'border-top-right-radius': string;
1697
+ 'border-bottom-left-radius': string;
1698
+ 'border-bottom-right-radius': string;
1699
+ };
1700
+ };
1701
+ compact: {
1702
+ containerProps: {};
1703
+ containerStyle: {
1704
+ gap: string;
1705
+ width: string;
1706
+ flexWrap: string;
1707
+ overflowX: string;
1708
+ overflowY: string;
1709
+ paddingTop: string;
1710
+ paddingLeft: string;
1711
+ paddingRight: string;
1712
+ paddingBottom: string;
1713
+ };
1714
+ };
1715
+ props?: undefined;
1716
+ };
1717
+ instance: string;
1718
+ metadata: {
1719
+ group: string[];
1720
+ };
1721
+ ordering: number;
1722
+ properties: {
1723
+ backgroundImage: {
1724
+ id: string;
1725
+ property: string;
1726
+ propertyType: string;
1727
+ imageFile: {
1728
+ id: string;
1729
+ url: string;
1730
+ name: string;
1731
+ size: number;
1732
+ type: string;
1733
+ source: string;
1734
+ property: string;
1735
+ fileType: string;
1736
+ createdAt: string;
1737
+ updatedAt: string;
1738
+ description: null;
1739
+ originalName: string;
1740
+ propertyType: string;
1741
+ };
1742
+ };
1743
+ dataCapture?: undefined;
1744
+ placeholderText?: undefined;
1745
+ };
1746
+ pmiObjectId: null;
1747
+ containerLibraryId: string;
1748
+ containerLibraryName: string;
1749
+ organismLibraryContainerId: string;
1750
+ stateValueOptionMasterStateId: null;
1751
+ children: {
1752
+ id: string;
1753
+ name: string;
1754
+ type: string;
1755
+ config: {
1756
+ wide: {
1757
+ containerProps: {};
1758
+ containerStyle: {
1759
+ gap: string;
1760
+ width: string;
1761
+ zIndex: string;
1762
+ display: string;
1763
+ flexWrap: string;
1764
+ position: string;
1765
+ boxShadow: string;
1766
+ overflowX: string;
1767
+ overflowY: string;
1768
+ alignItems: string;
1769
+ paddingTop: string;
1770
+ borderColor: string;
1771
+ borderStyle: string;
1772
+ borderWidth: string;
1773
+ paddingLeft: string;
1774
+ paddingRight: string;
1775
+ flexDirection: string;
1776
+ paddingBottom: string;
1777
+ justifyContent: string;
1778
+ backgroundColor: string;
1779
+ enableBackgroundImage: string;
1780
+ 'border-top-left-radius': string;
1781
+ 'border-top-right-radius': string;
1782
+ 'border-bottom-left-radius': string;
1783
+ 'border-bottom-right-radius': string;
1784
+ };
1785
+ };
1786
+ compact: {
1787
+ containerProps: {};
1788
+ containerStyle: {
1789
+ gap: string;
1790
+ width: string;
1791
+ flexWrap: string;
1792
+ overflowX: string;
1793
+ overflowY: string;
1794
+ paddingTop: string;
1795
+ paddingLeft: string;
1796
+ paddingRight: string;
1797
+ paddingBottom: string;
1798
+ };
1799
+ };
1800
+ };
1801
+ instance: string;
1802
+ metadata: {
1803
+ group: string[];
1804
+ };
1805
+ ordering: number;
1806
+ properties: {
1807
+ backgroundImage: {
1808
+ id: string;
1809
+ property: string;
1810
+ propertyType: string;
1811
+ imageFile: {
1812
+ id: string;
1813
+ url: string;
1814
+ name: string;
1815
+ size: number;
1816
+ type: string;
1817
+ source: string;
1818
+ property: string;
1819
+ fileType: string;
1820
+ createdAt: string;
1821
+ updatedAt: string;
1822
+ description: null;
1823
+ originalName: string;
1824
+ propertyType: string;
1825
+ };
1826
+ };
1827
+ };
1828
+ pmiObjectId: null;
1829
+ containerLibraryId: string;
1830
+ containerLibraryName: string;
1831
+ organismLibraryContainerId: string;
1832
+ stateValueOptionMasterStateId: null;
1833
+ children: ({
1834
+ id: string;
1835
+ name: string;
1836
+ type: string;
1837
+ config: {
1838
+ props: {
1839
+ color: string;
1840
+ styles: {};
1841
+ fontSize: string;
1842
+ inputType: string;
1843
+ textAlign: string;
1844
+ fontFamily: string;
1845
+ fontWeight: string;
1846
+ paddingTop: string;
1847
+ borderColor: string;
1848
+ paddingLeft: string;
1849
+ paddingRight: string;
1850
+ paddingBottom: string;
1851
+ endIcon?: undefined;
1852
+ variant?: undefined;
1853
+ elevated?: undefined;
1854
+ iconOnly?: undefined;
1855
+ wrapText?: undefined;
1856
+ elevation?: undefined;
1857
+ fillColor?: undefined;
1858
+ fullWidth?: undefined;
1859
+ startIcon?: undefined;
1860
+ textColor?: undefined;
1861
+ borderRadius?: undefined;
1862
+ fillColorHover?: undefined;
1863
+ textColorHover?: undefined;
1864
+ borderColorHover?: undefined;
1865
+ fillColorPressed?: undefined;
1866
+ textColorPressed?: undefined;
1867
+ fillColorDisabled?: undefined;
1868
+ textColorDisabled?: undefined;
1869
+ borderColorPressed?: undefined;
1870
+ borderColorDisabled?: undefined;
1871
+ width?: undefined;
1872
+ height?: undefined;
1873
+ backgroundColor?: undefined;
1874
+ iconSize?: undefined;
1875
+ };
1876
+ };
1877
+ children: never[];
1878
+ instance: string;
1879
+ metadata: {};
1880
+ ordering: number;
1881
+ actionable: boolean;
1882
+ properties: {
1883
+ dataCapture: {
1884
+ id: string;
1885
+ property: string;
1886
+ required: boolean;
1887
+ createdAt: string;
1888
+ updatedAt: string;
1889
+ propertyType: string;
1890
+ isConfigurable: boolean;
1891
+ moleculeItemId: null;
1892
+ predefinedValue: null;
1893
+ dataCaptureName: string;
1894
+ sourceDataModelFieldId: string;
1895
+ };
1896
+ placeholderText: {
1897
+ id: string;
1898
+ text: string;
1899
+ property: string;
1900
+ createdAt: string;
1901
+ updatedAt: string;
1902
+ isRichText: boolean;
1903
+ propertyType: string;
1904
+ moleculeItemId: null;
1905
+ showRichTextToolbar: boolean;
1906
+ };
1907
+ text?: undefined;
1908
+ action?: undefined;
1909
+ disabled?: undefined;
1910
+ interacted?: undefined;
1911
+ };
1912
+ triggerable: boolean;
1913
+ referenceName: null;
1914
+ moleculeLibraryId: string;
1915
+ organismLibraryMoleculeId: string;
1916
+ } | {
1917
+ id: string;
1918
+ name: string;
1919
+ type: string;
1920
+ config: {
1921
+ props: {
1922
+ styles: {};
1923
+ endIcon: string;
1924
+ variant: string;
1925
+ elevated: string;
1926
+ fontSize: string;
1927
+ iconOnly: string;
1928
+ wrapText: string;
1929
+ elevation: string;
1930
+ fillColor: string;
1931
+ fullWidth: boolean;
1932
+ startIcon: string;
1933
+ textAlign: string;
1934
+ textColor: string;
1935
+ fontFamily: string;
1936
+ fontWeight: string;
1937
+ paddingTop: string;
1938
+ borderColor: string;
1939
+ paddingLeft: string;
1940
+ borderRadius: string;
1941
+ paddingRight: string;
1942
+ paddingBottom: string;
1943
+ fillColorHover: string;
1944
+ textColorHover: string;
1945
+ borderColorHover: string;
1946
+ fillColorPressed: string;
1947
+ textColorPressed: string;
1948
+ fillColorDisabled: string;
1949
+ textColorDisabled: string;
1950
+ borderColorPressed: string;
1951
+ borderColorDisabled: string;
1952
+ color?: undefined;
1953
+ inputType?: undefined;
1954
+ width?: undefined;
1955
+ height?: undefined;
1956
+ backgroundColor?: undefined;
1957
+ iconSize?: undefined;
1958
+ };
1959
+ };
1960
+ children: never[];
1961
+ instance: string;
1962
+ metadata: {};
1963
+ ordering: number;
1964
+ actionable: boolean;
1965
+ properties: {
1966
+ text: {
1967
+ id: string;
1968
+ text: string;
1969
+ property: string;
1970
+ createdAt: string;
1971
+ updatedAt: string;
1972
+ isRichText: boolean;
1973
+ propertyType: string;
1974
+ moleculeItemId: null;
1975
+ showRichTextToolbar: boolean;
1976
+ };
1977
+ action: {
1978
+ id: string;
1979
+ propertyType: string;
1980
+ property: string;
1981
+ action: {
1982
+ type: string;
1983
+ navigateToPrepopulateForm: {
1984
+ formId: string;
1985
+ prepopulateFields: {
1986
+ fieldId: string;
1987
+ valueFromDataModel: string;
1988
+ }[];
1989
+ };
1990
+ };
1991
+ };
1992
+ disabled: {
1993
+ id: string;
1994
+ value: boolean;
1995
+ property: string;
1996
+ createdAt: string;
1997
+ updatedAt: string;
1998
+ propertyType: string;
1999
+ moleculeItemId: null;
2000
+ organismAppliedId: null;
2001
+ containerAppliedId: null;
2002
+ };
2003
+ interacted: {
2004
+ id: string;
2005
+ value: string;
2006
+ property: string;
2007
+ createdAt: string;
2008
+ updatedAt: string;
2009
+ propertyType: string;
2010
+ moleculeItemId: null;
2011
+ organismAppliedId: null;
2012
+ containerAppliedId: null;
2013
+ };
2014
+ dataCapture?: undefined;
2015
+ placeholderText?: undefined;
2016
+ };
2017
+ triggerable: boolean;
2018
+ referenceName: string;
2019
+ moleculeLibraryId: string;
2020
+ organismLibraryMoleculeId: string;
2021
+ } | {
2022
+ id: string;
2023
+ name: string;
2024
+ type: string;
2025
+ config: {
2026
+ props: {
2027
+ styles: {};
2028
+ width: string;
2029
+ height: string;
2030
+ backgroundColor: string;
2031
+ color: string;
2032
+ fontSize: string;
2033
+ iconSize: string;
2034
+ inputType?: undefined;
2035
+ textAlign?: undefined;
2036
+ fontFamily?: undefined;
2037
+ fontWeight?: undefined;
2038
+ paddingTop?: undefined;
2039
+ borderColor?: undefined;
2040
+ paddingLeft?: undefined;
2041
+ paddingRight?: undefined;
2042
+ paddingBottom?: undefined;
2043
+ endIcon?: undefined;
2044
+ variant?: undefined;
2045
+ elevated?: undefined;
2046
+ iconOnly?: undefined;
2047
+ wrapText?: undefined;
2048
+ elevation?: undefined;
2049
+ fillColor?: undefined;
2050
+ fullWidth?: undefined;
2051
+ startIcon?: undefined;
2052
+ textColor?: undefined;
2053
+ borderRadius?: undefined;
2054
+ fillColorHover?: undefined;
2055
+ textColorHover?: undefined;
2056
+ borderColorHover?: undefined;
2057
+ fillColorPressed?: undefined;
2058
+ textColorPressed?: undefined;
2059
+ fillColorDisabled?: undefined;
2060
+ textColorDisabled?: undefined;
2061
+ borderColorPressed?: undefined;
2062
+ borderColorDisabled?: undefined;
2063
+ };
2064
+ };
2065
+ children: never[];
2066
+ instance: string;
2067
+ metadata: {};
2068
+ ordering: number;
2069
+ actionable: boolean;
2070
+ properties: {
2071
+ dataCapture?: undefined;
2072
+ placeholderText?: undefined;
2073
+ text?: undefined;
2074
+ action?: undefined;
2075
+ disabled?: undefined;
2076
+ interacted?: undefined;
2077
+ };
2078
+ triggerable: boolean;
2079
+ referenceName: null;
2080
+ moleculeLibraryId: string;
2081
+ organismLibraryMoleculeId: string;
2082
+ })[];
2083
+ }[];
2084
+ actionable?: undefined;
2085
+ triggerable?: undefined;
2086
+ referenceName?: undefined;
2087
+ moleculeLibraryId?: undefined;
2088
+ organismLibraryMoleculeId?: undefined;
2089
+ })[];
2090
+ }[];
2091
+ }[];
2092
+ }[];
2093
+ } | {
2094
+ id: string;
2095
+ name: string;
2096
+ type: string;
2097
+ config: {
2098
+ wide: {
2099
+ containerProps: {};
2100
+ containerStyle: {
2101
+ gap: string;
2102
+ width: string;
2103
+ zIndex: string;
2104
+ display: string;
2105
+ flexWrap: string;
2106
+ position: string;
2107
+ boxShadow: string;
2108
+ overflowX: string;
2109
+ overflowY: string;
2110
+ alignItems: string;
2111
+ paddingTop: string;
2112
+ borderColor: string;
2113
+ borderStyle: string;
2114
+ paddingLeft: string;
2115
+ paddingRight: string;
2116
+ flexDirection: string;
2117
+ paddingBottom: string;
2118
+ justifyContent: string;
2119
+ backgroundColor: string;
2120
+ enableBackgroundImage: string;
2121
+ 'border-top-left-radius': string;
2122
+ 'border-top-right-radius': string;
2123
+ 'border-bottom-left-radius': string;
2124
+ 'border-bottom-right-radius': string;
2125
+ };
2126
+ };
2127
+ compact: {
2128
+ containerProps: {};
2129
+ containerStyle: {
2130
+ gap: string;
2131
+ width: string;
2132
+ flexWrap: string;
2133
+ overflowX: string;
2134
+ overflowY: string;
2135
+ paddingTop: string;
2136
+ paddingLeft: string;
2137
+ paddingRight: string;
2138
+ paddingBottom: string;
2139
+ };
2140
+ };
2141
+ };
2142
+ instance: string;
2143
+ metadata: {
2144
+ group: string[];
2145
+ };
2146
+ ordering: number;
2147
+ properties: {
2148
+ backgroundImage: {
2149
+ id: string;
2150
+ property: string;
2151
+ propertyType: string;
2152
+ imageFile: {
2153
+ id: string;
2154
+ url: string;
2155
+ name: string;
2156
+ size: number;
2157
+ type: string;
2158
+ source: string;
2159
+ property: string;
2160
+ fileType: string;
2161
+ createdAt: string;
2162
+ updatedAt: string;
2163
+ description: null;
2164
+ originalName: string;
2165
+ propertyType: string;
2166
+ };
2167
+ };
2168
+ };
2169
+ pmiObjectId: null;
2170
+ containerLibraryId: string;
2171
+ containerLibraryName: string;
2172
+ organismLibraryContainerId: string;
2173
+ stateValueOptionMasterStateId: null;
2174
+ children: {
2175
+ id: string;
2176
+ name: string;
2177
+ type: string;
2178
+ config: {
2179
+ props: {
2180
+ color: string;
2181
+ styles: {};
2182
+ fontSize: string;
2183
+ inputType: string;
2184
+ textAlign: string;
2185
+ fontFamily: string;
2186
+ paddingTop: string;
2187
+ borderColor: string;
2188
+ paddingLeft: string;
2189
+ paddingRight: string;
2190
+ paddingBottom: string;
2191
+ };
2192
+ };
2193
+ children: never[];
2194
+ instance: string;
2195
+ metadata: {};
2196
+ ordering: number;
2197
+ actionable: boolean;
2198
+ properties: {
2199
+ dataCapture: {
2200
+ id: string;
2201
+ property: string;
2202
+ required: boolean;
2203
+ createdAt: string;
2204
+ updatedAt: string;
2205
+ propertyType: string;
2206
+ isConfigurable: boolean;
2207
+ moleculeItemId: null;
2208
+ predefinedValue: null;
2209
+ dataCaptureName: string;
2210
+ sourceDataModelFieldId: string;
2211
+ };
2212
+ placeholderText: {
2213
+ id: string;
2214
+ text: string;
2215
+ property: string;
2216
+ createdAt: string;
2217
+ updatedAt: string;
2218
+ isRichText: boolean;
2219
+ propertyType: string;
2220
+ moleculeItemId: null;
2221
+ showRichTextToolbar: boolean;
2222
+ };
2223
+ };
2224
+ triggerable: boolean;
2225
+ referenceName: string;
2226
+ moleculeLibraryId: string;
2227
+ organismLibraryMoleculeId: string;
2228
+ }[];
2229
+ })[];
2230
+ };
2231
+ config: {};
2232
+ metadata: {
2233
+ fixed: boolean;
2234
+ group: string[];
2235
+ dynamicContent: {};
2236
+ };
2237
+ subtype: string;
2238
+ pmiObjectId: null;
2239
+ locations: string[];
2240
+ instance: string;
2241
+ };