@praxisui/core 9.0.0-beta.6 → 9.0.0-beta.61

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.
@@ -322,7 +322,7 @@ declare function serializeEntityLookupValueForPayload(value: unknown, options?:
322
322
  }): unknown;
323
323
  declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
324
324
 
325
- type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
325
+ type RuleContextRoot = 'form' | 'row' | 'rowData' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
326
326
  type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
327
327
  type PraxisBuiltinCustomRuleOperator = 'contains' | 'startsWith' | 'endsWith' | 'matches' | 'isBlank' | 'len' | 'round' | 'ceil' | 'floor' | 'abs' | 'coalesce' | 'now' | 'date' | 'yearsSince' | 'monthsSince' | 'daysSince' | 'toNumber' | 'stringify' | 'jsonGet' | 'hasKey' | 'isToday' | 'inLast' | 'weekdayIn';
328
328
  type PraxisHostRuleOperator = string & {
@@ -1176,9 +1176,74 @@ declare function readPraxisExportValue(item: unknown, path: string): unknown;
1176
1176
  declare function escapePraxisExportCell(value: unknown, policy?: PraxisExportSecurityPolicy): string;
1177
1177
  declare function serializePraxisCollectionToCsv<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): string;
1178
1178
  declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExportRequest<T>): string;
1179
+ declare function serializePraxisCollectionToExcel<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): Blob;
1179
1180
  declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
1180
1181
  declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
1181
1182
 
1183
+ type PraxisPresentationVisualizationKind = 'line' | 'area' | 'column' | 'comparison' | 'stackedBar' | 'radial' | 'harveyBall' | 'bullet' | 'delta' | 'processFlow';
1184
+ type PraxisPresentationVisualizationSurface = 'table-cell' | 'list-item' | 'object-header' | 'card-summary' | 'form-presentation';
1185
+ type PraxisPresentationVisualizationSize = 'xs' | 'sm' | 'md' | 'lg' | 'responsive';
1186
+ type PraxisPresentationVisualizationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger' | 'critical';
1187
+ interface PraxisPresentationVisualizationPoint {
1188
+ label?: string;
1189
+ value: number;
1190
+ tone?: PraxisPresentationVisualizationTone;
1191
+ }
1192
+ interface PraxisPresentationVisualizationSegment {
1193
+ label?: string;
1194
+ value: number;
1195
+ tone?: PraxisPresentationVisualizationTone;
1196
+ }
1197
+ interface PraxisPresentationVisualizationThreshold {
1198
+ label?: string;
1199
+ value: number;
1200
+ tone?: PraxisPresentationVisualizationTone;
1201
+ }
1202
+ interface PraxisPresentationVisualizationItem {
1203
+ id?: string;
1204
+ label?: string;
1205
+ value?: number;
1206
+ icon?: string;
1207
+ tone?: PraxisPresentationVisualizationTone;
1208
+ state?: string;
1209
+ }
1210
+ interface PraxisPresentationVisualizationConfig {
1211
+ kind: PraxisPresentationVisualizationKind;
1212
+ surface?: PraxisPresentationVisualizationSurface;
1213
+ size?: PraxisPresentationVisualizationSize;
1214
+ value?: unknown;
1215
+ valueExpr?: JsonLogicExpression | string;
1216
+ valueSuffix?: string;
1217
+ valueSuffixExpr?: JsonLogicExpression | string;
1218
+ total?: number;
1219
+ totalExpr?: JsonLogicExpression | string;
1220
+ target?: number;
1221
+ targetExpr?: JsonLogicExpression | string;
1222
+ baseline?: number;
1223
+ baselineExpr?: JsonLogicExpression | string;
1224
+ points?: PraxisPresentationVisualizationPoint[];
1225
+ pointsExpr?: JsonLogicExpression | string;
1226
+ segments?: PraxisPresentationVisualizationSegment[];
1227
+ segmentsExpr?: JsonLogicExpression | string;
1228
+ thresholds?: PraxisPresentationVisualizationThreshold[];
1229
+ thresholdsExpr?: JsonLogicExpression | string;
1230
+ items?: PraxisPresentationVisualizationItem[];
1231
+ itemsExpr?: JsonLogicExpression | string;
1232
+ tone?: PraxisPresentationVisualizationTone;
1233
+ toneExpr?: JsonLogicExpression | string;
1234
+ ariaLabel?: string;
1235
+ ariaLabelExpr?: JsonLogicExpression | string;
1236
+ fallbackText: string;
1237
+ fallbackTextExpr?: JsonLogicExpression | string;
1238
+ }
1239
+ type ResolvedPraxisPresentationVisualizationConfig = PraxisPresentationVisualizationConfig;
1240
+ declare function normalizePraxisPresentationVisualization(value: PraxisPresentationVisualizationConfig | null | undefined): ResolvedPraxisPresentationVisualizationConfig | undefined;
1241
+ declare function isPraxisPresentationVisualizationTableSafe(value: PraxisPresentationVisualizationConfig | null | undefined): boolean;
1242
+ interface PraxisPresentationVisualizationHtmlOptions {
1243
+ locale?: string;
1244
+ }
1245
+ declare function renderPraxisPresentationVisualizationHtml(value: PraxisPresentationVisualizationConfig | null | undefined, options?: PraxisPresentationVisualizationHtmlOptions): string;
1246
+
1182
1247
  type PraxisRuntimeEffectTrigger = 'on-condition-enter' | 'on-value-change' | 'while-true';
1183
1248
  interface PraxisEffectPolicy {
1184
1249
  trigger?: PraxisRuntimeEffectTrigger;
@@ -1246,6 +1311,17 @@ type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
1246
1311
  type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
1247
1312
  type ResourceCapabilityOperationId = ResourceCrudOperationId | 'export' | string;
1248
1313
  type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
1314
+ type RelatedResourceChildOperation = 'FILTER' | 'LIST' | 'CREATE' | 'UPDATE' | 'DELETE' | 'DUPLICATE_DRAFT';
1315
+ interface RelatedResourceSurface {
1316
+ parentResourceKey: string;
1317
+ parentIdPathVariable: string;
1318
+ childResourceKey: string;
1319
+ childResourcePath: string;
1320
+ childParentField: string;
1321
+ selectable: boolean;
1322
+ selectionKeyField: string;
1323
+ childOperations: RelatedResourceChildOperation[];
1324
+ }
1249
1325
  interface ResourceSurfaceCatalogItem {
1250
1326
  id: string;
1251
1327
  resourceKey: string;
@@ -1263,6 +1339,7 @@ interface ResourceSurfaceCatalogItem {
1263
1339
  availability: ResourceAvailabilityDecision;
1264
1340
  order: number;
1265
1341
  tags: string[];
1342
+ relatedResource?: RelatedResourceSurface | null;
1266
1343
  }
1267
1344
  interface ResourceSurfaceCatalogResponse {
1268
1345
  resourceKey: string;
@@ -1397,7 +1474,7 @@ interface ColumnDefinition {
1397
1474
  expr: string;
1398
1475
  };
1399
1476
  /** Tipo do renderizador */
1400
- type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose';
1477
+ type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'microVisualization' | 'html' | 'compose';
1401
1478
  /** Tooltip associado ao renderer efetivo da célula. */
1402
1479
  tooltip?: TableTooltipConfig;
1403
1480
  /** Configuração de ícone (Material/SVG por nome) */
@@ -1406,12 +1483,20 @@ interface ColumnDefinition {
1406
1483
  name?: string;
1407
1484
  /** Campo do row que contém o nome do ícone */
1408
1485
  nameField?: string;
1486
+ /** Texto fixo exibido ao lado do icone */
1487
+ text?: string;
1488
+ /** Campo usado como texto exibido ao lado do icone */
1489
+ textField?: string;
1409
1490
  /** Cor do ícone (primary/accent/warn ou CSS color) */
1410
1491
  color?: string;
1411
1492
  /** Tamanho em px (opcional) */
1412
1493
  size?: number;
1413
1494
  /** Label acessível (fixo) */
1414
1495
  ariaLabel?: string;
1496
+ /** Prefixo visual aplicado ao texto do renderer sem alterar o valor bruto. */
1497
+ prefix?: string;
1498
+ /** Sufixo visual aplicado ao texto do renderer sem alterar o valor bruto. */
1499
+ suffix?: string;
1415
1500
  };
1416
1501
  /** Configuração de imagem */
1417
1502
  image?: {
@@ -1442,7 +1527,7 @@ interface ColumnDefinition {
1442
1527
  /** Cor do badge (primary/accent/warn ou CSS) */
1443
1528
  color?: string;
1444
1529
  /** Variante visual */
1445
- variant?: 'filled' | 'outlined' | 'soft';
1530
+ variant?: 'filled' | 'outlined' | 'soft' | 'plain';
1446
1531
  /** Ícone opcional dentro do badge */
1447
1532
  icon?: string;
1448
1533
  /** Tooltip opcional associado ao indicador visual */
@@ -1478,7 +1563,7 @@ interface ColumnDefinition {
1478
1563
  textField?: string;
1479
1564
  color?: string;
1480
1565
  icon?: string;
1481
- variant?: 'filled' | 'outlined' | 'soft';
1566
+ variant?: 'filled' | 'outlined' | 'soft' | 'plain';
1482
1567
  /** Tooltip opcional associado ao chip */
1483
1568
  tooltip?: TableTooltipConfig;
1484
1569
  };
@@ -1497,6 +1582,9 @@ interface ColumnDefinition {
1497
1582
  size?: 'small' | 'medium' | 'large';
1498
1583
  ariaLabel?: string;
1499
1584
  };
1585
+ microVisualization?: {
1586
+ visualization: PraxisPresentationVisualizationConfig;
1587
+ };
1500
1588
  /** Avatar (imagem ou iniciais) */
1501
1589
  avatar?: {
1502
1590
  src?: string;
@@ -1539,9 +1627,13 @@ interface ColumnDefinition {
1539
1627
  icon?: {
1540
1628
  name?: string;
1541
1629
  nameField?: string;
1630
+ text?: string;
1631
+ textField?: string;
1542
1632
  color?: string;
1543
1633
  size?: number;
1544
1634
  ariaLabel?: string;
1635
+ prefix?: string;
1636
+ suffix?: string;
1545
1637
  };
1546
1638
  } | {
1547
1639
  type: 'image';
@@ -1562,7 +1654,7 @@ interface ColumnDefinition {
1562
1654
  text?: string;
1563
1655
  textField?: string;
1564
1656
  color?: string;
1565
- variant?: 'filled' | 'outlined' | 'soft';
1657
+ variant?: 'filled' | 'outlined' | 'soft' | 'plain';
1566
1658
  icon?: string;
1567
1659
  tooltip?: TableTooltipConfig;
1568
1660
  };
@@ -1598,7 +1690,7 @@ interface ColumnDefinition {
1598
1690
  textField?: string;
1599
1691
  color?: string;
1600
1692
  icon?: string;
1601
- variant?: 'filled' | 'outlined' | 'soft';
1693
+ variant?: 'filled' | 'outlined' | 'soft' | 'plain';
1602
1694
  tooltip?: TableTooltipConfig;
1603
1695
  };
1604
1696
  } | {
@@ -1648,6 +1740,11 @@ interface ColumnDefinition {
1648
1740
  size?: 'small' | 'medium' | 'large';
1649
1741
  ariaLabel?: string;
1650
1742
  };
1743
+ } | {
1744
+ type: 'microVisualization';
1745
+ microVisualization?: {
1746
+ visualization: PraxisPresentationVisualizationConfig;
1747
+ };
1651
1748
  } | {
1652
1749
  type: 'html';
1653
1750
  html?: {
@@ -2155,9 +2252,16 @@ interface LoadingConfig {
2155
2252
  }
2156
2253
  interface EmptyStateConfig {
2157
2254
  /** Mensagem para estado vazio */
2255
+ title?: string;
2158
2256
  message: string;
2257
+ description?: string;
2159
2258
  /** Ícone para estado vazio */
2160
2259
  icon?: string;
2260
+ tone?: 'neutral' | 'primary' | 'secondary';
2261
+ variant?: 'card' | 'inline' | 'panel' | 'transparent';
2262
+ alignment?: 'start' | 'center';
2263
+ density?: 'compact' | 'comfortable';
2264
+ iconContainer?: 'none' | 'circle' | 'soft';
2161
2265
  /** Imagem para estado vazio */
2162
2266
  image?: string;
2163
2267
  /** Ações disponíveis no estado vazio */
@@ -2485,6 +2589,14 @@ interface ToolbarSettingsConfig {
2485
2589
  options?: any[];
2486
2590
  }>;
2487
2591
  }
2592
+ interface TableAiAssistantConfig {
2593
+ /** Exibe e permite acionar o assistente de IA da tabela. Ausente equivale a true. */
2594
+ enabled?: boolean;
2595
+ }
2596
+ interface TableAiConfig {
2597
+ /** Configuracoes do assistente de IA embarcado na tabela. */
2598
+ assistant?: TableAiAssistantConfig;
2599
+ }
2488
2600
  interface TableActionsConfig {
2489
2601
  /** Ações por linha */
2490
2602
  row?: RowActionsConfig;
@@ -2791,6 +2903,11 @@ interface TableDetailRichListNode extends TableDetailBaseNode {
2791
2903
  }
2792
2904
  type TableDetailEmbedAction = TableDetailActionBarAction;
2793
2905
  interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
2906
+ /**
2907
+ * Governs whether the detail row should keep this embed as a host-mediated reference
2908
+ * or ask an owning runtime/provider to materialize it inline. Omitted means `reference`.
2909
+ */
2910
+ renderMode?: 'reference' | 'inline';
2794
2911
  description?: string;
2795
2912
  caption?: string;
2796
2913
  emptyText?: string;
@@ -2801,6 +2918,8 @@ interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
2801
2918
  interface TableDetailRefNode extends TableDetailEmbedBaseNode {
2802
2919
  type: 'formRef' | 'tableRef' | 'chartRef';
2803
2920
  schemaId?: string;
2921
+ chartDocumentRef?: string;
2922
+ chartDocument?: unknown;
2804
2923
  }
2805
2924
  interface TableDetailDiagramEmbedNode extends TableDetailEmbedBaseNode {
2806
2925
  type: 'diagramEmbed';
@@ -2855,6 +2974,8 @@ interface GeneralExportConfig {
2855
2974
  interface ExcelExportConfig {
2856
2975
  /** Nome da planilha */
2857
2976
  sheetName: string;
2977
+ /** Exibir ação local para exportar a página atual com colunas visíveis */
2978
+ visibleCurrentPage?: boolean;
2858
2979
  /** Incluir fórmulas nas células */
2859
2980
  includeFormulas: boolean;
2860
2981
  /** Congelar linha de cabeçalho */
@@ -3343,6 +3464,8 @@ interface TableConfigV2 {
3343
3464
  toolbar?: ToolbarConfig;
3344
3465
  /** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
3345
3466
  actions?: TableActionsConfig;
3467
+ /** Configuracoes de IA do runtime da tabela */
3468
+ ai?: TableAiConfig;
3346
3469
  /** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
3347
3470
  export?: ExportConfig;
3348
3471
  /** Mensagens personalizadas (Aba: Mensagens & Localização) */
@@ -3581,6 +3704,92 @@ declare const FieldControlType: {
3581
3704
  };
3582
3705
  type FieldControlType = (typeof FieldControlType)[keyof typeof FieldControlType];
3583
3706
 
3707
+ type FormFieldHelpDisplay = 'auto' | 'inline' | 'popover' | 'hidden';
3708
+ interface FormHelpPresentationConfig {
3709
+ /**
3710
+ * Controls how semantic field help (`hint`/`helpText`) is presented by field
3711
+ * renderers. Validation errors are never affected by this policy.
3712
+ */
3713
+ display?: FormFieldHelpDisplay;
3714
+ /**
3715
+ * Maximum text length that may remain inline when `display` is `auto`.
3716
+ * Defaults to 64 characters.
3717
+ */
3718
+ inlineMaxLength?: number;
3719
+ /**
3720
+ * Control types that should prefer a help affordance instead of inline text
3721
+ * when `display` is `auto`.
3722
+ */
3723
+ preferPopoverForControls?: string[];
3724
+ }
3725
+
3726
+ type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
3727
+ type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
3728
+ type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
3729
+ interface FieldPresentationInteractions {
3730
+ /** Allows readonly surfaces to expose a copy affordance without changing the field value. */
3731
+ copy?: boolean;
3732
+ /** Allows readonly surfaces to expose contextual detail expansion. */
3733
+ details?: boolean;
3734
+ /** Allows readonly surfaces to expose inline expansion for long values. */
3735
+ expand?: boolean;
3736
+ /** Allows readonly surfaces to expose a link affordance when the value is navigable. */
3737
+ link?: boolean;
3738
+ }
3739
+ interface FieldPresentationConfig {
3740
+ /** Semantic display strategy for readonly/presentation surfaces. */
3741
+ presenter?: FieldPresenterKind;
3742
+ /** Alias accepted for schema authors that describe the semantic display as a variant. */
3743
+ variant?: FieldPresenterKind;
3744
+ /** Semantic tone mapped by consumers to theme tokens. */
3745
+ tone?: FieldPresentationTone;
3746
+ /** Material Symbols icon name, without arbitrary HTML. */
3747
+ icon?: string;
3748
+ /** Optional semantic label for status/chip/badge presentations. */
3749
+ label?: string;
3750
+ /** Optional secondary marker rendered by presentation-capable consumers. */
3751
+ badge?: string;
3752
+ /** Optional tooltip text for the presentation wrapper. */
3753
+ tooltip?: string;
3754
+ /** Optional readonly prefix rendered next to the displayed value without changing the raw value. */
3755
+ prefix?: string;
3756
+ /** Optional readonly suffix rendered next to the displayed value without changing the raw value. */
3757
+ suffix?: string;
3758
+ /** Visual density/emphasis strategy mapped by consumers to theme tokens. */
3759
+ appearance?: FieldPresentationAppearance;
3760
+ /** Optional formatter override for the presentation surface only. */
3761
+ valuePresentation?: ValuePresentationConfig;
3762
+ /** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
3763
+ visualization?: PraxisPresentationVisualizationConfig;
3764
+ /** Safe readonly affordances. No commands or mutations are executed from this contract. */
3765
+ interactions?: FieldPresentationInteractions;
3766
+ }
3767
+ interface FieldPresentationRule {
3768
+ /** Json Logic guard evaluated against the presentation context. */
3769
+ when: JsonLogicExpression;
3770
+ /** Semantic presentation state merged when the guard is truthy. */
3771
+ set?: FieldPresentationConfig;
3772
+ /** Alias for `set`, useful for rule-builder terminology. */
3773
+ effect?: FieldPresentationConfig;
3774
+ }
3775
+ interface ResolvedFieldPresentation extends FieldPresentationConfig {
3776
+ /** Indicates at least one conditional rule matched the current context. */
3777
+ matchedRule?: boolean;
3778
+ }
3779
+ interface FieldPresentationJsonLogicEvaluator {
3780
+ evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
3781
+ truthy?(value: unknown): boolean;
3782
+ }
3783
+ interface ResolveFieldPresentationOptions {
3784
+ jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
3785
+ }
3786
+ /**
3787
+ * Resolves readonly field presentation from a base semantic config plus ordered
3788
+ * Json Logic rules. Later matching rules override earlier presentation values.
3789
+ */
3790
+ declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
3791
+ declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
3792
+
3584
3793
  /**
3585
3794
  * @fileoverview Base metadata interfaces for dynamic Angular Material components
3586
3795
  *
@@ -3953,6 +4162,14 @@ interface FieldMetadata extends ComponentMetadata {
3953
4162
  disabled?: boolean;
3954
4163
  /** Field is read-only */
3955
4164
  readOnly?: boolean;
4165
+ /**
4166
+ * Canonical backend-authored access metadata for field-level UX materialization.
4167
+ *
4168
+ * The frontend may use this contract to hide or lock controls for usability,
4169
+ * but it is not a security boundary. Backend filtering and validation remain
4170
+ * the final authority for sensitive data.
4171
+ */
4172
+ fieldAccess?: FieldAccessMetadata;
3956
4173
  /** Field is hidden from display */
3957
4174
  hidden?: boolean;
3958
4175
  /** Canonical conditional visibility guard for metadata-driven forms. */
@@ -3963,8 +4180,16 @@ interface FieldMetadata extends ComponentMetadata {
3963
4180
  placeholder?: string;
3964
4181
  /** Help text displayed below field */
3965
4182
  hint?: string;
4183
+ /** Domain help text emitted by backend schema metadata. */
4184
+ helpText?: string;
4185
+ /** Effective help presentation resolved by the form host. */
4186
+ helpDisplay?: FormFieldHelpDisplay;
4187
+ /** Field-level inline threshold used when `helpDisplay` is `auto`. */
4188
+ helpInlineMaxLength?: number;
3966
4189
  /** Tooltip text on hover */
3967
4190
  tooltip?: string;
4191
+ /** Enables hover tooltip presentation when supported by the field renderer. */
4192
+ tooltipOnHover?: boolean;
3968
4193
  /** Semantic selection mode for boolean/single/multiple choice controls */
3969
4194
  selectionMode?: 'boolean' | 'single' | 'multiple';
3970
4195
  /** Visual variant used by controls with more than one supported presentation */
@@ -4004,6 +4229,10 @@ interface FieldMetadata extends ComponentMetadata {
4004
4229
  suffixIcon?: string;
4005
4230
  iconPosition?: 'start' | 'end';
4006
4231
  iconSize?: 'small' | 'medium' | 'large';
4232
+ iconColor?: string;
4233
+ iconClass?: string;
4234
+ iconStyle?: string;
4235
+ iconFontSize?: string | number;
4007
4236
  /** Tooltip for suffix icon (used for help actions) */
4008
4237
  suffixIconTooltip?: string;
4009
4238
  /** ARIA label for suffix icon when used as help */
@@ -4020,6 +4249,18 @@ interface FieldMetadata extends ComponentMetadata {
4020
4249
  * heuristics.
4021
4250
  */
4022
4251
  valuePresentation?: ValuePresentationConfig;
4252
+ /**
4253
+ * Semantic presentation metadata for read-only/display surfaces.
4254
+ *
4255
+ * Consumers map this contract to their own theme tokens and primitives. It
4256
+ * intentionally avoids arbitrary CSS, HTML, or mutation commands.
4257
+ */
4258
+ presentation?: FieldPresentationConfig;
4259
+ /**
4260
+ * Ordered Json Logic rules that conditionally override `presentation` in
4261
+ * readonly/display surfaces. Later matching rules win.
4262
+ */
4263
+ presentationRules?: FieldPresentationRule[];
4023
4264
  /** Material Design specific configuration */
4024
4265
  materialDesign?: MaterialDesignConfig;
4025
4266
  /**
@@ -4165,6 +4406,23 @@ type CoreFieldMetadata = Pick<FieldMetadata, 'name' | 'label' | 'controlType'>;
4165
4406
  /** Helper type for field metadata without computed properties */
4166
4407
  type SerializableFieldMetadata = Omit<FieldMetadata, 'transformDisplayValue' | 'transformSaveValue'>;
4167
4408
 
4409
+ interface FieldAccessMetadata {
4410
+ visibleForAuthorities?: string[];
4411
+ editableForAuthorities?: string[];
4412
+ reason?: string;
4413
+ }
4414
+ interface FieldAccessEvaluationContext {
4415
+ authorities?: readonly string[] | null;
4416
+ }
4417
+ interface FieldAccessEvaluationResult {
4418
+ evaluated: boolean;
4419
+ visible: boolean;
4420
+ editable: boolean;
4421
+ reason?: string;
4422
+ }
4423
+ declare function normalizeFieldAccessMetadata(value: unknown): FieldAccessMetadata | undefined;
4424
+ declare function evaluateFieldAccess(fieldOrAccess: Pick<FieldMetadata, 'fieldAccess'> | FieldAccessMetadata | null | undefined, context?: FieldAccessEvaluationContext): FieldAccessEvaluationResult;
4425
+
4168
4426
  /**
4169
4427
  * Contrato de saída do normalizador de esquema (SchemaNormalizerService):
4170
4428
  * - Converte metadados `x-ui` em FieldDefinition tipado.
@@ -4195,6 +4453,7 @@ interface FieldDefinition {
4195
4453
  layout?: 'horizontal' | 'vertical';
4196
4454
  disabled?: boolean;
4197
4455
  readOnly?: boolean;
4456
+ fieldAccess?: FieldAccessMetadata;
4198
4457
  array?: FieldArrayConfig;
4199
4458
  collectionValidation?: FieldArrayCollectionValidation;
4200
4459
  multiple?: boolean;
@@ -4223,6 +4482,7 @@ interface FieldDefinition {
4223
4482
  helpText?: string;
4224
4483
  hint?: string;
4225
4484
  hiddenCondition?: JsonLogicExpression | null;
4485
+ tooltip?: string;
4226
4486
  tooltipOnHover?: boolean;
4227
4487
  icon?: string;
4228
4488
  iconPosition?: string;
@@ -4252,6 +4512,10 @@ interface FieldDefinition {
4252
4512
  filterOptions?: any[];
4253
4513
  numericFormat?: string;
4254
4514
  valuePresentation?: ValuePresentationConfig;
4515
+ /** Semantic read-only/list presentation metadata from canonical x-ui.presentation. */
4516
+ presentation?: FieldPresentationConfig;
4517
+ /** Conditional presentation overrides for read-only/list consumers. */
4518
+ presentationRules?: FieldPresentationRule[];
4255
4519
  numericStep?: number;
4256
4520
  numericMin?: number;
4257
4521
  numericMax?: number;
@@ -4329,6 +4593,13 @@ interface ApiUrlEntry {
4329
4593
  fullUrl?: string;
4330
4594
  version?: string;
4331
4595
  headers?: HttpHeaders | Record<string, string | string[]>;
4596
+ /**
4597
+ * Absolute backend origins that ResourceDiscoveryService may fold back through
4598
+ * a relative API_URL proxy for canonical API discovery links. Only configure
4599
+ * origins controlled by the same deployment boundary; arbitrary external links
4600
+ * remain absolute.
4601
+ */
4602
+ trustedOrigins?: string[];
4332
4603
  }
4333
4604
  interface ApiUrlConfig {
4334
4605
  [key: string]: ApiUrlEntry;
@@ -5373,6 +5644,9 @@ declare class TableConfigService {
5373
5644
  declare function buildBaseColumnFromDef(def: FieldDefinition): ColumnDefinition;
5374
5645
  declare function applyLocalCustomizations$1(baseCol: ColumnDefinition, localCol: ColumnDefinition): ColumnDefinition;
5375
5646
  declare function reconcileTableConfig(layout: TableConfigV2, serverDefs: FieldDefinition[]): TableConfigV2;
5647
+ declare function resolveColumnTypeFromFieldDefinition(def: FieldDefinition, fallback?: ColumnDefinition['type']): ColumnDefinition['type'] | undefined;
5648
+ declare function resolveTextMaskFormatFromFieldDefinition(def: FieldDefinition): string | undefined;
5649
+ declare function resolveTextMaskFormat(value: unknown): string | undefined;
5376
5650
 
5377
5651
  interface ConfigStorage {
5378
5652
  loadConfig<T>(key: string): T | null;
@@ -8594,6 +8868,13 @@ declare class ResourceDiscoveryService {
8594
8868
  resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
8595
8869
  private resolveApiOrigin;
8596
8870
  private resolveApiBaseUrl;
8871
+ private resolveTrustedAbsoluteHref;
8872
+ private isTrustedOrigin;
8873
+ private getTrustedOrigins;
8874
+ private normalizeOrigin;
8875
+ private isProxyableApiPath;
8876
+ private normalizePathPrefix;
8877
+ private isAbsoluteHttpUrl;
8597
8878
  private resolveApiBaseHref;
8598
8879
  private resolveEndpointEntry;
8599
8880
  private getRuntimeOrigin;
@@ -9134,6 +9415,133 @@ declare class DomainRuleService {
9134
9415
  static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
9135
9416
  }
9136
9417
 
9418
+ interface EnterpriseRuntimeUser {
9419
+ userId: string;
9420
+ displayName?: string | null;
9421
+ resolvedFromServerPrincipal?: boolean;
9422
+ }
9423
+ interface EnterpriseRuntimeTenant {
9424
+ tenantId: string;
9425
+ label?: string | null;
9426
+ active?: boolean;
9427
+ }
9428
+ interface EnterpriseRuntimeTenantsResponse {
9429
+ schemaVersion: string;
9430
+ activeTenant?: EnterpriseRuntimeTenant | null;
9431
+ tenants?: EnterpriseRuntimeTenant[];
9432
+ capabilities?: string[];
9433
+ resolvedAt?: string | null;
9434
+ }
9435
+ interface EnterpriseRuntimeContext {
9436
+ schemaVersion: string;
9437
+ user: EnterpriseRuntimeUser;
9438
+ activeTenant: EnterpriseRuntimeTenant;
9439
+ environment?: string | null;
9440
+ locale?: string | null;
9441
+ timezone?: string | null;
9442
+ activeProfileId?: string | null;
9443
+ activeModuleKey?: string | null;
9444
+ /**
9445
+ * Host-resolved security authorities usable by metadata-driven UX policies.
9446
+ * Do not infer these from `capabilities` unless the host/backend explicitly
9447
+ * publishes that shared vocabulary.
9448
+ */
9449
+ authorities?: string[];
9450
+ capabilities?: string[];
9451
+ resolvedAt?: string | null;
9452
+ }
9453
+ interface EnterpriseRuntimeContextSwitchCommand {
9454
+ targetTenantId?: string | null;
9455
+ targetProfileId?: string | null;
9456
+ targetModuleKey?: string | null;
9457
+ locale?: string | null;
9458
+ timezone?: string | null;
9459
+ reason?: string | null;
9460
+ }
9461
+ interface EnterpriseRuntimeContextSwitchResponse {
9462
+ schemaVersion: string;
9463
+ accepted: boolean;
9464
+ message?: string | null;
9465
+ effectiveContext?: EnterpriseRuntimeContext | null;
9466
+ propagationHeaders?: Record<string, string>;
9467
+ capabilities?: string[];
9468
+ resolvedAt?: string | null;
9469
+ }
9470
+ interface EnterpriseRuntimeNavigationNode {
9471
+ id: string;
9472
+ label?: string | null;
9473
+ type?: string | null;
9474
+ href?: string | null;
9475
+ route?: string | null;
9476
+ moduleKey?: string | null;
9477
+ resourceKey?: string | null;
9478
+ surfaceRef?: string | null;
9479
+ actionRef?: string | null;
9480
+ capabilityRef?: string | null;
9481
+ children?: EnterpriseRuntimeNavigationNode[];
9482
+ }
9483
+ interface EnterpriseRuntimeNavigationResponse {
9484
+ schemaVersion: string;
9485
+ nodes?: EnterpriseRuntimeNavigationNode[];
9486
+ capabilities?: string[];
9487
+ resolvedAt?: string | null;
9488
+ }
9489
+ interface EnterpriseRuntimeSecurityEvent {
9490
+ eventRef?: string | null;
9491
+ eventType?: string | null;
9492
+ severity?: string | null;
9493
+ summary?: string | null;
9494
+ tenantId?: string | null;
9495
+ environment?: string | null;
9496
+ occurredAt?: string | null;
9497
+ metadata?: Record<string, string>;
9498
+ }
9499
+ interface EnterpriseRuntimeSecurityEventsResponse {
9500
+ schemaVersion: string;
9501
+ events?: EnterpriseRuntimeSecurityEvent[];
9502
+ capabilities?: string[];
9503
+ resolvedAt?: string | null;
9504
+ }
9505
+ interface EnterpriseRuntimeContextHeaders {
9506
+ 'X-Tenant-ID'?: string;
9507
+ 'X-User-ID'?: string;
9508
+ 'X-Env'?: string;
9509
+ 'Accept-Language'?: string;
9510
+ 'X-Timezone'?: string;
9511
+ 'X-Praxis-Profile-ID'?: string;
9512
+ 'X-Praxis-Module-Key'?: string;
9513
+ }
9514
+
9515
+ type RuntimeHeaderMap = Record<string, string | undefined>;
9516
+ declare class EnterpriseRuntimeContextService {
9517
+ private readonly http;
9518
+ private readonly apiUrl;
9519
+ private readonly options;
9520
+ private readonly contextSubject;
9521
+ private loadPromise;
9522
+ readonly contextChanges$: Observable<EnterpriseRuntimeContext | null>;
9523
+ get snapshot(): EnterpriseRuntimeContext | null;
9524
+ ready(): Promise<EnterpriseRuntimeContext | null>;
9525
+ refresh(): Promise<EnterpriseRuntimeContext | null>;
9526
+ tenants(): Promise<EnterpriseRuntimeTenantsResponse>;
9527
+ navigation(): Promise<EnterpriseRuntimeNavigationResponse>;
9528
+ securityEvents(): Promise<EnterpriseRuntimeSecurityEventsResponse>;
9529
+ switchContext(command: EnterpriseRuntimeContextSwitchCommand): Promise<EnterpriseRuntimeContextSwitchResponse>;
9530
+ headers(fallback?: RuntimeHeaderMap): EnterpriseRuntimeContextHeaders;
9531
+ private load;
9532
+ private getRuntimeSurface;
9533
+ private endpoint;
9534
+ private configuredEndpoint;
9535
+ private runtimeRoot;
9536
+ private surfacePath;
9537
+ private requestHeaders;
9538
+ private globalFetchHeaders;
9539
+ private headersFromSnapshot;
9540
+ private normalizeHeaders;
9541
+ static ɵfac: i0.ɵɵFactoryDeclaration<EnterpriseRuntimeContextService, never>;
9542
+ static ɵprov: i0.ɵɵInjectableDeclaration<EnterpriseRuntimeContextService>;
9543
+ }
9544
+
9137
9545
  type PraxisRuntimeComponentObservationSchemaVersion = 'praxis-runtime-component-observation.v1';
9138
9546
  type PraxisRuntimeComponentObservationClaimKind = 'component' | 'manifest' | 'resource' | 'schemaField' | 'selection' | 'operation' | 'surface' | 'action' | 'stateDigest' | 'dataDigest';
9139
9547
  interface PraxisRuntimeComponentObservationEnvelope {
@@ -9293,6 +9701,63 @@ declare class ResourceSurfaceOpenAdapterService {
9293
9701
  static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
9294
9702
  }
9295
9703
 
9704
+ type RelatedResourceResolutionState = 'idle' | 'resolving' | 'loading' | 'ready' | 'empty' | 'permission-limited' | 'not-found' | 'error';
9705
+ interface RelatedResourceQueryContext {
9706
+ filters?: Record<string, unknown> | null;
9707
+ filterExpression?: unknown;
9708
+ sort?: string[] | null;
9709
+ limit?: number | null;
9710
+ page?: {
9711
+ index?: number | null;
9712
+ size?: number | null;
9713
+ } | null;
9714
+ meta?: Record<string, unknown> | null;
9715
+ }
9716
+ interface RelatedResourceSurfaceResolverRequest {
9717
+ surface?: ResourceSurfaceCatalogItem | null;
9718
+ parentRecord?: Record<string, unknown> | null;
9719
+ parentResourceId?: string | number | null;
9720
+ parentResourcePath?: string | null;
9721
+ presentation?: SurfacePresentation;
9722
+ title?: string | null;
9723
+ subtitle?: string | null;
9724
+ icon?: string | null;
9725
+ tableId?: string | null;
9726
+ tableConfig?: Record<string, unknown> | null;
9727
+ emptyState?: Record<string, unknown> | null;
9728
+ queryContext?: RelatedResourceQueryContext | null;
9729
+ }
9730
+ interface RelatedResourceSurfaceResolution {
9731
+ state: RelatedResourceResolutionState;
9732
+ reason?: string;
9733
+ surface?: ResourceSurfaceCatalogItem | null;
9734
+ relatedResource?: RelatedResourceSurface | null;
9735
+ parentResourceId?: string | number | null;
9736
+ childResourcePath?: string | null;
9737
+ childResourceKey?: string | null;
9738
+ queryContext?: RelatedResourceQueryContext | null;
9739
+ payload?: SurfaceOpenPayload;
9740
+ }
9741
+ declare class RelatedResourceSurfaceResolverService {
9742
+ resolve(request: RelatedResourceSurfaceResolverRequest | null | undefined): RelatedResourceSurfaceResolution;
9743
+ state(state: RelatedResourceResolutionState, reason?: string): RelatedResourceSurfaceResolution;
9744
+ private buildPayload;
9745
+ private buildTableConfig;
9746
+ private objectValue;
9747
+ private buildQueryContext;
9748
+ private resolveParentResourceId;
9749
+ private readPath;
9750
+ private isCompleteRelatedResource;
9751
+ private hasReadOperation;
9752
+ private buildStableTableId;
9753
+ private normalizeResourcePath;
9754
+ private sanitizeStableId;
9755
+ private trim;
9756
+ private clone;
9757
+ static ɵfac: i0.ɵɵFactoryDeclaration<RelatedResourceSurfaceResolverService, never>;
9758
+ static ɵprov: i0.ɵɵInjectableDeclaration<RelatedResourceSurfaceResolverService>;
9759
+ }
9760
+
9296
9761
  type SurfaceOpenMaterializationContext = {
9297
9762
  payload?: unknown;
9298
9763
  runtime?: unknown;
@@ -9301,21 +9766,6 @@ declare class SurfaceOpenMaterializerService {
9301
9766
  private readonly discovery;
9302
9767
  materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
9303
9768
  private projectMaterializedFormInputs;
9304
- private buildLocalFormConfig;
9305
- private buildMaterializedFormFields;
9306
- private buildMaterializedFormSections;
9307
- private shouldRenderMaterializedFormField;
9308
- private isTechnicalRelationIdField;
9309
- private isResolvedDisplayCompanionField;
9310
- private resolveDisplayCompanionBase;
9311
- private hasDisplayCompanion;
9312
- private isDuplicateMediaUrlField;
9313
- private looksLikeMediaUrlField;
9314
- private looksLikeAvatarFieldName;
9315
- private inferFormControlType;
9316
- private humanizeFieldName;
9317
- private stableSectionId;
9318
- private chunk;
9319
9769
  private shouldMaterializeItemReadProjection;
9320
9770
  private resolveResponseCardinality;
9321
9771
  private shouldMaterializeAsCollection;
@@ -9323,9 +9773,26 @@ declare class SurfaceOpenMaterializerService {
9323
9773
  private resolveResourceId;
9324
9774
  private resolveItemReadUrl;
9325
9775
  private resolveSchemaFields;
9776
+ private materializeArrayProjection;
9777
+ private materializeArrayAsCrud;
9326
9778
  private materializeArrayAsTable;
9779
+ private ensureCollectionTableSelectionContract;
9780
+ private ensureTableSelectionConfig;
9327
9781
  private projectTableInputs;
9328
9782
  private buildLocalTableConfig;
9783
+ private objectRecord;
9784
+ private buildRelatedCrudActions;
9785
+ private buildRelatedCommandFormConfig;
9786
+ private buildExplicitRelatedActionForm;
9787
+ private buildRelatedCommandLayoutPolicy;
9788
+ private buildSchemaUrl;
9789
+ private hasRelatedChildWriteOperations;
9790
+ private resolveRelatedChildOperations;
9791
+ private resolveRelatedResource;
9792
+ private resolveRelatedSelectionKeyField;
9793
+ private resolveSurfacePath;
9794
+ private normalizeResourcePath;
9795
+ private resolveRelatedActionNoun;
9329
9796
  private inferColumnsFromData;
9330
9797
  private extractCollectionData;
9331
9798
  private mergeMaterializationContext;
@@ -9363,6 +9830,7 @@ interface ResolvedCrudOperation {
9363
9830
  interface ResolveCrudOperationRequest {
9364
9831
  operation: ResourceCrudOperationId;
9365
9832
  resourcePath: string;
9833
+ schemaResourcePath?: string | null;
9366
9834
  resourceId?: string | number | null;
9367
9835
  explicit?: ExplicitCrudResolutionContract | null;
9368
9836
  }
@@ -9380,6 +9848,7 @@ declare class CrudOperationResolutionService {
9380
9848
  private buildExplicitResolution;
9381
9849
  private buildSurfaceResolution;
9382
9850
  private buildConventionResolution;
9851
+ private addConventionSurfaceDiagnostic;
9383
9852
  private resolveCanonicalSchemaUrl;
9384
9853
  private buildCanonicalSchemaParams;
9385
9854
  private resolveConventionSubmitUrl;
@@ -9400,6 +9869,7 @@ declare class CrudOperationResolutionService {
9400
9869
  private normalizeResourcePath;
9401
9870
  private resolveSchemaResourcePath;
9402
9871
  private resolveCanonicalResourcePath;
9872
+ private resolveCanonicalSchemaResourcePath;
9403
9873
  private toDiscoveryOptions;
9404
9874
  static ɵfac: i0.ɵɵFactoryDeclaration<CrudOperationResolutionService, never>;
9405
9875
  static ɵprov: i0.ɵɵInjectableDeclaration<CrudOperationResolutionService>;
@@ -9982,6 +10452,62 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
9982
10452
  declare function provideRemoteGlobalConfig(url: string): Provider;
9983
10453
  declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
9984
10454
 
10455
+ interface PraxisEnterpriseRuntimeEndpoints {
10456
+ /**
10457
+ * Absolute or relative endpoint for the host-owned runtime context snapshot.
10458
+ * Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
10459
+ */
10460
+ context?: string;
10461
+ /**
10462
+ * Absolute or relative endpoint for the host-owned tenant catalog.
10463
+ * Defaults to the same runtime root as `context`, ending in `/tenants`.
10464
+ */
10465
+ tenants?: string;
10466
+ /**
10467
+ * Absolute or relative endpoint for host-owned navigation.
10468
+ * Defaults to the same runtime root as `context`, ending in `/navigation`.
10469
+ */
10470
+ navigation?: string;
10471
+ /**
10472
+ * Absolute or relative endpoint for host-owned security events.
10473
+ * Defaults to the same runtime root as `context`, ending in `/security-events`.
10474
+ */
10475
+ securityEvents?: string;
10476
+ }
10477
+ interface PraxisEnterpriseRuntimeContextOptions {
10478
+ /**
10479
+ * Absolute or relative endpoint for the host-owned runtime context snapshot.
10480
+ * Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
10481
+ * Prefer `endpoints.context` for new integrations.
10482
+ */
10483
+ endpoint?: string;
10484
+ /**
10485
+ * Host-owned enterprise runtime surfaces. When omitted, URLs are derived from
10486
+ * the configured `endpoint` or from the canonical `/praxis/runtime` root.
10487
+ */
10488
+ endpoints?: PraxisEnterpriseRuntimeEndpoints;
10489
+ /**
10490
+ * Headers used to resolve the context request. The response remains the source
10491
+ * of truth for tenant/user/environment headers after bootstrap.
10492
+ */
10493
+ headersFactory?: () => Record<string, string | undefined>;
10494
+ /**
10495
+ * Include `globalThis.PAX_FETCH_HEADERS()` in the request headers when present.
10496
+ */
10497
+ includeGlobalFetchHeaders?: boolean;
10498
+ /**
10499
+ * Block Angular bootstrap until the context has been resolved.
10500
+ */
10501
+ blocking?: boolean;
10502
+ /**
10503
+ * Whether bootstrap should fail when the runtime context request fails.
10504
+ */
10505
+ errorPolicy?: 'fail' | 'ignore';
10506
+ }
10507
+ declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS: InjectionToken<PraxisEnterpriseRuntimeContextOptions>;
10508
+ declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY: InjectionToken<() => Promise<void>>;
10509
+ declare function providePraxisEnterpriseRuntimeContext(options?: PraxisEnterpriseRuntimeContextOptions): Provider[];
10510
+
9985
10511
  declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
9986
10512
  declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
9987
10513
 
@@ -10143,6 +10669,26 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
10143
10669
 
10144
10670
  declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
10145
10671
 
10672
+ interface TableDetailInlineRendererContext {
10673
+ node: TableDetailRefNode;
10674
+ row: unknown;
10675
+ rowIndex: number;
10676
+ detailContext?: Record<string, unknown>;
10677
+ }
10678
+ interface TableDetailInlineRendererDefinition {
10679
+ nodeType: TableDetailRefNode['type'];
10680
+ renderMode: 'inline';
10681
+ component: Type<unknown>;
10682
+ buildInputs: (context: TableDetailInlineRendererContext) => Record<string, unknown> | null;
10683
+ }
10684
+ interface TableDetailInlineNodeResolverDefinition {
10685
+ nodeType: TableDetailRefNode['type'];
10686
+ renderMode: 'inline';
10687
+ resolveNode: (context: TableDetailInlineRendererContext) => TableDetailRefNode | null;
10688
+ }
10689
+ declare const PRAXIS_TABLE_DETAIL_INLINE_RENDERERS: InjectionToken<readonly TableDetailInlineRendererDefinition[]>;
10690
+ declare const PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS: InjectionToken<readonly TableDetailInlineNodeResolverDefinition[]>;
10691
+
10146
10692
  declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
10147
10693
 
10148
10694
  declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
@@ -10778,7 +11324,7 @@ interface EditorialFormTemplateBuildOptions {
10778
11324
  * - collections are replaced, not concatenated, unless omitted in overrides
10779
11325
  * - template provenance is recorded under config.metadata.template
10780
11326
  */
10781
- declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfig;
11327
+ declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfigWithSections;
10782
11328
 
10783
11329
  interface FormFieldLayoutItem {
10784
11330
  kind: 'field';
@@ -10861,6 +11407,10 @@ interface FormRow {
10861
11407
  interface FormSection {
10862
11408
  id: string;
10863
11409
  title?: string;
11410
+ /** Optional host/runtime CSS classes applied to the section container. */
11411
+ className?: string;
11412
+ /** Optional semantic presentation role used by compact/read-only layouts. */
11413
+ presentationRole?: string;
10864
11414
  /** Visual appearance preset for the section container/header. */
10865
11415
  appearance?: 'card' | 'plain' | 'step';
10866
11416
  /** Optional compact step badge/kicker displayed before the title. */
@@ -10983,8 +11533,12 @@ interface FormSectionHeaderConfig {
10983
11533
  initialsMaxLength?: number;
10984
11534
  }
10985
11535
  interface FormConfig {
10986
- /** Layout sections for simple form organization */
10987
- sections: FormSection[];
11536
+ /**
11537
+ * Optional manual layout sections.
11538
+ * When omitted, schema-driven runtimes may infer sections from field metadata
11539
+ * instead of forcing hosts to declare an empty manual layout.
11540
+ */
11541
+ sections?: FormSection[];
10988
11542
  /** Editorial or semantic rich content rendered before the form sections/actions. */
10989
11543
  formBlocksBefore?: RichContentDocument | null;
10990
11544
  /** Editorial or semantic rich content rendered after the form sections and before the primary action area. */
@@ -11023,7 +11577,16 @@ interface FormConfig {
11023
11577
  * Útil para padronizar mensagens didáticas no host.
11024
11578
  */
11025
11579
  hints?: FormModeHints;
11580
+ /**
11581
+ * Presentation policy for semantic field help (`hint`/`helpText`).
11582
+ * This controls visual density only; validation errors remain inline.
11583
+ */
11584
+ helpPresentation?: FormHelpPresentationConfig;
11026
11585
  }
11586
+ interface FormConfigWithSections extends FormConfig {
11587
+ sections: FormSection[];
11588
+ }
11589
+ declare function withFormConfigSections(config: FormConfig): FormConfigWithSections;
11027
11590
  interface FormModeHints {
11028
11591
  dataModes: {
11029
11592
  create: string;
@@ -11043,9 +11606,46 @@ interface FormConfigMetadata {
11043
11606
  /** Last update timestamp */
11044
11607
  lastUpdated?: Date;
11045
11608
  /** Configuration source */
11046
- source?: 'local' | 'server' | 'default';
11609
+ source?: 'local' | 'server' | 'default' | 'schema';
11610
+ /**
11611
+ * Layout preset used when this configuration was generated from metadata/schema.
11612
+ * This is provenance for generated configs; it must not be interpreted as a
11613
+ * command to reprocess authored or persisted layouts.
11614
+ */
11615
+ generatedLayoutPreset?: 'default' | 'compactPresentation' | 'groupedCommand';
11616
+ /** Runtime policy used to materialize schema-driven layout, when applicable. */
11617
+ schemaLayoutPolicy?: {
11618
+ source: 'authored' | 'schema';
11619
+ preset?: 'default' | 'compactPresentation' | 'groupedCommand';
11620
+ intent?: 'detail' | 'command';
11621
+ lifecycle?: 'initial' | 'live';
11622
+ persistence?: 'transient' | 'authorable';
11623
+ detachBehavior?: 'none' | 'explicit';
11624
+ schemaOperation?: 'detail' | 'create' | 'update' | 'view';
11625
+ schemaType?: 'request' | 'response';
11626
+ detailSummary?: {
11627
+ includeFields?: readonly string[];
11628
+ excludeFields?: readonly string[];
11629
+ includeGroups?: readonly string[];
11630
+ excludeGroups?: readonly string[];
11631
+ includeRoles?: readonly string[];
11632
+ excludeRoles?: readonly string[];
11633
+ maxFields?: number;
11634
+ fieldPriority?: Record<string, number>;
11635
+ groupPriority?: Record<string, number>;
11636
+ columns?: number;
11637
+ responsiveColumns?: Partial<Record<'xs' | 'sm' | 'md' | 'lg' | 'xl', number>>;
11638
+ widthPrecedence?: 'schema' | 'summary';
11639
+ };
11640
+ };
11047
11641
  /** Server data hash for change detection */
11048
11642
  serverHash?: string;
11643
+ /**
11644
+ * Host-resolved security authorities used only for fieldAccess UX
11645
+ * materialization. Do not populate this from runtime capabilities unless the
11646
+ * host/backend explicitly declares that both vocabularies are shared.
11647
+ */
11648
+ fieldAccessAuthorities?: string[];
11049
11649
  /**
11050
11650
  * Server schema identity used to build this configuration.
11051
11651
  * Format comes from buildSchemaId(path|operation|schemaType|internal|tenant|locale|origin).
@@ -11233,7 +11833,7 @@ interface FormActionConfirmationEvent {
11233
11833
  confirmed: boolean;
11234
11834
  }
11235
11835
 
11236
- type RulePropertyType = 'string' | 'boolean' | 'object' | 'enum' | 'number';
11836
+ type RulePropertyType = 'string' | 'boolean' | 'object' | 'array' | 'enum' | 'number';
11237
11837
  interface RulePropertyDefinition {
11238
11838
  name: string;
11239
11839
  type: RulePropertyType;
@@ -12173,6 +12773,35 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
12173
12773
  status?: PersistedPageConfig['status'];
12174
12774
  }): PersistedPageConfig;
12175
12775
 
12776
+ type PraxisResourceEventKind = 'row-click' | 'row-double-click' | 'selection-change' | 'row-action' | 'toolbar-action' | 'bulk-action' | 'export-action' | 'surface-open' | 'widget-event' | 'custom';
12777
+ interface PraxisResourceEvent<TPayload = unknown> {
12778
+ /** Canonical resource-level intent represented by the original component output. */
12779
+ kind: PraxisResourceEventKind;
12780
+ /** Component selector/id that originated the event, such as praxis-table. */
12781
+ sourceComponentId: string;
12782
+ /** Legacy/public output that produced this envelope, such as rowClick or toolbarAction. */
12783
+ sourceOutput?: string;
12784
+ /** Lifecycle phase for enterprise orchestration, analytics, auditing, and feedback. */
12785
+ phase?: 'request' | 'success' | 'error' | 'notification';
12786
+ resourcePath?: string | null;
12787
+ resourceKey?: string | null;
12788
+ resourceId?: string | number | null;
12789
+ surface?: ResourceSurfaceCatalogItem | null;
12790
+ payload: TPayload;
12791
+ context?: Record<string, unknown> | null;
12792
+ }
12793
+ interface PraxisResourceRowClickPayload<TRow = unknown> {
12794
+ row: TRow;
12795
+ index: number;
12796
+ }
12797
+ interface PraxisResourceSelectionPayload<TRow = unknown> {
12798
+ trigger: string;
12799
+ row?: TRow;
12800
+ selectedRows: TRow[];
12801
+ selectedCount: number;
12802
+ tableId?: string;
12803
+ }
12804
+
12176
12805
  type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
12177
12806
  interface RecordRelatedSurfaceEndpoint {
12178
12807
  widget: string;
@@ -12478,6 +13107,51 @@ declare function mapFieldDefinitionToMetadata(field: FieldDefinition): FieldMeta
12478
13107
  */
12479
13108
  declare function mapFieldDefinitionsToMetadata(fields: FieldDefinition[]): FieldMetadata[];
12480
13109
 
13110
+ type DynamicFormLayoutSource = 'authored' | 'schema';
13111
+ type DynamicFormSchemaLayoutPreset = 'default' | 'compactPresentation' | 'groupedCommand';
13112
+ type DynamicFormLayoutIntent = 'detail' | 'command';
13113
+ type DynamicFormLayoutLifecycle = 'initial' | 'live';
13114
+ type DynamicFormLayoutPersistence = 'transient' | 'authorable';
13115
+ type DynamicFormLayoutDetachBehavior = 'none' | 'explicit';
13116
+ type DynamicFormSchemaOperation = 'detail' | 'create' | 'update' | 'view';
13117
+ type DynamicFormSchemaType = 'request' | 'response';
13118
+ type DynamicFormResponsiveBreakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
13119
+ type DynamicFormResponsiveColumns = Partial<Record<DynamicFormResponsiveBreakpoint, number>>;
13120
+ type DynamicFormDetailSummaryWidthPrecedence = 'schema' | 'summary';
13121
+ interface DynamicFormDetailSummaryPolicy {
13122
+ includeFields?: readonly string[];
13123
+ excludeFields?: readonly string[];
13124
+ includeGroups?: readonly string[];
13125
+ excludeGroups?: readonly string[];
13126
+ includeRoles?: readonly string[];
13127
+ excludeRoles?: readonly string[];
13128
+ maxFields?: number;
13129
+ fieldPriority?: Record<string, number>;
13130
+ groupPriority?: Record<string, number>;
13131
+ columns?: number;
13132
+ responsiveColumns?: DynamicFormResponsiveColumns;
13133
+ widthPrecedence?: DynamicFormDetailSummaryWidthPrecedence;
13134
+ }
13135
+ interface DynamicFormLayoutPolicy {
13136
+ source: DynamicFormLayoutSource;
13137
+ preset?: DynamicFormSchemaLayoutPreset;
13138
+ intent?: DynamicFormLayoutIntent;
13139
+ lifecycle?: DynamicFormLayoutLifecycle;
13140
+ persistence?: DynamicFormLayoutPersistence;
13141
+ detachBehavior?: DynamicFormLayoutDetachBehavior;
13142
+ schemaOperation?: DynamicFormSchemaOperation;
13143
+ schemaType?: DynamicFormSchemaType;
13144
+ detailSummary?: DynamicFormDetailSummaryPolicy;
13145
+ }
13146
+ interface MaterializeFormLayoutOptions {
13147
+ policy?: DynamicFormLayoutPolicy | null;
13148
+ defaultSectionTitle?: string;
13149
+ presentationRoleMap?: Record<string, string>;
13150
+ includeHidden?: boolean;
13151
+ }
13152
+ declare function materializeFormLayoutFromMetadata(fields: FieldMetadata[], options?: MaterializeFormLayoutOptions): FormConfigWithSections;
13153
+ declare function normalizeLayoutPolicy(policy?: DynamicFormLayoutPolicy | null): Required<Pick<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>> & Omit<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>;
13154
+
12481
13155
  /**
12482
13156
  * Compose headers including optional API version information.
12483
13157
  * If the entry already defines custom headers, they will be preserved.
@@ -12497,7 +13171,7 @@ type EnsureIdsOptions = {
12497
13171
  * Garante que todas as sections/rows/columns do FormConfig possuam IDs únicos.
12498
13172
  * Retorna um NOVO objeto (sem mutar o original).
12499
13173
  */
12500
- declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions): FormConfig;
13174
+ declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions): FormConfigWithSections;
12501
13175
 
12502
13176
  declare function resolveSpan(span?: ColumnSpan): Required<ColumnSpan>;
12503
13177
  declare function resolveOffset(offset?: ColumnOffset): Required<ColumnOffset>;
@@ -12835,7 +13509,7 @@ interface ComponentAuthoringManifest {
12835
13509
  examples: ManifestExample[];
12836
13510
  /**
12837
13511
  * Perfis opcionais para familias de componentes que compartilham um manifesto
12838
- * base, mas precisam expor semantica granular por componente/controlType.
13512
+ * base, mas precisam expor semântica granular por componente/controlType.
12839
13513
  */
12840
13514
  controlProfiles?: ManifestControlProfile[];
12841
13515
  }
@@ -12994,13 +13668,13 @@ interface ManifestControlProfile {
12994
13668
  profileId: string;
12995
13669
  /** Nome curto usado por ferramentas de authoring. */
12996
13670
  title: string;
12997
- /** Explica a semantica que este perfil adiciona sobre o manifesto base. */
13671
+ /** Explica a semântica que este perfil adiciona sobre o manifesto base. */
12998
13672
  description: string;
12999
13673
  /** Regras deterministicas para projetar o perfil em componentes do registry. */
13000
13674
  appliesTo: ManifestControlProfileApplicability;
13001
13675
  /** Alvos adicionais ou refinados que este perfil torna editaveis. */
13002
13676
  editableTargets?: ManifestTarget[];
13003
- /** Operacoes especificas do perfil/controlType. */
13677
+ /** Operações específicas do perfil/controlType. */
13004
13678
  operations: ManifestOperation[];
13005
13679
  /** Validadores especificos do perfil/controlType. */
13006
13680
  validators: ManifestValidator[];
@@ -13064,7 +13738,7 @@ interface CapabilityCatalog extends AiCapabilityCatalog {
13064
13738
  }
13065
13739
  declare const DYNAMIC_PAGE_AI_CAPABILITIES: CapabilityCatalog;
13066
13740
 
13067
- type ComponentContextOptionMode = 'enum' | 'suggested';
13741
+ type ComponentContextOptionMode = 'enum' | 'suggested' | 'expression';
13068
13742
  interface ComponentContextOption {
13069
13743
  value: string | number;
13070
13744
  label?: string;
@@ -13073,6 +13747,7 @@ interface ComponentContextOption {
13073
13747
  interface ComponentContextOptionsByPathEntry {
13074
13748
  mode: ComponentContextOptionMode;
13075
13749
  options: ComponentContextOption[];
13750
+ suggestedRoots?: string[];
13076
13751
  }
13077
13752
  interface ComponentActionParam {
13078
13753
  name: string;
@@ -13161,6 +13836,7 @@ interface WidgetEventEnvelope {
13161
13836
  output?: string;
13162
13837
  payload?: any;
13163
13838
  path?: WidgetEventPathSegment[];
13839
+ resourceEvent?: PraxisResourceEvent;
13164
13840
  }
13165
13841
  type WidgetResolutionPhase = 'ready' | 'metadata-missing' | 'create-error' | 'validation-error' | 'bind-error';
13166
13842
  interface WidgetResolutionDiagnostic {
@@ -14065,6 +14741,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
14065
14741
  private enrichRuntimeWidgetInputs;
14066
14742
  private buildRichContentHostCapabilities;
14067
14743
  private dispatchRichContentAction;
14744
+ private emitRichContentCustomAction;
14068
14745
  private isRichContentActionAvailable;
14069
14746
  private hasRichContentCapability;
14070
14747
  private resolveComponentBindingPath;
@@ -14250,6 +14927,9 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
14250
14927
  */
14251
14928
  renderTitleInsideBody: boolean;
14252
14929
  widgetEvent: EventEmitter<WidgetEventEnvelope>;
14930
+ rowClick: EventEmitter<unknown>;
14931
+ selectionChange: EventEmitter<unknown>;
14932
+ resourceEvent: EventEmitter<PraxisResourceEvent<unknown>>;
14253
14933
  private beforeWidgetLoader?;
14254
14934
  private mainWidgetLoader?;
14255
14935
  private afterWidgetLoader?;
@@ -14267,16 +14947,95 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
14267
14947
  private isRichContentActionAvailable;
14268
14948
  private hasRichContentCapability;
14269
14949
  onSlotWidgetEvent(ownerWidgetKey: string, event: WidgetEventEnvelope): void;
14950
+ private toResourceEvent;
14951
+ private readRecord;
14952
+ private stringOrNull;
14953
+ private resourceIdOrNull;
14954
+ private toResourceSurface;
14270
14955
  static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
14271
- static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; }, never, never, true, never>;
14956
+ static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; "resourceEvent": "resourceEvent"; }, never, never, true, never>;
14272
14957
  }
14273
14958
 
14959
+ type RelatedResourceOutletMode = 'inline' | 'open-action';
14960
+ declare class PraxisRelatedResourceOutletComponent {
14961
+ private readonly resolver;
14962
+ private readonly materializer;
14963
+ private readonly i18n;
14964
+ private readonly injector;
14965
+ private discoverySubscription?;
14966
+ private discoveryRequestKey;
14967
+ private materializationRequestKey;
14968
+ readonly surface: i0.InputSignal<ResourceSurfaceCatalogItem | null>;
14969
+ readonly surfaceId: i0.InputSignal<string | null>;
14970
+ readonly surfaceCatalog: i0.InputSignal<ResourceSurfaceCatalogResponse | null>;
14971
+ readonly discoverySource: i0.InputSignal<ResourceLinkSource | null>;
14972
+ readonly parentLinks: i0.InputSignal<RestApiLinks | RestApiResponse<unknown> | null>;
14973
+ readonly apiEndpointKey: i0.InputSignal<ApiEndpoint | null>;
14974
+ readonly apiUrlEntry: i0.InputSignal<ApiUrlEntry | null>;
14975
+ readonly parentRecord: i0.InputSignal<Record<string, unknown> | null>;
14976
+ readonly parentResourceId: i0.InputSignal<string | number | null>;
14977
+ readonly parentResourcePath: i0.InputSignal<string | null>;
14978
+ readonly presentation: i0.InputSignal<SurfacePresentation>;
14979
+ readonly title: i0.InputSignal<string | null>;
14980
+ readonly subtitle: i0.InputSignal<string | null>;
14981
+ readonly icon: i0.InputSignal<string | null>;
14982
+ readonly tableId: i0.InputSignal<string | null>;
14983
+ readonly tableConfig: i0.InputSignal<Record<string, unknown> | null>;
14984
+ readonly emptyState: i0.InputSignal<Record<string, unknown> | null>;
14985
+ readonly queryContext: i0.InputSignal<RelatedResourceQueryContext | null>;
14986
+ readonly mode: i0.InputSignal<RelatedResourceOutletMode>;
14987
+ readonly state: i0.InputSignal<RelatedResourceResolutionState | null>;
14988
+ readonly stateReason: i0.InputSignal<string | null>;
14989
+ readonly compact: i0.InputSignal<boolean>;
14990
+ readonly strictValidation: i0.InputSignal<boolean>;
14991
+ readonly ownerWidgetKey: i0.InputSignal<string>;
14992
+ readonly surfaceOpen: i0.OutputEmitterRef<SurfaceOpenPayload>;
14993
+ readonly widgetEvent: i0.OutputEmitterRef<WidgetEventEnvelope>;
14994
+ readonly resourceEvent: i0.OutputEmitterRef<PraxisResourceEvent<unknown>>;
14995
+ private readonly discoveredSurface;
14996
+ private readonly discoveryState;
14997
+ private readonly discoveryStateReason;
14998
+ private readonly materializedPayload;
14999
+ readonly resolution: i0.Signal<RelatedResourceSurfaceResolution>;
15000
+ readonly renderResolution: i0.Signal<RelatedResourceSurfaceResolution>;
15001
+ readonly isBusy: i0.Signal<boolean>;
15002
+ constructor();
15003
+ openRelated(): void;
15004
+ onWidgetEvent(event: WidgetEventEnvelope): void;
15005
+ stateIcon(): string;
15006
+ stateTitle(): string;
15007
+ stateDescription(): string;
15008
+ t(key: string, fallback: string): string;
15009
+ private defaultTitle;
15010
+ private defaultDescription;
15011
+ private applyCatalogSurface;
15012
+ private resetDiscoveryState;
15013
+ private discoveryOptions;
15014
+ private resolveFallbackSurfaceCatalogHref;
15015
+ private normalizeResourcePath;
15016
+ private buildDiscoveryRequestKey;
15017
+ private buildMaterializationRequestKey;
15018
+ private isPermissionError;
15019
+ private extractResourceEvent;
15020
+ private trim;
15021
+ static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRelatedResourceOutletComponent, never>;
15022
+ static ɵcmp: i0.ɵɵComponentDeclaration<PraxisRelatedResourceOutletComponent, "praxis-related-resource-outlet", never, { "surface": { "alias": "surface"; "required": false; "isSignal": true; }; "surfaceId": { "alias": "surfaceId"; "required": false; "isSignal": true; }; "surfaceCatalog": { "alias": "surfaceCatalog"; "required": false; "isSignal": true; }; "discoverySource": { "alias": "discoverySource"; "required": false; "isSignal": true; }; "parentLinks": { "alias": "parentLinks"; "required": false; "isSignal": true; }; "apiEndpointKey": { "alias": "apiEndpointKey"; "required": false; "isSignal": true; }; "apiUrlEntry": { "alias": "apiUrlEntry"; "required": false; "isSignal": true; }; "parentRecord": { "alias": "parentRecord"; "required": false; "isSignal": true; }; "parentResourceId": { "alias": "parentResourceId"; "required": false; "isSignal": true; }; "parentResourcePath": { "alias": "parentResourcePath"; "required": false; "isSignal": true; }; "presentation": { "alias": "presentation"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "tableId": { "alias": "tableId"; "required": false; "isSignal": true; }; "tableConfig": { "alias": "tableConfig"; "required": false; "isSignal": true; }; "emptyState": { "alias": "emptyState"; "required": false; "isSignal": true; }; "queryContext": { "alias": "queryContext"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "stateReason": { "alias": "stateReason"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "strictValidation": { "alias": "strictValidation"; "required": false; "isSignal": true; }; "ownerWidgetKey": { "alias": "ownerWidgetKey"; "required": false; "isSignal": true; }; }, { "surfaceOpen": "surfaceOpen"; "widgetEvent": "widgetEvent"; "resourceEvent": "resourceEvent"; }, never, never, true, never>;
15023
+ }
15024
+
15025
+ declare const PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA: ComponentDocMeta;
15026
+ declare function providePraxisRelatedResourceOutletMetadata(): Provider;
15027
+
14274
15028
  interface EmptyAction {
14275
15029
  label: string;
14276
15030
  icon?: string;
14277
15031
  color?: 'primary' | 'accent' | 'warn' | undefined;
14278
15032
  action: () => void;
14279
15033
  }
15034
+ type EmptyStateTone = 'neutral' | 'primary' | 'secondary';
15035
+ type EmptyStateVariant = 'card' | 'inline' | 'panel' | 'transparent';
15036
+ type EmptyStateAlignment = 'start' | 'center';
15037
+ type EmptyStateDensity = 'compact' | 'comfortable';
15038
+ type EmptyStateIconContainer = 'none' | 'circle' | 'soft';
14280
15039
  declare class EmptyStateCardComponent {
14281
15040
  icon: string;
14282
15041
  title: string;
@@ -14284,9 +15043,14 @@ declare class EmptyStateCardComponent {
14284
15043
  primaryAction?: EmptyAction;
14285
15044
  secondaryActions: EmptyAction[];
14286
15045
  inline: boolean;
14287
- tone: 'neutral' | 'primary' | 'secondary';
15046
+ tone: EmptyStateTone;
15047
+ variant: EmptyStateVariant;
15048
+ alignment: EmptyStateAlignment;
15049
+ density: EmptyStateDensity;
15050
+ iconContainer: EmptyStateIconContainer;
15051
+ effectiveVariant(): EmptyStateVariant;
14288
15052
  static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStateCardComponent, never>;
14289
- static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateCardComponent, "praxis-empty-state-card", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; }, {}, never, never, true, never>;
15053
+ static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateCardComponent, "praxis-empty-state-card", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "density": { "alias": "density"; "required": false; }; "iconContainer": { "alias": "iconContainer"; "required": false; }; }, {}, never, never, true, never>;
14290
15054
  }
14291
15055
 
14292
15056
  declare class ResourceQuickConnectComponent implements SettingsValueProvider {
@@ -14649,5 +15413,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
14649
15413
  /** Register a whitelist of allowed hook ids/patterns. */
14650
15414
  declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
14651
15415
 
14652
- 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_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, 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, PraxisRuntimeComponentObservationRegistryService, 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, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, 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, isPraxisRuntimeGlobalActionEffect, 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, normalizePraxisEffectPolicy, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, 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, registerPraxisRuntimeComponentObservation, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, 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 };
14653
- 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, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, 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, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, 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, GlobalActionEndpointRef, 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, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, 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, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, 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, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, 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, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, 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, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, 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, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, 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, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, 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 };
15416
+ 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, EnterpriseRuntimeContextService, 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_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY, 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_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS, PRAXIS_TABLE_DETAIL_INLINE_RENDERERS, 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, PraxisRelatedResourceOutletComponent, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RelatedResourceSurfaceResolverService, 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, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, 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, evaluateFieldAccess, 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, isPraxisPresentationVisualizationTableSafe, isPraxisRuntimeGlobalActionEffect, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, materializeFormLayoutFromMetadata, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldAccessMetadata, normalizeFieldConstraints, normalizeFieldPresentation, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLayoutPolicy, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisPresentationVisualization, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, 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, providePraxisEnterpriseRuntimeContext, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRelatedResourceOutletMetadata, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, renderPraxisPresentationVisualizationHtml, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveColumnTypeFromFieldDefinition, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveFieldPresentation, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToExcel, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withFormConfigSections, withMessage, withPraxisHttpLoading };
15417
+ 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, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, 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, DynamicFormDetailSummaryPolicy, DynamicFormDetailSummaryWidthPrecedence, DynamicFormLayoutDetachBehavior, DynamicFormLayoutIntent, DynamicFormLayoutLifecycle, DynamicFormLayoutPersistence, DynamicFormLayoutPolicy, DynamicFormLayoutSource, DynamicFormResponsiveBreakpoint, DynamicFormResponsiveColumns, DynamicFormSchemaLayoutPreset, DynamicFormSchemaOperation, DynamicFormSchemaType, 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, EmptyStateAlignment, EmptyStateConfig, EmptyStateDensity, EmptyStateIconContainer, EmptyStateTone, EmptyStateVariant, EndpointConfig, EndpointRef, EnhancedValidationConfig, EnterpriseRuntimeContext, EnterpriseRuntimeContextHeaders, EnterpriseRuntimeContextSwitchCommand, EnterpriseRuntimeContextSwitchResponse, EnterpriseRuntimeNavigationNode, EnterpriseRuntimeNavigationResponse, EnterpriseRuntimeSecurityEvent, EnterpriseRuntimeSecurityEventsResponse, EnterpriseRuntimeTenant, EnterpriseRuntimeTenantsResponse, EnterpriseRuntimeUser, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldAccessEvaluationContext, FieldAccessEvaluationResult, FieldAccessMetadata, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldPresentationAppearance, FieldPresentationConfig, FieldPresentationInteractions, FieldPresentationJsonLogicEvaluator, FieldPresentationRule, FieldPresentationTone, FieldPresenterKind, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormConfigWithSections, FormCustomActionEvent, FormEntityEvent, FormFieldHelpDisplay, FormFieldLayoutItem, FormHelpPresentationConfig, 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, GlobalActionEndpointRef, 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, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, 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, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, 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, MaterializeFormLayoutOptions, 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, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisEnterpriseRuntimeContextOptions, PraxisEnterpriseRuntimeEndpoints, 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, PraxisPresentationVisualizationConfig, PraxisPresentationVisualizationHtmlOptions, PraxisPresentationVisualizationItem, PraxisPresentationVisualizationKind, PraxisPresentationVisualizationPoint, PraxisPresentationVisualizationSegment, PraxisPresentationVisualizationSize, PraxisPresentationVisualizationSurface, PraxisPresentationVisualizationThreshold, PraxisPresentationVisualizationTone, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisResourceEvent, PraxisResourceEventKind, PraxisResourceRowClickPayload, PraxisResourceSelectionPayload, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RelatedResourceChildOperation, RelatedResourceOutletMode, RelatedResourceQueryContext, RelatedResourceResolutionState, RelatedResourceSurface, RelatedResourceSurfaceResolution, RelatedResourceSurfaceResolverRequest, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolveFieldPresentationOptions, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, 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, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, 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, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, 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, TableAiAssistantConfig, TableAiConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineNodeResolverDefinition, TableDetailInlineRendererContext, TableDetailInlineRendererDefinition, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, 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 };