@objectstack/plugin-approvals 11.10.0 → 12.1.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/.turbo/turbo-build.log +6 -6
- package/CHANGELOG.md +30 -0
- package/dist/index.d.mts +332 -422
- package/dist/index.d.ts +332 -422
- package/package.json +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
66
66
|
inlineTitle?: string | undefined;
|
|
67
67
|
inlineColumns?: any[] | undefined;
|
|
68
68
|
inlineAmountField?: string | undefined;
|
|
69
|
-
relatedList?: boolean | undefined;
|
|
69
|
+
relatedList?: boolean | "primary" | undefined;
|
|
70
70
|
relatedListTitle?: string | undefined;
|
|
71
71
|
relatedListColumns?: any[] | undefined;
|
|
72
72
|
displayField?: string | undefined;
|
|
@@ -349,7 +349,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
349
349
|
highlightFields?: string[] | undefined;
|
|
350
350
|
stageField?: string | false | undefined;
|
|
351
351
|
listViews?: Record<string, {
|
|
352
|
-
type: "tree" | "grid" | "kanban" | "
|
|
352
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
353
353
|
columns: string[] | {
|
|
354
354
|
field: string;
|
|
355
355
|
label?: string | undefined;
|
|
@@ -365,8 +365,55 @@ declare const SysApprovalRequest: Omit<{
|
|
|
365
365
|
link?: boolean | undefined;
|
|
366
366
|
action?: string | undefined;
|
|
367
367
|
}[];
|
|
368
|
-
|
|
368
|
+
sort?: string | {
|
|
369
|
+
field: string;
|
|
370
|
+
order: "asc" | "desc";
|
|
371
|
+
}[] | undefined;
|
|
372
|
+
filter?: {
|
|
373
|
+
field: string;
|
|
374
|
+
operator: string;
|
|
375
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
376
|
+
}[] | undefined;
|
|
377
|
+
description?: string | undefined;
|
|
369
378
|
label?: string | undefined;
|
|
379
|
+
name?: string | undefined;
|
|
380
|
+
responsive?: {
|
|
381
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
382
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
383
|
+
columns?: {
|
|
384
|
+
xs?: number | undefined;
|
|
385
|
+
sm?: number | undefined;
|
|
386
|
+
md?: number | undefined;
|
|
387
|
+
lg?: number | undefined;
|
|
388
|
+
xl?: number | undefined;
|
|
389
|
+
'2xl'?: number | undefined;
|
|
390
|
+
} | undefined;
|
|
391
|
+
order?: {
|
|
392
|
+
xs?: number | undefined;
|
|
393
|
+
sm?: number | undefined;
|
|
394
|
+
md?: number | undefined;
|
|
395
|
+
lg?: number | undefined;
|
|
396
|
+
xl?: number | undefined;
|
|
397
|
+
'2xl'?: number | undefined;
|
|
398
|
+
} | undefined;
|
|
399
|
+
} | undefined;
|
|
400
|
+
navigation?: {
|
|
401
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
402
|
+
preventNavigation: boolean;
|
|
403
|
+
openNewTab: boolean;
|
|
404
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
405
|
+
view?: string | undefined;
|
|
406
|
+
width?: string | number | undefined;
|
|
407
|
+
} | undefined;
|
|
408
|
+
sharing?: {
|
|
409
|
+
type: "personal" | "collaborative";
|
|
410
|
+
lockedBy?: string | undefined;
|
|
411
|
+
} | undefined;
|
|
412
|
+
aria?: {
|
|
413
|
+
ariaLabel?: string | undefined;
|
|
414
|
+
ariaDescribedBy?: string | undefined;
|
|
415
|
+
role?: string | undefined;
|
|
416
|
+
} | undefined;
|
|
370
417
|
data?: {
|
|
371
418
|
provider: "object";
|
|
372
419
|
object: string;
|
|
@@ -394,77 +441,42 @@ declare const SysApprovalRequest: Omit<{
|
|
|
394
441
|
schemaId: string;
|
|
395
442
|
schema?: Record<string, unknown> | undefined;
|
|
396
443
|
} | 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;
|
|
444
|
+
tree?: {
|
|
445
|
+
[x: string]: unknown;
|
|
446
|
+
parentField?: string | undefined;
|
|
447
|
+
labelField?: string | undefined;
|
|
448
|
+
fields?: string[] | undefined;
|
|
449
|
+
defaultExpandedDepth?: number | undefined;
|
|
438
450
|
} | undefined;
|
|
451
|
+
inlineEdit?: boolean | undefined;
|
|
452
|
+
virtualScroll?: boolean | undefined;
|
|
439
453
|
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
454
|
kanban?: {
|
|
458
455
|
groupByField: string;
|
|
459
456
|
columns: string[];
|
|
460
457
|
summarizeField?: string | undefined;
|
|
461
458
|
} | undefined;
|
|
459
|
+
gallery?: {
|
|
460
|
+
coverFit: "cover" | "contain";
|
|
461
|
+
cardSize: "small" | "medium" | "large";
|
|
462
|
+
coverField?: string | undefined;
|
|
463
|
+
titleField?: string | undefined;
|
|
464
|
+
visibleFields?: string[] | undefined;
|
|
465
|
+
} | undefined;
|
|
462
466
|
calendar?: {
|
|
463
467
|
startDateField: string;
|
|
464
468
|
titleField: string;
|
|
465
469
|
endDateField?: string | undefined;
|
|
466
470
|
colorField?: string | undefined;
|
|
467
471
|
} | undefined;
|
|
472
|
+
timeline?: {
|
|
473
|
+
startDateField: string;
|
|
474
|
+
titleField: string;
|
|
475
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
476
|
+
endDateField?: string | undefined;
|
|
477
|
+
groupByField?: string | undefined;
|
|
478
|
+
colorField?: string | undefined;
|
|
479
|
+
} | undefined;
|
|
468
480
|
gantt?: {
|
|
469
481
|
[x: string]: unknown;
|
|
470
482
|
startDateField: string;
|
|
@@ -496,40 +508,40 @@ declare const SysApprovalRequest: Omit<{
|
|
|
496
508
|
}[] | undefined;
|
|
497
509
|
autoZoomToFilter?: boolean | undefined;
|
|
498
510
|
} | 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
511
|
chart?: {
|
|
515
512
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
516
513
|
dataset: string;
|
|
517
514
|
values: string[];
|
|
518
515
|
dimensions?: string[] | undefined;
|
|
519
516
|
} | undefined;
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
517
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
518
|
+
tabs?: {
|
|
519
|
+
name: string;
|
|
520
|
+
pinned: boolean;
|
|
521
|
+
isDefault: boolean;
|
|
522
|
+
visible: boolean;
|
|
523
|
+
label?: string | undefined;
|
|
524
|
+
icon?: string | undefined;
|
|
525
|
+
view?: string | undefined;
|
|
526
|
+
filter?: {
|
|
527
|
+
field: string;
|
|
528
|
+
operator: string;
|
|
529
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
530
|
+
}[] | undefined;
|
|
531
|
+
order?: number | undefined;
|
|
532
|
+
}[] | undefined;
|
|
533
|
+
searchableFields?: string[] | undefined;
|
|
534
|
+
filterableFields?: string[] | undefined;
|
|
535
|
+
striped?: boolean | undefined;
|
|
536
|
+
bordered?: boolean | undefined;
|
|
537
|
+
compactToolbar?: boolean | undefined;
|
|
538
|
+
selection?: {
|
|
539
|
+
type: "none" | "multiple" | "single";
|
|
526
540
|
} | undefined;
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
lockedBy?: string | undefined;
|
|
541
|
+
pagination?: {
|
|
542
|
+
pageSize: number;
|
|
543
|
+
pageSizeOptions?: number[] | undefined;
|
|
531
544
|
} | undefined;
|
|
532
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
533
545
|
grouping?: {
|
|
534
546
|
fields: {
|
|
535
547
|
field: string;
|
|
@@ -546,7 +558,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
546
558
|
rowActions?: string[] | undefined;
|
|
547
559
|
bulkActions?: string[] | undefined;
|
|
548
560
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
549
|
-
virtualScroll?: boolean | undefined;
|
|
550
561
|
conditionalFormatting?: {
|
|
551
562
|
condition: {
|
|
552
563
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -567,7 +578,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
567
578
|
};
|
|
568
579
|
style: Record<string, string>;
|
|
569
580
|
}[] | undefined;
|
|
570
|
-
inlineEdit?: boolean | undefined;
|
|
571
581
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
572
582
|
userActions?: {
|
|
573
583
|
sort: boolean;
|
|
@@ -580,23 +590,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
580
590
|
} | undefined;
|
|
581
591
|
appearance?: {
|
|
582
592
|
showDescription: boolean;
|
|
583
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
593
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
584
594
|
} | 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
595
|
addRecord?: {
|
|
601
596
|
enabled: boolean;
|
|
602
597
|
position: "top" | "bottom" | "both";
|
|
@@ -610,31 +605,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
610
605
|
message?: string | undefined;
|
|
611
606
|
icon?: string | undefined;
|
|
612
607
|
} | 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
608
|
performance?: {
|
|
639
609
|
lazyLoad?: boolean | undefined;
|
|
640
610
|
virtualScroll?: {
|
|
@@ -930,7 +900,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
930
900
|
readonly inlineTitle?: string | undefined;
|
|
931
901
|
readonly inlineColumns?: any[] | undefined;
|
|
932
902
|
readonly inlineAmountField?: string | undefined;
|
|
933
|
-
readonly relatedList?: boolean | undefined;
|
|
903
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
934
904
|
readonly relatedListTitle?: string | undefined;
|
|
935
905
|
readonly relatedListColumns?: any[] | undefined;
|
|
936
906
|
readonly displayField?: string | undefined;
|
|
@@ -1104,7 +1074,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1104
1074
|
readonly inlineTitle?: string | undefined;
|
|
1105
1075
|
readonly inlineColumns?: any[] | undefined;
|
|
1106
1076
|
readonly inlineAmountField?: string | undefined;
|
|
1107
|
-
readonly relatedList?: boolean | undefined;
|
|
1077
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1108
1078
|
readonly relatedListTitle?: string | undefined;
|
|
1109
1079
|
readonly relatedListColumns?: any[] | undefined;
|
|
1110
1080
|
readonly displayField?: string | undefined;
|
|
@@ -1278,7 +1248,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1278
1248
|
readonly inlineTitle?: string | undefined;
|
|
1279
1249
|
readonly inlineColumns?: any[] | undefined;
|
|
1280
1250
|
readonly inlineAmountField?: string | undefined;
|
|
1281
|
-
readonly relatedList?: boolean | undefined;
|
|
1251
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1282
1252
|
readonly relatedListTitle?: string | undefined;
|
|
1283
1253
|
readonly relatedListColumns?: any[] | undefined;
|
|
1284
1254
|
readonly displayField?: string | undefined;
|
|
@@ -1452,7 +1422,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1452
1422
|
readonly inlineTitle?: string | undefined;
|
|
1453
1423
|
readonly inlineColumns?: any[] | undefined;
|
|
1454
1424
|
readonly inlineAmountField?: string | undefined;
|
|
1455
|
-
readonly relatedList?: boolean | undefined;
|
|
1425
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1456
1426
|
readonly relatedListTitle?: string | undefined;
|
|
1457
1427
|
readonly relatedListColumns?: any[] | undefined;
|
|
1458
1428
|
readonly displayField?: string | undefined;
|
|
@@ -1626,7 +1596,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1626
1596
|
readonly inlineTitle?: string | undefined;
|
|
1627
1597
|
readonly inlineColumns?: any[] | undefined;
|
|
1628
1598
|
readonly inlineAmountField?: string | undefined;
|
|
1629
|
-
readonly relatedList?: boolean | undefined;
|
|
1599
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1630
1600
|
readonly relatedListTitle?: string | undefined;
|
|
1631
1601
|
readonly relatedListColumns?: any[] | undefined;
|
|
1632
1602
|
readonly displayField?: string | undefined;
|
|
@@ -1800,7 +1770,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1800
1770
|
readonly inlineTitle?: string | undefined;
|
|
1801
1771
|
readonly inlineColumns?: any[] | undefined;
|
|
1802
1772
|
readonly inlineAmountField?: string | undefined;
|
|
1803
|
-
readonly relatedList?: boolean | undefined;
|
|
1773
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1804
1774
|
readonly relatedListTitle?: string | undefined;
|
|
1805
1775
|
readonly relatedListColumns?: any[] | undefined;
|
|
1806
1776
|
readonly displayField?: string | undefined;
|
|
@@ -1974,7 +1944,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1974
1944
|
readonly inlineTitle?: string | undefined;
|
|
1975
1945
|
readonly inlineColumns?: any[] | undefined;
|
|
1976
1946
|
readonly inlineAmountField?: string | undefined;
|
|
1977
|
-
readonly relatedList?: boolean | undefined;
|
|
1947
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1978
1948
|
readonly relatedListTitle?: string | undefined;
|
|
1979
1949
|
readonly relatedListColumns?: any[] | undefined;
|
|
1980
1950
|
readonly displayField?: string | undefined;
|
|
@@ -2148,7 +2118,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2148
2118
|
readonly inlineTitle?: string | undefined;
|
|
2149
2119
|
readonly inlineColumns?: any[] | undefined;
|
|
2150
2120
|
readonly inlineAmountField?: string | undefined;
|
|
2151
|
-
readonly relatedList?: boolean | undefined;
|
|
2121
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2152
2122
|
readonly relatedListTitle?: string | undefined;
|
|
2153
2123
|
readonly relatedListColumns?: any[] | undefined;
|
|
2154
2124
|
readonly displayField?: string | undefined;
|
|
@@ -2322,7 +2292,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2322
2292
|
readonly inlineTitle?: string | undefined;
|
|
2323
2293
|
readonly inlineColumns?: any[] | undefined;
|
|
2324
2294
|
readonly inlineAmountField?: string | undefined;
|
|
2325
|
-
readonly relatedList?: boolean | undefined;
|
|
2295
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2326
2296
|
readonly relatedListTitle?: string | undefined;
|
|
2327
2297
|
readonly relatedListColumns?: any[] | undefined;
|
|
2328
2298
|
readonly displayField?: string | undefined;
|
|
@@ -2496,7 +2466,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2496
2466
|
readonly inlineTitle?: string | undefined;
|
|
2497
2467
|
readonly inlineColumns?: any[] | undefined;
|
|
2498
2468
|
readonly inlineAmountField?: string | undefined;
|
|
2499
|
-
readonly relatedList?: boolean | undefined;
|
|
2469
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2500
2470
|
readonly relatedListTitle?: string | undefined;
|
|
2501
2471
|
readonly relatedListColumns?: any[] | undefined;
|
|
2502
2472
|
readonly displayField?: string | undefined;
|
|
@@ -2670,7 +2640,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2670
2640
|
readonly inlineTitle?: string | undefined;
|
|
2671
2641
|
readonly inlineColumns?: any[] | undefined;
|
|
2672
2642
|
readonly inlineAmountField?: string | undefined;
|
|
2673
|
-
readonly relatedList?: boolean | undefined;
|
|
2643
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2674
2644
|
readonly relatedListTitle?: string | undefined;
|
|
2675
2645
|
readonly relatedListColumns?: any[] | undefined;
|
|
2676
2646
|
readonly displayField?: string | undefined;
|
|
@@ -2844,7 +2814,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2844
2814
|
readonly inlineTitle?: string | undefined;
|
|
2845
2815
|
readonly inlineColumns?: any[] | undefined;
|
|
2846
2816
|
readonly inlineAmountField?: string | undefined;
|
|
2847
|
-
readonly relatedList?: boolean | undefined;
|
|
2817
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2848
2818
|
readonly relatedListTitle?: string | undefined;
|
|
2849
2819
|
readonly relatedListColumns?: any[] | undefined;
|
|
2850
2820
|
readonly displayField?: string | undefined;
|
|
@@ -3018,7 +2988,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3018
2988
|
readonly inlineTitle?: string | undefined;
|
|
3019
2989
|
readonly inlineColumns?: any[] | undefined;
|
|
3020
2990
|
readonly inlineAmountField?: string | undefined;
|
|
3021
|
-
readonly relatedList?: boolean | undefined;
|
|
2991
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3022
2992
|
readonly relatedListTitle?: string | undefined;
|
|
3023
2993
|
readonly relatedListColumns?: any[] | undefined;
|
|
3024
2994
|
readonly displayField?: string | undefined;
|
|
@@ -3192,7 +3162,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3192
3162
|
readonly inlineTitle?: string | undefined;
|
|
3193
3163
|
readonly inlineColumns?: any[] | undefined;
|
|
3194
3164
|
readonly inlineAmountField?: string | undefined;
|
|
3195
|
-
readonly relatedList?: boolean | undefined;
|
|
3165
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3196
3166
|
readonly relatedListTitle?: string | undefined;
|
|
3197
3167
|
readonly relatedListColumns?: any[] | undefined;
|
|
3198
3168
|
readonly displayField?: string | undefined;
|
|
@@ -3366,7 +3336,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3366
3336
|
readonly inlineTitle?: string | undefined;
|
|
3367
3337
|
readonly inlineColumns?: any[] | undefined;
|
|
3368
3338
|
readonly inlineAmountField?: string | undefined;
|
|
3369
|
-
readonly relatedList?: boolean | undefined;
|
|
3339
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3370
3340
|
readonly relatedListTitle?: string | undefined;
|
|
3371
3341
|
readonly relatedListColumns?: any[] | undefined;
|
|
3372
3342
|
readonly displayField?: string | undefined;
|
|
@@ -3540,7 +3510,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3540
3510
|
readonly inlineTitle?: string | undefined;
|
|
3541
3511
|
readonly inlineColumns?: any[] | undefined;
|
|
3542
3512
|
readonly inlineAmountField?: string | undefined;
|
|
3543
|
-
readonly relatedList?: boolean | undefined;
|
|
3513
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3544
3514
|
readonly relatedListTitle?: string | undefined;
|
|
3545
3515
|
readonly relatedListColumns?: any[] | undefined;
|
|
3546
3516
|
readonly displayField?: string | undefined;
|
|
@@ -3714,7 +3684,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3714
3684
|
readonly inlineTitle?: string | undefined;
|
|
3715
3685
|
readonly inlineColumns?: any[] | undefined;
|
|
3716
3686
|
readonly inlineAmountField?: string | undefined;
|
|
3717
|
-
readonly relatedList?: boolean | undefined;
|
|
3687
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3718
3688
|
readonly relatedListTitle?: string | undefined;
|
|
3719
3689
|
readonly relatedListColumns?: any[] | undefined;
|
|
3720
3690
|
readonly displayField?: string | undefined;
|
|
@@ -3888,7 +3858,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3888
3858
|
readonly inlineTitle?: string | undefined;
|
|
3889
3859
|
readonly inlineColumns?: any[] | undefined;
|
|
3890
3860
|
readonly inlineAmountField?: string | undefined;
|
|
3891
|
-
readonly relatedList?: boolean | undefined;
|
|
3861
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3892
3862
|
readonly relatedListTitle?: string | undefined;
|
|
3893
3863
|
readonly relatedListColumns?: any[] | undefined;
|
|
3894
3864
|
readonly displayField?: string | undefined;
|
|
@@ -4088,7 +4058,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4088
4058
|
inlineTitle?: string | undefined;
|
|
4089
4059
|
inlineColumns?: any[] | undefined;
|
|
4090
4060
|
inlineAmountField?: string | undefined;
|
|
4091
|
-
relatedList?: boolean | undefined;
|
|
4061
|
+
relatedList?: boolean | "primary" | undefined;
|
|
4092
4062
|
relatedListTitle?: string | undefined;
|
|
4093
4063
|
relatedListColumns?: any[] | undefined;
|
|
4094
4064
|
displayField?: string | undefined;
|
|
@@ -4371,7 +4341,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4371
4341
|
highlightFields?: string[] | undefined;
|
|
4372
4342
|
stageField?: string | false | undefined;
|
|
4373
4343
|
listViews?: Record<string, {
|
|
4374
|
-
type: "tree" | "grid" | "kanban" | "
|
|
4344
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
4375
4345
|
columns: string[] | {
|
|
4376
4346
|
field: string;
|
|
4377
4347
|
label?: string | undefined;
|
|
@@ -4387,8 +4357,55 @@ declare const SysApprovalAction: Omit<{
|
|
|
4387
4357
|
link?: boolean | undefined;
|
|
4388
4358
|
action?: string | undefined;
|
|
4389
4359
|
}[];
|
|
4390
|
-
|
|
4360
|
+
sort?: string | {
|
|
4361
|
+
field: string;
|
|
4362
|
+
order: "asc" | "desc";
|
|
4363
|
+
}[] | undefined;
|
|
4364
|
+
filter?: {
|
|
4365
|
+
field: string;
|
|
4366
|
+
operator: string;
|
|
4367
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4368
|
+
}[] | undefined;
|
|
4369
|
+
description?: string | undefined;
|
|
4391
4370
|
label?: string | undefined;
|
|
4371
|
+
name?: string | undefined;
|
|
4372
|
+
responsive?: {
|
|
4373
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4374
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4375
|
+
columns?: {
|
|
4376
|
+
xs?: number | undefined;
|
|
4377
|
+
sm?: number | undefined;
|
|
4378
|
+
md?: number | undefined;
|
|
4379
|
+
lg?: number | undefined;
|
|
4380
|
+
xl?: number | undefined;
|
|
4381
|
+
'2xl'?: number | undefined;
|
|
4382
|
+
} | undefined;
|
|
4383
|
+
order?: {
|
|
4384
|
+
xs?: number | undefined;
|
|
4385
|
+
sm?: number | undefined;
|
|
4386
|
+
md?: number | undefined;
|
|
4387
|
+
lg?: number | undefined;
|
|
4388
|
+
xl?: number | undefined;
|
|
4389
|
+
'2xl'?: number | undefined;
|
|
4390
|
+
} | undefined;
|
|
4391
|
+
} | undefined;
|
|
4392
|
+
navigation?: {
|
|
4393
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4394
|
+
preventNavigation: boolean;
|
|
4395
|
+
openNewTab: boolean;
|
|
4396
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
4397
|
+
view?: string | undefined;
|
|
4398
|
+
width?: string | number | undefined;
|
|
4399
|
+
} | undefined;
|
|
4400
|
+
sharing?: {
|
|
4401
|
+
type: "personal" | "collaborative";
|
|
4402
|
+
lockedBy?: string | undefined;
|
|
4403
|
+
} | undefined;
|
|
4404
|
+
aria?: {
|
|
4405
|
+
ariaLabel?: string | undefined;
|
|
4406
|
+
ariaDescribedBy?: string | undefined;
|
|
4407
|
+
role?: string | undefined;
|
|
4408
|
+
} | undefined;
|
|
4392
4409
|
data?: {
|
|
4393
4410
|
provider: "object";
|
|
4394
4411
|
object: string;
|
|
@@ -4416,77 +4433,42 @@ declare const SysApprovalAction: Omit<{
|
|
|
4416
4433
|
schemaId: string;
|
|
4417
4434
|
schema?: Record<string, unknown> | undefined;
|
|
4418
4435
|
} | undefined;
|
|
4419
|
-
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
field: string;
|
|
4426
|
-
order: "asc" | "desc";
|
|
4427
|
-
}[] | undefined;
|
|
4428
|
-
searchableFields?: string[] | undefined;
|
|
4429
|
-
filterableFields?: string[] | undefined;
|
|
4430
|
-
userFilters?: {
|
|
4431
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
4432
|
-
fields?: {
|
|
4433
|
-
field: string;
|
|
4434
|
-
label?: string | undefined;
|
|
4435
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
4436
|
-
options?: {
|
|
4437
|
-
value: string | number | boolean;
|
|
4438
|
-
label: string;
|
|
4439
|
-
color?: string | undefined;
|
|
4440
|
-
}[] | undefined;
|
|
4441
|
-
showCount?: boolean | undefined;
|
|
4442
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
4443
|
-
}[] | undefined;
|
|
4444
|
-
tabs?: {
|
|
4445
|
-
name: string;
|
|
4446
|
-
pinned: boolean;
|
|
4447
|
-
isDefault: boolean;
|
|
4448
|
-
visible: boolean;
|
|
4449
|
-
label?: string | undefined;
|
|
4450
|
-
icon?: string | undefined;
|
|
4451
|
-
view?: string | undefined;
|
|
4452
|
-
filter?: {
|
|
4453
|
-
field: string;
|
|
4454
|
-
operator: string;
|
|
4455
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4456
|
-
}[] | undefined;
|
|
4457
|
-
order?: number | undefined;
|
|
4458
|
-
}[] | undefined;
|
|
4459
|
-
showAllRecords?: boolean | undefined;
|
|
4436
|
+
tree?: {
|
|
4437
|
+
[x: string]: unknown;
|
|
4438
|
+
parentField?: string | undefined;
|
|
4439
|
+
labelField?: string | undefined;
|
|
4440
|
+
fields?: string[] | undefined;
|
|
4441
|
+
defaultExpandedDepth?: number | undefined;
|
|
4460
4442
|
} | undefined;
|
|
4443
|
+
inlineEdit?: boolean | undefined;
|
|
4444
|
+
virtualScroll?: boolean | undefined;
|
|
4461
4445
|
resizable?: boolean | undefined;
|
|
4462
|
-
striped?: boolean | undefined;
|
|
4463
|
-
bordered?: boolean | undefined;
|
|
4464
|
-
compactToolbar?: boolean | undefined;
|
|
4465
|
-
selection?: {
|
|
4466
|
-
type: "none" | "multiple" | "single";
|
|
4467
|
-
} | undefined;
|
|
4468
|
-
navigation?: {
|
|
4469
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4470
|
-
preventNavigation: boolean;
|
|
4471
|
-
openNewTab: boolean;
|
|
4472
|
-
view?: string | undefined;
|
|
4473
|
-
width?: string | number | undefined;
|
|
4474
|
-
} | undefined;
|
|
4475
|
-
pagination?: {
|
|
4476
|
-
pageSize: number;
|
|
4477
|
-
pageSizeOptions?: number[] | undefined;
|
|
4478
|
-
} | undefined;
|
|
4479
4446
|
kanban?: {
|
|
4480
4447
|
groupByField: string;
|
|
4481
4448
|
columns: string[];
|
|
4482
4449
|
summarizeField?: string | undefined;
|
|
4483
4450
|
} | undefined;
|
|
4451
|
+
gallery?: {
|
|
4452
|
+
coverFit: "cover" | "contain";
|
|
4453
|
+
cardSize: "small" | "medium" | "large";
|
|
4454
|
+
coverField?: string | undefined;
|
|
4455
|
+
titleField?: string | undefined;
|
|
4456
|
+
visibleFields?: string[] | undefined;
|
|
4457
|
+
} | undefined;
|
|
4484
4458
|
calendar?: {
|
|
4485
4459
|
startDateField: string;
|
|
4486
4460
|
titleField: string;
|
|
4487
4461
|
endDateField?: string | undefined;
|
|
4488
4462
|
colorField?: string | undefined;
|
|
4489
4463
|
} | undefined;
|
|
4464
|
+
timeline?: {
|
|
4465
|
+
startDateField: string;
|
|
4466
|
+
titleField: string;
|
|
4467
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
4468
|
+
endDateField?: string | undefined;
|
|
4469
|
+
groupByField?: string | undefined;
|
|
4470
|
+
colorField?: string | undefined;
|
|
4471
|
+
} | undefined;
|
|
4490
4472
|
gantt?: {
|
|
4491
4473
|
[x: string]: unknown;
|
|
4492
4474
|
startDateField: string;
|
|
@@ -4518,40 +4500,40 @@ declare const SysApprovalAction: Omit<{
|
|
|
4518
4500
|
}[] | undefined;
|
|
4519
4501
|
autoZoomToFilter?: boolean | undefined;
|
|
4520
4502
|
} | undefined;
|
|
4521
|
-
gallery?: {
|
|
4522
|
-
coverFit: "cover" | "contain";
|
|
4523
|
-
cardSize: "small" | "medium" | "large";
|
|
4524
|
-
coverField?: string | undefined;
|
|
4525
|
-
titleField?: string | undefined;
|
|
4526
|
-
visibleFields?: string[] | undefined;
|
|
4527
|
-
} | undefined;
|
|
4528
|
-
timeline?: {
|
|
4529
|
-
startDateField: string;
|
|
4530
|
-
titleField: string;
|
|
4531
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
4532
|
-
endDateField?: string | undefined;
|
|
4533
|
-
groupByField?: string | undefined;
|
|
4534
|
-
colorField?: string | undefined;
|
|
4535
|
-
} | undefined;
|
|
4536
4503
|
chart?: {
|
|
4537
4504
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4538
4505
|
dataset: string;
|
|
4539
4506
|
values: string[];
|
|
4540
4507
|
dimensions?: string[] | undefined;
|
|
4541
4508
|
} | undefined;
|
|
4542
|
-
|
|
4543
|
-
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4509
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4510
|
+
tabs?: {
|
|
4511
|
+
name: string;
|
|
4512
|
+
pinned: boolean;
|
|
4513
|
+
isDefault: boolean;
|
|
4514
|
+
visible: boolean;
|
|
4515
|
+
label?: string | undefined;
|
|
4516
|
+
icon?: string | undefined;
|
|
4517
|
+
view?: string | undefined;
|
|
4518
|
+
filter?: {
|
|
4519
|
+
field: string;
|
|
4520
|
+
operator: string;
|
|
4521
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4522
|
+
}[] | undefined;
|
|
4523
|
+
order?: number | undefined;
|
|
4524
|
+
}[] | undefined;
|
|
4525
|
+
searchableFields?: string[] | undefined;
|
|
4526
|
+
filterableFields?: string[] | undefined;
|
|
4527
|
+
striped?: boolean | undefined;
|
|
4528
|
+
bordered?: boolean | undefined;
|
|
4529
|
+
compactToolbar?: boolean | undefined;
|
|
4530
|
+
selection?: {
|
|
4531
|
+
type: "none" | "multiple" | "single";
|
|
4548
4532
|
} | undefined;
|
|
4549
|
-
|
|
4550
|
-
|
|
4551
|
-
|
|
4552
|
-
lockedBy?: string | undefined;
|
|
4533
|
+
pagination?: {
|
|
4534
|
+
pageSize: number;
|
|
4535
|
+
pageSizeOptions?: number[] | undefined;
|
|
4553
4536
|
} | undefined;
|
|
4554
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4555
4537
|
grouping?: {
|
|
4556
4538
|
fields: {
|
|
4557
4539
|
field: string;
|
|
@@ -4568,7 +4550,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4568
4550
|
rowActions?: string[] | undefined;
|
|
4569
4551
|
bulkActions?: string[] | undefined;
|
|
4570
4552
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
4571
|
-
virtualScroll?: boolean | undefined;
|
|
4572
4553
|
conditionalFormatting?: {
|
|
4573
4554
|
condition: {
|
|
4574
4555
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4589,7 +4570,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4589
4570
|
};
|
|
4590
4571
|
style: Record<string, string>;
|
|
4591
4572
|
}[] | undefined;
|
|
4592
|
-
inlineEdit?: boolean | undefined;
|
|
4593
4573
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
4594
4574
|
userActions?: {
|
|
4595
4575
|
sort: boolean;
|
|
@@ -4602,23 +4582,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
4602
4582
|
} | undefined;
|
|
4603
4583
|
appearance?: {
|
|
4604
4584
|
showDescription: boolean;
|
|
4605
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
4585
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
4606
4586
|
} | undefined;
|
|
4607
|
-
tabs?: {
|
|
4608
|
-
name: string;
|
|
4609
|
-
pinned: boolean;
|
|
4610
|
-
isDefault: boolean;
|
|
4611
|
-
visible: boolean;
|
|
4612
|
-
label?: string | undefined;
|
|
4613
|
-
icon?: string | undefined;
|
|
4614
|
-
view?: string | undefined;
|
|
4615
|
-
filter?: {
|
|
4616
|
-
field: string;
|
|
4617
|
-
operator: string;
|
|
4618
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4619
|
-
}[] | undefined;
|
|
4620
|
-
order?: number | undefined;
|
|
4621
|
-
}[] | undefined;
|
|
4622
4587
|
addRecord?: {
|
|
4623
4588
|
enabled: boolean;
|
|
4624
4589
|
position: "top" | "bottom" | "both";
|
|
@@ -4632,31 +4597,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4632
4597
|
message?: string | undefined;
|
|
4633
4598
|
icon?: string | undefined;
|
|
4634
4599
|
} | undefined;
|
|
4635
|
-
aria?: {
|
|
4636
|
-
ariaLabel?: string | undefined;
|
|
4637
|
-
ariaDescribedBy?: string | undefined;
|
|
4638
|
-
role?: string | undefined;
|
|
4639
|
-
} | undefined;
|
|
4640
|
-
responsive?: {
|
|
4641
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4642
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4643
|
-
columns?: {
|
|
4644
|
-
xs?: number | undefined;
|
|
4645
|
-
sm?: number | undefined;
|
|
4646
|
-
md?: number | undefined;
|
|
4647
|
-
lg?: number | undefined;
|
|
4648
|
-
xl?: number | undefined;
|
|
4649
|
-
'2xl'?: number | undefined;
|
|
4650
|
-
} | undefined;
|
|
4651
|
-
order?: {
|
|
4652
|
-
xs?: number | undefined;
|
|
4653
|
-
sm?: number | undefined;
|
|
4654
|
-
md?: number | undefined;
|
|
4655
|
-
lg?: number | undefined;
|
|
4656
|
-
xl?: number | undefined;
|
|
4657
|
-
'2xl'?: number | undefined;
|
|
4658
|
-
} | undefined;
|
|
4659
|
-
} | undefined;
|
|
4660
4600
|
performance?: {
|
|
4661
4601
|
lazyLoad?: boolean | undefined;
|
|
4662
4602
|
virtualScroll?: {
|
|
@@ -4926,7 +4866,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4926
4866
|
readonly inlineTitle?: string | undefined;
|
|
4927
4867
|
readonly inlineColumns?: any[] | undefined;
|
|
4928
4868
|
readonly inlineAmountField?: string | undefined;
|
|
4929
|
-
readonly relatedList?: boolean | undefined;
|
|
4869
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4930
4870
|
readonly relatedListTitle?: string | undefined;
|
|
4931
4871
|
readonly relatedListColumns?: any[] | undefined;
|
|
4932
4872
|
readonly displayField?: string | undefined;
|
|
@@ -5100,7 +5040,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5100
5040
|
readonly inlineTitle?: string | undefined;
|
|
5101
5041
|
readonly inlineColumns?: any[] | undefined;
|
|
5102
5042
|
readonly inlineAmountField?: string | undefined;
|
|
5103
|
-
readonly relatedList?: boolean | undefined;
|
|
5043
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5104
5044
|
readonly relatedListTitle?: string | undefined;
|
|
5105
5045
|
readonly relatedListColumns?: any[] | undefined;
|
|
5106
5046
|
readonly displayField?: string | undefined;
|
|
@@ -5274,7 +5214,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5274
5214
|
readonly inlineTitle?: string | undefined;
|
|
5275
5215
|
readonly inlineColumns?: any[] | undefined;
|
|
5276
5216
|
readonly inlineAmountField?: string | undefined;
|
|
5277
|
-
readonly relatedList?: boolean | undefined;
|
|
5217
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5278
5218
|
readonly relatedListTitle?: string | undefined;
|
|
5279
5219
|
readonly relatedListColumns?: any[] | undefined;
|
|
5280
5220
|
readonly displayField?: string | undefined;
|
|
@@ -5448,7 +5388,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5448
5388
|
readonly inlineTitle?: string | undefined;
|
|
5449
5389
|
readonly inlineColumns?: any[] | undefined;
|
|
5450
5390
|
readonly inlineAmountField?: string | undefined;
|
|
5451
|
-
readonly relatedList?: boolean | undefined;
|
|
5391
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5452
5392
|
readonly relatedListTitle?: string | undefined;
|
|
5453
5393
|
readonly relatedListColumns?: any[] | undefined;
|
|
5454
5394
|
readonly displayField?: string | undefined;
|
|
@@ -5622,7 +5562,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5622
5562
|
readonly inlineTitle?: string | undefined;
|
|
5623
5563
|
readonly inlineColumns?: any[] | undefined;
|
|
5624
5564
|
readonly inlineAmountField?: string | undefined;
|
|
5625
|
-
readonly relatedList?: boolean | undefined;
|
|
5565
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5626
5566
|
readonly relatedListTitle?: string | undefined;
|
|
5627
5567
|
readonly relatedListColumns?: any[] | undefined;
|
|
5628
5568
|
readonly displayField?: string | undefined;
|
|
@@ -5796,7 +5736,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5796
5736
|
readonly inlineTitle?: string | undefined;
|
|
5797
5737
|
readonly inlineColumns?: any[] | undefined;
|
|
5798
5738
|
readonly inlineAmountField?: string | undefined;
|
|
5799
|
-
readonly relatedList?: boolean | undefined;
|
|
5739
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5800
5740
|
readonly relatedListTitle?: string | undefined;
|
|
5801
5741
|
readonly relatedListColumns?: any[] | undefined;
|
|
5802
5742
|
readonly displayField?: string | undefined;
|
|
@@ -5970,7 +5910,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5970
5910
|
readonly inlineTitle?: string | undefined;
|
|
5971
5911
|
readonly inlineColumns?: any[] | undefined;
|
|
5972
5912
|
readonly inlineAmountField?: string | undefined;
|
|
5973
|
-
readonly relatedList?: boolean | undefined;
|
|
5913
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5974
5914
|
readonly relatedListTitle?: string | undefined;
|
|
5975
5915
|
readonly relatedListColumns?: any[] | undefined;
|
|
5976
5916
|
readonly displayField?: string | undefined;
|
|
@@ -6144,7 +6084,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6144
6084
|
readonly inlineTitle?: string | undefined;
|
|
6145
6085
|
readonly inlineColumns?: any[] | undefined;
|
|
6146
6086
|
readonly inlineAmountField?: string | undefined;
|
|
6147
|
-
readonly relatedList?: boolean | undefined;
|
|
6087
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6148
6088
|
readonly relatedListTitle?: string | undefined;
|
|
6149
6089
|
readonly relatedListColumns?: any[] | undefined;
|
|
6150
6090
|
readonly displayField?: string | undefined;
|
|
@@ -6318,7 +6258,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6318
6258
|
readonly inlineTitle?: string | undefined;
|
|
6319
6259
|
readonly inlineColumns?: any[] | undefined;
|
|
6320
6260
|
readonly inlineAmountField?: string | undefined;
|
|
6321
|
-
readonly relatedList?: boolean | undefined;
|
|
6261
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6322
6262
|
readonly relatedListTitle?: string | undefined;
|
|
6323
6263
|
readonly relatedListColumns?: any[] | undefined;
|
|
6324
6264
|
readonly displayField?: string | undefined;
|
|
@@ -6525,7 +6465,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6525
6465
|
inlineTitle?: string | undefined;
|
|
6526
6466
|
inlineColumns?: any[] | undefined;
|
|
6527
6467
|
inlineAmountField?: string | undefined;
|
|
6528
|
-
relatedList?: boolean | undefined;
|
|
6468
|
+
relatedList?: boolean | "primary" | undefined;
|
|
6529
6469
|
relatedListTitle?: string | undefined;
|
|
6530
6470
|
relatedListColumns?: any[] | undefined;
|
|
6531
6471
|
displayField?: string | undefined;
|
|
@@ -6808,7 +6748,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6808
6748
|
highlightFields?: string[] | undefined;
|
|
6809
6749
|
stageField?: string | false | undefined;
|
|
6810
6750
|
listViews?: Record<string, {
|
|
6811
|
-
type: "tree" | "grid" | "kanban" | "
|
|
6751
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
6812
6752
|
columns: string[] | {
|
|
6813
6753
|
field: string;
|
|
6814
6754
|
label?: string | undefined;
|
|
@@ -6824,8 +6764,55 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6824
6764
|
link?: boolean | undefined;
|
|
6825
6765
|
action?: string | undefined;
|
|
6826
6766
|
}[];
|
|
6827
|
-
|
|
6767
|
+
sort?: string | {
|
|
6768
|
+
field: string;
|
|
6769
|
+
order: "asc" | "desc";
|
|
6770
|
+
}[] | undefined;
|
|
6771
|
+
filter?: {
|
|
6772
|
+
field: string;
|
|
6773
|
+
operator: string;
|
|
6774
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6775
|
+
}[] | undefined;
|
|
6776
|
+
description?: string | undefined;
|
|
6828
6777
|
label?: string | undefined;
|
|
6778
|
+
name?: string | undefined;
|
|
6779
|
+
responsive?: {
|
|
6780
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6781
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6782
|
+
columns?: {
|
|
6783
|
+
xs?: number | undefined;
|
|
6784
|
+
sm?: number | undefined;
|
|
6785
|
+
md?: number | undefined;
|
|
6786
|
+
lg?: number | undefined;
|
|
6787
|
+
xl?: number | undefined;
|
|
6788
|
+
'2xl'?: number | undefined;
|
|
6789
|
+
} | undefined;
|
|
6790
|
+
order?: {
|
|
6791
|
+
xs?: number | undefined;
|
|
6792
|
+
sm?: number | undefined;
|
|
6793
|
+
md?: number | undefined;
|
|
6794
|
+
lg?: number | undefined;
|
|
6795
|
+
xl?: number | undefined;
|
|
6796
|
+
'2xl'?: number | undefined;
|
|
6797
|
+
} | undefined;
|
|
6798
|
+
} | undefined;
|
|
6799
|
+
navigation?: {
|
|
6800
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6801
|
+
preventNavigation: boolean;
|
|
6802
|
+
openNewTab: boolean;
|
|
6803
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
6804
|
+
view?: string | undefined;
|
|
6805
|
+
width?: string | number | undefined;
|
|
6806
|
+
} | undefined;
|
|
6807
|
+
sharing?: {
|
|
6808
|
+
type: "personal" | "collaborative";
|
|
6809
|
+
lockedBy?: string | undefined;
|
|
6810
|
+
} | undefined;
|
|
6811
|
+
aria?: {
|
|
6812
|
+
ariaLabel?: string | undefined;
|
|
6813
|
+
ariaDescribedBy?: string | undefined;
|
|
6814
|
+
role?: string | undefined;
|
|
6815
|
+
} | undefined;
|
|
6829
6816
|
data?: {
|
|
6830
6817
|
provider: "object";
|
|
6831
6818
|
object: string;
|
|
@@ -6853,77 +6840,42 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6853
6840
|
schemaId: string;
|
|
6854
6841
|
schema?: Record<string, unknown> | undefined;
|
|
6855
6842
|
} | undefined;
|
|
6856
|
-
|
|
6857
|
-
|
|
6858
|
-
|
|
6859
|
-
|
|
6860
|
-
|
|
6861
|
-
|
|
6862
|
-
field: string;
|
|
6863
|
-
order: "asc" | "desc";
|
|
6864
|
-
}[] | undefined;
|
|
6865
|
-
searchableFields?: string[] | undefined;
|
|
6866
|
-
filterableFields?: string[] | undefined;
|
|
6867
|
-
userFilters?: {
|
|
6868
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
6869
|
-
fields?: {
|
|
6870
|
-
field: string;
|
|
6871
|
-
label?: string | undefined;
|
|
6872
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
6873
|
-
options?: {
|
|
6874
|
-
value: string | number | boolean;
|
|
6875
|
-
label: string;
|
|
6876
|
-
color?: string | undefined;
|
|
6877
|
-
}[] | undefined;
|
|
6878
|
-
showCount?: boolean | undefined;
|
|
6879
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
6880
|
-
}[] | undefined;
|
|
6881
|
-
tabs?: {
|
|
6882
|
-
name: string;
|
|
6883
|
-
pinned: boolean;
|
|
6884
|
-
isDefault: boolean;
|
|
6885
|
-
visible: boolean;
|
|
6886
|
-
label?: string | undefined;
|
|
6887
|
-
icon?: string | undefined;
|
|
6888
|
-
view?: string | undefined;
|
|
6889
|
-
filter?: {
|
|
6890
|
-
field: string;
|
|
6891
|
-
operator: string;
|
|
6892
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6893
|
-
}[] | undefined;
|
|
6894
|
-
order?: number | undefined;
|
|
6895
|
-
}[] | undefined;
|
|
6896
|
-
showAllRecords?: boolean | undefined;
|
|
6843
|
+
tree?: {
|
|
6844
|
+
[x: string]: unknown;
|
|
6845
|
+
parentField?: string | undefined;
|
|
6846
|
+
labelField?: string | undefined;
|
|
6847
|
+
fields?: string[] | undefined;
|
|
6848
|
+
defaultExpandedDepth?: number | undefined;
|
|
6897
6849
|
} | undefined;
|
|
6850
|
+
inlineEdit?: boolean | undefined;
|
|
6851
|
+
virtualScroll?: boolean | undefined;
|
|
6898
6852
|
resizable?: boolean | undefined;
|
|
6899
|
-
striped?: boolean | undefined;
|
|
6900
|
-
bordered?: boolean | undefined;
|
|
6901
|
-
compactToolbar?: boolean | undefined;
|
|
6902
|
-
selection?: {
|
|
6903
|
-
type: "none" | "multiple" | "single";
|
|
6904
|
-
} | undefined;
|
|
6905
|
-
navigation?: {
|
|
6906
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6907
|
-
preventNavigation: boolean;
|
|
6908
|
-
openNewTab: boolean;
|
|
6909
|
-
view?: string | undefined;
|
|
6910
|
-
width?: string | number | undefined;
|
|
6911
|
-
} | undefined;
|
|
6912
|
-
pagination?: {
|
|
6913
|
-
pageSize: number;
|
|
6914
|
-
pageSizeOptions?: number[] | undefined;
|
|
6915
|
-
} | undefined;
|
|
6916
6853
|
kanban?: {
|
|
6917
6854
|
groupByField: string;
|
|
6918
6855
|
columns: string[];
|
|
6919
6856
|
summarizeField?: string | undefined;
|
|
6920
6857
|
} | undefined;
|
|
6858
|
+
gallery?: {
|
|
6859
|
+
coverFit: "cover" | "contain";
|
|
6860
|
+
cardSize: "small" | "medium" | "large";
|
|
6861
|
+
coverField?: string | undefined;
|
|
6862
|
+
titleField?: string | undefined;
|
|
6863
|
+
visibleFields?: string[] | undefined;
|
|
6864
|
+
} | undefined;
|
|
6921
6865
|
calendar?: {
|
|
6922
6866
|
startDateField: string;
|
|
6923
6867
|
titleField: string;
|
|
6924
6868
|
endDateField?: string | undefined;
|
|
6925
6869
|
colorField?: string | undefined;
|
|
6926
6870
|
} | undefined;
|
|
6871
|
+
timeline?: {
|
|
6872
|
+
startDateField: string;
|
|
6873
|
+
titleField: string;
|
|
6874
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
6875
|
+
endDateField?: string | undefined;
|
|
6876
|
+
groupByField?: string | undefined;
|
|
6877
|
+
colorField?: string | undefined;
|
|
6878
|
+
} | undefined;
|
|
6927
6879
|
gantt?: {
|
|
6928
6880
|
[x: string]: unknown;
|
|
6929
6881
|
startDateField: string;
|
|
@@ -6955,40 +6907,40 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6955
6907
|
}[] | undefined;
|
|
6956
6908
|
autoZoomToFilter?: boolean | undefined;
|
|
6957
6909
|
} | undefined;
|
|
6958
|
-
gallery?: {
|
|
6959
|
-
coverFit: "cover" | "contain";
|
|
6960
|
-
cardSize: "small" | "medium" | "large";
|
|
6961
|
-
coverField?: string | undefined;
|
|
6962
|
-
titleField?: string | undefined;
|
|
6963
|
-
visibleFields?: string[] | undefined;
|
|
6964
|
-
} | undefined;
|
|
6965
|
-
timeline?: {
|
|
6966
|
-
startDateField: string;
|
|
6967
|
-
titleField: string;
|
|
6968
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
6969
|
-
endDateField?: string | undefined;
|
|
6970
|
-
groupByField?: string | undefined;
|
|
6971
|
-
colorField?: string | undefined;
|
|
6972
|
-
} | undefined;
|
|
6973
6910
|
chart?: {
|
|
6974
6911
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6975
6912
|
dataset: string;
|
|
6976
6913
|
values: string[];
|
|
6977
6914
|
dimensions?: string[] | undefined;
|
|
6978
6915
|
} | undefined;
|
|
6979
|
-
|
|
6980
|
-
|
|
6981
|
-
|
|
6982
|
-
|
|
6983
|
-
|
|
6984
|
-
|
|
6916
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6917
|
+
tabs?: {
|
|
6918
|
+
name: string;
|
|
6919
|
+
pinned: boolean;
|
|
6920
|
+
isDefault: boolean;
|
|
6921
|
+
visible: boolean;
|
|
6922
|
+
label?: string | undefined;
|
|
6923
|
+
icon?: string | undefined;
|
|
6924
|
+
view?: string | undefined;
|
|
6925
|
+
filter?: {
|
|
6926
|
+
field: string;
|
|
6927
|
+
operator: string;
|
|
6928
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6929
|
+
}[] | undefined;
|
|
6930
|
+
order?: number | undefined;
|
|
6931
|
+
}[] | undefined;
|
|
6932
|
+
searchableFields?: string[] | undefined;
|
|
6933
|
+
filterableFields?: string[] | undefined;
|
|
6934
|
+
striped?: boolean | undefined;
|
|
6935
|
+
bordered?: boolean | undefined;
|
|
6936
|
+
compactToolbar?: boolean | undefined;
|
|
6937
|
+
selection?: {
|
|
6938
|
+
type: "none" | "multiple" | "single";
|
|
6985
6939
|
} | undefined;
|
|
6986
|
-
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
lockedBy?: string | undefined;
|
|
6940
|
+
pagination?: {
|
|
6941
|
+
pageSize: number;
|
|
6942
|
+
pageSizeOptions?: number[] | undefined;
|
|
6990
6943
|
} | undefined;
|
|
6991
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6992
6944
|
grouping?: {
|
|
6993
6945
|
fields: {
|
|
6994
6946
|
field: string;
|
|
@@ -7005,7 +6957,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7005
6957
|
rowActions?: string[] | undefined;
|
|
7006
6958
|
bulkActions?: string[] | undefined;
|
|
7007
6959
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
7008
|
-
virtualScroll?: boolean | undefined;
|
|
7009
6960
|
conditionalFormatting?: {
|
|
7010
6961
|
condition: {
|
|
7011
6962
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -7026,7 +6977,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7026
6977
|
};
|
|
7027
6978
|
style: Record<string, string>;
|
|
7028
6979
|
}[] | undefined;
|
|
7029
|
-
inlineEdit?: boolean | undefined;
|
|
7030
6980
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
7031
6981
|
userActions?: {
|
|
7032
6982
|
sort: boolean;
|
|
@@ -7039,23 +6989,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7039
6989
|
} | undefined;
|
|
7040
6990
|
appearance?: {
|
|
7041
6991
|
showDescription: boolean;
|
|
7042
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
6992
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
7043
6993
|
} | undefined;
|
|
7044
|
-
tabs?: {
|
|
7045
|
-
name: string;
|
|
7046
|
-
pinned: boolean;
|
|
7047
|
-
isDefault: boolean;
|
|
7048
|
-
visible: boolean;
|
|
7049
|
-
label?: string | undefined;
|
|
7050
|
-
icon?: string | undefined;
|
|
7051
|
-
view?: string | undefined;
|
|
7052
|
-
filter?: {
|
|
7053
|
-
field: string;
|
|
7054
|
-
operator: string;
|
|
7055
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
7056
|
-
}[] | undefined;
|
|
7057
|
-
order?: number | undefined;
|
|
7058
|
-
}[] | undefined;
|
|
7059
6994
|
addRecord?: {
|
|
7060
6995
|
enabled: boolean;
|
|
7061
6996
|
position: "top" | "bottom" | "both";
|
|
@@ -7069,31 +7004,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7069
7004
|
message?: string | undefined;
|
|
7070
7005
|
icon?: string | undefined;
|
|
7071
7006
|
} | undefined;
|
|
7072
|
-
aria?: {
|
|
7073
|
-
ariaLabel?: string | undefined;
|
|
7074
|
-
ariaDescribedBy?: string | undefined;
|
|
7075
|
-
role?: string | undefined;
|
|
7076
|
-
} | undefined;
|
|
7077
|
-
responsive?: {
|
|
7078
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
7079
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
7080
|
-
columns?: {
|
|
7081
|
-
xs?: number | undefined;
|
|
7082
|
-
sm?: number | undefined;
|
|
7083
|
-
md?: number | undefined;
|
|
7084
|
-
lg?: number | undefined;
|
|
7085
|
-
xl?: number | undefined;
|
|
7086
|
-
'2xl'?: number | undefined;
|
|
7087
|
-
} | undefined;
|
|
7088
|
-
order?: {
|
|
7089
|
-
xs?: number | undefined;
|
|
7090
|
-
sm?: number | undefined;
|
|
7091
|
-
md?: number | undefined;
|
|
7092
|
-
lg?: number | undefined;
|
|
7093
|
-
xl?: number | undefined;
|
|
7094
|
-
'2xl'?: number | undefined;
|
|
7095
|
-
} | undefined;
|
|
7096
|
-
} | undefined;
|
|
7097
7007
|
performance?: {
|
|
7098
7008
|
lazyLoad?: boolean | undefined;
|
|
7099
7009
|
virtualScroll?: {
|
|
@@ -7296,7 +7206,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7296
7206
|
readonly inlineTitle?: string | undefined;
|
|
7297
7207
|
readonly inlineColumns?: any[] | undefined;
|
|
7298
7208
|
readonly inlineAmountField?: string | undefined;
|
|
7299
|
-
readonly relatedList?: boolean | undefined;
|
|
7209
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7300
7210
|
readonly relatedListTitle?: string | undefined;
|
|
7301
7211
|
readonly relatedListColumns?: any[] | undefined;
|
|
7302
7212
|
readonly displayField?: string | undefined;
|
|
@@ -7470,7 +7380,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7470
7380
|
readonly inlineTitle?: string | undefined;
|
|
7471
7381
|
readonly inlineColumns?: any[] | undefined;
|
|
7472
7382
|
readonly inlineAmountField?: string | undefined;
|
|
7473
|
-
readonly relatedList?: boolean | undefined;
|
|
7383
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7474
7384
|
readonly relatedListTitle?: string | undefined;
|
|
7475
7385
|
readonly relatedListColumns?: any[] | undefined;
|
|
7476
7386
|
readonly displayField?: string | undefined;
|
|
@@ -7644,7 +7554,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7644
7554
|
readonly inlineTitle?: string | undefined;
|
|
7645
7555
|
readonly inlineColumns?: any[] | undefined;
|
|
7646
7556
|
readonly inlineAmountField?: string | undefined;
|
|
7647
|
-
readonly relatedList?: boolean | undefined;
|
|
7557
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7648
7558
|
readonly relatedListTitle?: string | undefined;
|
|
7649
7559
|
readonly relatedListColumns?: any[] | undefined;
|
|
7650
7560
|
readonly displayField?: string | undefined;
|
|
@@ -7818,7 +7728,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7818
7728
|
readonly inlineTitle?: string | undefined;
|
|
7819
7729
|
readonly inlineColumns?: any[] | undefined;
|
|
7820
7730
|
readonly inlineAmountField?: string | undefined;
|
|
7821
|
-
readonly relatedList?: boolean | undefined;
|
|
7731
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7822
7732
|
readonly relatedListTitle?: string | undefined;
|
|
7823
7733
|
readonly relatedListColumns?: any[] | undefined;
|
|
7824
7734
|
readonly displayField?: string | undefined;
|
|
@@ -7992,7 +7902,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7992
7902
|
readonly inlineTitle?: string | undefined;
|
|
7993
7903
|
readonly inlineColumns?: any[] | undefined;
|
|
7994
7904
|
readonly inlineAmountField?: string | undefined;
|
|
7995
|
-
readonly relatedList?: boolean | undefined;
|
|
7905
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7996
7906
|
readonly relatedListTitle?: string | undefined;
|
|
7997
7907
|
readonly relatedListColumns?: any[] | undefined;
|
|
7998
7908
|
readonly displayField?: string | undefined;
|