@praxisui/core 9.0.0-beta.7 → 9.0.0-beta.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/ai/component-registry.json +3617 -0
- package/fesm2022/praxisui-core.mjs +4284 -412
- package/package.json +19 -12
- package/theme-bridge.css +11 -0
- package/types/praxisui-core.d.ts +887 -37
package/types/praxisui-core.d.ts
CHANGED
|
@@ -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;
|
|
@@ -4740,6 +5011,35 @@ declare class GlobalConfigService {
|
|
|
4740
5011
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalConfigService>;
|
|
4741
5012
|
}
|
|
4742
5013
|
|
|
5014
|
+
interface ResourceIdentityFieldMetadata {
|
|
5015
|
+
name: string;
|
|
5016
|
+
label?: string;
|
|
5017
|
+
presentation?: FieldPresentationConfig;
|
|
5018
|
+
}
|
|
5019
|
+
interface ResourceIdentityContract {
|
|
5020
|
+
keyField?: string;
|
|
5021
|
+
titleField?: string;
|
|
5022
|
+
metadataFields?: string[];
|
|
5023
|
+
displayLabelField?: string;
|
|
5024
|
+
valid: boolean;
|
|
5025
|
+
invalidFields?: string[];
|
|
5026
|
+
message?: string;
|
|
5027
|
+
}
|
|
5028
|
+
interface ResourceIdentityPart {
|
|
5029
|
+
field: string;
|
|
5030
|
+
label?: string;
|
|
5031
|
+
value: unknown;
|
|
5032
|
+
presentation?: FieldPresentationConfig;
|
|
5033
|
+
}
|
|
5034
|
+
interface MaterializedResourceIdentity {
|
|
5035
|
+
key?: ResourceIdentityPart;
|
|
5036
|
+
title?: ResourceIdentityPart;
|
|
5037
|
+
metadata: ResourceIdentityPart[];
|
|
5038
|
+
displayLabel?: string;
|
|
5039
|
+
}
|
|
5040
|
+
declare function normalizeResourceIdentityContract(value: unknown): ResourceIdentityContract | null;
|
|
5041
|
+
declare function materializeResourceIdentity(contract: ResourceIdentityContract | null | undefined, record: Record<string, unknown> | null | undefined, fields?: readonly ResourceIdentityFieldMetadata[]): MaterializedResourceIdentity | null;
|
|
5042
|
+
|
|
4743
5043
|
/**
|
|
4744
5044
|
* Interface para configuração de endpoints personalizados.
|
|
4745
5045
|
*
|
|
@@ -4801,6 +5101,9 @@ interface OptionSourceRequestOptions<ID = string | number> extends CrudOperation
|
|
|
4801
5101
|
sortKey?: string;
|
|
4802
5102
|
filters?: LookupFilterRequest[];
|
|
4803
5103
|
}
|
|
5104
|
+
interface OptionSourceByIdsRequestOptions extends CrudOperationOptions {
|
|
5105
|
+
filter?: Record<string, unknown> | null;
|
|
5106
|
+
}
|
|
4804
5107
|
interface BatchDeleteProgress<ID = string | number> {
|
|
4805
5108
|
id: ID;
|
|
4806
5109
|
success: boolean;
|
|
@@ -4857,6 +5160,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4857
5160
|
private schemaCacheReady?;
|
|
4858
5161
|
private _lastResourceMeta;
|
|
4859
5162
|
private _lastResourceCapabilityDigest;
|
|
5163
|
+
private _lastResourceIdentity;
|
|
4860
5164
|
private _lastSchemaInfo;
|
|
4861
5165
|
/**
|
|
4862
5166
|
* Cria a instância do serviço genérico.
|
|
@@ -4932,6 +5236,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4932
5236
|
/** Retorna o campo identificador do recurso (ex.: 'id', 'codigo'), quando derivado do schema. */
|
|
4933
5237
|
getResourceIdField(): string | undefined;
|
|
4934
5238
|
getResourceCapabilityDigest(): ResourceCapabilityDigest | null;
|
|
5239
|
+
/** Returns the canonical structured record identity from x-ui.resource.identity. */
|
|
5240
|
+
getResourceIdentity(): ResourceIdentityContract | null;
|
|
4935
5241
|
/** Retorna o último schemaId e hash conhecidos após getSchema()/getFilteredSchema(). */
|
|
4936
5242
|
getLastSchemaInfo(): {
|
|
4937
5243
|
schemaId?: string;
|
|
@@ -5116,7 +5422,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
5116
5422
|
/** OPTIONS: GET /options/by-ids */
|
|
5117
5423
|
getOptionsByIds(ids: ID[], options?: CrudOperationOptions): Observable<OptionDTO<ID>[]>;
|
|
5118
5424
|
/** OPTION SOURCES: GET /option-sources/{sourceKey}/options/by-ids */
|
|
5119
|
-
getOptionSourceOptionsByIds(sourceKey: string, ids: Array<string | number>, options?:
|
|
5425
|
+
getOptionSourceOptionsByIds(sourceKey: string, ids: Array<string | number>, options?: OptionSourceByIdsRequestOptions): Observable<OptionDTO<any>[]>;
|
|
5120
5426
|
/** CURSOR: POST /filter/cursor */
|
|
5121
5427
|
filterByCursor(criteria: any, cursorReq?: CursorRequest, options?: CrudOperationOptions): Observable<CursorPage<T>>;
|
|
5122
5428
|
/** LOCATE: POST /locate */
|
|
@@ -5373,6 +5679,9 @@ declare class TableConfigService {
|
|
|
5373
5679
|
declare function buildBaseColumnFromDef(def: FieldDefinition): ColumnDefinition;
|
|
5374
5680
|
declare function applyLocalCustomizations$1(baseCol: ColumnDefinition, localCol: ColumnDefinition): ColumnDefinition;
|
|
5375
5681
|
declare function reconcileTableConfig(layout: TableConfigV2, serverDefs: FieldDefinition[]): TableConfigV2;
|
|
5682
|
+
declare function resolveColumnTypeFromFieldDefinition(def: FieldDefinition, fallback?: ColumnDefinition['type']): ColumnDefinition['type'] | undefined;
|
|
5683
|
+
declare function resolveTextMaskFormatFromFieldDefinition(def: FieldDefinition): string | undefined;
|
|
5684
|
+
declare function resolveTextMaskFormat(value: unknown): string | undefined;
|
|
5376
5685
|
|
|
5377
5686
|
interface ConfigStorage {
|
|
5378
5687
|
loadConfig<T>(key: string): T | null;
|
|
@@ -8594,6 +8903,13 @@ declare class ResourceDiscoveryService {
|
|
|
8594
8903
|
resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
|
|
8595
8904
|
private resolveApiOrigin;
|
|
8596
8905
|
private resolveApiBaseUrl;
|
|
8906
|
+
private resolveTrustedAbsoluteHref;
|
|
8907
|
+
private isTrustedOrigin;
|
|
8908
|
+
private getTrustedOrigins;
|
|
8909
|
+
private normalizeOrigin;
|
|
8910
|
+
private isProxyableApiPath;
|
|
8911
|
+
private normalizePathPrefix;
|
|
8912
|
+
private isAbsoluteHttpUrl;
|
|
8597
8913
|
private resolveApiBaseHref;
|
|
8598
8914
|
private resolveEndpointEntry;
|
|
8599
8915
|
private getRuntimeOrigin;
|
|
@@ -9134,6 +9450,133 @@ declare class DomainRuleService {
|
|
|
9134
9450
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
|
|
9135
9451
|
}
|
|
9136
9452
|
|
|
9453
|
+
interface EnterpriseRuntimeUser {
|
|
9454
|
+
userId: string;
|
|
9455
|
+
displayName?: string | null;
|
|
9456
|
+
resolvedFromServerPrincipal?: boolean;
|
|
9457
|
+
}
|
|
9458
|
+
interface EnterpriseRuntimeTenant {
|
|
9459
|
+
tenantId: string;
|
|
9460
|
+
label?: string | null;
|
|
9461
|
+
active?: boolean;
|
|
9462
|
+
}
|
|
9463
|
+
interface EnterpriseRuntimeTenantsResponse {
|
|
9464
|
+
schemaVersion: string;
|
|
9465
|
+
activeTenant?: EnterpriseRuntimeTenant | null;
|
|
9466
|
+
tenants?: EnterpriseRuntimeTenant[];
|
|
9467
|
+
capabilities?: string[];
|
|
9468
|
+
resolvedAt?: string | null;
|
|
9469
|
+
}
|
|
9470
|
+
interface EnterpriseRuntimeContext {
|
|
9471
|
+
schemaVersion: string;
|
|
9472
|
+
user: EnterpriseRuntimeUser;
|
|
9473
|
+
activeTenant: EnterpriseRuntimeTenant;
|
|
9474
|
+
environment?: string | null;
|
|
9475
|
+
locale?: string | null;
|
|
9476
|
+
timezone?: string | null;
|
|
9477
|
+
activeProfileId?: string | null;
|
|
9478
|
+
activeModuleKey?: string | null;
|
|
9479
|
+
/**
|
|
9480
|
+
* Host-resolved security authorities usable by metadata-driven UX policies.
|
|
9481
|
+
* Do not infer these from `capabilities` unless the host/backend explicitly
|
|
9482
|
+
* publishes that shared vocabulary.
|
|
9483
|
+
*/
|
|
9484
|
+
authorities?: string[];
|
|
9485
|
+
capabilities?: string[];
|
|
9486
|
+
resolvedAt?: string | null;
|
|
9487
|
+
}
|
|
9488
|
+
interface EnterpriseRuntimeContextSwitchCommand {
|
|
9489
|
+
targetTenantId?: string | null;
|
|
9490
|
+
targetProfileId?: string | null;
|
|
9491
|
+
targetModuleKey?: string | null;
|
|
9492
|
+
locale?: string | null;
|
|
9493
|
+
timezone?: string | null;
|
|
9494
|
+
reason?: string | null;
|
|
9495
|
+
}
|
|
9496
|
+
interface EnterpriseRuntimeContextSwitchResponse {
|
|
9497
|
+
schemaVersion: string;
|
|
9498
|
+
accepted: boolean;
|
|
9499
|
+
message?: string | null;
|
|
9500
|
+
effectiveContext?: EnterpriseRuntimeContext | null;
|
|
9501
|
+
propagationHeaders?: Record<string, string>;
|
|
9502
|
+
capabilities?: string[];
|
|
9503
|
+
resolvedAt?: string | null;
|
|
9504
|
+
}
|
|
9505
|
+
interface EnterpriseRuntimeNavigationNode {
|
|
9506
|
+
id: string;
|
|
9507
|
+
label?: string | null;
|
|
9508
|
+
type?: string | null;
|
|
9509
|
+
href?: string | null;
|
|
9510
|
+
route?: string | null;
|
|
9511
|
+
moduleKey?: string | null;
|
|
9512
|
+
resourceKey?: string | null;
|
|
9513
|
+
surfaceRef?: string | null;
|
|
9514
|
+
actionRef?: string | null;
|
|
9515
|
+
capabilityRef?: string | null;
|
|
9516
|
+
children?: EnterpriseRuntimeNavigationNode[];
|
|
9517
|
+
}
|
|
9518
|
+
interface EnterpriseRuntimeNavigationResponse {
|
|
9519
|
+
schemaVersion: string;
|
|
9520
|
+
nodes?: EnterpriseRuntimeNavigationNode[];
|
|
9521
|
+
capabilities?: string[];
|
|
9522
|
+
resolvedAt?: string | null;
|
|
9523
|
+
}
|
|
9524
|
+
interface EnterpriseRuntimeSecurityEvent {
|
|
9525
|
+
eventRef?: string | null;
|
|
9526
|
+
eventType?: string | null;
|
|
9527
|
+
severity?: string | null;
|
|
9528
|
+
summary?: string | null;
|
|
9529
|
+
tenantId?: string | null;
|
|
9530
|
+
environment?: string | null;
|
|
9531
|
+
occurredAt?: string | null;
|
|
9532
|
+
metadata?: Record<string, string>;
|
|
9533
|
+
}
|
|
9534
|
+
interface EnterpriseRuntimeSecurityEventsResponse {
|
|
9535
|
+
schemaVersion: string;
|
|
9536
|
+
events?: EnterpriseRuntimeSecurityEvent[];
|
|
9537
|
+
capabilities?: string[];
|
|
9538
|
+
resolvedAt?: string | null;
|
|
9539
|
+
}
|
|
9540
|
+
interface EnterpriseRuntimeContextHeaders {
|
|
9541
|
+
'X-Tenant-ID'?: string;
|
|
9542
|
+
'X-User-ID'?: string;
|
|
9543
|
+
'X-Env'?: string;
|
|
9544
|
+
'Accept-Language'?: string;
|
|
9545
|
+
'X-Timezone'?: string;
|
|
9546
|
+
'X-Praxis-Profile-ID'?: string;
|
|
9547
|
+
'X-Praxis-Module-Key'?: string;
|
|
9548
|
+
}
|
|
9549
|
+
|
|
9550
|
+
type RuntimeHeaderMap = Record<string, string | undefined>;
|
|
9551
|
+
declare class EnterpriseRuntimeContextService {
|
|
9552
|
+
private readonly http;
|
|
9553
|
+
private readonly apiUrl;
|
|
9554
|
+
private readonly options;
|
|
9555
|
+
private readonly contextSubject;
|
|
9556
|
+
private loadPromise;
|
|
9557
|
+
readonly contextChanges$: Observable<EnterpriseRuntimeContext | null>;
|
|
9558
|
+
get snapshot(): EnterpriseRuntimeContext | null;
|
|
9559
|
+
ready(): Promise<EnterpriseRuntimeContext | null>;
|
|
9560
|
+
refresh(): Promise<EnterpriseRuntimeContext | null>;
|
|
9561
|
+
tenants(): Promise<EnterpriseRuntimeTenantsResponse>;
|
|
9562
|
+
navigation(): Promise<EnterpriseRuntimeNavigationResponse>;
|
|
9563
|
+
securityEvents(): Promise<EnterpriseRuntimeSecurityEventsResponse>;
|
|
9564
|
+
switchContext(command: EnterpriseRuntimeContextSwitchCommand): Promise<EnterpriseRuntimeContextSwitchResponse>;
|
|
9565
|
+
headers(fallback?: RuntimeHeaderMap): EnterpriseRuntimeContextHeaders;
|
|
9566
|
+
private load;
|
|
9567
|
+
private getRuntimeSurface;
|
|
9568
|
+
private endpoint;
|
|
9569
|
+
private configuredEndpoint;
|
|
9570
|
+
private runtimeRoot;
|
|
9571
|
+
private surfacePath;
|
|
9572
|
+
private requestHeaders;
|
|
9573
|
+
private globalFetchHeaders;
|
|
9574
|
+
private headersFromSnapshot;
|
|
9575
|
+
private normalizeHeaders;
|
|
9576
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnterpriseRuntimeContextService, never>;
|
|
9577
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnterpriseRuntimeContextService>;
|
|
9578
|
+
}
|
|
9579
|
+
|
|
9137
9580
|
type PraxisRuntimeComponentObservationSchemaVersion = 'praxis-runtime-component-observation.v1';
|
|
9138
9581
|
type PraxisRuntimeComponentObservationClaimKind = 'component' | 'manifest' | 'resource' | 'schemaField' | 'selection' | 'operation' | 'surface' | 'action' | 'stateDigest' | 'dataDigest';
|
|
9139
9582
|
interface PraxisRuntimeComponentObservationEnvelope {
|
|
@@ -9293,6 +9736,85 @@ declare class ResourceSurfaceOpenAdapterService {
|
|
|
9293
9736
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
|
|
9294
9737
|
}
|
|
9295
9738
|
|
|
9739
|
+
interface SurfaceOutletRegistration {
|
|
9740
|
+
resourceKey: string;
|
|
9741
|
+
surfaceId: string;
|
|
9742
|
+
priority?: number;
|
|
9743
|
+
activate: (payload: SurfaceOpenPayload, context?: GlobalActionContext) => boolean | Promise<boolean>;
|
|
9744
|
+
}
|
|
9745
|
+
declare class SurfaceOutletRegistryService {
|
|
9746
|
+
private readonly registrations;
|
|
9747
|
+
register(registration: SurfaceOutletRegistration): () => void;
|
|
9748
|
+
tryActivate(payload: SurfaceOpenPayload, context?: GlobalActionContext): Promise<boolean>;
|
|
9749
|
+
private key;
|
|
9750
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceOutletRegistryService, never>;
|
|
9751
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SurfaceOutletRegistryService>;
|
|
9752
|
+
}
|
|
9753
|
+
|
|
9754
|
+
type RelatedResourceResolutionState = 'idle' | 'resolving' | 'loading' | 'ready' | 'empty' | 'permission-limited' | 'not-found' | 'error';
|
|
9755
|
+
interface RelatedResourceQueryContext {
|
|
9756
|
+
filters?: Record<string, unknown> | null;
|
|
9757
|
+
filterExpression?: unknown;
|
|
9758
|
+
sort?: string[] | null;
|
|
9759
|
+
limit?: number | null;
|
|
9760
|
+
page?: {
|
|
9761
|
+
index?: number | null;
|
|
9762
|
+
size?: number | null;
|
|
9763
|
+
} | null;
|
|
9764
|
+
meta?: Record<string, unknown> | null;
|
|
9765
|
+
}
|
|
9766
|
+
interface RelatedResourceSurfaceResolverRequest {
|
|
9767
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
9768
|
+
parentRecord?: Record<string, unknown> | null;
|
|
9769
|
+
parentResourceId?: string | number | null;
|
|
9770
|
+
parentResourcePath?: string | null;
|
|
9771
|
+
presentation?: SurfacePresentation;
|
|
9772
|
+
title?: string | null;
|
|
9773
|
+
subtitle?: string | null;
|
|
9774
|
+
icon?: string | null;
|
|
9775
|
+
tableId?: string | null;
|
|
9776
|
+
tableConfig?: Record<string, unknown> | null;
|
|
9777
|
+
emptyState?: Record<string, unknown> | null;
|
|
9778
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
9779
|
+
apiEndpointKey?: ApiEndpoint | null;
|
|
9780
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
9781
|
+
}
|
|
9782
|
+
interface RelatedResourceSurfaceResolution {
|
|
9783
|
+
state: RelatedResourceResolutionState;
|
|
9784
|
+
reason?: string;
|
|
9785
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
9786
|
+
relatedResource?: RelatedResourceSurface | null;
|
|
9787
|
+
parentResourceId?: string | number | null;
|
|
9788
|
+
childResourcePath?: string | null;
|
|
9789
|
+
childResourceKey?: string | null;
|
|
9790
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
9791
|
+
payload?: SurfaceOpenPayload;
|
|
9792
|
+
}
|
|
9793
|
+
declare class RelatedResourceSurfaceResolverService {
|
|
9794
|
+
private readonly i18n;
|
|
9795
|
+
resolve(request: RelatedResourceSurfaceResolverRequest | null | undefined): RelatedResourceSurfaceResolution;
|
|
9796
|
+
state(state: RelatedResourceResolutionState, reason?: string): RelatedResourceSurfaceResolution;
|
|
9797
|
+
private buildPayload;
|
|
9798
|
+
private buildTableConfig;
|
|
9799
|
+
private buildRelatedEmptyState;
|
|
9800
|
+
private objectValue;
|
|
9801
|
+
private buildQueryContext;
|
|
9802
|
+
private resolveParentResourceId;
|
|
9803
|
+
private readPath;
|
|
9804
|
+
private isCompleteRelatedResource;
|
|
9805
|
+
private hasReadOperation;
|
|
9806
|
+
private buildStableTableId;
|
|
9807
|
+
private normalizeResourcePath;
|
|
9808
|
+
private sanitizeStableId;
|
|
9809
|
+
private humanizeResourceKey;
|
|
9810
|
+
private t;
|
|
9811
|
+
private interpolate;
|
|
9812
|
+
private trim;
|
|
9813
|
+
private clone;
|
|
9814
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RelatedResourceSurfaceResolverService, never>;
|
|
9815
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RelatedResourceSurfaceResolverService>;
|
|
9816
|
+
}
|
|
9817
|
+
|
|
9296
9818
|
type SurfaceOpenMaterializationContext = {
|
|
9297
9819
|
payload?: unknown;
|
|
9298
9820
|
runtime?: unknown;
|
|
@@ -9301,21 +9823,6 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9301
9823
|
private readonly discovery;
|
|
9302
9824
|
materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
|
|
9303
9825
|
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
9826
|
private shouldMaterializeItemReadProjection;
|
|
9320
9827
|
private resolveResponseCardinality;
|
|
9321
9828
|
private shouldMaterializeAsCollection;
|
|
@@ -9323,9 +9830,26 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9323
9830
|
private resolveResourceId;
|
|
9324
9831
|
private resolveItemReadUrl;
|
|
9325
9832
|
private resolveSchemaFields;
|
|
9833
|
+
private materializeArrayProjection;
|
|
9834
|
+
private materializeArrayAsCrud;
|
|
9326
9835
|
private materializeArrayAsTable;
|
|
9836
|
+
private ensureCollectionTableSelectionContract;
|
|
9837
|
+
private ensureTableSelectionConfig;
|
|
9327
9838
|
private projectTableInputs;
|
|
9328
9839
|
private buildLocalTableConfig;
|
|
9840
|
+
private objectRecord;
|
|
9841
|
+
private buildRelatedCrudActions;
|
|
9842
|
+
private buildRelatedCommandFormConfig;
|
|
9843
|
+
private buildExplicitRelatedActionForm;
|
|
9844
|
+
private buildRelatedCommandLayoutPolicy;
|
|
9845
|
+
private buildSchemaUrl;
|
|
9846
|
+
private hasRelatedChildWriteOperations;
|
|
9847
|
+
private resolveRelatedChildOperations;
|
|
9848
|
+
private resolveRelatedResource;
|
|
9849
|
+
private resolveRelatedSelectionKeyField;
|
|
9850
|
+
private resolveSurfacePath;
|
|
9851
|
+
private normalizeResourcePath;
|
|
9852
|
+
private resolveRelatedActionNoun;
|
|
9329
9853
|
private inferColumnsFromData;
|
|
9330
9854
|
private extractCollectionData;
|
|
9331
9855
|
private mergeMaterializationContext;
|
|
@@ -9363,6 +9887,7 @@ interface ResolvedCrudOperation {
|
|
|
9363
9887
|
interface ResolveCrudOperationRequest {
|
|
9364
9888
|
operation: ResourceCrudOperationId;
|
|
9365
9889
|
resourcePath: string;
|
|
9890
|
+
schemaResourcePath?: string | null;
|
|
9366
9891
|
resourceId?: string | number | null;
|
|
9367
9892
|
explicit?: ExplicitCrudResolutionContract | null;
|
|
9368
9893
|
}
|
|
@@ -9380,6 +9905,7 @@ declare class CrudOperationResolutionService {
|
|
|
9380
9905
|
private buildExplicitResolution;
|
|
9381
9906
|
private buildSurfaceResolution;
|
|
9382
9907
|
private buildConventionResolution;
|
|
9908
|
+
private addConventionSurfaceDiagnostic;
|
|
9383
9909
|
private resolveCanonicalSchemaUrl;
|
|
9384
9910
|
private buildCanonicalSchemaParams;
|
|
9385
9911
|
private resolveConventionSubmitUrl;
|
|
@@ -9400,6 +9926,7 @@ declare class CrudOperationResolutionService {
|
|
|
9400
9926
|
private normalizeResourcePath;
|
|
9401
9927
|
private resolveSchemaResourcePath;
|
|
9402
9928
|
private resolveCanonicalResourcePath;
|
|
9929
|
+
private resolveCanonicalSchemaResourcePath;
|
|
9403
9930
|
private toDiscoveryOptions;
|
|
9404
9931
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudOperationResolutionService, never>;
|
|
9405
9932
|
static ɵprov: i0.ɵɵInjectableDeclaration<CrudOperationResolutionService>;
|
|
@@ -9982,6 +10509,62 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
|
|
|
9982
10509
|
declare function provideRemoteGlobalConfig(url: string): Provider;
|
|
9983
10510
|
declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
|
|
9984
10511
|
|
|
10512
|
+
interface PraxisEnterpriseRuntimeEndpoints {
|
|
10513
|
+
/**
|
|
10514
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10515
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10516
|
+
*/
|
|
10517
|
+
context?: string;
|
|
10518
|
+
/**
|
|
10519
|
+
* Absolute or relative endpoint for the host-owned tenant catalog.
|
|
10520
|
+
* Defaults to the same runtime root as `context`, ending in `/tenants`.
|
|
10521
|
+
*/
|
|
10522
|
+
tenants?: string;
|
|
10523
|
+
/**
|
|
10524
|
+
* Absolute or relative endpoint for host-owned navigation.
|
|
10525
|
+
* Defaults to the same runtime root as `context`, ending in `/navigation`.
|
|
10526
|
+
*/
|
|
10527
|
+
navigation?: string;
|
|
10528
|
+
/**
|
|
10529
|
+
* Absolute or relative endpoint for host-owned security events.
|
|
10530
|
+
* Defaults to the same runtime root as `context`, ending in `/security-events`.
|
|
10531
|
+
*/
|
|
10532
|
+
securityEvents?: string;
|
|
10533
|
+
}
|
|
10534
|
+
interface PraxisEnterpriseRuntimeContextOptions {
|
|
10535
|
+
/**
|
|
10536
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10537
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10538
|
+
* Prefer `endpoints.context` for new integrations.
|
|
10539
|
+
*/
|
|
10540
|
+
endpoint?: string;
|
|
10541
|
+
/**
|
|
10542
|
+
* Host-owned enterprise runtime surfaces. When omitted, URLs are derived from
|
|
10543
|
+
* the configured `endpoint` or from the canonical `/praxis/runtime` root.
|
|
10544
|
+
*/
|
|
10545
|
+
endpoints?: PraxisEnterpriseRuntimeEndpoints;
|
|
10546
|
+
/**
|
|
10547
|
+
* Headers used to resolve the context request. The response remains the source
|
|
10548
|
+
* of truth for tenant/user/environment headers after bootstrap.
|
|
10549
|
+
*/
|
|
10550
|
+
headersFactory?: () => Record<string, string | undefined>;
|
|
10551
|
+
/**
|
|
10552
|
+
* Include `globalThis.PAX_FETCH_HEADERS()` in the request headers when present.
|
|
10553
|
+
*/
|
|
10554
|
+
includeGlobalFetchHeaders?: boolean;
|
|
10555
|
+
/**
|
|
10556
|
+
* Block Angular bootstrap until the context has been resolved.
|
|
10557
|
+
*/
|
|
10558
|
+
blocking?: boolean;
|
|
10559
|
+
/**
|
|
10560
|
+
* Whether bootstrap should fail when the runtime context request fails.
|
|
10561
|
+
*/
|
|
10562
|
+
errorPolicy?: 'fail' | 'ignore';
|
|
10563
|
+
}
|
|
10564
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS: InjectionToken<PraxisEnterpriseRuntimeContextOptions>;
|
|
10565
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY: InjectionToken<() => Promise<void>>;
|
|
10566
|
+
declare function providePraxisEnterpriseRuntimeContext(options?: PraxisEnterpriseRuntimeContextOptions): Provider[];
|
|
10567
|
+
|
|
9985
10568
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
9986
10569
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
9987
10570
|
|
|
@@ -10143,6 +10726,26 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
10143
10726
|
|
|
10144
10727
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
10145
10728
|
|
|
10729
|
+
interface TableDetailInlineRendererContext {
|
|
10730
|
+
node: TableDetailRefNode;
|
|
10731
|
+
row: unknown;
|
|
10732
|
+
rowIndex: number;
|
|
10733
|
+
detailContext?: Record<string, unknown>;
|
|
10734
|
+
}
|
|
10735
|
+
interface TableDetailInlineRendererDefinition {
|
|
10736
|
+
nodeType: TableDetailRefNode['type'];
|
|
10737
|
+
renderMode: 'inline';
|
|
10738
|
+
component: Type<unknown>;
|
|
10739
|
+
buildInputs: (context: TableDetailInlineRendererContext) => Record<string, unknown> | null;
|
|
10740
|
+
}
|
|
10741
|
+
interface TableDetailInlineNodeResolverDefinition {
|
|
10742
|
+
nodeType: TableDetailRefNode['type'];
|
|
10743
|
+
renderMode: 'inline';
|
|
10744
|
+
resolveNode: (context: TableDetailInlineRendererContext) => TableDetailRefNode | null;
|
|
10745
|
+
}
|
|
10746
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_RENDERERS: InjectionToken<readonly TableDetailInlineRendererDefinition[]>;
|
|
10747
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS: InjectionToken<readonly TableDetailInlineNodeResolverDefinition[]>;
|
|
10748
|
+
|
|
10146
10749
|
declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
|
|
10147
10750
|
|
|
10148
10751
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
@@ -10778,7 +11381,7 @@ interface EditorialFormTemplateBuildOptions {
|
|
|
10778
11381
|
* - collections are replaced, not concatenated, unless omitted in overrides
|
|
10779
11382
|
* - template provenance is recorded under config.metadata.template
|
|
10780
11383
|
*/
|
|
10781
|
-
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions):
|
|
11384
|
+
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfigWithSections;
|
|
10782
11385
|
|
|
10783
11386
|
interface FormFieldLayoutItem {
|
|
10784
11387
|
kind: 'field';
|
|
@@ -10861,6 +11464,10 @@ interface FormRow {
|
|
|
10861
11464
|
interface FormSection {
|
|
10862
11465
|
id: string;
|
|
10863
11466
|
title?: string;
|
|
11467
|
+
/** Optional host/runtime CSS classes applied to the section container. */
|
|
11468
|
+
className?: string;
|
|
11469
|
+
/** Optional semantic presentation role used by compact/read-only layouts. */
|
|
11470
|
+
presentationRole?: string;
|
|
10864
11471
|
/** Visual appearance preset for the section container/header. */
|
|
10865
11472
|
appearance?: 'card' | 'plain' | 'step';
|
|
10866
11473
|
/** Optional compact step badge/kicker displayed before the title. */
|
|
@@ -10982,9 +11589,27 @@ interface FormSectionHeaderConfig {
|
|
|
10982
11589
|
*/
|
|
10983
11590
|
initialsMaxLength?: number;
|
|
10984
11591
|
}
|
|
11592
|
+
/**
|
|
11593
|
+
* Presentation preferences applied when a dynamic form renders semantic values
|
|
11594
|
+
* instead of editable controls.
|
|
11595
|
+
*/
|
|
11596
|
+
interface FormPresentationConfig {
|
|
11597
|
+
labelPosition?: 'above' | 'left';
|
|
11598
|
+
labelFontSize?: number | null;
|
|
11599
|
+
valueFontSize?: number | null;
|
|
11600
|
+
compact?: boolean;
|
|
11601
|
+
density?: 'comfortable' | 'cozy' | 'compact';
|
|
11602
|
+
labelWidth?: number | null;
|
|
11603
|
+
labelAlign?: 'start' | 'center' | 'end';
|
|
11604
|
+
valueAlign?: 'start' | 'center' | 'end';
|
|
11605
|
+
}
|
|
10985
11606
|
interface FormConfig {
|
|
10986
|
-
/**
|
|
10987
|
-
|
|
11607
|
+
/**
|
|
11608
|
+
* Optional manual layout sections.
|
|
11609
|
+
* When omitted, schema-driven runtimes may infer sections from field metadata
|
|
11610
|
+
* instead of forcing hosts to declare an empty manual layout.
|
|
11611
|
+
*/
|
|
11612
|
+
sections?: FormSection[];
|
|
10988
11613
|
/** Editorial or semantic rich content rendered before the form sections/actions. */
|
|
10989
11614
|
formBlocksBefore?: RichContentDocument | null;
|
|
10990
11615
|
/** Editorial or semantic rich content rendered after the form sections and before the primary action area. */
|
|
@@ -11023,7 +11648,18 @@ interface FormConfig {
|
|
|
11023
11648
|
* Útil para padronizar mensagens didáticas no host.
|
|
11024
11649
|
*/
|
|
11025
11650
|
hints?: FormModeHints;
|
|
11651
|
+
/**
|
|
11652
|
+
* Presentation policy for semantic field help (`hint`/`helpText`).
|
|
11653
|
+
* This controls visual density only; validation errors remain inline.
|
|
11654
|
+
*/
|
|
11655
|
+
helpPresentation?: FormHelpPresentationConfig;
|
|
11656
|
+
/** Presentation preferences for read-only and presentation-mode forms. */
|
|
11657
|
+
presentation?: FormPresentationConfig;
|
|
11658
|
+
}
|
|
11659
|
+
interface FormConfigWithSections extends FormConfig {
|
|
11660
|
+
sections: FormSection[];
|
|
11026
11661
|
}
|
|
11662
|
+
declare function withFormConfigSections(config: FormConfig): FormConfigWithSections;
|
|
11027
11663
|
interface FormModeHints {
|
|
11028
11664
|
dataModes: {
|
|
11029
11665
|
create: string;
|
|
@@ -11043,9 +11679,46 @@ interface FormConfigMetadata {
|
|
|
11043
11679
|
/** Last update timestamp */
|
|
11044
11680
|
lastUpdated?: Date;
|
|
11045
11681
|
/** Configuration source */
|
|
11046
|
-
source?: 'local' | 'server' | 'default';
|
|
11682
|
+
source?: 'local' | 'server' | 'default' | 'schema';
|
|
11683
|
+
/**
|
|
11684
|
+
* Layout preset used when this configuration was generated from metadata/schema.
|
|
11685
|
+
* This is provenance for generated configs; it must not be interpreted as a
|
|
11686
|
+
* command to reprocess authored or persisted layouts.
|
|
11687
|
+
*/
|
|
11688
|
+
generatedLayoutPreset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
11689
|
+
/** Runtime policy used to materialize schema-driven layout, when applicable. */
|
|
11690
|
+
schemaLayoutPolicy?: {
|
|
11691
|
+
source: 'authored' | 'schema';
|
|
11692
|
+
preset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
11693
|
+
intent?: 'detail' | 'command';
|
|
11694
|
+
lifecycle?: 'initial' | 'live';
|
|
11695
|
+
persistence?: 'transient' | 'authorable';
|
|
11696
|
+
detachBehavior?: 'none' | 'explicit';
|
|
11697
|
+
schemaOperation?: 'detail' | 'create' | 'update' | 'view';
|
|
11698
|
+
schemaType?: 'request' | 'response';
|
|
11699
|
+
detailSummary?: {
|
|
11700
|
+
includeFields?: readonly string[];
|
|
11701
|
+
excludeFields?: readonly string[];
|
|
11702
|
+
includeGroups?: readonly string[];
|
|
11703
|
+
excludeGroups?: readonly string[];
|
|
11704
|
+
includeRoles?: readonly string[];
|
|
11705
|
+
excludeRoles?: readonly string[];
|
|
11706
|
+
maxFields?: number;
|
|
11707
|
+
fieldPriority?: Record<string, number>;
|
|
11708
|
+
groupPriority?: Record<string, number>;
|
|
11709
|
+
columns?: number;
|
|
11710
|
+
responsiveColumns?: Partial<Record<'xs' | 'sm' | 'md' | 'lg' | 'xl', number>>;
|
|
11711
|
+
widthPrecedence?: 'schema' | 'summary';
|
|
11712
|
+
};
|
|
11713
|
+
};
|
|
11047
11714
|
/** Server data hash for change detection */
|
|
11048
11715
|
serverHash?: string;
|
|
11716
|
+
/**
|
|
11717
|
+
* Host-resolved security authorities used only for fieldAccess UX
|
|
11718
|
+
* materialization. Do not populate this from runtime capabilities unless the
|
|
11719
|
+
* host/backend explicitly declares that both vocabularies are shared.
|
|
11720
|
+
*/
|
|
11721
|
+
fieldAccessAuthorities?: string[];
|
|
11049
11722
|
/**
|
|
11050
11723
|
* Server schema identity used to build this configuration.
|
|
11051
11724
|
* Format comes from buildSchemaId(path|operation|schemaType|internal|tenant|locale|origin).
|
|
@@ -11233,7 +11906,7 @@ interface FormActionConfirmationEvent {
|
|
|
11233
11906
|
confirmed: boolean;
|
|
11234
11907
|
}
|
|
11235
11908
|
|
|
11236
|
-
type RulePropertyType = 'string' | 'boolean' | 'object' | 'enum' | 'number';
|
|
11909
|
+
type RulePropertyType = 'string' | 'boolean' | 'object' | 'array' | 'enum' | 'number';
|
|
11237
11910
|
interface RulePropertyDefinition {
|
|
11238
11911
|
name: string;
|
|
11239
11912
|
type: RulePropertyType;
|
|
@@ -12173,6 +12846,35 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
|
|
|
12173
12846
|
status?: PersistedPageConfig['status'];
|
|
12174
12847
|
}): PersistedPageConfig;
|
|
12175
12848
|
|
|
12849
|
+
type PraxisResourceEventKind = 'row-click' | 'row-double-click' | 'selection-change' | 'row-action' | 'toolbar-action' | 'bulk-action' | 'export-action' | 'surface-open' | 'widget-event' | 'custom';
|
|
12850
|
+
interface PraxisResourceEvent<TPayload = unknown> {
|
|
12851
|
+
/** Canonical resource-level intent represented by the original component output. */
|
|
12852
|
+
kind: PraxisResourceEventKind;
|
|
12853
|
+
/** Component selector/id that originated the event, such as praxis-table. */
|
|
12854
|
+
sourceComponentId: string;
|
|
12855
|
+
/** Legacy/public output that produced this envelope, such as rowClick or toolbarAction. */
|
|
12856
|
+
sourceOutput?: string;
|
|
12857
|
+
/** Lifecycle phase for enterprise orchestration, analytics, auditing, and feedback. */
|
|
12858
|
+
phase?: 'request' | 'success' | 'error' | 'notification';
|
|
12859
|
+
resourcePath?: string | null;
|
|
12860
|
+
resourceKey?: string | null;
|
|
12861
|
+
resourceId?: string | number | null;
|
|
12862
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
12863
|
+
payload: TPayload;
|
|
12864
|
+
context?: Record<string, unknown> | null;
|
|
12865
|
+
}
|
|
12866
|
+
interface PraxisResourceRowClickPayload<TRow = unknown> {
|
|
12867
|
+
row: TRow;
|
|
12868
|
+
index: number;
|
|
12869
|
+
}
|
|
12870
|
+
interface PraxisResourceSelectionPayload<TRow = unknown> {
|
|
12871
|
+
trigger: string;
|
|
12872
|
+
row?: TRow;
|
|
12873
|
+
selectedRows: TRow[];
|
|
12874
|
+
selectedCount: number;
|
|
12875
|
+
tableId?: string;
|
|
12876
|
+
}
|
|
12877
|
+
|
|
12176
12878
|
type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
|
|
12177
12879
|
interface RecordRelatedSurfaceEndpoint {
|
|
12178
12880
|
widget: string;
|
|
@@ -12478,6 +13180,51 @@ declare function mapFieldDefinitionToMetadata(field: FieldDefinition): FieldMeta
|
|
|
12478
13180
|
*/
|
|
12479
13181
|
declare function mapFieldDefinitionsToMetadata(fields: FieldDefinition[]): FieldMetadata[];
|
|
12480
13182
|
|
|
13183
|
+
type DynamicFormLayoutSource = 'authored' | 'schema';
|
|
13184
|
+
type DynamicFormSchemaLayoutPreset = 'default' | 'compactPresentation' | 'groupedCommand';
|
|
13185
|
+
type DynamicFormLayoutIntent = 'detail' | 'command';
|
|
13186
|
+
type DynamicFormLayoutLifecycle = 'initial' | 'live';
|
|
13187
|
+
type DynamicFormLayoutPersistence = 'transient' | 'authorable';
|
|
13188
|
+
type DynamicFormLayoutDetachBehavior = 'none' | 'explicit';
|
|
13189
|
+
type DynamicFormSchemaOperation = 'detail' | 'create' | 'update' | 'view';
|
|
13190
|
+
type DynamicFormSchemaType = 'request' | 'response';
|
|
13191
|
+
type DynamicFormResponsiveBreakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
13192
|
+
type DynamicFormResponsiveColumns = Partial<Record<DynamicFormResponsiveBreakpoint, number>>;
|
|
13193
|
+
type DynamicFormDetailSummaryWidthPrecedence = 'schema' | 'summary';
|
|
13194
|
+
interface DynamicFormDetailSummaryPolicy {
|
|
13195
|
+
includeFields?: readonly string[];
|
|
13196
|
+
excludeFields?: readonly string[];
|
|
13197
|
+
includeGroups?: readonly string[];
|
|
13198
|
+
excludeGroups?: readonly string[];
|
|
13199
|
+
includeRoles?: readonly string[];
|
|
13200
|
+
excludeRoles?: readonly string[];
|
|
13201
|
+
maxFields?: number;
|
|
13202
|
+
fieldPriority?: Record<string, number>;
|
|
13203
|
+
groupPriority?: Record<string, number>;
|
|
13204
|
+
columns?: number;
|
|
13205
|
+
responsiveColumns?: DynamicFormResponsiveColumns;
|
|
13206
|
+
widthPrecedence?: DynamicFormDetailSummaryWidthPrecedence;
|
|
13207
|
+
}
|
|
13208
|
+
interface DynamicFormLayoutPolicy {
|
|
13209
|
+
source: DynamicFormLayoutSource;
|
|
13210
|
+
preset?: DynamicFormSchemaLayoutPreset;
|
|
13211
|
+
intent?: DynamicFormLayoutIntent;
|
|
13212
|
+
lifecycle?: DynamicFormLayoutLifecycle;
|
|
13213
|
+
persistence?: DynamicFormLayoutPersistence;
|
|
13214
|
+
detachBehavior?: DynamicFormLayoutDetachBehavior;
|
|
13215
|
+
schemaOperation?: DynamicFormSchemaOperation;
|
|
13216
|
+
schemaType?: DynamicFormSchemaType;
|
|
13217
|
+
detailSummary?: DynamicFormDetailSummaryPolicy;
|
|
13218
|
+
}
|
|
13219
|
+
interface MaterializeFormLayoutOptions {
|
|
13220
|
+
policy?: DynamicFormLayoutPolicy | null;
|
|
13221
|
+
defaultSectionTitle?: string;
|
|
13222
|
+
presentationRoleMap?: Record<string, string>;
|
|
13223
|
+
includeHidden?: boolean;
|
|
13224
|
+
}
|
|
13225
|
+
declare function materializeFormLayoutFromMetadata(fields: FieldMetadata[], options?: MaterializeFormLayoutOptions): FormConfigWithSections;
|
|
13226
|
+
declare function normalizeLayoutPolicy(policy?: DynamicFormLayoutPolicy | null): Required<Pick<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>> & Omit<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>;
|
|
13227
|
+
|
|
12481
13228
|
/**
|
|
12482
13229
|
* Compose headers including optional API version information.
|
|
12483
13230
|
* If the entry already defines custom headers, they will be preserved.
|
|
@@ -12497,7 +13244,7 @@ type EnsureIdsOptions = {
|
|
|
12497
13244
|
* Garante que todas as sections/rows/columns do FormConfig possuam IDs únicos.
|
|
12498
13245
|
* Retorna um NOVO objeto (sem mutar o original).
|
|
12499
13246
|
*/
|
|
12500
|
-
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions):
|
|
13247
|
+
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions): FormConfigWithSections;
|
|
12501
13248
|
|
|
12502
13249
|
declare function resolveSpan(span?: ColumnSpan): Required<ColumnSpan>;
|
|
12503
13250
|
declare function resolveOffset(offset?: ColumnOffset): Required<ColumnOffset>;
|
|
@@ -12835,7 +13582,7 @@ interface ComponentAuthoringManifest {
|
|
|
12835
13582
|
examples: ManifestExample[];
|
|
12836
13583
|
/**
|
|
12837
13584
|
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12838
|
-
* base, mas precisam expor
|
|
13585
|
+
* base, mas precisam expor semântica granular por componente/controlType.
|
|
12839
13586
|
*/
|
|
12840
13587
|
controlProfiles?: ManifestControlProfile[];
|
|
12841
13588
|
}
|
|
@@ -12994,13 +13741,13 @@ interface ManifestControlProfile {
|
|
|
12994
13741
|
profileId: string;
|
|
12995
13742
|
/** Nome curto usado por ferramentas de authoring. */
|
|
12996
13743
|
title: string;
|
|
12997
|
-
/** Explica a
|
|
13744
|
+
/** Explica a semântica que este perfil adiciona sobre o manifesto base. */
|
|
12998
13745
|
description: string;
|
|
12999
13746
|
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
13000
13747
|
appliesTo: ManifestControlProfileApplicability;
|
|
13001
13748
|
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
13002
13749
|
editableTargets?: ManifestTarget[];
|
|
13003
|
-
/**
|
|
13750
|
+
/** Operações específicas do perfil/controlType. */
|
|
13004
13751
|
operations: ManifestOperation[];
|
|
13005
13752
|
/** Validadores especificos do perfil/controlType. */
|
|
13006
13753
|
validators: ManifestValidator[];
|
|
@@ -13064,7 +13811,7 @@ interface CapabilityCatalog extends AiCapabilityCatalog {
|
|
|
13064
13811
|
}
|
|
13065
13812
|
declare const DYNAMIC_PAGE_AI_CAPABILITIES: CapabilityCatalog;
|
|
13066
13813
|
|
|
13067
|
-
type ComponentContextOptionMode = 'enum' | 'suggested';
|
|
13814
|
+
type ComponentContextOptionMode = 'enum' | 'suggested' | 'expression';
|
|
13068
13815
|
interface ComponentContextOption {
|
|
13069
13816
|
value: string | number;
|
|
13070
13817
|
label?: string;
|
|
@@ -13073,6 +13820,7 @@ interface ComponentContextOption {
|
|
|
13073
13820
|
interface ComponentContextOptionsByPathEntry {
|
|
13074
13821
|
mode: ComponentContextOptionMode;
|
|
13075
13822
|
options: ComponentContextOption[];
|
|
13823
|
+
suggestedRoots?: string[];
|
|
13076
13824
|
}
|
|
13077
13825
|
interface ComponentActionParam {
|
|
13078
13826
|
name: string;
|
|
@@ -13161,6 +13909,7 @@ interface WidgetEventEnvelope {
|
|
|
13161
13909
|
output?: string;
|
|
13162
13910
|
payload?: any;
|
|
13163
13911
|
path?: WidgetEventPathSegment[];
|
|
13912
|
+
resourceEvent?: PraxisResourceEvent;
|
|
13164
13913
|
}
|
|
13165
13914
|
type WidgetResolutionPhase = 'ready' | 'metadata-missing' | 'create-error' | 'validation-error' | 'bind-error';
|
|
13166
13915
|
interface WidgetResolutionDiagnostic {
|
|
@@ -13527,6 +14276,19 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
13527
14276
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetShellComponent, "praxis-widget-shell", never, { "shell": { "alias": "shell"; "required": false; }; "context": { "alias": "context"; "required": false; }; "dragSurfaceEnabled": { "alias": "dragSurfaceEnabled"; "required": false; }; "dragSurfaceLabel": { "alias": "dragSurfaceLabel"; "required": false; }; }, { "action": "action"; "dragSurfacePointerDown": "dragSurfacePointerDown"; "dragSurfaceKeydown": "dragSurfaceKeydown"; }, ["loader"], ["*"], true, never>;
|
|
13528
14277
|
}
|
|
13529
14278
|
|
|
14279
|
+
declare class PraxisResourceIdentityComponent {
|
|
14280
|
+
identity: MaterializedResourceIdentity | null;
|
|
14281
|
+
emptyTitle: string;
|
|
14282
|
+
density: 'compact' | 'comfortable';
|
|
14283
|
+
showMetadataLabels: boolean;
|
|
14284
|
+
protected title(): string;
|
|
14285
|
+
protected prefix(item: ResourceIdentityPart): string;
|
|
14286
|
+
protected suffix(item: ResourceIdentityPart): string;
|
|
14287
|
+
protected isChip(item: ResourceIdentityPart): boolean;
|
|
14288
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisResourceIdentityComponent, never>;
|
|
14289
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisResourceIdentityComponent, "praxis-resource-identity", never, { "identity": { "alias": "identity"; "required": false; }; "emptyTitle": { "alias": "emptyTitle"; "required": false; }; "density": { "alias": "density"; "required": false; }; "showMetadataLabels": { "alias": "showMetadataLabels"; "required": false; }; }, {}, never, never, true, never>;
|
|
14290
|
+
}
|
|
14291
|
+
|
|
13530
14292
|
declare const BUILTIN_PAGE_LAYOUT_PRESETS: Record<string, WidgetPageLayoutPresetDefinition>;
|
|
13531
14293
|
declare const BUILTIN_PAGE_THEME_PRESETS: Record<string, WidgetPageThemePresetDefinition>;
|
|
13532
14294
|
|
|
@@ -14065,6 +14827,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14065
14827
|
private enrichRuntimeWidgetInputs;
|
|
14066
14828
|
private buildRichContentHostCapabilities;
|
|
14067
14829
|
private dispatchRichContentAction;
|
|
14830
|
+
private emitRichContentCustomAction;
|
|
14068
14831
|
private isRichContentActionAvailable;
|
|
14069
14832
|
private hasRichContentCapability;
|
|
14070
14833
|
private resolveComponentBindingPath;
|
|
@@ -14250,6 +15013,9 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14250
15013
|
*/
|
|
14251
15014
|
renderTitleInsideBody: boolean;
|
|
14252
15015
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
15016
|
+
rowClick: EventEmitter<unknown>;
|
|
15017
|
+
selectionChange: EventEmitter<unknown>;
|
|
15018
|
+
resourceEvent: EventEmitter<PraxisResourceEvent<unknown>>;
|
|
14253
15019
|
private beforeWidgetLoader?;
|
|
14254
15020
|
private mainWidgetLoader?;
|
|
14255
15021
|
private afterWidgetLoader?;
|
|
@@ -14267,16 +15033,95 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14267
15033
|
private isRichContentActionAvailable;
|
|
14268
15034
|
private hasRichContentCapability;
|
|
14269
15035
|
onSlotWidgetEvent(ownerWidgetKey: string, event: WidgetEventEnvelope): void;
|
|
15036
|
+
private toResourceEvent;
|
|
15037
|
+
private readRecord;
|
|
15038
|
+
private stringOrNull;
|
|
15039
|
+
private resourceIdOrNull;
|
|
15040
|
+
private toResourceSurface;
|
|
14270
15041
|
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>;
|
|
15042
|
+
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
15043
|
}
|
|
14273
15044
|
|
|
15045
|
+
type RelatedResourceOutletMode = 'inline' | 'open-action';
|
|
15046
|
+
declare class PraxisRelatedResourceOutletComponent {
|
|
15047
|
+
private readonly resolver;
|
|
15048
|
+
private readonly materializer;
|
|
15049
|
+
private readonly i18n;
|
|
15050
|
+
private readonly injector;
|
|
15051
|
+
private discoverySubscription?;
|
|
15052
|
+
private discoveryRequestKey;
|
|
15053
|
+
private materializationRequestKey;
|
|
15054
|
+
readonly surface: i0.InputSignal<ResourceSurfaceCatalogItem | null>;
|
|
15055
|
+
readonly surfaceId: i0.InputSignal<string | null>;
|
|
15056
|
+
readonly surfaceCatalog: i0.InputSignal<ResourceSurfaceCatalogResponse | null>;
|
|
15057
|
+
readonly discoverySource: i0.InputSignal<ResourceLinkSource | null>;
|
|
15058
|
+
readonly parentLinks: i0.InputSignal<RestApiLinks | RestApiResponse<unknown> | null>;
|
|
15059
|
+
readonly apiEndpointKey: i0.InputSignal<ApiEndpoint | null>;
|
|
15060
|
+
readonly apiUrlEntry: i0.InputSignal<ApiUrlEntry | null>;
|
|
15061
|
+
readonly parentRecord: i0.InputSignal<Record<string, unknown> | null>;
|
|
15062
|
+
readonly parentResourceId: i0.InputSignal<string | number | null>;
|
|
15063
|
+
readonly parentResourcePath: i0.InputSignal<string | null>;
|
|
15064
|
+
readonly presentation: i0.InputSignal<SurfacePresentation>;
|
|
15065
|
+
readonly title: i0.InputSignal<string | null>;
|
|
15066
|
+
readonly subtitle: i0.InputSignal<string | null>;
|
|
15067
|
+
readonly icon: i0.InputSignal<string | null>;
|
|
15068
|
+
readonly tableId: i0.InputSignal<string | null>;
|
|
15069
|
+
readonly tableConfig: i0.InputSignal<Record<string, unknown> | null>;
|
|
15070
|
+
readonly emptyState: i0.InputSignal<Record<string, unknown> | null>;
|
|
15071
|
+
readonly queryContext: i0.InputSignal<RelatedResourceQueryContext | null>;
|
|
15072
|
+
readonly mode: i0.InputSignal<RelatedResourceOutletMode>;
|
|
15073
|
+
readonly state: i0.InputSignal<RelatedResourceResolutionState | null>;
|
|
15074
|
+
readonly stateReason: i0.InputSignal<string | null>;
|
|
15075
|
+
readonly compact: i0.InputSignal<boolean>;
|
|
15076
|
+
readonly strictValidation: i0.InputSignal<boolean>;
|
|
15077
|
+
readonly ownerWidgetKey: i0.InputSignal<string>;
|
|
15078
|
+
readonly surfaceOpen: i0.OutputEmitterRef<SurfaceOpenPayload>;
|
|
15079
|
+
readonly widgetEvent: i0.OutputEmitterRef<WidgetEventEnvelope>;
|
|
15080
|
+
readonly resourceEvent: i0.OutputEmitterRef<PraxisResourceEvent<unknown>>;
|
|
15081
|
+
private readonly discoveredSurface;
|
|
15082
|
+
private readonly discoveryState;
|
|
15083
|
+
private readonly discoveryStateReason;
|
|
15084
|
+
private readonly materializedPayload;
|
|
15085
|
+
readonly resolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
15086
|
+
readonly renderResolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
15087
|
+
readonly isBusy: i0.Signal<boolean>;
|
|
15088
|
+
constructor();
|
|
15089
|
+
openRelated(): void;
|
|
15090
|
+
onWidgetEvent(event: WidgetEventEnvelope): void;
|
|
15091
|
+
stateIcon(): string;
|
|
15092
|
+
stateTitle(): string;
|
|
15093
|
+
stateDescription(): string;
|
|
15094
|
+
t(key: string, fallback: string): string;
|
|
15095
|
+
private defaultTitle;
|
|
15096
|
+
private defaultDescription;
|
|
15097
|
+
private applyCatalogSurface;
|
|
15098
|
+
private resetDiscoveryState;
|
|
15099
|
+
private discoveryOptions;
|
|
15100
|
+
private resolveFallbackSurfaceCatalogHref;
|
|
15101
|
+
private normalizeResourcePath;
|
|
15102
|
+
private buildDiscoveryRequestKey;
|
|
15103
|
+
private buildMaterializationRequestKey;
|
|
15104
|
+
private isPermissionError;
|
|
15105
|
+
private extractResourceEvent;
|
|
15106
|
+
private trim;
|
|
15107
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRelatedResourceOutletComponent, never>;
|
|
15108
|
+
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>;
|
|
15109
|
+
}
|
|
15110
|
+
|
|
15111
|
+
declare const PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA: ComponentDocMeta;
|
|
15112
|
+
declare function providePraxisRelatedResourceOutletMetadata(): Provider;
|
|
15113
|
+
|
|
14274
15114
|
interface EmptyAction {
|
|
14275
15115
|
label: string;
|
|
14276
15116
|
icon?: string;
|
|
14277
15117
|
color?: 'primary' | 'accent' | 'warn' | undefined;
|
|
14278
15118
|
action: () => void;
|
|
14279
15119
|
}
|
|
15120
|
+
type EmptyStateTone = 'neutral' | 'primary' | 'secondary';
|
|
15121
|
+
type EmptyStateVariant = 'card' | 'inline' | 'panel' | 'transparent';
|
|
15122
|
+
type EmptyStateAlignment = 'start' | 'center';
|
|
15123
|
+
type EmptyStateDensity = 'compact' | 'comfortable';
|
|
15124
|
+
type EmptyStateIconContainer = 'none' | 'circle' | 'soft';
|
|
14280
15125
|
declare class EmptyStateCardComponent {
|
|
14281
15126
|
icon: string;
|
|
14282
15127
|
title: string;
|
|
@@ -14284,9 +15129,14 @@ declare class EmptyStateCardComponent {
|
|
|
14284
15129
|
primaryAction?: EmptyAction;
|
|
14285
15130
|
secondaryActions: EmptyAction[];
|
|
14286
15131
|
inline: boolean;
|
|
14287
|
-
tone:
|
|
15132
|
+
tone: EmptyStateTone;
|
|
15133
|
+
variant: EmptyStateVariant;
|
|
15134
|
+
alignment: EmptyStateAlignment;
|
|
15135
|
+
density: EmptyStateDensity;
|
|
15136
|
+
iconContainer: EmptyStateIconContainer;
|
|
15137
|
+
effectiveVariant(): EmptyStateVariant;
|
|
14288
15138
|
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>;
|
|
15139
|
+
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
15140
|
}
|
|
14291
15141
|
|
|
14292
15142
|
declare class ResourceQuickConnectComponent implements SettingsValueProvider {
|
|
@@ -14649,5 +15499,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
14649
15499
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
14650
15500
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
14651
15501
|
|
|
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 };
|
|
15502
|
+
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, PraxisResourceIdentityComponent, 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, SurfaceOutletRegistryService, 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, materializeResourceIdentity, 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, normalizeResourceIdentityContract, 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 };
|
|
15503
|
+
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, FormPresentationConfig, 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, MaterializedResourceIdentity, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceByIdsRequestOptions, 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, ResourceIdentityContract, ResourceIdentityFieldMetadata, ResourceIdentityPart, 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, SurfaceOutletRegistration, 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 };
|