@objectstack/plugin-approvals 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/.turbo/turbo-build.log +9 -9
- package/CHANGELOG.md +41 -0
- package/dist/index.d.mts +335 -428
- package/dist/index.d.ts +335 -428
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/sys-approval-action.object.ts +1 -1
- package/src/sys-approval-approver.object.ts +1 -1
- package/src/sys-approval-request.object.ts +1 -1
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;
|
|
@@ -347,10 +347,9 @@ declare const SysApprovalRequest: Omit<{
|
|
|
347
347
|
} | undefined;
|
|
348
348
|
} | undefined;
|
|
349
349
|
highlightFields?: string[] | undefined;
|
|
350
|
-
compactLayout?: string[] | undefined;
|
|
351
350
|
stageField?: string | false | undefined;
|
|
352
351
|
listViews?: Record<string, {
|
|
353
|
-
type: "tree" | "grid" | "kanban" | "
|
|
352
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
354
353
|
columns: string[] | {
|
|
355
354
|
field: string;
|
|
356
355
|
label?: string | undefined;
|
|
@@ -366,8 +365,55 @@ declare const SysApprovalRequest: Omit<{
|
|
|
366
365
|
link?: boolean | undefined;
|
|
367
366
|
action?: string | undefined;
|
|
368
367
|
}[];
|
|
369
|
-
|
|
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;
|
|
370
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;
|
|
371
417
|
data?: {
|
|
372
418
|
provider: "object";
|
|
373
419
|
object: string;
|
|
@@ -395,77 +441,42 @@ declare const SysApprovalRequest: Omit<{
|
|
|
395
441
|
schemaId: string;
|
|
396
442
|
schema?: Record<string, unknown> | undefined;
|
|
397
443
|
} | undefined;
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
field: string;
|
|
405
|
-
order: "asc" | "desc";
|
|
406
|
-
}[] | undefined;
|
|
407
|
-
searchableFields?: string[] | undefined;
|
|
408
|
-
filterableFields?: string[] | undefined;
|
|
409
|
-
userFilters?: {
|
|
410
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
411
|
-
fields?: {
|
|
412
|
-
field: string;
|
|
413
|
-
label?: string | undefined;
|
|
414
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
415
|
-
options?: {
|
|
416
|
-
value: string | number | boolean;
|
|
417
|
-
label: string;
|
|
418
|
-
color?: string | undefined;
|
|
419
|
-
}[] | undefined;
|
|
420
|
-
showCount?: boolean | undefined;
|
|
421
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
422
|
-
}[] | undefined;
|
|
423
|
-
tabs?: {
|
|
424
|
-
name: string;
|
|
425
|
-
pinned: boolean;
|
|
426
|
-
isDefault: boolean;
|
|
427
|
-
visible: boolean;
|
|
428
|
-
label?: string | undefined;
|
|
429
|
-
icon?: string | undefined;
|
|
430
|
-
view?: string | undefined;
|
|
431
|
-
filter?: {
|
|
432
|
-
field: string;
|
|
433
|
-
operator: string;
|
|
434
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
435
|
-
}[] | undefined;
|
|
436
|
-
order?: number | undefined;
|
|
437
|
-
}[] | undefined;
|
|
438
|
-
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;
|
|
439
450
|
} | undefined;
|
|
451
|
+
inlineEdit?: boolean | undefined;
|
|
452
|
+
virtualScroll?: boolean | undefined;
|
|
440
453
|
resizable?: boolean | undefined;
|
|
441
|
-
striped?: boolean | undefined;
|
|
442
|
-
bordered?: boolean | undefined;
|
|
443
|
-
compactToolbar?: boolean | undefined;
|
|
444
|
-
selection?: {
|
|
445
|
-
type: "none" | "multiple" | "single";
|
|
446
|
-
} | undefined;
|
|
447
|
-
navigation?: {
|
|
448
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
449
|
-
preventNavigation: boolean;
|
|
450
|
-
openNewTab: boolean;
|
|
451
|
-
view?: string | undefined;
|
|
452
|
-
width?: string | number | undefined;
|
|
453
|
-
} | undefined;
|
|
454
|
-
pagination?: {
|
|
455
|
-
pageSize: number;
|
|
456
|
-
pageSizeOptions?: number[] | undefined;
|
|
457
|
-
} | undefined;
|
|
458
454
|
kanban?: {
|
|
459
455
|
groupByField: string;
|
|
460
456
|
columns: string[];
|
|
461
457
|
summarizeField?: string | undefined;
|
|
462
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;
|
|
463
466
|
calendar?: {
|
|
464
467
|
startDateField: string;
|
|
465
468
|
titleField: string;
|
|
466
469
|
endDateField?: string | undefined;
|
|
467
470
|
colorField?: string | undefined;
|
|
468
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;
|
|
469
480
|
gantt?: {
|
|
470
481
|
[x: string]: unknown;
|
|
471
482
|
startDateField: string;
|
|
@@ -497,40 +508,40 @@ declare const SysApprovalRequest: Omit<{
|
|
|
497
508
|
}[] | undefined;
|
|
498
509
|
autoZoomToFilter?: boolean | undefined;
|
|
499
510
|
} | undefined;
|
|
500
|
-
gallery?: {
|
|
501
|
-
coverFit: "cover" | "contain";
|
|
502
|
-
cardSize: "small" | "medium" | "large";
|
|
503
|
-
coverField?: string | undefined;
|
|
504
|
-
titleField?: string | undefined;
|
|
505
|
-
visibleFields?: string[] | undefined;
|
|
506
|
-
} | undefined;
|
|
507
|
-
timeline?: {
|
|
508
|
-
startDateField: string;
|
|
509
|
-
titleField: string;
|
|
510
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
511
|
-
endDateField?: string | undefined;
|
|
512
|
-
groupByField?: string | undefined;
|
|
513
|
-
colorField?: string | undefined;
|
|
514
|
-
} | undefined;
|
|
515
511
|
chart?: {
|
|
516
512
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
517
513
|
dataset: string;
|
|
518
514
|
values: string[];
|
|
519
515
|
dimensions?: string[] | undefined;
|
|
520
516
|
} | undefined;
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
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";
|
|
527
540
|
} | undefined;
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
lockedBy?: string | undefined;
|
|
541
|
+
pagination?: {
|
|
542
|
+
pageSize: number;
|
|
543
|
+
pageSizeOptions?: number[] | undefined;
|
|
532
544
|
} | undefined;
|
|
533
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
534
545
|
grouping?: {
|
|
535
546
|
fields: {
|
|
536
547
|
field: string;
|
|
@@ -547,7 +558,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
547
558
|
rowActions?: string[] | undefined;
|
|
548
559
|
bulkActions?: string[] | undefined;
|
|
549
560
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
550
|
-
virtualScroll?: boolean | undefined;
|
|
551
561
|
conditionalFormatting?: {
|
|
552
562
|
condition: {
|
|
553
563
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -568,7 +578,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
568
578
|
};
|
|
569
579
|
style: Record<string, string>;
|
|
570
580
|
}[] | undefined;
|
|
571
|
-
inlineEdit?: boolean | undefined;
|
|
572
581
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
573
582
|
userActions?: {
|
|
574
583
|
sort: boolean;
|
|
@@ -581,23 +590,8 @@ declare const SysApprovalRequest: Omit<{
|
|
|
581
590
|
} | undefined;
|
|
582
591
|
appearance?: {
|
|
583
592
|
showDescription: boolean;
|
|
584
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
593
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
585
594
|
} | undefined;
|
|
586
|
-
tabs?: {
|
|
587
|
-
name: string;
|
|
588
|
-
pinned: boolean;
|
|
589
|
-
isDefault: boolean;
|
|
590
|
-
visible: boolean;
|
|
591
|
-
label?: string | undefined;
|
|
592
|
-
icon?: string | undefined;
|
|
593
|
-
view?: string | undefined;
|
|
594
|
-
filter?: {
|
|
595
|
-
field: string;
|
|
596
|
-
operator: string;
|
|
597
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
598
|
-
}[] | undefined;
|
|
599
|
-
order?: number | undefined;
|
|
600
|
-
}[] | undefined;
|
|
601
595
|
addRecord?: {
|
|
602
596
|
enabled: boolean;
|
|
603
597
|
position: "top" | "bottom" | "both";
|
|
@@ -611,31 +605,6 @@ declare const SysApprovalRequest: Omit<{
|
|
|
611
605
|
message?: string | undefined;
|
|
612
606
|
icon?: string | undefined;
|
|
613
607
|
} | undefined;
|
|
614
|
-
aria?: {
|
|
615
|
-
ariaLabel?: string | undefined;
|
|
616
|
-
ariaDescribedBy?: string | undefined;
|
|
617
|
-
role?: string | undefined;
|
|
618
|
-
} | undefined;
|
|
619
|
-
responsive?: {
|
|
620
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
621
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
622
|
-
columns?: {
|
|
623
|
-
xs?: number | undefined;
|
|
624
|
-
sm?: number | undefined;
|
|
625
|
-
md?: number | undefined;
|
|
626
|
-
lg?: number | undefined;
|
|
627
|
-
xl?: number | undefined;
|
|
628
|
-
'2xl'?: number | undefined;
|
|
629
|
-
} | undefined;
|
|
630
|
-
order?: {
|
|
631
|
-
xs?: number | undefined;
|
|
632
|
-
sm?: number | undefined;
|
|
633
|
-
md?: number | undefined;
|
|
634
|
-
lg?: number | undefined;
|
|
635
|
-
xl?: number | undefined;
|
|
636
|
-
'2xl'?: number | undefined;
|
|
637
|
-
} | undefined;
|
|
638
|
-
} | undefined;
|
|
639
608
|
performance?: {
|
|
640
609
|
lazyLoad?: boolean | undefined;
|
|
641
610
|
virtualScroll?: {
|
|
@@ -797,7 +766,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
797
766
|
readonly displayNameField: "id";
|
|
798
767
|
readonly nameField: "id";
|
|
799
768
|
readonly titleFormat: "{process_name} · {record_id}";
|
|
800
|
-
readonly
|
|
769
|
+
readonly highlightFields: ["process_name", "object_name", "record_id", "status", "current_step", "submitter_id", "updated_at"];
|
|
801
770
|
readonly listViews: {
|
|
802
771
|
readonly my_pending: {
|
|
803
772
|
readonly type: "grid";
|
|
@@ -931,7 +900,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
931
900
|
readonly inlineTitle?: string | undefined;
|
|
932
901
|
readonly inlineColumns?: any[] | undefined;
|
|
933
902
|
readonly inlineAmountField?: string | undefined;
|
|
934
|
-
readonly relatedList?: boolean | undefined;
|
|
903
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
935
904
|
readonly relatedListTitle?: string | undefined;
|
|
936
905
|
readonly relatedListColumns?: any[] | undefined;
|
|
937
906
|
readonly displayField?: string | undefined;
|
|
@@ -1105,7 +1074,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1105
1074
|
readonly inlineTitle?: string | undefined;
|
|
1106
1075
|
readonly inlineColumns?: any[] | undefined;
|
|
1107
1076
|
readonly inlineAmountField?: string | undefined;
|
|
1108
|
-
readonly relatedList?: boolean | undefined;
|
|
1077
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1109
1078
|
readonly relatedListTitle?: string | undefined;
|
|
1110
1079
|
readonly relatedListColumns?: any[] | undefined;
|
|
1111
1080
|
readonly displayField?: string | undefined;
|
|
@@ -1279,7 +1248,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1279
1248
|
readonly inlineTitle?: string | undefined;
|
|
1280
1249
|
readonly inlineColumns?: any[] | undefined;
|
|
1281
1250
|
readonly inlineAmountField?: string | undefined;
|
|
1282
|
-
readonly relatedList?: boolean | undefined;
|
|
1251
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1283
1252
|
readonly relatedListTitle?: string | undefined;
|
|
1284
1253
|
readonly relatedListColumns?: any[] | undefined;
|
|
1285
1254
|
readonly displayField?: string | undefined;
|
|
@@ -1453,7 +1422,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1453
1422
|
readonly inlineTitle?: string | undefined;
|
|
1454
1423
|
readonly inlineColumns?: any[] | undefined;
|
|
1455
1424
|
readonly inlineAmountField?: string | undefined;
|
|
1456
|
-
readonly relatedList?: boolean | undefined;
|
|
1425
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1457
1426
|
readonly relatedListTitle?: string | undefined;
|
|
1458
1427
|
readonly relatedListColumns?: any[] | undefined;
|
|
1459
1428
|
readonly displayField?: string | undefined;
|
|
@@ -1627,7 +1596,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1627
1596
|
readonly inlineTitle?: string | undefined;
|
|
1628
1597
|
readonly inlineColumns?: any[] | undefined;
|
|
1629
1598
|
readonly inlineAmountField?: string | undefined;
|
|
1630
|
-
readonly relatedList?: boolean | undefined;
|
|
1599
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1631
1600
|
readonly relatedListTitle?: string | undefined;
|
|
1632
1601
|
readonly relatedListColumns?: any[] | undefined;
|
|
1633
1602
|
readonly displayField?: string | undefined;
|
|
@@ -1801,7 +1770,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1801
1770
|
readonly inlineTitle?: string | undefined;
|
|
1802
1771
|
readonly inlineColumns?: any[] | undefined;
|
|
1803
1772
|
readonly inlineAmountField?: string | undefined;
|
|
1804
|
-
readonly relatedList?: boolean | undefined;
|
|
1773
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1805
1774
|
readonly relatedListTitle?: string | undefined;
|
|
1806
1775
|
readonly relatedListColumns?: any[] | undefined;
|
|
1807
1776
|
readonly displayField?: string | undefined;
|
|
@@ -1975,7 +1944,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
1975
1944
|
readonly inlineTitle?: string | undefined;
|
|
1976
1945
|
readonly inlineColumns?: any[] | undefined;
|
|
1977
1946
|
readonly inlineAmountField?: string | undefined;
|
|
1978
|
-
readonly relatedList?: boolean | undefined;
|
|
1947
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1979
1948
|
readonly relatedListTitle?: string | undefined;
|
|
1980
1949
|
readonly relatedListColumns?: any[] | undefined;
|
|
1981
1950
|
readonly displayField?: string | undefined;
|
|
@@ -2149,7 +2118,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2149
2118
|
readonly inlineTitle?: string | undefined;
|
|
2150
2119
|
readonly inlineColumns?: any[] | undefined;
|
|
2151
2120
|
readonly inlineAmountField?: string | undefined;
|
|
2152
|
-
readonly relatedList?: boolean | undefined;
|
|
2121
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2153
2122
|
readonly relatedListTitle?: string | undefined;
|
|
2154
2123
|
readonly relatedListColumns?: any[] | undefined;
|
|
2155
2124
|
readonly displayField?: string | undefined;
|
|
@@ -2323,7 +2292,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2323
2292
|
readonly inlineTitle?: string | undefined;
|
|
2324
2293
|
readonly inlineColumns?: any[] | undefined;
|
|
2325
2294
|
readonly inlineAmountField?: string | undefined;
|
|
2326
|
-
readonly relatedList?: boolean | undefined;
|
|
2295
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2327
2296
|
readonly relatedListTitle?: string | undefined;
|
|
2328
2297
|
readonly relatedListColumns?: any[] | undefined;
|
|
2329
2298
|
readonly displayField?: string | undefined;
|
|
@@ -2497,7 +2466,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2497
2466
|
readonly inlineTitle?: string | undefined;
|
|
2498
2467
|
readonly inlineColumns?: any[] | undefined;
|
|
2499
2468
|
readonly inlineAmountField?: string | undefined;
|
|
2500
|
-
readonly relatedList?: boolean | undefined;
|
|
2469
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2501
2470
|
readonly relatedListTitle?: string | undefined;
|
|
2502
2471
|
readonly relatedListColumns?: any[] | undefined;
|
|
2503
2472
|
readonly displayField?: string | undefined;
|
|
@@ -2671,7 +2640,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2671
2640
|
readonly inlineTitle?: string | undefined;
|
|
2672
2641
|
readonly inlineColumns?: any[] | undefined;
|
|
2673
2642
|
readonly inlineAmountField?: string | undefined;
|
|
2674
|
-
readonly relatedList?: boolean | undefined;
|
|
2643
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2675
2644
|
readonly relatedListTitle?: string | undefined;
|
|
2676
2645
|
readonly relatedListColumns?: any[] | undefined;
|
|
2677
2646
|
readonly displayField?: string | undefined;
|
|
@@ -2845,7 +2814,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
2845
2814
|
readonly inlineTitle?: string | undefined;
|
|
2846
2815
|
readonly inlineColumns?: any[] | undefined;
|
|
2847
2816
|
readonly inlineAmountField?: string | undefined;
|
|
2848
|
-
readonly relatedList?: boolean | undefined;
|
|
2817
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2849
2818
|
readonly relatedListTitle?: string | undefined;
|
|
2850
2819
|
readonly relatedListColumns?: any[] | undefined;
|
|
2851
2820
|
readonly displayField?: string | undefined;
|
|
@@ -3019,7 +2988,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3019
2988
|
readonly inlineTitle?: string | undefined;
|
|
3020
2989
|
readonly inlineColumns?: any[] | undefined;
|
|
3021
2990
|
readonly inlineAmountField?: string | undefined;
|
|
3022
|
-
readonly relatedList?: boolean | undefined;
|
|
2991
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3023
2992
|
readonly relatedListTitle?: string | undefined;
|
|
3024
2993
|
readonly relatedListColumns?: any[] | undefined;
|
|
3025
2994
|
readonly displayField?: string | undefined;
|
|
@@ -3193,7 +3162,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3193
3162
|
readonly inlineTitle?: string | undefined;
|
|
3194
3163
|
readonly inlineColumns?: any[] | undefined;
|
|
3195
3164
|
readonly inlineAmountField?: string | undefined;
|
|
3196
|
-
readonly relatedList?: boolean | undefined;
|
|
3165
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3197
3166
|
readonly relatedListTitle?: string | undefined;
|
|
3198
3167
|
readonly relatedListColumns?: any[] | undefined;
|
|
3199
3168
|
readonly displayField?: string | undefined;
|
|
@@ -3367,7 +3336,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3367
3336
|
readonly inlineTitle?: string | undefined;
|
|
3368
3337
|
readonly inlineColumns?: any[] | undefined;
|
|
3369
3338
|
readonly inlineAmountField?: string | undefined;
|
|
3370
|
-
readonly relatedList?: boolean | undefined;
|
|
3339
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3371
3340
|
readonly relatedListTitle?: string | undefined;
|
|
3372
3341
|
readonly relatedListColumns?: any[] | undefined;
|
|
3373
3342
|
readonly displayField?: string | undefined;
|
|
@@ -3541,7 +3510,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3541
3510
|
readonly inlineTitle?: string | undefined;
|
|
3542
3511
|
readonly inlineColumns?: any[] | undefined;
|
|
3543
3512
|
readonly inlineAmountField?: string | undefined;
|
|
3544
|
-
readonly relatedList?: boolean | undefined;
|
|
3513
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3545
3514
|
readonly relatedListTitle?: string | undefined;
|
|
3546
3515
|
readonly relatedListColumns?: any[] | undefined;
|
|
3547
3516
|
readonly displayField?: string | undefined;
|
|
@@ -3715,7 +3684,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3715
3684
|
readonly inlineTitle?: string | undefined;
|
|
3716
3685
|
readonly inlineColumns?: any[] | undefined;
|
|
3717
3686
|
readonly inlineAmountField?: string | undefined;
|
|
3718
|
-
readonly relatedList?: boolean | undefined;
|
|
3687
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3719
3688
|
readonly relatedListTitle?: string | undefined;
|
|
3720
3689
|
readonly relatedListColumns?: any[] | undefined;
|
|
3721
3690
|
readonly displayField?: string | undefined;
|
|
@@ -3889,7 +3858,7 @@ declare const SysApprovalRequest: Omit<{
|
|
|
3889
3858
|
readonly inlineTitle?: string | undefined;
|
|
3890
3859
|
readonly inlineColumns?: any[] | undefined;
|
|
3891
3860
|
readonly inlineAmountField?: string | undefined;
|
|
3892
|
-
readonly relatedList?: boolean | undefined;
|
|
3861
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3893
3862
|
readonly relatedListTitle?: string | undefined;
|
|
3894
3863
|
readonly relatedListColumns?: any[] | undefined;
|
|
3895
3864
|
readonly displayField?: string | undefined;
|
|
@@ -4089,7 +4058,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4089
4058
|
inlineTitle?: string | undefined;
|
|
4090
4059
|
inlineColumns?: any[] | undefined;
|
|
4091
4060
|
inlineAmountField?: string | undefined;
|
|
4092
|
-
relatedList?: boolean | undefined;
|
|
4061
|
+
relatedList?: boolean | "primary" | undefined;
|
|
4093
4062
|
relatedListTitle?: string | undefined;
|
|
4094
4063
|
relatedListColumns?: any[] | undefined;
|
|
4095
4064
|
displayField?: string | undefined;
|
|
@@ -4370,10 +4339,9 @@ declare const SysApprovalAction: Omit<{
|
|
|
4370
4339
|
} | undefined;
|
|
4371
4340
|
} | undefined;
|
|
4372
4341
|
highlightFields?: string[] | undefined;
|
|
4373
|
-
compactLayout?: string[] | undefined;
|
|
4374
4342
|
stageField?: string | false | undefined;
|
|
4375
4343
|
listViews?: Record<string, {
|
|
4376
|
-
type: "tree" | "grid" | "kanban" | "
|
|
4344
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
4377
4345
|
columns: string[] | {
|
|
4378
4346
|
field: string;
|
|
4379
4347
|
label?: string | undefined;
|
|
@@ -4389,8 +4357,55 @@ declare const SysApprovalAction: Omit<{
|
|
|
4389
4357
|
link?: boolean | undefined;
|
|
4390
4358
|
action?: string | undefined;
|
|
4391
4359
|
}[];
|
|
4392
|
-
|
|
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;
|
|
4393
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;
|
|
4394
4409
|
data?: {
|
|
4395
4410
|
provider: "object";
|
|
4396
4411
|
object: string;
|
|
@@ -4418,77 +4433,42 @@ declare const SysApprovalAction: Omit<{
|
|
|
4418
4433
|
schemaId: string;
|
|
4419
4434
|
schema?: Record<string, unknown> | undefined;
|
|
4420
4435
|
} | undefined;
|
|
4421
|
-
|
|
4422
|
-
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
field: string;
|
|
4428
|
-
order: "asc" | "desc";
|
|
4429
|
-
}[] | undefined;
|
|
4430
|
-
searchableFields?: string[] | undefined;
|
|
4431
|
-
filterableFields?: string[] | undefined;
|
|
4432
|
-
userFilters?: {
|
|
4433
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
4434
|
-
fields?: {
|
|
4435
|
-
field: string;
|
|
4436
|
-
label?: string | undefined;
|
|
4437
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
4438
|
-
options?: {
|
|
4439
|
-
value: string | number | boolean;
|
|
4440
|
-
label: string;
|
|
4441
|
-
color?: string | undefined;
|
|
4442
|
-
}[] | undefined;
|
|
4443
|
-
showCount?: boolean | undefined;
|
|
4444
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
4445
|
-
}[] | undefined;
|
|
4446
|
-
tabs?: {
|
|
4447
|
-
name: string;
|
|
4448
|
-
pinned: boolean;
|
|
4449
|
-
isDefault: boolean;
|
|
4450
|
-
visible: boolean;
|
|
4451
|
-
label?: string | undefined;
|
|
4452
|
-
icon?: string | undefined;
|
|
4453
|
-
view?: string | undefined;
|
|
4454
|
-
filter?: {
|
|
4455
|
-
field: string;
|
|
4456
|
-
operator: string;
|
|
4457
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4458
|
-
}[] | undefined;
|
|
4459
|
-
order?: number | undefined;
|
|
4460
|
-
}[] | undefined;
|
|
4461
|
-
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;
|
|
4462
4442
|
} | undefined;
|
|
4443
|
+
inlineEdit?: boolean | undefined;
|
|
4444
|
+
virtualScroll?: boolean | undefined;
|
|
4463
4445
|
resizable?: boolean | undefined;
|
|
4464
|
-
striped?: boolean | undefined;
|
|
4465
|
-
bordered?: boolean | undefined;
|
|
4466
|
-
compactToolbar?: boolean | undefined;
|
|
4467
|
-
selection?: {
|
|
4468
|
-
type: "none" | "multiple" | "single";
|
|
4469
|
-
} | undefined;
|
|
4470
|
-
navigation?: {
|
|
4471
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
4472
|
-
preventNavigation: boolean;
|
|
4473
|
-
openNewTab: boolean;
|
|
4474
|
-
view?: string | undefined;
|
|
4475
|
-
width?: string | number | undefined;
|
|
4476
|
-
} | undefined;
|
|
4477
|
-
pagination?: {
|
|
4478
|
-
pageSize: number;
|
|
4479
|
-
pageSizeOptions?: number[] | undefined;
|
|
4480
|
-
} | undefined;
|
|
4481
4446
|
kanban?: {
|
|
4482
4447
|
groupByField: string;
|
|
4483
4448
|
columns: string[];
|
|
4484
4449
|
summarizeField?: string | undefined;
|
|
4485
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;
|
|
4486
4458
|
calendar?: {
|
|
4487
4459
|
startDateField: string;
|
|
4488
4460
|
titleField: string;
|
|
4489
4461
|
endDateField?: string | undefined;
|
|
4490
4462
|
colorField?: string | undefined;
|
|
4491
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;
|
|
4492
4472
|
gantt?: {
|
|
4493
4473
|
[x: string]: unknown;
|
|
4494
4474
|
startDateField: string;
|
|
@@ -4520,40 +4500,40 @@ declare const SysApprovalAction: Omit<{
|
|
|
4520
4500
|
}[] | undefined;
|
|
4521
4501
|
autoZoomToFilter?: boolean | undefined;
|
|
4522
4502
|
} | undefined;
|
|
4523
|
-
gallery?: {
|
|
4524
|
-
coverFit: "cover" | "contain";
|
|
4525
|
-
cardSize: "small" | "medium" | "large";
|
|
4526
|
-
coverField?: string | undefined;
|
|
4527
|
-
titleField?: string | undefined;
|
|
4528
|
-
visibleFields?: string[] | undefined;
|
|
4529
|
-
} | undefined;
|
|
4530
|
-
timeline?: {
|
|
4531
|
-
startDateField: string;
|
|
4532
|
-
titleField: string;
|
|
4533
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
4534
|
-
endDateField?: string | undefined;
|
|
4535
|
-
groupByField?: string | undefined;
|
|
4536
|
-
colorField?: string | undefined;
|
|
4537
|
-
} | undefined;
|
|
4538
4503
|
chart?: {
|
|
4539
4504
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
4540
4505
|
dataset: string;
|
|
4541
4506
|
values: string[];
|
|
4542
4507
|
dimensions?: string[] | undefined;
|
|
4543
4508
|
} | undefined;
|
|
4544
|
-
|
|
4545
|
-
|
|
4546
|
-
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
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";
|
|
4550
4532
|
} | undefined;
|
|
4551
|
-
|
|
4552
|
-
|
|
4553
|
-
|
|
4554
|
-
lockedBy?: string | undefined;
|
|
4533
|
+
pagination?: {
|
|
4534
|
+
pageSize: number;
|
|
4535
|
+
pageSizeOptions?: number[] | undefined;
|
|
4555
4536
|
} | undefined;
|
|
4556
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
4557
4537
|
grouping?: {
|
|
4558
4538
|
fields: {
|
|
4559
4539
|
field: string;
|
|
@@ -4570,7 +4550,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4570
4550
|
rowActions?: string[] | undefined;
|
|
4571
4551
|
bulkActions?: string[] | undefined;
|
|
4572
4552
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
4573
|
-
virtualScroll?: boolean | undefined;
|
|
4574
4553
|
conditionalFormatting?: {
|
|
4575
4554
|
condition: {
|
|
4576
4555
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -4591,7 +4570,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4591
4570
|
};
|
|
4592
4571
|
style: Record<string, string>;
|
|
4593
4572
|
}[] | undefined;
|
|
4594
|
-
inlineEdit?: boolean | undefined;
|
|
4595
4573
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
4596
4574
|
userActions?: {
|
|
4597
4575
|
sort: boolean;
|
|
@@ -4604,23 +4582,8 @@ declare const SysApprovalAction: Omit<{
|
|
|
4604
4582
|
} | undefined;
|
|
4605
4583
|
appearance?: {
|
|
4606
4584
|
showDescription: boolean;
|
|
4607
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
4585
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
4608
4586
|
} | undefined;
|
|
4609
|
-
tabs?: {
|
|
4610
|
-
name: string;
|
|
4611
|
-
pinned: boolean;
|
|
4612
|
-
isDefault: boolean;
|
|
4613
|
-
visible: boolean;
|
|
4614
|
-
label?: string | undefined;
|
|
4615
|
-
icon?: string | undefined;
|
|
4616
|
-
view?: string | undefined;
|
|
4617
|
-
filter?: {
|
|
4618
|
-
field: string;
|
|
4619
|
-
operator: string;
|
|
4620
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
4621
|
-
}[] | undefined;
|
|
4622
|
-
order?: number | undefined;
|
|
4623
|
-
}[] | undefined;
|
|
4624
4587
|
addRecord?: {
|
|
4625
4588
|
enabled: boolean;
|
|
4626
4589
|
position: "top" | "bottom" | "both";
|
|
@@ -4634,31 +4597,6 @@ declare const SysApprovalAction: Omit<{
|
|
|
4634
4597
|
message?: string | undefined;
|
|
4635
4598
|
icon?: string | undefined;
|
|
4636
4599
|
} | undefined;
|
|
4637
|
-
aria?: {
|
|
4638
|
-
ariaLabel?: string | undefined;
|
|
4639
|
-
ariaDescribedBy?: string | undefined;
|
|
4640
|
-
role?: string | undefined;
|
|
4641
|
-
} | undefined;
|
|
4642
|
-
responsive?: {
|
|
4643
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
4644
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
4645
|
-
columns?: {
|
|
4646
|
-
xs?: number | undefined;
|
|
4647
|
-
sm?: number | undefined;
|
|
4648
|
-
md?: number | undefined;
|
|
4649
|
-
lg?: number | undefined;
|
|
4650
|
-
xl?: number | undefined;
|
|
4651
|
-
'2xl'?: number | undefined;
|
|
4652
|
-
} | undefined;
|
|
4653
|
-
order?: {
|
|
4654
|
-
xs?: number | undefined;
|
|
4655
|
-
sm?: number | undefined;
|
|
4656
|
-
md?: number | undefined;
|
|
4657
|
-
lg?: number | undefined;
|
|
4658
|
-
xl?: number | undefined;
|
|
4659
|
-
'2xl'?: number | undefined;
|
|
4660
|
-
} | undefined;
|
|
4661
|
-
} | undefined;
|
|
4662
4600
|
performance?: {
|
|
4663
4601
|
lazyLoad?: boolean | undefined;
|
|
4664
4602
|
virtualScroll?: {
|
|
@@ -4820,7 +4758,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4820
4758
|
readonly displayNameField: "id";
|
|
4821
4759
|
readonly nameField: "id";
|
|
4822
4760
|
readonly titleFormat: "{action} · {step_name}";
|
|
4823
|
-
readonly
|
|
4761
|
+
readonly highlightFields: ["request_id", "step_name", "action", "actor_id", "created_at"];
|
|
4824
4762
|
readonly listViews: {
|
|
4825
4763
|
readonly recent: {
|
|
4826
4764
|
readonly type: "grid";
|
|
@@ -4928,7 +4866,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
4928
4866
|
readonly inlineTitle?: string | undefined;
|
|
4929
4867
|
readonly inlineColumns?: any[] | undefined;
|
|
4930
4868
|
readonly inlineAmountField?: string | undefined;
|
|
4931
|
-
readonly relatedList?: boolean | undefined;
|
|
4869
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4932
4870
|
readonly relatedListTitle?: string | undefined;
|
|
4933
4871
|
readonly relatedListColumns?: any[] | undefined;
|
|
4934
4872
|
readonly displayField?: string | undefined;
|
|
@@ -5102,7 +5040,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5102
5040
|
readonly inlineTitle?: string | undefined;
|
|
5103
5041
|
readonly inlineColumns?: any[] | undefined;
|
|
5104
5042
|
readonly inlineAmountField?: string | undefined;
|
|
5105
|
-
readonly relatedList?: boolean | undefined;
|
|
5043
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5106
5044
|
readonly relatedListTitle?: string | undefined;
|
|
5107
5045
|
readonly relatedListColumns?: any[] | undefined;
|
|
5108
5046
|
readonly displayField?: string | undefined;
|
|
@@ -5276,7 +5214,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5276
5214
|
readonly inlineTitle?: string | undefined;
|
|
5277
5215
|
readonly inlineColumns?: any[] | undefined;
|
|
5278
5216
|
readonly inlineAmountField?: string | undefined;
|
|
5279
|
-
readonly relatedList?: boolean | undefined;
|
|
5217
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5280
5218
|
readonly relatedListTitle?: string | undefined;
|
|
5281
5219
|
readonly relatedListColumns?: any[] | undefined;
|
|
5282
5220
|
readonly displayField?: string | undefined;
|
|
@@ -5450,7 +5388,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5450
5388
|
readonly inlineTitle?: string | undefined;
|
|
5451
5389
|
readonly inlineColumns?: any[] | undefined;
|
|
5452
5390
|
readonly inlineAmountField?: string | undefined;
|
|
5453
|
-
readonly relatedList?: boolean | undefined;
|
|
5391
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5454
5392
|
readonly relatedListTitle?: string | undefined;
|
|
5455
5393
|
readonly relatedListColumns?: any[] | undefined;
|
|
5456
5394
|
readonly displayField?: string | undefined;
|
|
@@ -5624,7 +5562,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5624
5562
|
readonly inlineTitle?: string | undefined;
|
|
5625
5563
|
readonly inlineColumns?: any[] | undefined;
|
|
5626
5564
|
readonly inlineAmountField?: string | undefined;
|
|
5627
|
-
readonly relatedList?: boolean | undefined;
|
|
5565
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5628
5566
|
readonly relatedListTitle?: string | undefined;
|
|
5629
5567
|
readonly relatedListColumns?: any[] | undefined;
|
|
5630
5568
|
readonly displayField?: string | undefined;
|
|
@@ -5798,7 +5736,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5798
5736
|
readonly inlineTitle?: string | undefined;
|
|
5799
5737
|
readonly inlineColumns?: any[] | undefined;
|
|
5800
5738
|
readonly inlineAmountField?: string | undefined;
|
|
5801
|
-
readonly relatedList?: boolean | undefined;
|
|
5739
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5802
5740
|
readonly relatedListTitle?: string | undefined;
|
|
5803
5741
|
readonly relatedListColumns?: any[] | undefined;
|
|
5804
5742
|
readonly displayField?: string | undefined;
|
|
@@ -5972,7 +5910,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
5972
5910
|
readonly inlineTitle?: string | undefined;
|
|
5973
5911
|
readonly inlineColumns?: any[] | undefined;
|
|
5974
5912
|
readonly inlineAmountField?: string | undefined;
|
|
5975
|
-
readonly relatedList?: boolean | undefined;
|
|
5913
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5976
5914
|
readonly relatedListTitle?: string | undefined;
|
|
5977
5915
|
readonly relatedListColumns?: any[] | undefined;
|
|
5978
5916
|
readonly displayField?: string | undefined;
|
|
@@ -6146,7 +6084,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6146
6084
|
readonly inlineTitle?: string | undefined;
|
|
6147
6085
|
readonly inlineColumns?: any[] | undefined;
|
|
6148
6086
|
readonly inlineAmountField?: string | undefined;
|
|
6149
|
-
readonly relatedList?: boolean | undefined;
|
|
6087
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6150
6088
|
readonly relatedListTitle?: string | undefined;
|
|
6151
6089
|
readonly relatedListColumns?: any[] | undefined;
|
|
6152
6090
|
readonly displayField?: string | undefined;
|
|
@@ -6320,7 +6258,7 @@ declare const SysApprovalAction: Omit<{
|
|
|
6320
6258
|
readonly inlineTitle?: string | undefined;
|
|
6321
6259
|
readonly inlineColumns?: any[] | undefined;
|
|
6322
6260
|
readonly inlineAmountField?: string | undefined;
|
|
6323
|
-
readonly relatedList?: boolean | undefined;
|
|
6261
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6324
6262
|
readonly relatedListTitle?: string | undefined;
|
|
6325
6263
|
readonly relatedListColumns?: any[] | undefined;
|
|
6326
6264
|
readonly displayField?: string | undefined;
|
|
@@ -6527,7 +6465,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6527
6465
|
inlineTitle?: string | undefined;
|
|
6528
6466
|
inlineColumns?: any[] | undefined;
|
|
6529
6467
|
inlineAmountField?: string | undefined;
|
|
6530
|
-
relatedList?: boolean | undefined;
|
|
6468
|
+
relatedList?: boolean | "primary" | undefined;
|
|
6531
6469
|
relatedListTitle?: string | undefined;
|
|
6532
6470
|
relatedListColumns?: any[] | undefined;
|
|
6533
6471
|
displayField?: string | undefined;
|
|
@@ -6808,10 +6746,9 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6808
6746
|
} | undefined;
|
|
6809
6747
|
} | undefined;
|
|
6810
6748
|
highlightFields?: string[] | undefined;
|
|
6811
|
-
compactLayout?: string[] | undefined;
|
|
6812
6749
|
stageField?: string | false | undefined;
|
|
6813
6750
|
listViews?: Record<string, {
|
|
6814
|
-
type: "tree" | "grid" | "kanban" | "
|
|
6751
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
6815
6752
|
columns: string[] | {
|
|
6816
6753
|
field: string;
|
|
6817
6754
|
label?: string | undefined;
|
|
@@ -6827,8 +6764,55 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6827
6764
|
link?: boolean | undefined;
|
|
6828
6765
|
action?: string | undefined;
|
|
6829
6766
|
}[];
|
|
6830
|
-
|
|
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;
|
|
6831
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;
|
|
6832
6816
|
data?: {
|
|
6833
6817
|
provider: "object";
|
|
6834
6818
|
object: string;
|
|
@@ -6856,77 +6840,42 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6856
6840
|
schemaId: string;
|
|
6857
6841
|
schema?: Record<string, unknown> | undefined;
|
|
6858
6842
|
} | undefined;
|
|
6859
|
-
|
|
6860
|
-
|
|
6861
|
-
|
|
6862
|
-
|
|
6863
|
-
|
|
6864
|
-
|
|
6865
|
-
field: string;
|
|
6866
|
-
order: "asc" | "desc";
|
|
6867
|
-
}[] | undefined;
|
|
6868
|
-
searchableFields?: string[] | undefined;
|
|
6869
|
-
filterableFields?: string[] | undefined;
|
|
6870
|
-
userFilters?: {
|
|
6871
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
6872
|
-
fields?: {
|
|
6873
|
-
field: string;
|
|
6874
|
-
label?: string | undefined;
|
|
6875
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
6876
|
-
options?: {
|
|
6877
|
-
value: string | number | boolean;
|
|
6878
|
-
label: string;
|
|
6879
|
-
color?: string | undefined;
|
|
6880
|
-
}[] | undefined;
|
|
6881
|
-
showCount?: boolean | undefined;
|
|
6882
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
6883
|
-
}[] | undefined;
|
|
6884
|
-
tabs?: {
|
|
6885
|
-
name: string;
|
|
6886
|
-
pinned: boolean;
|
|
6887
|
-
isDefault: boolean;
|
|
6888
|
-
visible: boolean;
|
|
6889
|
-
label?: string | undefined;
|
|
6890
|
-
icon?: string | undefined;
|
|
6891
|
-
view?: string | undefined;
|
|
6892
|
-
filter?: {
|
|
6893
|
-
field: string;
|
|
6894
|
-
operator: string;
|
|
6895
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6896
|
-
}[] | undefined;
|
|
6897
|
-
order?: number | undefined;
|
|
6898
|
-
}[] | undefined;
|
|
6899
|
-
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;
|
|
6900
6849
|
} | undefined;
|
|
6850
|
+
inlineEdit?: boolean | undefined;
|
|
6851
|
+
virtualScroll?: boolean | undefined;
|
|
6901
6852
|
resizable?: boolean | undefined;
|
|
6902
|
-
striped?: boolean | undefined;
|
|
6903
|
-
bordered?: boolean | undefined;
|
|
6904
|
-
compactToolbar?: boolean | undefined;
|
|
6905
|
-
selection?: {
|
|
6906
|
-
type: "none" | "multiple" | "single";
|
|
6907
|
-
} | undefined;
|
|
6908
|
-
navigation?: {
|
|
6909
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6910
|
-
preventNavigation: boolean;
|
|
6911
|
-
openNewTab: boolean;
|
|
6912
|
-
view?: string | undefined;
|
|
6913
|
-
width?: string | number | undefined;
|
|
6914
|
-
} | undefined;
|
|
6915
|
-
pagination?: {
|
|
6916
|
-
pageSize: number;
|
|
6917
|
-
pageSizeOptions?: number[] | undefined;
|
|
6918
|
-
} | undefined;
|
|
6919
6853
|
kanban?: {
|
|
6920
6854
|
groupByField: string;
|
|
6921
6855
|
columns: string[];
|
|
6922
6856
|
summarizeField?: string | undefined;
|
|
6923
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;
|
|
6924
6865
|
calendar?: {
|
|
6925
6866
|
startDateField: string;
|
|
6926
6867
|
titleField: string;
|
|
6927
6868
|
endDateField?: string | undefined;
|
|
6928
6869
|
colorField?: string | undefined;
|
|
6929
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;
|
|
6930
6879
|
gantt?: {
|
|
6931
6880
|
[x: string]: unknown;
|
|
6932
6881
|
startDateField: string;
|
|
@@ -6958,40 +6907,40 @@ declare const SysApprovalApprover: Omit<{
|
|
|
6958
6907
|
}[] | undefined;
|
|
6959
6908
|
autoZoomToFilter?: boolean | undefined;
|
|
6960
6909
|
} | undefined;
|
|
6961
|
-
gallery?: {
|
|
6962
|
-
coverFit: "cover" | "contain";
|
|
6963
|
-
cardSize: "small" | "medium" | "large";
|
|
6964
|
-
coverField?: string | undefined;
|
|
6965
|
-
titleField?: string | undefined;
|
|
6966
|
-
visibleFields?: string[] | undefined;
|
|
6967
|
-
} | undefined;
|
|
6968
|
-
timeline?: {
|
|
6969
|
-
startDateField: string;
|
|
6970
|
-
titleField: string;
|
|
6971
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
6972
|
-
endDateField?: string | undefined;
|
|
6973
|
-
groupByField?: string | undefined;
|
|
6974
|
-
colorField?: string | undefined;
|
|
6975
|
-
} | undefined;
|
|
6976
6910
|
chart?: {
|
|
6977
6911
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6978
6912
|
dataset: string;
|
|
6979
6913
|
values: string[];
|
|
6980
6914
|
dimensions?: string[] | undefined;
|
|
6981
6915
|
} | undefined;
|
|
6982
|
-
|
|
6983
|
-
|
|
6984
|
-
|
|
6985
|
-
|
|
6986
|
-
|
|
6987
|
-
|
|
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";
|
|
6988
6939
|
} | undefined;
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
6992
|
-
lockedBy?: string | undefined;
|
|
6940
|
+
pagination?: {
|
|
6941
|
+
pageSize: number;
|
|
6942
|
+
pageSizeOptions?: number[] | undefined;
|
|
6993
6943
|
} | undefined;
|
|
6994
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6995
6944
|
grouping?: {
|
|
6996
6945
|
fields: {
|
|
6997
6946
|
field: string;
|
|
@@ -7008,7 +6957,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7008
6957
|
rowActions?: string[] | undefined;
|
|
7009
6958
|
bulkActions?: string[] | undefined;
|
|
7010
6959
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
7011
|
-
virtualScroll?: boolean | undefined;
|
|
7012
6960
|
conditionalFormatting?: {
|
|
7013
6961
|
condition: {
|
|
7014
6962
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -7029,7 +6977,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7029
6977
|
};
|
|
7030
6978
|
style: Record<string, string>;
|
|
7031
6979
|
}[] | undefined;
|
|
7032
|
-
inlineEdit?: boolean | undefined;
|
|
7033
6980
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
7034
6981
|
userActions?: {
|
|
7035
6982
|
sort: boolean;
|
|
@@ -7042,23 +6989,8 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7042
6989
|
} | undefined;
|
|
7043
6990
|
appearance?: {
|
|
7044
6991
|
showDescription: boolean;
|
|
7045
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
6992
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
7046
6993
|
} | undefined;
|
|
7047
|
-
tabs?: {
|
|
7048
|
-
name: string;
|
|
7049
|
-
pinned: boolean;
|
|
7050
|
-
isDefault: boolean;
|
|
7051
|
-
visible: boolean;
|
|
7052
|
-
label?: string | undefined;
|
|
7053
|
-
icon?: string | undefined;
|
|
7054
|
-
view?: string | undefined;
|
|
7055
|
-
filter?: {
|
|
7056
|
-
field: string;
|
|
7057
|
-
operator: string;
|
|
7058
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
7059
|
-
}[] | undefined;
|
|
7060
|
-
order?: number | undefined;
|
|
7061
|
-
}[] | undefined;
|
|
7062
6994
|
addRecord?: {
|
|
7063
6995
|
enabled: boolean;
|
|
7064
6996
|
position: "top" | "bottom" | "both";
|
|
@@ -7072,31 +7004,6 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7072
7004
|
message?: string | undefined;
|
|
7073
7005
|
icon?: string | undefined;
|
|
7074
7006
|
} | undefined;
|
|
7075
|
-
aria?: {
|
|
7076
|
-
ariaLabel?: string | undefined;
|
|
7077
|
-
ariaDescribedBy?: string | undefined;
|
|
7078
|
-
role?: string | undefined;
|
|
7079
|
-
} | undefined;
|
|
7080
|
-
responsive?: {
|
|
7081
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
7082
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
7083
|
-
columns?: {
|
|
7084
|
-
xs?: number | undefined;
|
|
7085
|
-
sm?: number | undefined;
|
|
7086
|
-
md?: number | undefined;
|
|
7087
|
-
lg?: number | undefined;
|
|
7088
|
-
xl?: number | undefined;
|
|
7089
|
-
'2xl'?: number | undefined;
|
|
7090
|
-
} | undefined;
|
|
7091
|
-
order?: {
|
|
7092
|
-
xs?: number | undefined;
|
|
7093
|
-
sm?: number | undefined;
|
|
7094
|
-
md?: number | undefined;
|
|
7095
|
-
lg?: number | undefined;
|
|
7096
|
-
xl?: number | undefined;
|
|
7097
|
-
'2xl'?: number | undefined;
|
|
7098
|
-
} | undefined;
|
|
7099
|
-
} | undefined;
|
|
7100
7007
|
performance?: {
|
|
7101
7008
|
lazyLoad?: boolean | undefined;
|
|
7102
7009
|
virtualScroll?: {
|
|
@@ -7258,7 +7165,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7258
7165
|
readonly displayNameField: "id";
|
|
7259
7166
|
readonly nameField: "id";
|
|
7260
7167
|
readonly titleFormat: "{approver} · {request_id}";
|
|
7261
|
-
readonly
|
|
7168
|
+
readonly highlightFields: ["request_id", "approver", "created_at"];
|
|
7262
7169
|
readonly fields: {
|
|
7263
7170
|
readonly id: {
|
|
7264
7171
|
readonly readonly?: boolean | undefined;
|
|
@@ -7299,7 +7206,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7299
7206
|
readonly inlineTitle?: string | undefined;
|
|
7300
7207
|
readonly inlineColumns?: any[] | undefined;
|
|
7301
7208
|
readonly inlineAmountField?: string | undefined;
|
|
7302
|
-
readonly relatedList?: boolean | undefined;
|
|
7209
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7303
7210
|
readonly relatedListTitle?: string | undefined;
|
|
7304
7211
|
readonly relatedListColumns?: any[] | undefined;
|
|
7305
7212
|
readonly displayField?: string | undefined;
|
|
@@ -7473,7 +7380,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7473
7380
|
readonly inlineTitle?: string | undefined;
|
|
7474
7381
|
readonly inlineColumns?: any[] | undefined;
|
|
7475
7382
|
readonly inlineAmountField?: string | undefined;
|
|
7476
|
-
readonly relatedList?: boolean | undefined;
|
|
7383
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7477
7384
|
readonly relatedListTitle?: string | undefined;
|
|
7478
7385
|
readonly relatedListColumns?: any[] | undefined;
|
|
7479
7386
|
readonly displayField?: string | undefined;
|
|
@@ -7647,7 +7554,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7647
7554
|
readonly inlineTitle?: string | undefined;
|
|
7648
7555
|
readonly inlineColumns?: any[] | undefined;
|
|
7649
7556
|
readonly inlineAmountField?: string | undefined;
|
|
7650
|
-
readonly relatedList?: boolean | undefined;
|
|
7557
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7651
7558
|
readonly relatedListTitle?: string | undefined;
|
|
7652
7559
|
readonly relatedListColumns?: any[] | undefined;
|
|
7653
7560
|
readonly displayField?: string | undefined;
|
|
@@ -7821,7 +7728,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7821
7728
|
readonly inlineTitle?: string | undefined;
|
|
7822
7729
|
readonly inlineColumns?: any[] | undefined;
|
|
7823
7730
|
readonly inlineAmountField?: string | undefined;
|
|
7824
|
-
readonly relatedList?: boolean | undefined;
|
|
7731
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7825
7732
|
readonly relatedListTitle?: string | undefined;
|
|
7826
7733
|
readonly relatedListColumns?: any[] | undefined;
|
|
7827
7734
|
readonly displayField?: string | undefined;
|
|
@@ -7995,7 +7902,7 @@ declare const SysApprovalApprover: Omit<{
|
|
|
7995
7902
|
readonly inlineTitle?: string | undefined;
|
|
7996
7903
|
readonly inlineColumns?: any[] | undefined;
|
|
7997
7904
|
readonly inlineAmountField?: string | undefined;
|
|
7998
|
-
readonly relatedList?: boolean | undefined;
|
|
7905
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7999
7906
|
readonly relatedListTitle?: string | undefined;
|
|
8000
7907
|
readonly relatedListColumns?: any[] | undefined;
|
|
8001
7908
|
readonly displayField?: string | undefined;
|