@praxisui/core 9.0.0-beta.4 → 9.0.0-beta.41
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 +3607 -0
- package/fesm2022/praxisui-core.mjs +3532 -413
- package/package.json +6 -2
- package/types/praxisui-core.d.ts +815 -35
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 & {
|
|
@@ -745,6 +745,43 @@ interface RichActionCardNode extends RichBlockBaseNode {
|
|
|
745
745
|
action: RichActionRef;
|
|
746
746
|
secondaryActions?: RichActionButtonNode[];
|
|
747
747
|
}
|
|
748
|
+
type RichDecisionGovernanceStatus = 'draft' | 'simulated' | 'approved' | 'published' | 'superseded' | 'reverted';
|
|
749
|
+
type RichDecisionRisk = 'low' | 'medium' | 'high' | 'critical';
|
|
750
|
+
interface RichDecisionPackageEvidence {
|
|
751
|
+
id?: string;
|
|
752
|
+
label?: string;
|
|
753
|
+
labelExpr?: string;
|
|
754
|
+
source?: string;
|
|
755
|
+
sourceExpr?: string;
|
|
756
|
+
}
|
|
757
|
+
interface RichDecisionPackageNode extends RichBlockBaseNode {
|
|
758
|
+
type: 'decisionPackage';
|
|
759
|
+
title?: string;
|
|
760
|
+
titleExpr?: string;
|
|
761
|
+
subtitle?: string;
|
|
762
|
+
subtitleExpr?: string;
|
|
763
|
+
summary?: string;
|
|
764
|
+
summaryExpr?: string;
|
|
765
|
+
status?: RichDecisionGovernanceStatus;
|
|
766
|
+
statusExpr?: string;
|
|
767
|
+
owner?: string;
|
|
768
|
+
ownerExpr?: string;
|
|
769
|
+
policySource?: string;
|
|
770
|
+
policySourceExpr?: string;
|
|
771
|
+
version?: string;
|
|
772
|
+
versionExpr?: string;
|
|
773
|
+
confidence?: number;
|
|
774
|
+
confidenceExpr?: string;
|
|
775
|
+
risk?: RichDecisionRisk;
|
|
776
|
+
riskExpr?: string;
|
|
777
|
+
lastReviewed?: string;
|
|
778
|
+
lastReviewedExpr?: string;
|
|
779
|
+
supersedes?: string;
|
|
780
|
+
supersedesExpr?: string;
|
|
781
|
+
evidence?: RichDecisionPackageEvidence[];
|
|
782
|
+
primaryAction?: RichActionButtonNode;
|
|
783
|
+
secondaryActions?: RichActionButtonNode[];
|
|
784
|
+
}
|
|
748
785
|
interface RichFormLauncherNode extends RichBlockBaseNode {
|
|
749
786
|
type: 'formLauncher';
|
|
750
787
|
title?: string;
|
|
@@ -838,6 +875,9 @@ type RichTimelineConnectorVariant = 'solid' | 'dashed' | 'none';
|
|
|
838
875
|
type RichTimelineMarkerVariant = 'dot' | 'icon' | 'number';
|
|
839
876
|
type RichTimelineMarkerStyle = 'filled' | 'outlined';
|
|
840
877
|
type RichTimelineColor = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
|
|
878
|
+
type RichTimelineEmphasis = 'subtle' | 'standard' | 'strong' | 'hero';
|
|
879
|
+
type RichTimelineDensity = 'compact' | 'comfortable' | 'spacious';
|
|
880
|
+
type RichTimelineTextAppearance = 'default' | 'prominent' | 'eyebrow' | 'label';
|
|
841
881
|
interface RichTimelineNode extends RichBlockBaseNode {
|
|
842
882
|
type: 'timeline';
|
|
843
883
|
title?: string;
|
|
@@ -851,6 +891,9 @@ interface RichTimelineNode extends RichBlockBaseNode {
|
|
|
851
891
|
markerVariant?: RichTimelineMarkerVariant;
|
|
852
892
|
markerColor?: RichTimelineColor;
|
|
853
893
|
markerStyle?: RichTimelineMarkerStyle;
|
|
894
|
+
emphasis?: RichTimelineEmphasis;
|
|
895
|
+
density?: RichTimelineDensity;
|
|
896
|
+
textAppearance?: RichTimelineTextAppearance;
|
|
854
897
|
items: RichTimelineItem[];
|
|
855
898
|
}
|
|
856
899
|
type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
|
|
@@ -899,7 +942,7 @@ interface RichBlockHostCapabilities {
|
|
|
899
942
|
onLoadError?: 'hide' | 'error' | 'placeholder';
|
|
900
943
|
};
|
|
901
944
|
}
|
|
902
|
-
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
945
|
+
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichDecisionPackageNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
903
946
|
type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
|
|
904
947
|
interface RichContentDocument {
|
|
905
948
|
kind: 'praxis.rich-content';
|
|
@@ -1136,6 +1179,70 @@ declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExp
|
|
|
1136
1179
|
declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
|
|
1137
1180
|
declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
|
|
1138
1181
|
|
|
1182
|
+
type PraxisPresentationVisualizationKind = 'line' | 'area' | 'column' | 'comparison' | 'stackedBar' | 'radial' | 'harveyBall' | 'bullet' | 'delta' | 'processFlow';
|
|
1183
|
+
type PraxisPresentationVisualizationSurface = 'table-cell' | 'list-item' | 'object-header' | 'card-summary' | 'form-presentation';
|
|
1184
|
+
type PraxisPresentationVisualizationSize = 'xs' | 'sm' | 'md' | 'lg' | 'responsive';
|
|
1185
|
+
type PraxisPresentationVisualizationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger' | 'critical';
|
|
1186
|
+
interface PraxisPresentationVisualizationPoint {
|
|
1187
|
+
label?: string;
|
|
1188
|
+
value: number;
|
|
1189
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1190
|
+
}
|
|
1191
|
+
interface PraxisPresentationVisualizationSegment {
|
|
1192
|
+
label?: string;
|
|
1193
|
+
value: number;
|
|
1194
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1195
|
+
}
|
|
1196
|
+
interface PraxisPresentationVisualizationThreshold {
|
|
1197
|
+
label?: string;
|
|
1198
|
+
value: number;
|
|
1199
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1200
|
+
}
|
|
1201
|
+
interface PraxisPresentationVisualizationItem {
|
|
1202
|
+
id?: string;
|
|
1203
|
+
label?: string;
|
|
1204
|
+
value?: number;
|
|
1205
|
+
icon?: string;
|
|
1206
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1207
|
+
state?: string;
|
|
1208
|
+
}
|
|
1209
|
+
interface PraxisPresentationVisualizationConfig {
|
|
1210
|
+
kind: PraxisPresentationVisualizationKind;
|
|
1211
|
+
surface?: PraxisPresentationVisualizationSurface;
|
|
1212
|
+
size?: PraxisPresentationVisualizationSize;
|
|
1213
|
+
value?: unknown;
|
|
1214
|
+
valueExpr?: JsonLogicExpression | string;
|
|
1215
|
+
valueSuffix?: string;
|
|
1216
|
+
valueSuffixExpr?: JsonLogicExpression | string;
|
|
1217
|
+
total?: number;
|
|
1218
|
+
totalExpr?: JsonLogicExpression | string;
|
|
1219
|
+
target?: number;
|
|
1220
|
+
targetExpr?: JsonLogicExpression | string;
|
|
1221
|
+
baseline?: number;
|
|
1222
|
+
baselineExpr?: JsonLogicExpression | string;
|
|
1223
|
+
points?: PraxisPresentationVisualizationPoint[];
|
|
1224
|
+
pointsExpr?: JsonLogicExpression | string;
|
|
1225
|
+
segments?: PraxisPresentationVisualizationSegment[];
|
|
1226
|
+
segmentsExpr?: JsonLogicExpression | string;
|
|
1227
|
+
thresholds?: PraxisPresentationVisualizationThreshold[];
|
|
1228
|
+
thresholdsExpr?: JsonLogicExpression | string;
|
|
1229
|
+
items?: PraxisPresentationVisualizationItem[];
|
|
1230
|
+
itemsExpr?: JsonLogicExpression | string;
|
|
1231
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1232
|
+
toneExpr?: JsonLogicExpression | string;
|
|
1233
|
+
ariaLabel?: string;
|
|
1234
|
+
ariaLabelExpr?: JsonLogicExpression | string;
|
|
1235
|
+
fallbackText: string;
|
|
1236
|
+
fallbackTextExpr?: JsonLogicExpression | string;
|
|
1237
|
+
}
|
|
1238
|
+
type ResolvedPraxisPresentationVisualizationConfig = PraxisPresentationVisualizationConfig;
|
|
1239
|
+
declare function normalizePraxisPresentationVisualization(value: PraxisPresentationVisualizationConfig | null | undefined): ResolvedPraxisPresentationVisualizationConfig | undefined;
|
|
1240
|
+
declare function isPraxisPresentationVisualizationTableSafe(value: PraxisPresentationVisualizationConfig | null | undefined): boolean;
|
|
1241
|
+
interface PraxisPresentationVisualizationHtmlOptions {
|
|
1242
|
+
locale?: string;
|
|
1243
|
+
}
|
|
1244
|
+
declare function renderPraxisPresentationVisualizationHtml(value: PraxisPresentationVisualizationConfig | null | undefined, options?: PraxisPresentationVisualizationHtmlOptions): string;
|
|
1245
|
+
|
|
1139
1246
|
type PraxisRuntimeEffectTrigger = 'on-condition-enter' | 'on-value-change' | 'while-true';
|
|
1140
1247
|
interface PraxisEffectPolicy {
|
|
1141
1248
|
trigger?: PraxisRuntimeEffectTrigger;
|
|
@@ -1203,6 +1310,17 @@ type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
|
1203
1310
|
type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
|
|
1204
1311
|
type ResourceCapabilityOperationId = ResourceCrudOperationId | 'export' | string;
|
|
1205
1312
|
type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
|
|
1313
|
+
type RelatedResourceChildOperation = 'FILTER' | 'LIST' | 'CREATE' | 'UPDATE' | 'DELETE' | 'DUPLICATE_DRAFT';
|
|
1314
|
+
interface RelatedResourceSurface {
|
|
1315
|
+
parentResourceKey: string;
|
|
1316
|
+
parentIdPathVariable: string;
|
|
1317
|
+
childResourceKey: string;
|
|
1318
|
+
childResourcePath: string;
|
|
1319
|
+
childParentField: string;
|
|
1320
|
+
selectable: boolean;
|
|
1321
|
+
selectionKeyField: string;
|
|
1322
|
+
childOperations: RelatedResourceChildOperation[];
|
|
1323
|
+
}
|
|
1206
1324
|
interface ResourceSurfaceCatalogItem {
|
|
1207
1325
|
id: string;
|
|
1208
1326
|
resourceKey: string;
|
|
@@ -1220,6 +1338,7 @@ interface ResourceSurfaceCatalogItem {
|
|
|
1220
1338
|
availability: ResourceAvailabilityDecision;
|
|
1221
1339
|
order: number;
|
|
1222
1340
|
tags: string[];
|
|
1341
|
+
relatedResource?: RelatedResourceSurface | null;
|
|
1223
1342
|
}
|
|
1224
1343
|
interface ResourceSurfaceCatalogResponse {
|
|
1225
1344
|
resourceKey: string;
|
|
@@ -1354,7 +1473,7 @@ interface ColumnDefinition {
|
|
|
1354
1473
|
expr: string;
|
|
1355
1474
|
};
|
|
1356
1475
|
/** Tipo do renderizador */
|
|
1357
|
-
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose';
|
|
1476
|
+
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'microVisualization' | 'html' | 'compose';
|
|
1358
1477
|
/** Tooltip associado ao renderer efetivo da célula. */
|
|
1359
1478
|
tooltip?: TableTooltipConfig;
|
|
1360
1479
|
/** Configuração de ícone (Material/SVG por nome) */
|
|
@@ -1363,12 +1482,20 @@ interface ColumnDefinition {
|
|
|
1363
1482
|
name?: string;
|
|
1364
1483
|
/** Campo do row que contém o nome do ícone */
|
|
1365
1484
|
nameField?: string;
|
|
1485
|
+
/** Texto fixo exibido ao lado do icone */
|
|
1486
|
+
text?: string;
|
|
1487
|
+
/** Campo usado como texto exibido ao lado do icone */
|
|
1488
|
+
textField?: string;
|
|
1366
1489
|
/** Cor do ícone (primary/accent/warn ou CSS color) */
|
|
1367
1490
|
color?: string;
|
|
1368
1491
|
/** Tamanho em px (opcional) */
|
|
1369
1492
|
size?: number;
|
|
1370
1493
|
/** Label acessível (fixo) */
|
|
1371
1494
|
ariaLabel?: string;
|
|
1495
|
+
/** Prefixo visual aplicado ao texto do renderer sem alterar o valor bruto. */
|
|
1496
|
+
prefix?: string;
|
|
1497
|
+
/** Sufixo visual aplicado ao texto do renderer sem alterar o valor bruto. */
|
|
1498
|
+
suffix?: string;
|
|
1372
1499
|
};
|
|
1373
1500
|
/** Configuração de imagem */
|
|
1374
1501
|
image?: {
|
|
@@ -1399,7 +1526,7 @@ interface ColumnDefinition {
|
|
|
1399
1526
|
/** Cor do badge (primary/accent/warn ou CSS) */
|
|
1400
1527
|
color?: string;
|
|
1401
1528
|
/** Variante visual */
|
|
1402
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1529
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1403
1530
|
/** Ícone opcional dentro do badge */
|
|
1404
1531
|
icon?: string;
|
|
1405
1532
|
/** Tooltip opcional associado ao indicador visual */
|
|
@@ -1435,7 +1562,7 @@ interface ColumnDefinition {
|
|
|
1435
1562
|
textField?: string;
|
|
1436
1563
|
color?: string;
|
|
1437
1564
|
icon?: string;
|
|
1438
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1565
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1439
1566
|
/** Tooltip opcional associado ao chip */
|
|
1440
1567
|
tooltip?: TableTooltipConfig;
|
|
1441
1568
|
};
|
|
@@ -1454,6 +1581,9 @@ interface ColumnDefinition {
|
|
|
1454
1581
|
size?: 'small' | 'medium' | 'large';
|
|
1455
1582
|
ariaLabel?: string;
|
|
1456
1583
|
};
|
|
1584
|
+
microVisualization?: {
|
|
1585
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1586
|
+
};
|
|
1457
1587
|
/** Avatar (imagem ou iniciais) */
|
|
1458
1588
|
avatar?: {
|
|
1459
1589
|
src?: string;
|
|
@@ -1496,9 +1626,13 @@ interface ColumnDefinition {
|
|
|
1496
1626
|
icon?: {
|
|
1497
1627
|
name?: string;
|
|
1498
1628
|
nameField?: string;
|
|
1629
|
+
text?: string;
|
|
1630
|
+
textField?: string;
|
|
1499
1631
|
color?: string;
|
|
1500
1632
|
size?: number;
|
|
1501
1633
|
ariaLabel?: string;
|
|
1634
|
+
prefix?: string;
|
|
1635
|
+
suffix?: string;
|
|
1502
1636
|
};
|
|
1503
1637
|
} | {
|
|
1504
1638
|
type: 'image';
|
|
@@ -1519,7 +1653,7 @@ interface ColumnDefinition {
|
|
|
1519
1653
|
text?: string;
|
|
1520
1654
|
textField?: string;
|
|
1521
1655
|
color?: string;
|
|
1522
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1656
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1523
1657
|
icon?: string;
|
|
1524
1658
|
tooltip?: TableTooltipConfig;
|
|
1525
1659
|
};
|
|
@@ -1555,7 +1689,7 @@ interface ColumnDefinition {
|
|
|
1555
1689
|
textField?: string;
|
|
1556
1690
|
color?: string;
|
|
1557
1691
|
icon?: string;
|
|
1558
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1692
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1559
1693
|
tooltip?: TableTooltipConfig;
|
|
1560
1694
|
};
|
|
1561
1695
|
} | {
|
|
@@ -1605,6 +1739,11 @@ interface ColumnDefinition {
|
|
|
1605
1739
|
size?: 'small' | 'medium' | 'large';
|
|
1606
1740
|
ariaLabel?: string;
|
|
1607
1741
|
};
|
|
1742
|
+
} | {
|
|
1743
|
+
type: 'microVisualization';
|
|
1744
|
+
microVisualization?: {
|
|
1745
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1746
|
+
};
|
|
1608
1747
|
} | {
|
|
1609
1748
|
type: 'html';
|
|
1610
1749
|
html?: {
|
|
@@ -2442,6 +2581,14 @@ interface ToolbarSettingsConfig {
|
|
|
2442
2581
|
options?: any[];
|
|
2443
2582
|
}>;
|
|
2444
2583
|
}
|
|
2584
|
+
interface TableAiAssistantConfig {
|
|
2585
|
+
/** Exibe e permite acionar o assistente de IA da tabela. Ausente equivale a true. */
|
|
2586
|
+
enabled?: boolean;
|
|
2587
|
+
}
|
|
2588
|
+
interface TableAiConfig {
|
|
2589
|
+
/** Configuracoes do assistente de IA embarcado na tabela. */
|
|
2590
|
+
assistant?: TableAiAssistantConfig;
|
|
2591
|
+
}
|
|
2445
2592
|
interface TableActionsConfig {
|
|
2446
2593
|
/** Ações por linha */
|
|
2447
2594
|
row?: RowActionsConfig;
|
|
@@ -2748,6 +2895,11 @@ interface TableDetailRichListNode extends TableDetailBaseNode {
|
|
|
2748
2895
|
}
|
|
2749
2896
|
type TableDetailEmbedAction = TableDetailActionBarAction;
|
|
2750
2897
|
interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
2898
|
+
/**
|
|
2899
|
+
* Governs whether the detail row should keep this embed as a host-mediated reference
|
|
2900
|
+
* or ask an owning runtime/provider to materialize it inline. Omitted means `reference`.
|
|
2901
|
+
*/
|
|
2902
|
+
renderMode?: 'reference' | 'inline';
|
|
2751
2903
|
description?: string;
|
|
2752
2904
|
caption?: string;
|
|
2753
2905
|
emptyText?: string;
|
|
@@ -2758,6 +2910,8 @@ interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
|
2758
2910
|
interface TableDetailRefNode extends TableDetailEmbedBaseNode {
|
|
2759
2911
|
type: 'formRef' | 'tableRef' | 'chartRef';
|
|
2760
2912
|
schemaId?: string;
|
|
2913
|
+
chartDocumentRef?: string;
|
|
2914
|
+
chartDocument?: unknown;
|
|
2761
2915
|
}
|
|
2762
2916
|
interface TableDetailDiagramEmbedNode extends TableDetailEmbedBaseNode {
|
|
2763
2917
|
type: 'diagramEmbed';
|
|
@@ -3300,6 +3454,8 @@ interface TableConfigV2 {
|
|
|
3300
3454
|
toolbar?: ToolbarConfig;
|
|
3301
3455
|
/** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
|
|
3302
3456
|
actions?: TableActionsConfig;
|
|
3457
|
+
/** Configuracoes de IA do runtime da tabela */
|
|
3458
|
+
ai?: TableAiConfig;
|
|
3303
3459
|
/** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
|
|
3304
3460
|
export?: ExportConfig;
|
|
3305
3461
|
/** Mensagens personalizadas (Aba: Mensagens & Localização) */
|
|
@@ -3538,6 +3694,92 @@ declare const FieldControlType: {
|
|
|
3538
3694
|
};
|
|
3539
3695
|
type FieldControlType = (typeof FieldControlType)[keyof typeof FieldControlType];
|
|
3540
3696
|
|
|
3697
|
+
type FormFieldHelpDisplay = 'auto' | 'inline' | 'popover' | 'hidden';
|
|
3698
|
+
interface FormHelpPresentationConfig {
|
|
3699
|
+
/**
|
|
3700
|
+
* Controls how semantic field help (`hint`/`helpText`) is presented by field
|
|
3701
|
+
* renderers. Validation errors are never affected by this policy.
|
|
3702
|
+
*/
|
|
3703
|
+
display?: FormFieldHelpDisplay;
|
|
3704
|
+
/**
|
|
3705
|
+
* Maximum text length that may remain inline when `display` is `auto`.
|
|
3706
|
+
* Defaults to 64 characters.
|
|
3707
|
+
*/
|
|
3708
|
+
inlineMaxLength?: number;
|
|
3709
|
+
/**
|
|
3710
|
+
* Control types that should prefer a help affordance instead of inline text
|
|
3711
|
+
* when `display` is `auto`.
|
|
3712
|
+
*/
|
|
3713
|
+
preferPopoverForControls?: string[];
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3716
|
+
type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
3717
|
+
type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
|
|
3718
|
+
type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
|
|
3719
|
+
interface FieldPresentationInteractions {
|
|
3720
|
+
/** Allows readonly surfaces to expose a copy affordance without changing the field value. */
|
|
3721
|
+
copy?: boolean;
|
|
3722
|
+
/** Allows readonly surfaces to expose contextual detail expansion. */
|
|
3723
|
+
details?: boolean;
|
|
3724
|
+
/** Allows readonly surfaces to expose inline expansion for long values. */
|
|
3725
|
+
expand?: boolean;
|
|
3726
|
+
/** Allows readonly surfaces to expose a link affordance when the value is navigable. */
|
|
3727
|
+
link?: boolean;
|
|
3728
|
+
}
|
|
3729
|
+
interface FieldPresentationConfig {
|
|
3730
|
+
/** Semantic display strategy for readonly/presentation surfaces. */
|
|
3731
|
+
presenter?: FieldPresenterKind;
|
|
3732
|
+
/** Alias accepted for schema authors that describe the semantic display as a variant. */
|
|
3733
|
+
variant?: FieldPresenterKind;
|
|
3734
|
+
/** Semantic tone mapped by consumers to theme tokens. */
|
|
3735
|
+
tone?: FieldPresentationTone;
|
|
3736
|
+
/** Material Symbols icon name, without arbitrary HTML. */
|
|
3737
|
+
icon?: string;
|
|
3738
|
+
/** Optional semantic label for status/chip/badge presentations. */
|
|
3739
|
+
label?: string;
|
|
3740
|
+
/** Optional secondary marker rendered by presentation-capable consumers. */
|
|
3741
|
+
badge?: string;
|
|
3742
|
+
/** Optional tooltip text for the presentation wrapper. */
|
|
3743
|
+
tooltip?: string;
|
|
3744
|
+
/** Optional readonly prefix rendered next to the displayed value without changing the raw value. */
|
|
3745
|
+
prefix?: string;
|
|
3746
|
+
/** Optional readonly suffix rendered next to the displayed value without changing the raw value. */
|
|
3747
|
+
suffix?: string;
|
|
3748
|
+
/** Visual density/emphasis strategy mapped by consumers to theme tokens. */
|
|
3749
|
+
appearance?: FieldPresentationAppearance;
|
|
3750
|
+
/** Optional formatter override for the presentation surface only. */
|
|
3751
|
+
valuePresentation?: ValuePresentationConfig;
|
|
3752
|
+
/** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
|
|
3753
|
+
visualization?: PraxisPresentationVisualizationConfig;
|
|
3754
|
+
/** Safe readonly affordances. No commands or mutations are executed from this contract. */
|
|
3755
|
+
interactions?: FieldPresentationInteractions;
|
|
3756
|
+
}
|
|
3757
|
+
interface FieldPresentationRule {
|
|
3758
|
+
/** Json Logic guard evaluated against the presentation context. */
|
|
3759
|
+
when: JsonLogicExpression;
|
|
3760
|
+
/** Semantic presentation state merged when the guard is truthy. */
|
|
3761
|
+
set?: FieldPresentationConfig;
|
|
3762
|
+
/** Alias for `set`, useful for rule-builder terminology. */
|
|
3763
|
+
effect?: FieldPresentationConfig;
|
|
3764
|
+
}
|
|
3765
|
+
interface ResolvedFieldPresentation extends FieldPresentationConfig {
|
|
3766
|
+
/** Indicates at least one conditional rule matched the current context. */
|
|
3767
|
+
matchedRule?: boolean;
|
|
3768
|
+
}
|
|
3769
|
+
interface FieldPresentationJsonLogicEvaluator {
|
|
3770
|
+
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
|
|
3771
|
+
truthy?(value: unknown): boolean;
|
|
3772
|
+
}
|
|
3773
|
+
interface ResolveFieldPresentationOptions {
|
|
3774
|
+
jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
|
|
3775
|
+
}
|
|
3776
|
+
/**
|
|
3777
|
+
* Resolves readonly field presentation from a base semantic config plus ordered
|
|
3778
|
+
* Json Logic rules. Later matching rules override earlier presentation values.
|
|
3779
|
+
*/
|
|
3780
|
+
declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
|
|
3781
|
+
declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
|
|
3782
|
+
|
|
3541
3783
|
/**
|
|
3542
3784
|
* @fileoverview Base metadata interfaces for dynamic Angular Material components
|
|
3543
3785
|
*
|
|
@@ -3910,6 +4152,14 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3910
4152
|
disabled?: boolean;
|
|
3911
4153
|
/** Field is read-only */
|
|
3912
4154
|
readOnly?: boolean;
|
|
4155
|
+
/**
|
|
4156
|
+
* Canonical backend-authored access metadata for field-level UX materialization.
|
|
4157
|
+
*
|
|
4158
|
+
* The frontend may use this contract to hide or lock controls for usability,
|
|
4159
|
+
* but it is not a security boundary. Backend filtering and validation remain
|
|
4160
|
+
* the final authority for sensitive data.
|
|
4161
|
+
*/
|
|
4162
|
+
fieldAccess?: FieldAccessMetadata;
|
|
3913
4163
|
/** Field is hidden from display */
|
|
3914
4164
|
hidden?: boolean;
|
|
3915
4165
|
/** Canonical conditional visibility guard for metadata-driven forms. */
|
|
@@ -3920,8 +4170,16 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3920
4170
|
placeholder?: string;
|
|
3921
4171
|
/** Help text displayed below field */
|
|
3922
4172
|
hint?: string;
|
|
4173
|
+
/** Domain help text emitted by backend schema metadata. */
|
|
4174
|
+
helpText?: string;
|
|
4175
|
+
/** Effective help presentation resolved by the form host. */
|
|
4176
|
+
helpDisplay?: FormFieldHelpDisplay;
|
|
4177
|
+
/** Field-level inline threshold used when `helpDisplay` is `auto`. */
|
|
4178
|
+
helpInlineMaxLength?: number;
|
|
3923
4179
|
/** Tooltip text on hover */
|
|
3924
4180
|
tooltip?: string;
|
|
4181
|
+
/** Enables hover tooltip presentation when supported by the field renderer. */
|
|
4182
|
+
tooltipOnHover?: boolean;
|
|
3925
4183
|
/** Semantic selection mode for boolean/single/multiple choice controls */
|
|
3926
4184
|
selectionMode?: 'boolean' | 'single' | 'multiple';
|
|
3927
4185
|
/** Visual variant used by controls with more than one supported presentation */
|
|
@@ -3961,6 +4219,10 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3961
4219
|
suffixIcon?: string;
|
|
3962
4220
|
iconPosition?: 'start' | 'end';
|
|
3963
4221
|
iconSize?: 'small' | 'medium' | 'large';
|
|
4222
|
+
iconColor?: string;
|
|
4223
|
+
iconClass?: string;
|
|
4224
|
+
iconStyle?: string;
|
|
4225
|
+
iconFontSize?: string | number;
|
|
3964
4226
|
/** Tooltip for suffix icon (used for help actions) */
|
|
3965
4227
|
suffixIconTooltip?: string;
|
|
3966
4228
|
/** ARIA label for suffix icon when used as help */
|
|
@@ -3977,6 +4239,18 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3977
4239
|
* heuristics.
|
|
3978
4240
|
*/
|
|
3979
4241
|
valuePresentation?: ValuePresentationConfig;
|
|
4242
|
+
/**
|
|
4243
|
+
* Semantic presentation metadata for read-only/display surfaces.
|
|
4244
|
+
*
|
|
4245
|
+
* Consumers map this contract to their own theme tokens and primitives. It
|
|
4246
|
+
* intentionally avoids arbitrary CSS, HTML, or mutation commands.
|
|
4247
|
+
*/
|
|
4248
|
+
presentation?: FieldPresentationConfig;
|
|
4249
|
+
/**
|
|
4250
|
+
* Ordered Json Logic rules that conditionally override `presentation` in
|
|
4251
|
+
* readonly/display surfaces. Later matching rules win.
|
|
4252
|
+
*/
|
|
4253
|
+
presentationRules?: FieldPresentationRule[];
|
|
3980
4254
|
/** Material Design specific configuration */
|
|
3981
4255
|
materialDesign?: MaterialDesignConfig;
|
|
3982
4256
|
/**
|
|
@@ -4122,6 +4396,23 @@ type CoreFieldMetadata = Pick<FieldMetadata, 'name' | 'label' | 'controlType'>;
|
|
|
4122
4396
|
/** Helper type for field metadata without computed properties */
|
|
4123
4397
|
type SerializableFieldMetadata = Omit<FieldMetadata, 'transformDisplayValue' | 'transformSaveValue'>;
|
|
4124
4398
|
|
|
4399
|
+
interface FieldAccessMetadata {
|
|
4400
|
+
visibleForAuthorities?: string[];
|
|
4401
|
+
editableForAuthorities?: string[];
|
|
4402
|
+
reason?: string;
|
|
4403
|
+
}
|
|
4404
|
+
interface FieldAccessEvaluationContext {
|
|
4405
|
+
authorities?: readonly string[] | null;
|
|
4406
|
+
}
|
|
4407
|
+
interface FieldAccessEvaluationResult {
|
|
4408
|
+
evaluated: boolean;
|
|
4409
|
+
visible: boolean;
|
|
4410
|
+
editable: boolean;
|
|
4411
|
+
reason?: string;
|
|
4412
|
+
}
|
|
4413
|
+
declare function normalizeFieldAccessMetadata(value: unknown): FieldAccessMetadata | undefined;
|
|
4414
|
+
declare function evaluateFieldAccess(fieldOrAccess: Pick<FieldMetadata, 'fieldAccess'> | FieldAccessMetadata | null | undefined, context?: FieldAccessEvaluationContext): FieldAccessEvaluationResult;
|
|
4415
|
+
|
|
4125
4416
|
/**
|
|
4126
4417
|
* Contrato de saída do normalizador de esquema (SchemaNormalizerService):
|
|
4127
4418
|
* - Converte metadados `x-ui` em FieldDefinition tipado.
|
|
@@ -4152,6 +4443,7 @@ interface FieldDefinition {
|
|
|
4152
4443
|
layout?: 'horizontal' | 'vertical';
|
|
4153
4444
|
disabled?: boolean;
|
|
4154
4445
|
readOnly?: boolean;
|
|
4446
|
+
fieldAccess?: FieldAccessMetadata;
|
|
4155
4447
|
array?: FieldArrayConfig;
|
|
4156
4448
|
collectionValidation?: FieldArrayCollectionValidation;
|
|
4157
4449
|
multiple?: boolean;
|
|
@@ -4180,6 +4472,7 @@ interface FieldDefinition {
|
|
|
4180
4472
|
helpText?: string;
|
|
4181
4473
|
hint?: string;
|
|
4182
4474
|
hiddenCondition?: JsonLogicExpression | null;
|
|
4475
|
+
tooltip?: string;
|
|
4183
4476
|
tooltipOnHover?: boolean;
|
|
4184
4477
|
icon?: string;
|
|
4185
4478
|
iconPosition?: string;
|
|
@@ -4209,6 +4502,10 @@ interface FieldDefinition {
|
|
|
4209
4502
|
filterOptions?: any[];
|
|
4210
4503
|
numericFormat?: string;
|
|
4211
4504
|
valuePresentation?: ValuePresentationConfig;
|
|
4505
|
+
/** Semantic read-only/list presentation metadata from canonical x-ui.presentation. */
|
|
4506
|
+
presentation?: FieldPresentationConfig;
|
|
4507
|
+
/** Conditional presentation overrides for read-only/list consumers. */
|
|
4508
|
+
presentationRules?: FieldPresentationRule[];
|
|
4212
4509
|
numericStep?: number;
|
|
4213
4510
|
numericMin?: number;
|
|
4214
4511
|
numericMax?: number;
|
|
@@ -4286,6 +4583,13 @@ interface ApiUrlEntry {
|
|
|
4286
4583
|
fullUrl?: string;
|
|
4287
4584
|
version?: string;
|
|
4288
4585
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
4586
|
+
/**
|
|
4587
|
+
* Absolute backend origins that ResourceDiscoveryService may fold back through
|
|
4588
|
+
* a relative API_URL proxy for canonical API discovery links. Only configure
|
|
4589
|
+
* origins controlled by the same deployment boundary; arbitrary external links
|
|
4590
|
+
* remain absolute.
|
|
4591
|
+
*/
|
|
4592
|
+
trustedOrigins?: string[];
|
|
4289
4593
|
}
|
|
4290
4594
|
interface ApiUrlConfig {
|
|
4291
4595
|
[key: string]: ApiUrlEntry;
|
|
@@ -5330,6 +5634,9 @@ declare class TableConfigService {
|
|
|
5330
5634
|
declare function buildBaseColumnFromDef(def: FieldDefinition): ColumnDefinition;
|
|
5331
5635
|
declare function applyLocalCustomizations$1(baseCol: ColumnDefinition, localCol: ColumnDefinition): ColumnDefinition;
|
|
5332
5636
|
declare function reconcileTableConfig(layout: TableConfigV2, serverDefs: FieldDefinition[]): TableConfigV2;
|
|
5637
|
+
declare function resolveColumnTypeFromFieldDefinition(def: FieldDefinition, fallback?: ColumnDefinition['type']): ColumnDefinition['type'] | undefined;
|
|
5638
|
+
declare function resolveTextMaskFormatFromFieldDefinition(def: FieldDefinition): string | undefined;
|
|
5639
|
+
declare function resolveTextMaskFormat(value: unknown): string | undefined;
|
|
5333
5640
|
|
|
5334
5641
|
interface ConfigStorage {
|
|
5335
5642
|
loadConfig<T>(key: string): T | null;
|
|
@@ -8551,6 +8858,13 @@ declare class ResourceDiscoveryService {
|
|
|
8551
8858
|
resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
|
|
8552
8859
|
private resolveApiOrigin;
|
|
8553
8860
|
private resolveApiBaseUrl;
|
|
8861
|
+
private resolveTrustedAbsoluteHref;
|
|
8862
|
+
private isTrustedOrigin;
|
|
8863
|
+
private getTrustedOrigins;
|
|
8864
|
+
private normalizeOrigin;
|
|
8865
|
+
private isProxyableApiPath;
|
|
8866
|
+
private normalizePathPrefix;
|
|
8867
|
+
private isAbsoluteHttpUrl;
|
|
8554
8868
|
private resolveApiBaseHref;
|
|
8555
8869
|
private resolveEndpointEntry;
|
|
8556
8870
|
private getRuntimeOrigin;
|
|
@@ -9091,6 +9405,133 @@ declare class DomainRuleService {
|
|
|
9091
9405
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
|
|
9092
9406
|
}
|
|
9093
9407
|
|
|
9408
|
+
interface EnterpriseRuntimeUser {
|
|
9409
|
+
userId: string;
|
|
9410
|
+
displayName?: string | null;
|
|
9411
|
+
resolvedFromServerPrincipal?: boolean;
|
|
9412
|
+
}
|
|
9413
|
+
interface EnterpriseRuntimeTenant {
|
|
9414
|
+
tenantId: string;
|
|
9415
|
+
label?: string | null;
|
|
9416
|
+
active?: boolean;
|
|
9417
|
+
}
|
|
9418
|
+
interface EnterpriseRuntimeTenantsResponse {
|
|
9419
|
+
schemaVersion: string;
|
|
9420
|
+
activeTenant?: EnterpriseRuntimeTenant | null;
|
|
9421
|
+
tenants?: EnterpriseRuntimeTenant[];
|
|
9422
|
+
capabilities?: string[];
|
|
9423
|
+
resolvedAt?: string | null;
|
|
9424
|
+
}
|
|
9425
|
+
interface EnterpriseRuntimeContext {
|
|
9426
|
+
schemaVersion: string;
|
|
9427
|
+
user: EnterpriseRuntimeUser;
|
|
9428
|
+
activeTenant: EnterpriseRuntimeTenant;
|
|
9429
|
+
environment?: string | null;
|
|
9430
|
+
locale?: string | null;
|
|
9431
|
+
timezone?: string | null;
|
|
9432
|
+
activeProfileId?: string | null;
|
|
9433
|
+
activeModuleKey?: string | null;
|
|
9434
|
+
/**
|
|
9435
|
+
* Host-resolved security authorities usable by metadata-driven UX policies.
|
|
9436
|
+
* Do not infer these from `capabilities` unless the host/backend explicitly
|
|
9437
|
+
* publishes that shared vocabulary.
|
|
9438
|
+
*/
|
|
9439
|
+
authorities?: string[];
|
|
9440
|
+
capabilities?: string[];
|
|
9441
|
+
resolvedAt?: string | null;
|
|
9442
|
+
}
|
|
9443
|
+
interface EnterpriseRuntimeContextSwitchCommand {
|
|
9444
|
+
targetTenantId?: string | null;
|
|
9445
|
+
targetProfileId?: string | null;
|
|
9446
|
+
targetModuleKey?: string | null;
|
|
9447
|
+
locale?: string | null;
|
|
9448
|
+
timezone?: string | null;
|
|
9449
|
+
reason?: string | null;
|
|
9450
|
+
}
|
|
9451
|
+
interface EnterpriseRuntimeContextSwitchResponse {
|
|
9452
|
+
schemaVersion: string;
|
|
9453
|
+
accepted: boolean;
|
|
9454
|
+
message?: string | null;
|
|
9455
|
+
effectiveContext?: EnterpriseRuntimeContext | null;
|
|
9456
|
+
propagationHeaders?: Record<string, string>;
|
|
9457
|
+
capabilities?: string[];
|
|
9458
|
+
resolvedAt?: string | null;
|
|
9459
|
+
}
|
|
9460
|
+
interface EnterpriseRuntimeNavigationNode {
|
|
9461
|
+
id: string;
|
|
9462
|
+
label?: string | null;
|
|
9463
|
+
type?: string | null;
|
|
9464
|
+
href?: string | null;
|
|
9465
|
+
route?: string | null;
|
|
9466
|
+
moduleKey?: string | null;
|
|
9467
|
+
resourceKey?: string | null;
|
|
9468
|
+
surfaceRef?: string | null;
|
|
9469
|
+
actionRef?: string | null;
|
|
9470
|
+
capabilityRef?: string | null;
|
|
9471
|
+
children?: EnterpriseRuntimeNavigationNode[];
|
|
9472
|
+
}
|
|
9473
|
+
interface EnterpriseRuntimeNavigationResponse {
|
|
9474
|
+
schemaVersion: string;
|
|
9475
|
+
nodes?: EnterpriseRuntimeNavigationNode[];
|
|
9476
|
+
capabilities?: string[];
|
|
9477
|
+
resolvedAt?: string | null;
|
|
9478
|
+
}
|
|
9479
|
+
interface EnterpriseRuntimeSecurityEvent {
|
|
9480
|
+
eventRef?: string | null;
|
|
9481
|
+
eventType?: string | null;
|
|
9482
|
+
severity?: string | null;
|
|
9483
|
+
summary?: string | null;
|
|
9484
|
+
tenantId?: string | null;
|
|
9485
|
+
environment?: string | null;
|
|
9486
|
+
occurredAt?: string | null;
|
|
9487
|
+
metadata?: Record<string, string>;
|
|
9488
|
+
}
|
|
9489
|
+
interface EnterpriseRuntimeSecurityEventsResponse {
|
|
9490
|
+
schemaVersion: string;
|
|
9491
|
+
events?: EnterpriseRuntimeSecurityEvent[];
|
|
9492
|
+
capabilities?: string[];
|
|
9493
|
+
resolvedAt?: string | null;
|
|
9494
|
+
}
|
|
9495
|
+
interface EnterpriseRuntimeContextHeaders {
|
|
9496
|
+
'X-Tenant-ID'?: string;
|
|
9497
|
+
'X-User-ID'?: string;
|
|
9498
|
+
'X-Env'?: string;
|
|
9499
|
+
'Accept-Language'?: string;
|
|
9500
|
+
'X-Timezone'?: string;
|
|
9501
|
+
'X-Praxis-Profile-ID'?: string;
|
|
9502
|
+
'X-Praxis-Module-Key'?: string;
|
|
9503
|
+
}
|
|
9504
|
+
|
|
9505
|
+
type RuntimeHeaderMap = Record<string, string | undefined>;
|
|
9506
|
+
declare class EnterpriseRuntimeContextService {
|
|
9507
|
+
private readonly http;
|
|
9508
|
+
private readonly apiUrl;
|
|
9509
|
+
private readonly options;
|
|
9510
|
+
private readonly contextSubject;
|
|
9511
|
+
private loadPromise;
|
|
9512
|
+
readonly contextChanges$: Observable<EnterpriseRuntimeContext | null>;
|
|
9513
|
+
get snapshot(): EnterpriseRuntimeContext | null;
|
|
9514
|
+
ready(): Promise<EnterpriseRuntimeContext | null>;
|
|
9515
|
+
refresh(): Promise<EnterpriseRuntimeContext | null>;
|
|
9516
|
+
tenants(): Promise<EnterpriseRuntimeTenantsResponse>;
|
|
9517
|
+
navigation(): Promise<EnterpriseRuntimeNavigationResponse>;
|
|
9518
|
+
securityEvents(): Promise<EnterpriseRuntimeSecurityEventsResponse>;
|
|
9519
|
+
switchContext(command: EnterpriseRuntimeContextSwitchCommand): Promise<EnterpriseRuntimeContextSwitchResponse>;
|
|
9520
|
+
headers(fallback?: RuntimeHeaderMap): EnterpriseRuntimeContextHeaders;
|
|
9521
|
+
private load;
|
|
9522
|
+
private getRuntimeSurface;
|
|
9523
|
+
private endpoint;
|
|
9524
|
+
private configuredEndpoint;
|
|
9525
|
+
private runtimeRoot;
|
|
9526
|
+
private surfacePath;
|
|
9527
|
+
private requestHeaders;
|
|
9528
|
+
private globalFetchHeaders;
|
|
9529
|
+
private headersFromSnapshot;
|
|
9530
|
+
private normalizeHeaders;
|
|
9531
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnterpriseRuntimeContextService, never>;
|
|
9532
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnterpriseRuntimeContextService>;
|
|
9533
|
+
}
|
|
9534
|
+
|
|
9094
9535
|
type PraxisRuntimeComponentObservationSchemaVersion = 'praxis-runtime-component-observation.v1';
|
|
9095
9536
|
type PraxisRuntimeComponentObservationClaimKind = 'component' | 'manifest' | 'resource' | 'schemaField' | 'selection' | 'operation' | 'surface' | 'action' | 'stateDigest' | 'dataDigest';
|
|
9096
9537
|
interface PraxisRuntimeComponentObservationEnvelope {
|
|
@@ -9250,6 +9691,59 @@ declare class ResourceSurfaceOpenAdapterService {
|
|
|
9250
9691
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
|
|
9251
9692
|
}
|
|
9252
9693
|
|
|
9694
|
+
type RelatedResourceResolutionState = 'idle' | 'resolving' | 'loading' | 'ready' | 'empty' | 'permission-limited' | 'not-found' | 'error';
|
|
9695
|
+
interface RelatedResourceQueryContext {
|
|
9696
|
+
filters?: Record<string, unknown> | null;
|
|
9697
|
+
filterExpression?: unknown;
|
|
9698
|
+
sort?: string[] | null;
|
|
9699
|
+
limit?: number | null;
|
|
9700
|
+
page?: {
|
|
9701
|
+
index?: number | null;
|
|
9702
|
+
size?: number | null;
|
|
9703
|
+
} | null;
|
|
9704
|
+
meta?: Record<string, unknown> | null;
|
|
9705
|
+
}
|
|
9706
|
+
interface RelatedResourceSurfaceResolverRequest {
|
|
9707
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
9708
|
+
parentRecord?: Record<string, unknown> | null;
|
|
9709
|
+
parentResourceId?: string | number | null;
|
|
9710
|
+
parentResourcePath?: string | null;
|
|
9711
|
+
presentation?: SurfacePresentation;
|
|
9712
|
+
title?: string | null;
|
|
9713
|
+
subtitle?: string | null;
|
|
9714
|
+
icon?: string | null;
|
|
9715
|
+
tableId?: string | null;
|
|
9716
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
9717
|
+
}
|
|
9718
|
+
interface RelatedResourceSurfaceResolution {
|
|
9719
|
+
state: RelatedResourceResolutionState;
|
|
9720
|
+
reason?: string;
|
|
9721
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
9722
|
+
relatedResource?: RelatedResourceSurface | null;
|
|
9723
|
+
parentResourceId?: string | number | null;
|
|
9724
|
+
childResourcePath?: string | null;
|
|
9725
|
+
childResourceKey?: string | null;
|
|
9726
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
9727
|
+
payload?: SurfaceOpenPayload;
|
|
9728
|
+
}
|
|
9729
|
+
declare class RelatedResourceSurfaceResolverService {
|
|
9730
|
+
resolve(request: RelatedResourceSurfaceResolverRequest | null | undefined): RelatedResourceSurfaceResolution;
|
|
9731
|
+
state(state: RelatedResourceResolutionState, reason?: string): RelatedResourceSurfaceResolution;
|
|
9732
|
+
private buildPayload;
|
|
9733
|
+
private buildQueryContext;
|
|
9734
|
+
private resolveParentResourceId;
|
|
9735
|
+
private readPath;
|
|
9736
|
+
private isCompleteRelatedResource;
|
|
9737
|
+
private hasReadOperation;
|
|
9738
|
+
private buildStableTableId;
|
|
9739
|
+
private normalizeResourcePath;
|
|
9740
|
+
private sanitizeStableId;
|
|
9741
|
+
private trim;
|
|
9742
|
+
private clone;
|
|
9743
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RelatedResourceSurfaceResolverService, never>;
|
|
9744
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RelatedResourceSurfaceResolverService>;
|
|
9745
|
+
}
|
|
9746
|
+
|
|
9253
9747
|
type SurfaceOpenMaterializationContext = {
|
|
9254
9748
|
payload?: unknown;
|
|
9255
9749
|
runtime?: unknown;
|
|
@@ -9258,21 +9752,6 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9258
9752
|
private readonly discovery;
|
|
9259
9753
|
materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
|
|
9260
9754
|
private projectMaterializedFormInputs;
|
|
9261
|
-
private buildLocalFormConfig;
|
|
9262
|
-
private buildMaterializedFormFields;
|
|
9263
|
-
private buildMaterializedFormSections;
|
|
9264
|
-
private shouldRenderMaterializedFormField;
|
|
9265
|
-
private isTechnicalRelationIdField;
|
|
9266
|
-
private isResolvedDisplayCompanionField;
|
|
9267
|
-
private resolveDisplayCompanionBase;
|
|
9268
|
-
private hasDisplayCompanion;
|
|
9269
|
-
private isDuplicateMediaUrlField;
|
|
9270
|
-
private looksLikeMediaUrlField;
|
|
9271
|
-
private looksLikeAvatarFieldName;
|
|
9272
|
-
private inferFormControlType;
|
|
9273
|
-
private humanizeFieldName;
|
|
9274
|
-
private stableSectionId;
|
|
9275
|
-
private chunk;
|
|
9276
9755
|
private shouldMaterializeItemReadProjection;
|
|
9277
9756
|
private resolveResponseCardinality;
|
|
9278
9757
|
private shouldMaterializeAsCollection;
|
|
@@ -9280,9 +9759,21 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9280
9759
|
private resolveResourceId;
|
|
9281
9760
|
private resolveItemReadUrl;
|
|
9282
9761
|
private resolveSchemaFields;
|
|
9762
|
+
private materializeArrayProjection;
|
|
9763
|
+
private materializeArrayAsCrud;
|
|
9283
9764
|
private materializeArrayAsTable;
|
|
9765
|
+
private ensureCollectionTableSelectionContract;
|
|
9766
|
+
private ensureTableSelectionConfig;
|
|
9284
9767
|
private projectTableInputs;
|
|
9285
9768
|
private buildLocalTableConfig;
|
|
9769
|
+
private buildRelatedCrudActions;
|
|
9770
|
+
private hasRelatedChildWriteOperations;
|
|
9771
|
+
private resolveRelatedChildOperations;
|
|
9772
|
+
private resolveRelatedResource;
|
|
9773
|
+
private resolveRelatedSelectionKeyField;
|
|
9774
|
+
private resolveSurfacePath;
|
|
9775
|
+
private normalizeResourcePath;
|
|
9776
|
+
private resolveRelatedActionNoun;
|
|
9286
9777
|
private inferColumnsFromData;
|
|
9287
9778
|
private extractCollectionData;
|
|
9288
9779
|
private mergeMaterializationContext;
|
|
@@ -9320,6 +9811,7 @@ interface ResolvedCrudOperation {
|
|
|
9320
9811
|
interface ResolveCrudOperationRequest {
|
|
9321
9812
|
operation: ResourceCrudOperationId;
|
|
9322
9813
|
resourcePath: string;
|
|
9814
|
+
schemaResourcePath?: string | null;
|
|
9323
9815
|
resourceId?: string | number | null;
|
|
9324
9816
|
explicit?: ExplicitCrudResolutionContract | null;
|
|
9325
9817
|
}
|
|
@@ -9357,6 +9849,7 @@ declare class CrudOperationResolutionService {
|
|
|
9357
9849
|
private normalizeResourcePath;
|
|
9358
9850
|
private resolveSchemaResourcePath;
|
|
9359
9851
|
private resolveCanonicalResourcePath;
|
|
9852
|
+
private resolveCanonicalSchemaResourcePath;
|
|
9360
9853
|
private toDiscoveryOptions;
|
|
9361
9854
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudOperationResolutionService, never>;
|
|
9362
9855
|
static ɵprov: i0.ɵɵInjectableDeclaration<CrudOperationResolutionService>;
|
|
@@ -9939,6 +10432,62 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
|
|
|
9939
10432
|
declare function provideRemoteGlobalConfig(url: string): Provider;
|
|
9940
10433
|
declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
|
|
9941
10434
|
|
|
10435
|
+
interface PraxisEnterpriseRuntimeEndpoints {
|
|
10436
|
+
/**
|
|
10437
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10438
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10439
|
+
*/
|
|
10440
|
+
context?: string;
|
|
10441
|
+
/**
|
|
10442
|
+
* Absolute or relative endpoint for the host-owned tenant catalog.
|
|
10443
|
+
* Defaults to the same runtime root as `context`, ending in `/tenants`.
|
|
10444
|
+
*/
|
|
10445
|
+
tenants?: string;
|
|
10446
|
+
/**
|
|
10447
|
+
* Absolute or relative endpoint for host-owned navigation.
|
|
10448
|
+
* Defaults to the same runtime root as `context`, ending in `/navigation`.
|
|
10449
|
+
*/
|
|
10450
|
+
navigation?: string;
|
|
10451
|
+
/**
|
|
10452
|
+
* Absolute or relative endpoint for host-owned security events.
|
|
10453
|
+
* Defaults to the same runtime root as `context`, ending in `/security-events`.
|
|
10454
|
+
*/
|
|
10455
|
+
securityEvents?: string;
|
|
10456
|
+
}
|
|
10457
|
+
interface PraxisEnterpriseRuntimeContextOptions {
|
|
10458
|
+
/**
|
|
10459
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10460
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10461
|
+
* Prefer `endpoints.context` for new integrations.
|
|
10462
|
+
*/
|
|
10463
|
+
endpoint?: string;
|
|
10464
|
+
/**
|
|
10465
|
+
* Host-owned enterprise runtime surfaces. When omitted, URLs are derived from
|
|
10466
|
+
* the configured `endpoint` or from the canonical `/praxis/runtime` root.
|
|
10467
|
+
*/
|
|
10468
|
+
endpoints?: PraxisEnterpriseRuntimeEndpoints;
|
|
10469
|
+
/**
|
|
10470
|
+
* Headers used to resolve the context request. The response remains the source
|
|
10471
|
+
* of truth for tenant/user/environment headers after bootstrap.
|
|
10472
|
+
*/
|
|
10473
|
+
headersFactory?: () => Record<string, string | undefined>;
|
|
10474
|
+
/**
|
|
10475
|
+
* Include `globalThis.PAX_FETCH_HEADERS()` in the request headers when present.
|
|
10476
|
+
*/
|
|
10477
|
+
includeGlobalFetchHeaders?: boolean;
|
|
10478
|
+
/**
|
|
10479
|
+
* Block Angular bootstrap until the context has been resolved.
|
|
10480
|
+
*/
|
|
10481
|
+
blocking?: boolean;
|
|
10482
|
+
/**
|
|
10483
|
+
* Whether bootstrap should fail when the runtime context request fails.
|
|
10484
|
+
*/
|
|
10485
|
+
errorPolicy?: 'fail' | 'ignore';
|
|
10486
|
+
}
|
|
10487
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS: InjectionToken<PraxisEnterpriseRuntimeContextOptions>;
|
|
10488
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY: InjectionToken<() => Promise<void>>;
|
|
10489
|
+
declare function providePraxisEnterpriseRuntimeContext(options?: PraxisEnterpriseRuntimeContextOptions): Provider[];
|
|
10490
|
+
|
|
9942
10491
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
9943
10492
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
9944
10493
|
|
|
@@ -10100,6 +10649,26 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
10100
10649
|
|
|
10101
10650
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
10102
10651
|
|
|
10652
|
+
interface TableDetailInlineRendererContext {
|
|
10653
|
+
node: TableDetailRefNode;
|
|
10654
|
+
row: unknown;
|
|
10655
|
+
rowIndex: number;
|
|
10656
|
+
detailContext?: Record<string, unknown>;
|
|
10657
|
+
}
|
|
10658
|
+
interface TableDetailInlineRendererDefinition {
|
|
10659
|
+
nodeType: TableDetailRefNode['type'];
|
|
10660
|
+
renderMode: 'inline';
|
|
10661
|
+
component: Type<unknown>;
|
|
10662
|
+
buildInputs: (context: TableDetailInlineRendererContext) => Record<string, unknown> | null;
|
|
10663
|
+
}
|
|
10664
|
+
interface TableDetailInlineNodeResolverDefinition {
|
|
10665
|
+
nodeType: TableDetailRefNode['type'];
|
|
10666
|
+
renderMode: 'inline';
|
|
10667
|
+
resolveNode: (context: TableDetailInlineRendererContext) => TableDetailRefNode | null;
|
|
10668
|
+
}
|
|
10669
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_RENDERERS: InjectionToken<readonly TableDetailInlineRendererDefinition[]>;
|
|
10670
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS: InjectionToken<readonly TableDetailInlineNodeResolverDefinition[]>;
|
|
10671
|
+
|
|
10103
10672
|
declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
|
|
10104
10673
|
|
|
10105
10674
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
@@ -10735,7 +11304,7 @@ interface EditorialFormTemplateBuildOptions {
|
|
|
10735
11304
|
* - collections are replaced, not concatenated, unless omitted in overrides
|
|
10736
11305
|
* - template provenance is recorded under config.metadata.template
|
|
10737
11306
|
*/
|
|
10738
|
-
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions):
|
|
11307
|
+
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfigWithSections;
|
|
10739
11308
|
|
|
10740
11309
|
interface FormFieldLayoutItem {
|
|
10741
11310
|
kind: 'field';
|
|
@@ -10818,6 +11387,10 @@ interface FormRow {
|
|
|
10818
11387
|
interface FormSection {
|
|
10819
11388
|
id: string;
|
|
10820
11389
|
title?: string;
|
|
11390
|
+
/** Optional host/runtime CSS classes applied to the section container. */
|
|
11391
|
+
className?: string;
|
|
11392
|
+
/** Optional semantic presentation role used by compact/read-only layouts. */
|
|
11393
|
+
presentationRole?: string;
|
|
10821
11394
|
/** Visual appearance preset for the section container/header. */
|
|
10822
11395
|
appearance?: 'card' | 'plain' | 'step';
|
|
10823
11396
|
/** Optional compact step badge/kicker displayed before the title. */
|
|
@@ -10940,8 +11513,12 @@ interface FormSectionHeaderConfig {
|
|
|
10940
11513
|
initialsMaxLength?: number;
|
|
10941
11514
|
}
|
|
10942
11515
|
interface FormConfig {
|
|
10943
|
-
/**
|
|
10944
|
-
|
|
11516
|
+
/**
|
|
11517
|
+
* Optional manual layout sections.
|
|
11518
|
+
* When omitted, schema-driven runtimes may infer sections from field metadata
|
|
11519
|
+
* instead of forcing hosts to declare an empty manual layout.
|
|
11520
|
+
*/
|
|
11521
|
+
sections?: FormSection[];
|
|
10945
11522
|
/** Editorial or semantic rich content rendered before the form sections/actions. */
|
|
10946
11523
|
formBlocksBefore?: RichContentDocument | null;
|
|
10947
11524
|
/** Editorial or semantic rich content rendered after the form sections and before the primary action area. */
|
|
@@ -10980,7 +11557,16 @@ interface FormConfig {
|
|
|
10980
11557
|
* Útil para padronizar mensagens didáticas no host.
|
|
10981
11558
|
*/
|
|
10982
11559
|
hints?: FormModeHints;
|
|
11560
|
+
/**
|
|
11561
|
+
* Presentation policy for semantic field help (`hint`/`helpText`).
|
|
11562
|
+
* This controls visual density only; validation errors remain inline.
|
|
11563
|
+
*/
|
|
11564
|
+
helpPresentation?: FormHelpPresentationConfig;
|
|
11565
|
+
}
|
|
11566
|
+
interface FormConfigWithSections extends FormConfig {
|
|
11567
|
+
sections: FormSection[];
|
|
10983
11568
|
}
|
|
11569
|
+
declare function withFormConfigSections(config: FormConfig): FormConfigWithSections;
|
|
10984
11570
|
interface FormModeHints {
|
|
10985
11571
|
dataModes: {
|
|
10986
11572
|
create: string;
|
|
@@ -11000,9 +11586,45 @@ interface FormConfigMetadata {
|
|
|
11000
11586
|
/** Last update timestamp */
|
|
11001
11587
|
lastUpdated?: Date;
|
|
11002
11588
|
/** Configuration source */
|
|
11003
|
-
source?: 'local' | 'server' | 'default';
|
|
11589
|
+
source?: 'local' | 'server' | 'default' | 'schema';
|
|
11590
|
+
/**
|
|
11591
|
+
* Layout preset used when this configuration was generated from metadata/schema.
|
|
11592
|
+
* This is provenance for generated configs; it must not be interpreted as a
|
|
11593
|
+
* command to reprocess authored or persisted layouts.
|
|
11594
|
+
*/
|
|
11595
|
+
generatedLayoutPreset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
11596
|
+
/** Runtime policy used to materialize schema-driven layout, when applicable. */
|
|
11597
|
+
schemaLayoutPolicy?: {
|
|
11598
|
+
source: 'authored' | 'schema';
|
|
11599
|
+
preset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
11600
|
+
intent?: 'detail' | 'command';
|
|
11601
|
+
lifecycle?: 'initial' | 'live';
|
|
11602
|
+
persistence?: 'transient' | 'authorable';
|
|
11603
|
+
detachBehavior?: 'none' | 'explicit';
|
|
11604
|
+
schemaOperation?: 'detail' | 'create' | 'update' | 'view';
|
|
11605
|
+
schemaType?: 'request' | 'response';
|
|
11606
|
+
detailSummary?: {
|
|
11607
|
+
includeFields?: readonly string[];
|
|
11608
|
+
excludeFields?: readonly string[];
|
|
11609
|
+
includeGroups?: readonly string[];
|
|
11610
|
+
excludeGroups?: readonly string[];
|
|
11611
|
+
includeRoles?: readonly string[];
|
|
11612
|
+
excludeRoles?: readonly string[];
|
|
11613
|
+
maxFields?: number;
|
|
11614
|
+
fieldPriority?: Record<string, number>;
|
|
11615
|
+
groupPriority?: Record<string, number>;
|
|
11616
|
+
columns?: number;
|
|
11617
|
+
responsiveColumns?: Partial<Record<'xs' | 'sm' | 'md' | 'lg' | 'xl', number>>;
|
|
11618
|
+
};
|
|
11619
|
+
};
|
|
11004
11620
|
/** Server data hash for change detection */
|
|
11005
11621
|
serverHash?: string;
|
|
11622
|
+
/**
|
|
11623
|
+
* Host-resolved security authorities used only for fieldAccess UX
|
|
11624
|
+
* materialization. Do not populate this from runtime capabilities unless the
|
|
11625
|
+
* host/backend explicitly declares that both vocabularies are shared.
|
|
11626
|
+
*/
|
|
11627
|
+
fieldAccessAuthorities?: string[];
|
|
11006
11628
|
/**
|
|
11007
11629
|
* Server schema identity used to build this configuration.
|
|
11008
11630
|
* Format comes from buildSchemaId(path|operation|schemaType|internal|tenant|locale|origin).
|
|
@@ -11190,7 +11812,7 @@ interface FormActionConfirmationEvent {
|
|
|
11190
11812
|
confirmed: boolean;
|
|
11191
11813
|
}
|
|
11192
11814
|
|
|
11193
|
-
type RulePropertyType = 'string' | 'boolean' | 'object' | 'enum' | 'number';
|
|
11815
|
+
type RulePropertyType = 'string' | 'boolean' | 'object' | 'array' | 'enum' | 'number';
|
|
11194
11816
|
interface RulePropertyDefinition {
|
|
11195
11817
|
name: string;
|
|
11196
11818
|
type: RulePropertyType;
|
|
@@ -11703,6 +12325,10 @@ interface WidgetShellAction {
|
|
|
11703
12325
|
tooltip?: string;
|
|
11704
12326
|
/** Visual style of the action button. */
|
|
11705
12327
|
variant?: 'icon' | 'text' | 'outlined';
|
|
12328
|
+
/** Optional icon rendered when the action is pressed. Falls back to `icon`. */
|
|
12329
|
+
pressedIcon?: string;
|
|
12330
|
+
/** Toggle state exposed through aria-pressed for shell actions that enable/disable a runtime mode. */
|
|
12331
|
+
pressed?: boolean | string;
|
|
11706
12332
|
/** Placement inside the shell header. Defaults to 'header'. */
|
|
11707
12333
|
placement?: WidgetShellActionPlacement;
|
|
11708
12334
|
/** Output name to emit to the page builder (defaults to `shell:${id}`). */
|
|
@@ -11784,6 +12410,8 @@ interface WidgetShellActionEvent {
|
|
|
11784
12410
|
emit?: string;
|
|
11785
12411
|
/** Optional payload for the action. */
|
|
11786
12412
|
payload?: any;
|
|
12413
|
+
/** Toggle state captured when the action was emitted. */
|
|
12414
|
+
pressed?: boolean | string;
|
|
11787
12415
|
/** Original action definition, when available. */
|
|
11788
12416
|
action?: WidgetShellAction;
|
|
11789
12417
|
}
|
|
@@ -12124,6 +12752,35 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
|
|
|
12124
12752
|
status?: PersistedPageConfig['status'];
|
|
12125
12753
|
}): PersistedPageConfig;
|
|
12126
12754
|
|
|
12755
|
+
type PraxisResourceEventKind = 'row-click' | 'row-double-click' | 'selection-change' | 'row-action' | 'toolbar-action' | 'bulk-action' | 'export-action' | 'surface-open' | 'widget-event' | 'custom';
|
|
12756
|
+
interface PraxisResourceEvent<TPayload = unknown> {
|
|
12757
|
+
/** Canonical resource-level intent represented by the original component output. */
|
|
12758
|
+
kind: PraxisResourceEventKind;
|
|
12759
|
+
/** Component selector/id that originated the event, such as praxis-table. */
|
|
12760
|
+
sourceComponentId: string;
|
|
12761
|
+
/** Legacy/public output that produced this envelope, such as rowClick or toolbarAction. */
|
|
12762
|
+
sourceOutput?: string;
|
|
12763
|
+
/** Lifecycle phase for enterprise orchestration, analytics, auditing, and feedback. */
|
|
12764
|
+
phase?: 'request' | 'success' | 'error' | 'notification';
|
|
12765
|
+
resourcePath?: string | null;
|
|
12766
|
+
resourceKey?: string | null;
|
|
12767
|
+
resourceId?: string | number | null;
|
|
12768
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
12769
|
+
payload: TPayload;
|
|
12770
|
+
context?: Record<string, unknown> | null;
|
|
12771
|
+
}
|
|
12772
|
+
interface PraxisResourceRowClickPayload<TRow = unknown> {
|
|
12773
|
+
row: TRow;
|
|
12774
|
+
index: number;
|
|
12775
|
+
}
|
|
12776
|
+
interface PraxisResourceSelectionPayload<TRow = unknown> {
|
|
12777
|
+
trigger: string;
|
|
12778
|
+
row?: TRow;
|
|
12779
|
+
selectedRows: TRow[];
|
|
12780
|
+
selectedCount: number;
|
|
12781
|
+
tableId?: string;
|
|
12782
|
+
}
|
|
12783
|
+
|
|
12127
12784
|
type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
|
|
12128
12785
|
interface RecordRelatedSurfaceEndpoint {
|
|
12129
12786
|
widget: string;
|
|
@@ -12429,6 +13086,49 @@ declare function mapFieldDefinitionToMetadata(field: FieldDefinition): FieldMeta
|
|
|
12429
13086
|
*/
|
|
12430
13087
|
declare function mapFieldDefinitionsToMetadata(fields: FieldDefinition[]): FieldMetadata[];
|
|
12431
13088
|
|
|
13089
|
+
type DynamicFormLayoutSource = 'authored' | 'schema';
|
|
13090
|
+
type DynamicFormSchemaLayoutPreset = 'default' | 'compactPresentation' | 'groupedCommand';
|
|
13091
|
+
type DynamicFormLayoutIntent = 'detail' | 'command';
|
|
13092
|
+
type DynamicFormLayoutLifecycle = 'initial' | 'live';
|
|
13093
|
+
type DynamicFormLayoutPersistence = 'transient' | 'authorable';
|
|
13094
|
+
type DynamicFormLayoutDetachBehavior = 'none' | 'explicit';
|
|
13095
|
+
type DynamicFormSchemaOperation = 'detail' | 'create' | 'update' | 'view';
|
|
13096
|
+
type DynamicFormSchemaType = 'request' | 'response';
|
|
13097
|
+
type DynamicFormResponsiveBreakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
13098
|
+
type DynamicFormResponsiveColumns = Partial<Record<DynamicFormResponsiveBreakpoint, number>>;
|
|
13099
|
+
interface DynamicFormDetailSummaryPolicy {
|
|
13100
|
+
includeFields?: readonly string[];
|
|
13101
|
+
excludeFields?: readonly string[];
|
|
13102
|
+
includeGroups?: readonly string[];
|
|
13103
|
+
excludeGroups?: readonly string[];
|
|
13104
|
+
includeRoles?: readonly string[];
|
|
13105
|
+
excludeRoles?: readonly string[];
|
|
13106
|
+
maxFields?: number;
|
|
13107
|
+
fieldPriority?: Record<string, number>;
|
|
13108
|
+
groupPriority?: Record<string, number>;
|
|
13109
|
+
columns?: number;
|
|
13110
|
+
responsiveColumns?: DynamicFormResponsiveColumns;
|
|
13111
|
+
}
|
|
13112
|
+
interface DynamicFormLayoutPolicy {
|
|
13113
|
+
source: DynamicFormLayoutSource;
|
|
13114
|
+
preset?: DynamicFormSchemaLayoutPreset;
|
|
13115
|
+
intent?: DynamicFormLayoutIntent;
|
|
13116
|
+
lifecycle?: DynamicFormLayoutLifecycle;
|
|
13117
|
+
persistence?: DynamicFormLayoutPersistence;
|
|
13118
|
+
detachBehavior?: DynamicFormLayoutDetachBehavior;
|
|
13119
|
+
schemaOperation?: DynamicFormSchemaOperation;
|
|
13120
|
+
schemaType?: DynamicFormSchemaType;
|
|
13121
|
+
detailSummary?: DynamicFormDetailSummaryPolicy;
|
|
13122
|
+
}
|
|
13123
|
+
interface MaterializeFormLayoutOptions {
|
|
13124
|
+
policy?: DynamicFormLayoutPolicy | null;
|
|
13125
|
+
defaultSectionTitle?: string;
|
|
13126
|
+
presentationRoleMap?: Record<string, string>;
|
|
13127
|
+
includeHidden?: boolean;
|
|
13128
|
+
}
|
|
13129
|
+
declare function materializeFormLayoutFromMetadata(fields: FieldMetadata[], options?: MaterializeFormLayoutOptions): FormConfigWithSections;
|
|
13130
|
+
declare function normalizeLayoutPolicy(policy?: DynamicFormLayoutPolicy | null): Required<Pick<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>> & Omit<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>;
|
|
13131
|
+
|
|
12432
13132
|
/**
|
|
12433
13133
|
* Compose headers including optional API version information.
|
|
12434
13134
|
* If the entry already defines custom headers, they will be preserved.
|
|
@@ -12448,7 +13148,7 @@ type EnsureIdsOptions = {
|
|
|
12448
13148
|
* Garante que todas as sections/rows/columns do FormConfig possuam IDs únicos.
|
|
12449
13149
|
* Retorna um NOVO objeto (sem mutar o original).
|
|
12450
13150
|
*/
|
|
12451
|
-
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions):
|
|
13151
|
+
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions): FormConfigWithSections;
|
|
12452
13152
|
|
|
12453
13153
|
declare function resolveSpan(span?: ColumnSpan): Required<ColumnSpan>;
|
|
12454
13154
|
declare function resolveOffset(offset?: ColumnOffset): Required<ColumnOffset>;
|
|
@@ -12786,7 +13486,7 @@ interface ComponentAuthoringManifest {
|
|
|
12786
13486
|
examples: ManifestExample[];
|
|
12787
13487
|
/**
|
|
12788
13488
|
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12789
|
-
* base, mas precisam expor
|
|
13489
|
+
* base, mas precisam expor semântica granular por componente/controlType.
|
|
12790
13490
|
*/
|
|
12791
13491
|
controlProfiles?: ManifestControlProfile[];
|
|
12792
13492
|
}
|
|
@@ -12945,13 +13645,13 @@ interface ManifestControlProfile {
|
|
|
12945
13645
|
profileId: string;
|
|
12946
13646
|
/** Nome curto usado por ferramentas de authoring. */
|
|
12947
13647
|
title: string;
|
|
12948
|
-
/** Explica a
|
|
13648
|
+
/** Explica a semântica que este perfil adiciona sobre o manifesto base. */
|
|
12949
13649
|
description: string;
|
|
12950
13650
|
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
12951
13651
|
appliesTo: ManifestControlProfileApplicability;
|
|
12952
13652
|
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
12953
13653
|
editableTargets?: ManifestTarget[];
|
|
12954
|
-
/**
|
|
13654
|
+
/** Operações específicas do perfil/controlType. */
|
|
12955
13655
|
operations: ManifestOperation[];
|
|
12956
13656
|
/** Validadores especificos do perfil/controlType. */
|
|
12957
13657
|
validators: ManifestValidator[];
|
|
@@ -13015,7 +13715,7 @@ interface CapabilityCatalog extends AiCapabilityCatalog {
|
|
|
13015
13715
|
}
|
|
13016
13716
|
declare const DYNAMIC_PAGE_AI_CAPABILITIES: CapabilityCatalog;
|
|
13017
13717
|
|
|
13018
|
-
type ComponentContextOptionMode = 'enum' | 'suggested';
|
|
13718
|
+
type ComponentContextOptionMode = 'enum' | 'suggested' | 'expression';
|
|
13019
13719
|
interface ComponentContextOption {
|
|
13020
13720
|
value: string | number;
|
|
13021
13721
|
label?: string;
|
|
@@ -13024,6 +13724,7 @@ interface ComponentContextOption {
|
|
|
13024
13724
|
interface ComponentContextOptionsByPathEntry {
|
|
13025
13725
|
mode: ComponentContextOptionMode;
|
|
13026
13726
|
options: ComponentContextOption[];
|
|
13727
|
+
suggestedRoots?: string[];
|
|
13027
13728
|
}
|
|
13028
13729
|
interface ComponentActionParam {
|
|
13029
13730
|
name: string;
|
|
@@ -13112,6 +13813,7 @@ interface WidgetEventEnvelope {
|
|
|
13112
13813
|
output?: string;
|
|
13113
13814
|
payload?: any;
|
|
13114
13815
|
path?: WidgetEventPathSegment[];
|
|
13816
|
+
resourceEvent?: PraxisResourceEvent;
|
|
13115
13817
|
}
|
|
13116
13818
|
type WidgetResolutionPhase = 'ready' | 'metadata-missing' | 'create-error' | 'validation-error' | 'bind-error';
|
|
13117
13819
|
interface WidgetResolutionDiagnostic {
|
|
@@ -13458,6 +14160,7 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
13458
14160
|
get overflowHeaderActions(): ActionList;
|
|
13459
14161
|
private get maxHeaderActions();
|
|
13460
14162
|
get windowActions(): ActionList;
|
|
14163
|
+
displayActionIcon(action: WidgetShellAction): string | undefined;
|
|
13461
14164
|
onAction(action: WidgetShellAction, ev: MouseEvent): void;
|
|
13462
14165
|
onHeaderPointerDown(event: PointerEvent): void;
|
|
13463
14166
|
onHeaderKeydown(event: KeyboardEvent): void;
|
|
@@ -14015,6 +14718,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14015
14718
|
private enrichRuntimeWidgetInputs;
|
|
14016
14719
|
private buildRichContentHostCapabilities;
|
|
14017
14720
|
private dispatchRichContentAction;
|
|
14721
|
+
private emitRichContentCustomAction;
|
|
14018
14722
|
private isRichContentActionAvailable;
|
|
14019
14723
|
private hasRichContentCapability;
|
|
14020
14724
|
private resolveComponentBindingPath;
|
|
@@ -14047,6 +14751,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14047
14751
|
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
14048
14752
|
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
14049
14753
|
private handleSetInputCommand;
|
|
14754
|
+
private handleToggleInputCommand;
|
|
14050
14755
|
private mergeOrder;
|
|
14051
14756
|
private maybeExecuteMappedAction;
|
|
14052
14757
|
private resolveActionPayload;
|
|
@@ -14199,6 +14904,9 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14199
14904
|
*/
|
|
14200
14905
|
renderTitleInsideBody: boolean;
|
|
14201
14906
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
14907
|
+
rowClick: EventEmitter<unknown>;
|
|
14908
|
+
selectionChange: EventEmitter<unknown>;
|
|
14909
|
+
resourceEvent: EventEmitter<PraxisResourceEvent<unknown>>;
|
|
14202
14910
|
private beforeWidgetLoader?;
|
|
14203
14911
|
private mainWidgetLoader?;
|
|
14204
14912
|
private afterWidgetLoader?;
|
|
@@ -14216,10 +14924,82 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14216
14924
|
private isRichContentActionAvailable;
|
|
14217
14925
|
private hasRichContentCapability;
|
|
14218
14926
|
onSlotWidgetEvent(ownerWidgetKey: string, event: WidgetEventEnvelope): void;
|
|
14927
|
+
private toResourceEvent;
|
|
14928
|
+
private readRecord;
|
|
14929
|
+
private stringOrNull;
|
|
14930
|
+
private resourceIdOrNull;
|
|
14931
|
+
private toResourceSurface;
|
|
14219
14932
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
|
|
14220
|
-
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>;
|
|
14933
|
+
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>;
|
|
14221
14934
|
}
|
|
14222
14935
|
|
|
14936
|
+
type RelatedResourceOutletMode = 'inline' | 'open-action';
|
|
14937
|
+
declare class PraxisRelatedResourceOutletComponent {
|
|
14938
|
+
private readonly resolver;
|
|
14939
|
+
private readonly materializer;
|
|
14940
|
+
private readonly i18n;
|
|
14941
|
+
private readonly injector;
|
|
14942
|
+
private discoverySubscription?;
|
|
14943
|
+
private discoveryRequestKey;
|
|
14944
|
+
private materializationRequestKey;
|
|
14945
|
+
readonly surface: i0.InputSignal<ResourceSurfaceCatalogItem | null>;
|
|
14946
|
+
readonly surfaceId: i0.InputSignal<string | null>;
|
|
14947
|
+
readonly surfaceCatalog: i0.InputSignal<ResourceSurfaceCatalogResponse | null>;
|
|
14948
|
+
readonly discoverySource: i0.InputSignal<ResourceLinkSource | null>;
|
|
14949
|
+
readonly parentLinks: i0.InputSignal<RestApiLinks | RestApiResponse<unknown> | null>;
|
|
14950
|
+
readonly apiEndpointKey: i0.InputSignal<ApiEndpoint | null>;
|
|
14951
|
+
readonly apiUrlEntry: i0.InputSignal<ApiUrlEntry | null>;
|
|
14952
|
+
readonly parentRecord: i0.InputSignal<Record<string, unknown> | null>;
|
|
14953
|
+
readonly parentResourceId: i0.InputSignal<string | number | null>;
|
|
14954
|
+
readonly parentResourcePath: i0.InputSignal<string | null>;
|
|
14955
|
+
readonly presentation: i0.InputSignal<SurfacePresentation>;
|
|
14956
|
+
readonly title: i0.InputSignal<string | null>;
|
|
14957
|
+
readonly subtitle: i0.InputSignal<string | null>;
|
|
14958
|
+
readonly icon: i0.InputSignal<string | null>;
|
|
14959
|
+
readonly tableId: i0.InputSignal<string | null>;
|
|
14960
|
+
readonly queryContext: i0.InputSignal<RelatedResourceQueryContext | null>;
|
|
14961
|
+
readonly mode: i0.InputSignal<RelatedResourceOutletMode>;
|
|
14962
|
+
readonly state: i0.InputSignal<RelatedResourceResolutionState | null>;
|
|
14963
|
+
readonly stateReason: i0.InputSignal<string | null>;
|
|
14964
|
+
readonly compact: i0.InputSignal<boolean>;
|
|
14965
|
+
readonly strictValidation: i0.InputSignal<boolean>;
|
|
14966
|
+
readonly ownerWidgetKey: i0.InputSignal<string>;
|
|
14967
|
+
readonly surfaceOpen: i0.OutputEmitterRef<SurfaceOpenPayload>;
|
|
14968
|
+
readonly widgetEvent: i0.OutputEmitterRef<WidgetEventEnvelope>;
|
|
14969
|
+
readonly resourceEvent: i0.OutputEmitterRef<PraxisResourceEvent<unknown>>;
|
|
14970
|
+
private readonly discoveredSurface;
|
|
14971
|
+
private readonly discoveryState;
|
|
14972
|
+
private readonly discoveryStateReason;
|
|
14973
|
+
private readonly materializedPayload;
|
|
14974
|
+
readonly resolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
14975
|
+
readonly renderResolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
14976
|
+
readonly isBusy: i0.Signal<boolean>;
|
|
14977
|
+
constructor();
|
|
14978
|
+
openRelated(): void;
|
|
14979
|
+
onWidgetEvent(event: WidgetEventEnvelope): void;
|
|
14980
|
+
stateIcon(): string;
|
|
14981
|
+
stateTitle(): string;
|
|
14982
|
+
stateDescription(): string;
|
|
14983
|
+
t(key: string, fallback: string): string;
|
|
14984
|
+
private defaultTitle;
|
|
14985
|
+
private defaultDescription;
|
|
14986
|
+
private applyCatalogSurface;
|
|
14987
|
+
private resetDiscoveryState;
|
|
14988
|
+
private discoveryOptions;
|
|
14989
|
+
private resolveFallbackSurfaceCatalogHref;
|
|
14990
|
+
private normalizeResourcePath;
|
|
14991
|
+
private buildDiscoveryRequestKey;
|
|
14992
|
+
private buildMaterializationRequestKey;
|
|
14993
|
+
private isPermissionError;
|
|
14994
|
+
private extractResourceEvent;
|
|
14995
|
+
private trim;
|
|
14996
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRelatedResourceOutletComponent, never>;
|
|
14997
|
+
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; }; "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>;
|
|
14998
|
+
}
|
|
14999
|
+
|
|
15000
|
+
declare const PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA: ComponentDocMeta;
|
|
15001
|
+
declare function providePraxisRelatedResourceOutletMetadata(): Provider;
|
|
15002
|
+
|
|
14223
15003
|
interface EmptyAction {
|
|
14224
15004
|
label: string;
|
|
14225
15005
|
icon?: string;
|
|
@@ -14598,5 +15378,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
14598
15378
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
14599
15379
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
14600
15380
|
|
|
14601
|
-
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 };
|
|
14602
|
-
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, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, 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 };
|
|
15381
|
+
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, EnterpriseRuntimeContextService, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS, PRAXIS_TABLE_DETAIL_INLINE_RENDERERS, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRelatedResourceOutletComponent, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RelatedResourceSurfaceResolverService, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, evaluateFieldAccess, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisPresentationVisualizationTableSafe, isPraxisRuntimeGlobalActionEffect, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, materializeFormLayoutFromMetadata, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldAccessMetadata, normalizeFieldConstraints, normalizeFieldPresentation, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLayoutPolicy, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisPresentationVisualization, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisEnterpriseRuntimeContext, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRelatedResourceOutletMetadata, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, renderPraxisPresentationVisualizationHtml, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveColumnTypeFromFieldDefinition, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveFieldPresentation, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withFormConfigSections, withMessage, withPraxisHttpLoading };
|
|
15382
|
+
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, 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, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, EnterpriseRuntimeContext, EnterpriseRuntimeContextHeaders, EnterpriseRuntimeContextSwitchCommand, EnterpriseRuntimeContextSwitchResponse, EnterpriseRuntimeNavigationNode, EnterpriseRuntimeNavigationResponse, EnterpriseRuntimeSecurityEvent, EnterpriseRuntimeSecurityEventsResponse, EnterpriseRuntimeTenant, EnterpriseRuntimeTenantsResponse, EnterpriseRuntimeUser, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldAccessEvaluationContext, FieldAccessEvaluationResult, FieldAccessMetadata, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldPresentationAppearance, FieldPresentationConfig, FieldPresentationInteractions, FieldPresentationJsonLogicEvaluator, FieldPresentationRule, FieldPresentationTone, FieldPresenterKind, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormConfigWithSections, FormCustomActionEvent, FormEntityEvent, FormFieldHelpDisplay, FormFieldLayoutItem, FormHelpPresentationConfig, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MaterializeFormLayoutOptions, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisEnterpriseRuntimeContextOptions, PraxisEnterpriseRuntimeEndpoints, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisPresentationVisualizationConfig, PraxisPresentationVisualizationHtmlOptions, PraxisPresentationVisualizationItem, PraxisPresentationVisualizationKind, PraxisPresentationVisualizationPoint, PraxisPresentationVisualizationSegment, PraxisPresentationVisualizationSize, PraxisPresentationVisualizationSurface, PraxisPresentationVisualizationThreshold, PraxisPresentationVisualizationTone, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisResourceEvent, PraxisResourceEventKind, PraxisResourceRowClickPayload, PraxisResourceSelectionPayload, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RelatedResourceChildOperation, RelatedResourceOutletMode, RelatedResourceQueryContext, RelatedResourceResolutionState, RelatedResourceSurface, RelatedResourceSurfaceResolution, RelatedResourceSurfaceResolverRequest, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolveFieldPresentationOptions, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAiAssistantConfig, TableAiConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineNodeResolverDefinition, TableDetailInlineRendererContext, TableDetailInlineRendererDefinition, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|