@objectstack/platform-objects 11.9.0 → 12.0.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.
- package/dist/apps/index.d.mts +2 -2
- package/dist/apps/index.d.ts +2 -2
- package/dist/audit/index.d.mts +1148 -1458
- package/dist/audit/index.d.ts +1148 -1458
- package/dist/identity/index.d.mts +2772 -3106
- package/dist/identity/index.d.ts +2772 -3106
- package/dist/identity/index.js +19 -0
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +19 -0
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -0
- package/dist/index.mjs.map +1 -1
- package/dist/system/index.d.mts +335 -428
- package/dist/system/index.d.ts +335 -428
- package/package.json +3 -3
package/dist/audit/index.d.mts
CHANGED
|
@@ -65,7 +65,7 @@ declare const SysNotification: Omit<{
|
|
|
65
65
|
inlineTitle?: string | undefined;
|
|
66
66
|
inlineColumns?: any[] | undefined;
|
|
67
67
|
inlineAmountField?: string | undefined;
|
|
68
|
-
relatedList?: boolean | undefined;
|
|
68
|
+
relatedList?: boolean | "primary" | undefined;
|
|
69
69
|
relatedListTitle?: string | undefined;
|
|
70
70
|
relatedListColumns?: any[] | undefined;
|
|
71
71
|
displayField?: string | undefined;
|
|
@@ -346,10 +346,9 @@ declare const SysNotification: Omit<{
|
|
|
346
346
|
} | undefined;
|
|
347
347
|
} | undefined;
|
|
348
348
|
highlightFields?: string[] | undefined;
|
|
349
|
-
compactLayout?: string[] | undefined;
|
|
350
349
|
stageField?: string | false | undefined;
|
|
351
350
|
listViews?: Record<string, {
|
|
352
|
-
type: "tree" | "grid" | "kanban" | "
|
|
351
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
353
352
|
columns: string[] | {
|
|
354
353
|
field: string;
|
|
355
354
|
label?: string | undefined;
|
|
@@ -365,8 +364,55 @@ declare const SysNotification: Omit<{
|
|
|
365
364
|
link?: boolean | undefined;
|
|
366
365
|
action?: string | undefined;
|
|
367
366
|
}[];
|
|
368
|
-
|
|
367
|
+
sort?: string | {
|
|
368
|
+
field: string;
|
|
369
|
+
order: "asc" | "desc";
|
|
370
|
+
}[] | undefined;
|
|
371
|
+
filter?: {
|
|
372
|
+
field: string;
|
|
373
|
+
operator: string;
|
|
374
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
375
|
+
}[] | undefined;
|
|
376
|
+
description?: string | undefined;
|
|
369
377
|
label?: string | undefined;
|
|
378
|
+
name?: string | undefined;
|
|
379
|
+
responsive?: {
|
|
380
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
381
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
382
|
+
columns?: {
|
|
383
|
+
xs?: number | undefined;
|
|
384
|
+
sm?: number | undefined;
|
|
385
|
+
md?: number | undefined;
|
|
386
|
+
lg?: number | undefined;
|
|
387
|
+
xl?: number | undefined;
|
|
388
|
+
'2xl'?: number | undefined;
|
|
389
|
+
} | undefined;
|
|
390
|
+
order?: {
|
|
391
|
+
xs?: number | undefined;
|
|
392
|
+
sm?: number | undefined;
|
|
393
|
+
md?: number | undefined;
|
|
394
|
+
lg?: number | undefined;
|
|
395
|
+
xl?: number | undefined;
|
|
396
|
+
'2xl'?: number | undefined;
|
|
397
|
+
} | undefined;
|
|
398
|
+
} | undefined;
|
|
399
|
+
navigation?: {
|
|
400
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
401
|
+
preventNavigation: boolean;
|
|
402
|
+
openNewTab: boolean;
|
|
403
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
404
|
+
view?: string | undefined;
|
|
405
|
+
width?: string | number | undefined;
|
|
406
|
+
} | undefined;
|
|
407
|
+
sharing?: {
|
|
408
|
+
type: "personal" | "collaborative";
|
|
409
|
+
lockedBy?: string | undefined;
|
|
410
|
+
} | undefined;
|
|
411
|
+
aria?: {
|
|
412
|
+
ariaLabel?: string | undefined;
|
|
413
|
+
ariaDescribedBy?: string | undefined;
|
|
414
|
+
role?: string | undefined;
|
|
415
|
+
} | undefined;
|
|
370
416
|
data?: {
|
|
371
417
|
provider: "object";
|
|
372
418
|
object: string;
|
|
@@ -394,77 +440,42 @@ declare const SysNotification: Omit<{
|
|
|
394
440
|
schemaId: string;
|
|
395
441
|
schema?: Record<string, unknown> | undefined;
|
|
396
442
|
} | undefined;
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
field: string;
|
|
404
|
-
order: "asc" | "desc";
|
|
405
|
-
}[] | undefined;
|
|
406
|
-
searchableFields?: string[] | undefined;
|
|
407
|
-
filterableFields?: string[] | undefined;
|
|
408
|
-
userFilters?: {
|
|
409
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
410
|
-
fields?: {
|
|
411
|
-
field: string;
|
|
412
|
-
label?: string | undefined;
|
|
413
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
414
|
-
options?: {
|
|
415
|
-
value: string | number | boolean;
|
|
416
|
-
label: string;
|
|
417
|
-
color?: string | undefined;
|
|
418
|
-
}[] | undefined;
|
|
419
|
-
showCount?: boolean | undefined;
|
|
420
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
421
|
-
}[] | undefined;
|
|
422
|
-
tabs?: {
|
|
423
|
-
name: string;
|
|
424
|
-
pinned: boolean;
|
|
425
|
-
isDefault: boolean;
|
|
426
|
-
visible: boolean;
|
|
427
|
-
label?: string | undefined;
|
|
428
|
-
icon?: string | undefined;
|
|
429
|
-
view?: string | undefined;
|
|
430
|
-
filter?: {
|
|
431
|
-
field: string;
|
|
432
|
-
operator: string;
|
|
433
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
434
|
-
}[] | undefined;
|
|
435
|
-
order?: number | undefined;
|
|
436
|
-
}[] | undefined;
|
|
437
|
-
showAllRecords?: boolean | undefined;
|
|
443
|
+
tree?: {
|
|
444
|
+
[x: string]: unknown;
|
|
445
|
+
parentField?: string | undefined;
|
|
446
|
+
labelField?: string | undefined;
|
|
447
|
+
fields?: string[] | undefined;
|
|
448
|
+
defaultExpandedDepth?: number | undefined;
|
|
438
449
|
} | undefined;
|
|
450
|
+
inlineEdit?: boolean | undefined;
|
|
451
|
+
virtualScroll?: boolean | undefined;
|
|
439
452
|
resizable?: boolean | undefined;
|
|
440
|
-
striped?: boolean | undefined;
|
|
441
|
-
bordered?: boolean | undefined;
|
|
442
|
-
compactToolbar?: boolean | undefined;
|
|
443
|
-
selection?: {
|
|
444
|
-
type: "none" | "multiple" | "single";
|
|
445
|
-
} | undefined;
|
|
446
|
-
navigation?: {
|
|
447
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
448
|
-
preventNavigation: boolean;
|
|
449
|
-
openNewTab: boolean;
|
|
450
|
-
view?: string | undefined;
|
|
451
|
-
width?: string | number | undefined;
|
|
452
|
-
} | undefined;
|
|
453
|
-
pagination?: {
|
|
454
|
-
pageSize: number;
|
|
455
|
-
pageSizeOptions?: number[] | undefined;
|
|
456
|
-
} | undefined;
|
|
457
453
|
kanban?: {
|
|
458
454
|
groupByField: string;
|
|
459
455
|
columns: string[];
|
|
460
456
|
summarizeField?: string | undefined;
|
|
461
457
|
} | undefined;
|
|
458
|
+
gallery?: {
|
|
459
|
+
coverFit: "cover" | "contain";
|
|
460
|
+
cardSize: "small" | "medium" | "large";
|
|
461
|
+
coverField?: string | undefined;
|
|
462
|
+
titleField?: string | undefined;
|
|
463
|
+
visibleFields?: string[] | undefined;
|
|
464
|
+
} | undefined;
|
|
462
465
|
calendar?: {
|
|
463
466
|
startDateField: string;
|
|
464
467
|
titleField: string;
|
|
465
468
|
endDateField?: string | undefined;
|
|
466
469
|
colorField?: string | undefined;
|
|
467
470
|
} | undefined;
|
|
471
|
+
timeline?: {
|
|
472
|
+
startDateField: string;
|
|
473
|
+
titleField: string;
|
|
474
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
475
|
+
endDateField?: string | undefined;
|
|
476
|
+
groupByField?: string | undefined;
|
|
477
|
+
colorField?: string | undefined;
|
|
478
|
+
} | undefined;
|
|
468
479
|
gantt?: {
|
|
469
480
|
[x: string]: unknown;
|
|
470
481
|
startDateField: string;
|
|
@@ -496,40 +507,40 @@ declare const SysNotification: Omit<{
|
|
|
496
507
|
}[] | undefined;
|
|
497
508
|
autoZoomToFilter?: boolean | undefined;
|
|
498
509
|
} | undefined;
|
|
499
|
-
gallery?: {
|
|
500
|
-
coverFit: "cover" | "contain";
|
|
501
|
-
cardSize: "small" | "medium" | "large";
|
|
502
|
-
coverField?: string | undefined;
|
|
503
|
-
titleField?: string | undefined;
|
|
504
|
-
visibleFields?: string[] | undefined;
|
|
505
|
-
} | undefined;
|
|
506
|
-
timeline?: {
|
|
507
|
-
startDateField: string;
|
|
508
|
-
titleField: string;
|
|
509
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
510
|
-
endDateField?: string | undefined;
|
|
511
|
-
groupByField?: string | undefined;
|
|
512
|
-
colorField?: string | undefined;
|
|
513
|
-
} | undefined;
|
|
514
510
|
chart?: {
|
|
515
511
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
516
512
|
dataset: string;
|
|
517
513
|
values: string[];
|
|
518
514
|
dimensions?: string[] | undefined;
|
|
519
515
|
} | undefined;
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
516
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
517
|
+
tabs?: {
|
|
518
|
+
name: string;
|
|
519
|
+
pinned: boolean;
|
|
520
|
+
isDefault: boolean;
|
|
521
|
+
visible: boolean;
|
|
522
|
+
label?: string | undefined;
|
|
523
|
+
icon?: string | undefined;
|
|
524
|
+
view?: string | undefined;
|
|
525
|
+
filter?: {
|
|
526
|
+
field: string;
|
|
527
|
+
operator: string;
|
|
528
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
529
|
+
}[] | undefined;
|
|
530
|
+
order?: number | undefined;
|
|
531
|
+
}[] | undefined;
|
|
532
|
+
searchableFields?: string[] | undefined;
|
|
533
|
+
filterableFields?: string[] | undefined;
|
|
534
|
+
striped?: boolean | undefined;
|
|
535
|
+
bordered?: boolean | undefined;
|
|
536
|
+
compactToolbar?: boolean | undefined;
|
|
537
|
+
selection?: {
|
|
538
|
+
type: "none" | "multiple" | "single";
|
|
526
539
|
} | undefined;
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
lockedBy?: string | undefined;
|
|
540
|
+
pagination?: {
|
|
541
|
+
pageSize: number;
|
|
542
|
+
pageSizeOptions?: number[] | undefined;
|
|
531
543
|
} | undefined;
|
|
532
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
533
544
|
grouping?: {
|
|
534
545
|
fields: {
|
|
535
546
|
field: string;
|
|
@@ -546,7 +557,6 @@ declare const SysNotification: Omit<{
|
|
|
546
557
|
rowActions?: string[] | undefined;
|
|
547
558
|
bulkActions?: string[] | undefined;
|
|
548
559
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
549
|
-
virtualScroll?: boolean | undefined;
|
|
550
560
|
conditionalFormatting?: {
|
|
551
561
|
condition: {
|
|
552
562
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -567,7 +577,6 @@ declare const SysNotification: Omit<{
|
|
|
567
577
|
};
|
|
568
578
|
style: Record<string, string>;
|
|
569
579
|
}[] | undefined;
|
|
570
|
-
inlineEdit?: boolean | undefined;
|
|
571
580
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
572
581
|
userActions?: {
|
|
573
582
|
sort: boolean;
|
|
@@ -580,23 +589,8 @@ declare const SysNotification: Omit<{
|
|
|
580
589
|
} | undefined;
|
|
581
590
|
appearance?: {
|
|
582
591
|
showDescription: boolean;
|
|
583
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
592
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
584
593
|
} | undefined;
|
|
585
|
-
tabs?: {
|
|
586
|
-
name: string;
|
|
587
|
-
pinned: boolean;
|
|
588
|
-
isDefault: boolean;
|
|
589
|
-
visible: boolean;
|
|
590
|
-
label?: string | undefined;
|
|
591
|
-
icon?: string | undefined;
|
|
592
|
-
view?: string | undefined;
|
|
593
|
-
filter?: {
|
|
594
|
-
field: string;
|
|
595
|
-
operator: string;
|
|
596
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
597
|
-
}[] | undefined;
|
|
598
|
-
order?: number | undefined;
|
|
599
|
-
}[] | undefined;
|
|
600
594
|
addRecord?: {
|
|
601
595
|
enabled: boolean;
|
|
602
596
|
position: "top" | "bottom" | "both";
|
|
@@ -610,31 +604,6 @@ declare const SysNotification: Omit<{
|
|
|
610
604
|
message?: string | undefined;
|
|
611
605
|
icon?: string | undefined;
|
|
612
606
|
} | undefined;
|
|
613
|
-
aria?: {
|
|
614
|
-
ariaLabel?: string | undefined;
|
|
615
|
-
ariaDescribedBy?: string | undefined;
|
|
616
|
-
role?: string | undefined;
|
|
617
|
-
} | undefined;
|
|
618
|
-
responsive?: {
|
|
619
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
620
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
621
|
-
columns?: {
|
|
622
|
-
xs?: number | undefined;
|
|
623
|
-
sm?: number | undefined;
|
|
624
|
-
md?: number | undefined;
|
|
625
|
-
lg?: number | undefined;
|
|
626
|
-
xl?: number | undefined;
|
|
627
|
-
'2xl'?: number | undefined;
|
|
628
|
-
} | undefined;
|
|
629
|
-
order?: {
|
|
630
|
-
xs?: number | undefined;
|
|
631
|
-
sm?: number | undefined;
|
|
632
|
-
md?: number | undefined;
|
|
633
|
-
lg?: number | undefined;
|
|
634
|
-
xl?: number | undefined;
|
|
635
|
-
'2xl'?: number | undefined;
|
|
636
|
-
} | undefined;
|
|
637
|
-
} | undefined;
|
|
638
607
|
performance?: {
|
|
639
608
|
lazyLoad?: boolean | undefined;
|
|
640
609
|
virtualScroll?: {
|
|
@@ -884,7 +853,7 @@ declare const SysNotification: Omit<{
|
|
|
884
853
|
readonly inlineTitle?: string | undefined;
|
|
885
854
|
readonly inlineColumns?: any[] | undefined;
|
|
886
855
|
readonly inlineAmountField?: string | undefined;
|
|
887
|
-
readonly relatedList?: boolean | undefined;
|
|
856
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
888
857
|
readonly relatedListTitle?: string | undefined;
|
|
889
858
|
readonly relatedListColumns?: any[] | undefined;
|
|
890
859
|
readonly displayField?: string | undefined;
|
|
@@ -1058,7 +1027,7 @@ declare const SysNotification: Omit<{
|
|
|
1058
1027
|
readonly inlineTitle?: string | undefined;
|
|
1059
1028
|
readonly inlineColumns?: any[] | undefined;
|
|
1060
1029
|
readonly inlineAmountField?: string | undefined;
|
|
1061
|
-
readonly relatedList?: boolean | undefined;
|
|
1030
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1062
1031
|
readonly relatedListTitle?: string | undefined;
|
|
1063
1032
|
readonly relatedListColumns?: any[] | undefined;
|
|
1064
1033
|
readonly displayField?: string | undefined;
|
|
@@ -1232,7 +1201,7 @@ declare const SysNotification: Omit<{
|
|
|
1232
1201
|
readonly inlineTitle?: string | undefined;
|
|
1233
1202
|
readonly inlineColumns?: any[] | undefined;
|
|
1234
1203
|
readonly inlineAmountField?: string | undefined;
|
|
1235
|
-
readonly relatedList?: boolean | undefined;
|
|
1204
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1236
1205
|
readonly relatedListTitle?: string | undefined;
|
|
1237
1206
|
readonly relatedListColumns?: any[] | undefined;
|
|
1238
1207
|
readonly displayField?: string | undefined;
|
|
@@ -1406,7 +1375,7 @@ declare const SysNotification: Omit<{
|
|
|
1406
1375
|
readonly inlineTitle?: string | undefined;
|
|
1407
1376
|
readonly inlineColumns?: any[] | undefined;
|
|
1408
1377
|
readonly inlineAmountField?: string | undefined;
|
|
1409
|
-
readonly relatedList?: boolean | undefined;
|
|
1378
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1410
1379
|
readonly relatedListTitle?: string | undefined;
|
|
1411
1380
|
readonly relatedListColumns?: any[] | undefined;
|
|
1412
1381
|
readonly displayField?: string | undefined;
|
|
@@ -1580,7 +1549,7 @@ declare const SysNotification: Omit<{
|
|
|
1580
1549
|
readonly inlineTitle?: string | undefined;
|
|
1581
1550
|
readonly inlineColumns?: any[] | undefined;
|
|
1582
1551
|
readonly inlineAmountField?: string | undefined;
|
|
1583
|
-
readonly relatedList?: boolean | undefined;
|
|
1552
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1584
1553
|
readonly relatedListTitle?: string | undefined;
|
|
1585
1554
|
readonly relatedListColumns?: any[] | undefined;
|
|
1586
1555
|
readonly displayField?: string | undefined;
|
|
@@ -1754,7 +1723,7 @@ declare const SysNotification: Omit<{
|
|
|
1754
1723
|
readonly inlineTitle?: string | undefined;
|
|
1755
1724
|
readonly inlineColumns?: any[] | undefined;
|
|
1756
1725
|
readonly inlineAmountField?: string | undefined;
|
|
1757
|
-
readonly relatedList?: boolean | undefined;
|
|
1726
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1758
1727
|
readonly relatedListTitle?: string | undefined;
|
|
1759
1728
|
readonly relatedListColumns?: any[] | undefined;
|
|
1760
1729
|
readonly displayField?: string | undefined;
|
|
@@ -1928,7 +1897,7 @@ declare const SysNotification: Omit<{
|
|
|
1928
1897
|
readonly inlineTitle?: string | undefined;
|
|
1929
1898
|
readonly inlineColumns?: any[] | undefined;
|
|
1930
1899
|
readonly inlineAmountField?: string | undefined;
|
|
1931
|
-
readonly relatedList?: boolean | undefined;
|
|
1900
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1932
1901
|
readonly relatedListTitle?: string | undefined;
|
|
1933
1902
|
readonly relatedListColumns?: any[] | undefined;
|
|
1934
1903
|
readonly displayField?: string | undefined;
|
|
@@ -2102,7 +2071,7 @@ declare const SysNotification: Omit<{
|
|
|
2102
2071
|
readonly inlineTitle?: string | undefined;
|
|
2103
2072
|
readonly inlineColumns?: any[] | undefined;
|
|
2104
2073
|
readonly inlineAmountField?: string | undefined;
|
|
2105
|
-
readonly relatedList?: boolean | undefined;
|
|
2074
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2106
2075
|
readonly relatedListTitle?: string | undefined;
|
|
2107
2076
|
readonly relatedListColumns?: any[] | undefined;
|
|
2108
2077
|
readonly displayField?: string | undefined;
|
|
@@ -2276,7 +2245,7 @@ declare const SysNotification: Omit<{
|
|
|
2276
2245
|
readonly inlineTitle?: string | undefined;
|
|
2277
2246
|
readonly inlineColumns?: any[] | undefined;
|
|
2278
2247
|
readonly inlineAmountField?: string | undefined;
|
|
2279
|
-
readonly relatedList?: boolean | undefined;
|
|
2248
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2280
2249
|
readonly relatedListTitle?: string | undefined;
|
|
2281
2250
|
readonly relatedListColumns?: any[] | undefined;
|
|
2282
2251
|
readonly displayField?: string | undefined;
|
|
@@ -2484,7 +2453,7 @@ declare const SysAttachment: Omit<{
|
|
|
2484
2453
|
inlineTitle?: string | undefined;
|
|
2485
2454
|
inlineColumns?: any[] | undefined;
|
|
2486
2455
|
inlineAmountField?: string | undefined;
|
|
2487
|
-
relatedList?: boolean | undefined;
|
|
2456
|
+
relatedList?: boolean | "primary" | undefined;
|
|
2488
2457
|
relatedListTitle?: string | undefined;
|
|
2489
2458
|
relatedListColumns?: any[] | undefined;
|
|
2490
2459
|
displayField?: string | undefined;
|
|
@@ -2765,10 +2734,9 @@ declare const SysAttachment: Omit<{
|
|
|
2765
2734
|
} | undefined;
|
|
2766
2735
|
} | undefined;
|
|
2767
2736
|
highlightFields?: string[] | undefined;
|
|
2768
|
-
compactLayout?: string[] | undefined;
|
|
2769
2737
|
stageField?: string | false | undefined;
|
|
2770
2738
|
listViews?: Record<string, {
|
|
2771
|
-
type: "tree" | "grid" | "kanban" | "
|
|
2739
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
2772
2740
|
columns: string[] | {
|
|
2773
2741
|
field: string;
|
|
2774
2742
|
label?: string | undefined;
|
|
@@ -2784,8 +2752,55 @@ declare const SysAttachment: Omit<{
|
|
|
2784
2752
|
link?: boolean | undefined;
|
|
2785
2753
|
action?: string | undefined;
|
|
2786
2754
|
}[];
|
|
2787
|
-
|
|
2755
|
+
sort?: string | {
|
|
2756
|
+
field: string;
|
|
2757
|
+
order: "asc" | "desc";
|
|
2758
|
+
}[] | undefined;
|
|
2759
|
+
filter?: {
|
|
2760
|
+
field: string;
|
|
2761
|
+
operator: string;
|
|
2762
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
2763
|
+
}[] | undefined;
|
|
2764
|
+
description?: string | undefined;
|
|
2788
2765
|
label?: string | undefined;
|
|
2766
|
+
name?: string | undefined;
|
|
2767
|
+
responsive?: {
|
|
2768
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
2769
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
2770
|
+
columns?: {
|
|
2771
|
+
xs?: number | undefined;
|
|
2772
|
+
sm?: number | undefined;
|
|
2773
|
+
md?: number | undefined;
|
|
2774
|
+
lg?: number | undefined;
|
|
2775
|
+
xl?: number | undefined;
|
|
2776
|
+
'2xl'?: number | undefined;
|
|
2777
|
+
} | undefined;
|
|
2778
|
+
order?: {
|
|
2779
|
+
xs?: number | undefined;
|
|
2780
|
+
sm?: number | undefined;
|
|
2781
|
+
md?: number | undefined;
|
|
2782
|
+
lg?: number | undefined;
|
|
2783
|
+
xl?: number | undefined;
|
|
2784
|
+
'2xl'?: number | undefined;
|
|
2785
|
+
} | undefined;
|
|
2786
|
+
} | undefined;
|
|
2787
|
+
navigation?: {
|
|
2788
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
2789
|
+
preventNavigation: boolean;
|
|
2790
|
+
openNewTab: boolean;
|
|
2791
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
2792
|
+
view?: string | undefined;
|
|
2793
|
+
width?: string | number | undefined;
|
|
2794
|
+
} | undefined;
|
|
2795
|
+
sharing?: {
|
|
2796
|
+
type: "personal" | "collaborative";
|
|
2797
|
+
lockedBy?: string | undefined;
|
|
2798
|
+
} | undefined;
|
|
2799
|
+
aria?: {
|
|
2800
|
+
ariaLabel?: string | undefined;
|
|
2801
|
+
ariaDescribedBy?: string | undefined;
|
|
2802
|
+
role?: string | undefined;
|
|
2803
|
+
} | undefined;
|
|
2789
2804
|
data?: {
|
|
2790
2805
|
provider: "object";
|
|
2791
2806
|
object: string;
|
|
@@ -2813,77 +2828,42 @@ declare const SysAttachment: Omit<{
|
|
|
2813
2828
|
schemaId: string;
|
|
2814
2829
|
schema?: Record<string, unknown> | undefined;
|
|
2815
2830
|
} | undefined;
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
field: string;
|
|
2823
|
-
order: "asc" | "desc";
|
|
2824
|
-
}[] | undefined;
|
|
2825
|
-
searchableFields?: string[] | undefined;
|
|
2826
|
-
filterableFields?: string[] | undefined;
|
|
2827
|
-
userFilters?: {
|
|
2828
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
2829
|
-
fields?: {
|
|
2830
|
-
field: string;
|
|
2831
|
-
label?: string | undefined;
|
|
2832
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
2833
|
-
options?: {
|
|
2834
|
-
value: string | number | boolean;
|
|
2835
|
-
label: string;
|
|
2836
|
-
color?: string | undefined;
|
|
2837
|
-
}[] | undefined;
|
|
2838
|
-
showCount?: boolean | undefined;
|
|
2839
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
2840
|
-
}[] | undefined;
|
|
2841
|
-
tabs?: {
|
|
2842
|
-
name: string;
|
|
2843
|
-
pinned: boolean;
|
|
2844
|
-
isDefault: boolean;
|
|
2845
|
-
visible: boolean;
|
|
2846
|
-
label?: string | undefined;
|
|
2847
|
-
icon?: string | undefined;
|
|
2848
|
-
view?: string | undefined;
|
|
2849
|
-
filter?: {
|
|
2850
|
-
field: string;
|
|
2851
|
-
operator: string;
|
|
2852
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
2853
|
-
}[] | undefined;
|
|
2854
|
-
order?: number | undefined;
|
|
2855
|
-
}[] | undefined;
|
|
2856
|
-
showAllRecords?: boolean | undefined;
|
|
2831
|
+
tree?: {
|
|
2832
|
+
[x: string]: unknown;
|
|
2833
|
+
parentField?: string | undefined;
|
|
2834
|
+
labelField?: string | undefined;
|
|
2835
|
+
fields?: string[] | undefined;
|
|
2836
|
+
defaultExpandedDepth?: number | undefined;
|
|
2857
2837
|
} | undefined;
|
|
2838
|
+
inlineEdit?: boolean | undefined;
|
|
2839
|
+
virtualScroll?: boolean | undefined;
|
|
2858
2840
|
resizable?: boolean | undefined;
|
|
2859
|
-
striped?: boolean | undefined;
|
|
2860
|
-
bordered?: boolean | undefined;
|
|
2861
|
-
compactToolbar?: boolean | undefined;
|
|
2862
|
-
selection?: {
|
|
2863
|
-
type: "none" | "multiple" | "single";
|
|
2864
|
-
} | undefined;
|
|
2865
|
-
navigation?: {
|
|
2866
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
2867
|
-
preventNavigation: boolean;
|
|
2868
|
-
openNewTab: boolean;
|
|
2869
|
-
view?: string | undefined;
|
|
2870
|
-
width?: string | number | undefined;
|
|
2871
|
-
} | undefined;
|
|
2872
|
-
pagination?: {
|
|
2873
|
-
pageSize: number;
|
|
2874
|
-
pageSizeOptions?: number[] | undefined;
|
|
2875
|
-
} | undefined;
|
|
2876
2841
|
kanban?: {
|
|
2877
2842
|
groupByField: string;
|
|
2878
2843
|
columns: string[];
|
|
2879
2844
|
summarizeField?: string | undefined;
|
|
2880
2845
|
} | undefined;
|
|
2846
|
+
gallery?: {
|
|
2847
|
+
coverFit: "cover" | "contain";
|
|
2848
|
+
cardSize: "small" | "medium" | "large";
|
|
2849
|
+
coverField?: string | undefined;
|
|
2850
|
+
titleField?: string | undefined;
|
|
2851
|
+
visibleFields?: string[] | undefined;
|
|
2852
|
+
} | undefined;
|
|
2881
2853
|
calendar?: {
|
|
2882
2854
|
startDateField: string;
|
|
2883
2855
|
titleField: string;
|
|
2884
2856
|
endDateField?: string | undefined;
|
|
2885
2857
|
colorField?: string | undefined;
|
|
2886
2858
|
} | undefined;
|
|
2859
|
+
timeline?: {
|
|
2860
|
+
startDateField: string;
|
|
2861
|
+
titleField: string;
|
|
2862
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
2863
|
+
endDateField?: string | undefined;
|
|
2864
|
+
groupByField?: string | undefined;
|
|
2865
|
+
colorField?: string | undefined;
|
|
2866
|
+
} | undefined;
|
|
2887
2867
|
gantt?: {
|
|
2888
2868
|
[x: string]: unknown;
|
|
2889
2869
|
startDateField: string;
|
|
@@ -2915,40 +2895,40 @@ declare const SysAttachment: Omit<{
|
|
|
2915
2895
|
}[] | undefined;
|
|
2916
2896
|
autoZoomToFilter?: boolean | undefined;
|
|
2917
2897
|
} | undefined;
|
|
2918
|
-
gallery?: {
|
|
2919
|
-
coverFit: "cover" | "contain";
|
|
2920
|
-
cardSize: "small" | "medium" | "large";
|
|
2921
|
-
coverField?: string | undefined;
|
|
2922
|
-
titleField?: string | undefined;
|
|
2923
|
-
visibleFields?: string[] | undefined;
|
|
2924
|
-
} | undefined;
|
|
2925
|
-
timeline?: {
|
|
2926
|
-
startDateField: string;
|
|
2927
|
-
titleField: string;
|
|
2928
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
2929
|
-
endDateField?: string | undefined;
|
|
2930
|
-
groupByField?: string | undefined;
|
|
2931
|
-
colorField?: string | undefined;
|
|
2932
|
-
} | undefined;
|
|
2933
2898
|
chart?: {
|
|
2934
2899
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
2935
2900
|
dataset: string;
|
|
2936
2901
|
values: string[];
|
|
2937
2902
|
dimensions?: string[] | undefined;
|
|
2938
2903
|
} | undefined;
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2904
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
2905
|
+
tabs?: {
|
|
2906
|
+
name: string;
|
|
2907
|
+
pinned: boolean;
|
|
2908
|
+
isDefault: boolean;
|
|
2909
|
+
visible: boolean;
|
|
2910
|
+
label?: string | undefined;
|
|
2911
|
+
icon?: string | undefined;
|
|
2912
|
+
view?: string | undefined;
|
|
2913
|
+
filter?: {
|
|
2914
|
+
field: string;
|
|
2915
|
+
operator: string;
|
|
2916
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
2917
|
+
}[] | undefined;
|
|
2918
|
+
order?: number | undefined;
|
|
2919
|
+
}[] | undefined;
|
|
2920
|
+
searchableFields?: string[] | undefined;
|
|
2921
|
+
filterableFields?: string[] | undefined;
|
|
2922
|
+
striped?: boolean | undefined;
|
|
2923
|
+
bordered?: boolean | undefined;
|
|
2924
|
+
compactToolbar?: boolean | undefined;
|
|
2925
|
+
selection?: {
|
|
2926
|
+
type: "none" | "multiple" | "single";
|
|
2945
2927
|
} | undefined;
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
lockedBy?: string | undefined;
|
|
2928
|
+
pagination?: {
|
|
2929
|
+
pageSize: number;
|
|
2930
|
+
pageSizeOptions?: number[] | undefined;
|
|
2950
2931
|
} | undefined;
|
|
2951
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
2952
2932
|
grouping?: {
|
|
2953
2933
|
fields: {
|
|
2954
2934
|
field: string;
|
|
@@ -2965,7 +2945,6 @@ declare const SysAttachment: Omit<{
|
|
|
2965
2945
|
rowActions?: string[] | undefined;
|
|
2966
2946
|
bulkActions?: string[] | undefined;
|
|
2967
2947
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
2968
|
-
virtualScroll?: boolean | undefined;
|
|
2969
2948
|
conditionalFormatting?: {
|
|
2970
2949
|
condition: {
|
|
2971
2950
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -2986,7 +2965,6 @@ declare const SysAttachment: Omit<{
|
|
|
2986
2965
|
};
|
|
2987
2966
|
style: Record<string, string>;
|
|
2988
2967
|
}[] | undefined;
|
|
2989
|
-
inlineEdit?: boolean | undefined;
|
|
2990
2968
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
2991
2969
|
userActions?: {
|
|
2992
2970
|
sort: boolean;
|
|
@@ -2999,23 +2977,8 @@ declare const SysAttachment: Omit<{
|
|
|
2999
2977
|
} | undefined;
|
|
3000
2978
|
appearance?: {
|
|
3001
2979
|
showDescription: boolean;
|
|
3002
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
2980
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
3003
2981
|
} | undefined;
|
|
3004
|
-
tabs?: {
|
|
3005
|
-
name: string;
|
|
3006
|
-
pinned: boolean;
|
|
3007
|
-
isDefault: boolean;
|
|
3008
|
-
visible: boolean;
|
|
3009
|
-
label?: string | undefined;
|
|
3010
|
-
icon?: string | undefined;
|
|
3011
|
-
view?: string | undefined;
|
|
3012
|
-
filter?: {
|
|
3013
|
-
field: string;
|
|
3014
|
-
operator: string;
|
|
3015
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3016
|
-
}[] | undefined;
|
|
3017
|
-
order?: number | undefined;
|
|
3018
|
-
}[] | undefined;
|
|
3019
2982
|
addRecord?: {
|
|
3020
2983
|
enabled: boolean;
|
|
3021
2984
|
position: "top" | "bottom" | "both";
|
|
@@ -3029,31 +2992,6 @@ declare const SysAttachment: Omit<{
|
|
|
3029
2992
|
message?: string | undefined;
|
|
3030
2993
|
icon?: string | undefined;
|
|
3031
2994
|
} | undefined;
|
|
3032
|
-
aria?: {
|
|
3033
|
-
ariaLabel?: string | undefined;
|
|
3034
|
-
ariaDescribedBy?: string | undefined;
|
|
3035
|
-
role?: string | undefined;
|
|
3036
|
-
} | undefined;
|
|
3037
|
-
responsive?: {
|
|
3038
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
3039
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
3040
|
-
columns?: {
|
|
3041
|
-
xs?: number | undefined;
|
|
3042
|
-
sm?: number | undefined;
|
|
3043
|
-
md?: number | undefined;
|
|
3044
|
-
lg?: number | undefined;
|
|
3045
|
-
xl?: number | undefined;
|
|
3046
|
-
'2xl'?: number | undefined;
|
|
3047
|
-
} | undefined;
|
|
3048
|
-
order?: {
|
|
3049
|
-
xs?: number | undefined;
|
|
3050
|
-
sm?: number | undefined;
|
|
3051
|
-
md?: number | undefined;
|
|
3052
|
-
lg?: number | undefined;
|
|
3053
|
-
xl?: number | undefined;
|
|
3054
|
-
'2xl'?: number | undefined;
|
|
3055
|
-
} | undefined;
|
|
3056
|
-
} | undefined;
|
|
3057
2995
|
performance?: {
|
|
3058
2996
|
lazyLoad?: boolean | undefined;
|
|
3059
2997
|
virtualScroll?: {
|
|
@@ -3254,7 +3192,7 @@ declare const SysAttachment: Omit<{
|
|
|
3254
3192
|
readonly inlineTitle?: string | undefined;
|
|
3255
3193
|
readonly inlineColumns?: any[] | undefined;
|
|
3256
3194
|
readonly inlineAmountField?: string | undefined;
|
|
3257
|
-
readonly relatedList?: boolean | undefined;
|
|
3195
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3258
3196
|
readonly relatedListTitle?: string | undefined;
|
|
3259
3197
|
readonly relatedListColumns?: any[] | undefined;
|
|
3260
3198
|
readonly displayField?: string | undefined;
|
|
@@ -3428,7 +3366,7 @@ declare const SysAttachment: Omit<{
|
|
|
3428
3366
|
readonly inlineTitle?: string | undefined;
|
|
3429
3367
|
readonly inlineColumns?: any[] | undefined;
|
|
3430
3368
|
readonly inlineAmountField?: string | undefined;
|
|
3431
|
-
readonly relatedList?: boolean | undefined;
|
|
3369
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3432
3370
|
readonly relatedListTitle?: string | undefined;
|
|
3433
3371
|
readonly relatedListColumns?: any[] | undefined;
|
|
3434
3372
|
readonly displayField?: string | undefined;
|
|
@@ -3602,7 +3540,7 @@ declare const SysAttachment: Omit<{
|
|
|
3602
3540
|
readonly inlineTitle?: string | undefined;
|
|
3603
3541
|
readonly inlineColumns?: any[] | undefined;
|
|
3604
3542
|
readonly inlineAmountField?: string | undefined;
|
|
3605
|
-
readonly relatedList?: boolean | undefined;
|
|
3543
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3606
3544
|
readonly relatedListTitle?: string | undefined;
|
|
3607
3545
|
readonly relatedListColumns?: any[] | undefined;
|
|
3608
3546
|
readonly displayField?: string | undefined;
|
|
@@ -3776,7 +3714,7 @@ declare const SysAttachment: Omit<{
|
|
|
3776
3714
|
readonly inlineTitle?: string | undefined;
|
|
3777
3715
|
readonly inlineColumns?: any[] | undefined;
|
|
3778
3716
|
readonly inlineAmountField?: string | undefined;
|
|
3779
|
-
readonly relatedList?: boolean | undefined;
|
|
3717
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3780
3718
|
readonly relatedListTitle?: string | undefined;
|
|
3781
3719
|
readonly relatedListColumns?: any[] | undefined;
|
|
3782
3720
|
readonly displayField?: string | undefined;
|
|
@@ -3950,7 +3888,7 @@ declare const SysAttachment: Omit<{
|
|
|
3950
3888
|
readonly inlineTitle?: string | undefined;
|
|
3951
3889
|
readonly inlineColumns?: any[] | undefined;
|
|
3952
3890
|
readonly inlineAmountField?: string | undefined;
|
|
3953
|
-
readonly relatedList?: boolean | undefined;
|
|
3891
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3954
3892
|
readonly relatedListTitle?: string | undefined;
|
|
3955
3893
|
readonly relatedListColumns?: any[] | undefined;
|
|
3956
3894
|
readonly displayField?: string | undefined;
|
|
@@ -4124,7 +4062,7 @@ declare const SysAttachment: Omit<{
|
|
|
4124
4062
|
readonly inlineTitle?: string | undefined;
|
|
4125
4063
|
readonly inlineColumns?: any[] | undefined;
|
|
4126
4064
|
readonly inlineAmountField?: string | undefined;
|
|
4127
|
-
readonly relatedList?: boolean | undefined;
|
|
4065
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4128
4066
|
readonly relatedListTitle?: string | undefined;
|
|
4129
4067
|
readonly relatedListColumns?: any[] | undefined;
|
|
4130
4068
|
readonly displayField?: string | undefined;
|
|
@@ -4298,7 +4236,7 @@ declare const SysAttachment: Omit<{
|
|
|
4298
4236
|
readonly inlineTitle?: string | undefined;
|
|
4299
4237
|
readonly inlineColumns?: any[] | undefined;
|
|
4300
4238
|
readonly inlineAmountField?: string | undefined;
|
|
4301
|
-
readonly relatedList?: boolean | undefined;
|
|
4239
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4302
4240
|
readonly relatedListTitle?: string | undefined;
|
|
4303
4241
|
readonly relatedListColumns?: any[] | undefined;
|
|
4304
4242
|
readonly displayField?: string | undefined;
|
|
@@ -4472,7 +4410,7 @@ declare const SysAttachment: Omit<{
|
|
|
4472
4410
|
readonly inlineTitle?: string | undefined;
|
|
4473
4411
|
readonly inlineColumns?: any[] | undefined;
|
|
4474
4412
|
readonly inlineAmountField?: string | undefined;
|
|
4475
|
-
readonly relatedList?: boolean | undefined;
|
|
4413
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4476
4414
|
readonly relatedListTitle?: string | undefined;
|
|
4477
4415
|
readonly relatedListColumns?: any[] | undefined;
|
|
4478
4416
|
readonly displayField?: string | undefined;
|
|
@@ -4646,7 +4584,7 @@ declare const SysAttachment: Omit<{
|
|
|
4646
4584
|
readonly inlineTitle?: string | undefined;
|
|
4647
4585
|
readonly inlineColumns?: any[] | undefined;
|
|
4648
4586
|
readonly inlineAmountField?: string | undefined;
|
|
4649
|
-
readonly relatedList?: boolean | undefined;
|
|
4587
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4650
4588
|
readonly relatedListTitle?: string | undefined;
|
|
4651
4589
|
readonly relatedListColumns?: any[] | undefined;
|
|
4652
4590
|
readonly displayField?: string | undefined;
|
|
@@ -4820,7 +4758,7 @@ declare const SysAttachment: Omit<{
|
|
|
4820
4758
|
readonly inlineTitle?: string | undefined;
|
|
4821
4759
|
readonly inlineColumns?: any[] | undefined;
|
|
4822
4760
|
readonly inlineAmountField?: string | undefined;
|
|
4823
|
-
readonly relatedList?: boolean | undefined;
|
|
4761
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4824
4762
|
readonly relatedListTitle?: string | undefined;
|
|
4825
4763
|
readonly relatedListColumns?: any[] | undefined;
|
|
4826
4764
|
readonly displayField?: string | undefined;
|
|
@@ -4994,7 +4932,7 @@ declare const SysAttachment: Omit<{
|
|
|
4994
4932
|
readonly inlineTitle?: string | undefined;
|
|
4995
4933
|
readonly inlineColumns?: any[] | undefined;
|
|
4996
4934
|
readonly inlineAmountField?: string | undefined;
|
|
4997
|
-
readonly relatedList?: boolean | undefined;
|
|
4935
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4998
4936
|
readonly relatedListTitle?: string | undefined;
|
|
4999
4937
|
readonly relatedListColumns?: any[] | undefined;
|
|
5000
4938
|
readonly displayField?: string | undefined;
|
|
@@ -5168,7 +5106,7 @@ declare const SysAttachment: Omit<{
|
|
|
5168
5106
|
readonly inlineTitle?: string | undefined;
|
|
5169
5107
|
readonly inlineColumns?: any[] | undefined;
|
|
5170
5108
|
readonly inlineAmountField?: string | undefined;
|
|
5171
|
-
readonly relatedList?: boolean | undefined;
|
|
5109
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5172
5110
|
readonly relatedListTitle?: string | undefined;
|
|
5173
5111
|
readonly relatedListColumns?: any[] | undefined;
|
|
5174
5112
|
readonly displayField?: string | undefined;
|
|
@@ -5342,7 +5280,7 @@ declare const SysAttachment: Omit<{
|
|
|
5342
5280
|
readonly inlineTitle?: string | undefined;
|
|
5343
5281
|
readonly inlineColumns?: any[] | undefined;
|
|
5344
5282
|
readonly inlineAmountField?: string | undefined;
|
|
5345
|
-
readonly relatedList?: boolean | undefined;
|
|
5283
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5346
5284
|
readonly relatedListTitle?: string | undefined;
|
|
5347
5285
|
readonly relatedListColumns?: any[] | undefined;
|
|
5348
5286
|
readonly displayField?: string | undefined;
|
|
@@ -5553,7 +5491,7 @@ declare const SysEmail: Omit<{
|
|
|
5553
5491
|
inlineTitle?: string | undefined;
|
|
5554
5492
|
inlineColumns?: any[] | undefined;
|
|
5555
5493
|
inlineAmountField?: string | undefined;
|
|
5556
|
-
relatedList?: boolean | undefined;
|
|
5494
|
+
relatedList?: boolean | "primary" | undefined;
|
|
5557
5495
|
relatedListTitle?: string | undefined;
|
|
5558
5496
|
relatedListColumns?: any[] | undefined;
|
|
5559
5497
|
displayField?: string | undefined;
|
|
@@ -5834,10 +5772,9 @@ declare const SysEmail: Omit<{
|
|
|
5834
5772
|
} | undefined;
|
|
5835
5773
|
} | undefined;
|
|
5836
5774
|
highlightFields?: string[] | undefined;
|
|
5837
|
-
compactLayout?: string[] | undefined;
|
|
5838
5775
|
stageField?: string | false | undefined;
|
|
5839
5776
|
listViews?: Record<string, {
|
|
5840
|
-
type: "tree" | "grid" | "kanban" | "
|
|
5777
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
5841
5778
|
columns: string[] | {
|
|
5842
5779
|
field: string;
|
|
5843
5780
|
label?: string | undefined;
|
|
@@ -5853,8 +5790,55 @@ declare const SysEmail: Omit<{
|
|
|
5853
5790
|
link?: boolean | undefined;
|
|
5854
5791
|
action?: string | undefined;
|
|
5855
5792
|
}[];
|
|
5856
|
-
|
|
5793
|
+
sort?: string | {
|
|
5794
|
+
field: string;
|
|
5795
|
+
order: "asc" | "desc";
|
|
5796
|
+
}[] | undefined;
|
|
5797
|
+
filter?: {
|
|
5798
|
+
field: string;
|
|
5799
|
+
operator: string;
|
|
5800
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
5801
|
+
}[] | undefined;
|
|
5802
|
+
description?: string | undefined;
|
|
5857
5803
|
label?: string | undefined;
|
|
5804
|
+
name?: string | undefined;
|
|
5805
|
+
responsive?: {
|
|
5806
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
5807
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
5808
|
+
columns?: {
|
|
5809
|
+
xs?: number | undefined;
|
|
5810
|
+
sm?: number | undefined;
|
|
5811
|
+
md?: number | undefined;
|
|
5812
|
+
lg?: number | undefined;
|
|
5813
|
+
xl?: number | undefined;
|
|
5814
|
+
'2xl'?: number | undefined;
|
|
5815
|
+
} | undefined;
|
|
5816
|
+
order?: {
|
|
5817
|
+
xs?: number | undefined;
|
|
5818
|
+
sm?: number | undefined;
|
|
5819
|
+
md?: number | undefined;
|
|
5820
|
+
lg?: number | undefined;
|
|
5821
|
+
xl?: number | undefined;
|
|
5822
|
+
'2xl'?: number | undefined;
|
|
5823
|
+
} | undefined;
|
|
5824
|
+
} | undefined;
|
|
5825
|
+
navigation?: {
|
|
5826
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
5827
|
+
preventNavigation: boolean;
|
|
5828
|
+
openNewTab: boolean;
|
|
5829
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
5830
|
+
view?: string | undefined;
|
|
5831
|
+
width?: string | number | undefined;
|
|
5832
|
+
} | undefined;
|
|
5833
|
+
sharing?: {
|
|
5834
|
+
type: "personal" | "collaborative";
|
|
5835
|
+
lockedBy?: string | undefined;
|
|
5836
|
+
} | undefined;
|
|
5837
|
+
aria?: {
|
|
5838
|
+
ariaLabel?: string | undefined;
|
|
5839
|
+
ariaDescribedBy?: string | undefined;
|
|
5840
|
+
role?: string | undefined;
|
|
5841
|
+
} | undefined;
|
|
5858
5842
|
data?: {
|
|
5859
5843
|
provider: "object";
|
|
5860
5844
|
object: string;
|
|
@@ -5882,77 +5866,42 @@ declare const SysEmail: Omit<{
|
|
|
5882
5866
|
schemaId: string;
|
|
5883
5867
|
schema?: Record<string, unknown> | undefined;
|
|
5884
5868
|
} | undefined;
|
|
5885
|
-
|
|
5886
|
-
|
|
5887
|
-
|
|
5888
|
-
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
field: string;
|
|
5892
|
-
order: "asc" | "desc";
|
|
5893
|
-
}[] | undefined;
|
|
5894
|
-
searchableFields?: string[] | undefined;
|
|
5895
|
-
filterableFields?: string[] | undefined;
|
|
5896
|
-
userFilters?: {
|
|
5897
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
5898
|
-
fields?: {
|
|
5899
|
-
field: string;
|
|
5900
|
-
label?: string | undefined;
|
|
5901
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
5902
|
-
options?: {
|
|
5903
|
-
value: string | number | boolean;
|
|
5904
|
-
label: string;
|
|
5905
|
-
color?: string | undefined;
|
|
5906
|
-
}[] | undefined;
|
|
5907
|
-
showCount?: boolean | undefined;
|
|
5908
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
5909
|
-
}[] | undefined;
|
|
5910
|
-
tabs?: {
|
|
5911
|
-
name: string;
|
|
5912
|
-
pinned: boolean;
|
|
5913
|
-
isDefault: boolean;
|
|
5914
|
-
visible: boolean;
|
|
5915
|
-
label?: string | undefined;
|
|
5916
|
-
icon?: string | undefined;
|
|
5917
|
-
view?: string | undefined;
|
|
5918
|
-
filter?: {
|
|
5919
|
-
field: string;
|
|
5920
|
-
operator: string;
|
|
5921
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
5922
|
-
}[] | undefined;
|
|
5923
|
-
order?: number | undefined;
|
|
5924
|
-
}[] | undefined;
|
|
5925
|
-
showAllRecords?: boolean | undefined;
|
|
5869
|
+
tree?: {
|
|
5870
|
+
[x: string]: unknown;
|
|
5871
|
+
parentField?: string | undefined;
|
|
5872
|
+
labelField?: string | undefined;
|
|
5873
|
+
fields?: string[] | undefined;
|
|
5874
|
+
defaultExpandedDepth?: number | undefined;
|
|
5926
5875
|
} | undefined;
|
|
5876
|
+
inlineEdit?: boolean | undefined;
|
|
5877
|
+
virtualScroll?: boolean | undefined;
|
|
5927
5878
|
resizable?: boolean | undefined;
|
|
5928
|
-
striped?: boolean | undefined;
|
|
5929
|
-
bordered?: boolean | undefined;
|
|
5930
|
-
compactToolbar?: boolean | undefined;
|
|
5931
|
-
selection?: {
|
|
5932
|
-
type: "none" | "multiple" | "single";
|
|
5933
|
-
} | undefined;
|
|
5934
|
-
navigation?: {
|
|
5935
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
5936
|
-
preventNavigation: boolean;
|
|
5937
|
-
openNewTab: boolean;
|
|
5938
|
-
view?: string | undefined;
|
|
5939
|
-
width?: string | number | undefined;
|
|
5940
|
-
} | undefined;
|
|
5941
|
-
pagination?: {
|
|
5942
|
-
pageSize: number;
|
|
5943
|
-
pageSizeOptions?: number[] | undefined;
|
|
5944
|
-
} | undefined;
|
|
5945
5879
|
kanban?: {
|
|
5946
5880
|
groupByField: string;
|
|
5947
5881
|
columns: string[];
|
|
5948
5882
|
summarizeField?: string | undefined;
|
|
5949
5883
|
} | undefined;
|
|
5884
|
+
gallery?: {
|
|
5885
|
+
coverFit: "cover" | "contain";
|
|
5886
|
+
cardSize: "small" | "medium" | "large";
|
|
5887
|
+
coverField?: string | undefined;
|
|
5888
|
+
titleField?: string | undefined;
|
|
5889
|
+
visibleFields?: string[] | undefined;
|
|
5890
|
+
} | undefined;
|
|
5950
5891
|
calendar?: {
|
|
5951
5892
|
startDateField: string;
|
|
5952
5893
|
titleField: string;
|
|
5953
5894
|
endDateField?: string | undefined;
|
|
5954
5895
|
colorField?: string | undefined;
|
|
5955
5896
|
} | undefined;
|
|
5897
|
+
timeline?: {
|
|
5898
|
+
startDateField: string;
|
|
5899
|
+
titleField: string;
|
|
5900
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
5901
|
+
endDateField?: string | undefined;
|
|
5902
|
+
groupByField?: string | undefined;
|
|
5903
|
+
colorField?: string | undefined;
|
|
5904
|
+
} | undefined;
|
|
5956
5905
|
gantt?: {
|
|
5957
5906
|
[x: string]: unknown;
|
|
5958
5907
|
startDateField: string;
|
|
@@ -5984,40 +5933,40 @@ declare const SysEmail: Omit<{
|
|
|
5984
5933
|
}[] | undefined;
|
|
5985
5934
|
autoZoomToFilter?: boolean | undefined;
|
|
5986
5935
|
} | undefined;
|
|
5987
|
-
gallery?: {
|
|
5988
|
-
coverFit: "cover" | "contain";
|
|
5989
|
-
cardSize: "small" | "medium" | "large";
|
|
5990
|
-
coverField?: string | undefined;
|
|
5991
|
-
titleField?: string | undefined;
|
|
5992
|
-
visibleFields?: string[] | undefined;
|
|
5993
|
-
} | undefined;
|
|
5994
|
-
timeline?: {
|
|
5995
|
-
startDateField: string;
|
|
5996
|
-
titleField: string;
|
|
5997
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
5998
|
-
endDateField?: string | undefined;
|
|
5999
|
-
groupByField?: string | undefined;
|
|
6000
|
-
colorField?: string | undefined;
|
|
6001
|
-
} | undefined;
|
|
6002
5936
|
chart?: {
|
|
6003
5937
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6004
5938
|
dataset: string;
|
|
6005
5939
|
values: string[];
|
|
6006
5940
|
dimensions?: string[] | undefined;
|
|
6007
5941
|
} | undefined;
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
|
|
6012
|
-
|
|
6013
|
-
|
|
5942
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
5943
|
+
tabs?: {
|
|
5944
|
+
name: string;
|
|
5945
|
+
pinned: boolean;
|
|
5946
|
+
isDefault: boolean;
|
|
5947
|
+
visible: boolean;
|
|
5948
|
+
label?: string | undefined;
|
|
5949
|
+
icon?: string | undefined;
|
|
5950
|
+
view?: string | undefined;
|
|
5951
|
+
filter?: {
|
|
5952
|
+
field: string;
|
|
5953
|
+
operator: string;
|
|
5954
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
5955
|
+
}[] | undefined;
|
|
5956
|
+
order?: number | undefined;
|
|
5957
|
+
}[] | undefined;
|
|
5958
|
+
searchableFields?: string[] | undefined;
|
|
5959
|
+
filterableFields?: string[] | undefined;
|
|
5960
|
+
striped?: boolean | undefined;
|
|
5961
|
+
bordered?: boolean | undefined;
|
|
5962
|
+
compactToolbar?: boolean | undefined;
|
|
5963
|
+
selection?: {
|
|
5964
|
+
type: "none" | "multiple" | "single";
|
|
6014
5965
|
} | undefined;
|
|
6015
|
-
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
lockedBy?: string | undefined;
|
|
5966
|
+
pagination?: {
|
|
5967
|
+
pageSize: number;
|
|
5968
|
+
pageSizeOptions?: number[] | undefined;
|
|
6019
5969
|
} | undefined;
|
|
6020
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6021
5970
|
grouping?: {
|
|
6022
5971
|
fields: {
|
|
6023
5972
|
field: string;
|
|
@@ -6034,7 +5983,6 @@ declare const SysEmail: Omit<{
|
|
|
6034
5983
|
rowActions?: string[] | undefined;
|
|
6035
5984
|
bulkActions?: string[] | undefined;
|
|
6036
5985
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
6037
|
-
virtualScroll?: boolean | undefined;
|
|
6038
5986
|
conditionalFormatting?: {
|
|
6039
5987
|
condition: {
|
|
6040
5988
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -6055,7 +6003,6 @@ declare const SysEmail: Omit<{
|
|
|
6055
6003
|
};
|
|
6056
6004
|
style: Record<string, string>;
|
|
6057
6005
|
}[] | undefined;
|
|
6058
|
-
inlineEdit?: boolean | undefined;
|
|
6059
6006
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
6060
6007
|
userActions?: {
|
|
6061
6008
|
sort: boolean;
|
|
@@ -6068,23 +6015,8 @@ declare const SysEmail: Omit<{
|
|
|
6068
6015
|
} | undefined;
|
|
6069
6016
|
appearance?: {
|
|
6070
6017
|
showDescription: boolean;
|
|
6071
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
6018
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
6072
6019
|
} | undefined;
|
|
6073
|
-
tabs?: {
|
|
6074
|
-
name: string;
|
|
6075
|
-
pinned: boolean;
|
|
6076
|
-
isDefault: boolean;
|
|
6077
|
-
visible: boolean;
|
|
6078
|
-
label?: string | undefined;
|
|
6079
|
-
icon?: string | undefined;
|
|
6080
|
-
view?: string | undefined;
|
|
6081
|
-
filter?: {
|
|
6082
|
-
field: string;
|
|
6083
|
-
operator: string;
|
|
6084
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6085
|
-
}[] | undefined;
|
|
6086
|
-
order?: number | undefined;
|
|
6087
|
-
}[] | undefined;
|
|
6088
6020
|
addRecord?: {
|
|
6089
6021
|
enabled: boolean;
|
|
6090
6022
|
position: "top" | "bottom" | "both";
|
|
@@ -6098,31 +6030,6 @@ declare const SysEmail: Omit<{
|
|
|
6098
6030
|
message?: string | undefined;
|
|
6099
6031
|
icon?: string | undefined;
|
|
6100
6032
|
} | undefined;
|
|
6101
|
-
aria?: {
|
|
6102
|
-
ariaLabel?: string | undefined;
|
|
6103
|
-
ariaDescribedBy?: string | undefined;
|
|
6104
|
-
role?: string | undefined;
|
|
6105
|
-
} | undefined;
|
|
6106
|
-
responsive?: {
|
|
6107
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6108
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6109
|
-
columns?: {
|
|
6110
|
-
xs?: number | undefined;
|
|
6111
|
-
sm?: number | undefined;
|
|
6112
|
-
md?: number | undefined;
|
|
6113
|
-
lg?: number | undefined;
|
|
6114
|
-
xl?: number | undefined;
|
|
6115
|
-
'2xl'?: number | undefined;
|
|
6116
|
-
} | undefined;
|
|
6117
|
-
order?: {
|
|
6118
|
-
xs?: number | undefined;
|
|
6119
|
-
sm?: number | undefined;
|
|
6120
|
-
md?: number | undefined;
|
|
6121
|
-
lg?: number | undefined;
|
|
6122
|
-
xl?: number | undefined;
|
|
6123
|
-
'2xl'?: number | undefined;
|
|
6124
|
-
} | undefined;
|
|
6125
|
-
} | undefined;
|
|
6126
6033
|
performance?: {
|
|
6127
6034
|
lazyLoad?: boolean | undefined;
|
|
6128
6035
|
virtualScroll?: {
|
|
@@ -6325,7 +6232,7 @@ declare const SysEmail: Omit<{
|
|
|
6325
6232
|
readonly inlineTitle?: string | undefined;
|
|
6326
6233
|
readonly inlineColumns?: any[] | undefined;
|
|
6327
6234
|
readonly inlineAmountField?: string | undefined;
|
|
6328
|
-
readonly relatedList?: boolean | undefined;
|
|
6235
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6329
6236
|
readonly relatedListTitle?: string | undefined;
|
|
6330
6237
|
readonly relatedListColumns?: any[] | undefined;
|
|
6331
6238
|
readonly displayField?: string | undefined;
|
|
@@ -6499,7 +6406,7 @@ declare const SysEmail: Omit<{
|
|
|
6499
6406
|
readonly inlineTitle?: string | undefined;
|
|
6500
6407
|
readonly inlineColumns?: any[] | undefined;
|
|
6501
6408
|
readonly inlineAmountField?: string | undefined;
|
|
6502
|
-
readonly relatedList?: boolean | undefined;
|
|
6409
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6503
6410
|
readonly relatedListTitle?: string | undefined;
|
|
6504
6411
|
readonly relatedListColumns?: any[] | undefined;
|
|
6505
6412
|
readonly displayField?: string | undefined;
|
|
@@ -6673,7 +6580,7 @@ declare const SysEmail: Omit<{
|
|
|
6673
6580
|
readonly inlineTitle?: string | undefined;
|
|
6674
6581
|
readonly inlineColumns?: any[] | undefined;
|
|
6675
6582
|
readonly inlineAmountField?: string | undefined;
|
|
6676
|
-
readonly relatedList?: boolean | undefined;
|
|
6583
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6677
6584
|
readonly relatedListTitle?: string | undefined;
|
|
6678
6585
|
readonly relatedListColumns?: any[] | undefined;
|
|
6679
6586
|
readonly displayField?: string | undefined;
|
|
@@ -6847,7 +6754,7 @@ declare const SysEmail: Omit<{
|
|
|
6847
6754
|
readonly inlineTitle?: string | undefined;
|
|
6848
6755
|
readonly inlineColumns?: any[] | undefined;
|
|
6849
6756
|
readonly inlineAmountField?: string | undefined;
|
|
6850
|
-
readonly relatedList?: boolean | undefined;
|
|
6757
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6851
6758
|
readonly relatedListTitle?: string | undefined;
|
|
6852
6759
|
readonly relatedListColumns?: any[] | undefined;
|
|
6853
6760
|
readonly displayField?: string | undefined;
|
|
@@ -7021,7 +6928,7 @@ declare const SysEmail: Omit<{
|
|
|
7021
6928
|
readonly inlineTitle?: string | undefined;
|
|
7022
6929
|
readonly inlineColumns?: any[] | undefined;
|
|
7023
6930
|
readonly inlineAmountField?: string | undefined;
|
|
7024
|
-
readonly relatedList?: boolean | undefined;
|
|
6931
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7025
6932
|
readonly relatedListTitle?: string | undefined;
|
|
7026
6933
|
readonly relatedListColumns?: any[] | undefined;
|
|
7027
6934
|
readonly displayField?: string | undefined;
|
|
@@ -7195,7 +7102,7 @@ declare const SysEmail: Omit<{
|
|
|
7195
7102
|
readonly inlineTitle?: string | undefined;
|
|
7196
7103
|
readonly inlineColumns?: any[] | undefined;
|
|
7197
7104
|
readonly inlineAmountField?: string | undefined;
|
|
7198
|
-
readonly relatedList?: boolean | undefined;
|
|
7105
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7199
7106
|
readonly relatedListTitle?: string | undefined;
|
|
7200
7107
|
readonly relatedListColumns?: any[] | undefined;
|
|
7201
7108
|
readonly displayField?: string | undefined;
|
|
@@ -7369,7 +7276,7 @@ declare const SysEmail: Omit<{
|
|
|
7369
7276
|
readonly inlineTitle?: string | undefined;
|
|
7370
7277
|
readonly inlineColumns?: any[] | undefined;
|
|
7371
7278
|
readonly inlineAmountField?: string | undefined;
|
|
7372
|
-
readonly relatedList?: boolean | undefined;
|
|
7279
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7373
7280
|
readonly relatedListTitle?: string | undefined;
|
|
7374
7281
|
readonly relatedListColumns?: any[] | undefined;
|
|
7375
7282
|
readonly displayField?: string | undefined;
|
|
@@ -7543,7 +7450,7 @@ declare const SysEmail: Omit<{
|
|
|
7543
7450
|
readonly inlineTitle?: string | undefined;
|
|
7544
7451
|
readonly inlineColumns?: any[] | undefined;
|
|
7545
7452
|
readonly inlineAmountField?: string | undefined;
|
|
7546
|
-
readonly relatedList?: boolean | undefined;
|
|
7453
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7547
7454
|
readonly relatedListTitle?: string | undefined;
|
|
7548
7455
|
readonly relatedListColumns?: any[] | undefined;
|
|
7549
7456
|
readonly displayField?: string | undefined;
|
|
@@ -7717,7 +7624,7 @@ declare const SysEmail: Omit<{
|
|
|
7717
7624
|
readonly inlineTitle?: string | undefined;
|
|
7718
7625
|
readonly inlineColumns?: any[] | undefined;
|
|
7719
7626
|
readonly inlineAmountField?: string | undefined;
|
|
7720
|
-
readonly relatedList?: boolean | undefined;
|
|
7627
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7721
7628
|
readonly relatedListTitle?: string | undefined;
|
|
7722
7629
|
readonly relatedListColumns?: any[] | undefined;
|
|
7723
7630
|
readonly displayField?: string | undefined;
|
|
@@ -7891,7 +7798,7 @@ declare const SysEmail: Omit<{
|
|
|
7891
7798
|
readonly inlineTitle?: string | undefined;
|
|
7892
7799
|
readonly inlineColumns?: any[] | undefined;
|
|
7893
7800
|
readonly inlineAmountField?: string | undefined;
|
|
7894
|
-
readonly relatedList?: boolean | undefined;
|
|
7801
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7895
7802
|
readonly relatedListTitle?: string | undefined;
|
|
7896
7803
|
readonly relatedListColumns?: any[] | undefined;
|
|
7897
7804
|
readonly displayField?: string | undefined;
|
|
@@ -8065,7 +7972,7 @@ declare const SysEmail: Omit<{
|
|
|
8065
7972
|
readonly inlineTitle?: string | undefined;
|
|
8066
7973
|
readonly inlineColumns?: any[] | undefined;
|
|
8067
7974
|
readonly inlineAmountField?: string | undefined;
|
|
8068
|
-
readonly relatedList?: boolean | undefined;
|
|
7975
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8069
7976
|
readonly relatedListTitle?: string | undefined;
|
|
8070
7977
|
readonly relatedListColumns?: any[] | undefined;
|
|
8071
7978
|
readonly displayField?: string | undefined;
|
|
@@ -8239,7 +8146,7 @@ declare const SysEmail: Omit<{
|
|
|
8239
8146
|
readonly inlineTitle?: string | undefined;
|
|
8240
8147
|
readonly inlineColumns?: any[] | undefined;
|
|
8241
8148
|
readonly inlineAmountField?: string | undefined;
|
|
8242
|
-
readonly relatedList?: boolean | undefined;
|
|
8149
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8243
8150
|
readonly relatedListTitle?: string | undefined;
|
|
8244
8151
|
readonly relatedListColumns?: any[] | undefined;
|
|
8245
8152
|
readonly displayField?: string | undefined;
|
|
@@ -8413,7 +8320,7 @@ declare const SysEmail: Omit<{
|
|
|
8413
8320
|
readonly inlineTitle?: string | undefined;
|
|
8414
8321
|
readonly inlineColumns?: any[] | undefined;
|
|
8415
8322
|
readonly inlineAmountField?: string | undefined;
|
|
8416
|
-
readonly relatedList?: boolean | undefined;
|
|
8323
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8417
8324
|
readonly relatedListTitle?: string | undefined;
|
|
8418
8325
|
readonly relatedListColumns?: any[] | undefined;
|
|
8419
8326
|
readonly displayField?: string | undefined;
|
|
@@ -8587,7 +8494,7 @@ declare const SysEmail: Omit<{
|
|
|
8587
8494
|
readonly inlineTitle?: string | undefined;
|
|
8588
8495
|
readonly inlineColumns?: any[] | undefined;
|
|
8589
8496
|
readonly inlineAmountField?: string | undefined;
|
|
8590
|
-
readonly relatedList?: boolean | undefined;
|
|
8497
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8591
8498
|
readonly relatedListTitle?: string | undefined;
|
|
8592
8499
|
readonly relatedListColumns?: any[] | undefined;
|
|
8593
8500
|
readonly displayField?: string | undefined;
|
|
@@ -8761,7 +8668,7 @@ declare const SysEmail: Omit<{
|
|
|
8761
8668
|
readonly inlineTitle?: string | undefined;
|
|
8762
8669
|
readonly inlineColumns?: any[] | undefined;
|
|
8763
8670
|
readonly inlineAmountField?: string | undefined;
|
|
8764
|
-
readonly relatedList?: boolean | undefined;
|
|
8671
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8765
8672
|
readonly relatedListTitle?: string | undefined;
|
|
8766
8673
|
readonly relatedListColumns?: any[] | undefined;
|
|
8767
8674
|
readonly displayField?: string | undefined;
|
|
@@ -8935,7 +8842,7 @@ declare const SysEmail: Omit<{
|
|
|
8935
8842
|
readonly inlineTitle?: string | undefined;
|
|
8936
8843
|
readonly inlineColumns?: any[] | undefined;
|
|
8937
8844
|
readonly inlineAmountField?: string | undefined;
|
|
8938
|
-
readonly relatedList?: boolean | undefined;
|
|
8845
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8939
8846
|
readonly relatedListTitle?: string | undefined;
|
|
8940
8847
|
readonly relatedListColumns?: any[] | undefined;
|
|
8941
8848
|
readonly displayField?: string | undefined;
|
|
@@ -9109,7 +9016,7 @@ declare const SysEmail: Omit<{
|
|
|
9109
9016
|
readonly inlineTitle?: string | undefined;
|
|
9110
9017
|
readonly inlineColumns?: any[] | undefined;
|
|
9111
9018
|
readonly inlineAmountField?: string | undefined;
|
|
9112
|
-
readonly relatedList?: boolean | undefined;
|
|
9019
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9113
9020
|
readonly relatedListTitle?: string | undefined;
|
|
9114
9021
|
readonly relatedListColumns?: any[] | undefined;
|
|
9115
9022
|
readonly displayField?: string | undefined;
|
|
@@ -9283,7 +9190,7 @@ declare const SysEmail: Omit<{
|
|
|
9283
9190
|
readonly inlineTitle?: string | undefined;
|
|
9284
9191
|
readonly inlineColumns?: any[] | undefined;
|
|
9285
9192
|
readonly inlineAmountField?: string | undefined;
|
|
9286
|
-
readonly relatedList?: boolean | undefined;
|
|
9193
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9287
9194
|
readonly relatedListTitle?: string | undefined;
|
|
9288
9195
|
readonly relatedListColumns?: any[] | undefined;
|
|
9289
9196
|
readonly displayField?: string | undefined;
|
|
@@ -9457,7 +9364,7 @@ declare const SysEmail: Omit<{
|
|
|
9457
9364
|
readonly inlineTitle?: string | undefined;
|
|
9458
9365
|
readonly inlineColumns?: any[] | undefined;
|
|
9459
9366
|
readonly inlineAmountField?: string | undefined;
|
|
9460
|
-
readonly relatedList?: boolean | undefined;
|
|
9367
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
9461
9368
|
readonly relatedListTitle?: string | undefined;
|
|
9462
9369
|
readonly relatedListColumns?: any[] | undefined;
|
|
9463
9370
|
readonly displayField?: string | undefined;
|
|
@@ -9658,7 +9565,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9658
9565
|
inlineTitle?: string | undefined;
|
|
9659
9566
|
inlineColumns?: any[] | undefined;
|
|
9660
9567
|
inlineAmountField?: string | undefined;
|
|
9661
|
-
relatedList?: boolean | undefined;
|
|
9568
|
+
relatedList?: boolean | "primary" | undefined;
|
|
9662
9569
|
relatedListTitle?: string | undefined;
|
|
9663
9570
|
relatedListColumns?: any[] | undefined;
|
|
9664
9571
|
displayField?: string | undefined;
|
|
@@ -9939,10 +9846,9 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9939
9846
|
} | undefined;
|
|
9940
9847
|
} | undefined;
|
|
9941
9848
|
highlightFields?: string[] | undefined;
|
|
9942
|
-
compactLayout?: string[] | undefined;
|
|
9943
9849
|
stageField?: string | false | undefined;
|
|
9944
9850
|
listViews?: Record<string, {
|
|
9945
|
-
type: "tree" | "grid" | "kanban" | "
|
|
9851
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
9946
9852
|
columns: string[] | {
|
|
9947
9853
|
field: string;
|
|
9948
9854
|
label?: string | undefined;
|
|
@@ -9958,8 +9864,55 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9958
9864
|
link?: boolean | undefined;
|
|
9959
9865
|
action?: string | undefined;
|
|
9960
9866
|
}[];
|
|
9961
|
-
|
|
9867
|
+
sort?: string | {
|
|
9868
|
+
field: string;
|
|
9869
|
+
order: "asc" | "desc";
|
|
9870
|
+
}[] | undefined;
|
|
9871
|
+
filter?: {
|
|
9872
|
+
field: string;
|
|
9873
|
+
operator: string;
|
|
9874
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
9875
|
+
}[] | undefined;
|
|
9876
|
+
description?: string | undefined;
|
|
9962
9877
|
label?: string | undefined;
|
|
9878
|
+
name?: string | undefined;
|
|
9879
|
+
responsive?: {
|
|
9880
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
9881
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
9882
|
+
columns?: {
|
|
9883
|
+
xs?: number | undefined;
|
|
9884
|
+
sm?: number | undefined;
|
|
9885
|
+
md?: number | undefined;
|
|
9886
|
+
lg?: number | undefined;
|
|
9887
|
+
xl?: number | undefined;
|
|
9888
|
+
'2xl'?: number | undefined;
|
|
9889
|
+
} | undefined;
|
|
9890
|
+
order?: {
|
|
9891
|
+
xs?: number | undefined;
|
|
9892
|
+
sm?: number | undefined;
|
|
9893
|
+
md?: number | undefined;
|
|
9894
|
+
lg?: number | undefined;
|
|
9895
|
+
xl?: number | undefined;
|
|
9896
|
+
'2xl'?: number | undefined;
|
|
9897
|
+
} | undefined;
|
|
9898
|
+
} | undefined;
|
|
9899
|
+
navigation?: {
|
|
9900
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
9901
|
+
preventNavigation: boolean;
|
|
9902
|
+
openNewTab: boolean;
|
|
9903
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
9904
|
+
view?: string | undefined;
|
|
9905
|
+
width?: string | number | undefined;
|
|
9906
|
+
} | undefined;
|
|
9907
|
+
sharing?: {
|
|
9908
|
+
type: "personal" | "collaborative";
|
|
9909
|
+
lockedBy?: string | undefined;
|
|
9910
|
+
} | undefined;
|
|
9911
|
+
aria?: {
|
|
9912
|
+
ariaLabel?: string | undefined;
|
|
9913
|
+
ariaDescribedBy?: string | undefined;
|
|
9914
|
+
role?: string | undefined;
|
|
9915
|
+
} | undefined;
|
|
9963
9916
|
data?: {
|
|
9964
9917
|
provider: "object";
|
|
9965
9918
|
object: string;
|
|
@@ -9987,77 +9940,42 @@ declare const SysEmailTemplate: Omit<{
|
|
|
9987
9940
|
schemaId: string;
|
|
9988
9941
|
schema?: Record<string, unknown> | undefined;
|
|
9989
9942
|
} | undefined;
|
|
9990
|
-
|
|
9991
|
-
|
|
9992
|
-
|
|
9993
|
-
|
|
9994
|
-
|
|
9995
|
-
|
|
9996
|
-
field: string;
|
|
9997
|
-
order: "asc" | "desc";
|
|
9998
|
-
}[] | undefined;
|
|
9999
|
-
searchableFields?: string[] | undefined;
|
|
10000
|
-
filterableFields?: string[] | undefined;
|
|
10001
|
-
userFilters?: {
|
|
10002
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
10003
|
-
fields?: {
|
|
10004
|
-
field: string;
|
|
10005
|
-
label?: string | undefined;
|
|
10006
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
10007
|
-
options?: {
|
|
10008
|
-
value: string | number | boolean;
|
|
10009
|
-
label: string;
|
|
10010
|
-
color?: string | undefined;
|
|
10011
|
-
}[] | undefined;
|
|
10012
|
-
showCount?: boolean | undefined;
|
|
10013
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
10014
|
-
}[] | undefined;
|
|
10015
|
-
tabs?: {
|
|
10016
|
-
name: string;
|
|
10017
|
-
pinned: boolean;
|
|
10018
|
-
isDefault: boolean;
|
|
10019
|
-
visible: boolean;
|
|
10020
|
-
label?: string | undefined;
|
|
10021
|
-
icon?: string | undefined;
|
|
10022
|
-
view?: string | undefined;
|
|
10023
|
-
filter?: {
|
|
10024
|
-
field: string;
|
|
10025
|
-
operator: string;
|
|
10026
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10027
|
-
}[] | undefined;
|
|
10028
|
-
order?: number | undefined;
|
|
10029
|
-
}[] | undefined;
|
|
10030
|
-
showAllRecords?: boolean | undefined;
|
|
9943
|
+
tree?: {
|
|
9944
|
+
[x: string]: unknown;
|
|
9945
|
+
parentField?: string | undefined;
|
|
9946
|
+
labelField?: string | undefined;
|
|
9947
|
+
fields?: string[] | undefined;
|
|
9948
|
+
defaultExpandedDepth?: number | undefined;
|
|
10031
9949
|
} | undefined;
|
|
9950
|
+
inlineEdit?: boolean | undefined;
|
|
9951
|
+
virtualScroll?: boolean | undefined;
|
|
10032
9952
|
resizable?: boolean | undefined;
|
|
10033
|
-
striped?: boolean | undefined;
|
|
10034
|
-
bordered?: boolean | undefined;
|
|
10035
|
-
compactToolbar?: boolean | undefined;
|
|
10036
|
-
selection?: {
|
|
10037
|
-
type: "none" | "multiple" | "single";
|
|
10038
|
-
} | undefined;
|
|
10039
|
-
navigation?: {
|
|
10040
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
10041
|
-
preventNavigation: boolean;
|
|
10042
|
-
openNewTab: boolean;
|
|
10043
|
-
view?: string | undefined;
|
|
10044
|
-
width?: string | number | undefined;
|
|
10045
|
-
} | undefined;
|
|
10046
|
-
pagination?: {
|
|
10047
|
-
pageSize: number;
|
|
10048
|
-
pageSizeOptions?: number[] | undefined;
|
|
10049
|
-
} | undefined;
|
|
10050
9953
|
kanban?: {
|
|
10051
9954
|
groupByField: string;
|
|
10052
9955
|
columns: string[];
|
|
10053
9956
|
summarizeField?: string | undefined;
|
|
10054
9957
|
} | undefined;
|
|
9958
|
+
gallery?: {
|
|
9959
|
+
coverFit: "cover" | "contain";
|
|
9960
|
+
cardSize: "small" | "medium" | "large";
|
|
9961
|
+
coverField?: string | undefined;
|
|
9962
|
+
titleField?: string | undefined;
|
|
9963
|
+
visibleFields?: string[] | undefined;
|
|
9964
|
+
} | undefined;
|
|
10055
9965
|
calendar?: {
|
|
10056
9966
|
startDateField: string;
|
|
10057
9967
|
titleField: string;
|
|
10058
9968
|
endDateField?: string | undefined;
|
|
10059
9969
|
colorField?: string | undefined;
|
|
10060
9970
|
} | undefined;
|
|
9971
|
+
timeline?: {
|
|
9972
|
+
startDateField: string;
|
|
9973
|
+
titleField: string;
|
|
9974
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
9975
|
+
endDateField?: string | undefined;
|
|
9976
|
+
groupByField?: string | undefined;
|
|
9977
|
+
colorField?: string | undefined;
|
|
9978
|
+
} | undefined;
|
|
10061
9979
|
gantt?: {
|
|
10062
9980
|
[x: string]: unknown;
|
|
10063
9981
|
startDateField: string;
|
|
@@ -10089,40 +10007,40 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10089
10007
|
}[] | undefined;
|
|
10090
10008
|
autoZoomToFilter?: boolean | undefined;
|
|
10091
10009
|
} | undefined;
|
|
10092
|
-
gallery?: {
|
|
10093
|
-
coverFit: "cover" | "contain";
|
|
10094
|
-
cardSize: "small" | "medium" | "large";
|
|
10095
|
-
coverField?: string | undefined;
|
|
10096
|
-
titleField?: string | undefined;
|
|
10097
|
-
visibleFields?: string[] | undefined;
|
|
10098
|
-
} | undefined;
|
|
10099
|
-
timeline?: {
|
|
10100
|
-
startDateField: string;
|
|
10101
|
-
titleField: string;
|
|
10102
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
10103
|
-
endDateField?: string | undefined;
|
|
10104
|
-
groupByField?: string | undefined;
|
|
10105
|
-
colorField?: string | undefined;
|
|
10106
|
-
} | undefined;
|
|
10107
10010
|
chart?: {
|
|
10108
10011
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
10109
10012
|
dataset: string;
|
|
10110
10013
|
values: string[];
|
|
10111
10014
|
dimensions?: string[] | undefined;
|
|
10112
10015
|
} | undefined;
|
|
10113
|
-
|
|
10114
|
-
|
|
10115
|
-
|
|
10116
|
-
|
|
10117
|
-
|
|
10118
|
-
|
|
10016
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
10017
|
+
tabs?: {
|
|
10018
|
+
name: string;
|
|
10019
|
+
pinned: boolean;
|
|
10020
|
+
isDefault: boolean;
|
|
10021
|
+
visible: boolean;
|
|
10022
|
+
label?: string | undefined;
|
|
10023
|
+
icon?: string | undefined;
|
|
10024
|
+
view?: string | undefined;
|
|
10025
|
+
filter?: {
|
|
10026
|
+
field: string;
|
|
10027
|
+
operator: string;
|
|
10028
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10029
|
+
}[] | undefined;
|
|
10030
|
+
order?: number | undefined;
|
|
10031
|
+
}[] | undefined;
|
|
10032
|
+
searchableFields?: string[] | undefined;
|
|
10033
|
+
filterableFields?: string[] | undefined;
|
|
10034
|
+
striped?: boolean | undefined;
|
|
10035
|
+
bordered?: boolean | undefined;
|
|
10036
|
+
compactToolbar?: boolean | undefined;
|
|
10037
|
+
selection?: {
|
|
10038
|
+
type: "none" | "multiple" | "single";
|
|
10119
10039
|
} | undefined;
|
|
10120
|
-
|
|
10121
|
-
|
|
10122
|
-
|
|
10123
|
-
lockedBy?: string | undefined;
|
|
10040
|
+
pagination?: {
|
|
10041
|
+
pageSize: number;
|
|
10042
|
+
pageSizeOptions?: number[] | undefined;
|
|
10124
10043
|
} | undefined;
|
|
10125
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
10126
10044
|
grouping?: {
|
|
10127
10045
|
fields: {
|
|
10128
10046
|
field: string;
|
|
@@ -10139,7 +10057,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10139
10057
|
rowActions?: string[] | undefined;
|
|
10140
10058
|
bulkActions?: string[] | undefined;
|
|
10141
10059
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
10142
|
-
virtualScroll?: boolean | undefined;
|
|
10143
10060
|
conditionalFormatting?: {
|
|
10144
10061
|
condition: {
|
|
10145
10062
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -10160,7 +10077,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10160
10077
|
};
|
|
10161
10078
|
style: Record<string, string>;
|
|
10162
10079
|
}[] | undefined;
|
|
10163
|
-
inlineEdit?: boolean | undefined;
|
|
10164
10080
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
10165
10081
|
userActions?: {
|
|
10166
10082
|
sort: boolean;
|
|
@@ -10173,23 +10089,8 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10173
10089
|
} | undefined;
|
|
10174
10090
|
appearance?: {
|
|
10175
10091
|
showDescription: boolean;
|
|
10176
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
10092
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
10177
10093
|
} | undefined;
|
|
10178
|
-
tabs?: {
|
|
10179
|
-
name: string;
|
|
10180
|
-
pinned: boolean;
|
|
10181
|
-
isDefault: boolean;
|
|
10182
|
-
visible: boolean;
|
|
10183
|
-
label?: string | undefined;
|
|
10184
|
-
icon?: string | undefined;
|
|
10185
|
-
view?: string | undefined;
|
|
10186
|
-
filter?: {
|
|
10187
|
-
field: string;
|
|
10188
|
-
operator: string;
|
|
10189
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
10190
|
-
}[] | undefined;
|
|
10191
|
-
order?: number | undefined;
|
|
10192
|
-
}[] | undefined;
|
|
10193
10094
|
addRecord?: {
|
|
10194
10095
|
enabled: boolean;
|
|
10195
10096
|
position: "top" | "bottom" | "both";
|
|
@@ -10203,31 +10104,6 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10203
10104
|
message?: string | undefined;
|
|
10204
10105
|
icon?: string | undefined;
|
|
10205
10106
|
} | undefined;
|
|
10206
|
-
aria?: {
|
|
10207
|
-
ariaLabel?: string | undefined;
|
|
10208
|
-
ariaDescribedBy?: string | undefined;
|
|
10209
|
-
role?: string | undefined;
|
|
10210
|
-
} | undefined;
|
|
10211
|
-
responsive?: {
|
|
10212
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
10213
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
10214
|
-
columns?: {
|
|
10215
|
-
xs?: number | undefined;
|
|
10216
|
-
sm?: number | undefined;
|
|
10217
|
-
md?: number | undefined;
|
|
10218
|
-
lg?: number | undefined;
|
|
10219
|
-
xl?: number | undefined;
|
|
10220
|
-
'2xl'?: number | undefined;
|
|
10221
|
-
} | undefined;
|
|
10222
|
-
order?: {
|
|
10223
|
-
xs?: number | undefined;
|
|
10224
|
-
sm?: number | undefined;
|
|
10225
|
-
md?: number | undefined;
|
|
10226
|
-
lg?: number | undefined;
|
|
10227
|
-
xl?: number | undefined;
|
|
10228
|
-
'2xl'?: number | undefined;
|
|
10229
|
-
} | undefined;
|
|
10230
|
-
} | undefined;
|
|
10231
10107
|
performance?: {
|
|
10232
10108
|
lazyLoad?: boolean | undefined;
|
|
10233
10109
|
virtualScroll?: {
|
|
@@ -10430,7 +10306,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10430
10306
|
readonly inlineTitle?: string | undefined;
|
|
10431
10307
|
readonly inlineColumns?: any[] | undefined;
|
|
10432
10308
|
readonly inlineAmountField?: string | undefined;
|
|
10433
|
-
readonly relatedList?: boolean | undefined;
|
|
10309
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10434
10310
|
readonly relatedListTitle?: string | undefined;
|
|
10435
10311
|
readonly relatedListColumns?: any[] | undefined;
|
|
10436
10312
|
readonly displayField?: string | undefined;
|
|
@@ -10604,7 +10480,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10604
10480
|
readonly inlineTitle?: string | undefined;
|
|
10605
10481
|
readonly inlineColumns?: any[] | undefined;
|
|
10606
10482
|
readonly inlineAmountField?: string | undefined;
|
|
10607
|
-
readonly relatedList?: boolean | undefined;
|
|
10483
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10608
10484
|
readonly relatedListTitle?: string | undefined;
|
|
10609
10485
|
readonly relatedListColumns?: any[] | undefined;
|
|
10610
10486
|
readonly displayField?: string | undefined;
|
|
@@ -10778,7 +10654,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10778
10654
|
readonly inlineTitle?: string | undefined;
|
|
10779
10655
|
readonly inlineColumns?: any[] | undefined;
|
|
10780
10656
|
readonly inlineAmountField?: string | undefined;
|
|
10781
|
-
readonly relatedList?: boolean | undefined;
|
|
10657
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10782
10658
|
readonly relatedListTitle?: string | undefined;
|
|
10783
10659
|
readonly relatedListColumns?: any[] | undefined;
|
|
10784
10660
|
readonly displayField?: string | undefined;
|
|
@@ -10952,7 +10828,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
10952
10828
|
readonly inlineTitle?: string | undefined;
|
|
10953
10829
|
readonly inlineColumns?: any[] | undefined;
|
|
10954
10830
|
readonly inlineAmountField?: string | undefined;
|
|
10955
|
-
readonly relatedList?: boolean | undefined;
|
|
10831
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
10956
10832
|
readonly relatedListTitle?: string | undefined;
|
|
10957
10833
|
readonly relatedListColumns?: any[] | undefined;
|
|
10958
10834
|
readonly displayField?: string | undefined;
|
|
@@ -11126,7 +11002,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11126
11002
|
readonly inlineTitle?: string | undefined;
|
|
11127
11003
|
readonly inlineColumns?: any[] | undefined;
|
|
11128
11004
|
readonly inlineAmountField?: string | undefined;
|
|
11129
|
-
readonly relatedList?: boolean | undefined;
|
|
11005
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11130
11006
|
readonly relatedListTitle?: string | undefined;
|
|
11131
11007
|
readonly relatedListColumns?: any[] | undefined;
|
|
11132
11008
|
readonly displayField?: string | undefined;
|
|
@@ -11300,7 +11176,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11300
11176
|
readonly inlineTitle?: string | undefined;
|
|
11301
11177
|
readonly inlineColumns?: any[] | undefined;
|
|
11302
11178
|
readonly inlineAmountField?: string | undefined;
|
|
11303
|
-
readonly relatedList?: boolean | undefined;
|
|
11179
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11304
11180
|
readonly relatedListTitle?: string | undefined;
|
|
11305
11181
|
readonly relatedListColumns?: any[] | undefined;
|
|
11306
11182
|
readonly displayField?: string | undefined;
|
|
@@ -11474,7 +11350,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11474
11350
|
readonly inlineTitle?: string | undefined;
|
|
11475
11351
|
readonly inlineColumns?: any[] | undefined;
|
|
11476
11352
|
readonly inlineAmountField?: string | undefined;
|
|
11477
|
-
readonly relatedList?: boolean | undefined;
|
|
11353
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11478
11354
|
readonly relatedListTitle?: string | undefined;
|
|
11479
11355
|
readonly relatedListColumns?: any[] | undefined;
|
|
11480
11356
|
readonly displayField?: string | undefined;
|
|
@@ -11648,7 +11524,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11648
11524
|
readonly inlineTitle?: string | undefined;
|
|
11649
11525
|
readonly inlineColumns?: any[] | undefined;
|
|
11650
11526
|
readonly inlineAmountField?: string | undefined;
|
|
11651
|
-
readonly relatedList?: boolean | undefined;
|
|
11527
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11652
11528
|
readonly relatedListTitle?: string | undefined;
|
|
11653
11529
|
readonly relatedListColumns?: any[] | undefined;
|
|
11654
11530
|
readonly displayField?: string | undefined;
|
|
@@ -11822,7 +11698,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11822
11698
|
readonly inlineTitle?: string | undefined;
|
|
11823
11699
|
readonly inlineColumns?: any[] | undefined;
|
|
11824
11700
|
readonly inlineAmountField?: string | undefined;
|
|
11825
|
-
readonly relatedList?: boolean | undefined;
|
|
11701
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
11826
11702
|
readonly relatedListTitle?: string | undefined;
|
|
11827
11703
|
readonly relatedListColumns?: any[] | undefined;
|
|
11828
11704
|
readonly displayField?: string | undefined;
|
|
@@ -11996,7 +11872,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
11996
11872
|
readonly inlineTitle?: string | undefined;
|
|
11997
11873
|
readonly inlineColumns?: any[] | undefined;
|
|
11998
11874
|
readonly inlineAmountField?: string | undefined;
|
|
11999
|
-
readonly relatedList?: boolean | undefined;
|
|
11875
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12000
11876
|
readonly relatedListTitle?: string | undefined;
|
|
12001
11877
|
readonly relatedListColumns?: any[] | undefined;
|
|
12002
11878
|
readonly displayField?: string | undefined;
|
|
@@ -12170,7 +12046,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12170
12046
|
readonly inlineTitle?: string | undefined;
|
|
12171
12047
|
readonly inlineColumns?: any[] | undefined;
|
|
12172
12048
|
readonly inlineAmountField?: string | undefined;
|
|
12173
|
-
readonly relatedList?: boolean | undefined;
|
|
12049
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12174
12050
|
readonly relatedListTitle?: string | undefined;
|
|
12175
12051
|
readonly relatedListColumns?: any[] | undefined;
|
|
12176
12052
|
readonly displayField?: string | undefined;
|
|
@@ -12344,7 +12220,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12344
12220
|
readonly inlineTitle?: string | undefined;
|
|
12345
12221
|
readonly inlineColumns?: any[] | undefined;
|
|
12346
12222
|
readonly inlineAmountField?: string | undefined;
|
|
12347
|
-
readonly relatedList?: boolean | undefined;
|
|
12223
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12348
12224
|
readonly relatedListTitle?: string | undefined;
|
|
12349
12225
|
readonly relatedListColumns?: any[] | undefined;
|
|
12350
12226
|
readonly displayField?: string | undefined;
|
|
@@ -12518,7 +12394,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12518
12394
|
readonly inlineTitle?: string | undefined;
|
|
12519
12395
|
readonly inlineColumns?: any[] | undefined;
|
|
12520
12396
|
readonly inlineAmountField?: string | undefined;
|
|
12521
|
-
readonly relatedList?: boolean | undefined;
|
|
12397
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12522
12398
|
readonly relatedListTitle?: string | undefined;
|
|
12523
12399
|
readonly relatedListColumns?: any[] | undefined;
|
|
12524
12400
|
readonly displayField?: string | undefined;
|
|
@@ -12692,7 +12568,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12692
12568
|
readonly inlineTitle?: string | undefined;
|
|
12693
12569
|
readonly inlineColumns?: any[] | undefined;
|
|
12694
12570
|
readonly inlineAmountField?: string | undefined;
|
|
12695
|
-
readonly relatedList?: boolean | undefined;
|
|
12571
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12696
12572
|
readonly relatedListTitle?: string | undefined;
|
|
12697
12573
|
readonly relatedListColumns?: any[] | undefined;
|
|
12698
12574
|
readonly displayField?: string | undefined;
|
|
@@ -12872,7 +12748,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
12872
12748
|
readonly inlineTitle?: string | undefined;
|
|
12873
12749
|
readonly inlineColumns?: any[] | undefined;
|
|
12874
12750
|
readonly inlineAmountField?: string | undefined;
|
|
12875
|
-
readonly relatedList?: boolean | undefined;
|
|
12751
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
12876
12752
|
readonly relatedListTitle?: string | undefined;
|
|
12877
12753
|
readonly relatedListColumns?: any[] | undefined;
|
|
12878
12754
|
readonly displayField?: string | undefined;
|
|
@@ -13046,7 +12922,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13046
12922
|
readonly inlineTitle?: string | undefined;
|
|
13047
12923
|
readonly inlineColumns?: any[] | undefined;
|
|
13048
12924
|
readonly inlineAmountField?: string | undefined;
|
|
13049
|
-
readonly relatedList?: boolean | undefined;
|
|
12925
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13050
12926
|
readonly relatedListTitle?: string | undefined;
|
|
13051
12927
|
readonly relatedListColumns?: any[] | undefined;
|
|
13052
12928
|
readonly displayField?: string | undefined;
|
|
@@ -13220,7 +13096,7 @@ declare const SysEmailTemplate: Omit<{
|
|
|
13220
13096
|
readonly inlineTitle?: string | undefined;
|
|
13221
13097
|
readonly inlineColumns?: any[] | undefined;
|
|
13222
13098
|
readonly inlineAmountField?: string | undefined;
|
|
13223
|
-
readonly relatedList?: boolean | undefined;
|
|
13099
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
13224
13100
|
readonly relatedListTitle?: string | undefined;
|
|
13225
13101
|
readonly relatedListColumns?: any[] | undefined;
|
|
13226
13102
|
readonly displayField?: string | undefined;
|
|
@@ -13429,7 +13305,7 @@ declare const SysSavedReport: Omit<{
|
|
|
13429
13305
|
inlineTitle?: string | undefined;
|
|
13430
13306
|
inlineColumns?: any[] | undefined;
|
|
13431
13307
|
inlineAmountField?: string | undefined;
|
|
13432
|
-
relatedList?: boolean | undefined;
|
|
13308
|
+
relatedList?: boolean | "primary" | undefined;
|
|
13433
13309
|
relatedListTitle?: string | undefined;
|
|
13434
13310
|
relatedListColumns?: any[] | undefined;
|
|
13435
13311
|
displayField?: string | undefined;
|
|
@@ -13710,10 +13586,9 @@ declare const SysSavedReport: Omit<{
|
|
|
13710
13586
|
} | undefined;
|
|
13711
13587
|
} | undefined;
|
|
13712
13588
|
highlightFields?: string[] | undefined;
|
|
13713
|
-
compactLayout?: string[] | undefined;
|
|
13714
13589
|
stageField?: string | false | undefined;
|
|
13715
13590
|
listViews?: Record<string, {
|
|
13716
|
-
type: "tree" | "grid" | "kanban" | "
|
|
13591
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
13717
13592
|
columns: string[] | {
|
|
13718
13593
|
field: string;
|
|
13719
13594
|
label?: string | undefined;
|
|
@@ -13729,8 +13604,55 @@ declare const SysSavedReport: Omit<{
|
|
|
13729
13604
|
link?: boolean | undefined;
|
|
13730
13605
|
action?: string | undefined;
|
|
13731
13606
|
}[];
|
|
13732
|
-
|
|
13607
|
+
sort?: string | {
|
|
13608
|
+
field: string;
|
|
13609
|
+
order: "asc" | "desc";
|
|
13610
|
+
}[] | undefined;
|
|
13611
|
+
filter?: {
|
|
13612
|
+
field: string;
|
|
13613
|
+
operator: string;
|
|
13614
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
13615
|
+
}[] | undefined;
|
|
13616
|
+
description?: string | undefined;
|
|
13733
13617
|
label?: string | undefined;
|
|
13618
|
+
name?: string | undefined;
|
|
13619
|
+
responsive?: {
|
|
13620
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
13621
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
13622
|
+
columns?: {
|
|
13623
|
+
xs?: number | undefined;
|
|
13624
|
+
sm?: number | undefined;
|
|
13625
|
+
md?: number | undefined;
|
|
13626
|
+
lg?: number | undefined;
|
|
13627
|
+
xl?: number | undefined;
|
|
13628
|
+
'2xl'?: number | undefined;
|
|
13629
|
+
} | undefined;
|
|
13630
|
+
order?: {
|
|
13631
|
+
xs?: number | undefined;
|
|
13632
|
+
sm?: number | undefined;
|
|
13633
|
+
md?: number | undefined;
|
|
13634
|
+
lg?: number | undefined;
|
|
13635
|
+
xl?: number | undefined;
|
|
13636
|
+
'2xl'?: number | undefined;
|
|
13637
|
+
} | undefined;
|
|
13638
|
+
} | undefined;
|
|
13639
|
+
navigation?: {
|
|
13640
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
13641
|
+
preventNavigation: boolean;
|
|
13642
|
+
openNewTab: boolean;
|
|
13643
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
13644
|
+
view?: string | undefined;
|
|
13645
|
+
width?: string | number | undefined;
|
|
13646
|
+
} | undefined;
|
|
13647
|
+
sharing?: {
|
|
13648
|
+
type: "personal" | "collaborative";
|
|
13649
|
+
lockedBy?: string | undefined;
|
|
13650
|
+
} | undefined;
|
|
13651
|
+
aria?: {
|
|
13652
|
+
ariaLabel?: string | undefined;
|
|
13653
|
+
ariaDescribedBy?: string | undefined;
|
|
13654
|
+
role?: string | undefined;
|
|
13655
|
+
} | undefined;
|
|
13734
13656
|
data?: {
|
|
13735
13657
|
provider: "object";
|
|
13736
13658
|
object: string;
|
|
@@ -13758,77 +13680,42 @@ declare const SysSavedReport: Omit<{
|
|
|
13758
13680
|
schemaId: string;
|
|
13759
13681
|
schema?: Record<string, unknown> | undefined;
|
|
13760
13682
|
} | undefined;
|
|
13761
|
-
|
|
13762
|
-
|
|
13763
|
-
|
|
13764
|
-
|
|
13765
|
-
|
|
13766
|
-
|
|
13767
|
-
field: string;
|
|
13768
|
-
order: "asc" | "desc";
|
|
13769
|
-
}[] | undefined;
|
|
13770
|
-
searchableFields?: string[] | undefined;
|
|
13771
|
-
filterableFields?: string[] | undefined;
|
|
13772
|
-
userFilters?: {
|
|
13773
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
13774
|
-
fields?: {
|
|
13775
|
-
field: string;
|
|
13776
|
-
label?: string | undefined;
|
|
13777
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
13778
|
-
options?: {
|
|
13779
|
-
value: string | number | boolean;
|
|
13780
|
-
label: string;
|
|
13781
|
-
color?: string | undefined;
|
|
13782
|
-
}[] | undefined;
|
|
13783
|
-
showCount?: boolean | undefined;
|
|
13784
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
13785
|
-
}[] | undefined;
|
|
13786
|
-
tabs?: {
|
|
13787
|
-
name: string;
|
|
13788
|
-
pinned: boolean;
|
|
13789
|
-
isDefault: boolean;
|
|
13790
|
-
visible: boolean;
|
|
13791
|
-
label?: string | undefined;
|
|
13792
|
-
icon?: string | undefined;
|
|
13793
|
-
view?: string | undefined;
|
|
13794
|
-
filter?: {
|
|
13795
|
-
field: string;
|
|
13796
|
-
operator: string;
|
|
13797
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
13798
|
-
}[] | undefined;
|
|
13799
|
-
order?: number | undefined;
|
|
13800
|
-
}[] | undefined;
|
|
13801
|
-
showAllRecords?: boolean | undefined;
|
|
13683
|
+
tree?: {
|
|
13684
|
+
[x: string]: unknown;
|
|
13685
|
+
parentField?: string | undefined;
|
|
13686
|
+
labelField?: string | undefined;
|
|
13687
|
+
fields?: string[] | undefined;
|
|
13688
|
+
defaultExpandedDepth?: number | undefined;
|
|
13802
13689
|
} | undefined;
|
|
13690
|
+
inlineEdit?: boolean | undefined;
|
|
13691
|
+
virtualScroll?: boolean | undefined;
|
|
13803
13692
|
resizable?: boolean | undefined;
|
|
13804
|
-
striped?: boolean | undefined;
|
|
13805
|
-
bordered?: boolean | undefined;
|
|
13806
|
-
compactToolbar?: boolean | undefined;
|
|
13807
|
-
selection?: {
|
|
13808
|
-
type: "none" | "multiple" | "single";
|
|
13809
|
-
} | undefined;
|
|
13810
|
-
navigation?: {
|
|
13811
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
13812
|
-
preventNavigation: boolean;
|
|
13813
|
-
openNewTab: boolean;
|
|
13814
|
-
view?: string | undefined;
|
|
13815
|
-
width?: string | number | undefined;
|
|
13816
|
-
} | undefined;
|
|
13817
|
-
pagination?: {
|
|
13818
|
-
pageSize: number;
|
|
13819
|
-
pageSizeOptions?: number[] | undefined;
|
|
13820
|
-
} | undefined;
|
|
13821
13693
|
kanban?: {
|
|
13822
13694
|
groupByField: string;
|
|
13823
13695
|
columns: string[];
|
|
13824
13696
|
summarizeField?: string | undefined;
|
|
13825
13697
|
} | undefined;
|
|
13698
|
+
gallery?: {
|
|
13699
|
+
coverFit: "cover" | "contain";
|
|
13700
|
+
cardSize: "small" | "medium" | "large";
|
|
13701
|
+
coverField?: string | undefined;
|
|
13702
|
+
titleField?: string | undefined;
|
|
13703
|
+
visibleFields?: string[] | undefined;
|
|
13704
|
+
} | undefined;
|
|
13826
13705
|
calendar?: {
|
|
13827
13706
|
startDateField: string;
|
|
13828
13707
|
titleField: string;
|
|
13829
13708
|
endDateField?: string | undefined;
|
|
13830
13709
|
colorField?: string | undefined;
|
|
13831
13710
|
} | undefined;
|
|
13711
|
+
timeline?: {
|
|
13712
|
+
startDateField: string;
|
|
13713
|
+
titleField: string;
|
|
13714
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
13715
|
+
endDateField?: string | undefined;
|
|
13716
|
+
groupByField?: string | undefined;
|
|
13717
|
+
colorField?: string | undefined;
|
|
13718
|
+
} | undefined;
|
|
13832
13719
|
gantt?: {
|
|
13833
13720
|
[x: string]: unknown;
|
|
13834
13721
|
startDateField: string;
|
|
@@ -13860,40 +13747,40 @@ declare const SysSavedReport: Omit<{
|
|
|
13860
13747
|
}[] | undefined;
|
|
13861
13748
|
autoZoomToFilter?: boolean | undefined;
|
|
13862
13749
|
} | undefined;
|
|
13863
|
-
gallery?: {
|
|
13864
|
-
coverFit: "cover" | "contain";
|
|
13865
|
-
cardSize: "small" | "medium" | "large";
|
|
13866
|
-
coverField?: string | undefined;
|
|
13867
|
-
titleField?: string | undefined;
|
|
13868
|
-
visibleFields?: string[] | undefined;
|
|
13869
|
-
} | undefined;
|
|
13870
|
-
timeline?: {
|
|
13871
|
-
startDateField: string;
|
|
13872
|
-
titleField: string;
|
|
13873
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
13874
|
-
endDateField?: string | undefined;
|
|
13875
|
-
groupByField?: string | undefined;
|
|
13876
|
-
colorField?: string | undefined;
|
|
13877
|
-
} | undefined;
|
|
13878
13750
|
chart?: {
|
|
13879
13751
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
13880
13752
|
dataset: string;
|
|
13881
13753
|
values: string[];
|
|
13882
13754
|
dimensions?: string[] | undefined;
|
|
13883
13755
|
} | undefined;
|
|
13884
|
-
|
|
13885
|
-
|
|
13886
|
-
|
|
13887
|
-
|
|
13888
|
-
|
|
13889
|
-
|
|
13756
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
13757
|
+
tabs?: {
|
|
13758
|
+
name: string;
|
|
13759
|
+
pinned: boolean;
|
|
13760
|
+
isDefault: boolean;
|
|
13761
|
+
visible: boolean;
|
|
13762
|
+
label?: string | undefined;
|
|
13763
|
+
icon?: string | undefined;
|
|
13764
|
+
view?: string | undefined;
|
|
13765
|
+
filter?: {
|
|
13766
|
+
field: string;
|
|
13767
|
+
operator: string;
|
|
13768
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
13769
|
+
}[] | undefined;
|
|
13770
|
+
order?: number | undefined;
|
|
13771
|
+
}[] | undefined;
|
|
13772
|
+
searchableFields?: string[] | undefined;
|
|
13773
|
+
filterableFields?: string[] | undefined;
|
|
13774
|
+
striped?: boolean | undefined;
|
|
13775
|
+
bordered?: boolean | undefined;
|
|
13776
|
+
compactToolbar?: boolean | undefined;
|
|
13777
|
+
selection?: {
|
|
13778
|
+
type: "none" | "multiple" | "single";
|
|
13890
13779
|
} | undefined;
|
|
13891
|
-
|
|
13892
|
-
|
|
13893
|
-
|
|
13894
|
-
lockedBy?: string | undefined;
|
|
13780
|
+
pagination?: {
|
|
13781
|
+
pageSize: number;
|
|
13782
|
+
pageSizeOptions?: number[] | undefined;
|
|
13895
13783
|
} | undefined;
|
|
13896
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
13897
13784
|
grouping?: {
|
|
13898
13785
|
fields: {
|
|
13899
13786
|
field: string;
|
|
@@ -13910,7 +13797,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13910
13797
|
rowActions?: string[] | undefined;
|
|
13911
13798
|
bulkActions?: string[] | undefined;
|
|
13912
13799
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
13913
|
-
virtualScroll?: boolean | undefined;
|
|
13914
13800
|
conditionalFormatting?: {
|
|
13915
13801
|
condition: {
|
|
13916
13802
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -13931,7 +13817,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13931
13817
|
};
|
|
13932
13818
|
style: Record<string, string>;
|
|
13933
13819
|
}[] | undefined;
|
|
13934
|
-
inlineEdit?: boolean | undefined;
|
|
13935
13820
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
13936
13821
|
userActions?: {
|
|
13937
13822
|
sort: boolean;
|
|
@@ -13944,23 +13829,8 @@ declare const SysSavedReport: Omit<{
|
|
|
13944
13829
|
} | undefined;
|
|
13945
13830
|
appearance?: {
|
|
13946
13831
|
showDescription: boolean;
|
|
13947
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
13832
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
13948
13833
|
} | undefined;
|
|
13949
|
-
tabs?: {
|
|
13950
|
-
name: string;
|
|
13951
|
-
pinned: boolean;
|
|
13952
|
-
isDefault: boolean;
|
|
13953
|
-
visible: boolean;
|
|
13954
|
-
label?: string | undefined;
|
|
13955
|
-
icon?: string | undefined;
|
|
13956
|
-
view?: string | undefined;
|
|
13957
|
-
filter?: {
|
|
13958
|
-
field: string;
|
|
13959
|
-
operator: string;
|
|
13960
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
13961
|
-
}[] | undefined;
|
|
13962
|
-
order?: number | undefined;
|
|
13963
|
-
}[] | undefined;
|
|
13964
13834
|
addRecord?: {
|
|
13965
13835
|
enabled: boolean;
|
|
13966
13836
|
position: "top" | "bottom" | "both";
|
|
@@ -13974,31 +13844,6 @@ declare const SysSavedReport: Omit<{
|
|
|
13974
13844
|
message?: string | undefined;
|
|
13975
13845
|
icon?: string | undefined;
|
|
13976
13846
|
} | undefined;
|
|
13977
|
-
aria?: {
|
|
13978
|
-
ariaLabel?: string | undefined;
|
|
13979
|
-
ariaDescribedBy?: string | undefined;
|
|
13980
|
-
role?: string | undefined;
|
|
13981
|
-
} | undefined;
|
|
13982
|
-
responsive?: {
|
|
13983
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
13984
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
13985
|
-
columns?: {
|
|
13986
|
-
xs?: number | undefined;
|
|
13987
|
-
sm?: number | undefined;
|
|
13988
|
-
md?: number | undefined;
|
|
13989
|
-
lg?: number | undefined;
|
|
13990
|
-
xl?: number | undefined;
|
|
13991
|
-
'2xl'?: number | undefined;
|
|
13992
|
-
} | undefined;
|
|
13993
|
-
order?: {
|
|
13994
|
-
xs?: number | undefined;
|
|
13995
|
-
sm?: number | undefined;
|
|
13996
|
-
md?: number | undefined;
|
|
13997
|
-
lg?: number | undefined;
|
|
13998
|
-
xl?: number | undefined;
|
|
13999
|
-
'2xl'?: number | undefined;
|
|
14000
|
-
} | undefined;
|
|
14001
|
-
} | undefined;
|
|
14002
13847
|
performance?: {
|
|
14003
13848
|
lazyLoad?: boolean | undefined;
|
|
14004
13849
|
virtualScroll?: {
|
|
@@ -14201,7 +14046,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14201
14046
|
readonly inlineTitle?: string | undefined;
|
|
14202
14047
|
readonly inlineColumns?: any[] | undefined;
|
|
14203
14048
|
readonly inlineAmountField?: string | undefined;
|
|
14204
|
-
readonly relatedList?: boolean | undefined;
|
|
14049
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14205
14050
|
readonly relatedListTitle?: string | undefined;
|
|
14206
14051
|
readonly relatedListColumns?: any[] | undefined;
|
|
14207
14052
|
readonly displayField?: string | undefined;
|
|
@@ -14375,7 +14220,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14375
14220
|
readonly inlineTitle?: string | undefined;
|
|
14376
14221
|
readonly inlineColumns?: any[] | undefined;
|
|
14377
14222
|
readonly inlineAmountField?: string | undefined;
|
|
14378
|
-
readonly relatedList?: boolean | undefined;
|
|
14223
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14379
14224
|
readonly relatedListTitle?: string | undefined;
|
|
14380
14225
|
readonly relatedListColumns?: any[] | undefined;
|
|
14381
14226
|
readonly displayField?: string | undefined;
|
|
@@ -14549,7 +14394,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14549
14394
|
readonly inlineTitle?: string | undefined;
|
|
14550
14395
|
readonly inlineColumns?: any[] | undefined;
|
|
14551
14396
|
readonly inlineAmountField?: string | undefined;
|
|
14552
|
-
readonly relatedList?: boolean | undefined;
|
|
14397
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14553
14398
|
readonly relatedListTitle?: string | undefined;
|
|
14554
14399
|
readonly relatedListColumns?: any[] | undefined;
|
|
14555
14400
|
readonly displayField?: string | undefined;
|
|
@@ -14723,7 +14568,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14723
14568
|
readonly inlineTitle?: string | undefined;
|
|
14724
14569
|
readonly inlineColumns?: any[] | undefined;
|
|
14725
14570
|
readonly inlineAmountField?: string | undefined;
|
|
14726
|
-
readonly relatedList?: boolean | undefined;
|
|
14571
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14727
14572
|
readonly relatedListTitle?: string | undefined;
|
|
14728
14573
|
readonly relatedListColumns?: any[] | undefined;
|
|
14729
14574
|
readonly displayField?: string | undefined;
|
|
@@ -14897,7 +14742,7 @@ declare const SysSavedReport: Omit<{
|
|
|
14897
14742
|
readonly inlineTitle?: string | undefined;
|
|
14898
14743
|
readonly inlineColumns?: any[] | undefined;
|
|
14899
14744
|
readonly inlineAmountField?: string | undefined;
|
|
14900
|
-
readonly relatedList?: boolean | undefined;
|
|
14745
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
14901
14746
|
readonly relatedListTitle?: string | undefined;
|
|
14902
14747
|
readonly relatedListColumns?: any[] | undefined;
|
|
14903
14748
|
readonly displayField?: string | undefined;
|
|
@@ -15071,7 +14916,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15071
14916
|
readonly inlineTitle?: string | undefined;
|
|
15072
14917
|
readonly inlineColumns?: any[] | undefined;
|
|
15073
14918
|
readonly inlineAmountField?: string | undefined;
|
|
15074
|
-
readonly relatedList?: boolean | undefined;
|
|
14919
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15075
14920
|
readonly relatedListTitle?: string | undefined;
|
|
15076
14921
|
readonly relatedListColumns?: any[] | undefined;
|
|
15077
14922
|
readonly displayField?: string | undefined;
|
|
@@ -15245,7 +15090,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15245
15090
|
readonly inlineTitle?: string | undefined;
|
|
15246
15091
|
readonly inlineColumns?: any[] | undefined;
|
|
15247
15092
|
readonly inlineAmountField?: string | undefined;
|
|
15248
|
-
readonly relatedList?: boolean | undefined;
|
|
15093
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15249
15094
|
readonly relatedListTitle?: string | undefined;
|
|
15250
15095
|
readonly relatedListColumns?: any[] | undefined;
|
|
15251
15096
|
readonly displayField?: string | undefined;
|
|
@@ -15419,7 +15264,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15419
15264
|
readonly inlineTitle?: string | undefined;
|
|
15420
15265
|
readonly inlineColumns?: any[] | undefined;
|
|
15421
15266
|
readonly inlineAmountField?: string | undefined;
|
|
15422
|
-
readonly relatedList?: boolean | undefined;
|
|
15267
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15423
15268
|
readonly relatedListTitle?: string | undefined;
|
|
15424
15269
|
readonly relatedListColumns?: any[] | undefined;
|
|
15425
15270
|
readonly displayField?: string | undefined;
|
|
@@ -15593,7 +15438,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15593
15438
|
readonly inlineTitle?: string | undefined;
|
|
15594
15439
|
readonly inlineColumns?: any[] | undefined;
|
|
15595
15440
|
readonly inlineAmountField?: string | undefined;
|
|
15596
|
-
readonly relatedList?: boolean | undefined;
|
|
15441
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15597
15442
|
readonly relatedListTitle?: string | undefined;
|
|
15598
15443
|
readonly relatedListColumns?: any[] | undefined;
|
|
15599
15444
|
readonly displayField?: string | undefined;
|
|
@@ -15767,7 +15612,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15767
15612
|
readonly inlineTitle?: string | undefined;
|
|
15768
15613
|
readonly inlineColumns?: any[] | undefined;
|
|
15769
15614
|
readonly inlineAmountField?: string | undefined;
|
|
15770
|
-
readonly relatedList?: boolean | undefined;
|
|
15615
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15771
15616
|
readonly relatedListTitle?: string | undefined;
|
|
15772
15617
|
readonly relatedListColumns?: any[] | undefined;
|
|
15773
15618
|
readonly displayField?: string | undefined;
|
|
@@ -15941,7 +15786,7 @@ declare const SysSavedReport: Omit<{
|
|
|
15941
15786
|
readonly inlineTitle?: string | undefined;
|
|
15942
15787
|
readonly inlineColumns?: any[] | undefined;
|
|
15943
15788
|
readonly inlineAmountField?: string | undefined;
|
|
15944
|
-
readonly relatedList?: boolean | undefined;
|
|
15789
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
15945
15790
|
readonly relatedListTitle?: string | undefined;
|
|
15946
15791
|
readonly relatedListColumns?: any[] | undefined;
|
|
15947
15792
|
readonly displayField?: string | undefined;
|
|
@@ -16155,7 +16000,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16155
16000
|
inlineTitle?: string | undefined;
|
|
16156
16001
|
inlineColumns?: any[] | undefined;
|
|
16157
16002
|
inlineAmountField?: string | undefined;
|
|
16158
|
-
relatedList?: boolean | undefined;
|
|
16003
|
+
relatedList?: boolean | "primary" | undefined;
|
|
16159
16004
|
relatedListTitle?: string | undefined;
|
|
16160
16005
|
relatedListColumns?: any[] | undefined;
|
|
16161
16006
|
displayField?: string | undefined;
|
|
@@ -16436,10 +16281,9 @@ declare const SysReportSchedule: Omit<{
|
|
|
16436
16281
|
} | undefined;
|
|
16437
16282
|
} | undefined;
|
|
16438
16283
|
highlightFields?: string[] | undefined;
|
|
16439
|
-
compactLayout?: string[] | undefined;
|
|
16440
16284
|
stageField?: string | false | undefined;
|
|
16441
16285
|
listViews?: Record<string, {
|
|
16442
|
-
type: "tree" | "grid" | "kanban" | "
|
|
16286
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
16443
16287
|
columns: string[] | {
|
|
16444
16288
|
field: string;
|
|
16445
16289
|
label?: string | undefined;
|
|
@@ -16455,8 +16299,55 @@ declare const SysReportSchedule: Omit<{
|
|
|
16455
16299
|
link?: boolean | undefined;
|
|
16456
16300
|
action?: string | undefined;
|
|
16457
16301
|
}[];
|
|
16458
|
-
|
|
16302
|
+
sort?: string | {
|
|
16303
|
+
field: string;
|
|
16304
|
+
order: "asc" | "desc";
|
|
16305
|
+
}[] | undefined;
|
|
16306
|
+
filter?: {
|
|
16307
|
+
field: string;
|
|
16308
|
+
operator: string;
|
|
16309
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16310
|
+
}[] | undefined;
|
|
16311
|
+
description?: string | undefined;
|
|
16459
16312
|
label?: string | undefined;
|
|
16313
|
+
name?: string | undefined;
|
|
16314
|
+
responsive?: {
|
|
16315
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
16316
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
16317
|
+
columns?: {
|
|
16318
|
+
xs?: number | undefined;
|
|
16319
|
+
sm?: number | undefined;
|
|
16320
|
+
md?: number | undefined;
|
|
16321
|
+
lg?: number | undefined;
|
|
16322
|
+
xl?: number | undefined;
|
|
16323
|
+
'2xl'?: number | undefined;
|
|
16324
|
+
} | undefined;
|
|
16325
|
+
order?: {
|
|
16326
|
+
xs?: number | undefined;
|
|
16327
|
+
sm?: number | undefined;
|
|
16328
|
+
md?: number | undefined;
|
|
16329
|
+
lg?: number | undefined;
|
|
16330
|
+
xl?: number | undefined;
|
|
16331
|
+
'2xl'?: number | undefined;
|
|
16332
|
+
} | undefined;
|
|
16333
|
+
} | undefined;
|
|
16334
|
+
navigation?: {
|
|
16335
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
16336
|
+
preventNavigation: boolean;
|
|
16337
|
+
openNewTab: boolean;
|
|
16338
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
16339
|
+
view?: string | undefined;
|
|
16340
|
+
width?: string | number | undefined;
|
|
16341
|
+
} | undefined;
|
|
16342
|
+
sharing?: {
|
|
16343
|
+
type: "personal" | "collaborative";
|
|
16344
|
+
lockedBy?: string | undefined;
|
|
16345
|
+
} | undefined;
|
|
16346
|
+
aria?: {
|
|
16347
|
+
ariaLabel?: string | undefined;
|
|
16348
|
+
ariaDescribedBy?: string | undefined;
|
|
16349
|
+
role?: string | undefined;
|
|
16350
|
+
} | undefined;
|
|
16460
16351
|
data?: {
|
|
16461
16352
|
provider: "object";
|
|
16462
16353
|
object: string;
|
|
@@ -16484,77 +16375,42 @@ declare const SysReportSchedule: Omit<{
|
|
|
16484
16375
|
schemaId: string;
|
|
16485
16376
|
schema?: Record<string, unknown> | undefined;
|
|
16486
16377
|
} | undefined;
|
|
16487
|
-
|
|
16488
|
-
|
|
16489
|
-
|
|
16490
|
-
|
|
16491
|
-
|
|
16492
|
-
|
|
16493
|
-
field: string;
|
|
16494
|
-
order: "asc" | "desc";
|
|
16495
|
-
}[] | undefined;
|
|
16496
|
-
searchableFields?: string[] | undefined;
|
|
16497
|
-
filterableFields?: string[] | undefined;
|
|
16498
|
-
userFilters?: {
|
|
16499
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
16500
|
-
fields?: {
|
|
16501
|
-
field: string;
|
|
16502
|
-
label?: string | undefined;
|
|
16503
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
16504
|
-
options?: {
|
|
16505
|
-
value: string | number | boolean;
|
|
16506
|
-
label: string;
|
|
16507
|
-
color?: string | undefined;
|
|
16508
|
-
}[] | undefined;
|
|
16509
|
-
showCount?: boolean | undefined;
|
|
16510
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
16511
|
-
}[] | undefined;
|
|
16512
|
-
tabs?: {
|
|
16513
|
-
name: string;
|
|
16514
|
-
pinned: boolean;
|
|
16515
|
-
isDefault: boolean;
|
|
16516
|
-
visible: boolean;
|
|
16517
|
-
label?: string | undefined;
|
|
16518
|
-
icon?: string | undefined;
|
|
16519
|
-
view?: string | undefined;
|
|
16520
|
-
filter?: {
|
|
16521
|
-
field: string;
|
|
16522
|
-
operator: string;
|
|
16523
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16524
|
-
}[] | undefined;
|
|
16525
|
-
order?: number | undefined;
|
|
16526
|
-
}[] | undefined;
|
|
16527
|
-
showAllRecords?: boolean | undefined;
|
|
16378
|
+
tree?: {
|
|
16379
|
+
[x: string]: unknown;
|
|
16380
|
+
parentField?: string | undefined;
|
|
16381
|
+
labelField?: string | undefined;
|
|
16382
|
+
fields?: string[] | undefined;
|
|
16383
|
+
defaultExpandedDepth?: number | undefined;
|
|
16528
16384
|
} | undefined;
|
|
16385
|
+
inlineEdit?: boolean | undefined;
|
|
16386
|
+
virtualScroll?: boolean | undefined;
|
|
16529
16387
|
resizable?: boolean | undefined;
|
|
16530
|
-
striped?: boolean | undefined;
|
|
16531
|
-
bordered?: boolean | undefined;
|
|
16532
|
-
compactToolbar?: boolean | undefined;
|
|
16533
|
-
selection?: {
|
|
16534
|
-
type: "none" | "multiple" | "single";
|
|
16535
|
-
} | undefined;
|
|
16536
|
-
navigation?: {
|
|
16537
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
16538
|
-
preventNavigation: boolean;
|
|
16539
|
-
openNewTab: boolean;
|
|
16540
|
-
view?: string | undefined;
|
|
16541
|
-
width?: string | number | undefined;
|
|
16542
|
-
} | undefined;
|
|
16543
|
-
pagination?: {
|
|
16544
|
-
pageSize: number;
|
|
16545
|
-
pageSizeOptions?: number[] | undefined;
|
|
16546
|
-
} | undefined;
|
|
16547
16388
|
kanban?: {
|
|
16548
16389
|
groupByField: string;
|
|
16549
16390
|
columns: string[];
|
|
16550
16391
|
summarizeField?: string | undefined;
|
|
16551
16392
|
} | undefined;
|
|
16393
|
+
gallery?: {
|
|
16394
|
+
coverFit: "cover" | "contain";
|
|
16395
|
+
cardSize: "small" | "medium" | "large";
|
|
16396
|
+
coverField?: string | undefined;
|
|
16397
|
+
titleField?: string | undefined;
|
|
16398
|
+
visibleFields?: string[] | undefined;
|
|
16399
|
+
} | undefined;
|
|
16552
16400
|
calendar?: {
|
|
16553
16401
|
startDateField: string;
|
|
16554
16402
|
titleField: string;
|
|
16555
16403
|
endDateField?: string | undefined;
|
|
16556
16404
|
colorField?: string | undefined;
|
|
16557
16405
|
} | undefined;
|
|
16406
|
+
timeline?: {
|
|
16407
|
+
startDateField: string;
|
|
16408
|
+
titleField: string;
|
|
16409
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
16410
|
+
endDateField?: string | undefined;
|
|
16411
|
+
groupByField?: string | undefined;
|
|
16412
|
+
colorField?: string | undefined;
|
|
16413
|
+
} | undefined;
|
|
16558
16414
|
gantt?: {
|
|
16559
16415
|
[x: string]: unknown;
|
|
16560
16416
|
startDateField: string;
|
|
@@ -16586,40 +16442,40 @@ declare const SysReportSchedule: Omit<{
|
|
|
16586
16442
|
}[] | undefined;
|
|
16587
16443
|
autoZoomToFilter?: boolean | undefined;
|
|
16588
16444
|
} | undefined;
|
|
16589
|
-
gallery?: {
|
|
16590
|
-
coverFit: "cover" | "contain";
|
|
16591
|
-
cardSize: "small" | "medium" | "large";
|
|
16592
|
-
coverField?: string | undefined;
|
|
16593
|
-
titleField?: string | undefined;
|
|
16594
|
-
visibleFields?: string[] | undefined;
|
|
16595
|
-
} | undefined;
|
|
16596
|
-
timeline?: {
|
|
16597
|
-
startDateField: string;
|
|
16598
|
-
titleField: string;
|
|
16599
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
16600
|
-
endDateField?: string | undefined;
|
|
16601
|
-
groupByField?: string | undefined;
|
|
16602
|
-
colorField?: string | undefined;
|
|
16603
|
-
} | undefined;
|
|
16604
16445
|
chart?: {
|
|
16605
16446
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
16606
16447
|
dataset: string;
|
|
16607
16448
|
values: string[];
|
|
16608
16449
|
dimensions?: string[] | undefined;
|
|
16609
16450
|
} | undefined;
|
|
16610
|
-
|
|
16611
|
-
|
|
16612
|
-
|
|
16613
|
-
|
|
16614
|
-
|
|
16615
|
-
|
|
16451
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
16452
|
+
tabs?: {
|
|
16453
|
+
name: string;
|
|
16454
|
+
pinned: boolean;
|
|
16455
|
+
isDefault: boolean;
|
|
16456
|
+
visible: boolean;
|
|
16457
|
+
label?: string | undefined;
|
|
16458
|
+
icon?: string | undefined;
|
|
16459
|
+
view?: string | undefined;
|
|
16460
|
+
filter?: {
|
|
16461
|
+
field: string;
|
|
16462
|
+
operator: string;
|
|
16463
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16464
|
+
}[] | undefined;
|
|
16465
|
+
order?: number | undefined;
|
|
16466
|
+
}[] | undefined;
|
|
16467
|
+
searchableFields?: string[] | undefined;
|
|
16468
|
+
filterableFields?: string[] | undefined;
|
|
16469
|
+
striped?: boolean | undefined;
|
|
16470
|
+
bordered?: boolean | undefined;
|
|
16471
|
+
compactToolbar?: boolean | undefined;
|
|
16472
|
+
selection?: {
|
|
16473
|
+
type: "none" | "multiple" | "single";
|
|
16616
16474
|
} | undefined;
|
|
16617
|
-
|
|
16618
|
-
|
|
16619
|
-
|
|
16620
|
-
lockedBy?: string | undefined;
|
|
16475
|
+
pagination?: {
|
|
16476
|
+
pageSize: number;
|
|
16477
|
+
pageSizeOptions?: number[] | undefined;
|
|
16621
16478
|
} | undefined;
|
|
16622
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
16623
16479
|
grouping?: {
|
|
16624
16480
|
fields: {
|
|
16625
16481
|
field: string;
|
|
@@ -16636,7 +16492,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16636
16492
|
rowActions?: string[] | undefined;
|
|
16637
16493
|
bulkActions?: string[] | undefined;
|
|
16638
16494
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
16639
|
-
virtualScroll?: boolean | undefined;
|
|
16640
16495
|
conditionalFormatting?: {
|
|
16641
16496
|
condition: {
|
|
16642
16497
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -16657,7 +16512,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16657
16512
|
};
|
|
16658
16513
|
style: Record<string, string>;
|
|
16659
16514
|
}[] | undefined;
|
|
16660
|
-
inlineEdit?: boolean | undefined;
|
|
16661
16515
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
16662
16516
|
userActions?: {
|
|
16663
16517
|
sort: boolean;
|
|
@@ -16670,23 +16524,8 @@ declare const SysReportSchedule: Omit<{
|
|
|
16670
16524
|
} | undefined;
|
|
16671
16525
|
appearance?: {
|
|
16672
16526
|
showDescription: boolean;
|
|
16673
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
16527
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
16674
16528
|
} | undefined;
|
|
16675
|
-
tabs?: {
|
|
16676
|
-
name: string;
|
|
16677
|
-
pinned: boolean;
|
|
16678
|
-
isDefault: boolean;
|
|
16679
|
-
visible: boolean;
|
|
16680
|
-
label?: string | undefined;
|
|
16681
|
-
icon?: string | undefined;
|
|
16682
|
-
view?: string | undefined;
|
|
16683
|
-
filter?: {
|
|
16684
|
-
field: string;
|
|
16685
|
-
operator: string;
|
|
16686
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
16687
|
-
}[] | undefined;
|
|
16688
|
-
order?: number | undefined;
|
|
16689
|
-
}[] | undefined;
|
|
16690
16529
|
addRecord?: {
|
|
16691
16530
|
enabled: boolean;
|
|
16692
16531
|
position: "top" | "bottom" | "both";
|
|
@@ -16700,31 +16539,6 @@ declare const SysReportSchedule: Omit<{
|
|
|
16700
16539
|
message?: string | undefined;
|
|
16701
16540
|
icon?: string | undefined;
|
|
16702
16541
|
} | undefined;
|
|
16703
|
-
aria?: {
|
|
16704
|
-
ariaLabel?: string | undefined;
|
|
16705
|
-
ariaDescribedBy?: string | undefined;
|
|
16706
|
-
role?: string | undefined;
|
|
16707
|
-
} | undefined;
|
|
16708
|
-
responsive?: {
|
|
16709
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
16710
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
16711
|
-
columns?: {
|
|
16712
|
-
xs?: number | undefined;
|
|
16713
|
-
sm?: number | undefined;
|
|
16714
|
-
md?: number | undefined;
|
|
16715
|
-
lg?: number | undefined;
|
|
16716
|
-
xl?: number | undefined;
|
|
16717
|
-
'2xl'?: number | undefined;
|
|
16718
|
-
} | undefined;
|
|
16719
|
-
order?: {
|
|
16720
|
-
xs?: number | undefined;
|
|
16721
|
-
sm?: number | undefined;
|
|
16722
|
-
md?: number | undefined;
|
|
16723
|
-
lg?: number | undefined;
|
|
16724
|
-
xl?: number | undefined;
|
|
16725
|
-
'2xl'?: number | undefined;
|
|
16726
|
-
} | undefined;
|
|
16727
|
-
} | undefined;
|
|
16728
16542
|
performance?: {
|
|
16729
16543
|
lazyLoad?: boolean | undefined;
|
|
16730
16544
|
virtualScroll?: {
|
|
@@ -16925,7 +16739,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
16925
16739
|
readonly inlineTitle?: string | undefined;
|
|
16926
16740
|
readonly inlineColumns?: any[] | undefined;
|
|
16927
16741
|
readonly inlineAmountField?: string | undefined;
|
|
16928
|
-
readonly relatedList?: boolean | undefined;
|
|
16742
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
16929
16743
|
readonly relatedListTitle?: string | undefined;
|
|
16930
16744
|
readonly relatedListColumns?: any[] | undefined;
|
|
16931
16745
|
readonly displayField?: string | undefined;
|
|
@@ -17099,7 +16913,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17099
16913
|
readonly inlineTitle?: string | undefined;
|
|
17100
16914
|
readonly inlineColumns?: any[] | undefined;
|
|
17101
16915
|
readonly inlineAmountField?: string | undefined;
|
|
17102
|
-
readonly relatedList?: boolean | undefined;
|
|
16916
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17103
16917
|
readonly relatedListTitle?: string | undefined;
|
|
17104
16918
|
readonly relatedListColumns?: any[] | undefined;
|
|
17105
16919
|
readonly displayField?: string | undefined;
|
|
@@ -17273,7 +17087,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17273
17087
|
readonly inlineTitle?: string | undefined;
|
|
17274
17088
|
readonly inlineColumns?: any[] | undefined;
|
|
17275
17089
|
readonly inlineAmountField?: string | undefined;
|
|
17276
|
-
readonly relatedList?: boolean | undefined;
|
|
17090
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17277
17091
|
readonly relatedListTitle?: string | undefined;
|
|
17278
17092
|
readonly relatedListColumns?: any[] | undefined;
|
|
17279
17093
|
readonly displayField?: string | undefined;
|
|
@@ -17447,7 +17261,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17447
17261
|
readonly inlineTitle?: string | undefined;
|
|
17448
17262
|
readonly inlineColumns?: any[] | undefined;
|
|
17449
17263
|
readonly inlineAmountField?: string | undefined;
|
|
17450
|
-
readonly relatedList?: boolean | undefined;
|
|
17264
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17451
17265
|
readonly relatedListTitle?: string | undefined;
|
|
17452
17266
|
readonly relatedListColumns?: any[] | undefined;
|
|
17453
17267
|
readonly displayField?: string | undefined;
|
|
@@ -17621,7 +17435,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17621
17435
|
readonly inlineTitle?: string | undefined;
|
|
17622
17436
|
readonly inlineColumns?: any[] | undefined;
|
|
17623
17437
|
readonly inlineAmountField?: string | undefined;
|
|
17624
|
-
readonly relatedList?: boolean | undefined;
|
|
17438
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17625
17439
|
readonly relatedListTitle?: string | undefined;
|
|
17626
17440
|
readonly relatedListColumns?: any[] | undefined;
|
|
17627
17441
|
readonly displayField?: string | undefined;
|
|
@@ -17795,7 +17609,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17795
17609
|
readonly inlineTitle?: string | undefined;
|
|
17796
17610
|
readonly inlineColumns?: any[] | undefined;
|
|
17797
17611
|
readonly inlineAmountField?: string | undefined;
|
|
17798
|
-
readonly relatedList?: boolean | undefined;
|
|
17612
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17799
17613
|
readonly relatedListTitle?: string | undefined;
|
|
17800
17614
|
readonly relatedListColumns?: any[] | undefined;
|
|
17801
17615
|
readonly displayField?: string | undefined;
|
|
@@ -17969,7 +17783,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
17969
17783
|
readonly inlineTitle?: string | undefined;
|
|
17970
17784
|
readonly inlineColumns?: any[] | undefined;
|
|
17971
17785
|
readonly inlineAmountField?: string | undefined;
|
|
17972
|
-
readonly relatedList?: boolean | undefined;
|
|
17786
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
17973
17787
|
readonly relatedListTitle?: string | undefined;
|
|
17974
17788
|
readonly relatedListColumns?: any[] | undefined;
|
|
17975
17789
|
readonly displayField?: string | undefined;
|
|
@@ -18143,7 +17957,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18143
17957
|
readonly inlineTitle?: string | undefined;
|
|
18144
17958
|
readonly inlineColumns?: any[] | undefined;
|
|
18145
17959
|
readonly inlineAmountField?: string | undefined;
|
|
18146
|
-
readonly relatedList?: boolean | undefined;
|
|
17960
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18147
17961
|
readonly relatedListTitle?: string | undefined;
|
|
18148
17962
|
readonly relatedListColumns?: any[] | undefined;
|
|
18149
17963
|
readonly displayField?: string | undefined;
|
|
@@ -18317,7 +18131,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18317
18131
|
readonly inlineTitle?: string | undefined;
|
|
18318
18132
|
readonly inlineColumns?: any[] | undefined;
|
|
18319
18133
|
readonly inlineAmountField?: string | undefined;
|
|
18320
|
-
readonly relatedList?: boolean | undefined;
|
|
18134
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18321
18135
|
readonly relatedListTitle?: string | undefined;
|
|
18322
18136
|
readonly relatedListColumns?: any[] | undefined;
|
|
18323
18137
|
readonly displayField?: string | undefined;
|
|
@@ -18491,7 +18305,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18491
18305
|
readonly inlineTitle?: string | undefined;
|
|
18492
18306
|
readonly inlineColumns?: any[] | undefined;
|
|
18493
18307
|
readonly inlineAmountField?: string | undefined;
|
|
18494
|
-
readonly relatedList?: boolean | undefined;
|
|
18308
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18495
18309
|
readonly relatedListTitle?: string | undefined;
|
|
18496
18310
|
readonly relatedListColumns?: any[] | undefined;
|
|
18497
18311
|
readonly displayField?: string | undefined;
|
|
@@ -18665,7 +18479,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18665
18479
|
readonly inlineTitle?: string | undefined;
|
|
18666
18480
|
readonly inlineColumns?: any[] | undefined;
|
|
18667
18481
|
readonly inlineAmountField?: string | undefined;
|
|
18668
|
-
readonly relatedList?: boolean | undefined;
|
|
18482
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18669
18483
|
readonly relatedListTitle?: string | undefined;
|
|
18670
18484
|
readonly relatedListColumns?: any[] | undefined;
|
|
18671
18485
|
readonly displayField?: string | undefined;
|
|
@@ -18839,7 +18653,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
18839
18653
|
readonly inlineTitle?: string | undefined;
|
|
18840
18654
|
readonly inlineColumns?: any[] | undefined;
|
|
18841
18655
|
readonly inlineAmountField?: string | undefined;
|
|
18842
|
-
readonly relatedList?: boolean | undefined;
|
|
18656
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
18843
18657
|
readonly relatedListTitle?: string | undefined;
|
|
18844
18658
|
readonly relatedListColumns?: any[] | undefined;
|
|
18845
18659
|
readonly displayField?: string | undefined;
|
|
@@ -19013,7 +18827,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19013
18827
|
readonly inlineTitle?: string | undefined;
|
|
19014
18828
|
readonly inlineColumns?: any[] | undefined;
|
|
19015
18829
|
readonly inlineAmountField?: string | undefined;
|
|
19016
|
-
readonly relatedList?: boolean | undefined;
|
|
18830
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19017
18831
|
readonly relatedListTitle?: string | undefined;
|
|
19018
18832
|
readonly relatedListColumns?: any[] | undefined;
|
|
19019
18833
|
readonly displayField?: string | undefined;
|
|
@@ -19187,7 +19001,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19187
19001
|
readonly inlineTitle?: string | undefined;
|
|
19188
19002
|
readonly inlineColumns?: any[] | undefined;
|
|
19189
19003
|
readonly inlineAmountField?: string | undefined;
|
|
19190
|
-
readonly relatedList?: boolean | undefined;
|
|
19004
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19191
19005
|
readonly relatedListTitle?: string | undefined;
|
|
19192
19006
|
readonly relatedListColumns?: any[] | undefined;
|
|
19193
19007
|
readonly displayField?: string | undefined;
|
|
@@ -19361,7 +19175,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19361
19175
|
readonly inlineTitle?: string | undefined;
|
|
19362
19176
|
readonly inlineColumns?: any[] | undefined;
|
|
19363
19177
|
readonly inlineAmountField?: string | undefined;
|
|
19364
|
-
readonly relatedList?: boolean | undefined;
|
|
19178
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19365
19179
|
readonly relatedListTitle?: string | undefined;
|
|
19366
19180
|
readonly relatedListColumns?: any[] | undefined;
|
|
19367
19181
|
readonly displayField?: string | undefined;
|
|
@@ -19535,7 +19349,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19535
19349
|
readonly inlineTitle?: string | undefined;
|
|
19536
19350
|
readonly inlineColumns?: any[] | undefined;
|
|
19537
19351
|
readonly inlineAmountField?: string | undefined;
|
|
19538
|
-
readonly relatedList?: boolean | undefined;
|
|
19352
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19539
19353
|
readonly relatedListTitle?: string | undefined;
|
|
19540
19354
|
readonly relatedListColumns?: any[] | undefined;
|
|
19541
19355
|
readonly displayField?: string | undefined;
|
|
@@ -19709,7 +19523,7 @@ declare const SysReportSchedule: Omit<{
|
|
|
19709
19523
|
readonly inlineTitle?: string | undefined;
|
|
19710
19524
|
readonly inlineColumns?: any[] | undefined;
|
|
19711
19525
|
readonly inlineAmountField?: string | undefined;
|
|
19712
|
-
readonly relatedList?: boolean | undefined;
|
|
19526
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
19713
19527
|
readonly relatedListTitle?: string | undefined;
|
|
19714
19528
|
readonly relatedListColumns?: any[] | undefined;
|
|
19715
19529
|
readonly displayField?: string | undefined;
|
|
@@ -19909,7 +19723,7 @@ declare const SysJob: Omit<{
|
|
|
19909
19723
|
inlineTitle?: string | undefined;
|
|
19910
19724
|
inlineColumns?: any[] | undefined;
|
|
19911
19725
|
inlineAmountField?: string | undefined;
|
|
19912
|
-
relatedList?: boolean | undefined;
|
|
19726
|
+
relatedList?: boolean | "primary" | undefined;
|
|
19913
19727
|
relatedListTitle?: string | undefined;
|
|
19914
19728
|
relatedListColumns?: any[] | undefined;
|
|
19915
19729
|
displayField?: string | undefined;
|
|
@@ -20190,10 +20004,9 @@ declare const SysJob: Omit<{
|
|
|
20190
20004
|
} | undefined;
|
|
20191
20005
|
} | undefined;
|
|
20192
20006
|
highlightFields?: string[] | undefined;
|
|
20193
|
-
compactLayout?: string[] | undefined;
|
|
20194
20007
|
stageField?: string | false | undefined;
|
|
20195
20008
|
listViews?: Record<string, {
|
|
20196
|
-
type: "tree" | "grid" | "kanban" | "
|
|
20009
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
20197
20010
|
columns: string[] | {
|
|
20198
20011
|
field: string;
|
|
20199
20012
|
label?: string | undefined;
|
|
@@ -20209,8 +20022,55 @@ declare const SysJob: Omit<{
|
|
|
20209
20022
|
link?: boolean | undefined;
|
|
20210
20023
|
action?: string | undefined;
|
|
20211
20024
|
}[];
|
|
20212
|
-
|
|
20025
|
+
sort?: string | {
|
|
20026
|
+
field: string;
|
|
20027
|
+
order: "asc" | "desc";
|
|
20028
|
+
}[] | undefined;
|
|
20029
|
+
filter?: {
|
|
20030
|
+
field: string;
|
|
20031
|
+
operator: string;
|
|
20032
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
20033
|
+
}[] | undefined;
|
|
20034
|
+
description?: string | undefined;
|
|
20213
20035
|
label?: string | undefined;
|
|
20036
|
+
name?: string | undefined;
|
|
20037
|
+
responsive?: {
|
|
20038
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
20039
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
20040
|
+
columns?: {
|
|
20041
|
+
xs?: number | undefined;
|
|
20042
|
+
sm?: number | undefined;
|
|
20043
|
+
md?: number | undefined;
|
|
20044
|
+
lg?: number | undefined;
|
|
20045
|
+
xl?: number | undefined;
|
|
20046
|
+
'2xl'?: number | undefined;
|
|
20047
|
+
} | undefined;
|
|
20048
|
+
order?: {
|
|
20049
|
+
xs?: number | undefined;
|
|
20050
|
+
sm?: number | undefined;
|
|
20051
|
+
md?: number | undefined;
|
|
20052
|
+
lg?: number | undefined;
|
|
20053
|
+
xl?: number | undefined;
|
|
20054
|
+
'2xl'?: number | undefined;
|
|
20055
|
+
} | undefined;
|
|
20056
|
+
} | undefined;
|
|
20057
|
+
navigation?: {
|
|
20058
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
20059
|
+
preventNavigation: boolean;
|
|
20060
|
+
openNewTab: boolean;
|
|
20061
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
20062
|
+
view?: string | undefined;
|
|
20063
|
+
width?: string | number | undefined;
|
|
20064
|
+
} | undefined;
|
|
20065
|
+
sharing?: {
|
|
20066
|
+
type: "personal" | "collaborative";
|
|
20067
|
+
lockedBy?: string | undefined;
|
|
20068
|
+
} | undefined;
|
|
20069
|
+
aria?: {
|
|
20070
|
+
ariaLabel?: string | undefined;
|
|
20071
|
+
ariaDescribedBy?: string | undefined;
|
|
20072
|
+
role?: string | undefined;
|
|
20073
|
+
} | undefined;
|
|
20214
20074
|
data?: {
|
|
20215
20075
|
provider: "object";
|
|
20216
20076
|
object: string;
|
|
@@ -20238,77 +20098,42 @@ declare const SysJob: Omit<{
|
|
|
20238
20098
|
schemaId: string;
|
|
20239
20099
|
schema?: Record<string, unknown> | undefined;
|
|
20240
20100
|
} | undefined;
|
|
20241
|
-
|
|
20242
|
-
|
|
20243
|
-
|
|
20244
|
-
|
|
20245
|
-
|
|
20246
|
-
|
|
20247
|
-
field: string;
|
|
20248
|
-
order: "asc" | "desc";
|
|
20249
|
-
}[] | undefined;
|
|
20250
|
-
searchableFields?: string[] | undefined;
|
|
20251
|
-
filterableFields?: string[] | undefined;
|
|
20252
|
-
userFilters?: {
|
|
20253
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
20254
|
-
fields?: {
|
|
20255
|
-
field: string;
|
|
20256
|
-
label?: string | undefined;
|
|
20257
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
20258
|
-
options?: {
|
|
20259
|
-
value: string | number | boolean;
|
|
20260
|
-
label: string;
|
|
20261
|
-
color?: string | undefined;
|
|
20262
|
-
}[] | undefined;
|
|
20263
|
-
showCount?: boolean | undefined;
|
|
20264
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
20265
|
-
}[] | undefined;
|
|
20266
|
-
tabs?: {
|
|
20267
|
-
name: string;
|
|
20268
|
-
pinned: boolean;
|
|
20269
|
-
isDefault: boolean;
|
|
20270
|
-
visible: boolean;
|
|
20271
|
-
label?: string | undefined;
|
|
20272
|
-
icon?: string | undefined;
|
|
20273
|
-
view?: string | undefined;
|
|
20274
|
-
filter?: {
|
|
20275
|
-
field: string;
|
|
20276
|
-
operator: string;
|
|
20277
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
20278
|
-
}[] | undefined;
|
|
20279
|
-
order?: number | undefined;
|
|
20280
|
-
}[] | undefined;
|
|
20281
|
-
showAllRecords?: boolean | undefined;
|
|
20101
|
+
tree?: {
|
|
20102
|
+
[x: string]: unknown;
|
|
20103
|
+
parentField?: string | undefined;
|
|
20104
|
+
labelField?: string | undefined;
|
|
20105
|
+
fields?: string[] | undefined;
|
|
20106
|
+
defaultExpandedDepth?: number | undefined;
|
|
20282
20107
|
} | undefined;
|
|
20108
|
+
inlineEdit?: boolean | undefined;
|
|
20109
|
+
virtualScroll?: boolean | undefined;
|
|
20283
20110
|
resizable?: boolean | undefined;
|
|
20284
|
-
striped?: boolean | undefined;
|
|
20285
|
-
bordered?: boolean | undefined;
|
|
20286
|
-
compactToolbar?: boolean | undefined;
|
|
20287
|
-
selection?: {
|
|
20288
|
-
type: "none" | "multiple" | "single";
|
|
20289
|
-
} | undefined;
|
|
20290
|
-
navigation?: {
|
|
20291
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
20292
|
-
preventNavigation: boolean;
|
|
20293
|
-
openNewTab: boolean;
|
|
20294
|
-
view?: string | undefined;
|
|
20295
|
-
width?: string | number | undefined;
|
|
20296
|
-
} | undefined;
|
|
20297
|
-
pagination?: {
|
|
20298
|
-
pageSize: number;
|
|
20299
|
-
pageSizeOptions?: number[] | undefined;
|
|
20300
|
-
} | undefined;
|
|
20301
20111
|
kanban?: {
|
|
20302
20112
|
groupByField: string;
|
|
20303
20113
|
columns: string[];
|
|
20304
20114
|
summarizeField?: string | undefined;
|
|
20305
20115
|
} | undefined;
|
|
20116
|
+
gallery?: {
|
|
20117
|
+
coverFit: "cover" | "contain";
|
|
20118
|
+
cardSize: "small" | "medium" | "large";
|
|
20119
|
+
coverField?: string | undefined;
|
|
20120
|
+
titleField?: string | undefined;
|
|
20121
|
+
visibleFields?: string[] | undefined;
|
|
20122
|
+
} | undefined;
|
|
20306
20123
|
calendar?: {
|
|
20307
20124
|
startDateField: string;
|
|
20308
20125
|
titleField: string;
|
|
20309
20126
|
endDateField?: string | undefined;
|
|
20310
20127
|
colorField?: string | undefined;
|
|
20311
20128
|
} | undefined;
|
|
20129
|
+
timeline?: {
|
|
20130
|
+
startDateField: string;
|
|
20131
|
+
titleField: string;
|
|
20132
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
20133
|
+
endDateField?: string | undefined;
|
|
20134
|
+
groupByField?: string | undefined;
|
|
20135
|
+
colorField?: string | undefined;
|
|
20136
|
+
} | undefined;
|
|
20312
20137
|
gantt?: {
|
|
20313
20138
|
[x: string]: unknown;
|
|
20314
20139
|
startDateField: string;
|
|
@@ -20340,40 +20165,40 @@ declare const SysJob: Omit<{
|
|
|
20340
20165
|
}[] | undefined;
|
|
20341
20166
|
autoZoomToFilter?: boolean | undefined;
|
|
20342
20167
|
} | undefined;
|
|
20343
|
-
gallery?: {
|
|
20344
|
-
coverFit: "cover" | "contain";
|
|
20345
|
-
cardSize: "small" | "medium" | "large";
|
|
20346
|
-
coverField?: string | undefined;
|
|
20347
|
-
titleField?: string | undefined;
|
|
20348
|
-
visibleFields?: string[] | undefined;
|
|
20349
|
-
} | undefined;
|
|
20350
|
-
timeline?: {
|
|
20351
|
-
startDateField: string;
|
|
20352
|
-
titleField: string;
|
|
20353
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
20354
|
-
endDateField?: string | undefined;
|
|
20355
|
-
groupByField?: string | undefined;
|
|
20356
|
-
colorField?: string | undefined;
|
|
20357
|
-
} | undefined;
|
|
20358
20168
|
chart?: {
|
|
20359
20169
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
20360
20170
|
dataset: string;
|
|
20361
20171
|
values: string[];
|
|
20362
20172
|
dimensions?: string[] | undefined;
|
|
20363
20173
|
} | undefined;
|
|
20364
|
-
|
|
20365
|
-
|
|
20366
|
-
|
|
20367
|
-
|
|
20368
|
-
|
|
20369
|
-
|
|
20174
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
20175
|
+
tabs?: {
|
|
20176
|
+
name: string;
|
|
20177
|
+
pinned: boolean;
|
|
20178
|
+
isDefault: boolean;
|
|
20179
|
+
visible: boolean;
|
|
20180
|
+
label?: string | undefined;
|
|
20181
|
+
icon?: string | undefined;
|
|
20182
|
+
view?: string | undefined;
|
|
20183
|
+
filter?: {
|
|
20184
|
+
field: string;
|
|
20185
|
+
operator: string;
|
|
20186
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
20187
|
+
}[] | undefined;
|
|
20188
|
+
order?: number | undefined;
|
|
20189
|
+
}[] | undefined;
|
|
20190
|
+
searchableFields?: string[] | undefined;
|
|
20191
|
+
filterableFields?: string[] | undefined;
|
|
20192
|
+
striped?: boolean | undefined;
|
|
20193
|
+
bordered?: boolean | undefined;
|
|
20194
|
+
compactToolbar?: boolean | undefined;
|
|
20195
|
+
selection?: {
|
|
20196
|
+
type: "none" | "multiple" | "single";
|
|
20370
20197
|
} | undefined;
|
|
20371
|
-
|
|
20372
|
-
|
|
20373
|
-
|
|
20374
|
-
lockedBy?: string | undefined;
|
|
20198
|
+
pagination?: {
|
|
20199
|
+
pageSize: number;
|
|
20200
|
+
pageSizeOptions?: number[] | undefined;
|
|
20375
20201
|
} | undefined;
|
|
20376
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
20377
20202
|
grouping?: {
|
|
20378
20203
|
fields: {
|
|
20379
20204
|
field: string;
|
|
@@ -20390,7 +20215,6 @@ declare const SysJob: Omit<{
|
|
|
20390
20215
|
rowActions?: string[] | undefined;
|
|
20391
20216
|
bulkActions?: string[] | undefined;
|
|
20392
20217
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
20393
|
-
virtualScroll?: boolean | undefined;
|
|
20394
20218
|
conditionalFormatting?: {
|
|
20395
20219
|
condition: {
|
|
20396
20220
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -20411,7 +20235,6 @@ declare const SysJob: Omit<{
|
|
|
20411
20235
|
};
|
|
20412
20236
|
style: Record<string, string>;
|
|
20413
20237
|
}[] | undefined;
|
|
20414
|
-
inlineEdit?: boolean | undefined;
|
|
20415
20238
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
20416
20239
|
userActions?: {
|
|
20417
20240
|
sort: boolean;
|
|
@@ -20424,23 +20247,8 @@ declare const SysJob: Omit<{
|
|
|
20424
20247
|
} | undefined;
|
|
20425
20248
|
appearance?: {
|
|
20426
20249
|
showDescription: boolean;
|
|
20427
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
20250
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
20428
20251
|
} | undefined;
|
|
20429
|
-
tabs?: {
|
|
20430
|
-
name: string;
|
|
20431
|
-
pinned: boolean;
|
|
20432
|
-
isDefault: boolean;
|
|
20433
|
-
visible: boolean;
|
|
20434
|
-
label?: string | undefined;
|
|
20435
|
-
icon?: string | undefined;
|
|
20436
|
-
view?: string | undefined;
|
|
20437
|
-
filter?: {
|
|
20438
|
-
field: string;
|
|
20439
|
-
operator: string;
|
|
20440
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
20441
|
-
}[] | undefined;
|
|
20442
|
-
order?: number | undefined;
|
|
20443
|
-
}[] | undefined;
|
|
20444
20252
|
addRecord?: {
|
|
20445
20253
|
enabled: boolean;
|
|
20446
20254
|
position: "top" | "bottom" | "both";
|
|
@@ -20454,31 +20262,6 @@ declare const SysJob: Omit<{
|
|
|
20454
20262
|
message?: string | undefined;
|
|
20455
20263
|
icon?: string | undefined;
|
|
20456
20264
|
} | undefined;
|
|
20457
|
-
aria?: {
|
|
20458
|
-
ariaLabel?: string | undefined;
|
|
20459
|
-
ariaDescribedBy?: string | undefined;
|
|
20460
|
-
role?: string | undefined;
|
|
20461
|
-
} | undefined;
|
|
20462
|
-
responsive?: {
|
|
20463
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
20464
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
20465
|
-
columns?: {
|
|
20466
|
-
xs?: number | undefined;
|
|
20467
|
-
sm?: number | undefined;
|
|
20468
|
-
md?: number | undefined;
|
|
20469
|
-
lg?: number | undefined;
|
|
20470
|
-
xl?: number | undefined;
|
|
20471
|
-
'2xl'?: number | undefined;
|
|
20472
|
-
} | undefined;
|
|
20473
|
-
order?: {
|
|
20474
|
-
xs?: number | undefined;
|
|
20475
|
-
sm?: number | undefined;
|
|
20476
|
-
md?: number | undefined;
|
|
20477
|
-
lg?: number | undefined;
|
|
20478
|
-
xl?: number | undefined;
|
|
20479
|
-
'2xl'?: number | undefined;
|
|
20480
|
-
} | undefined;
|
|
20481
|
-
} | undefined;
|
|
20482
20265
|
performance?: {
|
|
20483
20266
|
lazyLoad?: boolean | undefined;
|
|
20484
20267
|
virtualScroll?: {
|
|
@@ -20681,7 +20464,7 @@ declare const SysJob: Omit<{
|
|
|
20681
20464
|
readonly inlineTitle?: string | undefined;
|
|
20682
20465
|
readonly inlineColumns?: any[] | undefined;
|
|
20683
20466
|
readonly inlineAmountField?: string | undefined;
|
|
20684
|
-
readonly relatedList?: boolean | undefined;
|
|
20467
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20685
20468
|
readonly relatedListTitle?: string | undefined;
|
|
20686
20469
|
readonly relatedListColumns?: any[] | undefined;
|
|
20687
20470
|
readonly displayField?: string | undefined;
|
|
@@ -20855,7 +20638,7 @@ declare const SysJob: Omit<{
|
|
|
20855
20638
|
readonly inlineTitle?: string | undefined;
|
|
20856
20639
|
readonly inlineColumns?: any[] | undefined;
|
|
20857
20640
|
readonly inlineAmountField?: string | undefined;
|
|
20858
|
-
readonly relatedList?: boolean | undefined;
|
|
20641
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
20859
20642
|
readonly relatedListTitle?: string | undefined;
|
|
20860
20643
|
readonly relatedListColumns?: any[] | undefined;
|
|
20861
20644
|
readonly displayField?: string | undefined;
|
|
@@ -21029,7 +20812,7 @@ declare const SysJob: Omit<{
|
|
|
21029
20812
|
readonly inlineTitle?: string | undefined;
|
|
21030
20813
|
readonly inlineColumns?: any[] | undefined;
|
|
21031
20814
|
readonly inlineAmountField?: string | undefined;
|
|
21032
|
-
readonly relatedList?: boolean | undefined;
|
|
20815
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21033
20816
|
readonly relatedListTitle?: string | undefined;
|
|
21034
20817
|
readonly relatedListColumns?: any[] | undefined;
|
|
21035
20818
|
readonly displayField?: string | undefined;
|
|
@@ -21203,7 +20986,7 @@ declare const SysJob: Omit<{
|
|
|
21203
20986
|
readonly inlineTitle?: string | undefined;
|
|
21204
20987
|
readonly inlineColumns?: any[] | undefined;
|
|
21205
20988
|
readonly inlineAmountField?: string | undefined;
|
|
21206
|
-
readonly relatedList?: boolean | undefined;
|
|
20989
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21207
20990
|
readonly relatedListTitle?: string | undefined;
|
|
21208
20991
|
readonly relatedListColumns?: any[] | undefined;
|
|
21209
20992
|
readonly displayField?: string | undefined;
|
|
@@ -21377,7 +21160,7 @@ declare const SysJob: Omit<{
|
|
|
21377
21160
|
readonly inlineTitle?: string | undefined;
|
|
21378
21161
|
readonly inlineColumns?: any[] | undefined;
|
|
21379
21162
|
readonly inlineAmountField?: string | undefined;
|
|
21380
|
-
readonly relatedList?: boolean | undefined;
|
|
21163
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21381
21164
|
readonly relatedListTitle?: string | undefined;
|
|
21382
21165
|
readonly relatedListColumns?: any[] | undefined;
|
|
21383
21166
|
readonly displayField?: string | undefined;
|
|
@@ -21551,7 +21334,7 @@ declare const SysJob: Omit<{
|
|
|
21551
21334
|
readonly inlineTitle?: string | undefined;
|
|
21552
21335
|
readonly inlineColumns?: any[] | undefined;
|
|
21553
21336
|
readonly inlineAmountField?: string | undefined;
|
|
21554
|
-
readonly relatedList?: boolean | undefined;
|
|
21337
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21555
21338
|
readonly relatedListTitle?: string | undefined;
|
|
21556
21339
|
readonly relatedListColumns?: any[] | undefined;
|
|
21557
21340
|
readonly displayField?: string | undefined;
|
|
@@ -21725,7 +21508,7 @@ declare const SysJob: Omit<{
|
|
|
21725
21508
|
readonly inlineTitle?: string | undefined;
|
|
21726
21509
|
readonly inlineColumns?: any[] | undefined;
|
|
21727
21510
|
readonly inlineAmountField?: string | undefined;
|
|
21728
|
-
readonly relatedList?: boolean | undefined;
|
|
21511
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21729
21512
|
readonly relatedListTitle?: string | undefined;
|
|
21730
21513
|
readonly relatedListColumns?: any[] | undefined;
|
|
21731
21514
|
readonly displayField?: string | undefined;
|
|
@@ -21899,7 +21682,7 @@ declare const SysJob: Omit<{
|
|
|
21899
21682
|
readonly inlineTitle?: string | undefined;
|
|
21900
21683
|
readonly inlineColumns?: any[] | undefined;
|
|
21901
21684
|
readonly inlineAmountField?: string | undefined;
|
|
21902
|
-
readonly relatedList?: boolean | undefined;
|
|
21685
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
21903
21686
|
readonly relatedListTitle?: string | undefined;
|
|
21904
21687
|
readonly relatedListColumns?: any[] | undefined;
|
|
21905
21688
|
readonly displayField?: string | undefined;
|
|
@@ -22073,7 +21856,7 @@ declare const SysJob: Omit<{
|
|
|
22073
21856
|
readonly inlineTitle?: string | undefined;
|
|
22074
21857
|
readonly inlineColumns?: any[] | undefined;
|
|
22075
21858
|
readonly inlineAmountField?: string | undefined;
|
|
22076
|
-
readonly relatedList?: boolean | undefined;
|
|
21859
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22077
21860
|
readonly relatedListTitle?: string | undefined;
|
|
22078
21861
|
readonly relatedListColumns?: any[] | undefined;
|
|
22079
21862
|
readonly displayField?: string | undefined;
|
|
@@ -22247,7 +22030,7 @@ declare const SysJob: Omit<{
|
|
|
22247
22030
|
readonly inlineTitle?: string | undefined;
|
|
22248
22031
|
readonly inlineColumns?: any[] | undefined;
|
|
22249
22032
|
readonly inlineAmountField?: string | undefined;
|
|
22250
|
-
readonly relatedList?: boolean | undefined;
|
|
22033
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22251
22034
|
readonly relatedListTitle?: string | undefined;
|
|
22252
22035
|
readonly relatedListColumns?: any[] | undefined;
|
|
22253
22036
|
readonly displayField?: string | undefined;
|
|
@@ -22421,7 +22204,7 @@ declare const SysJob: Omit<{
|
|
|
22421
22204
|
readonly inlineTitle?: string | undefined;
|
|
22422
22205
|
readonly inlineColumns?: any[] | undefined;
|
|
22423
22206
|
readonly inlineAmountField?: string | undefined;
|
|
22424
|
-
readonly relatedList?: boolean | undefined;
|
|
22207
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22425
22208
|
readonly relatedListTitle?: string | undefined;
|
|
22426
22209
|
readonly relatedListColumns?: any[] | undefined;
|
|
22427
22210
|
readonly displayField?: string | undefined;
|
|
@@ -22595,7 +22378,7 @@ declare const SysJob: Omit<{
|
|
|
22595
22378
|
readonly inlineTitle?: string | undefined;
|
|
22596
22379
|
readonly inlineColumns?: any[] | undefined;
|
|
22597
22380
|
readonly inlineAmountField?: string | undefined;
|
|
22598
|
-
readonly relatedList?: boolean | undefined;
|
|
22381
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22599
22382
|
readonly relatedListTitle?: string | undefined;
|
|
22600
22383
|
readonly relatedListColumns?: any[] | undefined;
|
|
22601
22384
|
readonly displayField?: string | undefined;
|
|
@@ -22769,7 +22552,7 @@ declare const SysJob: Omit<{
|
|
|
22769
22552
|
readonly inlineTitle?: string | undefined;
|
|
22770
22553
|
readonly inlineColumns?: any[] | undefined;
|
|
22771
22554
|
readonly inlineAmountField?: string | undefined;
|
|
22772
|
-
readonly relatedList?: boolean | undefined;
|
|
22555
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
22773
22556
|
readonly relatedListTitle?: string | undefined;
|
|
22774
22557
|
readonly relatedListColumns?: any[] | undefined;
|
|
22775
22558
|
readonly displayField?: string | undefined;
|
|
@@ -22968,7 +22751,7 @@ declare const SysJobRun: Omit<{
|
|
|
22968
22751
|
inlineTitle?: string | undefined;
|
|
22969
22752
|
inlineColumns?: any[] | undefined;
|
|
22970
22753
|
inlineAmountField?: string | undefined;
|
|
22971
|
-
relatedList?: boolean | undefined;
|
|
22754
|
+
relatedList?: boolean | "primary" | undefined;
|
|
22972
22755
|
relatedListTitle?: string | undefined;
|
|
22973
22756
|
relatedListColumns?: any[] | undefined;
|
|
22974
22757
|
displayField?: string | undefined;
|
|
@@ -23249,10 +23032,9 @@ declare const SysJobRun: Omit<{
|
|
|
23249
23032
|
} | undefined;
|
|
23250
23033
|
} | undefined;
|
|
23251
23034
|
highlightFields?: string[] | undefined;
|
|
23252
|
-
compactLayout?: string[] | undefined;
|
|
23253
23035
|
stageField?: string | false | undefined;
|
|
23254
23036
|
listViews?: Record<string, {
|
|
23255
|
-
type: "tree" | "grid" | "kanban" | "
|
|
23037
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
23256
23038
|
columns: string[] | {
|
|
23257
23039
|
field: string;
|
|
23258
23040
|
label?: string | undefined;
|
|
@@ -23268,8 +23050,55 @@ declare const SysJobRun: Omit<{
|
|
|
23268
23050
|
link?: boolean | undefined;
|
|
23269
23051
|
action?: string | undefined;
|
|
23270
23052
|
}[];
|
|
23271
|
-
|
|
23053
|
+
sort?: string | {
|
|
23054
|
+
field: string;
|
|
23055
|
+
order: "asc" | "desc";
|
|
23056
|
+
}[] | undefined;
|
|
23057
|
+
filter?: {
|
|
23058
|
+
field: string;
|
|
23059
|
+
operator: string;
|
|
23060
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
23061
|
+
}[] | undefined;
|
|
23062
|
+
description?: string | undefined;
|
|
23272
23063
|
label?: string | undefined;
|
|
23064
|
+
name?: string | undefined;
|
|
23065
|
+
responsive?: {
|
|
23066
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
23067
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
23068
|
+
columns?: {
|
|
23069
|
+
xs?: number | undefined;
|
|
23070
|
+
sm?: number | undefined;
|
|
23071
|
+
md?: number | undefined;
|
|
23072
|
+
lg?: number | undefined;
|
|
23073
|
+
xl?: number | undefined;
|
|
23074
|
+
'2xl'?: number | undefined;
|
|
23075
|
+
} | undefined;
|
|
23076
|
+
order?: {
|
|
23077
|
+
xs?: number | undefined;
|
|
23078
|
+
sm?: number | undefined;
|
|
23079
|
+
md?: number | undefined;
|
|
23080
|
+
lg?: number | undefined;
|
|
23081
|
+
xl?: number | undefined;
|
|
23082
|
+
'2xl'?: number | undefined;
|
|
23083
|
+
} | undefined;
|
|
23084
|
+
} | undefined;
|
|
23085
|
+
navigation?: {
|
|
23086
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
23087
|
+
preventNavigation: boolean;
|
|
23088
|
+
openNewTab: boolean;
|
|
23089
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
23090
|
+
view?: string | undefined;
|
|
23091
|
+
width?: string | number | undefined;
|
|
23092
|
+
} | undefined;
|
|
23093
|
+
sharing?: {
|
|
23094
|
+
type: "personal" | "collaborative";
|
|
23095
|
+
lockedBy?: string | undefined;
|
|
23096
|
+
} | undefined;
|
|
23097
|
+
aria?: {
|
|
23098
|
+
ariaLabel?: string | undefined;
|
|
23099
|
+
ariaDescribedBy?: string | undefined;
|
|
23100
|
+
role?: string | undefined;
|
|
23101
|
+
} | undefined;
|
|
23273
23102
|
data?: {
|
|
23274
23103
|
provider: "object";
|
|
23275
23104
|
object: string;
|
|
@@ -23297,77 +23126,42 @@ declare const SysJobRun: Omit<{
|
|
|
23297
23126
|
schemaId: string;
|
|
23298
23127
|
schema?: Record<string, unknown> | undefined;
|
|
23299
23128
|
} | undefined;
|
|
23300
|
-
|
|
23301
|
-
|
|
23302
|
-
|
|
23303
|
-
|
|
23304
|
-
|
|
23305
|
-
|
|
23306
|
-
field: string;
|
|
23307
|
-
order: "asc" | "desc";
|
|
23308
|
-
}[] | undefined;
|
|
23309
|
-
searchableFields?: string[] | undefined;
|
|
23310
|
-
filterableFields?: string[] | undefined;
|
|
23311
|
-
userFilters?: {
|
|
23312
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
23313
|
-
fields?: {
|
|
23314
|
-
field: string;
|
|
23315
|
-
label?: string | undefined;
|
|
23316
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
23317
|
-
options?: {
|
|
23318
|
-
value: string | number | boolean;
|
|
23319
|
-
label: string;
|
|
23320
|
-
color?: string | undefined;
|
|
23321
|
-
}[] | undefined;
|
|
23322
|
-
showCount?: boolean | undefined;
|
|
23323
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
23324
|
-
}[] | undefined;
|
|
23325
|
-
tabs?: {
|
|
23326
|
-
name: string;
|
|
23327
|
-
pinned: boolean;
|
|
23328
|
-
isDefault: boolean;
|
|
23329
|
-
visible: boolean;
|
|
23330
|
-
label?: string | undefined;
|
|
23331
|
-
icon?: string | undefined;
|
|
23332
|
-
view?: string | undefined;
|
|
23333
|
-
filter?: {
|
|
23334
|
-
field: string;
|
|
23335
|
-
operator: string;
|
|
23336
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
23337
|
-
}[] | undefined;
|
|
23338
|
-
order?: number | undefined;
|
|
23339
|
-
}[] | undefined;
|
|
23340
|
-
showAllRecords?: boolean | undefined;
|
|
23129
|
+
tree?: {
|
|
23130
|
+
[x: string]: unknown;
|
|
23131
|
+
parentField?: string | undefined;
|
|
23132
|
+
labelField?: string | undefined;
|
|
23133
|
+
fields?: string[] | undefined;
|
|
23134
|
+
defaultExpandedDepth?: number | undefined;
|
|
23341
23135
|
} | undefined;
|
|
23136
|
+
inlineEdit?: boolean | undefined;
|
|
23137
|
+
virtualScroll?: boolean | undefined;
|
|
23342
23138
|
resizable?: boolean | undefined;
|
|
23343
|
-
striped?: boolean | undefined;
|
|
23344
|
-
bordered?: boolean | undefined;
|
|
23345
|
-
compactToolbar?: boolean | undefined;
|
|
23346
|
-
selection?: {
|
|
23347
|
-
type: "none" | "multiple" | "single";
|
|
23348
|
-
} | undefined;
|
|
23349
|
-
navigation?: {
|
|
23350
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
23351
|
-
preventNavigation: boolean;
|
|
23352
|
-
openNewTab: boolean;
|
|
23353
|
-
view?: string | undefined;
|
|
23354
|
-
width?: string | number | undefined;
|
|
23355
|
-
} | undefined;
|
|
23356
|
-
pagination?: {
|
|
23357
|
-
pageSize: number;
|
|
23358
|
-
pageSizeOptions?: number[] | undefined;
|
|
23359
|
-
} | undefined;
|
|
23360
23139
|
kanban?: {
|
|
23361
23140
|
groupByField: string;
|
|
23362
23141
|
columns: string[];
|
|
23363
23142
|
summarizeField?: string | undefined;
|
|
23364
23143
|
} | undefined;
|
|
23144
|
+
gallery?: {
|
|
23145
|
+
coverFit: "cover" | "contain";
|
|
23146
|
+
cardSize: "small" | "medium" | "large";
|
|
23147
|
+
coverField?: string | undefined;
|
|
23148
|
+
titleField?: string | undefined;
|
|
23149
|
+
visibleFields?: string[] | undefined;
|
|
23150
|
+
} | undefined;
|
|
23365
23151
|
calendar?: {
|
|
23366
23152
|
startDateField: string;
|
|
23367
23153
|
titleField: string;
|
|
23368
23154
|
endDateField?: string | undefined;
|
|
23369
23155
|
colorField?: string | undefined;
|
|
23370
23156
|
} | undefined;
|
|
23157
|
+
timeline?: {
|
|
23158
|
+
startDateField: string;
|
|
23159
|
+
titleField: string;
|
|
23160
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
23161
|
+
endDateField?: string | undefined;
|
|
23162
|
+
groupByField?: string | undefined;
|
|
23163
|
+
colorField?: string | undefined;
|
|
23164
|
+
} | undefined;
|
|
23371
23165
|
gantt?: {
|
|
23372
23166
|
[x: string]: unknown;
|
|
23373
23167
|
startDateField: string;
|
|
@@ -23399,40 +23193,40 @@ declare const SysJobRun: Omit<{
|
|
|
23399
23193
|
}[] | undefined;
|
|
23400
23194
|
autoZoomToFilter?: boolean | undefined;
|
|
23401
23195
|
} | undefined;
|
|
23402
|
-
gallery?: {
|
|
23403
|
-
coverFit: "cover" | "contain";
|
|
23404
|
-
cardSize: "small" | "medium" | "large";
|
|
23405
|
-
coverField?: string | undefined;
|
|
23406
|
-
titleField?: string | undefined;
|
|
23407
|
-
visibleFields?: string[] | undefined;
|
|
23408
|
-
} | undefined;
|
|
23409
|
-
timeline?: {
|
|
23410
|
-
startDateField: string;
|
|
23411
|
-
titleField: string;
|
|
23412
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
23413
|
-
endDateField?: string | undefined;
|
|
23414
|
-
groupByField?: string | undefined;
|
|
23415
|
-
colorField?: string | undefined;
|
|
23416
|
-
} | undefined;
|
|
23417
23196
|
chart?: {
|
|
23418
23197
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
23419
23198
|
dataset: string;
|
|
23420
23199
|
values: string[];
|
|
23421
23200
|
dimensions?: string[] | undefined;
|
|
23422
23201
|
} | undefined;
|
|
23423
|
-
|
|
23424
|
-
|
|
23425
|
-
|
|
23426
|
-
|
|
23427
|
-
|
|
23428
|
-
|
|
23202
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
23203
|
+
tabs?: {
|
|
23204
|
+
name: string;
|
|
23205
|
+
pinned: boolean;
|
|
23206
|
+
isDefault: boolean;
|
|
23207
|
+
visible: boolean;
|
|
23208
|
+
label?: string | undefined;
|
|
23209
|
+
icon?: string | undefined;
|
|
23210
|
+
view?: string | undefined;
|
|
23211
|
+
filter?: {
|
|
23212
|
+
field: string;
|
|
23213
|
+
operator: string;
|
|
23214
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
23215
|
+
}[] | undefined;
|
|
23216
|
+
order?: number | undefined;
|
|
23217
|
+
}[] | undefined;
|
|
23218
|
+
searchableFields?: string[] | undefined;
|
|
23219
|
+
filterableFields?: string[] | undefined;
|
|
23220
|
+
striped?: boolean | undefined;
|
|
23221
|
+
bordered?: boolean | undefined;
|
|
23222
|
+
compactToolbar?: boolean | undefined;
|
|
23223
|
+
selection?: {
|
|
23224
|
+
type: "none" | "multiple" | "single";
|
|
23429
23225
|
} | undefined;
|
|
23430
|
-
|
|
23431
|
-
|
|
23432
|
-
|
|
23433
|
-
lockedBy?: string | undefined;
|
|
23226
|
+
pagination?: {
|
|
23227
|
+
pageSize: number;
|
|
23228
|
+
pageSizeOptions?: number[] | undefined;
|
|
23434
23229
|
} | undefined;
|
|
23435
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
23436
23230
|
grouping?: {
|
|
23437
23231
|
fields: {
|
|
23438
23232
|
field: string;
|
|
@@ -23449,7 +23243,6 @@ declare const SysJobRun: Omit<{
|
|
|
23449
23243
|
rowActions?: string[] | undefined;
|
|
23450
23244
|
bulkActions?: string[] | undefined;
|
|
23451
23245
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
23452
|
-
virtualScroll?: boolean | undefined;
|
|
23453
23246
|
conditionalFormatting?: {
|
|
23454
23247
|
condition: {
|
|
23455
23248
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -23470,7 +23263,6 @@ declare const SysJobRun: Omit<{
|
|
|
23470
23263
|
};
|
|
23471
23264
|
style: Record<string, string>;
|
|
23472
23265
|
}[] | undefined;
|
|
23473
|
-
inlineEdit?: boolean | undefined;
|
|
23474
23266
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
23475
23267
|
userActions?: {
|
|
23476
23268
|
sort: boolean;
|
|
@@ -23483,23 +23275,8 @@ declare const SysJobRun: Omit<{
|
|
|
23483
23275
|
} | undefined;
|
|
23484
23276
|
appearance?: {
|
|
23485
23277
|
showDescription: boolean;
|
|
23486
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
23278
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
23487
23279
|
} | undefined;
|
|
23488
|
-
tabs?: {
|
|
23489
|
-
name: string;
|
|
23490
|
-
pinned: boolean;
|
|
23491
|
-
isDefault: boolean;
|
|
23492
|
-
visible: boolean;
|
|
23493
|
-
label?: string | undefined;
|
|
23494
|
-
icon?: string | undefined;
|
|
23495
|
-
view?: string | undefined;
|
|
23496
|
-
filter?: {
|
|
23497
|
-
field: string;
|
|
23498
|
-
operator: string;
|
|
23499
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
23500
|
-
}[] | undefined;
|
|
23501
|
-
order?: number | undefined;
|
|
23502
|
-
}[] | undefined;
|
|
23503
23280
|
addRecord?: {
|
|
23504
23281
|
enabled: boolean;
|
|
23505
23282
|
position: "top" | "bottom" | "both";
|
|
@@ -23513,31 +23290,6 @@ declare const SysJobRun: Omit<{
|
|
|
23513
23290
|
message?: string | undefined;
|
|
23514
23291
|
icon?: string | undefined;
|
|
23515
23292
|
} | undefined;
|
|
23516
|
-
aria?: {
|
|
23517
|
-
ariaLabel?: string | undefined;
|
|
23518
|
-
ariaDescribedBy?: string | undefined;
|
|
23519
|
-
role?: string | undefined;
|
|
23520
|
-
} | undefined;
|
|
23521
|
-
responsive?: {
|
|
23522
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
23523
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
23524
|
-
columns?: {
|
|
23525
|
-
xs?: number | undefined;
|
|
23526
|
-
sm?: number | undefined;
|
|
23527
|
-
md?: number | undefined;
|
|
23528
|
-
lg?: number | undefined;
|
|
23529
|
-
xl?: number | undefined;
|
|
23530
|
-
'2xl'?: number | undefined;
|
|
23531
|
-
} | undefined;
|
|
23532
|
-
order?: {
|
|
23533
|
-
xs?: number | undefined;
|
|
23534
|
-
sm?: number | undefined;
|
|
23535
|
-
md?: number | undefined;
|
|
23536
|
-
lg?: number | undefined;
|
|
23537
|
-
xl?: number | undefined;
|
|
23538
|
-
'2xl'?: number | undefined;
|
|
23539
|
-
} | undefined;
|
|
23540
|
-
} | undefined;
|
|
23541
23293
|
performance?: {
|
|
23542
23294
|
lazyLoad?: boolean | undefined;
|
|
23543
23295
|
virtualScroll?: {
|
|
@@ -23740,7 +23492,7 @@ declare const SysJobRun: Omit<{
|
|
|
23740
23492
|
readonly inlineTitle?: string | undefined;
|
|
23741
23493
|
readonly inlineColumns?: any[] | undefined;
|
|
23742
23494
|
readonly inlineAmountField?: string | undefined;
|
|
23743
|
-
readonly relatedList?: boolean | undefined;
|
|
23495
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
23744
23496
|
readonly relatedListTitle?: string | undefined;
|
|
23745
23497
|
readonly relatedListColumns?: any[] | undefined;
|
|
23746
23498
|
readonly displayField?: string | undefined;
|
|
@@ -23914,7 +23666,7 @@ declare const SysJobRun: Omit<{
|
|
|
23914
23666
|
readonly inlineTitle?: string | undefined;
|
|
23915
23667
|
readonly inlineColumns?: any[] | undefined;
|
|
23916
23668
|
readonly inlineAmountField?: string | undefined;
|
|
23917
|
-
readonly relatedList?: boolean | undefined;
|
|
23669
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
23918
23670
|
readonly relatedListTitle?: string | undefined;
|
|
23919
23671
|
readonly relatedListColumns?: any[] | undefined;
|
|
23920
23672
|
readonly displayField?: string | undefined;
|
|
@@ -24088,7 +23840,7 @@ declare const SysJobRun: Omit<{
|
|
|
24088
23840
|
readonly inlineTitle?: string | undefined;
|
|
24089
23841
|
readonly inlineColumns?: any[] | undefined;
|
|
24090
23842
|
readonly inlineAmountField?: string | undefined;
|
|
24091
|
-
readonly relatedList?: boolean | undefined;
|
|
23843
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24092
23844
|
readonly relatedListTitle?: string | undefined;
|
|
24093
23845
|
readonly relatedListColumns?: any[] | undefined;
|
|
24094
23846
|
readonly displayField?: string | undefined;
|
|
@@ -24262,7 +24014,7 @@ declare const SysJobRun: Omit<{
|
|
|
24262
24014
|
readonly inlineTitle?: string | undefined;
|
|
24263
24015
|
readonly inlineColumns?: any[] | undefined;
|
|
24264
24016
|
readonly inlineAmountField?: string | undefined;
|
|
24265
|
-
readonly relatedList?: boolean | undefined;
|
|
24017
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24266
24018
|
readonly relatedListTitle?: string | undefined;
|
|
24267
24019
|
readonly relatedListColumns?: any[] | undefined;
|
|
24268
24020
|
readonly displayField?: string | undefined;
|
|
@@ -24436,7 +24188,7 @@ declare const SysJobRun: Omit<{
|
|
|
24436
24188
|
readonly inlineTitle?: string | undefined;
|
|
24437
24189
|
readonly inlineColumns?: any[] | undefined;
|
|
24438
24190
|
readonly inlineAmountField?: string | undefined;
|
|
24439
|
-
readonly relatedList?: boolean | undefined;
|
|
24191
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24440
24192
|
readonly relatedListTitle?: string | undefined;
|
|
24441
24193
|
readonly relatedListColumns?: any[] | undefined;
|
|
24442
24194
|
readonly displayField?: string | undefined;
|
|
@@ -24610,7 +24362,7 @@ declare const SysJobRun: Omit<{
|
|
|
24610
24362
|
readonly inlineTitle?: string | undefined;
|
|
24611
24363
|
readonly inlineColumns?: any[] | undefined;
|
|
24612
24364
|
readonly inlineAmountField?: string | undefined;
|
|
24613
|
-
readonly relatedList?: boolean | undefined;
|
|
24365
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24614
24366
|
readonly relatedListTitle?: string | undefined;
|
|
24615
24367
|
readonly relatedListColumns?: any[] | undefined;
|
|
24616
24368
|
readonly displayField?: string | undefined;
|
|
@@ -24784,7 +24536,7 @@ declare const SysJobRun: Omit<{
|
|
|
24784
24536
|
readonly inlineTitle?: string | undefined;
|
|
24785
24537
|
readonly inlineColumns?: any[] | undefined;
|
|
24786
24538
|
readonly inlineAmountField?: string | undefined;
|
|
24787
|
-
readonly relatedList?: boolean | undefined;
|
|
24539
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24788
24540
|
readonly relatedListTitle?: string | undefined;
|
|
24789
24541
|
readonly relatedListColumns?: any[] | undefined;
|
|
24790
24542
|
readonly displayField?: string | undefined;
|
|
@@ -24958,7 +24710,7 @@ declare const SysJobRun: Omit<{
|
|
|
24958
24710
|
readonly inlineTitle?: string | undefined;
|
|
24959
24711
|
readonly inlineColumns?: any[] | undefined;
|
|
24960
24712
|
readonly inlineAmountField?: string | undefined;
|
|
24961
|
-
readonly relatedList?: boolean | undefined;
|
|
24713
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
24962
24714
|
readonly relatedListTitle?: string | undefined;
|
|
24963
24715
|
readonly relatedListColumns?: any[] | undefined;
|
|
24964
24716
|
readonly displayField?: string | undefined;
|
|
@@ -25132,7 +24884,7 @@ declare const SysJobRun: Omit<{
|
|
|
25132
24884
|
readonly inlineTitle?: string | undefined;
|
|
25133
24885
|
readonly inlineColumns?: any[] | undefined;
|
|
25134
24886
|
readonly inlineAmountField?: string | undefined;
|
|
25135
|
-
readonly relatedList?: boolean | undefined;
|
|
24887
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
25136
24888
|
readonly relatedListTitle?: string | undefined;
|
|
25137
24889
|
readonly relatedListColumns?: any[] | undefined;
|
|
25138
24890
|
readonly displayField?: string | undefined;
|
|
@@ -25306,7 +25058,7 @@ declare const SysJobRun: Omit<{
|
|
|
25306
25058
|
readonly inlineTitle?: string | undefined;
|
|
25307
25059
|
readonly inlineColumns?: any[] | undefined;
|
|
25308
25060
|
readonly inlineAmountField?: string | undefined;
|
|
25309
|
-
readonly relatedList?: boolean | undefined;
|
|
25061
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
25310
25062
|
readonly relatedListTitle?: string | undefined;
|
|
25311
25063
|
readonly relatedListColumns?: any[] | undefined;
|
|
25312
25064
|
readonly displayField?: string | undefined;
|
|
@@ -25513,7 +25265,7 @@ declare const SysJobQueue: Omit<{
|
|
|
25513
25265
|
inlineTitle?: string | undefined;
|
|
25514
25266
|
inlineColumns?: any[] | undefined;
|
|
25515
25267
|
inlineAmountField?: string | undefined;
|
|
25516
|
-
relatedList?: boolean | undefined;
|
|
25268
|
+
relatedList?: boolean | "primary" | undefined;
|
|
25517
25269
|
relatedListTitle?: string | undefined;
|
|
25518
25270
|
relatedListColumns?: any[] | undefined;
|
|
25519
25271
|
displayField?: string | undefined;
|
|
@@ -25794,10 +25546,9 @@ declare const SysJobQueue: Omit<{
|
|
|
25794
25546
|
} | undefined;
|
|
25795
25547
|
} | undefined;
|
|
25796
25548
|
highlightFields?: string[] | undefined;
|
|
25797
|
-
compactLayout?: string[] | undefined;
|
|
25798
25549
|
stageField?: string | false | undefined;
|
|
25799
25550
|
listViews?: Record<string, {
|
|
25800
|
-
type: "tree" | "grid" | "kanban" | "
|
|
25551
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
25801
25552
|
columns: string[] | {
|
|
25802
25553
|
field: string;
|
|
25803
25554
|
label?: string | undefined;
|
|
@@ -25813,8 +25564,55 @@ declare const SysJobQueue: Omit<{
|
|
|
25813
25564
|
link?: boolean | undefined;
|
|
25814
25565
|
action?: string | undefined;
|
|
25815
25566
|
}[];
|
|
25816
|
-
|
|
25567
|
+
sort?: string | {
|
|
25568
|
+
field: string;
|
|
25569
|
+
order: "asc" | "desc";
|
|
25570
|
+
}[] | undefined;
|
|
25571
|
+
filter?: {
|
|
25572
|
+
field: string;
|
|
25573
|
+
operator: string;
|
|
25574
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
25575
|
+
}[] | undefined;
|
|
25576
|
+
description?: string | undefined;
|
|
25817
25577
|
label?: string | undefined;
|
|
25578
|
+
name?: string | undefined;
|
|
25579
|
+
responsive?: {
|
|
25580
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
25581
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
25582
|
+
columns?: {
|
|
25583
|
+
xs?: number | undefined;
|
|
25584
|
+
sm?: number | undefined;
|
|
25585
|
+
md?: number | undefined;
|
|
25586
|
+
lg?: number | undefined;
|
|
25587
|
+
xl?: number | undefined;
|
|
25588
|
+
'2xl'?: number | undefined;
|
|
25589
|
+
} | undefined;
|
|
25590
|
+
order?: {
|
|
25591
|
+
xs?: number | undefined;
|
|
25592
|
+
sm?: number | undefined;
|
|
25593
|
+
md?: number | undefined;
|
|
25594
|
+
lg?: number | undefined;
|
|
25595
|
+
xl?: number | undefined;
|
|
25596
|
+
'2xl'?: number | undefined;
|
|
25597
|
+
} | undefined;
|
|
25598
|
+
} | undefined;
|
|
25599
|
+
navigation?: {
|
|
25600
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
25601
|
+
preventNavigation: boolean;
|
|
25602
|
+
openNewTab: boolean;
|
|
25603
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
25604
|
+
view?: string | undefined;
|
|
25605
|
+
width?: string | number | undefined;
|
|
25606
|
+
} | undefined;
|
|
25607
|
+
sharing?: {
|
|
25608
|
+
type: "personal" | "collaborative";
|
|
25609
|
+
lockedBy?: string | undefined;
|
|
25610
|
+
} | undefined;
|
|
25611
|
+
aria?: {
|
|
25612
|
+
ariaLabel?: string | undefined;
|
|
25613
|
+
ariaDescribedBy?: string | undefined;
|
|
25614
|
+
role?: string | undefined;
|
|
25615
|
+
} | undefined;
|
|
25818
25616
|
data?: {
|
|
25819
25617
|
provider: "object";
|
|
25820
25618
|
object: string;
|
|
@@ -25842,77 +25640,42 @@ declare const SysJobQueue: Omit<{
|
|
|
25842
25640
|
schemaId: string;
|
|
25843
25641
|
schema?: Record<string, unknown> | undefined;
|
|
25844
25642
|
} | undefined;
|
|
25845
|
-
|
|
25846
|
-
|
|
25847
|
-
|
|
25848
|
-
|
|
25849
|
-
|
|
25850
|
-
|
|
25851
|
-
field: string;
|
|
25852
|
-
order: "asc" | "desc";
|
|
25853
|
-
}[] | undefined;
|
|
25854
|
-
searchableFields?: string[] | undefined;
|
|
25855
|
-
filterableFields?: string[] | undefined;
|
|
25856
|
-
userFilters?: {
|
|
25857
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
25858
|
-
fields?: {
|
|
25859
|
-
field: string;
|
|
25860
|
-
label?: string | undefined;
|
|
25861
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
25862
|
-
options?: {
|
|
25863
|
-
value: string | number | boolean;
|
|
25864
|
-
label: string;
|
|
25865
|
-
color?: string | undefined;
|
|
25866
|
-
}[] | undefined;
|
|
25867
|
-
showCount?: boolean | undefined;
|
|
25868
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
25869
|
-
}[] | undefined;
|
|
25870
|
-
tabs?: {
|
|
25871
|
-
name: string;
|
|
25872
|
-
pinned: boolean;
|
|
25873
|
-
isDefault: boolean;
|
|
25874
|
-
visible: boolean;
|
|
25875
|
-
label?: string | undefined;
|
|
25876
|
-
icon?: string | undefined;
|
|
25877
|
-
view?: string | undefined;
|
|
25878
|
-
filter?: {
|
|
25879
|
-
field: string;
|
|
25880
|
-
operator: string;
|
|
25881
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
25882
|
-
}[] | undefined;
|
|
25883
|
-
order?: number | undefined;
|
|
25884
|
-
}[] | undefined;
|
|
25885
|
-
showAllRecords?: boolean | undefined;
|
|
25643
|
+
tree?: {
|
|
25644
|
+
[x: string]: unknown;
|
|
25645
|
+
parentField?: string | undefined;
|
|
25646
|
+
labelField?: string | undefined;
|
|
25647
|
+
fields?: string[] | undefined;
|
|
25648
|
+
defaultExpandedDepth?: number | undefined;
|
|
25886
25649
|
} | undefined;
|
|
25650
|
+
inlineEdit?: boolean | undefined;
|
|
25651
|
+
virtualScroll?: boolean | undefined;
|
|
25887
25652
|
resizable?: boolean | undefined;
|
|
25888
|
-
striped?: boolean | undefined;
|
|
25889
|
-
bordered?: boolean | undefined;
|
|
25890
|
-
compactToolbar?: boolean | undefined;
|
|
25891
|
-
selection?: {
|
|
25892
|
-
type: "none" | "multiple" | "single";
|
|
25893
|
-
} | undefined;
|
|
25894
|
-
navigation?: {
|
|
25895
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
25896
|
-
preventNavigation: boolean;
|
|
25897
|
-
openNewTab: boolean;
|
|
25898
|
-
view?: string | undefined;
|
|
25899
|
-
width?: string | number | undefined;
|
|
25900
|
-
} | undefined;
|
|
25901
|
-
pagination?: {
|
|
25902
|
-
pageSize: number;
|
|
25903
|
-
pageSizeOptions?: number[] | undefined;
|
|
25904
|
-
} | undefined;
|
|
25905
25653
|
kanban?: {
|
|
25906
25654
|
groupByField: string;
|
|
25907
25655
|
columns: string[];
|
|
25908
25656
|
summarizeField?: string | undefined;
|
|
25909
25657
|
} | undefined;
|
|
25658
|
+
gallery?: {
|
|
25659
|
+
coverFit: "cover" | "contain";
|
|
25660
|
+
cardSize: "small" | "medium" | "large";
|
|
25661
|
+
coverField?: string | undefined;
|
|
25662
|
+
titleField?: string | undefined;
|
|
25663
|
+
visibleFields?: string[] | undefined;
|
|
25664
|
+
} | undefined;
|
|
25910
25665
|
calendar?: {
|
|
25911
25666
|
startDateField: string;
|
|
25912
25667
|
titleField: string;
|
|
25913
25668
|
endDateField?: string | undefined;
|
|
25914
25669
|
colorField?: string | undefined;
|
|
25915
25670
|
} | undefined;
|
|
25671
|
+
timeline?: {
|
|
25672
|
+
startDateField: string;
|
|
25673
|
+
titleField: string;
|
|
25674
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
25675
|
+
endDateField?: string | undefined;
|
|
25676
|
+
groupByField?: string | undefined;
|
|
25677
|
+
colorField?: string | undefined;
|
|
25678
|
+
} | undefined;
|
|
25916
25679
|
gantt?: {
|
|
25917
25680
|
[x: string]: unknown;
|
|
25918
25681
|
startDateField: string;
|
|
@@ -25944,40 +25707,40 @@ declare const SysJobQueue: Omit<{
|
|
|
25944
25707
|
}[] | undefined;
|
|
25945
25708
|
autoZoomToFilter?: boolean | undefined;
|
|
25946
25709
|
} | undefined;
|
|
25947
|
-
gallery?: {
|
|
25948
|
-
coverFit: "cover" | "contain";
|
|
25949
|
-
cardSize: "small" | "medium" | "large";
|
|
25950
|
-
coverField?: string | undefined;
|
|
25951
|
-
titleField?: string | undefined;
|
|
25952
|
-
visibleFields?: string[] | undefined;
|
|
25953
|
-
} | undefined;
|
|
25954
|
-
timeline?: {
|
|
25955
|
-
startDateField: string;
|
|
25956
|
-
titleField: string;
|
|
25957
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
25958
|
-
endDateField?: string | undefined;
|
|
25959
|
-
groupByField?: string | undefined;
|
|
25960
|
-
colorField?: string | undefined;
|
|
25961
|
-
} | undefined;
|
|
25962
25710
|
chart?: {
|
|
25963
25711
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
25964
25712
|
dataset: string;
|
|
25965
25713
|
values: string[];
|
|
25966
25714
|
dimensions?: string[] | undefined;
|
|
25967
25715
|
} | undefined;
|
|
25968
|
-
|
|
25969
|
-
|
|
25970
|
-
|
|
25971
|
-
|
|
25972
|
-
|
|
25973
|
-
|
|
25716
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
25717
|
+
tabs?: {
|
|
25718
|
+
name: string;
|
|
25719
|
+
pinned: boolean;
|
|
25720
|
+
isDefault: boolean;
|
|
25721
|
+
visible: boolean;
|
|
25722
|
+
label?: string | undefined;
|
|
25723
|
+
icon?: string | undefined;
|
|
25724
|
+
view?: string | undefined;
|
|
25725
|
+
filter?: {
|
|
25726
|
+
field: string;
|
|
25727
|
+
operator: string;
|
|
25728
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
25729
|
+
}[] | undefined;
|
|
25730
|
+
order?: number | undefined;
|
|
25731
|
+
}[] | undefined;
|
|
25732
|
+
searchableFields?: string[] | undefined;
|
|
25733
|
+
filterableFields?: string[] | undefined;
|
|
25734
|
+
striped?: boolean | undefined;
|
|
25735
|
+
bordered?: boolean | undefined;
|
|
25736
|
+
compactToolbar?: boolean | undefined;
|
|
25737
|
+
selection?: {
|
|
25738
|
+
type: "none" | "multiple" | "single";
|
|
25974
25739
|
} | undefined;
|
|
25975
|
-
|
|
25976
|
-
|
|
25977
|
-
|
|
25978
|
-
lockedBy?: string | undefined;
|
|
25740
|
+
pagination?: {
|
|
25741
|
+
pageSize: number;
|
|
25742
|
+
pageSizeOptions?: number[] | undefined;
|
|
25979
25743
|
} | undefined;
|
|
25980
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
25981
25744
|
grouping?: {
|
|
25982
25745
|
fields: {
|
|
25983
25746
|
field: string;
|
|
@@ -25994,7 +25757,6 @@ declare const SysJobQueue: Omit<{
|
|
|
25994
25757
|
rowActions?: string[] | undefined;
|
|
25995
25758
|
bulkActions?: string[] | undefined;
|
|
25996
25759
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
25997
|
-
virtualScroll?: boolean | undefined;
|
|
25998
25760
|
conditionalFormatting?: {
|
|
25999
25761
|
condition: {
|
|
26000
25762
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -26015,7 +25777,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26015
25777
|
};
|
|
26016
25778
|
style: Record<string, string>;
|
|
26017
25779
|
}[] | undefined;
|
|
26018
|
-
inlineEdit?: boolean | undefined;
|
|
26019
25780
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
26020
25781
|
userActions?: {
|
|
26021
25782
|
sort: boolean;
|
|
@@ -26028,23 +25789,8 @@ declare const SysJobQueue: Omit<{
|
|
|
26028
25789
|
} | undefined;
|
|
26029
25790
|
appearance?: {
|
|
26030
25791
|
showDescription: boolean;
|
|
26031
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
25792
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
26032
25793
|
} | undefined;
|
|
26033
|
-
tabs?: {
|
|
26034
|
-
name: string;
|
|
26035
|
-
pinned: boolean;
|
|
26036
|
-
isDefault: boolean;
|
|
26037
|
-
visible: boolean;
|
|
26038
|
-
label?: string | undefined;
|
|
26039
|
-
icon?: string | undefined;
|
|
26040
|
-
view?: string | undefined;
|
|
26041
|
-
filter?: {
|
|
26042
|
-
field: string;
|
|
26043
|
-
operator: string;
|
|
26044
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
26045
|
-
}[] | undefined;
|
|
26046
|
-
order?: number | undefined;
|
|
26047
|
-
}[] | undefined;
|
|
26048
25794
|
addRecord?: {
|
|
26049
25795
|
enabled: boolean;
|
|
26050
25796
|
position: "top" | "bottom" | "both";
|
|
@@ -26058,31 +25804,6 @@ declare const SysJobQueue: Omit<{
|
|
|
26058
25804
|
message?: string | undefined;
|
|
26059
25805
|
icon?: string | undefined;
|
|
26060
25806
|
} | undefined;
|
|
26061
|
-
aria?: {
|
|
26062
|
-
ariaLabel?: string | undefined;
|
|
26063
|
-
ariaDescribedBy?: string | undefined;
|
|
26064
|
-
role?: string | undefined;
|
|
26065
|
-
} | undefined;
|
|
26066
|
-
responsive?: {
|
|
26067
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
26068
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
26069
|
-
columns?: {
|
|
26070
|
-
xs?: number | undefined;
|
|
26071
|
-
sm?: number | undefined;
|
|
26072
|
-
md?: number | undefined;
|
|
26073
|
-
lg?: number | undefined;
|
|
26074
|
-
xl?: number | undefined;
|
|
26075
|
-
'2xl'?: number | undefined;
|
|
26076
|
-
} | undefined;
|
|
26077
|
-
order?: {
|
|
26078
|
-
xs?: number | undefined;
|
|
26079
|
-
sm?: number | undefined;
|
|
26080
|
-
md?: number | undefined;
|
|
26081
|
-
lg?: number | undefined;
|
|
26082
|
-
xl?: number | undefined;
|
|
26083
|
-
'2xl'?: number | undefined;
|
|
26084
|
-
} | undefined;
|
|
26085
|
-
} | undefined;
|
|
26086
25807
|
performance?: {
|
|
26087
25808
|
lazyLoad?: boolean | undefined;
|
|
26088
25809
|
virtualScroll?: {
|
|
@@ -26285,7 +26006,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26285
26006
|
readonly inlineTitle?: string | undefined;
|
|
26286
26007
|
readonly inlineColumns?: any[] | undefined;
|
|
26287
26008
|
readonly inlineAmountField?: string | undefined;
|
|
26288
|
-
readonly relatedList?: boolean | undefined;
|
|
26009
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26289
26010
|
readonly relatedListTitle?: string | undefined;
|
|
26290
26011
|
readonly relatedListColumns?: any[] | undefined;
|
|
26291
26012
|
readonly displayField?: string | undefined;
|
|
@@ -26459,7 +26180,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26459
26180
|
readonly inlineTitle?: string | undefined;
|
|
26460
26181
|
readonly inlineColumns?: any[] | undefined;
|
|
26461
26182
|
readonly inlineAmountField?: string | undefined;
|
|
26462
|
-
readonly relatedList?: boolean | undefined;
|
|
26183
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26463
26184
|
readonly relatedListTitle?: string | undefined;
|
|
26464
26185
|
readonly relatedListColumns?: any[] | undefined;
|
|
26465
26186
|
readonly displayField?: string | undefined;
|
|
@@ -26633,7 +26354,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26633
26354
|
readonly inlineTitle?: string | undefined;
|
|
26634
26355
|
readonly inlineColumns?: any[] | undefined;
|
|
26635
26356
|
readonly inlineAmountField?: string | undefined;
|
|
26636
|
-
readonly relatedList?: boolean | undefined;
|
|
26357
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26637
26358
|
readonly relatedListTitle?: string | undefined;
|
|
26638
26359
|
readonly relatedListColumns?: any[] | undefined;
|
|
26639
26360
|
readonly displayField?: string | undefined;
|
|
@@ -26807,7 +26528,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26807
26528
|
readonly inlineTitle?: string | undefined;
|
|
26808
26529
|
readonly inlineColumns?: any[] | undefined;
|
|
26809
26530
|
readonly inlineAmountField?: string | undefined;
|
|
26810
|
-
readonly relatedList?: boolean | undefined;
|
|
26531
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26811
26532
|
readonly relatedListTitle?: string | undefined;
|
|
26812
26533
|
readonly relatedListColumns?: any[] | undefined;
|
|
26813
26534
|
readonly displayField?: string | undefined;
|
|
@@ -26981,7 +26702,7 @@ declare const SysJobQueue: Omit<{
|
|
|
26981
26702
|
readonly inlineTitle?: string | undefined;
|
|
26982
26703
|
readonly inlineColumns?: any[] | undefined;
|
|
26983
26704
|
readonly inlineAmountField?: string | undefined;
|
|
26984
|
-
readonly relatedList?: boolean | undefined;
|
|
26705
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
26985
26706
|
readonly relatedListTitle?: string | undefined;
|
|
26986
26707
|
readonly relatedListColumns?: any[] | undefined;
|
|
26987
26708
|
readonly displayField?: string | undefined;
|
|
@@ -27155,7 +26876,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27155
26876
|
readonly inlineTitle?: string | undefined;
|
|
27156
26877
|
readonly inlineColumns?: any[] | undefined;
|
|
27157
26878
|
readonly inlineAmountField?: string | undefined;
|
|
27158
|
-
readonly relatedList?: boolean | undefined;
|
|
26879
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27159
26880
|
readonly relatedListTitle?: string | undefined;
|
|
27160
26881
|
readonly relatedListColumns?: any[] | undefined;
|
|
27161
26882
|
readonly displayField?: string | undefined;
|
|
@@ -27329,7 +27050,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27329
27050
|
readonly inlineTitle?: string | undefined;
|
|
27330
27051
|
readonly inlineColumns?: any[] | undefined;
|
|
27331
27052
|
readonly inlineAmountField?: string | undefined;
|
|
27332
|
-
readonly relatedList?: boolean | undefined;
|
|
27053
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27333
27054
|
readonly relatedListTitle?: string | undefined;
|
|
27334
27055
|
readonly relatedListColumns?: any[] | undefined;
|
|
27335
27056
|
readonly displayField?: string | undefined;
|
|
@@ -27503,7 +27224,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27503
27224
|
readonly inlineTitle?: string | undefined;
|
|
27504
27225
|
readonly inlineColumns?: any[] | undefined;
|
|
27505
27226
|
readonly inlineAmountField?: string | undefined;
|
|
27506
|
-
readonly relatedList?: boolean | undefined;
|
|
27227
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27507
27228
|
readonly relatedListTitle?: string | undefined;
|
|
27508
27229
|
readonly relatedListColumns?: any[] | undefined;
|
|
27509
27230
|
readonly displayField?: string | undefined;
|
|
@@ -27677,7 +27398,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27677
27398
|
readonly inlineTitle?: string | undefined;
|
|
27678
27399
|
readonly inlineColumns?: any[] | undefined;
|
|
27679
27400
|
readonly inlineAmountField?: string | undefined;
|
|
27680
|
-
readonly relatedList?: boolean | undefined;
|
|
27401
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27681
27402
|
readonly relatedListTitle?: string | undefined;
|
|
27682
27403
|
readonly relatedListColumns?: any[] | undefined;
|
|
27683
27404
|
readonly displayField?: string | undefined;
|
|
@@ -27851,7 +27572,7 @@ declare const SysJobQueue: Omit<{
|
|
|
27851
27572
|
readonly inlineTitle?: string | undefined;
|
|
27852
27573
|
readonly inlineColumns?: any[] | undefined;
|
|
27853
27574
|
readonly inlineAmountField?: string | undefined;
|
|
27854
|
-
readonly relatedList?: boolean | undefined;
|
|
27575
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
27855
27576
|
readonly relatedListTitle?: string | undefined;
|
|
27856
27577
|
readonly relatedListColumns?: any[] | undefined;
|
|
27857
27578
|
readonly displayField?: string | undefined;
|
|
@@ -28025,7 +27746,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28025
27746
|
readonly inlineTitle?: string | undefined;
|
|
28026
27747
|
readonly inlineColumns?: any[] | undefined;
|
|
28027
27748
|
readonly inlineAmountField?: string | undefined;
|
|
28028
|
-
readonly relatedList?: boolean | undefined;
|
|
27749
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28029
27750
|
readonly relatedListTitle?: string | undefined;
|
|
28030
27751
|
readonly relatedListColumns?: any[] | undefined;
|
|
28031
27752
|
readonly displayField?: string | undefined;
|
|
@@ -28199,7 +27920,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28199
27920
|
readonly inlineTitle?: string | undefined;
|
|
28200
27921
|
readonly inlineColumns?: any[] | undefined;
|
|
28201
27922
|
readonly inlineAmountField?: string | undefined;
|
|
28202
|
-
readonly relatedList?: boolean | undefined;
|
|
27923
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28203
27924
|
readonly relatedListTitle?: string | undefined;
|
|
28204
27925
|
readonly relatedListColumns?: any[] | undefined;
|
|
28205
27926
|
readonly displayField?: string | undefined;
|
|
@@ -28373,7 +28094,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28373
28094
|
readonly inlineTitle?: string | undefined;
|
|
28374
28095
|
readonly inlineColumns?: any[] | undefined;
|
|
28375
28096
|
readonly inlineAmountField?: string | undefined;
|
|
28376
|
-
readonly relatedList?: boolean | undefined;
|
|
28097
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28377
28098
|
readonly relatedListTitle?: string | undefined;
|
|
28378
28099
|
readonly relatedListColumns?: any[] | undefined;
|
|
28379
28100
|
readonly displayField?: string | undefined;
|
|
@@ -28547,7 +28268,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28547
28268
|
readonly inlineTitle?: string | undefined;
|
|
28548
28269
|
readonly inlineColumns?: any[] | undefined;
|
|
28549
28270
|
readonly inlineAmountField?: string | undefined;
|
|
28550
|
-
readonly relatedList?: boolean | undefined;
|
|
28271
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28551
28272
|
readonly relatedListTitle?: string | undefined;
|
|
28552
28273
|
readonly relatedListColumns?: any[] | undefined;
|
|
28553
28274
|
readonly displayField?: string | undefined;
|
|
@@ -28721,7 +28442,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28721
28442
|
readonly inlineTitle?: string | undefined;
|
|
28722
28443
|
readonly inlineColumns?: any[] | undefined;
|
|
28723
28444
|
readonly inlineAmountField?: string | undefined;
|
|
28724
|
-
readonly relatedList?: boolean | undefined;
|
|
28445
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28725
28446
|
readonly relatedListTitle?: string | undefined;
|
|
28726
28447
|
readonly relatedListColumns?: any[] | undefined;
|
|
28727
28448
|
readonly displayField?: string | undefined;
|
|
@@ -28895,7 +28616,7 @@ declare const SysJobQueue: Omit<{
|
|
|
28895
28616
|
readonly inlineTitle?: string | undefined;
|
|
28896
28617
|
readonly inlineColumns?: any[] | undefined;
|
|
28897
28618
|
readonly inlineAmountField?: string | undefined;
|
|
28898
|
-
readonly relatedList?: boolean | undefined;
|
|
28619
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
28899
28620
|
readonly relatedListTitle?: string | undefined;
|
|
28900
28621
|
readonly relatedListColumns?: any[] | undefined;
|
|
28901
28622
|
readonly displayField?: string | undefined;
|
|
@@ -29069,7 +28790,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29069
28790
|
readonly inlineTitle?: string | undefined;
|
|
29070
28791
|
readonly inlineColumns?: any[] | undefined;
|
|
29071
28792
|
readonly inlineAmountField?: string | undefined;
|
|
29072
|
-
readonly relatedList?: boolean | undefined;
|
|
28793
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
29073
28794
|
readonly relatedListTitle?: string | undefined;
|
|
29074
28795
|
readonly relatedListColumns?: any[] | undefined;
|
|
29075
28796
|
readonly displayField?: string | undefined;
|
|
@@ -29243,7 +28964,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29243
28964
|
readonly inlineTitle?: string | undefined;
|
|
29244
28965
|
readonly inlineColumns?: any[] | undefined;
|
|
29245
28966
|
readonly inlineAmountField?: string | undefined;
|
|
29246
|
-
readonly relatedList?: boolean | undefined;
|
|
28967
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
29247
28968
|
readonly relatedListTitle?: string | undefined;
|
|
29248
28969
|
readonly relatedListColumns?: any[] | undefined;
|
|
29249
28970
|
readonly displayField?: string | undefined;
|
|
@@ -29417,7 +29138,7 @@ declare const SysJobQueue: Omit<{
|
|
|
29417
29138
|
readonly inlineTitle?: string | undefined;
|
|
29418
29139
|
readonly inlineColumns?: any[] | undefined;
|
|
29419
29140
|
readonly inlineAmountField?: string | undefined;
|
|
29420
|
-
readonly relatedList?: boolean | undefined;
|
|
29141
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
29421
29142
|
readonly relatedListTitle?: string | undefined;
|
|
29422
29143
|
readonly relatedListColumns?: any[] | undefined;
|
|
29423
29144
|
readonly displayField?: string | undefined;
|
|
@@ -29621,7 +29342,7 @@ declare const SysImportJob: Omit<{
|
|
|
29621
29342
|
inlineTitle?: string | undefined;
|
|
29622
29343
|
inlineColumns?: any[] | undefined;
|
|
29623
29344
|
inlineAmountField?: string | undefined;
|
|
29624
|
-
relatedList?: boolean | undefined;
|
|
29345
|
+
relatedList?: boolean | "primary" | undefined;
|
|
29625
29346
|
relatedListTitle?: string | undefined;
|
|
29626
29347
|
relatedListColumns?: any[] | undefined;
|
|
29627
29348
|
displayField?: string | undefined;
|
|
@@ -29902,10 +29623,9 @@ declare const SysImportJob: Omit<{
|
|
|
29902
29623
|
} | undefined;
|
|
29903
29624
|
} | undefined;
|
|
29904
29625
|
highlightFields?: string[] | undefined;
|
|
29905
|
-
compactLayout?: string[] | undefined;
|
|
29906
29626
|
stageField?: string | false | undefined;
|
|
29907
29627
|
listViews?: Record<string, {
|
|
29908
|
-
type: "tree" | "grid" | "kanban" | "
|
|
29628
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
29909
29629
|
columns: string[] | {
|
|
29910
29630
|
field: string;
|
|
29911
29631
|
label?: string | undefined;
|
|
@@ -29921,8 +29641,55 @@ declare const SysImportJob: Omit<{
|
|
|
29921
29641
|
link?: boolean | undefined;
|
|
29922
29642
|
action?: string | undefined;
|
|
29923
29643
|
}[];
|
|
29924
|
-
|
|
29644
|
+
sort?: string | {
|
|
29645
|
+
field: string;
|
|
29646
|
+
order: "asc" | "desc";
|
|
29647
|
+
}[] | undefined;
|
|
29648
|
+
filter?: {
|
|
29649
|
+
field: string;
|
|
29650
|
+
operator: string;
|
|
29651
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
29652
|
+
}[] | undefined;
|
|
29653
|
+
description?: string | undefined;
|
|
29925
29654
|
label?: string | undefined;
|
|
29655
|
+
name?: string | undefined;
|
|
29656
|
+
responsive?: {
|
|
29657
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
29658
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
29659
|
+
columns?: {
|
|
29660
|
+
xs?: number | undefined;
|
|
29661
|
+
sm?: number | undefined;
|
|
29662
|
+
md?: number | undefined;
|
|
29663
|
+
lg?: number | undefined;
|
|
29664
|
+
xl?: number | undefined;
|
|
29665
|
+
'2xl'?: number | undefined;
|
|
29666
|
+
} | undefined;
|
|
29667
|
+
order?: {
|
|
29668
|
+
xs?: number | undefined;
|
|
29669
|
+
sm?: number | undefined;
|
|
29670
|
+
md?: number | undefined;
|
|
29671
|
+
lg?: number | undefined;
|
|
29672
|
+
xl?: number | undefined;
|
|
29673
|
+
'2xl'?: number | undefined;
|
|
29674
|
+
} | undefined;
|
|
29675
|
+
} | undefined;
|
|
29676
|
+
navigation?: {
|
|
29677
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
29678
|
+
preventNavigation: boolean;
|
|
29679
|
+
openNewTab: boolean;
|
|
29680
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
29681
|
+
view?: string | undefined;
|
|
29682
|
+
width?: string | number | undefined;
|
|
29683
|
+
} | undefined;
|
|
29684
|
+
sharing?: {
|
|
29685
|
+
type: "personal" | "collaborative";
|
|
29686
|
+
lockedBy?: string | undefined;
|
|
29687
|
+
} | undefined;
|
|
29688
|
+
aria?: {
|
|
29689
|
+
ariaLabel?: string | undefined;
|
|
29690
|
+
ariaDescribedBy?: string | undefined;
|
|
29691
|
+
role?: string | undefined;
|
|
29692
|
+
} | undefined;
|
|
29926
29693
|
data?: {
|
|
29927
29694
|
provider: "object";
|
|
29928
29695
|
object: string;
|
|
@@ -29950,77 +29717,42 @@ declare const SysImportJob: Omit<{
|
|
|
29950
29717
|
schemaId: string;
|
|
29951
29718
|
schema?: Record<string, unknown> | undefined;
|
|
29952
29719
|
} | undefined;
|
|
29953
|
-
|
|
29954
|
-
|
|
29955
|
-
|
|
29956
|
-
|
|
29957
|
-
|
|
29958
|
-
|
|
29959
|
-
field: string;
|
|
29960
|
-
order: "asc" | "desc";
|
|
29961
|
-
}[] | undefined;
|
|
29962
|
-
searchableFields?: string[] | undefined;
|
|
29963
|
-
filterableFields?: string[] | undefined;
|
|
29964
|
-
userFilters?: {
|
|
29965
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
29966
|
-
fields?: {
|
|
29967
|
-
field: string;
|
|
29968
|
-
label?: string | undefined;
|
|
29969
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
29970
|
-
options?: {
|
|
29971
|
-
value: string | number | boolean;
|
|
29972
|
-
label: string;
|
|
29973
|
-
color?: string | undefined;
|
|
29974
|
-
}[] | undefined;
|
|
29975
|
-
showCount?: boolean | undefined;
|
|
29976
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
29977
|
-
}[] | undefined;
|
|
29978
|
-
tabs?: {
|
|
29979
|
-
name: string;
|
|
29980
|
-
pinned: boolean;
|
|
29981
|
-
isDefault: boolean;
|
|
29982
|
-
visible: boolean;
|
|
29983
|
-
label?: string | undefined;
|
|
29984
|
-
icon?: string | undefined;
|
|
29985
|
-
view?: string | undefined;
|
|
29986
|
-
filter?: {
|
|
29987
|
-
field: string;
|
|
29988
|
-
operator: string;
|
|
29989
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
29990
|
-
}[] | undefined;
|
|
29991
|
-
order?: number | undefined;
|
|
29992
|
-
}[] | undefined;
|
|
29993
|
-
showAllRecords?: boolean | undefined;
|
|
29720
|
+
tree?: {
|
|
29721
|
+
[x: string]: unknown;
|
|
29722
|
+
parentField?: string | undefined;
|
|
29723
|
+
labelField?: string | undefined;
|
|
29724
|
+
fields?: string[] | undefined;
|
|
29725
|
+
defaultExpandedDepth?: number | undefined;
|
|
29994
29726
|
} | undefined;
|
|
29727
|
+
inlineEdit?: boolean | undefined;
|
|
29728
|
+
virtualScroll?: boolean | undefined;
|
|
29995
29729
|
resizable?: boolean | undefined;
|
|
29996
|
-
striped?: boolean | undefined;
|
|
29997
|
-
bordered?: boolean | undefined;
|
|
29998
|
-
compactToolbar?: boolean | undefined;
|
|
29999
|
-
selection?: {
|
|
30000
|
-
type: "none" | "multiple" | "single";
|
|
30001
|
-
} | undefined;
|
|
30002
|
-
navigation?: {
|
|
30003
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
30004
|
-
preventNavigation: boolean;
|
|
30005
|
-
openNewTab: boolean;
|
|
30006
|
-
view?: string | undefined;
|
|
30007
|
-
width?: string | number | undefined;
|
|
30008
|
-
} | undefined;
|
|
30009
|
-
pagination?: {
|
|
30010
|
-
pageSize: number;
|
|
30011
|
-
pageSizeOptions?: number[] | undefined;
|
|
30012
|
-
} | undefined;
|
|
30013
29730
|
kanban?: {
|
|
30014
29731
|
groupByField: string;
|
|
30015
29732
|
columns: string[];
|
|
30016
29733
|
summarizeField?: string | undefined;
|
|
30017
29734
|
} | undefined;
|
|
29735
|
+
gallery?: {
|
|
29736
|
+
coverFit: "cover" | "contain";
|
|
29737
|
+
cardSize: "small" | "medium" | "large";
|
|
29738
|
+
coverField?: string | undefined;
|
|
29739
|
+
titleField?: string | undefined;
|
|
29740
|
+
visibleFields?: string[] | undefined;
|
|
29741
|
+
} | undefined;
|
|
30018
29742
|
calendar?: {
|
|
30019
29743
|
startDateField: string;
|
|
30020
29744
|
titleField: string;
|
|
30021
29745
|
endDateField?: string | undefined;
|
|
30022
29746
|
colorField?: string | undefined;
|
|
30023
29747
|
} | undefined;
|
|
29748
|
+
timeline?: {
|
|
29749
|
+
startDateField: string;
|
|
29750
|
+
titleField: string;
|
|
29751
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
29752
|
+
endDateField?: string | undefined;
|
|
29753
|
+
groupByField?: string | undefined;
|
|
29754
|
+
colorField?: string | undefined;
|
|
29755
|
+
} | undefined;
|
|
30024
29756
|
gantt?: {
|
|
30025
29757
|
[x: string]: unknown;
|
|
30026
29758
|
startDateField: string;
|
|
@@ -30052,40 +29784,40 @@ declare const SysImportJob: Omit<{
|
|
|
30052
29784
|
}[] | undefined;
|
|
30053
29785
|
autoZoomToFilter?: boolean | undefined;
|
|
30054
29786
|
} | undefined;
|
|
30055
|
-
gallery?: {
|
|
30056
|
-
coverFit: "cover" | "contain";
|
|
30057
|
-
cardSize: "small" | "medium" | "large";
|
|
30058
|
-
coverField?: string | undefined;
|
|
30059
|
-
titleField?: string | undefined;
|
|
30060
|
-
visibleFields?: string[] | undefined;
|
|
30061
|
-
} | undefined;
|
|
30062
|
-
timeline?: {
|
|
30063
|
-
startDateField: string;
|
|
30064
|
-
titleField: string;
|
|
30065
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
30066
|
-
endDateField?: string | undefined;
|
|
30067
|
-
groupByField?: string | undefined;
|
|
30068
|
-
colorField?: string | undefined;
|
|
30069
|
-
} | undefined;
|
|
30070
29787
|
chart?: {
|
|
30071
29788
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
30072
29789
|
dataset: string;
|
|
30073
29790
|
values: string[];
|
|
30074
29791
|
dimensions?: string[] | undefined;
|
|
30075
29792
|
} | undefined;
|
|
30076
|
-
|
|
30077
|
-
|
|
30078
|
-
|
|
30079
|
-
|
|
30080
|
-
|
|
30081
|
-
|
|
29793
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
29794
|
+
tabs?: {
|
|
29795
|
+
name: string;
|
|
29796
|
+
pinned: boolean;
|
|
29797
|
+
isDefault: boolean;
|
|
29798
|
+
visible: boolean;
|
|
29799
|
+
label?: string | undefined;
|
|
29800
|
+
icon?: string | undefined;
|
|
29801
|
+
view?: string | undefined;
|
|
29802
|
+
filter?: {
|
|
29803
|
+
field: string;
|
|
29804
|
+
operator: string;
|
|
29805
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
29806
|
+
}[] | undefined;
|
|
29807
|
+
order?: number | undefined;
|
|
29808
|
+
}[] | undefined;
|
|
29809
|
+
searchableFields?: string[] | undefined;
|
|
29810
|
+
filterableFields?: string[] | undefined;
|
|
29811
|
+
striped?: boolean | undefined;
|
|
29812
|
+
bordered?: boolean | undefined;
|
|
29813
|
+
compactToolbar?: boolean | undefined;
|
|
29814
|
+
selection?: {
|
|
29815
|
+
type: "none" | "multiple" | "single";
|
|
30082
29816
|
} | undefined;
|
|
30083
|
-
|
|
30084
|
-
|
|
30085
|
-
|
|
30086
|
-
lockedBy?: string | undefined;
|
|
29817
|
+
pagination?: {
|
|
29818
|
+
pageSize: number;
|
|
29819
|
+
pageSizeOptions?: number[] | undefined;
|
|
30087
29820
|
} | undefined;
|
|
30088
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
30089
29821
|
grouping?: {
|
|
30090
29822
|
fields: {
|
|
30091
29823
|
field: string;
|
|
@@ -30102,7 +29834,6 @@ declare const SysImportJob: Omit<{
|
|
|
30102
29834
|
rowActions?: string[] | undefined;
|
|
30103
29835
|
bulkActions?: string[] | undefined;
|
|
30104
29836
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
30105
|
-
virtualScroll?: boolean | undefined;
|
|
30106
29837
|
conditionalFormatting?: {
|
|
30107
29838
|
condition: {
|
|
30108
29839
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -30123,7 +29854,6 @@ declare const SysImportJob: Omit<{
|
|
|
30123
29854
|
};
|
|
30124
29855
|
style: Record<string, string>;
|
|
30125
29856
|
}[] | undefined;
|
|
30126
|
-
inlineEdit?: boolean | undefined;
|
|
30127
29857
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
30128
29858
|
userActions?: {
|
|
30129
29859
|
sort: boolean;
|
|
@@ -30136,23 +29866,8 @@ declare const SysImportJob: Omit<{
|
|
|
30136
29866
|
} | undefined;
|
|
30137
29867
|
appearance?: {
|
|
30138
29868
|
showDescription: boolean;
|
|
30139
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
29869
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
30140
29870
|
} | undefined;
|
|
30141
|
-
tabs?: {
|
|
30142
|
-
name: string;
|
|
30143
|
-
pinned: boolean;
|
|
30144
|
-
isDefault: boolean;
|
|
30145
|
-
visible: boolean;
|
|
30146
|
-
label?: string | undefined;
|
|
30147
|
-
icon?: string | undefined;
|
|
30148
|
-
view?: string | undefined;
|
|
30149
|
-
filter?: {
|
|
30150
|
-
field: string;
|
|
30151
|
-
operator: string;
|
|
30152
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
30153
|
-
}[] | undefined;
|
|
30154
|
-
order?: number | undefined;
|
|
30155
|
-
}[] | undefined;
|
|
30156
29871
|
addRecord?: {
|
|
30157
29872
|
enabled: boolean;
|
|
30158
29873
|
position: "top" | "bottom" | "both";
|
|
@@ -30166,31 +29881,6 @@ declare const SysImportJob: Omit<{
|
|
|
30166
29881
|
message?: string | undefined;
|
|
30167
29882
|
icon?: string | undefined;
|
|
30168
29883
|
} | undefined;
|
|
30169
|
-
aria?: {
|
|
30170
|
-
ariaLabel?: string | undefined;
|
|
30171
|
-
ariaDescribedBy?: string | undefined;
|
|
30172
|
-
role?: string | undefined;
|
|
30173
|
-
} | undefined;
|
|
30174
|
-
responsive?: {
|
|
30175
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
30176
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
30177
|
-
columns?: {
|
|
30178
|
-
xs?: number | undefined;
|
|
30179
|
-
sm?: number | undefined;
|
|
30180
|
-
md?: number | undefined;
|
|
30181
|
-
lg?: number | undefined;
|
|
30182
|
-
xl?: number | undefined;
|
|
30183
|
-
'2xl'?: number | undefined;
|
|
30184
|
-
} | undefined;
|
|
30185
|
-
order?: {
|
|
30186
|
-
xs?: number | undefined;
|
|
30187
|
-
sm?: number | undefined;
|
|
30188
|
-
md?: number | undefined;
|
|
30189
|
-
lg?: number | undefined;
|
|
30190
|
-
xl?: number | undefined;
|
|
30191
|
-
'2xl'?: number | undefined;
|
|
30192
|
-
} | undefined;
|
|
30193
|
-
} | undefined;
|
|
30194
29884
|
performance?: {
|
|
30195
29885
|
lazyLoad?: boolean | undefined;
|
|
30196
29886
|
virtualScroll?: {
|
|
@@ -30393,7 +30083,7 @@ declare const SysImportJob: Omit<{
|
|
|
30393
30083
|
readonly inlineTitle?: string | undefined;
|
|
30394
30084
|
readonly inlineColumns?: any[] | undefined;
|
|
30395
30085
|
readonly inlineAmountField?: string | undefined;
|
|
30396
|
-
readonly relatedList?: boolean | undefined;
|
|
30086
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
30397
30087
|
readonly relatedListTitle?: string | undefined;
|
|
30398
30088
|
readonly relatedListColumns?: any[] | undefined;
|
|
30399
30089
|
readonly displayField?: string | undefined;
|
|
@@ -30567,7 +30257,7 @@ declare const SysImportJob: Omit<{
|
|
|
30567
30257
|
readonly inlineTitle?: string | undefined;
|
|
30568
30258
|
readonly inlineColumns?: any[] | undefined;
|
|
30569
30259
|
readonly inlineAmountField?: string | undefined;
|
|
30570
|
-
readonly relatedList?: boolean | undefined;
|
|
30260
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
30571
30261
|
readonly relatedListTitle?: string | undefined;
|
|
30572
30262
|
readonly relatedListColumns?: any[] | undefined;
|
|
30573
30263
|
readonly displayField?: string | undefined;
|
|
@@ -30741,7 +30431,7 @@ declare const SysImportJob: Omit<{
|
|
|
30741
30431
|
readonly inlineTitle?: string | undefined;
|
|
30742
30432
|
readonly inlineColumns?: any[] | undefined;
|
|
30743
30433
|
readonly inlineAmountField?: string | undefined;
|
|
30744
|
-
readonly relatedList?: boolean | undefined;
|
|
30434
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
30745
30435
|
readonly relatedListTitle?: string | undefined;
|
|
30746
30436
|
readonly relatedListColumns?: any[] | undefined;
|
|
30747
30437
|
readonly displayField?: string | undefined;
|
|
@@ -30915,7 +30605,7 @@ declare const SysImportJob: Omit<{
|
|
|
30915
30605
|
readonly inlineTitle?: string | undefined;
|
|
30916
30606
|
readonly inlineColumns?: any[] | undefined;
|
|
30917
30607
|
readonly inlineAmountField?: string | undefined;
|
|
30918
|
-
readonly relatedList?: boolean | undefined;
|
|
30608
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
30919
30609
|
readonly relatedListTitle?: string | undefined;
|
|
30920
30610
|
readonly relatedListColumns?: any[] | undefined;
|
|
30921
30611
|
readonly displayField?: string | undefined;
|
|
@@ -31089,7 +30779,7 @@ declare const SysImportJob: Omit<{
|
|
|
31089
30779
|
readonly inlineTitle?: string | undefined;
|
|
31090
30780
|
readonly inlineColumns?: any[] | undefined;
|
|
31091
30781
|
readonly inlineAmountField?: string | undefined;
|
|
31092
|
-
readonly relatedList?: boolean | undefined;
|
|
30782
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31093
30783
|
readonly relatedListTitle?: string | undefined;
|
|
31094
30784
|
readonly relatedListColumns?: any[] | undefined;
|
|
31095
30785
|
readonly displayField?: string | undefined;
|
|
@@ -31263,7 +30953,7 @@ declare const SysImportJob: Omit<{
|
|
|
31263
30953
|
readonly inlineTitle?: string | undefined;
|
|
31264
30954
|
readonly inlineColumns?: any[] | undefined;
|
|
31265
30955
|
readonly inlineAmountField?: string | undefined;
|
|
31266
|
-
readonly relatedList?: boolean | undefined;
|
|
30956
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31267
30957
|
readonly relatedListTitle?: string | undefined;
|
|
31268
30958
|
readonly relatedListColumns?: any[] | undefined;
|
|
31269
30959
|
readonly displayField?: string | undefined;
|
|
@@ -31437,7 +31127,7 @@ declare const SysImportJob: Omit<{
|
|
|
31437
31127
|
readonly inlineTitle?: string | undefined;
|
|
31438
31128
|
readonly inlineColumns?: any[] | undefined;
|
|
31439
31129
|
readonly inlineAmountField?: string | undefined;
|
|
31440
|
-
readonly relatedList?: boolean | undefined;
|
|
31130
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31441
31131
|
readonly relatedListTitle?: string | undefined;
|
|
31442
31132
|
readonly relatedListColumns?: any[] | undefined;
|
|
31443
31133
|
readonly displayField?: string | undefined;
|
|
@@ -31611,7 +31301,7 @@ declare const SysImportJob: Omit<{
|
|
|
31611
31301
|
readonly inlineTitle?: string | undefined;
|
|
31612
31302
|
readonly inlineColumns?: any[] | undefined;
|
|
31613
31303
|
readonly inlineAmountField?: string | undefined;
|
|
31614
|
-
readonly relatedList?: boolean | undefined;
|
|
31304
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31615
31305
|
readonly relatedListTitle?: string | undefined;
|
|
31616
31306
|
readonly relatedListColumns?: any[] | undefined;
|
|
31617
31307
|
readonly displayField?: string | undefined;
|
|
@@ -31785,7 +31475,7 @@ declare const SysImportJob: Omit<{
|
|
|
31785
31475
|
readonly inlineTitle?: string | undefined;
|
|
31786
31476
|
readonly inlineColumns?: any[] | undefined;
|
|
31787
31477
|
readonly inlineAmountField?: string | undefined;
|
|
31788
|
-
readonly relatedList?: boolean | undefined;
|
|
31478
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31789
31479
|
readonly relatedListTitle?: string | undefined;
|
|
31790
31480
|
readonly relatedListColumns?: any[] | undefined;
|
|
31791
31481
|
readonly displayField?: string | undefined;
|
|
@@ -31959,7 +31649,7 @@ declare const SysImportJob: Omit<{
|
|
|
31959
31649
|
readonly inlineTitle?: string | undefined;
|
|
31960
31650
|
readonly inlineColumns?: any[] | undefined;
|
|
31961
31651
|
readonly inlineAmountField?: string | undefined;
|
|
31962
|
-
readonly relatedList?: boolean | undefined;
|
|
31652
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
31963
31653
|
readonly relatedListTitle?: string | undefined;
|
|
31964
31654
|
readonly relatedListColumns?: any[] | undefined;
|
|
31965
31655
|
readonly displayField?: string | undefined;
|
|
@@ -32133,7 +31823,7 @@ declare const SysImportJob: Omit<{
|
|
|
32133
31823
|
readonly inlineTitle?: string | undefined;
|
|
32134
31824
|
readonly inlineColumns?: any[] | undefined;
|
|
32135
31825
|
readonly inlineAmountField?: string | undefined;
|
|
32136
|
-
readonly relatedList?: boolean | undefined;
|
|
31826
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32137
31827
|
readonly relatedListTitle?: string | undefined;
|
|
32138
31828
|
readonly relatedListColumns?: any[] | undefined;
|
|
32139
31829
|
readonly displayField?: string | undefined;
|
|
@@ -32307,7 +31997,7 @@ declare const SysImportJob: Omit<{
|
|
|
32307
31997
|
readonly inlineTitle?: string | undefined;
|
|
32308
31998
|
readonly inlineColumns?: any[] | undefined;
|
|
32309
31999
|
readonly inlineAmountField?: string | undefined;
|
|
32310
|
-
readonly relatedList?: boolean | undefined;
|
|
32000
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32311
32001
|
readonly relatedListTitle?: string | undefined;
|
|
32312
32002
|
readonly relatedListColumns?: any[] | undefined;
|
|
32313
32003
|
readonly displayField?: string | undefined;
|
|
@@ -32481,7 +32171,7 @@ declare const SysImportJob: Omit<{
|
|
|
32481
32171
|
readonly inlineTitle?: string | undefined;
|
|
32482
32172
|
readonly inlineColumns?: any[] | undefined;
|
|
32483
32173
|
readonly inlineAmountField?: string | undefined;
|
|
32484
|
-
readonly relatedList?: boolean | undefined;
|
|
32174
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32485
32175
|
readonly relatedListTitle?: string | undefined;
|
|
32486
32176
|
readonly relatedListColumns?: any[] | undefined;
|
|
32487
32177
|
readonly displayField?: string | undefined;
|
|
@@ -32655,7 +32345,7 @@ declare const SysImportJob: Omit<{
|
|
|
32655
32345
|
readonly inlineTitle?: string | undefined;
|
|
32656
32346
|
readonly inlineColumns?: any[] | undefined;
|
|
32657
32347
|
readonly inlineAmountField?: string | undefined;
|
|
32658
|
-
readonly relatedList?: boolean | undefined;
|
|
32348
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32659
32349
|
readonly relatedListTitle?: string | undefined;
|
|
32660
32350
|
readonly relatedListColumns?: any[] | undefined;
|
|
32661
32351
|
readonly displayField?: string | undefined;
|
|
@@ -32829,7 +32519,7 @@ declare const SysImportJob: Omit<{
|
|
|
32829
32519
|
readonly inlineTitle?: string | undefined;
|
|
32830
32520
|
readonly inlineColumns?: any[] | undefined;
|
|
32831
32521
|
readonly inlineAmountField?: string | undefined;
|
|
32832
|
-
readonly relatedList?: boolean | undefined;
|
|
32522
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
32833
32523
|
readonly relatedListTitle?: string | undefined;
|
|
32834
32524
|
readonly relatedListColumns?: any[] | undefined;
|
|
32835
32525
|
readonly displayField?: string | undefined;
|
|
@@ -33003,7 +32693,7 @@ declare const SysImportJob: Omit<{
|
|
|
33003
32693
|
readonly inlineTitle?: string | undefined;
|
|
33004
32694
|
readonly inlineColumns?: any[] | undefined;
|
|
33005
32695
|
readonly inlineAmountField?: string | undefined;
|
|
33006
|
-
readonly relatedList?: boolean | undefined;
|
|
32696
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33007
32697
|
readonly relatedListTitle?: string | undefined;
|
|
33008
32698
|
readonly relatedListColumns?: any[] | undefined;
|
|
33009
32699
|
readonly displayField?: string | undefined;
|
|
@@ -33177,7 +32867,7 @@ declare const SysImportJob: Omit<{
|
|
|
33177
32867
|
readonly inlineTitle?: string | undefined;
|
|
33178
32868
|
readonly inlineColumns?: any[] | undefined;
|
|
33179
32869
|
readonly inlineAmountField?: string | undefined;
|
|
33180
|
-
readonly relatedList?: boolean | undefined;
|
|
32870
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33181
32871
|
readonly relatedListTitle?: string | undefined;
|
|
33182
32872
|
readonly relatedListColumns?: any[] | undefined;
|
|
33183
32873
|
readonly displayField?: string | undefined;
|
|
@@ -33351,7 +33041,7 @@ declare const SysImportJob: Omit<{
|
|
|
33351
33041
|
readonly inlineTitle?: string | undefined;
|
|
33352
33042
|
readonly inlineColumns?: any[] | undefined;
|
|
33353
33043
|
readonly inlineAmountField?: string | undefined;
|
|
33354
|
-
readonly relatedList?: boolean | undefined;
|
|
33044
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33355
33045
|
readonly relatedListTitle?: string | undefined;
|
|
33356
33046
|
readonly relatedListColumns?: any[] | undefined;
|
|
33357
33047
|
readonly displayField?: string | undefined;
|
|
@@ -33525,7 +33215,7 @@ declare const SysImportJob: Omit<{
|
|
|
33525
33215
|
readonly inlineTitle?: string | undefined;
|
|
33526
33216
|
readonly inlineColumns?: any[] | undefined;
|
|
33527
33217
|
readonly inlineAmountField?: string | undefined;
|
|
33528
|
-
readonly relatedList?: boolean | undefined;
|
|
33218
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33529
33219
|
readonly relatedListTitle?: string | undefined;
|
|
33530
33220
|
readonly relatedListColumns?: any[] | undefined;
|
|
33531
33221
|
readonly displayField?: string | undefined;
|
|
@@ -33699,7 +33389,7 @@ declare const SysImportJob: Omit<{
|
|
|
33699
33389
|
readonly inlineTitle?: string | undefined;
|
|
33700
33390
|
readonly inlineColumns?: any[] | undefined;
|
|
33701
33391
|
readonly inlineAmountField?: string | undefined;
|
|
33702
|
-
readonly relatedList?: boolean | undefined;
|
|
33392
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
33703
33393
|
readonly relatedListTitle?: string | undefined;
|
|
33704
33394
|
readonly relatedListColumns?: any[] | undefined;
|
|
33705
33395
|
readonly displayField?: string | undefined;
|