@object-ui/types 3.0.2 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.d.ts +217 -0
- package/dist/app.d.ts.map +1 -1
- package/dist/app.js +85 -1
- package/dist/complex.d.ts +129 -35
- package/dist/complex.d.ts.map +1 -1
- package/dist/data-display.d.ts +105 -1
- package/dist/data-display.d.ts.map +1 -1
- package/dist/data.d.ts +45 -0
- package/dist/data.d.ts.map +1 -1
- package/dist/designer.d.ts +197 -35
- package/dist/designer.d.ts.map +1 -1
- package/dist/designer.js +11 -1
- package/dist/index.d.ts +21 -10
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/layout.d.ts +39 -2
- package/dist/layout.d.ts.map +1 -1
- package/dist/navigation.d.ts +27 -0
- package/dist/navigation.d.ts.map +1 -1
- package/dist/objectql.d.ts +641 -7
- package/dist/objectql.d.ts.map +1 -1
- package/dist/record-components.d.ts +160 -0
- package/dist/record-components.d.ts.map +1 -0
- package/dist/record-components.js +8 -0
- package/dist/reports.d.ts +37 -0
- package/dist/reports.d.ts.map +1 -1
- package/dist/theme.d.ts +5 -0
- package/dist/theme.d.ts.map +1 -1
- package/dist/views.d.ts +257 -3
- package/dist/views.d.ts.map +1 -1
- package/dist/workflow.d.ts +198 -0
- package/dist/workflow.d.ts.map +1 -1
- package/dist/zod/app.zod.d.ts +42 -2
- package/dist/zod/app.zod.d.ts.map +1 -1
- package/dist/zod/app.zod.js +61 -1
- package/dist/zod/complex.zod.d.ts +138 -6
- package/dist/zod/complex.zod.d.ts.map +1 -1
- package/dist/zod/complex.zod.js +65 -2
- package/dist/zod/data-display.zod.d.ts +4 -0
- package/dist/zod/data-display.zod.d.ts.map +1 -1
- package/dist/zod/data-display.zod.js +2 -0
- package/dist/zod/form.zod.d.ts +6 -6
- package/dist/zod/index.zod.d.ts +368 -43
- package/dist/zod/index.zod.d.ts.map +1 -1
- package/dist/zod/index.zod.js +2 -2
- package/dist/zod/layout.zod.d.ts +6 -6
- package/dist/zod/navigation.zod.d.ts +58 -12
- package/dist/zod/navigation.zod.d.ts.map +1 -1
- package/dist/zod/navigation.zod.js +21 -9
- package/dist/zod/objectql.zod.d.ts +515 -27
- package/dist/zod/objectql.zod.d.ts.map +1 -1
- package/dist/zod/objectql.zod.js +162 -0
- package/dist/zod/reports.zod.d.ts +38 -38
- package/dist/zod/views.zod.d.ts +161 -7
- package/dist/zod/views.zod.d.ts.map +1 -1
- package/dist/zod/views.zod.js +21 -2
- package/package.json +2 -2
- package/src/__tests__/app-creation-types.test.ts +177 -0
- package/src/__tests__/dashboard-config.test.ts +208 -0
- package/src/__tests__/examples-metadata-compliance.test.ts +264 -0
- package/src/__tests__/navigation-model.test.ts +406 -0
- package/src/__tests__/p1-spec-alignment.test.ts +660 -0
- package/src/__tests__/p2-spec-exports.test.ts +312 -0
- package/src/__tests__/phase2-schemas.test.ts +108 -0
- package/src/app.ts +377 -0
- package/src/complex.ts +131 -31
- package/src/data-display.ts +107 -0
- package/src/data.ts +49 -0
- package/src/designer.ts +219 -30
- package/src/index.ts +192 -3
- package/src/layout.ts +55 -2
- package/src/navigation.ts +20 -0
- package/src/objectql.ts +757 -8
- package/src/record-components.ts +188 -0
- package/src/reports.ts +43 -0
- package/src/theme.ts +6 -0
- package/src/views.ts +275 -3
- package/src/workflow.ts +226 -0
- package/src/zod/app.zod.ts +74 -1
- package/src/zod/complex.zod.ts +67 -2
- package/src/zod/data-display.zod.ts +2 -0
- package/src/zod/index.zod.ts +5 -0
- package/src/zod/navigation.zod.ts +22 -10
- package/src/zod/objectql.zod.ts +167 -0
- package/src/zod/views.zod.ts +21 -2
package/src/index.ts
CHANGED
|
@@ -53,8 +53,18 @@
|
|
|
53
53
|
export type {
|
|
54
54
|
AppSchema,
|
|
55
55
|
AppAction,
|
|
56
|
-
|
|
56
|
+
NavigationItem,
|
|
57
|
+
NavigationItemType,
|
|
58
|
+
NavigationArea,
|
|
59
|
+
MenuItem as AppMenuItem,
|
|
60
|
+
AppWizardStepId,
|
|
61
|
+
AppWizardStep,
|
|
62
|
+
BrandingConfig,
|
|
63
|
+
ObjectSelection,
|
|
64
|
+
AppWizardDraft,
|
|
65
|
+
EditorMode,
|
|
57
66
|
} from './app';
|
|
67
|
+
export { menuItemToNavigationItem, isValidAppName, wizardDraftToAppSchema } from './app';
|
|
58
68
|
|
|
59
69
|
// ============================================================================
|
|
60
70
|
// Base Types - The Foundation
|
|
@@ -147,6 +157,8 @@ export type {
|
|
|
147
157
|
ChartType,
|
|
148
158
|
ChartSeries,
|
|
149
159
|
ChartSchema,
|
|
160
|
+
PivotAggregation,
|
|
161
|
+
PivotTableSchema,
|
|
150
162
|
TimelineEvent,
|
|
151
163
|
TimelineSchema,
|
|
152
164
|
KbdSchema,
|
|
@@ -254,6 +266,8 @@ export type {
|
|
|
254
266
|
ValidationError,
|
|
255
267
|
APIError,
|
|
256
268
|
FileUploadResult,
|
|
269
|
+
AggregateParams,
|
|
270
|
+
AggregateResult,
|
|
257
271
|
} from './data';
|
|
258
272
|
|
|
259
273
|
// ============================================================================
|
|
@@ -285,12 +299,23 @@ export type {
|
|
|
285
299
|
KanbanConfig,
|
|
286
300
|
CalendarConfig,
|
|
287
301
|
GanttConfig,
|
|
302
|
+
ListViewGalleryConfig,
|
|
303
|
+
ListViewTimelineConfig,
|
|
288
304
|
SortConfig,
|
|
305
|
+
// QuickFilter dual-format types
|
|
306
|
+
ObjectUIQuickFilterItem,
|
|
307
|
+
SpecQuickFilterItem,
|
|
308
|
+
QuickFilterItem,
|
|
309
|
+
// ConditionalFormatting dual-format types
|
|
310
|
+
ObjectUIConditionalFormattingRule,
|
|
311
|
+
SpecConditionalFormattingRule,
|
|
312
|
+
ConditionalFormattingRule,
|
|
289
313
|
// Component schemas
|
|
290
314
|
ObjectMapSchema,
|
|
291
315
|
ObjectGanttSchema,
|
|
292
316
|
ObjectCalendarSchema,
|
|
293
317
|
ObjectKanbanSchema,
|
|
318
|
+
KanbanConditionalFormattingRule,
|
|
294
319
|
ObjectChartSchema,
|
|
295
320
|
ListViewSchema,
|
|
296
321
|
ObjectGridSchema,
|
|
@@ -299,9 +324,23 @@ export type {
|
|
|
299
324
|
ObjectViewSchema,
|
|
300
325
|
NamedListView,
|
|
301
326
|
ViewNavigationConfig,
|
|
327
|
+
ViewTabBarConfig,
|
|
302
328
|
ObjectQLComponentSchema,
|
|
303
329
|
} from './objectql';
|
|
304
330
|
|
|
331
|
+
// ============================================================================
|
|
332
|
+
// Record Components - Spec-aligned record:* page component props
|
|
333
|
+
// ============================================================================
|
|
334
|
+
export type {
|
|
335
|
+
RecordComponentAriaProps,
|
|
336
|
+
RecordDetailsComponentProps,
|
|
337
|
+
RecordHighlightsComponentProps,
|
|
338
|
+
RecordRelatedListComponentProps,
|
|
339
|
+
RecordActivityComponentProps,
|
|
340
|
+
RecordChatterComponentProps,
|
|
341
|
+
RecordPathComponentProps,
|
|
342
|
+
} from './record-components';
|
|
343
|
+
|
|
305
344
|
// ============================================================================
|
|
306
345
|
// Field Types - ObjectQL Field Type System
|
|
307
346
|
// ============================================================================
|
|
@@ -519,8 +558,18 @@ export type {
|
|
|
519
558
|
CollaborationPresence,
|
|
520
559
|
CollaborationOperation,
|
|
521
560
|
CollaborationConfig,
|
|
522
|
-
|
|
523
|
-
|
|
561
|
+
ViewColumnConfig,
|
|
562
|
+
UnifiedViewType,
|
|
563
|
+
UnifiedViewConfig,
|
|
564
|
+
DashboardColorVariant,
|
|
565
|
+
DashboardWidgetType,
|
|
566
|
+
DashboardWidgetConfig,
|
|
567
|
+
DashboardConfig,
|
|
568
|
+
} from './designer';
|
|
569
|
+
|
|
570
|
+
export {
|
|
571
|
+
DASHBOARD_COLOR_VARIANTS,
|
|
572
|
+
DASHBOARD_WIDGET_TYPES,
|
|
524
573
|
} from './designer';
|
|
525
574
|
|
|
526
575
|
// ============================================================================
|
|
@@ -583,6 +632,7 @@ export type {
|
|
|
583
632
|
export type {
|
|
584
633
|
// Report System
|
|
585
634
|
ReportSchema,
|
|
635
|
+
ReportType,
|
|
586
636
|
ReportExportFormat,
|
|
587
637
|
ReportScheduleFrequency,
|
|
588
638
|
ReportAggregationType,
|
|
@@ -611,6 +661,20 @@ export type {
|
|
|
611
661
|
ApprovalHistoryItem,
|
|
612
662
|
ApprovalProcessSchema,
|
|
613
663
|
WorkflowInstanceSchema,
|
|
664
|
+
// Flow Designer (spec v3.0.9)
|
|
665
|
+
FlowNodeType,
|
|
666
|
+
FlowWaitEventType,
|
|
667
|
+
FlowNodeExecutionStatus,
|
|
668
|
+
FlowNodeExecutorDescriptor,
|
|
669
|
+
FlowBoundaryConfig,
|
|
670
|
+
FlowNode,
|
|
671
|
+
FlowEdgeType,
|
|
672
|
+
FlowEdge,
|
|
673
|
+
FlowVersionEntry,
|
|
674
|
+
FlowConcurrencyPolicy,
|
|
675
|
+
FlowBpmnInteropResult,
|
|
676
|
+
FlowExecutionStep,
|
|
677
|
+
FlowDesignerSchema,
|
|
614
678
|
} from './workflow';
|
|
615
679
|
|
|
616
680
|
export type {
|
|
@@ -651,6 +715,17 @@ export type {
|
|
|
651
715
|
FilterUISchema,
|
|
652
716
|
SortUISchema,
|
|
653
717
|
ViewComponentSchema,
|
|
718
|
+
CommentEntry,
|
|
719
|
+
MentionNotification,
|
|
720
|
+
CommentSearchResult,
|
|
721
|
+
ActivityEntry,
|
|
722
|
+
// Feed / Chatter Protocol Types
|
|
723
|
+
FeedItemType,
|
|
724
|
+
FeedItem,
|
|
725
|
+
FieldChangeEntry,
|
|
726
|
+
Mention,
|
|
727
|
+
Reaction,
|
|
728
|
+
RecordSubscription,
|
|
654
729
|
} from './views';
|
|
655
730
|
|
|
656
731
|
export type {
|
|
@@ -962,10 +1037,123 @@ export type {
|
|
|
962
1037
|
RowHeight,
|
|
963
1038
|
RowHeightSchema,
|
|
964
1039
|
DensityMode,
|
|
1040
|
+
DensityModeSchema,
|
|
1041
|
+
TimelineConfig,
|
|
1042
|
+
TimelineConfigSchema,
|
|
1043
|
+
NavigationConfig,
|
|
1044
|
+
NavigationConfigSchema,
|
|
965
1045
|
ViewSharing,
|
|
966
1046
|
ViewSharingSchema,
|
|
967
1047
|
} from '@objectstack/spec/ui';
|
|
968
1048
|
|
|
1049
|
+
// ============================================================================
|
|
1050
|
+
// v3.0.8 Spec UI Types — Dashboard (P1.3)
|
|
1051
|
+
// ============================================================================
|
|
1052
|
+
export type {
|
|
1053
|
+
Dashboard as SpecDashboard,
|
|
1054
|
+
DashboardSchema as SpecDashboardSchema,
|
|
1055
|
+
DashboardWidget as SpecDashboardWidget,
|
|
1056
|
+
DashboardWidgetSchema as SpecDashboardWidgetSchema,
|
|
1057
|
+
DashboardHeader as SpecDashboardHeader,
|
|
1058
|
+
DashboardHeaderSchema as SpecDashboardHeaderSchema,
|
|
1059
|
+
DashboardHeaderAction as SpecDashboardHeaderAction,
|
|
1060
|
+
DashboardHeaderActionSchema as SpecDashboardHeaderActionSchema,
|
|
1061
|
+
GlobalFilter as SpecGlobalFilter,
|
|
1062
|
+
GlobalFilterSchema as SpecGlobalFilterSchema,
|
|
1063
|
+
GlobalFilterOptionsFrom,
|
|
1064
|
+
GlobalFilterOptionsFromSchema,
|
|
1065
|
+
WidgetMeasure,
|
|
1066
|
+
WidgetMeasureSchema,
|
|
1067
|
+
WidgetColorVariant,
|
|
1068
|
+
WidgetColorVariantSchema,
|
|
1069
|
+
} from '@objectstack/spec/ui';
|
|
1070
|
+
|
|
1071
|
+
// ============================================================================
|
|
1072
|
+
// v3.0.8 Spec UI Types — Sharing & Embedding (P2.3)
|
|
1073
|
+
// ============================================================================
|
|
1074
|
+
export type {
|
|
1075
|
+
SharingConfig,
|
|
1076
|
+
SharingConfigSchema,
|
|
1077
|
+
EmbedConfig,
|
|
1078
|
+
EmbedConfigSchema,
|
|
1079
|
+
} from '@objectstack/spec/ui';
|
|
1080
|
+
|
|
1081
|
+
// ============================================================================
|
|
1082
|
+
// v3.0.8 Spec UI Types — View Configuration (P2.4)
|
|
1083
|
+
// ============================================================================
|
|
1084
|
+
export type {
|
|
1085
|
+
AddRecordConfig,
|
|
1086
|
+
AddRecordConfigSchema,
|
|
1087
|
+
AppearanceConfig,
|
|
1088
|
+
AppearanceConfigSchema,
|
|
1089
|
+
UserActionsConfig,
|
|
1090
|
+
UserActionsConfigSchema,
|
|
1091
|
+
ViewTab,
|
|
1092
|
+
ViewTabSchema,
|
|
1093
|
+
} from '@objectstack/spec/ui';
|
|
1094
|
+
|
|
1095
|
+
// ============================================================================
|
|
1096
|
+
// v3.0.10 Spec UI Types — View Filter Rules
|
|
1097
|
+
// ============================================================================
|
|
1098
|
+
export type {
|
|
1099
|
+
ViewFilterRule,
|
|
1100
|
+
ViewFilterRuleSchema,
|
|
1101
|
+
} from '@objectstack/spec/ui';
|
|
1102
|
+
|
|
1103
|
+
// ============================================================================
|
|
1104
|
+
// v3.0.8 Spec UI Types — Form View (P1.2)
|
|
1105
|
+
// ============================================================================
|
|
1106
|
+
export type {
|
|
1107
|
+
FormView as SpecFormView,
|
|
1108
|
+
FormViewSchema as SpecFormViewSchema,
|
|
1109
|
+
FormSection as SpecFormSection,
|
|
1110
|
+
FormSectionSchema as SpecFormSectionSchema,
|
|
1111
|
+
FormField as SpecFormField,
|
|
1112
|
+
FormFieldSchema as SpecFormFieldSchema,
|
|
1113
|
+
} from '@objectstack/spec/ui';
|
|
1114
|
+
|
|
1115
|
+
// ============================================================================
|
|
1116
|
+
// v3.0.8 Spec UI Types — ListView (P1.1)
|
|
1117
|
+
// ============================================================================
|
|
1118
|
+
export type {
|
|
1119
|
+
ListView as SpecListView,
|
|
1120
|
+
ListViewSchema as SpecListViewSchema,
|
|
1121
|
+
ListColumn as SpecListColumn,
|
|
1122
|
+
ListColumnSchema as SpecListColumnSchema,
|
|
1123
|
+
} from '@objectstack/spec/ui';
|
|
1124
|
+
|
|
1125
|
+
// ============================================================================
|
|
1126
|
+
// v3.0.8 Spec UI Types — Record Components (P1.5)
|
|
1127
|
+
// ============================================================================
|
|
1128
|
+
export type {
|
|
1129
|
+
RecordDetailsProps as SpecRecordDetailsProps,
|
|
1130
|
+
RecordHighlightsProps as SpecRecordHighlightsProps,
|
|
1131
|
+
RecordRelatedListProps as SpecRecordRelatedListProps,
|
|
1132
|
+
RecordActivityProps as SpecRecordActivityProps,
|
|
1133
|
+
RecordChatterProps as SpecRecordChatterProps,
|
|
1134
|
+
RecordPathProps as SpecRecordPathProps,
|
|
1135
|
+
} from '@objectstack/spec/ui';
|
|
1136
|
+
|
|
1137
|
+
// ============================================================================
|
|
1138
|
+
// v3.0.8 Spec UI Types — Page (P1.4)
|
|
1139
|
+
// ============================================================================
|
|
1140
|
+
export type {
|
|
1141
|
+
Page as SpecPage,
|
|
1142
|
+
PageSchema as SpecPageSchema,
|
|
1143
|
+
PageComponent as SpecPageComponent,
|
|
1144
|
+
PageComponentSchema as SpecPageComponentSchema,
|
|
1145
|
+
PageRegion as SpecPageRegion,
|
|
1146
|
+
PageRegionSchema as SpecPageRegionSchema,
|
|
1147
|
+
PageType as SpecPageType,
|
|
1148
|
+
PageTypeSchema as SpecPageTypeSchema,
|
|
1149
|
+
PageVariable as SpecPageVariable,
|
|
1150
|
+
PageVariableSchema as SpecPageVariableSchema,
|
|
1151
|
+
BlankPageLayout,
|
|
1152
|
+
BlankPageLayoutSchema,
|
|
1153
|
+
BlankPageLayoutItem,
|
|
1154
|
+
BlankPageLayoutItemSchema,
|
|
1155
|
+
} from '@objectstack/spec/ui';
|
|
1156
|
+
|
|
969
1157
|
// ============================================================================
|
|
970
1158
|
// v2.0.7 Spec UI Types — Performance & Page Transitions
|
|
971
1159
|
// ============================================================================
|
|
@@ -984,6 +1172,7 @@ export type {
|
|
|
984
1172
|
AriaProps,
|
|
985
1173
|
AriaPropsSchema,
|
|
986
1174
|
WcagContrastLevel,
|
|
1175
|
+
WcagContrastLevelSchema,
|
|
987
1176
|
} from '@objectstack/spec/ui';
|
|
988
1177
|
|
|
989
1178
|
// ============================================================================
|
package/src/layout.ts
CHANGED
|
@@ -429,7 +429,23 @@ export interface AspectRatioSchema extends BaseSchema {
|
|
|
429
429
|
* Determines page behavior and default layout template.
|
|
430
430
|
* Aligned with @objectstack/spec Page.type
|
|
431
431
|
*/
|
|
432
|
-
export type PageType =
|
|
432
|
+
export type PageType =
|
|
433
|
+
| 'record'
|
|
434
|
+
| 'home'
|
|
435
|
+
| 'app'
|
|
436
|
+
| 'utility'
|
|
437
|
+
| 'dashboard'
|
|
438
|
+
| 'grid'
|
|
439
|
+
| 'list'
|
|
440
|
+
| 'gallery'
|
|
441
|
+
| 'kanban'
|
|
442
|
+
| 'calendar'
|
|
443
|
+
| 'timeline'
|
|
444
|
+
| 'form'
|
|
445
|
+
| 'record_detail'
|
|
446
|
+
| 'record_review'
|
|
447
|
+
| 'overview'
|
|
448
|
+
| 'blank';
|
|
433
449
|
|
|
434
450
|
/**
|
|
435
451
|
* Page Variable
|
|
@@ -440,9 +456,11 @@ export interface PageVariable {
|
|
|
440
456
|
/** Variable name */
|
|
441
457
|
name: string;
|
|
442
458
|
/** Variable type @default 'string' */
|
|
443
|
-
type?: 'string' | 'number' | 'boolean' | 'object' | 'array';
|
|
459
|
+
type?: 'string' | 'number' | 'boolean' | 'object' | 'array' | 'record_id';
|
|
444
460
|
/** Default value for initialization */
|
|
445
461
|
defaultValue?: any;
|
|
462
|
+
/** Variable data source (e.g. URL param, context, expression) */
|
|
463
|
+
source?: string;
|
|
446
464
|
}
|
|
447
465
|
|
|
448
466
|
/**
|
|
@@ -522,6 +540,32 @@ export interface PageSchema extends BaseSchema {
|
|
|
522
540
|
* (Aligned with @objectstack/spec Page.regions)
|
|
523
541
|
*/
|
|
524
542
|
regions?: PageRegion[];
|
|
543
|
+
/**
|
|
544
|
+
* Blank page grid layout
|
|
545
|
+
* Used when pageType is 'blank' for free-form grid canvas.
|
|
546
|
+
* Aligned with @objectstack/spec BlankPageLayoutSchema.
|
|
547
|
+
*/
|
|
548
|
+
blankLayout?: {
|
|
549
|
+
/** Number of grid columns */
|
|
550
|
+
columns?: number;
|
|
551
|
+
/** Row height in pixels */
|
|
552
|
+
rowHeight?: number;
|
|
553
|
+
/** Gap between grid items in pixels */
|
|
554
|
+
gap?: number;
|
|
555
|
+
/** Items placed on the grid */
|
|
556
|
+
items?: Array<{
|
|
557
|
+
/** Component ID reference */
|
|
558
|
+
componentId: string;
|
|
559
|
+
/** Grid column position */
|
|
560
|
+
x: number;
|
|
561
|
+
/** Grid row position */
|
|
562
|
+
y: number;
|
|
563
|
+
/** Width in grid columns */
|
|
564
|
+
width: number;
|
|
565
|
+
/** Height in grid rows */
|
|
566
|
+
height: number;
|
|
567
|
+
}>;
|
|
568
|
+
};
|
|
525
569
|
/**
|
|
526
570
|
* Main content array (Legacy/Simple mode)
|
|
527
571
|
*/
|
|
@@ -539,6 +583,15 @@ export interface PageSchema extends BaseSchema {
|
|
|
539
583
|
* Profiles that can access this page
|
|
540
584
|
*/
|
|
541
585
|
assignedProfiles?: string[];
|
|
586
|
+
/**
|
|
587
|
+
* ARIA accessibility attributes.
|
|
588
|
+
* Aligned with @objectstack/spec AriaPropsSchema.
|
|
589
|
+
*/
|
|
590
|
+
aria?: {
|
|
591
|
+
ariaLabel?: string;
|
|
592
|
+
ariaDescribedBy?: string;
|
|
593
|
+
role?: string;
|
|
594
|
+
};
|
|
542
595
|
}
|
|
543
596
|
|
|
544
597
|
/**
|
package/src/navigation.ts
CHANGED
|
@@ -68,6 +68,22 @@ export interface HeaderBarSchema extends BaseSchema {
|
|
|
68
68
|
* Navigation links
|
|
69
69
|
*/
|
|
70
70
|
nav?: NavLink[];
|
|
71
|
+
/**
|
|
72
|
+
* Breadcrumb items
|
|
73
|
+
*/
|
|
74
|
+
crumbs?: BreadcrumbItem[];
|
|
75
|
+
/**
|
|
76
|
+
* Search configuration
|
|
77
|
+
*/
|
|
78
|
+
search?: { enabled: boolean; placeholder?: string; shortcut?: string };
|
|
79
|
+
/**
|
|
80
|
+
* Right-side action slots
|
|
81
|
+
*/
|
|
82
|
+
actions?: SchemaNode[];
|
|
83
|
+
/**
|
|
84
|
+
* Custom right content area
|
|
85
|
+
*/
|
|
86
|
+
rightContent?: SchemaNode;
|
|
71
87
|
/**
|
|
72
88
|
* Left side content
|
|
73
89
|
*/
|
|
@@ -177,6 +193,10 @@ export interface BreadcrumbItem {
|
|
|
177
193
|
* Click handler (if not using href)
|
|
178
194
|
*/
|
|
179
195
|
onClick?: () => void;
|
|
196
|
+
/**
|
|
197
|
+
* Sibling items for dropdown navigation (e.g., quick-switch between objects)
|
|
198
|
+
*/
|
|
199
|
+
siblings?: Array<{ label: string; href: string }>;
|
|
180
200
|
}
|
|
181
201
|
|
|
182
202
|
/**
|