@praxisui/core 8.0.0-beta.19 → 8.0.0-beta.20

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/index.d.ts CHANGED
@@ -76,6 +76,24 @@ interface LocateRequest {
76
76
  sort?: string[];
77
77
  }
78
78
 
79
+ type OptionSourceType = 'RESOURCE_ENTITY' | 'DISTINCT_DIMENSION' | 'CATEGORICAL_BUCKET' | 'LIGHT_LOOKUP' | 'STATIC_CANONICAL';
80
+ type OptionSourceSearchMode = 'none' | 'starts-with' | 'contains' | 'exact';
81
+ type OptionSourceCachePolicy = 'none' | 'request-scope' | 'session-scope' | 'etag-aware';
82
+ type LookupOpenDetailMode = 'samePage' | 'newTab' | 'drawer' | 'modal';
83
+ type LookupStatusTone = 'success' | 'warning' | 'danger' | 'neutral';
84
+ type LookupDialogSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
85
+ type LookupFilterFieldType = 'text' | 'enum' | 'date' | 'number' | 'reference';
86
+ type LookupFilterOperator = 'contains' | 'startsWith' | 'equals' | 'in' | 'before' | 'after' | 'between' | 'gt' | 'gte' | 'lt' | 'lte';
87
+ type EntityLookupSelectedLayout = 'card' | 'inline' | 'compact' | 'token';
88
+ type EntityLookupResultLayout = 'list' | 'denseList' | 'table' | 'card';
89
+ type EntityLookupSinglePayloadMode = 'id' | 'entityRef';
90
+ type EntityLookupMultiplePayloadMode = 'ids' | 'entityRefs';
91
+ type EntityLookupPayloadMode = EntityLookupSinglePayloadMode | EntityLookupMultiplePayloadMode;
92
+ interface EntityLookupCollectionMetadata {
93
+ multiple?: boolean;
94
+ maxSelections?: number;
95
+ allowDuplicates?: boolean;
96
+ }
79
97
  interface LookupSelectionPolicyMetadata {
80
98
  selectablePropertyPath?: string;
81
99
  statusPropertyPath?: string;
@@ -100,11 +118,131 @@ interface LookupCapabilitiesMetadata {
100
118
  interface LookupDetailMetadata {
101
119
  hrefTemplate?: string;
102
120
  routeTemplate?: string;
103
- openDetailMode?: string;
121
+ openDetailMode?: LookupOpenDetailMode;
104
122
  }
105
- interface OptionSourceMetadata {
123
+ interface LookupCreateMetadata {
124
+ hrefTemplate?: string;
125
+ routeTemplate?: string;
126
+ openMode?: LookupOpenDetailMode;
127
+ }
128
+ interface LookupFilterDefinitionMetadata {
129
+ field: string;
130
+ label?: string;
131
+ type: LookupFilterFieldType;
132
+ operators: LookupFilterOperator[];
133
+ defaultOperator?: LookupFilterOperator;
134
+ optionsSource?: string;
135
+ required?: boolean;
136
+ hidden?: boolean;
137
+ }
138
+ interface LookupSortOptionMetadata {
106
139
  key: string;
140
+ field: string;
141
+ direction: 'asc' | 'desc';
142
+ label?: string;
143
+ }
144
+ interface LookupFilteringMetadata {
145
+ availableFilters?: LookupFilterDefinitionMetadata[];
146
+ defaultFilters?: Record<string, unknown[]>;
147
+ sortOptions?: LookupSortOptionMetadata[];
148
+ defaultSort?: string;
149
+ quickFilterFields?: string[];
150
+ searchPlaceholder?: string;
151
+ }
152
+ interface LookupDialogMetadata {
153
+ enabled?: boolean;
154
+ title?: string;
155
+ size?: LookupDialogSize;
156
+ previewPanel?: boolean;
157
+ allowColumnChooser?: boolean;
158
+ allowSavedViews?: boolean;
159
+ resultColumns?: LookupResultColumnMetadata[];
160
+ openActionLabel?: string;
161
+ applyActionLabel?: string;
162
+ cancelActionLabel?: string;
163
+ }
164
+ type LookupResultColumnKind = 'code' | 'label' | 'description' | 'status' | 'disabledReason' | 'custom';
165
+ interface LookupResultColumnMetadata {
166
+ field: string;
167
+ label?: string;
168
+ kind?: LookupResultColumnKind;
169
+ width?: string;
170
+ }
171
+ interface LookupFilterRequest {
172
+ field: string;
173
+ operator: LookupFilterOperator;
174
+ value: unknown;
175
+ }
176
+ interface OptionSourceFilterRequest<ID = string | number, FD = unknown> {
177
+ filter?: FD | null;
178
+ filters?: LookupFilterRequest[];
179
+ search?: string;
180
+ sort?: string;
181
+ includeIds?: ID[];
182
+ }
183
+ interface EntityLookupActionsMetadata {
184
+ showDetail?: boolean;
185
+ showChange?: boolean;
186
+ showCopyCode?: boolean;
187
+ showCopyId?: boolean;
188
+ showCreate?: boolean;
189
+ showClear?: boolean;
190
+ }
191
+ interface EntityLookupDisplayMetadata {
192
+ selectedLayout?: EntityLookupSelectedLayout;
193
+ resultLayout?: EntityLookupResultLayout;
194
+ showCode?: boolean;
195
+ showDescription?: boolean;
196
+ showStatus?: boolean;
197
+ showAvatar?: boolean;
198
+ showBadges?: boolean;
199
+ showDisabledReason?: boolean;
200
+ showResultCount?: boolean;
201
+ statusToneMap?: Record<string, LookupStatusTone>;
202
+ badgeKeys?: string[];
203
+ maxVisibleBadges?: number;
204
+ detailActionLabel?: string;
205
+ changeActionLabel?: string;
206
+ copyCodeActionLabel?: string;
207
+ copyIdActionLabel?: string;
208
+ createActionLabel?: string;
209
+ clearActionLabel?: string;
210
+ actions?: EntityLookupActionsMetadata;
211
+ }
212
+ interface EntityRef<ID = string | number> {
213
+ id: ID;
107
214
  type?: string;
215
+ }
216
+ interface EntityLookupResultExtra {
217
+ code?: string;
218
+ description?: string;
219
+ status?: string;
220
+ statusLabel?: string;
221
+ statusTone?: LookupStatusTone;
222
+ selectable?: boolean;
223
+ disabledReason?: string;
224
+ detailHref?: string;
225
+ detailRoute?: string;
226
+ resourcePath?: string;
227
+ entityKey?: string;
228
+ badges?: string[];
229
+ tags?: string[];
230
+ riskLevel?: string;
231
+ homologationStatus?: string;
232
+ [key: string]: unknown;
233
+ }
234
+ interface EntityLookupResult<ID = string | number> {
235
+ id: ID;
236
+ label: string;
237
+ extra?: EntityLookupResultExtra;
238
+ }
239
+ type EntityLookupResultState = 'selectable' | 'blocked' | 'legacy';
240
+ interface EntityLookupResultStateContext {
241
+ allowRetainInvalidExistingValue?: boolean;
242
+ }
243
+ interface OptionSourceMetadata {
244
+ key: string;
245
+ type?: OptionSourceType;
108
246
  resourcePath?: string;
109
247
  filterField?: string;
110
248
  propertyPath?: string;
@@ -122,11 +260,36 @@ interface OptionSourceMetadata {
122
260
  selectionPolicy?: LookupSelectionPolicyMetadata;
123
261
  capabilities?: LookupCapabilitiesMetadata;
124
262
  detail?: LookupDetailMetadata;
263
+ create?: LookupCreateMetadata;
264
+ filtering?: LookupFilteringMetadata;
125
265
  excludeSelfField?: boolean;
126
- searchMode?: string;
266
+ searchMode?: OptionSourceSearchMode;
127
267
  pageSize?: number;
128
268
  includeIds?: boolean;
129
- }
269
+ cachePolicy?: OptionSourceCachePolicy;
270
+ }
271
+ declare function isEntityLookupResultSelectable(result?: Pick<EntityLookupResult<any>, 'extra'> | null): boolean;
272
+ declare function isEntityLookupPayloadMode(value: unknown): value is EntityLookupPayloadMode;
273
+ declare function isEntityLookupSinglePayloadMode(value: unknown): value is EntityLookupSinglePayloadMode;
274
+ declare function isEntityLookupMultiplePayloadMode(value: unknown): value is EntityLookupMultiplePayloadMode;
275
+ declare function isLookupFilterFieldType(value: unknown): value is LookupFilterFieldType;
276
+ declare function isLookupFilterOperator(value: unknown): value is LookupFilterOperator;
277
+ declare function isLookupDialogSize(value: unknown): value is LookupDialogSize;
278
+ declare function normalizeLookupFilterRequest(filter: LookupFilterRequest): LookupFilterRequest;
279
+ declare function serializeOptionSourceFilterRequest<ID = string | number, FD = unknown>(filter: FD | null | undefined, options?: {
280
+ filters?: LookupFilterRequest[] | null;
281
+ search?: string | null;
282
+ sort?: string | null;
283
+ includeIds?: ID[] | null;
284
+ }): OptionSourceFilterRequest<ID, FD>;
285
+ declare function resolveEntityLookupPayloadMode(payloadMode: unknown, multiple?: boolean): EntityLookupPayloadMode;
286
+ declare function isEntityLookupPayloadModeCompatible(payloadMode: unknown, multiple?: boolean): boolean;
287
+ declare function serializeEntityLookupValueForPayload(value: unknown, options?: {
288
+ payloadMode?: unknown;
289
+ multiple?: boolean;
290
+ entityType?: string;
291
+ }): unknown;
292
+ declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
130
293
 
131
294
  type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
132
295
  type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
@@ -183,12 +346,15 @@ interface RichBlockRuleSet {
183
346
  expr: JsonLogicExpression;
184
347
  }>;
185
348
  }
349
+ type RichCapabilityMode = 'all' | 'any';
186
350
  interface RichBlockBaseNode extends RichBlockRuleSet {
187
351
  id?: string;
188
352
  testId?: string;
189
353
  className?: string;
190
354
  style?: Record<string, string | number>;
191
355
  bindings?: RichBlockContextConfig;
356
+ requiresCapabilities?: string[];
357
+ capabilityMode?: RichCapabilityMode;
192
358
  }
193
359
  interface RichTextNode extends RichBlockBaseNode {
194
360
  type: 'text';
@@ -245,7 +411,23 @@ interface RichProgressNode extends RichBlockBaseNode {
245
411
  labelExpr?: string;
246
412
  showPercent?: boolean;
247
413
  }
248
- type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichLinkNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
414
+ interface RichActionRef {
415
+ actionId: string;
416
+ payload?: unknown;
417
+ payloadExpr?: string;
418
+ availabilityExpr?: string;
419
+ confirmMessage?: string;
420
+ }
421
+ interface RichActionButtonNode extends RichBlockBaseNode {
422
+ type: 'actionButton';
423
+ label?: string;
424
+ labelExpr?: string;
425
+ icon?: string;
426
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
427
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
428
+ action: RichActionRef;
429
+ }
430
+ type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichLinkNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode | RichActionButtonNode;
249
431
  interface RichComposeNode extends RichBlockBaseNode {
250
432
  type: 'compose';
251
433
  direction?: 'row' | 'column';
@@ -253,6 +435,39 @@ interface RichComposeNode extends RichBlockBaseNode {
253
435
  wrap?: boolean;
254
436
  items: RichPresenterNode[];
255
437
  }
438
+ type RichCardVariant = 'plain' | 'outlined' | 'elevated' | 'filled' | 'transparent';
439
+ type RichCardTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
440
+ type RichCardSize = 'sm' | 'md' | 'lg';
441
+ type RichCardDensity = 'compact' | 'comfortable';
442
+ type RichCardOrientation = 'vertical' | 'horizontal';
443
+ type RichCardMediaKind = 'image' | 'video' | 'icon' | 'avatar';
444
+ type RichCardMediaPlacement = 'top' | 'leading' | 'trailing' | 'background';
445
+ interface RichCardMedia {
446
+ kind: RichCardMediaKind;
447
+ src?: string;
448
+ srcExpr?: string;
449
+ alt?: string;
450
+ altExpr?: string;
451
+ icon?: string;
452
+ label?: string;
453
+ labelExpr?: string;
454
+ placement?: RichCardMediaPlacement;
455
+ aspectRatio?: string;
456
+ }
457
+ type RichCardInteractionMode = 'none' | 'action' | 'selectable';
458
+ interface RichCardInteraction {
459
+ mode: RichCardInteractionMode;
460
+ action?: RichActionRef;
461
+ selected?: boolean;
462
+ selectedExpr?: string;
463
+ }
464
+ interface RichCardAccessibility {
465
+ role?: 'article' | 'group' | 'button';
466
+ ariaLabel?: string;
467
+ ariaLabelExpr?: string;
468
+ ariaLabelledBy?: string;
469
+ ariaDescribedBy?: string;
470
+ }
256
471
  interface RichCardNode extends RichBlockBaseNode {
257
472
  type: 'card';
258
473
  title?: string;
@@ -260,6 +475,303 @@ interface RichCardNode extends RichBlockBaseNode {
260
475
  subtitle?: string;
261
476
  subtitleExpr?: string;
262
477
  content: Array<RichPresenterNode | RichComposeNode>;
478
+ media?: RichCardMedia;
479
+ headerAction?: RichActionButtonNode;
480
+ header?: RichBlockNode[];
481
+ body?: RichBlockNode[];
482
+ footer?: RichBlockNode[];
483
+ actions?: RichActionButtonNode[];
484
+ aside?: RichBlockNode[];
485
+ variant?: RichCardVariant;
486
+ tone?: RichCardTone;
487
+ size?: RichCardSize;
488
+ density?: RichCardDensity;
489
+ orientation?: RichCardOrientation;
490
+ loading?: boolean;
491
+ loadingExpr?: string;
492
+ active?: boolean;
493
+ activeExpr?: string;
494
+ interaction?: RichCardInteraction;
495
+ accessibility?: RichCardAccessibility;
496
+ }
497
+ interface RichCalloutNode extends RichBlockBaseNode {
498
+ type: 'callout';
499
+ tone?: 'info' | 'success' | 'warning' | 'danger' | 'neutral';
500
+ icon?: string;
501
+ title?: string;
502
+ titleExpr?: string;
503
+ message?: string;
504
+ messageExpr?: string;
505
+ actions?: RichActionButtonNode[];
506
+ }
507
+ type RichCtaGroupLayout = 'stacked' | 'split';
508
+ interface RichCtaGroupNode extends RichBlockBaseNode {
509
+ type: 'ctaGroup';
510
+ title?: string;
511
+ titleExpr?: string;
512
+ subtitle?: string;
513
+ subtitleExpr?: string;
514
+ message?: string;
515
+ messageExpr?: string;
516
+ layout?: RichCtaGroupLayout;
517
+ actions: RichActionButtonNode[];
518
+ }
519
+ interface RichKeyValueItem {
520
+ id?: string;
521
+ label?: string;
522
+ labelExpr?: string;
523
+ value?: string;
524
+ valueExpr?: string;
525
+ badge?: string;
526
+ badgeExpr?: string;
527
+ icon?: string;
528
+ }
529
+ interface RichKeyValueListNode extends RichBlockBaseNode {
530
+ type: 'keyValueList';
531
+ title?: string;
532
+ titleExpr?: string;
533
+ layout?: 'stacked' | 'inline';
534
+ items: RichKeyValueItem[];
535
+ }
536
+ type RichPropertySheetColumns = 1 | 2;
537
+ type RichPropertySheetTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
538
+ interface RichPropertySheetItem {
539
+ id?: string;
540
+ label?: string;
541
+ labelExpr?: string;
542
+ value?: string;
543
+ valueExpr?: string;
544
+ hint?: string;
545
+ hintExpr?: string;
546
+ icon?: string;
547
+ tone?: RichPropertySheetTone;
548
+ }
549
+ interface RichPropertySheetNode extends RichBlockBaseNode {
550
+ type: 'propertySheet';
551
+ title?: string;
552
+ titleExpr?: string;
553
+ columns?: RichPropertySheetColumns;
554
+ items: RichPropertySheetItem[];
555
+ }
556
+ type RichStatGroupLayout = 'stacked' | 'inline' | 'grid';
557
+ type RichStatTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
558
+ interface RichStatItem {
559
+ id?: string;
560
+ label?: string;
561
+ labelExpr?: string;
562
+ value?: string;
563
+ valueExpr?: string;
564
+ caption?: string;
565
+ captionExpr?: string;
566
+ icon?: string;
567
+ tone?: RichStatTone;
568
+ }
569
+ interface RichStatGroupNode extends RichBlockBaseNode {
570
+ type: 'statGroup';
571
+ title?: string;
572
+ titleExpr?: string;
573
+ subtitle?: string;
574
+ subtitleExpr?: string;
575
+ layout?: RichStatGroupLayout;
576
+ items: RichStatItem[];
577
+ }
578
+ type RichTabsAppearance = 'underline' | 'pills';
579
+ interface RichTabsItem extends RichBlockRuleSet {
580
+ id?: string;
581
+ label?: string;
582
+ labelExpr?: string;
583
+ icon?: string;
584
+ badge?: string;
585
+ badgeExpr?: string;
586
+ requiresCapabilities?: string[];
587
+ capabilityMode?: RichCapabilityMode;
588
+ content: RichBlockNode[];
589
+ }
590
+ interface RichTabsNode extends RichBlockBaseNode {
591
+ type: 'tabs';
592
+ title?: string;
593
+ titleExpr?: string;
594
+ subtitle?: string;
595
+ subtitleExpr?: string;
596
+ appearance?: RichTabsAppearance;
597
+ defaultTabId?: string;
598
+ items: RichTabsItem[];
599
+ }
600
+ interface RichEmptyStateNode extends RichBlockBaseNode {
601
+ type: 'emptyState';
602
+ icon?: string;
603
+ title?: string;
604
+ titleExpr?: string;
605
+ message?: string;
606
+ messageExpr?: string;
607
+ actions?: RichActionButtonNode[];
608
+ }
609
+ interface RichRecordSummaryField {
610
+ id?: string;
611
+ label?: string;
612
+ labelExpr?: string;
613
+ value?: string;
614
+ valueExpr?: string;
615
+ }
616
+ interface RichRecordSummaryNode extends RichBlockBaseNode {
617
+ type: 'recordSummary';
618
+ title?: string;
619
+ titleExpr?: string;
620
+ subtitle?: string;
621
+ subtitleExpr?: string;
622
+ meta?: string;
623
+ metaExpr?: string;
624
+ fields: RichRecordSummaryField[];
625
+ actions?: RichActionButtonNode[];
626
+ }
627
+ type RichLookupResultStatus = 'idle' | 'resolved' | 'empty' | 'error';
628
+ interface RichLookupResultField {
629
+ id?: string;
630
+ label?: string;
631
+ labelExpr?: string;
632
+ value?: string;
633
+ valueExpr?: string;
634
+ hint?: string;
635
+ hintExpr?: string;
636
+ }
637
+ interface RichLookupResultNode extends RichBlockBaseNode {
638
+ type: 'lookupResult';
639
+ title?: string;
640
+ titleExpr?: string;
641
+ subtitle?: string;
642
+ subtitleExpr?: string;
643
+ status?: RichLookupResultStatus;
644
+ statusExpr?: string;
645
+ emptyText?: string;
646
+ emptyTextExpr?: string;
647
+ errorText?: string;
648
+ errorTextExpr?: string;
649
+ meta?: string;
650
+ metaExpr?: string;
651
+ fields: RichLookupResultField[];
652
+ actions?: RichActionButtonNode[];
653
+ }
654
+ interface RichLookupCardNode extends RichBlockBaseNode {
655
+ type: 'lookupCard';
656
+ title?: string;
657
+ titleExpr?: string;
658
+ subtitle?: string;
659
+ subtitleExpr?: string;
660
+ icon?: string;
661
+ status?: RichLookupResultStatus;
662
+ statusExpr?: string;
663
+ emptyText?: string;
664
+ emptyTextExpr?: string;
665
+ errorText?: string;
666
+ errorTextExpr?: string;
667
+ meta?: string;
668
+ metaExpr?: string;
669
+ ctaLabel?: string;
670
+ ctaLabelExpr?: string;
671
+ ctaIcon?: string;
672
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
673
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
674
+ action: RichActionRef;
675
+ fields: RichLookupResultField[];
676
+ secondaryActions?: RichActionButtonNode[];
677
+ }
678
+ interface RichRelatedRecordNode extends RichBlockBaseNode {
679
+ type: 'relatedRecord';
680
+ title?: string;
681
+ titleExpr?: string;
682
+ subtitle?: string;
683
+ subtitleExpr?: string;
684
+ relationLabel?: string;
685
+ relationLabelExpr?: string;
686
+ icon?: string;
687
+ meta?: string;
688
+ metaExpr?: string;
689
+ ctaLabel?: string;
690
+ ctaLabelExpr?: string;
691
+ ctaIcon?: string;
692
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
693
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
694
+ action?: RichActionRef;
695
+ fields: RichLookupResultField[];
696
+ secondaryActions?: RichActionButtonNode[];
697
+ }
698
+ interface RichActionCardNode extends RichBlockBaseNode {
699
+ type: 'actionCard';
700
+ title?: string;
701
+ titleExpr?: string;
702
+ subtitle?: string;
703
+ subtitleExpr?: string;
704
+ message?: string;
705
+ messageExpr?: string;
706
+ icon?: string;
707
+ meta?: string;
708
+ metaExpr?: string;
709
+ ctaLabel?: string;
710
+ ctaLabelExpr?: string;
711
+ ctaIcon?: string;
712
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
713
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
714
+ action: RichActionRef;
715
+ secondaryActions?: RichActionButtonNode[];
716
+ }
717
+ interface RichFormLauncherNode extends RichBlockBaseNode {
718
+ type: 'formLauncher';
719
+ title?: string;
720
+ titleExpr?: string;
721
+ subtitle?: string;
722
+ subtitleExpr?: string;
723
+ description?: string;
724
+ descriptionExpr?: string;
725
+ icon?: string;
726
+ formId?: string;
727
+ ctaLabel?: string;
728
+ ctaLabelExpr?: string;
729
+ ctaIcon?: string;
730
+ variant?: 'basic' | 'raised' | 'stroked' | 'flat';
731
+ color?: 'basic' | 'primary' | 'accent' | 'warn';
732
+ action: RichActionRef;
733
+ secondaryActions?: RichActionButtonNode[];
734
+ }
735
+ interface RichCollapsibleCardNode extends RichBlockBaseNode {
736
+ type: 'collapsibleCard';
737
+ title?: string;
738
+ titleExpr?: string;
739
+ subtitle?: string;
740
+ subtitleExpr?: string;
741
+ icon?: string;
742
+ defaultExpanded?: boolean;
743
+ actions?: RichActionButtonNode[];
744
+ content: RichBlockNode[];
745
+ }
746
+ interface RichDisclosureNode extends RichBlockBaseNode {
747
+ type: 'disclosure';
748
+ title?: string;
749
+ titleExpr?: string;
750
+ subtitle?: string;
751
+ subtitleExpr?: string;
752
+ icon?: string;
753
+ appearance?: 'plain' | 'card';
754
+ defaultExpanded?: boolean;
755
+ actions?: RichActionButtonNode[];
756
+ content: RichBlockNode[];
757
+ }
758
+ interface RichAccordionItem {
759
+ id?: string;
760
+ title?: string;
761
+ titleExpr?: string;
762
+ subtitle?: string;
763
+ subtitleExpr?: string;
764
+ icon?: string;
765
+ defaultExpanded?: boolean;
766
+ actions?: RichActionButtonNode[];
767
+ content: RichBlockNode[];
768
+ }
769
+ interface RichAccordionNode extends RichBlockBaseNode {
770
+ type: 'accordion';
771
+ title?: string;
772
+ titleExpr?: string;
773
+ multi?: boolean;
774
+ items: RichAccordionItem[];
263
775
  }
264
776
  interface RichMediaBlockNode extends RichBlockBaseNode {
265
777
  type: 'mediaBlock';
@@ -277,16 +789,37 @@ interface RichTimelineItem {
277
789
  subtitleExpr?: string;
278
790
  meta?: string;
279
791
  metaExpr?: string;
792
+ opposite?: string;
793
+ oppositeExpr?: string;
280
794
  icon?: string;
281
795
  iconExpr?: string;
282
796
  badge?: string;
283
797
  badgeExpr?: string;
284
- }
798
+ markerColor?: RichTimelineColor;
799
+ markerStyle?: RichTimelineMarkerStyle;
800
+ connectorColor?: RichTimelineColor;
801
+ connectorVariant?: RichTimelineConnectorVariant;
802
+ }
803
+ type RichTimelinePosition = 'left' | 'right' | 'alternate' | 'alternate-reverse';
804
+ type RichTimelineOrientation = 'vertical' | 'horizontal';
805
+ type RichTimelineOrder = 'normal' | 'reverse';
806
+ type RichTimelineConnectorVariant = 'solid' | 'dashed' | 'none';
807
+ type RichTimelineMarkerVariant = 'dot' | 'icon' | 'number';
808
+ type RichTimelineMarkerStyle = 'filled' | 'outlined';
809
+ type RichTimelineColor = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
285
810
  interface RichTimelineNode extends RichBlockBaseNode {
286
811
  type: 'timeline';
287
812
  title?: string;
288
813
  titleExpr?: string;
289
814
  emptyText?: string;
815
+ orientation?: RichTimelineOrientation;
816
+ order?: RichTimelineOrder;
817
+ position?: RichTimelinePosition;
818
+ connectorVariant?: RichTimelineConnectorVariant;
819
+ connectorColor?: RichTimelineColor;
820
+ markerVariant?: RichTimelineMarkerVariant;
821
+ markerColor?: RichTimelineColor;
822
+ markerStyle?: RichTimelineMarkerStyle;
290
823
  items: RichTimelineItem[];
291
824
  }
292
825
  type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
@@ -316,6 +849,8 @@ interface CorePresetDiscoveryRegistry {
316
849
  }
317
850
  interface RichBlockHostCapabilities {
318
851
  dispatchAction?(actionId: string, payload?: unknown): void | Promise<void>;
852
+ isActionAvailable?(actionId: string): boolean;
853
+ hasCapability?(capabilityId: string): boolean;
319
854
  resolveEmbed?(kind: 'component' | 'templateRef' | 'formRef' | 'tableRef' | 'chartRef', ref: string, inputs?: Record<string, unknown>): unknown;
320
855
  resolvePreset?(ref: CorePresetRef): unknown;
321
856
  loadData?(request: {
@@ -328,7 +863,7 @@ interface RichBlockHostCapabilities {
328
863
  onLoadError?: 'hide' | 'error' | 'placeholder';
329
864
  };
330
865
  }
331
- type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichMediaBlockNode | RichTimelineNode;
866
+ type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
332
867
  type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
333
868
  interface RichContentDocument {
334
869
  kind: 'praxis.rich-content';
@@ -343,6 +878,13 @@ type GlobalActionResult = {
343
878
  data?: any;
344
879
  error?: string;
345
880
  };
881
+ interface NavigationOpenRoutePayload {
882
+ path: string;
883
+ query?: Record<string, string | number | boolean | null | undefined>;
884
+ fragment?: string;
885
+ replaceUrl?: boolean;
886
+ state?: Record<string, unknown>;
887
+ }
346
888
  interface GlobalActionRef {
347
889
  actionId: string;
348
890
  payload?: any;
@@ -3445,9 +3987,21 @@ declare class SchemaNormalizerService {
3445
3987
  private parseSelectionPolicy;
3446
3988
  private parseLookupCapabilities;
3447
3989
  private parseLookupDetail;
3990
+ private parseLookupCreate;
3991
+ private parseLookupFilterOperatorArray;
3992
+ private parseLookupSortDirection;
3993
+ private parseLookupDialogSize;
3994
+ private parseLookupDialog;
3995
+ private parseLookupResultColumn;
3996
+ private parseLookupFilterDefinition;
3997
+ private parseDefaultFilters;
3998
+ private parseLookupFiltering;
3448
3999
  /** Parse option arrays into `{ key, value }` objects. */
3449
4000
  private parseOptions;
3450
4001
  private parseOptionSource;
4002
+ private parseOptionSourceType;
4003
+ private parseOptionSourceSearchMode;
4004
+ private parseLookupOpenDetailMode;
3451
4005
  private parseValuePresentation;
3452
4006
  /**
3453
4007
  * Converte string/Function em função real.
@@ -3839,6 +4393,8 @@ interface OptionSourceRequestOptions<ID = string | number> extends CrudOperation
3839
4393
  includeIds?: ID[];
3840
4394
  observeVersionHeader?: boolean;
3841
4395
  search?: string;
4396
+ sortKey?: string;
4397
+ filters?: LookupFilterRequest[];
3842
4398
  }
3843
4399
  interface BatchDeleteProgress<ID = string | number> {
3844
4400
  id: ID;
@@ -3930,10 +4486,10 @@ declare class GenericCrudService<T, ID extends string | number = string | number
3930
4486
  * Fluxo de schemas (grid e filtro)
3931
4487
  *
3932
4488
  * - Grid/Lista (colunas e metadados do DTO principal):
3933
- * 1) getSchema() chama GET {resource}/schemas (ex.: /api/human-resources/funcionarios/schemas)
3934
- * 2) O backend responde 302 para /schemas/filtered com query params:
3935
- * - path: {basePath}/all (ex.: /api/human-resources/funcionarios/all)
3936
- * - operation: get
4489
+ * 1) getSchema() deriva a superfície canônica de busca/listagem do recurso
4490
+ * 2) Em seguida chama /schemas/filtered com query params:
4491
+ * - path: {basePath}/filter (ex.: /api/human-resources/funcionarios/filter)
4492
+ * - operation: post
3937
4493
  * - schemaType: response
3938
4494
  * 3) O serviço normaliza o schema retornado (x-ui) para montagem de grids e formulários.
3939
4495
  *
@@ -3951,8 +4507,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
3951
4507
  * Obtém o schema (metadados) do recurso, útil para construção dinâmica de grids e formulários.
3952
4508
  *
3953
4509
  * Fluxo:
3954
- * - Faz GET {resource}/schemas; o backend redireciona (302) para /schemas/filtered
3955
- * com path={basePath}/all, operation=get, schemaType=response.
4510
+ * - Chama /schemas/filtered para a superfície canônica de busca/listagem:
4511
+ * path={basePath}/filter, operation=post, schemaType=response.
3956
4512
  * - O resultado é normalizado e usado para montar colunas de grid e formulários (x-ui).
3957
4513
  *
3958
4514
  * Exemplo:
@@ -4574,7 +5130,11 @@ declare class GlobalActionService {
4574
5130
  private lookupPath;
4575
5131
  private registerBuiltins;
4576
5132
  private handleApi;
5133
+ private handleNavigationOpenRoute;
4577
5134
  private handleRouteRegister;
5135
+ private buildNavigationUrl;
5136
+ private buildQueryString;
5137
+ private buildFragment;
4578
5138
  static ɵfac: i0.ɵɵFactoryDeclaration<GlobalActionService, never>;
4579
5139
  static ɵprov: i0.ɵɵInjectableDeclaration<GlobalActionService>;
4580
5140
  }
@@ -5424,38 +5984,18 @@ interface MaterialSelectMetadata extends FieldMetadata {
5424
5984
  /** Inline/runtime compatibility for selected option icon color. */
5425
5985
  optionSelectedIconColor?: string;
5426
5986
  }
5427
- interface MaterialEntityLookupMetadata extends Omit<MaterialSelectMetadata, 'controlType'> {
5987
+ interface MaterialEntityLookupMetadata extends Omit<MaterialSelectMetadata, 'controlType' | 'multiple' | 'maxSelections'>, EntityLookupDisplayMetadata, EntityLookupCollectionMetadata {
5428
5988
  controlType: typeof FieldControlType.ENTITY_LOOKUP | typeof FieldControlType.INLINE_ENTITY_LOOKUP;
5429
5989
  lookupIdKey?: string;
5430
5990
  lookupLabelKey?: string;
5431
5991
  lookupSubtitleKey?: string;
5432
5992
  lookupSeparator?: string;
5993
+ payloadMode?: EntityLookupPayloadMode;
5994
+ dialog?: LookupDialogMetadata;
5433
5995
  searchPlaceholder?: string;
5434
5996
  resetLabel?: string;
5435
5997
  ariaLabel?: string;
5436
5998
  dependencyLoadOnChange?: 'respectLoadOn' | 'immediate' | 'manual';
5437
- selectedLayout?: 'card' | 'inline' | 'compact' | 'token';
5438
- resultLayout?: 'list' | 'denseList' | 'table' | 'card';
5439
- showCode?: boolean;
5440
- showDescription?: boolean;
5441
- showStatus?: boolean;
5442
- showAvatar?: boolean;
5443
- showBadges?: boolean;
5444
- showDisabledReason?: boolean;
5445
- showResultCount?: boolean;
5446
- statusToneMap?: Record<string, 'success' | 'warning' | 'danger' | 'neutral'>;
5447
- badgeKeys?: string[];
5448
- maxVisibleBadges?: number;
5449
- detailActionLabel?: string;
5450
- changeActionLabel?: string;
5451
- copyCodeActionLabel?: string;
5452
- clearActionLabel?: string;
5453
- actions?: {
5454
- showDetail?: boolean;
5455
- showChange?: boolean;
5456
- showCopyCode?: boolean;
5457
- showClear?: boolean;
5458
- };
5459
5999
  }
5460
6000
  /**
5461
6001
  * Metadata for Material Autocomplete components.
@@ -5510,9 +6050,28 @@ interface MaterialButtonToggleMetadata extends FieldMetadata {
5510
6050
  /** Toggle button options */
5511
6051
  toggleOptions?: Array<{
5512
6052
  value: any;
5513
- text: string;
6053
+ text?: string;
5514
6054
  label?: string;
6055
+ disabled?: boolean;
5515
6056
  }>;
6057
+ /** Allow multiple selected toggle buttons */
6058
+ multiple?: boolean;
6059
+ /** Maximum selected options when multiple is enabled */
6060
+ maxSelections?: number;
6061
+ /** Button toggle appearance */
6062
+ appearance?: 'legacy' | 'standard';
6063
+ /** Theme color */
6064
+ color?: ThemePalette;
6065
+ /** Backend resource for dynamic option loading */
6066
+ resourcePath?: string;
6067
+ /** Canonical metadata-driven source for derived options */
6068
+ optionSource?: OptionSourceMetadata;
6069
+ /** Additional filter criteria for backend requests */
6070
+ filterCriteria?: Record<string, any>;
6071
+ /** Key for option label when loading from backend */
6072
+ optionLabelKey?: string;
6073
+ /** Key for option value when loading from backend */
6074
+ optionValueKey?: string;
5516
6075
  }
5517
6076
  /**
5518
6077
  * Metadata for Material Transfer List component.
@@ -5864,6 +6423,21 @@ interface InlineRangeDistributionConfig {
5864
6423
  bins?: Array<number | InlineRangeDistributionBin> | string;
5865
6424
  /** Optional normalization ceiling; defaults to the highest bin value. */
5866
6425
  maxValue?: number;
6426
+ /**
6427
+ * Color strategy for histogram bars.
6428
+ * `selection` highlights bars covered by the current slider value/range using theme tokens.
6429
+ * `gradient` applies a configurable gradient to the selected bars.
6430
+ * `theme` keeps all bars on the neutral themed baseline.
6431
+ */
6432
+ colorMode?: 'theme' | 'selection' | 'gradient';
6433
+ /** Optional selected bar color; defaults to the app theme primary color. */
6434
+ selectedColor?: string;
6435
+ /** Optional unselected bar color; defaults to the app theme outline variant color. */
6436
+ unselectedColor?: string;
6437
+ /** Optional first color stop for selected gradient bars. */
6438
+ gradientStartColor?: string;
6439
+ /** Optional final color stop for selected gradient bars. */
6440
+ gradientEndColor?: string;
5867
6441
  /** Optional minimum visible ratio in the [0..1] range for non-zero bars. */
5868
6442
  minBarRatio?: number;
5869
6443
  /** Alias for `minBarRatio`. */
@@ -5907,6 +6481,33 @@ interface RangeSliderQuickPresetLabels {
5907
6481
  fromMid?: string;
5908
6482
  full?: string;
5909
6483
  }
6484
+ interface RangeSliderMark {
6485
+ /** Numeric value represented by this mark. */
6486
+ value: number;
6487
+ /** Optional label rendered next to the mark. */
6488
+ label?: string;
6489
+ /** Optional semantic tone for platform styling. */
6490
+ tone?: 'neutral' | 'info' | 'success' | 'warning' | 'danger';
6491
+ /** Optional disabled hint for authoring and future restricted-value mode. */
6492
+ disabled?: boolean;
6493
+ }
6494
+ type RangeSliderSemanticTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
6495
+ interface RangeSliderSemanticBand {
6496
+ /** Inclusive start value for the band. */
6497
+ start: number;
6498
+ /** Inclusive end value for the band. */
6499
+ end: number;
6500
+ /** Optional label for accessibility, reports and authoring surfaces. */
6501
+ label?: string;
6502
+ /** Semantic tone used by the platform theme. */
6503
+ tone?: RangeSliderSemanticTone;
6504
+ /** Optional explicit color for specialized domain palettes. */
6505
+ color?: string;
6506
+ }
6507
+ type RangeSliderTrackMode = 'normal' | 'inverted' | 'none';
6508
+ type RangeSliderValueLabelDisplay = 'off' | 'auto' | 'on';
6509
+ type RangeSliderScalePreset = 'linear' | 'percent' | 'log' | 'pow2';
6510
+ type RangeSliderValueFormat = 'number' | 'percent' | 'currency' | 'compact' | 'storage';
5910
6511
  interface MaterialRangeSliderMetadata extends FieldMetadata {
5911
6512
  controlType: typeof FieldControlType.RANGE_SLIDER;
5912
6513
  /** Slider mode */
@@ -5915,18 +6516,36 @@ interface MaterialRangeSliderMetadata extends FieldMetadata {
5915
6516
  min?: number;
5916
6517
  /** Maximum allowed value */
5917
6518
  max?: number;
5918
- /** Step for value increments */
5919
- step?: number;
6519
+ /** Step for value increments. `null` is reserved for mark-restricted values. */
6520
+ step?: number | null;
5920
6521
  /** Whether to show the thumb label */
5921
6522
  thumbLabel?: boolean;
6523
+ /** Controls when the value label is displayed. */
6524
+ valueLabelDisplay?: RangeSliderValueLabelDisplay;
6525
+ /** Declarative formatter for value labels when functions cannot come from metadata. */
6526
+ valueLabelFormat?: RangeSliderValueFormat | string;
5922
6527
  /** Tick configuration */
5923
6528
  showTicks?: boolean | 'auto';
6529
+ /** Rich mark labels along the slider track. */
6530
+ marks?: boolean | RangeSliderMark[] | string;
6531
+ /** Semantic bands rendered behind the slider track for domain meaning. */
6532
+ semanticBands?: RangeSliderSemanticBand[] | string;
6533
+ /** Track presentation mode. */
6534
+ track?: RangeSliderTrackMode;
6535
+ /** Keyboard acceleration step for Page Up/Down or Shift+Arrow semantics. */
6536
+ shiftStep?: number;
6537
+ /** Visual density hint. */
6538
+ size?: 'small' | 'medium' | 'large';
5924
6539
  /** Use discrete slider */
5925
6540
  discrete?: boolean;
5926
6541
  /** Display vertically */
5927
6542
  vertical?: boolean;
5928
6543
  /** Invert slider direction */
5929
6544
  invert?: boolean;
6545
+ /** Prevent active thumb swapping when range thumbs overlap. */
6546
+ disableThumbSwap?: boolean;
6547
+ /** Declarative scale preset used to format displayed values. */
6548
+ scale?: RangeSliderScalePreset | string;
5930
6549
  /** Minimum distance between start and end */
5931
6550
  minDistance?: number;
5932
6551
  /** Maximum distance between start and end */
@@ -6153,35 +6772,55 @@ interface MaterialSliderMetadata extends FieldMetadata {
6153
6772
  min?: number;
6154
6773
  /** Maximum value */
6155
6774
  max?: number;
6156
- /** Step increment */
6157
- step?: number;
6775
+ /** Step increment. `null` is reserved for mark-restricted values. */
6776
+ step?: number | null;
6158
6777
  /** Show value label */
6159
6778
  thumbLabel?: boolean;
6779
+ /** Controls when the value label is displayed. */
6780
+ valueLabelDisplay?: RangeSliderValueLabelDisplay;
6781
+ /** Declarative formatter for value labels when functions cannot come from metadata. */
6782
+ valueLabelFormat?: RangeSliderValueFormat | string;
6783
+ /** Rich mark labels along the slider track. */
6784
+ marks?: boolean | RangeSliderMark[] | string;
6785
+ /** Semantic bands rendered behind the slider track for domain meaning. */
6786
+ semanticBands?: RangeSliderSemanticBand[] | string;
6787
+ /**
6788
+ * Optional mini histogram/bars rendered above the slider track.
6789
+ * Accepts array shorthand, object config, or JSON string for editor compatibility.
6790
+ */
6791
+ inlineDistribution?: InlineRangeDistributionConfig | Array<number | InlineRangeDistributionBin> | string;
6792
+ /**
6793
+ * Alias accepted by slider components for compact payloads.
6794
+ */
6795
+ distribution?: InlineRangeDistributionConfig | Array<number | InlineRangeDistributionBin> | string;
6796
+ /** Track presentation mode. */
6797
+ track?: RangeSliderTrackMode;
6798
+ /** Keyboard acceleration step for Page Up/Down or Shift+Arrow semantics. */
6799
+ shiftStep?: number;
6800
+ /** Visual density hint. */
6801
+ size?: 'small' | 'medium' | 'large';
6160
6802
  /** Slider orientation */
6161
6803
  vertical?: boolean;
6162
6804
  /** Slider color theme */
6163
6805
  color?: ThemePalette;
6164
6806
  /** Display tick marks along the slider track */
6165
- showTicks?: boolean;
6807
+ showTicks?: boolean | 'auto';
6166
6808
  /** Invert slider direction */
6167
6809
  invert?: boolean;
6810
+ /** Declarative scale preset used to format displayed values. */
6811
+ scale?: RangeSliderScalePreset | string;
6168
6812
  }
6169
6813
  /**
6170
6814
  * Specialized metadata for Material Rating components.
6171
6815
  *
6172
- * ⚠️ COMPONENTE NÃO IMPLEMENTADO - Interface de planejamento
6173
- *
6174
- * Para implementar: criar MaterialRatingComponent em components/material-rating/
6175
- * e registrar no ComponentRegistryService
6176
- *
6177
6816
  * Handles star rating or numeric rating selection.
6178
6817
  */
6179
6818
  interface MaterialRatingMetadata extends FieldMetadata {
6180
6819
  controlType: typeof FieldControlType.RATING;
6181
6820
  /** Maximum rating value */
6182
6821
  max?: number;
6183
- /** Rating precision (0.1, 0.5, 1) */
6184
- precision?: number;
6822
+ /** Rating precision (`0.5` or `half` enables half-step interaction) */
6823
+ precision?: number | 'item' | 'half';
6185
6824
  /** Rating icon (default: star) */
6186
6825
  icon?: string;
6187
6826
  /** Empty icon (default: star_border) */
@@ -7104,6 +7743,14 @@ interface ComponentDocMeta {
7104
7743
  };
7105
7744
  /** Tags or categories for search */
7106
7745
  tags?: string[];
7746
+ /** Optional insertion presets exposed by visual builders without changing the component contract. */
7747
+ insertionPresets?: Array<{
7748
+ id: string;
7749
+ label: string;
7750
+ description?: string;
7751
+ icon?: string;
7752
+ inputs?: Record<string, unknown>;
7753
+ }>;
7107
7754
  /** Source library for the component */
7108
7755
  lib?: string;
7109
7756
  /** Optional layout hints for grid placement */
@@ -7206,6 +7853,7 @@ declare class PraxisI18nService {
7206
7853
  getLocale(): string;
7207
7854
  getFallbackLocale(): string;
7208
7855
  t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
7856
+ tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
7209
7857
  resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
7210
7858
  formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
7211
7859
  formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
@@ -7586,7 +8234,7 @@ declare class ResourceDiscoveryService {
7586
8234
  static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDiscoveryService>;
7587
8235
  }
7588
8236
 
7589
- declare const DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.1";
8237
+ declare const DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
7590
8238
  interface DomainCatalogRelease {
7591
8239
  releaseKey: string;
7592
8240
  serviceKey?: string;
@@ -7621,6 +8269,8 @@ interface DomainCatalogResourceProbe {
7621
8269
  }
7622
8270
  type DomainCatalogContextHintItemType = 'context' | 'node' | 'edge' | 'binding' | 'evidence' | 'governance' | 'vocabulary' | 'relationship';
7623
8271
  type DomainCatalogContextHintIntent = 'authoring' | 'explain' | 'validate' | 'ai-access-control';
8272
+ type DomainCatalogRecommendedAuthoringFlow = 'shared_rule_authoring' | 'component_authoring' | 'ui_composition_authoring';
8273
+ type DomainCatalogRecommendedRuleType = 'privacy' | 'compliance' | 'validation' | 'selection_eligibility' | 'workflow_action_policy' | 'approval_policy' | string;
7624
8274
  interface DomainCatalogRelationshipHint {
7625
8275
  enabled?: boolean;
7626
8276
  federated?: boolean;
@@ -7643,6 +8293,8 @@ interface DomainCatalogContextHint {
7643
8293
  intent?: DomainCatalogContextHintIntent | null;
7644
8294
  contextKey?: string | null;
7645
8295
  nodeType?: string | null;
8296
+ recommendedAuthoringFlow?: DomainCatalogRecommendedAuthoringFlow | null;
8297
+ recommendedRuleType?: DomainCatalogRecommendedRuleType | null;
7646
8298
  limit?: number;
7647
8299
  relationships?: DomainCatalogRelationshipHint | null;
7648
8300
  }
@@ -7678,10 +8330,142 @@ declare class DomainCatalogService {
7678
8330
  static ɵprov: i0.ɵɵInjectableDeclaration<DomainCatalogService>;
7679
8331
  }
7680
8332
 
8333
+ type DomainKnowledgeAuthorType = 'human' | 'llm' | 'system' | string;
8334
+ type DomainKnowledgeChangeSetStatus = 'proposed' | 'approved' | 'rejected' | 'superseded' | 'applied' | string;
8335
+ type DomainKnowledgeValidationStatus = 'valid' | 'invalid' | 'pending' | string;
8336
+ type DomainKnowledgeOperationType = 'add_evidence' | 'update_evidence' | 'deprecate_evidence' | 'add_relationship' | 'update_concept' | string;
8337
+ interface DomainKnowledgeChangeSetTarget {
8338
+ tenantId?: string | null;
8339
+ environment?: string | null;
8340
+ subjectType?: string | null;
8341
+ conceptKey?: string | null;
8342
+ evidenceKey?: string | null;
8343
+ relationshipKey?: string | null;
8344
+ }
8345
+ interface DomainKnowledgePatchOperation {
8346
+ operationId: string;
8347
+ operationType: DomainKnowledgeOperationType;
8348
+ target?: DomainKnowledgeChangeSetTarget | null;
8349
+ reason?: string | null;
8350
+ evidenceRefs?: string[] | null;
8351
+ confidence?: number | null;
8352
+ payload?: Record<string, unknown> | null;
8353
+ }
8354
+ interface DomainKnowledgeChangeSetRequest {
8355
+ changeSetKey: string;
8356
+ status?: DomainKnowledgeChangeSetStatus | null;
8357
+ authorType?: DomainKnowledgeAuthorType | null;
8358
+ authorId?: string | null;
8359
+ intent?: string | null;
8360
+ reason?: string | null;
8361
+ patch: DomainKnowledgePatchOperation[];
8362
+ }
8363
+ interface DomainKnowledgeSafeOperationSummary {
8364
+ operationId?: string | null;
8365
+ operationType?: DomainKnowledgeOperationType | null;
8366
+ targetSubjectType?: string | null;
8367
+ targetConceptKey?: string | null;
8368
+ evidenceRefCount?: number | null;
8369
+ confidence?: number | null;
8370
+ }
8371
+ interface DomainKnowledgeChangeSet {
8372
+ id: string;
8373
+ tenantId?: string | null;
8374
+ environment?: string | null;
8375
+ changeSetKey?: string | null;
8376
+ status?: DomainKnowledgeChangeSetStatus | null;
8377
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8378
+ authorType?: DomainKnowledgeAuthorType | null;
8379
+ authorId?: string | null;
8380
+ intent?: string | null;
8381
+ reason?: string | null;
8382
+ operationCount?: number | null;
8383
+ safeOperationSummary?: DomainKnowledgeSafeOperationSummary[] | null;
8384
+ reviewerId?: string | null;
8385
+ reviewedAt?: string | null;
8386
+ appliedAt?: string | null;
8387
+ createdAt?: string | null;
8388
+ updatedAt?: string | null;
8389
+ }
8390
+ interface DomainKnowledgeChangeSetFilters {
8391
+ status?: DomainKnowledgeChangeSetStatus;
8392
+ }
8393
+ interface DomainKnowledgeValidationIssue {
8394
+ operationId?: string | null;
8395
+ code?: string | null;
8396
+ message?: string | null;
8397
+ severity?: string | null;
8398
+ }
8399
+ interface DomainKnowledgeValidationResponse {
8400
+ valid: boolean;
8401
+ changeSetId?: string | null;
8402
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8403
+ issues?: DomainKnowledgeValidationIssue[] | null;
8404
+ safeOperationSummary?: DomainKnowledgeSafeOperationSummary[] | null;
8405
+ }
8406
+ type DomainKnowledgeTimelineEventVisibility = 'safe' | string;
8407
+ interface DomainKnowledgeChangeSetTimelineEventResponse {
8408
+ eventType: string;
8409
+ occurredAt?: string | null;
8410
+ actorType?: string | null;
8411
+ actor?: string | null;
8412
+ summary?: string | null;
8413
+ status?: DomainKnowledgeChangeSetStatus | null;
8414
+ validationStatus?: DomainKnowledgeValidationStatus | null;
8415
+ operationCount?: number | null;
8416
+ operationTypes?: DomainKnowledgeOperationType[] | null;
8417
+ targetConceptKeys?: string[] | null;
8418
+ visibility?: DomainKnowledgeTimelineEventVisibility | null;
8419
+ }
8420
+ interface DomainKnowledgeChangeSetTimelineResponse {
8421
+ changeSetId: string;
8422
+ tenantId?: string | null;
8423
+ environment?: string | null;
8424
+ changeSetKey?: string | null;
8425
+ status?: DomainKnowledgeChangeSetStatus | null;
8426
+ authorType?: DomainKnowledgeAuthorType | null;
8427
+ authorId?: string | null;
8428
+ reviewerId?: string | null;
8429
+ events: DomainKnowledgeChangeSetTimelineEventResponse[];
8430
+ }
8431
+ interface DomainKnowledgeStatusTransitionRequest {
8432
+ status: Exclude<DomainKnowledgeChangeSetStatus, 'proposed'> | DomainKnowledgeChangeSetStatus;
8433
+ reviewerId?: string | null;
8434
+ reason?: string | null;
8435
+ }
8436
+
8437
+ interface DomainKnowledgeRequestOptions extends ResourceDiscoveryRequestOptions {
8438
+ headers?: HttpHeaders | Record<string, string | string[]>;
8439
+ }
8440
+ declare class DomainKnowledgeService {
8441
+ private readonly http;
8442
+ private readonly discovery;
8443
+ createChangeSet(request: DomainKnowledgeChangeSetRequest, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8444
+ listChangeSets(filters?: DomainKnowledgeChangeSetFilters, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet[]>;
8445
+ getChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8446
+ validateChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeValidationResponse>;
8447
+ transitionChangeSetStatus(changeSetId: string, request: DomainKnowledgeStatusTransitionRequest, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8448
+ applyChangeSet(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSet>;
8449
+ getChangeSetTimeline(changeSetId: string, options?: DomainKnowledgeRequestOptions): Observable<DomainKnowledgeChangeSetTimelineResponse>;
8450
+ private buildParams;
8451
+ private resolveHeaders;
8452
+ static ɵfac: i0.ɵɵFactoryDeclaration<DomainKnowledgeService, never>;
8453
+ static ɵprov: i0.ɵɵInjectableDeclaration<DomainKnowledgeService>;
8454
+ }
8455
+
7681
8456
  type DomainRuleStatus = 'draft' | 'active' | 'inactive' | 'deprecated' | string;
7682
8457
  type DomainRuleCreatedByType = 'human' | 'llm' | 'system' | string;
7683
8458
  type DomainRuleAppliedByType = 'human' | 'llm' | 'system' | string;
7684
- type DomainRuleTargetLayer = 'form' | 'table' | 'api' | 'workflow' | 'policy' | string;
8459
+ type DomainRuleTargetLayer = 'form' | 'table' | 'api' | 'workflow' | 'workflow_action' | 'approval_policy' | 'policy' | 'option_source' | 'backend_validation' | string;
8460
+ interface DomainRuleDecisionDiagnostics extends Record<string, unknown> {
8461
+ decisionKind?: string | null;
8462
+ authoringMode?: string | null;
8463
+ decisionStage?: string | null;
8464
+ decisionSource?: string | null;
8465
+ canonicalOwner?: string | null;
8466
+ materializationModel?: string | null;
8467
+ runtimeSurfacesAreDerived?: boolean | null;
8468
+ }
7685
8469
  interface DomainRuleDefinitionRequest {
7686
8470
  ruleKey: string;
7687
8471
  version?: number | null;
@@ -7718,6 +8502,65 @@ interface DomainRuleDefinitionFilters {
7718
8502
  ruleType?: string;
7719
8503
  ruleKey?: string;
7720
8504
  }
8505
+ type DomainRuleTimelineEventVisibility = 'safe' | string;
8506
+ interface DomainRuleTimelineEventResponse {
8507
+ eventType: string;
8508
+ occurredAt?: string | null;
8509
+ actorType?: DomainRuleAppliedByType | null;
8510
+ actor?: string | null;
8511
+ summary?: string | null;
8512
+ targetLayer?: DomainRuleTargetLayer | null;
8513
+ targetArtifactType?: string | null;
8514
+ targetArtifactKey?: string | null;
8515
+ sourceHash?: string | null;
8516
+ visibility?: DomainRuleTimelineEventVisibility | null;
8517
+ }
8518
+ interface DomainRuleTimelineResponse {
8519
+ ruleDefinitionId: string;
8520
+ tenantId?: string | null;
8521
+ environment?: string | null;
8522
+ ruleKey?: string | null;
8523
+ ruleType?: string | null;
8524
+ resourceKey?: string | null;
8525
+ events: DomainRuleTimelineEventResponse[];
8526
+ }
8527
+ interface DomainRuleStatusTransitionRequest {
8528
+ status: DomainRuleStatus;
8529
+ decidedByType?: DomainRuleAppliedByType | null;
8530
+ decidedBy?: string | null;
8531
+ decisionNotes?: Record<string, unknown> | null;
8532
+ }
8533
+ interface DomainRuleIntakeRequest {
8534
+ prompt: string;
8535
+ assistantMessage?: string | null;
8536
+ ruleKey?: string | null;
8537
+ ruleType?: string | null;
8538
+ contextKey?: string | null;
8539
+ resourceKey?: string | null;
8540
+ serviceKey?: string | null;
8541
+ definition?: Record<string, unknown> | null;
8542
+ parameters?: Record<string, unknown> | null;
8543
+ condition?: Record<string, unknown> | null;
8544
+ governance?: Record<string, unknown> | null;
8545
+ createdByType?: DomainRuleCreatedByType | null;
8546
+ createdBy?: string | null;
8547
+ }
8548
+ interface DomainRuleIntakeResponse {
8549
+ intakeId: string;
8550
+ tenantId?: string | null;
8551
+ environment?: string | null;
8552
+ ruleKey?: string | null;
8553
+ ruleType?: string | null;
8554
+ contextKey?: string | null;
8555
+ resourceKey?: string | null;
8556
+ serviceKey?: string | null;
8557
+ status?: DomainRuleStatus | null;
8558
+ grounding?: (Record<string, unknown> & {
8559
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
8560
+ }) | null;
8561
+ definition?: DomainRuleDefinition | null;
8562
+ createdAt?: string | null;
8563
+ }
7721
8564
  interface DomainRuleMaterializationRequest {
7722
8565
  ruleDefinitionId: string;
7723
8566
  materializationKey: string;
@@ -7743,6 +8586,7 @@ interface DomainRuleMaterialization extends DomainRuleMaterializationRequest {
7743
8586
  createdAt?: string | null;
7744
8587
  updatedAt?: string | null;
7745
8588
  appliedAt?: string | null;
8589
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
7746
8590
  }
7747
8591
  interface DomainRuleMaterializationFilters {
7748
8592
  ruleDefinitionId?: string;
@@ -7751,6 +8595,82 @@ interface DomainRuleMaterializationFilters {
7751
8595
  targetArtifactKey?: string;
7752
8596
  status?: DomainRuleStatus;
7753
8597
  }
8598
+ interface DomainRuleSimulationRequest {
8599
+ ruleDefinitionId?: string | null;
8600
+ ruleKey?: string | null;
8601
+ ruleType?: string | null;
8602
+ contextKey?: string | null;
8603
+ resourceKey?: string | null;
8604
+ serviceKey?: string | null;
8605
+ definition?: Record<string, unknown> | null;
8606
+ parameters?: Record<string, unknown> | null;
8607
+ condition?: Record<string, unknown> | null;
8608
+ governance?: Record<string, unknown> | null;
8609
+ }
8610
+ interface DomainRuleSimulationResponse {
8611
+ simulationId: string;
8612
+ ruleDefinitionId?: string | null;
8613
+ tenantId?: string | null;
8614
+ environment?: string | null;
8615
+ ruleKey?: string | null;
8616
+ ruleVersion?: number | null;
8617
+ ruleType?: string | null;
8618
+ contextKey?: string | null;
8619
+ resourceKey?: string | null;
8620
+ serviceKey?: string | null;
8621
+ result?: string | null;
8622
+ grounding?: Record<string, unknown> | null;
8623
+ existingCoverage?: unknown[] | null;
8624
+ predictedMaterializations?: unknown[] | null;
8625
+ requiredApprovals?: unknown[] | null;
8626
+ warnings?: unknown[] | null;
8627
+ explainability?: Record<string, unknown> | null;
8628
+ simulatedAt?: string | null;
8629
+ }
8630
+ type DomainRuleMaterializationOutcomeResolution = 'created' | 'reused' | 'selected_existing' | 'selected_explicit' | 'skipped' | 'blocked' | string;
8631
+ interface DomainRulePublicationMaterializationOutcome {
8632
+ resolution?: DomainRuleMaterializationOutcomeResolution | null;
8633
+ materializationKey?: string | null;
8634
+ targetLayer?: DomainRuleTargetLayer | null;
8635
+ targetArtifactType?: string | null;
8636
+ targetArtifactKey?: string | null;
8637
+ targetPointer?: string | null;
8638
+ statusAtResolution?: DomainRuleStatus | null;
8639
+ sourceHash?: string | null;
8640
+ reason?: string | null;
8641
+ }
8642
+ interface DomainRulePublicationDiagnostics {
8643
+ materializationOutcomes?: DomainRulePublicationMaterializationOutcome[] | null;
8644
+ }
8645
+ interface DomainRuleExplainability extends Record<string, unknown> {
8646
+ decisionDiagnostics?: DomainRuleDecisionDiagnostics | null;
8647
+ publicationDiagnostics?: DomainRulePublicationDiagnostics | null;
8648
+ }
8649
+ interface DomainRulePublicationRequest {
8650
+ ruleDefinitionId: string;
8651
+ materializationIds?: string[] | null;
8652
+ applyEligibleMaterializations?: boolean | null;
8653
+ publishedByType?: DomainRuleAppliedByType | null;
8654
+ publishedBy?: string | null;
8655
+ publicationNotes?: Record<string, unknown> | null;
8656
+ }
8657
+ interface DomainRulePublicationResponse {
8658
+ publicationId: string;
8659
+ tenantId?: string | null;
8660
+ environment?: string | null;
8661
+ publicationStatus?: string | null;
8662
+ publicationReadiness?: string | null;
8663
+ ruleDefinitionId?: string | null;
8664
+ ruleKey?: string | null;
8665
+ ruleVersion?: number | null;
8666
+ ruleType?: string | null;
8667
+ resourceKey?: string | null;
8668
+ serviceKey?: string | null;
8669
+ definition?: DomainRuleDefinition | null;
8670
+ materializations?: DomainRuleMaterialization[] | null;
8671
+ explainability?: DomainRuleExplainability | null;
8672
+ processedAt?: string | null;
8673
+ }
7754
8674
 
7755
8675
  interface DomainRuleRequestOptions extends ResourceDiscoveryRequestOptions {
7756
8676
  headers?: HttpHeaders | Record<string, string | string[]>;
@@ -7758,10 +8678,16 @@ interface DomainRuleRequestOptions extends ResourceDiscoveryRequestOptions {
7758
8678
  declare class DomainRuleService {
7759
8679
  private readonly http;
7760
8680
  private readonly discovery;
8681
+ intake(request: DomainRuleIntakeRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleIntakeResponse>;
7761
8682
  createDefinition(request: DomainRuleDefinitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition>;
7762
8683
  listDefinitions(filters?: DomainRuleDefinitionFilters, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition[]>;
8684
+ transitionDefinitionStatus(definitionId: string, request: DomainRuleStatusTransitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleDefinition>;
8685
+ getDefinitionTimeline(definitionId: string, options?: DomainRuleRequestOptions): Observable<DomainRuleTimelineResponse>;
8686
+ simulate(request: DomainRuleSimulationRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleSimulationResponse>;
8687
+ publish(request: DomainRulePublicationRequest, options?: DomainRuleRequestOptions): Observable<DomainRulePublicationResponse>;
7763
8688
  createMaterialization(request: DomainRuleMaterializationRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization>;
7764
8689
  listMaterializations(filters?: DomainRuleMaterializationFilters, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization[]>;
8690
+ transitionMaterializationStatus(materializationId: string, request: DomainRuleStatusTransitionRequest, options?: DomainRuleRequestOptions): Observable<DomainRuleMaterialization>;
7765
8691
  private buildParams;
7766
8692
  private resolveHeaders;
7767
8693
  static ɵfac: i0.ɵɵFactoryDeclaration<DomainRuleService, never>;
@@ -10642,6 +11568,18 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
10642
11568
  status?: PersistedPageConfig['status'];
10643
11569
  }): PersistedPageConfig;
10644
11570
 
11571
+ interface DomainKnowledgeTimelineRichContentOptions {
11572
+ title?: string;
11573
+ emptyText?: string;
11574
+ }
11575
+ declare function domainKnowledgeTimelineToRichContentDocument(timeline: DomainKnowledgeChangeSetTimelineResponse, options?: DomainKnowledgeTimelineRichContentOptions): RichContentDocument;
11576
+
11577
+ interface DomainRuleTimelineRichContentOptions {
11578
+ title?: string;
11579
+ emptyText?: string;
11580
+ }
11581
+ declare function domainRuleTimelineToRichContentDocument(timeline: DomainRuleTimelineResponse, options?: DomainRuleTimelineRichContentOptions): RichContentDocument;
11582
+
10645
11583
  /**
10646
11584
  * Navigation/back behavior configuration used by form hosts (e.g., CRUD dialogs/routes).
10647
11585
  * Moved from @praxisui/crud to @praxisui/core to avoid circular deps between
@@ -11862,6 +12800,7 @@ declare class WidgetPageStateRuntimeService {
11862
12800
  private evaluateDerivedJsonLogic;
11863
12801
  private resolveCaseValue;
11864
12802
  private resolveTemplate;
12803
+ private isPageStateTemplatePath;
11865
12804
  private normalizeDependencyPath;
11866
12805
  private readPath;
11867
12806
  private isPlainObject;
@@ -12273,6 +13212,11 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
12273
13212
  private cloneStateValues;
12274
13213
  private cloneGrouping;
12275
13214
  private resolveShellTemplates;
13215
+ private enrichRuntimeWidgetInputs;
13216
+ private buildRichContentHostCapabilities;
13217
+ private dispatchRichContentAction;
13218
+ private isRichContentActionAvailable;
13219
+ private hasRichContentCapability;
12276
13220
  private resolveComponentBindingPath;
12277
13221
  private buildRuntimeEventId;
12278
13222
  private shouldInjectEditShellActions;
@@ -12528,7 +13472,7 @@ declare function normalizeFormConfig(config: FormConfig): FormConfig;
12528
13472
 
12529
13473
  /** Minimal metadata about the backend schema source. */
12530
13474
  interface SchemaMetaInfo {
12531
- /** API path used to resolve the schema (e.g., /api/employees/all or /filter) */
13475
+ /** API path used to resolve the schema (e.g., /api/employees/filter) */
12532
13476
  path: string;
12533
13477
  /** Operation used when fetching the schema (get|post) */
12534
13478
  operation: string;
@@ -12787,5 +13731,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
12787
13731
  /** Register a whitelist of allowed hook ids/patterns. */
12788
13732
  declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
12789
13733
 
12790
- export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizePath, normalizePraxisDataQueryContext, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
12791
- export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationRequest, DomainRuleRequestOptions, DomainRuleStatus, DomainRuleTargetLayer, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormFieldLayoutItem, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupDetailMetadata, LookupSelectionPolicyMetadata, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportField, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCardNode, RichComposeNode, RichContentDocument, RichIconNode, RichImageNode, RichLinkNode, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineItem, RichTimelineNode, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
13734
+ export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
13735
+ export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDisplayMetadata, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormFieldLayoutItem, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportField, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };