@objectstack/platform-objects 11.10.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 -1448
- package/dist/audit/index.d.ts +1148 -1448
- package/dist/identity/index.d.mts +2772 -3084
- package/dist/identity/index.d.ts +2772 -3084
- 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 -425
- package/dist/system/index.d.ts +335 -425
- 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;
|
|
@@ -354,7 +354,7 @@ declare const SysSetting: Omit<{
|
|
|
354
354
|
highlightFields?: string[] | undefined;
|
|
355
355
|
stageField?: string | false | undefined;
|
|
356
356
|
listViews?: Record<string, {
|
|
357
|
-
type: "tree" | "grid" | "kanban" | "
|
|
357
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
358
358
|
columns: string[] | {
|
|
359
359
|
field: string;
|
|
360
360
|
label?: string | undefined;
|
|
@@ -370,8 +370,55 @@ declare const SysSetting: Omit<{
|
|
|
370
370
|
link?: boolean | undefined;
|
|
371
371
|
action?: string | undefined;
|
|
372
372
|
}[];
|
|
373
|
-
|
|
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;
|
|
374
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;
|
|
375
422
|
data?: {
|
|
376
423
|
provider: "object";
|
|
377
424
|
object: string;
|
|
@@ -399,77 +446,42 @@ declare const SysSetting: Omit<{
|
|
|
399
446
|
schemaId: string;
|
|
400
447
|
schema?: Record<string, unknown> | undefined;
|
|
401
448
|
} | undefined;
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
field: string;
|
|
409
|
-
order: "asc" | "desc";
|
|
410
|
-
}[] | undefined;
|
|
411
|
-
searchableFields?: string[] | undefined;
|
|
412
|
-
filterableFields?: string[] | undefined;
|
|
413
|
-
userFilters?: {
|
|
414
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
415
|
-
fields?: {
|
|
416
|
-
field: string;
|
|
417
|
-
label?: string | undefined;
|
|
418
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
419
|
-
options?: {
|
|
420
|
-
value: string | number | boolean;
|
|
421
|
-
label: string;
|
|
422
|
-
color?: string | undefined;
|
|
423
|
-
}[] | undefined;
|
|
424
|
-
showCount?: boolean | undefined;
|
|
425
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
426
|
-
}[] | undefined;
|
|
427
|
-
tabs?: {
|
|
428
|
-
name: string;
|
|
429
|
-
pinned: boolean;
|
|
430
|
-
isDefault: boolean;
|
|
431
|
-
visible: boolean;
|
|
432
|
-
label?: string | undefined;
|
|
433
|
-
icon?: string | undefined;
|
|
434
|
-
view?: string | undefined;
|
|
435
|
-
filter?: {
|
|
436
|
-
field: string;
|
|
437
|
-
operator: string;
|
|
438
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
439
|
-
}[] | undefined;
|
|
440
|
-
order?: number | undefined;
|
|
441
|
-
}[] | undefined;
|
|
442
|
-
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;
|
|
443
455
|
} | undefined;
|
|
456
|
+
inlineEdit?: boolean | undefined;
|
|
457
|
+
virtualScroll?: boolean | undefined;
|
|
444
458
|
resizable?: boolean | undefined;
|
|
445
|
-
striped?: boolean | undefined;
|
|
446
|
-
bordered?: boolean | undefined;
|
|
447
|
-
compactToolbar?: boolean | undefined;
|
|
448
|
-
selection?: {
|
|
449
|
-
type: "none" | "multiple" | "single";
|
|
450
|
-
} | undefined;
|
|
451
|
-
navigation?: {
|
|
452
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
453
|
-
preventNavigation: boolean;
|
|
454
|
-
openNewTab: boolean;
|
|
455
|
-
view?: string | undefined;
|
|
456
|
-
width?: string | number | undefined;
|
|
457
|
-
} | undefined;
|
|
458
|
-
pagination?: {
|
|
459
|
-
pageSize: number;
|
|
460
|
-
pageSizeOptions?: number[] | undefined;
|
|
461
|
-
} | undefined;
|
|
462
459
|
kanban?: {
|
|
463
460
|
groupByField: string;
|
|
464
461
|
columns: string[];
|
|
465
462
|
summarizeField?: string | undefined;
|
|
466
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;
|
|
467
471
|
calendar?: {
|
|
468
472
|
startDateField: string;
|
|
469
473
|
titleField: string;
|
|
470
474
|
endDateField?: string | undefined;
|
|
471
475
|
colorField?: string | undefined;
|
|
472
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;
|
|
473
485
|
gantt?: {
|
|
474
486
|
[x: string]: unknown;
|
|
475
487
|
startDateField: string;
|
|
@@ -501,40 +513,40 @@ declare const SysSetting: Omit<{
|
|
|
501
513
|
}[] | undefined;
|
|
502
514
|
autoZoomToFilter?: boolean | undefined;
|
|
503
515
|
} | undefined;
|
|
504
|
-
gallery?: {
|
|
505
|
-
coverFit: "cover" | "contain";
|
|
506
|
-
cardSize: "small" | "medium" | "large";
|
|
507
|
-
coverField?: string | undefined;
|
|
508
|
-
titleField?: string | undefined;
|
|
509
|
-
visibleFields?: string[] | undefined;
|
|
510
|
-
} | undefined;
|
|
511
|
-
timeline?: {
|
|
512
|
-
startDateField: string;
|
|
513
|
-
titleField: string;
|
|
514
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
515
|
-
endDateField?: string | undefined;
|
|
516
|
-
groupByField?: string | undefined;
|
|
517
|
-
colorField?: string | undefined;
|
|
518
|
-
} | undefined;
|
|
519
516
|
chart?: {
|
|
520
517
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
521
518
|
dataset: string;
|
|
522
519
|
values: string[];
|
|
523
520
|
dimensions?: string[] | undefined;
|
|
524
521
|
} | undefined;
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
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";
|
|
531
545
|
} | undefined;
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
lockedBy?: string | undefined;
|
|
546
|
+
pagination?: {
|
|
547
|
+
pageSize: number;
|
|
548
|
+
pageSizeOptions?: number[] | undefined;
|
|
536
549
|
} | undefined;
|
|
537
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
538
550
|
grouping?: {
|
|
539
551
|
fields: {
|
|
540
552
|
field: string;
|
|
@@ -551,7 +563,6 @@ declare const SysSetting: Omit<{
|
|
|
551
563
|
rowActions?: string[] | undefined;
|
|
552
564
|
bulkActions?: string[] | undefined;
|
|
553
565
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
554
|
-
virtualScroll?: boolean | undefined;
|
|
555
566
|
conditionalFormatting?: {
|
|
556
567
|
condition: {
|
|
557
568
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -572,7 +583,6 @@ declare const SysSetting: Omit<{
|
|
|
572
583
|
};
|
|
573
584
|
style: Record<string, string>;
|
|
574
585
|
}[] | undefined;
|
|
575
|
-
inlineEdit?: boolean | undefined;
|
|
576
586
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
577
587
|
userActions?: {
|
|
578
588
|
sort: boolean;
|
|
@@ -585,23 +595,8 @@ declare const SysSetting: Omit<{
|
|
|
585
595
|
} | undefined;
|
|
586
596
|
appearance?: {
|
|
587
597
|
showDescription: boolean;
|
|
588
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
598
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
589
599
|
} | undefined;
|
|
590
|
-
tabs?: {
|
|
591
|
-
name: string;
|
|
592
|
-
pinned: boolean;
|
|
593
|
-
isDefault: boolean;
|
|
594
|
-
visible: boolean;
|
|
595
|
-
label?: string | undefined;
|
|
596
|
-
icon?: string | undefined;
|
|
597
|
-
view?: string | undefined;
|
|
598
|
-
filter?: {
|
|
599
|
-
field: string;
|
|
600
|
-
operator: string;
|
|
601
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
602
|
-
}[] | undefined;
|
|
603
|
-
order?: number | undefined;
|
|
604
|
-
}[] | undefined;
|
|
605
600
|
addRecord?: {
|
|
606
601
|
enabled: boolean;
|
|
607
602
|
position: "top" | "bottom" | "both";
|
|
@@ -615,31 +610,6 @@ declare const SysSetting: Omit<{
|
|
|
615
610
|
message?: string | undefined;
|
|
616
611
|
icon?: string | undefined;
|
|
617
612
|
} | undefined;
|
|
618
|
-
aria?: {
|
|
619
|
-
ariaLabel?: string | undefined;
|
|
620
|
-
ariaDescribedBy?: string | undefined;
|
|
621
|
-
role?: string | undefined;
|
|
622
|
-
} | undefined;
|
|
623
|
-
responsive?: {
|
|
624
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
625
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
626
|
-
columns?: {
|
|
627
|
-
xs?: number | undefined;
|
|
628
|
-
sm?: number | undefined;
|
|
629
|
-
md?: number | undefined;
|
|
630
|
-
lg?: number | undefined;
|
|
631
|
-
xl?: number | undefined;
|
|
632
|
-
'2xl'?: number | undefined;
|
|
633
|
-
} | undefined;
|
|
634
|
-
order?: {
|
|
635
|
-
xs?: number | undefined;
|
|
636
|
-
sm?: number | undefined;
|
|
637
|
-
md?: number | undefined;
|
|
638
|
-
lg?: number | undefined;
|
|
639
|
-
xl?: number | undefined;
|
|
640
|
-
'2xl'?: number | undefined;
|
|
641
|
-
} | undefined;
|
|
642
|
-
} | undefined;
|
|
643
613
|
performance?: {
|
|
644
614
|
lazyLoad?: boolean | undefined;
|
|
645
615
|
virtualScroll?: {
|
|
@@ -938,7 +908,7 @@ declare const SysSetting: Omit<{
|
|
|
938
908
|
readonly inlineTitle?: string | undefined;
|
|
939
909
|
readonly inlineColumns?: any[] | undefined;
|
|
940
910
|
readonly inlineAmountField?: string | undefined;
|
|
941
|
-
readonly relatedList?: boolean | undefined;
|
|
911
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
942
912
|
readonly relatedListTitle?: string | undefined;
|
|
943
913
|
readonly relatedListColumns?: any[] | undefined;
|
|
944
914
|
readonly displayField?: string | undefined;
|
|
@@ -1112,7 +1082,7 @@ declare const SysSetting: Omit<{
|
|
|
1112
1082
|
readonly inlineTitle?: string | undefined;
|
|
1113
1083
|
readonly inlineColumns?: any[] | undefined;
|
|
1114
1084
|
readonly inlineAmountField?: string | undefined;
|
|
1115
|
-
readonly relatedList?: boolean | undefined;
|
|
1085
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1116
1086
|
readonly relatedListTitle?: string | undefined;
|
|
1117
1087
|
readonly relatedListColumns?: any[] | undefined;
|
|
1118
1088
|
readonly displayField?: string | undefined;
|
|
@@ -1286,7 +1256,7 @@ declare const SysSetting: Omit<{
|
|
|
1286
1256
|
readonly inlineTitle?: string | undefined;
|
|
1287
1257
|
readonly inlineColumns?: any[] | undefined;
|
|
1288
1258
|
readonly inlineAmountField?: string | undefined;
|
|
1289
|
-
readonly relatedList?: boolean | undefined;
|
|
1259
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1290
1260
|
readonly relatedListTitle?: string | undefined;
|
|
1291
1261
|
readonly relatedListColumns?: any[] | undefined;
|
|
1292
1262
|
readonly displayField?: string | undefined;
|
|
@@ -1460,7 +1430,7 @@ declare const SysSetting: Omit<{
|
|
|
1460
1430
|
readonly inlineTitle?: string | undefined;
|
|
1461
1431
|
readonly inlineColumns?: any[] | undefined;
|
|
1462
1432
|
readonly inlineAmountField?: string | undefined;
|
|
1463
|
-
readonly relatedList?: boolean | undefined;
|
|
1433
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1464
1434
|
readonly relatedListTitle?: string | undefined;
|
|
1465
1435
|
readonly relatedListColumns?: any[] | undefined;
|
|
1466
1436
|
readonly displayField?: string | undefined;
|
|
@@ -1634,7 +1604,7 @@ declare const SysSetting: Omit<{
|
|
|
1634
1604
|
readonly inlineTitle?: string | undefined;
|
|
1635
1605
|
readonly inlineColumns?: any[] | undefined;
|
|
1636
1606
|
readonly inlineAmountField?: string | undefined;
|
|
1637
|
-
readonly relatedList?: boolean | undefined;
|
|
1607
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1638
1608
|
readonly relatedListTitle?: string | undefined;
|
|
1639
1609
|
readonly relatedListColumns?: any[] | undefined;
|
|
1640
1610
|
readonly displayField?: string | undefined;
|
|
@@ -1808,7 +1778,7 @@ declare const SysSetting: Omit<{
|
|
|
1808
1778
|
readonly inlineTitle?: string | undefined;
|
|
1809
1779
|
readonly inlineColumns?: any[] | undefined;
|
|
1810
1780
|
readonly inlineAmountField?: string | undefined;
|
|
1811
|
-
readonly relatedList?: boolean | undefined;
|
|
1781
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1812
1782
|
readonly relatedListTitle?: string | undefined;
|
|
1813
1783
|
readonly relatedListColumns?: any[] | undefined;
|
|
1814
1784
|
readonly displayField?: string | undefined;
|
|
@@ -1982,7 +1952,7 @@ declare const SysSetting: Omit<{
|
|
|
1982
1952
|
readonly inlineTitle?: string | undefined;
|
|
1983
1953
|
readonly inlineColumns?: any[] | undefined;
|
|
1984
1954
|
readonly inlineAmountField?: string | undefined;
|
|
1985
|
-
readonly relatedList?: boolean | undefined;
|
|
1955
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
1986
1956
|
readonly relatedListTitle?: string | undefined;
|
|
1987
1957
|
readonly relatedListColumns?: any[] | undefined;
|
|
1988
1958
|
readonly displayField?: string | undefined;
|
|
@@ -2156,7 +2126,7 @@ declare const SysSetting: Omit<{
|
|
|
2156
2126
|
readonly inlineTitle?: string | undefined;
|
|
2157
2127
|
readonly inlineColumns?: any[] | undefined;
|
|
2158
2128
|
readonly inlineAmountField?: string | undefined;
|
|
2159
|
-
readonly relatedList?: boolean | undefined;
|
|
2129
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2160
2130
|
readonly relatedListTitle?: string | undefined;
|
|
2161
2131
|
readonly relatedListColumns?: any[] | undefined;
|
|
2162
2132
|
readonly displayField?: string | undefined;
|
|
@@ -2330,7 +2300,7 @@ declare const SysSetting: Omit<{
|
|
|
2330
2300
|
readonly inlineTitle?: string | undefined;
|
|
2331
2301
|
readonly inlineColumns?: any[] | undefined;
|
|
2332
2302
|
readonly inlineAmountField?: string | undefined;
|
|
2333
|
-
readonly relatedList?: boolean | undefined;
|
|
2303
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2334
2304
|
readonly relatedListTitle?: string | undefined;
|
|
2335
2305
|
readonly relatedListColumns?: any[] | undefined;
|
|
2336
2306
|
readonly displayField?: string | undefined;
|
|
@@ -2504,7 +2474,7 @@ declare const SysSetting: Omit<{
|
|
|
2504
2474
|
readonly inlineTitle?: string | undefined;
|
|
2505
2475
|
readonly inlineColumns?: any[] | undefined;
|
|
2506
2476
|
readonly inlineAmountField?: string | undefined;
|
|
2507
|
-
readonly relatedList?: boolean | undefined;
|
|
2477
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2508
2478
|
readonly relatedListTitle?: string | undefined;
|
|
2509
2479
|
readonly relatedListColumns?: any[] | undefined;
|
|
2510
2480
|
readonly displayField?: string | undefined;
|
|
@@ -2678,7 +2648,7 @@ declare const SysSetting: Omit<{
|
|
|
2678
2648
|
readonly inlineTitle?: string | undefined;
|
|
2679
2649
|
readonly inlineColumns?: any[] | undefined;
|
|
2680
2650
|
readonly inlineAmountField?: string | undefined;
|
|
2681
|
-
readonly relatedList?: boolean | undefined;
|
|
2651
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2682
2652
|
readonly relatedListTitle?: string | undefined;
|
|
2683
2653
|
readonly relatedListColumns?: any[] | undefined;
|
|
2684
2654
|
readonly displayField?: string | undefined;
|
|
@@ -2852,7 +2822,7 @@ declare const SysSetting: Omit<{
|
|
|
2852
2822
|
readonly inlineTitle?: string | undefined;
|
|
2853
2823
|
readonly inlineColumns?: any[] | undefined;
|
|
2854
2824
|
readonly inlineAmountField?: string | undefined;
|
|
2855
|
-
readonly relatedList?: boolean | undefined;
|
|
2825
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
2856
2826
|
readonly relatedListTitle?: string | undefined;
|
|
2857
2827
|
readonly relatedListColumns?: any[] | undefined;
|
|
2858
2828
|
readonly displayField?: string | undefined;
|
|
@@ -3026,7 +2996,7 @@ declare const SysSetting: Omit<{
|
|
|
3026
2996
|
readonly inlineTitle?: string | undefined;
|
|
3027
2997
|
readonly inlineColumns?: any[] | undefined;
|
|
3028
2998
|
readonly inlineAmountField?: string | undefined;
|
|
3029
|
-
readonly relatedList?: boolean | undefined;
|
|
2999
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
3030
3000
|
readonly relatedListTitle?: string | undefined;
|
|
3031
3001
|
readonly relatedListColumns?: any[] | undefined;
|
|
3032
3002
|
readonly displayField?: string | undefined;
|
|
@@ -3251,7 +3221,7 @@ declare const SysSecret: Omit<{
|
|
|
3251
3221
|
inlineTitle?: string | undefined;
|
|
3252
3222
|
inlineColumns?: any[] | undefined;
|
|
3253
3223
|
inlineAmountField?: string | undefined;
|
|
3254
|
-
relatedList?: boolean | undefined;
|
|
3224
|
+
relatedList?: boolean | "primary" | undefined;
|
|
3255
3225
|
relatedListTitle?: string | undefined;
|
|
3256
3226
|
relatedListColumns?: any[] | undefined;
|
|
3257
3227
|
displayField?: string | undefined;
|
|
@@ -3534,7 +3504,7 @@ declare const SysSecret: Omit<{
|
|
|
3534
3504
|
highlightFields?: string[] | undefined;
|
|
3535
3505
|
stageField?: string | false | undefined;
|
|
3536
3506
|
listViews?: Record<string, {
|
|
3537
|
-
type: "tree" | "grid" | "kanban" | "
|
|
3507
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
3538
3508
|
columns: string[] | {
|
|
3539
3509
|
field: string;
|
|
3540
3510
|
label?: string | undefined;
|
|
@@ -3550,8 +3520,55 @@ declare const SysSecret: Omit<{
|
|
|
3550
3520
|
link?: boolean | undefined;
|
|
3551
3521
|
action?: string | undefined;
|
|
3552
3522
|
}[];
|
|
3553
|
-
|
|
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;
|
|
3554
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;
|
|
3555
3572
|
data?: {
|
|
3556
3573
|
provider: "object";
|
|
3557
3574
|
object: string;
|
|
@@ -3579,77 +3596,42 @@ declare const SysSecret: Omit<{
|
|
|
3579
3596
|
schemaId: string;
|
|
3580
3597
|
schema?: Record<string, unknown> | undefined;
|
|
3581
3598
|
} | undefined;
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
field: string;
|
|
3589
|
-
order: "asc" | "desc";
|
|
3590
|
-
}[] | undefined;
|
|
3591
|
-
searchableFields?: string[] | undefined;
|
|
3592
|
-
filterableFields?: string[] | undefined;
|
|
3593
|
-
userFilters?: {
|
|
3594
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
3595
|
-
fields?: {
|
|
3596
|
-
field: string;
|
|
3597
|
-
label?: string | undefined;
|
|
3598
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
3599
|
-
options?: {
|
|
3600
|
-
value: string | number | boolean;
|
|
3601
|
-
label: string;
|
|
3602
|
-
color?: string | undefined;
|
|
3603
|
-
}[] | undefined;
|
|
3604
|
-
showCount?: boolean | undefined;
|
|
3605
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
3606
|
-
}[] | undefined;
|
|
3607
|
-
tabs?: {
|
|
3608
|
-
name: string;
|
|
3609
|
-
pinned: boolean;
|
|
3610
|
-
isDefault: boolean;
|
|
3611
|
-
visible: boolean;
|
|
3612
|
-
label?: string | undefined;
|
|
3613
|
-
icon?: string | undefined;
|
|
3614
|
-
view?: string | undefined;
|
|
3615
|
-
filter?: {
|
|
3616
|
-
field: string;
|
|
3617
|
-
operator: string;
|
|
3618
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3619
|
-
}[] | undefined;
|
|
3620
|
-
order?: number | undefined;
|
|
3621
|
-
}[] | undefined;
|
|
3622
|
-
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;
|
|
3623
3605
|
} | undefined;
|
|
3606
|
+
inlineEdit?: boolean | undefined;
|
|
3607
|
+
virtualScroll?: boolean | undefined;
|
|
3624
3608
|
resizable?: boolean | undefined;
|
|
3625
|
-
striped?: boolean | undefined;
|
|
3626
|
-
bordered?: boolean | undefined;
|
|
3627
|
-
compactToolbar?: boolean | undefined;
|
|
3628
|
-
selection?: {
|
|
3629
|
-
type: "none" | "multiple" | "single";
|
|
3630
|
-
} | undefined;
|
|
3631
|
-
navigation?: {
|
|
3632
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
3633
|
-
preventNavigation: boolean;
|
|
3634
|
-
openNewTab: boolean;
|
|
3635
|
-
view?: string | undefined;
|
|
3636
|
-
width?: string | number | undefined;
|
|
3637
|
-
} | undefined;
|
|
3638
|
-
pagination?: {
|
|
3639
|
-
pageSize: number;
|
|
3640
|
-
pageSizeOptions?: number[] | undefined;
|
|
3641
|
-
} | undefined;
|
|
3642
3609
|
kanban?: {
|
|
3643
3610
|
groupByField: string;
|
|
3644
3611
|
columns: string[];
|
|
3645
3612
|
summarizeField?: string | undefined;
|
|
3646
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;
|
|
3647
3621
|
calendar?: {
|
|
3648
3622
|
startDateField: string;
|
|
3649
3623
|
titleField: string;
|
|
3650
3624
|
endDateField?: string | undefined;
|
|
3651
3625
|
colorField?: string | undefined;
|
|
3652
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;
|
|
3653
3635
|
gantt?: {
|
|
3654
3636
|
[x: string]: unknown;
|
|
3655
3637
|
startDateField: string;
|
|
@@ -3681,40 +3663,40 @@ declare const SysSecret: Omit<{
|
|
|
3681
3663
|
}[] | undefined;
|
|
3682
3664
|
autoZoomToFilter?: boolean | undefined;
|
|
3683
3665
|
} | undefined;
|
|
3684
|
-
gallery?: {
|
|
3685
|
-
coverFit: "cover" | "contain";
|
|
3686
|
-
cardSize: "small" | "medium" | "large";
|
|
3687
|
-
coverField?: string | undefined;
|
|
3688
|
-
titleField?: string | undefined;
|
|
3689
|
-
visibleFields?: string[] | undefined;
|
|
3690
|
-
} | undefined;
|
|
3691
|
-
timeline?: {
|
|
3692
|
-
startDateField: string;
|
|
3693
|
-
titleField: string;
|
|
3694
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
3695
|
-
endDateField?: string | undefined;
|
|
3696
|
-
groupByField?: string | undefined;
|
|
3697
|
-
colorField?: string | undefined;
|
|
3698
|
-
} | undefined;
|
|
3699
3666
|
chart?: {
|
|
3700
3667
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
3701
3668
|
dataset: string;
|
|
3702
3669
|
values: string[];
|
|
3703
3670
|
dimensions?: string[] | undefined;
|
|
3704
3671
|
} | undefined;
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
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";
|
|
3711
3695
|
} | undefined;
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
lockedBy?: string | undefined;
|
|
3696
|
+
pagination?: {
|
|
3697
|
+
pageSize: number;
|
|
3698
|
+
pageSizeOptions?: number[] | undefined;
|
|
3716
3699
|
} | undefined;
|
|
3717
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
3718
3700
|
grouping?: {
|
|
3719
3701
|
fields: {
|
|
3720
3702
|
field: string;
|
|
@@ -3731,7 +3713,6 @@ declare const SysSecret: Omit<{
|
|
|
3731
3713
|
rowActions?: string[] | undefined;
|
|
3732
3714
|
bulkActions?: string[] | undefined;
|
|
3733
3715
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
3734
|
-
virtualScroll?: boolean | undefined;
|
|
3735
3716
|
conditionalFormatting?: {
|
|
3736
3717
|
condition: {
|
|
3737
3718
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -3752,7 +3733,6 @@ declare const SysSecret: Omit<{
|
|
|
3752
3733
|
};
|
|
3753
3734
|
style: Record<string, string>;
|
|
3754
3735
|
}[] | undefined;
|
|
3755
|
-
inlineEdit?: boolean | undefined;
|
|
3756
3736
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
3757
3737
|
userActions?: {
|
|
3758
3738
|
sort: boolean;
|
|
@@ -3765,23 +3745,8 @@ declare const SysSecret: Omit<{
|
|
|
3765
3745
|
} | undefined;
|
|
3766
3746
|
appearance?: {
|
|
3767
3747
|
showDescription: boolean;
|
|
3768
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
3748
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
3769
3749
|
} | undefined;
|
|
3770
|
-
tabs?: {
|
|
3771
|
-
name: string;
|
|
3772
|
-
pinned: boolean;
|
|
3773
|
-
isDefault: boolean;
|
|
3774
|
-
visible: boolean;
|
|
3775
|
-
label?: string | undefined;
|
|
3776
|
-
icon?: string | undefined;
|
|
3777
|
-
view?: string | undefined;
|
|
3778
|
-
filter?: {
|
|
3779
|
-
field: string;
|
|
3780
|
-
operator: string;
|
|
3781
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
3782
|
-
}[] | undefined;
|
|
3783
|
-
order?: number | undefined;
|
|
3784
|
-
}[] | undefined;
|
|
3785
3750
|
addRecord?: {
|
|
3786
3751
|
enabled: boolean;
|
|
3787
3752
|
position: "top" | "bottom" | "both";
|
|
@@ -3795,31 +3760,6 @@ declare const SysSecret: Omit<{
|
|
|
3795
3760
|
message?: string | undefined;
|
|
3796
3761
|
icon?: string | undefined;
|
|
3797
3762
|
} | undefined;
|
|
3798
|
-
aria?: {
|
|
3799
|
-
ariaLabel?: string | undefined;
|
|
3800
|
-
ariaDescribedBy?: string | undefined;
|
|
3801
|
-
role?: string | undefined;
|
|
3802
|
-
} | undefined;
|
|
3803
|
-
responsive?: {
|
|
3804
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
3805
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
3806
|
-
columns?: {
|
|
3807
|
-
xs?: number | undefined;
|
|
3808
|
-
sm?: number | undefined;
|
|
3809
|
-
md?: number | undefined;
|
|
3810
|
-
lg?: number | undefined;
|
|
3811
|
-
xl?: number | undefined;
|
|
3812
|
-
'2xl'?: number | undefined;
|
|
3813
|
-
} | undefined;
|
|
3814
|
-
order?: {
|
|
3815
|
-
xs?: number | undefined;
|
|
3816
|
-
sm?: number | undefined;
|
|
3817
|
-
md?: number | undefined;
|
|
3818
|
-
lg?: number | undefined;
|
|
3819
|
-
xl?: number | undefined;
|
|
3820
|
-
'2xl'?: number | undefined;
|
|
3821
|
-
} | undefined;
|
|
3822
|
-
} | undefined;
|
|
3823
3763
|
performance?: {
|
|
3824
3764
|
lazyLoad?: boolean | undefined;
|
|
3825
3765
|
virtualScroll?: {
|
|
@@ -4027,7 +3967,7 @@ declare const SysSecret: Omit<{
|
|
|
4027
3967
|
readonly inlineTitle?: string | undefined;
|
|
4028
3968
|
readonly inlineColumns?: any[] | undefined;
|
|
4029
3969
|
readonly inlineAmountField?: string | undefined;
|
|
4030
|
-
readonly relatedList?: boolean | undefined;
|
|
3970
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4031
3971
|
readonly relatedListTitle?: string | undefined;
|
|
4032
3972
|
readonly relatedListColumns?: any[] | undefined;
|
|
4033
3973
|
readonly displayField?: string | undefined;
|
|
@@ -4201,7 +4141,7 @@ declare const SysSecret: Omit<{
|
|
|
4201
4141
|
readonly inlineTitle?: string | undefined;
|
|
4202
4142
|
readonly inlineColumns?: any[] | undefined;
|
|
4203
4143
|
readonly inlineAmountField?: string | undefined;
|
|
4204
|
-
readonly relatedList?: boolean | undefined;
|
|
4144
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4205
4145
|
readonly relatedListTitle?: string | undefined;
|
|
4206
4146
|
readonly relatedListColumns?: any[] | undefined;
|
|
4207
4147
|
readonly displayField?: string | undefined;
|
|
@@ -4375,7 +4315,7 @@ declare const SysSecret: Omit<{
|
|
|
4375
4315
|
readonly inlineTitle?: string | undefined;
|
|
4376
4316
|
readonly inlineColumns?: any[] | undefined;
|
|
4377
4317
|
readonly inlineAmountField?: string | undefined;
|
|
4378
|
-
readonly relatedList?: boolean | undefined;
|
|
4318
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4379
4319
|
readonly relatedListTitle?: string | undefined;
|
|
4380
4320
|
readonly relatedListColumns?: any[] | undefined;
|
|
4381
4321
|
readonly displayField?: string | undefined;
|
|
@@ -4555,7 +4495,7 @@ declare const SysSecret: Omit<{
|
|
|
4555
4495
|
readonly inlineTitle?: string | undefined;
|
|
4556
4496
|
readonly inlineColumns?: any[] | undefined;
|
|
4557
4497
|
readonly inlineAmountField?: string | undefined;
|
|
4558
|
-
readonly relatedList?: boolean | undefined;
|
|
4498
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4559
4499
|
readonly relatedListTitle?: string | undefined;
|
|
4560
4500
|
readonly relatedListColumns?: any[] | undefined;
|
|
4561
4501
|
readonly displayField?: string | undefined;
|
|
@@ -4729,7 +4669,7 @@ declare const SysSecret: Omit<{
|
|
|
4729
4669
|
readonly inlineTitle?: string | undefined;
|
|
4730
4670
|
readonly inlineColumns?: any[] | undefined;
|
|
4731
4671
|
readonly inlineAmountField?: string | undefined;
|
|
4732
|
-
readonly relatedList?: boolean | undefined;
|
|
4672
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4733
4673
|
readonly relatedListTitle?: string | undefined;
|
|
4734
4674
|
readonly relatedListColumns?: any[] | undefined;
|
|
4735
4675
|
readonly displayField?: string | undefined;
|
|
@@ -4904,7 +4844,7 @@ declare const SysSecret: Omit<{
|
|
|
4904
4844
|
readonly inlineTitle?: string | undefined;
|
|
4905
4845
|
readonly inlineColumns?: any[] | undefined;
|
|
4906
4846
|
readonly inlineAmountField?: string | undefined;
|
|
4907
|
-
readonly relatedList?: boolean | undefined;
|
|
4847
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
4908
4848
|
readonly relatedListTitle?: string | undefined;
|
|
4909
4849
|
readonly relatedListColumns?: any[] | undefined;
|
|
4910
4850
|
readonly displayField?: string | undefined;
|
|
@@ -5079,7 +5019,7 @@ declare const SysSecret: Omit<{
|
|
|
5079
5019
|
readonly inlineTitle?: string | undefined;
|
|
5080
5020
|
readonly inlineColumns?: any[] | undefined;
|
|
5081
5021
|
readonly inlineAmountField?: string | undefined;
|
|
5082
|
-
readonly relatedList?: boolean | undefined;
|
|
5022
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5083
5023
|
readonly relatedListTitle?: string | undefined;
|
|
5084
5024
|
readonly relatedListColumns?: any[] | undefined;
|
|
5085
5025
|
readonly displayField?: string | undefined;
|
|
@@ -5254,7 +5194,7 @@ declare const SysSecret: Omit<{
|
|
|
5254
5194
|
readonly inlineTitle?: string | undefined;
|
|
5255
5195
|
readonly inlineColumns?: any[] | undefined;
|
|
5256
5196
|
readonly inlineAmountField?: string | undefined;
|
|
5257
|
-
readonly relatedList?: boolean | undefined;
|
|
5197
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5258
5198
|
readonly relatedListTitle?: string | undefined;
|
|
5259
5199
|
readonly relatedListColumns?: any[] | undefined;
|
|
5260
5200
|
readonly displayField?: string | undefined;
|
|
@@ -5428,7 +5368,7 @@ declare const SysSecret: Omit<{
|
|
|
5428
5368
|
readonly inlineTitle?: string | undefined;
|
|
5429
5369
|
readonly inlineColumns?: any[] | undefined;
|
|
5430
5370
|
readonly inlineAmountField?: string | undefined;
|
|
5431
|
-
readonly relatedList?: boolean | undefined;
|
|
5371
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
5432
5372
|
readonly relatedListTitle?: string | undefined;
|
|
5433
5373
|
readonly relatedListColumns?: any[] | undefined;
|
|
5434
5374
|
readonly displayField?: string | undefined;
|
|
@@ -5643,7 +5583,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5643
5583
|
inlineTitle?: string | undefined;
|
|
5644
5584
|
inlineColumns?: any[] | undefined;
|
|
5645
5585
|
inlineAmountField?: string | undefined;
|
|
5646
|
-
relatedList?: boolean | undefined;
|
|
5586
|
+
relatedList?: boolean | "primary" | undefined;
|
|
5647
5587
|
relatedListTitle?: string | undefined;
|
|
5648
5588
|
relatedListColumns?: any[] | undefined;
|
|
5649
5589
|
displayField?: string | undefined;
|
|
@@ -5926,7 +5866,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
5926
5866
|
highlightFields?: string[] | undefined;
|
|
5927
5867
|
stageField?: string | false | undefined;
|
|
5928
5868
|
listViews?: Record<string, {
|
|
5929
|
-
type: "tree" | "grid" | "kanban" | "
|
|
5869
|
+
type: "tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map";
|
|
5930
5870
|
columns: string[] | {
|
|
5931
5871
|
field: string;
|
|
5932
5872
|
label?: string | undefined;
|
|
@@ -5942,8 +5882,55 @@ declare const SysSettingAudit: Omit<{
|
|
|
5942
5882
|
link?: boolean | undefined;
|
|
5943
5883
|
action?: string | undefined;
|
|
5944
5884
|
}[];
|
|
5945
|
-
|
|
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;
|
|
5946
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;
|
|
5947
5934
|
data?: {
|
|
5948
5935
|
provider: "object";
|
|
5949
5936
|
object: string;
|
|
@@ -5971,77 +5958,42 @@ declare const SysSettingAudit: Omit<{
|
|
|
5971
5958
|
schemaId: string;
|
|
5972
5959
|
schema?: Record<string, unknown> | undefined;
|
|
5973
5960
|
} | undefined;
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
field: string;
|
|
5981
|
-
order: "asc" | "desc";
|
|
5982
|
-
}[] | undefined;
|
|
5983
|
-
searchableFields?: string[] | undefined;
|
|
5984
|
-
filterableFields?: string[] | undefined;
|
|
5985
|
-
userFilters?: {
|
|
5986
|
-
element: "toggle" | "tabs" | "dropdown";
|
|
5987
|
-
fields?: {
|
|
5988
|
-
field: string;
|
|
5989
|
-
label?: string | undefined;
|
|
5990
|
-
type?: "boolean" | "text" | "select" | "multi-select" | "date-range" | undefined;
|
|
5991
|
-
options?: {
|
|
5992
|
-
value: string | number | boolean;
|
|
5993
|
-
label: string;
|
|
5994
|
-
color?: string | undefined;
|
|
5995
|
-
}[] | undefined;
|
|
5996
|
-
showCount?: boolean | undefined;
|
|
5997
|
-
defaultValues?: (string | number | boolean)[] | undefined;
|
|
5998
|
-
}[] | undefined;
|
|
5999
|
-
tabs?: {
|
|
6000
|
-
name: string;
|
|
6001
|
-
pinned: boolean;
|
|
6002
|
-
isDefault: boolean;
|
|
6003
|
-
visible: boolean;
|
|
6004
|
-
label?: string | undefined;
|
|
6005
|
-
icon?: string | undefined;
|
|
6006
|
-
view?: string | undefined;
|
|
6007
|
-
filter?: {
|
|
6008
|
-
field: string;
|
|
6009
|
-
operator: string;
|
|
6010
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6011
|
-
}[] | undefined;
|
|
6012
|
-
order?: number | undefined;
|
|
6013
|
-
}[] | undefined;
|
|
6014
|
-
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;
|
|
6015
5967
|
} | undefined;
|
|
5968
|
+
inlineEdit?: boolean | undefined;
|
|
5969
|
+
virtualScroll?: boolean | undefined;
|
|
6016
5970
|
resizable?: boolean | undefined;
|
|
6017
|
-
striped?: boolean | undefined;
|
|
6018
|
-
bordered?: boolean | undefined;
|
|
6019
|
-
compactToolbar?: boolean | undefined;
|
|
6020
|
-
selection?: {
|
|
6021
|
-
type: "none" | "multiple" | "single";
|
|
6022
|
-
} | undefined;
|
|
6023
|
-
navigation?: {
|
|
6024
|
-
mode: "none" | "split" | "page" | "drawer" | "modal" | "popover" | "new_window";
|
|
6025
|
-
preventNavigation: boolean;
|
|
6026
|
-
openNewTab: boolean;
|
|
6027
|
-
view?: string | undefined;
|
|
6028
|
-
width?: string | number | undefined;
|
|
6029
|
-
} | undefined;
|
|
6030
|
-
pagination?: {
|
|
6031
|
-
pageSize: number;
|
|
6032
|
-
pageSizeOptions?: number[] | undefined;
|
|
6033
|
-
} | undefined;
|
|
6034
5971
|
kanban?: {
|
|
6035
5972
|
groupByField: string;
|
|
6036
5973
|
columns: string[];
|
|
6037
5974
|
summarizeField?: string | undefined;
|
|
6038
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;
|
|
6039
5983
|
calendar?: {
|
|
6040
5984
|
startDateField: string;
|
|
6041
5985
|
titleField: string;
|
|
6042
5986
|
endDateField?: string | undefined;
|
|
6043
5987
|
colorField?: string | undefined;
|
|
6044
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;
|
|
6045
5997
|
gantt?: {
|
|
6046
5998
|
[x: string]: unknown;
|
|
6047
5999
|
startDateField: string;
|
|
@@ -6073,40 +6025,40 @@ declare const SysSettingAudit: Omit<{
|
|
|
6073
6025
|
}[] | undefined;
|
|
6074
6026
|
autoZoomToFilter?: boolean | undefined;
|
|
6075
6027
|
} | undefined;
|
|
6076
|
-
gallery?: {
|
|
6077
|
-
coverFit: "cover" | "contain";
|
|
6078
|
-
cardSize: "small" | "medium" | "large";
|
|
6079
|
-
coverField?: string | undefined;
|
|
6080
|
-
titleField?: string | undefined;
|
|
6081
|
-
visibleFields?: string[] | undefined;
|
|
6082
|
-
} | undefined;
|
|
6083
|
-
timeline?: {
|
|
6084
|
-
startDateField: string;
|
|
6085
|
-
titleField: string;
|
|
6086
|
-
scale: "hour" | "day" | "week" | "month" | "quarter" | "year";
|
|
6087
|
-
endDateField?: string | undefined;
|
|
6088
|
-
groupByField?: string | undefined;
|
|
6089
|
-
colorField?: string | undefined;
|
|
6090
|
-
} | undefined;
|
|
6091
6028
|
chart?: {
|
|
6092
6029
|
chartType: "bar" | "line" | "pie" | "area" | "scatter";
|
|
6093
6030
|
dataset: string;
|
|
6094
6031
|
values: string[];
|
|
6095
6032
|
dimensions?: string[] | undefined;
|
|
6096
6033
|
} | undefined;
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6100
|
-
|
|
6101
|
-
|
|
6102
|
-
|
|
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";
|
|
6103
6057
|
} | undefined;
|
|
6104
|
-
|
|
6105
|
-
|
|
6106
|
-
|
|
6107
|
-
lockedBy?: string | undefined;
|
|
6058
|
+
pagination?: {
|
|
6059
|
+
pageSize: number;
|
|
6060
|
+
pageSizeOptions?: number[] | undefined;
|
|
6108
6061
|
} | undefined;
|
|
6109
|
-
rowHeight?: "medium" | "short" | "compact" | "tall" | "extra_tall" | undefined;
|
|
6110
6062
|
grouping?: {
|
|
6111
6063
|
fields: {
|
|
6112
6064
|
field: string;
|
|
@@ -6123,7 +6075,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6123
6075
|
rowActions?: string[] | undefined;
|
|
6124
6076
|
bulkActions?: string[] | undefined;
|
|
6125
6077
|
bulkActionDefs?: Record<string, any>[] | undefined;
|
|
6126
|
-
virtualScroll?: boolean | undefined;
|
|
6127
6078
|
conditionalFormatting?: {
|
|
6128
6079
|
condition: {
|
|
6129
6080
|
dialect: "cel" | "js" | "cron" | "template";
|
|
@@ -6144,7 +6095,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6144
6095
|
};
|
|
6145
6096
|
style: Record<string, string>;
|
|
6146
6097
|
}[] | undefined;
|
|
6147
|
-
inlineEdit?: boolean | undefined;
|
|
6148
6098
|
exportOptions?: ("json" | "csv" | "xlsx" | "pdf")[] | undefined;
|
|
6149
6099
|
userActions?: {
|
|
6150
6100
|
sort: boolean;
|
|
@@ -6157,23 +6107,8 @@ declare const SysSettingAudit: Omit<{
|
|
|
6157
6107
|
} | undefined;
|
|
6158
6108
|
appearance?: {
|
|
6159
6109
|
showDescription: boolean;
|
|
6160
|
-
allowedVisualizations?: ("tree" | "grid" | "kanban" | "
|
|
6110
|
+
allowedVisualizations?: ("tree" | "grid" | "kanban" | "gallery" | "calendar" | "timeline" | "gantt" | "chart" | "map")[] | undefined;
|
|
6161
6111
|
} | undefined;
|
|
6162
|
-
tabs?: {
|
|
6163
|
-
name: string;
|
|
6164
|
-
pinned: boolean;
|
|
6165
|
-
isDefault: boolean;
|
|
6166
|
-
visible: boolean;
|
|
6167
|
-
label?: string | undefined;
|
|
6168
|
-
icon?: string | undefined;
|
|
6169
|
-
view?: string | undefined;
|
|
6170
|
-
filter?: {
|
|
6171
|
-
field: string;
|
|
6172
|
-
operator: string;
|
|
6173
|
-
value?: string | number | boolean | (string | number)[] | null | undefined;
|
|
6174
|
-
}[] | undefined;
|
|
6175
|
-
order?: number | undefined;
|
|
6176
|
-
}[] | undefined;
|
|
6177
6112
|
addRecord?: {
|
|
6178
6113
|
enabled: boolean;
|
|
6179
6114
|
position: "top" | "bottom" | "both";
|
|
@@ -6187,31 +6122,6 @@ declare const SysSettingAudit: Omit<{
|
|
|
6187
6122
|
message?: string | undefined;
|
|
6188
6123
|
icon?: string | undefined;
|
|
6189
6124
|
} | undefined;
|
|
6190
|
-
aria?: {
|
|
6191
|
-
ariaLabel?: string | undefined;
|
|
6192
|
-
ariaDescribedBy?: string | undefined;
|
|
6193
|
-
role?: string | undefined;
|
|
6194
|
-
} | undefined;
|
|
6195
|
-
responsive?: {
|
|
6196
|
-
breakpoint?: "md" | "xs" | "sm" | "lg" | "xl" | "2xl" | undefined;
|
|
6197
|
-
hiddenOn?: ("md" | "xs" | "sm" | "lg" | "xl" | "2xl")[] | undefined;
|
|
6198
|
-
columns?: {
|
|
6199
|
-
xs?: number | undefined;
|
|
6200
|
-
sm?: number | undefined;
|
|
6201
|
-
md?: number | undefined;
|
|
6202
|
-
lg?: number | undefined;
|
|
6203
|
-
xl?: number | undefined;
|
|
6204
|
-
'2xl'?: number | undefined;
|
|
6205
|
-
} | undefined;
|
|
6206
|
-
order?: {
|
|
6207
|
-
xs?: number | undefined;
|
|
6208
|
-
sm?: number | undefined;
|
|
6209
|
-
md?: number | undefined;
|
|
6210
|
-
lg?: number | undefined;
|
|
6211
|
-
xl?: number | undefined;
|
|
6212
|
-
'2xl'?: number | undefined;
|
|
6213
|
-
} | undefined;
|
|
6214
|
-
} | undefined;
|
|
6215
6125
|
performance?: {
|
|
6216
6126
|
lazyLoad?: boolean | undefined;
|
|
6217
6127
|
virtualScroll?: {
|
|
@@ -6423,7 +6333,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6423
6333
|
readonly inlineTitle?: string | undefined;
|
|
6424
6334
|
readonly inlineColumns?: any[] | undefined;
|
|
6425
6335
|
readonly inlineAmountField?: string | undefined;
|
|
6426
|
-
readonly relatedList?: boolean | undefined;
|
|
6336
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6427
6337
|
readonly relatedListTitle?: string | undefined;
|
|
6428
6338
|
readonly relatedListColumns?: any[] | undefined;
|
|
6429
6339
|
readonly displayField?: string | undefined;
|
|
@@ -6597,7 +6507,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6597
6507
|
readonly inlineTitle?: string | undefined;
|
|
6598
6508
|
readonly inlineColumns?: any[] | undefined;
|
|
6599
6509
|
readonly inlineAmountField?: string | undefined;
|
|
6600
|
-
readonly relatedList?: boolean | undefined;
|
|
6510
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6601
6511
|
readonly relatedListTitle?: string | undefined;
|
|
6602
6512
|
readonly relatedListColumns?: any[] | undefined;
|
|
6603
6513
|
readonly displayField?: string | undefined;
|
|
@@ -6771,7 +6681,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6771
6681
|
readonly inlineTitle?: string | undefined;
|
|
6772
6682
|
readonly inlineColumns?: any[] | undefined;
|
|
6773
6683
|
readonly inlineAmountField?: string | undefined;
|
|
6774
|
-
readonly relatedList?: boolean | undefined;
|
|
6684
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6775
6685
|
readonly relatedListTitle?: string | undefined;
|
|
6776
6686
|
readonly relatedListColumns?: any[] | undefined;
|
|
6777
6687
|
readonly displayField?: string | undefined;
|
|
@@ -6945,7 +6855,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
6945
6855
|
readonly inlineTitle?: string | undefined;
|
|
6946
6856
|
readonly inlineColumns?: any[] | undefined;
|
|
6947
6857
|
readonly inlineAmountField?: string | undefined;
|
|
6948
|
-
readonly relatedList?: boolean | undefined;
|
|
6858
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
6949
6859
|
readonly relatedListTitle?: string | undefined;
|
|
6950
6860
|
readonly relatedListColumns?: any[] | undefined;
|
|
6951
6861
|
readonly displayField?: string | undefined;
|
|
@@ -7119,7 +7029,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7119
7029
|
readonly inlineTitle?: string | undefined;
|
|
7120
7030
|
readonly inlineColumns?: any[] | undefined;
|
|
7121
7031
|
readonly inlineAmountField?: string | undefined;
|
|
7122
|
-
readonly relatedList?: boolean | undefined;
|
|
7032
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7123
7033
|
readonly relatedListTitle?: string | undefined;
|
|
7124
7034
|
readonly relatedListColumns?: any[] | undefined;
|
|
7125
7035
|
readonly displayField?: string | undefined;
|
|
@@ -7293,7 +7203,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7293
7203
|
readonly inlineTitle?: string | undefined;
|
|
7294
7204
|
readonly inlineColumns?: any[] | undefined;
|
|
7295
7205
|
readonly inlineAmountField?: string | undefined;
|
|
7296
|
-
readonly relatedList?: boolean | undefined;
|
|
7206
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7297
7207
|
readonly relatedListTitle?: string | undefined;
|
|
7298
7208
|
readonly relatedListColumns?: any[] | undefined;
|
|
7299
7209
|
readonly displayField?: string | undefined;
|
|
@@ -7467,7 +7377,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7467
7377
|
readonly inlineTitle?: string | undefined;
|
|
7468
7378
|
readonly inlineColumns?: any[] | undefined;
|
|
7469
7379
|
readonly inlineAmountField?: string | undefined;
|
|
7470
|
-
readonly relatedList?: boolean | undefined;
|
|
7380
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7471
7381
|
readonly relatedListTitle?: string | undefined;
|
|
7472
7382
|
readonly relatedListColumns?: any[] | undefined;
|
|
7473
7383
|
readonly displayField?: string | undefined;
|
|
@@ -7646,7 +7556,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7646
7556
|
readonly inlineTitle?: string | undefined;
|
|
7647
7557
|
readonly inlineColumns?: any[] | undefined;
|
|
7648
7558
|
readonly inlineAmountField?: string | undefined;
|
|
7649
|
-
readonly relatedList?: boolean | undefined;
|
|
7559
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7650
7560
|
readonly relatedListTitle?: string | undefined;
|
|
7651
7561
|
readonly relatedListColumns?: any[] | undefined;
|
|
7652
7562
|
readonly displayField?: string | undefined;
|
|
@@ -7821,7 +7731,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
7821
7731
|
readonly inlineTitle?: string | undefined;
|
|
7822
7732
|
readonly inlineColumns?: any[] | undefined;
|
|
7823
7733
|
readonly inlineAmountField?: string | undefined;
|
|
7824
|
-
readonly relatedList?: boolean | undefined;
|
|
7734
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
7825
7735
|
readonly relatedListTitle?: string | undefined;
|
|
7826
7736
|
readonly relatedListColumns?: any[] | undefined;
|
|
7827
7737
|
readonly displayField?: string | undefined;
|
|
@@ -8001,7 +7911,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8001
7911
|
readonly inlineTitle?: string | undefined;
|
|
8002
7912
|
readonly inlineColumns?: any[] | undefined;
|
|
8003
7913
|
readonly inlineAmountField?: string | undefined;
|
|
8004
|
-
readonly relatedList?: boolean | undefined;
|
|
7914
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8005
7915
|
readonly relatedListTitle?: string | undefined;
|
|
8006
7916
|
readonly relatedListColumns?: any[] | undefined;
|
|
8007
7917
|
readonly displayField?: string | undefined;
|
|
@@ -8176,7 +8086,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8176
8086
|
readonly inlineTitle?: string | undefined;
|
|
8177
8087
|
readonly inlineColumns?: any[] | undefined;
|
|
8178
8088
|
readonly inlineAmountField?: string | undefined;
|
|
8179
|
-
readonly relatedList?: boolean | undefined;
|
|
8089
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8180
8090
|
readonly relatedListTitle?: string | undefined;
|
|
8181
8091
|
readonly relatedListColumns?: any[] | undefined;
|
|
8182
8092
|
readonly displayField?: string | undefined;
|
|
@@ -8351,7 +8261,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8351
8261
|
readonly inlineTitle?: string | undefined;
|
|
8352
8262
|
readonly inlineColumns?: any[] | undefined;
|
|
8353
8263
|
readonly inlineAmountField?: string | undefined;
|
|
8354
|
-
readonly relatedList?: boolean | undefined;
|
|
8264
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8355
8265
|
readonly relatedListTitle?: string | undefined;
|
|
8356
8266
|
readonly relatedListColumns?: any[] | undefined;
|
|
8357
8267
|
readonly displayField?: string | undefined;
|
|
@@ -8526,7 +8436,7 @@ declare const SysSettingAudit: Omit<{
|
|
|
8526
8436
|
readonly inlineTitle?: string | undefined;
|
|
8527
8437
|
readonly inlineColumns?: any[] | undefined;
|
|
8528
8438
|
readonly inlineAmountField?: string | undefined;
|
|
8529
|
-
readonly relatedList?: boolean | undefined;
|
|
8439
|
+
readonly relatedList?: boolean | "primary" | undefined;
|
|
8530
8440
|
readonly relatedListTitle?: string | undefined;
|
|
8531
8441
|
readonly relatedListColumns?: any[] | undefined;
|
|
8532
8442
|
readonly displayField?: string | undefined;
|