@objectstack/platform-objects 11.9.0 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apps/index.d.mts +2 -2
- package/dist/apps/index.d.ts +2 -2
- package/dist/audit/index.d.mts +1148 -1458
- package/dist/audit/index.d.ts +1148 -1458
- package/dist/identity/index.d.mts +2772 -3106
- package/dist/identity/index.d.ts +2772 -3106
- package/dist/identity/index.js +19 -0
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +19 -0
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.js +19 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -0
- package/dist/index.mjs.map +1 -1
- package/dist/system/index.d.mts +335 -428
- package/dist/system/index.d.ts +335 -428
- package/package.json +3 -3
package/dist/system/index.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ declare const SysSetting: Omit<{
|
|
|
71
71
|
inlineTitle?: string | undefined;
|
|
72
72
|
inlineColumns?: any[] | undefined;
|
|
73
73
|
inlineAmountField?: string | undefined;
|
|
74
|
-
relatedList?: boolean | undefined;
|
|
74
|
+
relatedList?: boolean | "primary" | undefined;
|
|
75
75
|
relatedListTitle?: string | undefined;
|
|
76
76
|
relatedListColumns?: any[] | undefined;
|
|
77
77
|
displayField?: string | undefined;
|
|
@@ -352,10 +352,9 @@ declare const SysSetting: Omit<{
|
|
|
352
352
|
} | undefined;
|
|
353
353
|
} | undefined;
|
|
354
354
|
highlightFields?: string[] | undefined;
|
|
355
|
-
compactLayout?: string[] | undefined;
|
|
356
355
|
stageField?: string | false | undefined;
|
|
357
356
|
listViews?: Record<string, {
|
|
358
|
-
type: "tree" | "grid" | "kanban" | "
|
|
357
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
359
358
|
columns: string[] | {
|
|
360
359
|
field: string;
|
|
361
360
|
label?: string | undefined;
|
|
@@ -371,8 +370,55 @@ declare const SysSetting: Omit<{
|
|
|
371
370
|
link?: boolean | undefined;
|
|
372
371
|
action?: string | undefined;
|
|
373
372
|
}[];
|
|
374
|
-
|
|
373
|
+
sort?: string | {
|
|
374
|
+
field: string;
|
|
375
|
+
order: "asc" | "desc";
|
|
376
|
+
}[] | undefined;
|
|
377
|
+
filter?: {
|
|
378
|
+
field: string;
|
|
379
|
+
operator: string;
|
|
380
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
381
|
+
}[] | undefined;
|
|
382
|
+
description?: string | undefined;
|
|
375
383
|
label?: string | undefined;
|
|
384
|
+
name?: string | undefined;
|
|
385
|
+
responsive?: {
|
|
386
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
387
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
388
|
+
columns?: {
|
|
389
|
+
xs?: number | undefined;
|
|
390
|
+
sm?: number | undefined;
|
|
391
|
+
md?: number | undefined;
|
|
392
|
+
lg?: number | undefined;
|
|
393
|
+
xl?: number | undefined;
|
|
394
|
+
'2xl'?: number | undefined;
|
|
395
|
+
} | undefined;
|
|
396
|
+
order?: {
|
|
397
|
+
xs?: number | undefined;
|
|
398
|
+
sm?: number | undefined;
|
|
399
|
+
md?: number | undefined;
|
|
400
|
+
lg?: number | undefined;
|
|
401
|
+
xl?: number | undefined;
|
|
402
|
+
'2xl'?: number | undefined;
|
|
403
|
+
} | undefined;
|
|
404
|
+
} | undefined;
|
|
405
|
+
navigation?: {
|
|
406
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
407
|
+
preventNavigation: boolean;
|
|
408
|
+
openNewTab: boolean;
|
|
409
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
410
|
+
view?: string | undefined;
|
|
411
|
+
width?: string | number | undefined;
|
|
412
|
+
} | undefined;
|
|
413
|
+
sharing?: {
|
|
414
|
+
type: "personal" | "collaborative";
|
|
415
|
+
lockedBy?: string | undefined;
|
|
416
|
+
} | undefined;
|
|
417
|
+
aria?: {
|
|
418
|
+
ariaLabel?: string | undefined;
|
|
419
|
+
ariaDescribedBy?: string | undefined;
|
|
420
|
+
role?: string | undefined;
|
|
421
|
+
} | undefined;
|
|
376
422
|
data?: {
|
|
377
423
|
provider: "object";
|
|
378
424
|
object: string;
|
|
@@ -400,77 +446,42 @@ declare const SysSetting: Omit<{
|
|
|
400
446
|
schemaId: string;
|
|
401
447
|
schema?: Record<string, unknown> | undefined;
|
|
402
448
|
} | undefined;
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
field: string;
|
|
410
|
-
order: "asc" | "desc";
|
|
411
|
-
}[] | undefined;
|
|
412
|
-
searchableFields?: string[] | undefined;
|
|
413
|
-
filterableFields?: string[] | undefined;
|
|
414
|
-
userFilters?: {
|
|
415
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
416
|
-
fields?: {
|
|
417
|
-
field: string;
|
|
418
|
-
label?: string | undefined;
|
|
419
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
420
|
-
options?: {
|
|
421
|
-
value: string | number | boolean;
|
|
422
|
-
label: string;
|
|
423
|
-
color?: string | undefined;
|
|
424
|
-
}[] | undefined;
|
|
425
|
-
showCount?: boolean | undefined;
|
|
426
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
427
|
-
}[] | undefined;
|
|
428
|
-
tabs?: {
|
|
429
|
-
name: string;
|
|
430
|
-
pinned: boolean;
|
|
431
|
-
isDefault: boolean;
|
|
432
|
-
visible: boolean;
|
|
433
|
-
label?: string | undefined;
|
|
434
|
-
icon?: string | undefined;
|
|
435
|
-
view?: string | undefined;
|
|
436
|
-
filter?: {
|
|
437
|
-
field: string;
|
|
438
|
-
operator: string;
|
|
439
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
440
|
-
}[] | undefined;
|
|
441
|
-
order?: number | undefined;
|
|
442
|
-
}[] | undefined;
|
|
443
|
-
showAllRecords?: boolean | undefined;
|
|
449
|
+
tree?: {
|
|
450
|
+
[x: string]: unknown;
|
|
451
|
+
parentField?: string | undefined;
|
|
452
|
+
labelField?: string | undefined;
|
|
453
|
+
fields?: string[] | undefined;
|
|
454
|
+
defaultExpandedDepth?: number | undefined;
|
|
444
455
|
} | undefined;
|
|
456
|
+
inlineEdit?: boolean | undefined;
|
|
457
|
+
virtualScroll?: boolean | undefined;
|
|
445
458
|
resizable?: boolean | undefined;
|
|
446
|
-
striped?: boolean | undefined;
|
|
447
|
-
bordered?: boolean | undefined;
|
|
448
|
-
compactToolbar?: boolean | undefined;
|
|
449
|
-
selection?: {
|
|
450
|
-
type: "none" | "multiple" | "single";
|
|
451
|
-
} | undefined;
|
|
452
|
-
navigation?: {
|
|
453
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
454
|
-
preventNavigation: boolean;
|
|
455
|
-
openNewTab: boolean;
|
|
456
|
-
view?: string | undefined;
|
|
457
|
-
width?: string | number | undefined;
|
|
458
|
-
} | undefined;
|
|
459
|
-
pagination?: {
|
|
460
|
-
pageSize: number;
|
|
461
|
-
pageSizeOptions?: number[] | undefined;
|
|
462
|
-
} | undefined;
|
|
463
459
|
kanban?: {
|
|
464
460
|
groupByField: string;
|
|
465
461
|
columns: string[];
|
|
466
462
|
summarizeField?: string | undefined;
|
|
467
463
|
} | undefined;
|
|
464
|
+
gallery?: {
|
|
465
|
+
coverFit: "cover" | "contain";
|
|
466
|
+
cardSize: "small" | "medium" | "large";
|
|
467
|
+
coverField?: string | undefined;
|
|
468
|
+
titleField?: string | undefined;
|
|
469
|
+
visibleFields?: string[] | undefined;
|
|
470
|
+
} | undefined;
|
|
468
471
|
calendar?: {
|
|
469
472
|
startDateField: string;
|
|
470
473
|
titleField: string;
|
|
471
474
|
endDateField?: string | undefined;
|
|
472
475
|
colorField?: string | undefined;
|
|
473
476
|
} | undefined;
|
|
477
|
+
timeline?: {
|
|
478
|
+
startDateField: string;
|
|
479
|
+
titleField: string;
|
|
480
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
481
|
+
endDateField?: string | undefined;
|
|
482
|
+
groupByField?: string | undefined;
|
|
483
|
+
colorField?: string | undefined;
|
|
484
|
+
} | undefined;
|
|
474
485
|
gantt?: {
|
|
475
486
|
[x: string]: unknown;
|
|
476
487
|
startDateField: string;
|
|
@@ -502,40 +513,40 @@ declare const SysSetting: Omit<{
|
|
|
502
513
|
}[] | undefined;
|
|
503
514
|
autoZoomToFilter?: boolean | undefined;
|
|
504
515
|
} | undefined;
|
|
505
|
-
gallery?: {
|
|
506
|
-
coverFit: "cover" | "contain";
|
|
507
|
-
cardSize: "small" | "medium" | "large";
|
|
508
|
-
coverField?: string | undefined;
|
|
509
|
-
titleField?: string | undefined;
|
|
510
|
-
visibleFields?: string[] | undefined;
|
|
511
|
-
} | undefined;
|
|
512
|
-
timeline?: {
|
|
513
|
-
startDateField: string;
|
|
514
|
-
titleField: string;
|
|
515
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
516
|
-
endDateField?: string | undefined;
|
|
517
|
-
groupByField?: string | undefined;
|
|
518
|
-
colorField?: string | undefined;
|
|
519
|
-
} | undefined;
|
|
520
516
|
chart?: {
|
|
521
517
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
522
518
|
dataset: string;
|
|
523
519
|
values: string[];
|
|
524
520
|
dimensions?: string[] | undefined;
|
|
525
521
|
} | undefined;
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
522
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
523
|
+
tabs?: {
|
|
524
|
+
name: string;
|
|
525
|
+
pinned: boolean;
|
|
526
|
+
isDefault: boolean;
|
|
527
|
+
visible: boolean;
|
|
528
|
+
label?: string | undefined;
|
|
529
|
+
icon?: string | undefined;
|
|
530
|
+
view?: string | undefined;
|
|
531
|
+
filter?: {
|
|
532
|
+
field: string;
|
|
533
|
+
operator: string;
|
|
534
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
535
|
+
}[] | undefined;
|
|
536
|
+
order?: number | undefined;
|
|
537
|
+
}[] | undefined;
|
|
538
|
+
searchableFields?: string[] | undefined;
|
|
539
|
+
filterableFields?: string[] | undefined;
|
|
540
|
+
striped?: boolean | undefined;
|
|
541
|
+
bordered?: boolean | undefined;
|
|
542
|
+
compactToolbar?: boolean | undefined;
|
|
543
|
+
selection?: {
|
|
544
|
+
type: "none" | "multiple" | "single";
|
|
532
545
|
} | undefined;
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
lockedBy?: string | undefined;
|
|
546
|
+
pagination?: {
|
|
547
|
+
pageSize: number;
|
|
548
|
+
pageSizeOptions?: number[] | undefined;
|
|
537
549
|
} | undefined;
|
|
538
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
539
550
|
grouping?: {
|
|
540
551
|
fields: {
|
|
541
552
|
field: string;
|
|
@@ -552,7 +563,6 @@ declare const SysSetting: Omit<{
|
|
|
552
563
|
rowActions?: string[] | undefined;
|
|
553
564
|
bulkActions?: string[] | undefined;
|
|
554
565
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
555
|
-
virtualScroll?: boolean | undefined;
|
|
556
566
|
conditionalFormatting?: {
|
|
557
567
|
condition: {
|
|
558
568
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -573,7 +583,6 @@ declare const SysSetting: Omit<{
|
|
|
573
583
|
};
|
|
574
584
|
style: Record<string, string>;
|
|
575
585
|
}[] | undefined;
|
|
576
|
-
inlineEdit?: boolean | undefined;
|
|
577
586
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
578
587
|
userActions?: {
|
|
579
588
|
sort: boolean;
|
|
@@ -586,23 +595,8 @@ declare const SysSetting: Omit<{
|
|
|
586
595
|
} | undefined;
|
|
587
596
|
appearance?: {
|
|
588
597
|
showDescription: boolean;
|
|
589
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
598
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
590
599
|
} | undefined;
|
|
591
|
-
tabs?: {
|
|
592
|
-
name: string;
|
|
593
|
-
pinned: boolean;
|
|
594
|
-
isDefault: boolean;
|
|
595
|
-
visible: boolean;
|
|
596
|
-
label?: string | undefined;
|
|
597
|
-
icon?: string | undefined;
|
|
598
|
-
view?: string | undefined;
|
|
599
|
-
filter?: {
|
|
600
|
-
field: string;
|
|
601
|
-
operator: string;
|
|
602
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
603
|
-
}[] | undefined;
|
|
604
|
-
order?: number | undefined;
|
|
605
|
-
}[] | undefined;
|
|
606
600
|
addRecord?: {
|
|
607
601
|
enabled: boolean;
|
|
608
602
|
position: "top" | "bottom" | "both";
|
|
@@ -616,31 +610,6 @@ declare const SysSetting: Omit<{
|
|
|
616
610
|
message?: string | undefined;
|
|
617
611
|
icon?: string | undefined;
|
|
618
612
|
} | undefined;
|
|
619
|
-
aria?: {
|
|
620
|
-
ariaLabel?: string | undefined;
|
|
621
|
-
ariaDescribedBy?: string | undefined;
|
|
622
|
-
role?: string | undefined;
|
|
623
|
-
} | undefined;
|
|
624
|
-
responsive?: {
|
|
625
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
626
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
627
|
-
columns?: {
|
|
628
|
-
xs?: number | undefined;
|
|
629
|
-
sm?: number | undefined;
|
|
630
|
-
md?: number | undefined;
|
|
631
|
-
lg?: number | undefined;
|
|
632
|
-
xl?: number | undefined;
|
|
633
|
-
'2xl'?: number | undefined;
|
|
634
|
-
} | undefined;
|
|
635
|
-
order?: {
|
|
636
|
-
xs?: number | undefined;
|
|
637
|
-
sm?: number | undefined;
|
|
638
|
-
md?: number | undefined;
|
|
639
|
-
lg?: number | undefined;
|
|
640
|
-
xl?: number | undefined;
|
|
641
|
-
'2xl'?: number | undefined;
|
|
642
|
-
} | undefined;
|
|
643
|
-
} | undefined;
|
|
644
613
|
performance?: {
|
|
645
614
|
lazyLoad?: boolean | undefined;
|
|
646
615
|
virtualScroll?: {
|
|
@@ -939,7 +908,7 @@ declare const SysSetting: Omit<{
|
|
|
939
908
|
readonly inlineTitle?: string | undefined;
|
|
940
909
|
readonly inlineColumns?: any[] | undefined;
|
|
941
910
|
readonly inlineAmountField?: string | undefined;
|
|
942
|
-
readonly relatedList?: boolean | undefined;
|
|
911
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
943
912
|
readonly relatedListTitle?: string | undefined;
|
|
944
913
|
readonly relatedListColumns?: any[] | undefined;
|
|
945
914
|
readonly displayField?: string | undefined;
|
|
@@ -1113,7 +1082,7 @@ declare const SysSetting: Omit<{
|
|
|
1113
1082
|
readonly inlineTitle?: string | undefined;
|
|
1114
1083
|
readonly inlineColumns?: any[] | undefined;
|
|
1115
1084
|
readonly inlineAmountField?: string | undefined;
|
|
1116
|
-
readonly relatedList?: boolean | undefined;
|
|
1085
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1117
1086
|
readonly relatedListTitle?: string | undefined;
|
|
1118
1087
|
readonly relatedListColumns?: any[] | undefined;
|
|
1119
1088
|
readonly displayField?: string | undefined;
|
|
@@ -1287,7 +1256,7 @@ declare const SysSetting: Omit<{
|
|
|
1287
1256
|
readonly inlineTitle?: string | undefined;
|
|
1288
1257
|
readonly inlineColumns?: any[] | undefined;
|
|
1289
1258
|
readonly inlineAmountField?: string | undefined;
|
|
1290
|
-
readonly relatedList?: boolean | undefined;
|
|
1259
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1291
1260
|
readonly relatedListTitle?: string | undefined;
|
|
1292
1261
|
readonly relatedListColumns?: any[] | undefined;
|
|
1293
1262
|
readonly displayField?: string | undefined;
|
|
@@ -1461,7 +1430,7 @@ declare const SysSetting: Omit<{
|
|
|
1461
1430
|
readonly inlineTitle?: string | undefined;
|
|
1462
1431
|
readonly inlineColumns?: any[] | undefined;
|
|
1463
1432
|
readonly inlineAmountField?: string | undefined;
|
|
1464
|
-
readonly relatedList?: boolean | undefined;
|
|
1433
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1465
1434
|
readonly relatedListTitle?: string | undefined;
|
|
1466
1435
|
readonly relatedListColumns?: any[] | undefined;
|
|
1467
1436
|
readonly displayField?: string | undefined;
|
|
@@ -1635,7 +1604,7 @@ declare const SysSetting: Omit<{
|
|
|
1635
1604
|
readonly inlineTitle?: string | undefined;
|
|
1636
1605
|
readonly inlineColumns?: any[] | undefined;
|
|
1637
1606
|
readonly inlineAmountField?: string | undefined;
|
|
1638
|
-
readonly relatedList?: boolean | undefined;
|
|
1607
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1639
1608
|
readonly relatedListTitle?: string | undefined;
|
|
1640
1609
|
readonly relatedListColumns?: any[] | undefined;
|
|
1641
1610
|
readonly displayField?: string | undefined;
|
|
@@ -1809,7 +1778,7 @@ declare const SysSetting: Omit<{
|
|
|
1809
1778
|
readonly inlineTitle?: string | undefined;
|
|
1810
1779
|
readonly inlineColumns?: any[] | undefined;
|
|
1811
1780
|
readonly inlineAmountField?: string | undefined;
|
|
1812
|
-
readonly relatedList?: boolean | undefined;
|
|
1781
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1813
1782
|
readonly relatedListTitle?: string | undefined;
|
|
1814
1783
|
readonly relatedListColumns?: any[] | undefined;
|
|
1815
1784
|
readonly displayField?: string | undefined;
|
|
@@ -1983,7 +1952,7 @@ declare const SysSetting: Omit<{
|
|
|
1983
1952
|
readonly inlineTitle?: string | undefined;
|
|
1984
1953
|
readonly inlineColumns?: any[] | undefined;
|
|
1985
1954
|
readonly inlineAmountField?: string | undefined;
|
|
1986
|
-
readonly relatedList?: boolean | undefined;
|
|
1955
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1987
1956
|
readonly relatedListTitle?: string | undefined;
|
|
1988
1957
|
readonly relatedListColumns?: any[] | undefined;
|
|
1989
1958
|
readonly displayField?: string | undefined;
|
|
@@ -2157,7 +2126,7 @@ declare const SysSetting: Omit<{
|
|
|
2157
2126
|
readonly inlineTitle?: string | undefined;
|
|
2158
2127
|
readonly inlineColumns?: any[] | undefined;
|
|
2159
2128
|
readonly inlineAmountField?: string | undefined;
|
|
2160
|
-
readonly relatedList?: boolean | undefined;
|
|
2129
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2161
2130
|
readonly relatedListTitle?: string | undefined;
|
|
2162
2131
|
readonly relatedListColumns?: any[] | undefined;
|
|
2163
2132
|
readonly displayField?: string | undefined;
|
|
@@ -2331,7 +2300,7 @@ declare const SysSetting: Omit<{
|
|
|
2331
2300
|
readonly inlineTitle?: string | undefined;
|
|
2332
2301
|
readonly inlineColumns?: any[] | undefined;
|
|
2333
2302
|
readonly inlineAmountField?: string | undefined;
|
|
2334
|
-
readonly relatedList?: boolean | undefined;
|
|
2303
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2335
2304
|
readonly relatedListTitle?: string | undefined;
|
|
2336
2305
|
readonly relatedListColumns?: any[] | undefined;
|
|
2337
2306
|
readonly displayField?: string | undefined;
|
|
@@ -2505,7 +2474,7 @@ declare const SysSetting: Omit<{
|
|
|
2505
2474
|
readonly inlineTitle?: string | undefined;
|
|
2506
2475
|
readonly inlineColumns?: any[] | undefined;
|
|
2507
2476
|
readonly inlineAmountField?: string | undefined;
|
|
2508
|
-
readonly relatedList?: boolean | undefined;
|
|
2477
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2509
2478
|
readonly relatedListTitle?: string | undefined;
|
|
2510
2479
|
readonly relatedListColumns?: any[] | undefined;
|
|
2511
2480
|
readonly displayField?: string | undefined;
|
|
@@ -2679,7 +2648,7 @@ declare const SysSetting: Omit<{
|
|
|
2679
2648
|
readonly inlineTitle?: string | undefined;
|
|
2680
2649
|
readonly inlineColumns?: any[] | undefined;
|
|
2681
2650
|
readonly inlineAmountField?: string | undefined;
|
|
2682
|
-
readonly relatedList?: boolean | undefined;
|
|
2651
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2683
2652
|
readonly relatedListTitle?: string | undefined;
|
|
2684
2653
|
readonly relatedListColumns?: any[] | undefined;
|
|
2685
2654
|
readonly displayField?: string | undefined;
|
|
@@ -2853,7 +2822,7 @@ declare const SysSetting: Omit<{
|
|
|
2853
2822
|
readonly inlineTitle?: string | undefined;
|
|
2854
2823
|
readonly inlineColumns?: any[] | undefined;
|
|
2855
2824
|
readonly inlineAmountField?: string | undefined;
|
|
2856
|
-
readonly relatedList?: boolean | undefined;
|
|
2825
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2857
2826
|
readonly relatedListTitle?: string | undefined;
|
|
2858
2827
|
readonly relatedListColumns?: any[] | undefined;
|
|
2859
2828
|
readonly displayField?: string | undefined;
|
|
@@ -3027,7 +2996,7 @@ declare const SysSetting: Omit<{
|
|
|
3027
2996
|
readonly inlineTitle?: string | undefined;
|
|
3028
2997
|
readonly inlineColumns?: any[] | undefined;
|
|
3029
2998
|
readonly inlineAmountField?: string | undefined;
|
|
3030
|
-
readonly relatedList?: boolean | undefined;
|
|
2999
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3031
3000
|
readonly relatedListTitle?: string | undefined;
|
|
3032
3001
|
readonly relatedListColumns?: any[] | undefined;
|
|
3033
3002
|
readonly displayField?: string | undefined;
|
|
@@ -3252,7 +3221,7 @@ declare const SysSecret: Omit<{
|
|
|
3252
3221
|
inlineTitle?: string | undefined;
|
|
3253
3222
|
inlineColumns?: any[] | undefined;
|
|
3254
3223
|
inlineAmountField?: string | undefined;
|
|
3255
|
-
relatedList?: boolean | undefined;
|
|
3224
|
+
relatedList?: boolean | "primary" | undefined;
|
|
3256
3225
|
relatedListTitle?: string | undefined;
|
|
3257
3226
|
relatedListColumns?: any[] | undefined;
|
|
3258
3227
|
displayField?: string | undefined;
|
|
@@ -3533,10 +3502,9 @@ declare const SysSecret: Omit<{
|
|
|
3533
3502
|
} | undefined;
|
|
3534
3503
|
} | undefined;
|
|
3535
3504
|
highlightFields?: string[] | undefined;
|
|
3536
|
-
compactLayout?: string[] | undefined;
|
|
3537
3505
|
stageField?: string | false | undefined;
|
|
3538
3506
|
listViews?: Record<string, {
|
|
3539
|
-
type: "tree" | "grid" | "kanban" | "
|
|
3507
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
3540
3508
|
columns: string[] | {
|
|
3541
3509
|
field: string;
|
|
3542
3510
|
label?: string | undefined;
|
|
@@ -3552,8 +3520,55 @@ declare const SysSecret: Omit<{
|
|
|
3552
3520
|
link?: boolean | undefined;
|
|
3553
3521
|
action?: string | undefined;
|
|
3554
3522
|
}[];
|
|
3555
|
-
|
|
3523
|
+
sort?: string | {
|
|
3524
|
+
field: string;
|
|
3525
|
+
order: "asc" | "desc";
|
|
3526
|
+
}[] | undefined;
|
|
3527
|
+
filter?: {
|
|
3528
|
+
field: string;
|
|
3529
|
+
operator: string;
|
|
3530
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3531
|
+
}[] | undefined;
|
|
3532
|
+
description?: string | undefined;
|
|
3556
3533
|
label?: string | undefined;
|
|
3534
|
+
name?: string | undefined;
|
|
3535
|
+
responsive?: {
|
|
3536
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
3537
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
3538
|
+
columns?: {
|
|
3539
|
+
xs?: number | undefined;
|
|
3540
|
+
sm?: number | undefined;
|
|
3541
|
+
md?: number | undefined;
|
|
3542
|
+
lg?: number | undefined;
|
|
3543
|
+
xl?: number | undefined;
|
|
3544
|
+
'2xl'?: number | undefined;
|
|
3545
|
+
} | undefined;
|
|
3546
|
+
order?: {
|
|
3547
|
+
xs?: number | undefined;
|
|
3548
|
+
sm?: number | undefined;
|
|
3549
|
+
md?: number | undefined;
|
|
3550
|
+
lg?: number | undefined;
|
|
3551
|
+
xl?: number | undefined;
|
|
3552
|
+
'2xl'?: number | undefined;
|
|
3553
|
+
} | undefined;
|
|
3554
|
+
} | undefined;
|
|
3555
|
+
navigation?: {
|
|
3556
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
3557
|
+
preventNavigation: boolean;
|
|
3558
|
+
openNewTab: boolean;
|
|
3559
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
3560
|
+
view?: string | undefined;
|
|
3561
|
+
width?: string | number | undefined;
|
|
3562
|
+
} | undefined;
|
|
3563
|
+
sharing?: {
|
|
3564
|
+
type: "personal" | "collaborative";
|
|
3565
|
+
lockedBy?: string | undefined;
|
|
3566
|
+
} | undefined;
|
|
3567
|
+
aria?: {
|
|
3568
|
+
ariaLabel?: string | undefined;
|
|
3569
|
+
ariaDescribedBy?: string | undefined;
|
|
3570
|
+
role?: string | undefined;
|
|
3571
|
+
} | undefined;
|
|
3557
3572
|
data?: {
|
|
3558
3573
|
provider: "object";
|
|
3559
3574
|
object: string;
|
|
@@ -3581,77 +3596,42 @@ declare const SysSecret: Omit<{
|
|
|
3581
3596
|
schemaId: string;
|
|
3582
3597
|
schema?: Record<string, unknown> | undefined;
|
|
3583
3598
|
} | undefined;
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
field: string;
|
|
3591
|
-
order: "asc" | "desc";
|
|
3592
|
-
}[] | undefined;
|
|
3593
|
-
searchableFields?: string[] | undefined;
|
|
3594
|
-
filterableFields?: string[] | undefined;
|
|
3595
|
-
userFilters?: {
|
|
3596
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
3597
|
-
fields?: {
|
|
3598
|
-
field: string;
|
|
3599
|
-
label?: string | undefined;
|
|
3600
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
3601
|
-
options?: {
|
|
3602
|
-
value: string | number | boolean;
|
|
3603
|
-
label: string;
|
|
3604
|
-
color?: string | undefined;
|
|
3605
|
-
}[] | undefined;
|
|
3606
|
-
showCount?: boolean | undefined;
|
|
3607
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
3608
|
-
}[] | undefined;
|
|
3609
|
-
tabs?: {
|
|
3610
|
-
name: string;
|
|
3611
|
-
pinned: boolean;
|
|
3612
|
-
isDefault: boolean;
|
|
3613
|
-
visible: boolean;
|
|
3614
|
-
label?: string | undefined;
|
|
3615
|
-
icon?: string | undefined;
|
|
3616
|
-
view?: string | undefined;
|
|
3617
|
-
filter?: {
|
|
3618
|
-
field: string;
|
|
3619
|
-
operator: string;
|
|
3620
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3621
|
-
}[] | undefined;
|
|
3622
|
-
order?: number | undefined;
|
|
3623
|
-
}[] | undefined;
|
|
3624
|
-
showAllRecords?: boolean | undefined;
|
|
3599
|
+
tree?: {
|
|
3600
|
+
[x: string]: unknown;
|
|
3601
|
+
parentField?: string | undefined;
|
|
3602
|
+
labelField?: string | undefined;
|
|
3603
|
+
fields?: string[] | undefined;
|
|
3604
|
+
defaultExpandedDepth?: number | undefined;
|
|
3625
3605
|
} | undefined;
|
|
3606
|
+
inlineEdit?: boolean | undefined;
|
|
3607
|
+
virtualScroll?: boolean | undefined;
|
|
3626
3608
|
resizable?: boolean | undefined;
|
|
3627
|
-
striped?: boolean | undefined;
|
|
3628
|
-
bordered?: boolean | undefined;
|
|
3629
|
-
compactToolbar?: boolean | undefined;
|
|
3630
|
-
selection?: {
|
|
3631
|
-
type: "none" | "multiple" | "single";
|
|
3632
|
-
} | undefined;
|
|
3633
|
-
navigation?: {
|
|
3634
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
3635
|
-
preventNavigation: boolean;
|
|
3636
|
-
openNewTab: boolean;
|
|
3637
|
-
view?: string | undefined;
|
|
3638
|
-
width?: string | number | undefined;
|
|
3639
|
-
} | undefined;
|
|
3640
|
-
pagination?: {
|
|
3641
|
-
pageSize: number;
|
|
3642
|
-
pageSizeOptions?: number[] | undefined;
|
|
3643
|
-
} | undefined;
|
|
3644
3609
|
kanban?: {
|
|
3645
3610
|
groupByField: string;
|
|
3646
3611
|
columns: string[];
|
|
3647
3612
|
summarizeField?: string | undefined;
|
|
3648
3613
|
} | undefined;
|
|
3614
|
+
gallery?: {
|
|
3615
|
+
coverFit: "cover" | "contain";
|
|
3616
|
+
cardSize: "small" | "medium" | "large";
|
|
3617
|
+
coverField?: string | undefined;
|
|
3618
|
+
titleField?: string | undefined;
|
|
3619
|
+
visibleFields?: string[] | undefined;
|
|
3620
|
+
} | undefined;
|
|
3649
3621
|
calendar?: {
|
|
3650
3622
|
startDateField: string;
|
|
3651
3623
|
titleField: string;
|
|
3652
3624
|
endDateField?: string | undefined;
|
|
3653
3625
|
colorField?: string | undefined;
|
|
3654
3626
|
} | undefined;
|
|
3627
|
+
timeline?: {
|
|
3628
|
+
startDateField: string;
|
|
3629
|
+
titleField: string;
|
|
3630
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
3631
|
+
endDateField?: string | undefined;
|
|
3632
|
+
groupByField?: string | undefined;
|
|
3633
|
+
colorField?: string | undefined;
|
|
3634
|
+
} | undefined;
|
|
3655
3635
|
gantt?: {
|
|
3656
3636
|
[x: string]: unknown;
|
|
3657
3637
|
startDateField: string;
|
|
@@ -3683,40 +3663,40 @@ declare const SysSecret: Omit<{
|
|
|
3683
3663
|
}[] | undefined;
|
|
3684
3664
|
autoZoomToFilter?: boolean | undefined;
|
|
3685
3665
|
} | undefined;
|
|
3686
|
-
gallery?: {
|
|
3687
|
-
coverFit: "cover" | "contain";
|
|
3688
|
-
cardSize: "small" | "medium" | "large";
|
|
3689
|
-
coverField?: string | undefined;
|
|
3690
|
-
titleField?: string | undefined;
|
|
3691
|
-
visibleFields?: string[] | undefined;
|
|
3692
|
-
} | undefined;
|
|
3693
|
-
timeline?: {
|
|
3694
|
-
startDateField: string;
|
|
3695
|
-
titleField: string;
|
|
3696
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
3697
|
-
endDateField?: string | undefined;
|
|
3698
|
-
groupByField?: string | undefined;
|
|
3699
|
-
colorField?: string | undefined;
|
|
3700
|
-
} | undefined;
|
|
3701
3666
|
chart?: {
|
|
3702
3667
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
3703
3668
|
dataset: string;
|
|
3704
3669
|
values: string[];
|
|
3705
3670
|
dimensions?: string[] | undefined;
|
|
3706
3671
|
} | undefined;
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3672
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
3673
|
+
tabs?: {
|
|
3674
|
+
name: string;
|
|
3675
|
+
pinned: boolean;
|
|
3676
|
+
isDefault: boolean;
|
|
3677
|
+
visible: boolean;
|
|
3678
|
+
label?: string | undefined;
|
|
3679
|
+
icon?: string | undefined;
|
|
3680
|
+
view?: string | undefined;
|
|
3681
|
+
filter?: {
|
|
3682
|
+
field: string;
|
|
3683
|
+
operator: string;
|
|
3684
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3685
|
+
}[] | undefined;
|
|
3686
|
+
order?: number | undefined;
|
|
3687
|
+
}[] | undefined;
|
|
3688
|
+
searchableFields?: string[] | undefined;
|
|
3689
|
+
filterableFields?: string[] | undefined;
|
|
3690
|
+
striped?: boolean | undefined;
|
|
3691
|
+
bordered?: boolean | undefined;
|
|
3692
|
+
compactToolbar?: boolean | undefined;
|
|
3693
|
+
selection?: {
|
|
3694
|
+
type: "none" | "multiple" | "single";
|
|
3713
3695
|
} | undefined;
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
lockedBy?: string | undefined;
|
|
3696
|
+
pagination?: {
|
|
3697
|
+
pageSize: number;
|
|
3698
|
+
pageSizeOptions?: number[] | undefined;
|
|
3718
3699
|
} | undefined;
|
|
3719
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
3720
3700
|
grouping?: {
|
|
3721
3701
|
fields: {
|
|
3722
3702
|
field: string;
|
|
@@ -3733,7 +3713,6 @@ declare const SysSecret: Omit<{
|
|
|
3733
3713
|
rowActions?: string[] | undefined;
|
|
3734
3714
|
bulkActions?: string[] | undefined;
|
|
3735
3715
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
3736
|
-
virtualScroll?: boolean | undefined;
|
|
3737
3716
|
conditionalFormatting?: {
|
|
3738
3717
|
condition: {
|
|
3739
3718
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -3754,7 +3733,6 @@ declare const SysSecret: Omit<{
|
|
|
3754
3733
|
};
|
|
3755
3734
|
style: Record<string, string>;
|
|
3756
3735
|
}[] | undefined;
|
|
3757
|
-
inlineEdit?: boolean | undefined;
|
|
3758
3736
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
3759
3737
|
userActions?: {
|
|
3760
3738
|
sort: boolean;
|
|
@@ -3767,23 +3745,8 @@ declare const SysSecret: Omit<{
|
|
|
3767
3745
|
} | undefined;
|
|
3768
3746
|
appearance?: {
|
|
3769
3747
|
showDescription: boolean;
|
|
3770
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
3748
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
3771
3749
|
} | undefined;
|
|
3772
|
-
tabs?: {
|
|
3773
|
-
name: string;
|
|
3774
|
-
pinned: boolean;
|
|
3775
|
-
isDefault: boolean;
|
|
3776
|
-
visible: boolean;
|
|
3777
|
-
label?: string | undefined;
|
|
3778
|
-
icon?: string | undefined;
|
|
3779
|
-
view?: string | undefined;
|
|
3780
|
-
filter?: {
|
|
3781
|
-
field: string;
|
|
3782
|
-
operator: string;
|
|
3783
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3784
|
-
}[] | undefined;
|
|
3785
|
-
order?: number | undefined;
|
|
3786
|
-
}[] | undefined;
|
|
3787
3750
|
addRecord?: {
|
|
3788
3751
|
enabled: boolean;
|
|
3789
3752
|
position: "top" | "bottom" | "both";
|
|
@@ -3797,31 +3760,6 @@ declare const SysSecret: Omit<{
|
|
|
3797
3760
|
message?: string | undefined;
|
|
3798
3761
|
icon?: string | undefined;
|
|
3799
3762
|
} | undefined;
|
|
3800
|
-
aria?: {
|
|
3801
|
-
ariaLabel?: string | undefined;
|
|
3802
|
-
ariaDescribedBy?: string | undefined;
|
|
3803
|
-
role?: string | undefined;
|
|
3804
|
-
} | undefined;
|
|
3805
|
-
responsive?: {
|
|
3806
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
3807
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
3808
|
-
columns?: {
|
|
3809
|
-
xs?: number | undefined;
|
|
3810
|
-
sm?: number | undefined;
|
|
3811
|
-
md?: number | undefined;
|
|
3812
|
-
lg?: number | undefined;
|
|
3813
|
-
xl?: number | undefined;
|
|
3814
|
-
'2xl'?: number | undefined;
|
|
3815
|
-
} | undefined;
|
|
3816
|
-
order?: {
|
|
3817
|
-
xs?: number | undefined;
|
|
3818
|
-
sm?: number | undefined;
|
|
3819
|
-
md?: number | undefined;
|
|
3820
|
-
lg?: number | undefined;
|
|
3821
|
-
xl?: number | undefined;
|
|
3822
|
-
'2xl'?: number | undefined;
|
|
3823
|
-
} | undefined;
|
|
3824
|
-
} | undefined;
|
|
3825
3763
|
performance?: {
|
|
3826
3764
|
lazyLoad?: boolean | undefined;
|
|
3827
3765
|
virtualScroll?: {
|
|
@@ -4029,7 +3967,7 @@ declare const SysSecret: Omit<{
|
|
|
4029
3967
|
readonly inlineTitle?: string | undefined;
|
|
4030
3968
|
readonly inlineColumns?: any[] | undefined;
|
|
4031
3969
|
readonly inlineAmountField?: string | undefined;
|
|
4032
|
-
readonly relatedList?: boolean | undefined;
|
|
3970
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4033
3971
|
readonly relatedListTitle?: string | undefined;
|
|
4034
3972
|
readonly relatedListColumns?: any[] | undefined;
|
|
4035
3973
|
readonly displayField?: string | undefined;
|
|
@@ -4203,7 +4141,7 @@ declare const SysSecret: Omit<{
|
|
|
4203
4141
|
readonly inlineTitle?: string | undefined;
|
|
4204
4142
|
readonly inlineColumns?: any[] | undefined;
|
|
4205
4143
|
readonly inlineAmountField?: string | undefined;
|
|
4206
|
-
readonly relatedList?: boolean | undefined;
|
|
4144
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4207
4145
|
readonly relatedListTitle?: string | undefined;
|
|
4208
4146
|
readonly relatedListColumns?: any[] | undefined;
|
|
4209
4147
|
readonly displayField?: string | undefined;
|
|
@@ -4377,7 +4315,7 @@ declare const SysSecret: Omit<{
|
|
|
4377
4315
|
readonly inlineTitle?: string | undefined;
|
|
4378
4316
|
readonly inlineColumns?: any[] | undefined;
|
|
4379
4317
|
readonly inlineAmountField?: string | undefined;
|
|
4380
|
-
readonly relatedList?: boolean | undefined;
|
|
4318
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4381
4319
|
readonly relatedListTitle?: string | undefined;
|
|
4382
4320
|
readonly relatedListColumns?: any[] | undefined;
|
|
4383
4321
|
readonly displayField?: string | undefined;
|
|
@@ -4557,7 +4495,7 @@ declare const SysSecret: Omit<{
|
|
|
4557
4495
|
readonly inlineTitle?: string | undefined;
|
|
4558
4496
|
readonly inlineColumns?: any[] | undefined;
|
|
4559
4497
|
readonly inlineAmountField?: string | undefined;
|
|
4560
|
-
readonly relatedList?: boolean | undefined;
|
|
4498
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4561
4499
|
readonly relatedListTitle?: string | undefined;
|
|
4562
4500
|
readonly relatedListColumns?: any[] | undefined;
|
|
4563
4501
|
readonly displayField?: string | undefined;
|
|
@@ -4731,7 +4669,7 @@ declare const SysSecret: Omit<{
|
|
|
4731
4669
|
readonly inlineTitle?: string | undefined;
|
|
4732
4670
|
readonly inlineColumns?: any[] | undefined;
|
|
4733
4671
|
readonly inlineAmountField?: string | undefined;
|
|
4734
|
-
readonly relatedList?: boolean | undefined;
|
|
4672
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4735
4673
|
readonly relatedListTitle?: string | undefined;
|
|
4736
4674
|
readonly relatedListColumns?: any[] | undefined;
|
|
4737
4675
|
readonly displayField?: string | undefined;
|
|
@@ -4906,7 +4844,7 @@ declare const SysSecret: Omit<{
|
|
|
4906
4844
|
readonly inlineTitle?: string | undefined;
|
|
4907
4845
|
readonly inlineColumns?: any[] | undefined;
|
|
4908
4846
|
readonly inlineAmountField?: string | undefined;
|
|
4909
|
-
readonly relatedList?: boolean | undefined;
|
|
4847
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4910
4848
|
readonly relatedListTitle?: string | undefined;
|
|
4911
4849
|
readonly relatedListColumns?: any[] | undefined;
|
|
4912
4850
|
readonly displayField?: string | undefined;
|
|
@@ -5081,7 +5019,7 @@ declare const SysSecret: Omit<{
|
|
|
5081
5019
|
readonly inlineTitle?: string | undefined;
|
|
5082
5020
|
readonly inlineColumns?: any[] | undefined;
|
|
5083
5021
|
readonly inlineAmountField?: string | undefined;
|
|
5084
|
-
readonly relatedList?: boolean | undefined;
|
|
5022
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5085
5023
|
readonly relatedListTitle?: string | undefined;
|
|
5086
5024
|
readonly relatedListColumns?: any[] | undefined;
|
|
5087
5025
|
readonly displayField?: string | undefined;
|
|
@@ -5256,7 +5194,7 @@ declare const SysSecret: Omit<{
|
|
|
5256
5194
|
readonly inlineTitle?: string | undefined;
|
|
5257
5195
|
readonly inlineColumns?: any[] | undefined;
|
|
5258
5196
|
readonly inlineAmountField?: string | undefined;
|
|
5259
|
-
readonly relatedList?: boolean | undefined;
|
|
5197
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5260
5198
|
readonly relatedListTitle?: string | undefined;
|
|
5261
5199
|
readonly relatedListColumns?: any[] | undefined;
|
|
5262
5200
|
readonly displayField?: string | undefined;
|
|
@@ -5430,7 +5368,7 @@ declare const SysSecret: Omit<{
|
|
|
5430
5368
|
readonly inlineTitle?: string | undefined;
|
|
5431
5369
|
readonly inlineColumns?: any[] | undefined;
|
|
5432
5370
|
readonly inlineAmountField?: string | undefined;
|
|
5433
|
-
readonly relatedList?: boolean | undefined;
|
|
5371
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5434
5372
|
readonly relatedListTitle?: string | undefined;
|
|
5435
5373
|
readonly relatedListColumns?: any[] | undefined;
|
|
5436
5374
|
readonly displayField?: string | undefined;
|
|
@@ -5645,7 +5583,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5645
5583
|
inlineTitle?: string | undefined;
|
|
5646
5584
|
inlineColumns?: any[] | undefined;
|
|
5647
5585
|
inlineAmountField?: string | undefined;
|
|
5648
|
-
relatedList?: boolean | undefined;
|
|
5586
|
+
relatedList?: boolean | "primary" | undefined;
|
|
5649
5587
|
relatedListTitle?: string | undefined;
|
|
5650
5588
|
relatedListColumns?: any[] | undefined;
|
|
5651
5589
|
displayField?: string | undefined;
|
|
@@ -5926,10 +5864,9 @@ declare const SysSettingAudit: Omit<{
|
|
|
5926
5864
|
} | undefined;
|
|
5927
5865
|
} | undefined;
|
|
5928
5866
|
highlightFields?: string[] | undefined;
|
|
5929
|
-
compactLayout?: string[] | undefined;
|
|
5930
5867
|
stageField?: string | false | undefined;
|
|
5931
5868
|
listViews?: Record<string, {
|
|
5932
|
-
type: "tree" | "grid" | "kanban" | "
|
|
5869
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
5933
5870
|
columns: string[] | {
|
|
5934
5871
|
field: string;
|
|
5935
5872
|
label?: string | undefined;
|
|
@@ -5945,8 +5882,55 @@ declare const SysSettingAudit: Omit<{
|
|
|
5945
5882
|
link?: boolean | undefined;
|
|
5946
5883
|
action?: string | undefined;
|
|
5947
5884
|
}[];
|
|
5948
|
-
|
|
5885
|
+
sort?: string | {
|
|
5886
|
+
field: string;
|
|
5887
|
+
order: "asc" | "desc";
|
|
5888
|
+
}[] | undefined;
|
|
5889
|
+
filter?: {
|
|
5890
|
+
field: string;
|
|
5891
|
+
operator: string;
|
|
5892
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
5893
|
+
}[] | undefined;
|
|
5894
|
+
description?: string | undefined;
|
|
5949
5895
|
label?: string | undefined;
|
|
5896
|
+
name?: string | undefined;
|
|
5897
|
+
responsive?: {
|
|
5898
|
+
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
5899
|
+
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
5900
|
+
columns?: {
|
|
5901
|
+
xs?: number | undefined;
|
|
5902
|
+
sm?: number | undefined;
|
|
5903
|
+
md?: number | undefined;
|
|
5904
|
+
lg?: number | undefined;
|
|
5905
|
+
xl?: number | undefined;
|
|
5906
|
+
'2xl'?: number | undefined;
|
|
5907
|
+
} | undefined;
|
|
5908
|
+
order?: {
|
|
5909
|
+
xs?: number | undefined;
|
|
5910
|
+
sm?: number | undefined;
|
|
5911
|
+
md?: number | undefined;
|
|
5912
|
+
lg?: number | undefined;
|
|
5913
|
+
xl?: number | undefined;
|
|
5914
|
+
'2xl'?: number | undefined;
|
|
5915
|
+
} | undefined;
|
|
5916
|
+
} | undefined;
|
|
5917
|
+
navigation?: {
|
|
5918
|
+
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
5919
|
+
preventNavigation: boolean;
|
|
5920
|
+
openNewTab: boolean;
|
|
5921
|
+
size: "full" | "md" | "sm" | "lg" | "xl" | "auto";
|
|
5922
|
+
view?: string | undefined;
|
|
5923
|
+
width?: string | number | undefined;
|
|
5924
|
+
} | undefined;
|
|
5925
|
+
sharing?: {
|
|
5926
|
+
type: "personal" | "collaborative";
|
|
5927
|
+
lockedBy?: string | undefined;
|
|
5928
|
+
} | undefined;
|
|
5929
|
+
aria?: {
|
|
5930
|
+
ariaLabel?: string | undefined;
|
|
5931
|
+
ariaDescribedBy?: string | undefined;
|
|
5932
|
+
role?: string | undefined;
|
|
5933
|
+
} | undefined;
|
|
5950
5934
|
data?: {
|
|
5951
5935
|
provider: "object";
|
|
5952
5936
|
object: string;
|
|
@@ -5974,77 +5958,42 @@ declare const SysSettingAudit: Omit<{
|
|
|
5974
5958
|
schemaId: string;
|
|
5975
5959
|
schema?: Record<string, unknown> | undefined;
|
|
5976
5960
|
} | undefined;
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
5982
|
-
|
|
5983
|
-
field: string;
|
|
5984
|
-
order: "asc" | "desc";
|
|
5985
|
-
}[] | undefined;
|
|
5986
|
-
searchableFields?: string[] | undefined;
|
|
5987
|
-
filterableFields?: string[] | undefined;
|
|
5988
|
-
userFilters?: {
|
|
5989
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
5990
|
-
fields?: {
|
|
5991
|
-
field: string;
|
|
5992
|
-
label?: string | undefined;
|
|
5993
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
5994
|
-
options?: {
|
|
5995
|
-
value: string | number | boolean;
|
|
5996
|
-
label: string;
|
|
5997
|
-
color?: string | undefined;
|
|
5998
|
-
}[] | undefined;
|
|
5999
|
-
showCount?: boolean | undefined;
|
|
6000
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
6001
|
-
}[] | undefined;
|
|
6002
|
-
tabs?: {
|
|
6003
|
-
name: string;
|
|
6004
|
-
pinned: boolean;
|
|
6005
|
-
isDefault: boolean;
|
|
6006
|
-
visible: boolean;
|
|
6007
|
-
label?: string | undefined;
|
|
6008
|
-
icon?: string | undefined;
|
|
6009
|
-
view?: string | undefined;
|
|
6010
|
-
filter?: {
|
|
6011
|
-
field: string;
|
|
6012
|
-
operator: string;
|
|
6013
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6014
|
-
}[] | undefined;
|
|
6015
|
-
order?: number | undefined;
|
|
6016
|
-
}[] | undefined;
|
|
6017
|
-
showAllRecords?: boolean | undefined;
|
|
5961
|
+
tree?: {
|
|
5962
|
+
[x: string]: unknown;
|
|
5963
|
+
parentField?: string | undefined;
|
|
5964
|
+
labelField?: string | undefined;
|
|
5965
|
+
fields?: string[] | undefined;
|
|
5966
|
+
defaultExpandedDepth?: number | undefined;
|
|
6018
5967
|
} | undefined;
|
|
5968
|
+
inlineEdit?: boolean | undefined;
|
|
5969
|
+
virtualScroll?: boolean | undefined;
|
|
6019
5970
|
resizable?: boolean | undefined;
|
|
6020
|
-
striped?: boolean | undefined;
|
|
6021
|
-
bordered?: boolean | undefined;
|
|
6022
|
-
compactToolbar?: boolean | undefined;
|
|
6023
|
-
selection?: {
|
|
6024
|
-
type: "none" | "multiple" | "single";
|
|
6025
|
-
} | undefined;
|
|
6026
|
-
navigation?: {
|
|
6027
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6028
|
-
preventNavigation: boolean;
|
|
6029
|
-
openNewTab: boolean;
|
|
6030
|
-
view?: string | undefined;
|
|
6031
|
-
width?: string | number | undefined;
|
|
6032
|
-
} | undefined;
|
|
6033
|
-
pagination?: {
|
|
6034
|
-
pageSize: number;
|
|
6035
|
-
pageSizeOptions?: number[] | undefined;
|
|
6036
|
-
} | undefined;
|
|
6037
5971
|
kanban?: {
|
|
6038
5972
|
groupByField: string;
|
|
6039
5973
|
columns: string[];
|
|
6040
5974
|
summarizeField?: string | undefined;
|
|
6041
5975
|
} | undefined;
|
|
5976
|
+
gallery?: {
|
|
5977
|
+
coverFit: "cover" | "contain";
|
|
5978
|
+
cardSize: "small" | "medium" | "large";
|
|
5979
|
+
coverField?: string | undefined;
|
|
5980
|
+
titleField?: string | undefined;
|
|
5981
|
+
visibleFields?: string[] | undefined;
|
|
5982
|
+
} | undefined;
|
|
6042
5983
|
calendar?: {
|
|
6043
5984
|
startDateField: string;
|
|
6044
5985
|
titleField: string;
|
|
6045
5986
|
endDateField?: string | undefined;
|
|
6046
5987
|
colorField?: string | undefined;
|
|
6047
5988
|
} | undefined;
|
|
5989
|
+
timeline?: {
|
|
5990
|
+
startDateField: string;
|
|
5991
|
+
titleField: string;
|
|
5992
|
+
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
5993
|
+
endDateField?: string | undefined;
|
|
5994
|
+
groupByField?: string | undefined;
|
|
5995
|
+
colorField?: string | undefined;
|
|
5996
|
+
} | undefined;
|
|
6048
5997
|
gantt?: {
|
|
6049
5998
|
[x: string]: unknown;
|
|
6050
5999
|
startDateField: string;
|
|
@@ -6076,40 +6025,40 @@ declare const SysSettingAudit: Omit<{
|
|
|
6076
6025
|
}[] | undefined;
|
|
6077
6026
|
autoZoomToFilter?: boolean | undefined;
|
|
6078
6027
|
} | undefined;
|
|
6079
|
-
gallery?: {
|
|
6080
|
-
coverFit: "cover" | "contain";
|
|
6081
|
-
cardSize: "small" | "medium" | "large";
|
|
6082
|
-
coverField?: string | undefined;
|
|
6083
|
-
titleField?: string | undefined;
|
|
6084
|
-
visibleFields?: string[] | undefined;
|
|
6085
|
-
} | undefined;
|
|
6086
|
-
timeline?: {
|
|
6087
|
-
startDateField: string;
|
|
6088
|
-
titleField: string;
|
|
6089
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
6090
|
-
endDateField?: string | undefined;
|
|
6091
|
-
groupByField?: string | undefined;
|
|
6092
|
-
colorField?: string | undefined;
|
|
6093
|
-
} | undefined;
|
|
6094
6028
|
chart?: {
|
|
6095
6029
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6096
6030
|
dataset: string;
|
|
6097
6031
|
values: string[];
|
|
6098
6032
|
dimensions?: string[] | undefined;
|
|
6099
6033
|
} | undefined;
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
|
|
6103
|
-
|
|
6104
|
-
|
|
6105
|
-
|
|
6034
|
+
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6035
|
+
tabs?: {
|
|
6036
|
+
name: string;
|
|
6037
|
+
pinned: boolean;
|
|
6038
|
+
isDefault: boolean;
|
|
6039
|
+
visible: boolean;
|
|
6040
|
+
label?: string | undefined;
|
|
6041
|
+
icon?: string | undefined;
|
|
6042
|
+
view?: string | undefined;
|
|
6043
|
+
filter?: {
|
|
6044
|
+
field: string;
|
|
6045
|
+
operator: string;
|
|
6046
|
+
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6047
|
+
}[] | undefined;
|
|
6048
|
+
order?: number | undefined;
|
|
6049
|
+
}[] | undefined;
|
|
6050
|
+
searchableFields?: string[] | undefined;
|
|
6051
|
+
filterableFields?: string[] | undefined;
|
|
6052
|
+
striped?: boolean | undefined;
|
|
6053
|
+
bordered?: boolean | undefined;
|
|
6054
|
+
compactToolbar?: boolean | undefined;
|
|
6055
|
+
selection?: {
|
|
6056
|
+
type: "none" | "multiple" | "single";
|
|
6106
6057
|
} | undefined;
|
|
6107
|
-
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
lockedBy?: string | undefined;
|
|
6058
|
+
pagination?: {
|
|
6059
|
+
pageSize: number;
|
|
6060
|
+
pageSizeOptions?: number[] | undefined;
|
|
6111
6061
|
} | undefined;
|
|
6112
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6113
6062
|
grouping?: {
|
|
6114
6063
|
fields: {
|
|
6115
6064
|
field: string;
|
|
@@ -6126,7 +6075,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6126
6075
|
rowActions?: string[] | undefined;
|
|
6127
6076
|
bulkActions?: string[] | undefined;
|
|
6128
6077
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
6129
|
-
virtualScroll?: boolean | undefined;
|
|
6130
6078
|
conditionalFormatting?: {
|
|
6131
6079
|
condition: {
|
|
6132
6080
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -6147,7 +6095,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6147
6095
|
};
|
|
6148
6096
|
style: Record<string, string>;
|
|
6149
6097
|
}[] | undefined;
|
|
6150
|
-
inlineEdit?: boolean | undefined;
|
|
6151
6098
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
6152
6099
|
userActions?: {
|
|
6153
6100
|
sort: boolean;
|
|
@@ -6160,23 +6107,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
6160
6107
|
} | undefined;
|
|
6161
6108
|
appearance?: {
|
|
6162
6109
|
showDescription: boolean;
|
|
6163
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
6110
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
6164
6111
|
} | undefined;
|
|
6165
|
-
tabs?: {
|
|
6166
|
-
name: string;
|
|
6167
|
-
pinned: boolean;
|
|
6168
|
-
isDefault: boolean;
|
|
6169
|
-
visible: boolean;
|
|
6170
|
-
label?: string | undefined;
|
|
6171
|
-
icon?: string | undefined;
|
|
6172
|
-
view?: string | undefined;
|
|
6173
|
-
filter?: {
|
|
6174
|
-
field: string;
|
|
6175
|
-
operator: string;
|
|
6176
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6177
|
-
}[] | undefined;
|
|
6178
|
-
order?: number | undefined;
|
|
6179
|
-
}[] | undefined;
|
|
6180
6112
|
addRecord?: {
|
|
6181
6113
|
enabled: boolean;
|
|
6182
6114
|
position: "top" | "bottom" | "both";
|
|
@@ -6190,31 +6122,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6190
6122
|
message?: string | undefined;
|
|
6191
6123
|
icon?: string | undefined;
|
|
6192
6124
|
} | undefined;
|
|
6193
|
-
aria?: {
|
|
6194
|
-
ariaLabel?: string | undefined;
|
|
6195
|
-
ariaDescribedBy?: string | undefined;
|
|
6196
|
-
role?: string | undefined;
|
|
6197
|
-
} | undefined;
|
|
6198
|
-
responsive?: {
|
|
6199
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6200
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6201
|
-
columns?: {
|
|
6202
|
-
xs?: number | undefined;
|
|
6203
|
-
sm?: number | undefined;
|
|
6204
|
-
md?: number | undefined;
|
|
6205
|
-
lg?: number | undefined;
|
|
6206
|
-
xl?: number | undefined;
|
|
6207
|
-
'2xl'?: number | undefined;
|
|
6208
|
-
} | undefined;
|
|
6209
|
-
order?: {
|
|
6210
|
-
xs?: number | undefined;
|
|
6211
|
-
sm?: number | undefined;
|
|
6212
|
-
md?: number | undefined;
|
|
6213
|
-
lg?: number | undefined;
|
|
6214
|
-
xl?: number | undefined;
|
|
6215
|
-
'2xl'?: number | undefined;
|
|
6216
|
-
} | undefined;
|
|
6217
|
-
} | undefined;
|
|
6218
6125
|
performance?: {
|
|
6219
6126
|
lazyLoad?: boolean | undefined;
|
|
6220
6127
|
virtualScroll?: {
|
|
@@ -6426,7 +6333,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6426
6333
|
readonly inlineTitle?: string | undefined;
|
|
6427
6334
|
readonly inlineColumns?: any[] | undefined;
|
|
6428
6335
|
readonly inlineAmountField?: string | undefined;
|
|
6429
|
-
readonly relatedList?: boolean | undefined;
|
|
6336
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6430
6337
|
readonly relatedListTitle?: string | undefined;
|
|
6431
6338
|
readonly relatedListColumns?: any[] | undefined;
|
|
6432
6339
|
readonly displayField?: string | undefined;
|
|
@@ -6600,7 +6507,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6600
6507
|
readonly inlineTitle?: string | undefined;
|
|
6601
6508
|
readonly inlineColumns?: any[] | undefined;
|
|
6602
6509
|
readonly inlineAmountField?: string | undefined;
|
|
6603
|
-
readonly relatedList?: boolean | undefined;
|
|
6510
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6604
6511
|
readonly relatedListTitle?: string | undefined;
|
|
6605
6512
|
readonly relatedListColumns?: any[] | undefined;
|
|
6606
6513
|
readonly displayField?: string | undefined;
|
|
@@ -6774,7 +6681,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6774
6681
|
readonly inlineTitle?: string | undefined;
|
|
6775
6682
|
readonly inlineColumns?: any[] | undefined;
|
|
6776
6683
|
readonly inlineAmountField?: string | undefined;
|
|
6777
|
-
readonly relatedList?: boolean | undefined;
|
|
6684
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6778
6685
|
readonly relatedListTitle?: string | undefined;
|
|
6779
6686
|
readonly relatedListColumns?: any[] | undefined;
|
|
6780
6687
|
readonly displayField?: string | undefined;
|
|
@@ -6948,7 +6855,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6948
6855
|
readonly inlineTitle?: string | undefined;
|
|
6949
6856
|
readonly inlineColumns?: any[] | undefined;
|
|
6950
6857
|
readonly inlineAmountField?: string | undefined;
|
|
6951
|
-
readonly relatedList?: boolean | undefined;
|
|
6858
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6952
6859
|
readonly relatedListTitle?: string | undefined;
|
|
6953
6860
|
readonly relatedListColumns?: any[] | undefined;
|
|
6954
6861
|
readonly displayField?: string | undefined;
|
|
@@ -7122,7 +7029,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7122
7029
|
readonly inlineTitle?: string | undefined;
|
|
7123
7030
|
readonly inlineColumns?: any[] | undefined;
|
|
7124
7031
|
readonly inlineAmountField?: string | undefined;
|
|
7125
|
-
readonly relatedList?: boolean | undefined;
|
|
7032
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7126
7033
|
readonly relatedListTitle?: string | undefined;
|
|
7127
7034
|
readonly relatedListColumns?: any[] | undefined;
|
|
7128
7035
|
readonly displayField?: string | undefined;
|
|
@@ -7296,7 +7203,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7296
7203
|
readonly inlineTitle?: string | undefined;
|
|
7297
7204
|
readonly inlineColumns?: any[] | undefined;
|
|
7298
7205
|
readonly inlineAmountField?: string | undefined;
|
|
7299
|
-
readonly relatedList?: boolean | undefined;
|
|
7206
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7300
7207
|
readonly relatedListTitle?: string | undefined;
|
|
7301
7208
|
readonly relatedListColumns?: any[] | undefined;
|
|
7302
7209
|
readonly displayField?: string | undefined;
|
|
@@ -7470,7 +7377,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7470
7377
|
readonly inlineTitle?: string | undefined;
|
|
7471
7378
|
readonly inlineColumns?: any[] | undefined;
|
|
7472
7379
|
readonly inlineAmountField?: string | undefined;
|
|
7473
|
-
readonly relatedList?: boolean | undefined;
|
|
7380
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7474
7381
|
readonly relatedListTitle?: string | undefined;
|
|
7475
7382
|
readonly relatedListColumns?: any[] | undefined;
|
|
7476
7383
|
readonly displayField?: string | undefined;
|
|
@@ -7649,7 +7556,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7649
7556
|
readonly inlineTitle?: string | undefined;
|
|
7650
7557
|
readonly inlineColumns?: any[] | undefined;
|
|
7651
7558
|
readonly inlineAmountField?: string | undefined;
|
|
7652
|
-
readonly relatedList?: boolean | undefined;
|
|
7559
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7653
7560
|
readonly relatedListTitle?: string | undefined;
|
|
7654
7561
|
readonly relatedListColumns?: any[] | undefined;
|
|
7655
7562
|
readonly displayField?: string | undefined;
|
|
@@ -7824,7 +7731,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7824
7731
|
readonly inlineTitle?: string | undefined;
|
|
7825
7732
|
readonly inlineColumns?: any[] | undefined;
|
|
7826
7733
|
readonly inlineAmountField?: string | undefined;
|
|
7827
|
-
readonly relatedList?: boolean | undefined;
|
|
7734
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7828
7735
|
readonly relatedListTitle?: string | undefined;
|
|
7829
7736
|
readonly relatedListColumns?: any[] | undefined;
|
|
7830
7737
|
readonly displayField?: string | undefined;
|
|
@@ -8004,7 +7911,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8004
7911
|
readonly inlineTitle?: string | undefined;
|
|
8005
7912
|
readonly inlineColumns?: any[] | undefined;
|
|
8006
7913
|
readonly inlineAmountField?: string | undefined;
|
|
8007
|
-
readonly relatedList?: boolean | undefined;
|
|
7914
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8008
7915
|
readonly relatedListTitle?: string | undefined;
|
|
8009
7916
|
readonly relatedListColumns?: any[] | undefined;
|
|
8010
7917
|
readonly displayField?: string | undefined;
|
|
@@ -8179,7 +8086,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8179
8086
|
readonly inlineTitle?: string | undefined;
|
|
8180
8087
|
readonly inlineColumns?: any[] | undefined;
|
|
8181
8088
|
readonly inlineAmountField?: string | undefined;
|
|
8182
|
-
readonly relatedList?: boolean | undefined;
|
|
8089
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8183
8090
|
readonly relatedListTitle?: string | undefined;
|
|
8184
8091
|
readonly relatedListColumns?: any[] | undefined;
|
|
8185
8092
|
readonly displayField?: string | undefined;
|
|
@@ -8354,7 +8261,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8354
8261
|
readonly inlineTitle?: string | undefined;
|
|
8355
8262
|
readonly inlineColumns?: any[] | undefined;
|
|
8356
8263
|
readonly inlineAmountField?: string | undefined;
|
|
8357
|
-
readonly relatedList?: boolean | undefined;
|
|
8264
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8358
8265
|
readonly relatedListTitle?: string | undefined;
|
|
8359
8266
|
readonly relatedListColumns?: any[] | undefined;
|
|
8360
8267
|
readonly displayField?: string | undefined;
|
|
@@ -8529,7 +8436,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8529
8436
|
readonly inlineTitle?: string | undefined;
|
|
8530
8437
|
readonly inlineColumns?: any[] | undefined;
|
|
8531
8438
|
readonly inlineAmountField?: string | undefined;
|
|
8532
|
-
readonly relatedList?: boolean | undefined;
|
|
8439
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8533
8440
|
readonly relatedListTitle?: string | undefined;
|
|
8534
8441
|
readonly relatedListColumns?: any[] | undefined;
|
|
8535
8442
|
readonly displayField?: string | undefined;
|