@praxisui/core 9.0.0-beta.9 → 9.0.0-rc.1
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 +110 -1
- package/ai/component-registry.json +4342 -0
- package/fesm2022/praxisui-core.mjs +6763 -1159
- package/package.json +19 -12
- package/theme-bridge.css +11 -0
- package/types/praxisui-core.d.ts +1521 -104
package/types/praxisui-core.d.ts
CHANGED
|
@@ -80,6 +80,8 @@ interface LocateRequest {
|
|
|
80
80
|
type OptionSourceType = 'RESOURCE_ENTITY' | 'DISTINCT_DIMENSION' | 'CATEGORICAL_BUCKET' | 'LIGHT_LOOKUP' | 'STATIC_CANONICAL';
|
|
81
81
|
type OptionSourceSearchMode = 'none' | 'starts-with' | 'contains' | 'exact';
|
|
82
82
|
type OptionSourceCachePolicy = 'none' | 'request-scope' | 'session-scope' | 'etag-aware';
|
|
83
|
+
type OptionSourceSelectedReloadPolicy = 'required' | 'supported' | 'unsupported-with-waiver' | 'not-applicable';
|
|
84
|
+
type OptionSourceInvalidSortPolicy = 'reject' | 'ignore' | 'unsupported';
|
|
83
85
|
type LookupOpenDetailMode = 'samePage' | 'newTab' | 'drawer' | 'modal' | 'route';
|
|
84
86
|
type LookupStatusTone = 'success' | 'warning' | 'danger' | 'neutral';
|
|
85
87
|
type LookupDialogSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
@@ -298,6 +300,8 @@ interface OptionSourceMetadata {
|
|
|
298
300
|
pageSize?: number;
|
|
299
301
|
includeIds?: boolean;
|
|
300
302
|
cachePolicy?: OptionSourceCachePolicy;
|
|
303
|
+
selectedReloadPolicy?: OptionSourceSelectedReloadPolicy;
|
|
304
|
+
invalidSortPolicy?: OptionSourceInvalidSortPolicy;
|
|
301
305
|
}
|
|
302
306
|
declare function isEntityLookupResultSelectable(result?: Pick<EntityLookupResult<any>, 'extra'> | null): boolean;
|
|
303
307
|
declare function isEntityLookupPayloadMode(value: unknown): value is EntityLookupPayloadMode;
|
|
@@ -322,7 +326,7 @@ declare function serializeEntityLookupValueForPayload(value: unknown, options?:
|
|
|
322
326
|
}): unknown;
|
|
323
327
|
declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
|
|
324
328
|
|
|
325
|
-
type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
329
|
+
type RuleContextRoot = 'form' | 'row' | 'rowData' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
326
330
|
type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
|
|
327
331
|
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
332
|
type PraxisHostRuleOperator = string & {
|
|
@@ -1176,9 +1180,74 @@ declare function readPraxisExportValue(item: unknown, path: string): unknown;
|
|
|
1176
1180
|
declare function escapePraxisExportCell(value: unknown, policy?: PraxisExportSecurityPolicy): string;
|
|
1177
1181
|
declare function serializePraxisCollectionToCsv<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): string;
|
|
1178
1182
|
declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExportRequest<T>): string;
|
|
1183
|
+
declare function serializePraxisCollectionToExcel<T>(request: PraxisCollectionExportRequest<T>, policy?: PraxisExportSecurityPolicy): Blob;
|
|
1179
1184
|
declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
|
|
1180
1185
|
declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
|
|
1181
1186
|
|
|
1187
|
+
type PraxisPresentationVisualizationKind = 'line' | 'area' | 'column' | 'comparison' | 'stackedBar' | 'radial' | 'harveyBall' | 'bullet' | 'delta' | 'processFlow';
|
|
1188
|
+
type PraxisPresentationVisualizationSurface = 'table-cell' | 'list-item' | 'object-header' | 'card-summary' | 'form-presentation';
|
|
1189
|
+
type PraxisPresentationVisualizationSize = 'xs' | 'sm' | 'md' | 'lg' | 'responsive';
|
|
1190
|
+
type PraxisPresentationVisualizationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger' | 'critical';
|
|
1191
|
+
interface PraxisPresentationVisualizationPoint {
|
|
1192
|
+
label?: string;
|
|
1193
|
+
value: number;
|
|
1194
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1195
|
+
}
|
|
1196
|
+
interface PraxisPresentationVisualizationSegment {
|
|
1197
|
+
label?: string;
|
|
1198
|
+
value: number;
|
|
1199
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1200
|
+
}
|
|
1201
|
+
interface PraxisPresentationVisualizationThreshold {
|
|
1202
|
+
label?: string;
|
|
1203
|
+
value: number;
|
|
1204
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1205
|
+
}
|
|
1206
|
+
interface PraxisPresentationVisualizationItem {
|
|
1207
|
+
id?: string;
|
|
1208
|
+
label?: string;
|
|
1209
|
+
value?: number;
|
|
1210
|
+
icon?: string;
|
|
1211
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1212
|
+
state?: string;
|
|
1213
|
+
}
|
|
1214
|
+
interface PraxisPresentationVisualizationConfig {
|
|
1215
|
+
kind: PraxisPresentationVisualizationKind;
|
|
1216
|
+
surface?: PraxisPresentationVisualizationSurface;
|
|
1217
|
+
size?: PraxisPresentationVisualizationSize;
|
|
1218
|
+
value?: unknown;
|
|
1219
|
+
valueExpr?: JsonLogicExpression | string;
|
|
1220
|
+
valueSuffix?: string;
|
|
1221
|
+
valueSuffixExpr?: JsonLogicExpression | string;
|
|
1222
|
+
total?: number;
|
|
1223
|
+
totalExpr?: JsonLogicExpression | string;
|
|
1224
|
+
target?: number;
|
|
1225
|
+
targetExpr?: JsonLogicExpression | string;
|
|
1226
|
+
baseline?: number;
|
|
1227
|
+
baselineExpr?: JsonLogicExpression | string;
|
|
1228
|
+
points?: PraxisPresentationVisualizationPoint[];
|
|
1229
|
+
pointsExpr?: JsonLogicExpression | string;
|
|
1230
|
+
segments?: PraxisPresentationVisualizationSegment[];
|
|
1231
|
+
segmentsExpr?: JsonLogicExpression | string;
|
|
1232
|
+
thresholds?: PraxisPresentationVisualizationThreshold[];
|
|
1233
|
+
thresholdsExpr?: JsonLogicExpression | string;
|
|
1234
|
+
items?: PraxisPresentationVisualizationItem[];
|
|
1235
|
+
itemsExpr?: JsonLogicExpression | string;
|
|
1236
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1237
|
+
toneExpr?: JsonLogicExpression | string;
|
|
1238
|
+
ariaLabel?: string;
|
|
1239
|
+
ariaLabelExpr?: JsonLogicExpression | string;
|
|
1240
|
+
fallbackText: string;
|
|
1241
|
+
fallbackTextExpr?: JsonLogicExpression | string;
|
|
1242
|
+
}
|
|
1243
|
+
type ResolvedPraxisPresentationVisualizationConfig = PraxisPresentationVisualizationConfig;
|
|
1244
|
+
declare function normalizePraxisPresentationVisualization(value: PraxisPresentationVisualizationConfig | null | undefined): ResolvedPraxisPresentationVisualizationConfig | undefined;
|
|
1245
|
+
declare function isPraxisPresentationVisualizationTableSafe(value: PraxisPresentationVisualizationConfig | null | undefined): boolean;
|
|
1246
|
+
interface PraxisPresentationVisualizationHtmlOptions {
|
|
1247
|
+
locale?: string;
|
|
1248
|
+
}
|
|
1249
|
+
declare function renderPraxisPresentationVisualizationHtml(value: PraxisPresentationVisualizationConfig | null | undefined, options?: PraxisPresentationVisualizationHtmlOptions): string;
|
|
1250
|
+
|
|
1182
1251
|
type PraxisRuntimeEffectTrigger = 'on-condition-enter' | 'on-value-change' | 'while-true';
|
|
1183
1252
|
interface PraxisEffectPolicy {
|
|
1184
1253
|
trigger?: PraxisRuntimeEffectTrigger;
|
|
@@ -1244,8 +1313,124 @@ type ResourceSurfaceResponseCardinality = 'OBJECT' | 'COLLECTION' | 'PAGE' | 'VO
|
|
|
1244
1313
|
type ResourceActionScope = 'COLLECTION' | 'ITEM';
|
|
1245
1314
|
type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
1246
1315
|
type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
|
|
1247
|
-
type
|
|
1316
|
+
type ResourceCanonicalCapabilityOperationId = 'byId' | 'update' | 'all' | 'filter' | 'cursor' | 'options' | 'optionSources' | 'statsGroupBy' | 'statsTimeSeries' | 'statsDistribution' | 'statsComparison' | 'export' | 'duplicate-draft';
|
|
1317
|
+
type ResourceKnownCapabilityOperationId = ResourceCrudOperationId | ResourceCanonicalCapabilityOperationId;
|
|
1318
|
+
type ResourceCapabilityOperationId = ResourceKnownCapabilityOperationId | string;
|
|
1319
|
+
type ResourceStatsMode = 'group-by' | 'timeseries' | 'distribution' | 'distribution-terms' | 'distribution-histogram' | 'GROUP_BY' | 'TIME_SERIES' | 'DISTRIBUTION_TERMS' | 'DISTRIBUTION_HISTOGRAM' | 'METRIC_FIELD' | (string & {});
|
|
1320
|
+
type ResourceStatsMetric = 'COUNT' | 'DISTINCT_COUNT' | 'SUM' | 'AVG' | 'MIN' | 'MAX' | (string & {});
|
|
1321
|
+
interface ResourceStatsFieldCapability {
|
|
1322
|
+
field: string;
|
|
1323
|
+
label?: string | null;
|
|
1324
|
+
description?: string | null;
|
|
1325
|
+
type?: string | null;
|
|
1326
|
+
format?: string | null;
|
|
1327
|
+
propertyPath?: string | null;
|
|
1328
|
+
keyAndLabelDistinct?: boolean | null;
|
|
1329
|
+
metrics?: ResourceStatsMetric[];
|
|
1330
|
+
modes?: ResourceStatsMode[];
|
|
1331
|
+
groupByEligible?: boolean | null;
|
|
1332
|
+
timeSeriesEligible?: boolean | null;
|
|
1333
|
+
distributionTermsEligible?: boolean | null;
|
|
1334
|
+
distributionHistogramEligible?: boolean | null;
|
|
1335
|
+
metricFieldEligible?: boolean | null;
|
|
1336
|
+
filterable?: boolean | null;
|
|
1337
|
+
metadata?: Record<string, unknown> | null;
|
|
1338
|
+
}
|
|
1339
|
+
interface ResourceStatsCapability {
|
|
1340
|
+
supported?: boolean | null;
|
|
1341
|
+
modes?: ResourceStatsMode[];
|
|
1342
|
+
metrics?: ResourceStatsMetric[];
|
|
1343
|
+
fields?: ResourceStatsFieldCapability[];
|
|
1344
|
+
metadata?: Record<string, unknown> | null;
|
|
1345
|
+
}
|
|
1346
|
+
type ResourceSchemaCatalogHttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'OPTIONS';
|
|
1347
|
+
type ResourceSchemaCatalogVisualSource = 'api-group' | 'api-resource' | 'resource-key';
|
|
1348
|
+
interface ResourceSchemaCatalogQuery {
|
|
1349
|
+
group?: string;
|
|
1350
|
+
path?: string;
|
|
1351
|
+
operation?: string;
|
|
1352
|
+
}
|
|
1353
|
+
interface ResourceSchemaCatalogVisual {
|
|
1354
|
+
title: string | null;
|
|
1355
|
+
description: string | null;
|
|
1356
|
+
icon: string | null;
|
|
1357
|
+
tone: string | null;
|
|
1358
|
+
source: ResourceSchemaCatalogVisualSource | null;
|
|
1359
|
+
}
|
|
1360
|
+
interface ResourceSchemaCatalogField {
|
|
1361
|
+
name: string;
|
|
1362
|
+
type: string | null;
|
|
1363
|
+
format: string | null;
|
|
1364
|
+
required: boolean;
|
|
1365
|
+
description: string | null;
|
|
1366
|
+
enumValues: string[];
|
|
1367
|
+
minimum: number | null;
|
|
1368
|
+
maximum: number | null;
|
|
1369
|
+
minLength: number | null;
|
|
1370
|
+
maxLength: number | null;
|
|
1371
|
+
pattern: string | null;
|
|
1372
|
+
}
|
|
1373
|
+
interface ResourceSchemaCatalogRelation {
|
|
1374
|
+
field: string;
|
|
1375
|
+
targetSchema: string;
|
|
1376
|
+
cardinality: string;
|
|
1377
|
+
}
|
|
1378
|
+
interface ResourceSchemaCatalogSchemaRef {
|
|
1379
|
+
name: string | null;
|
|
1380
|
+
inlineSchema: Record<string, unknown> | null;
|
|
1381
|
+
mediaType: string | null;
|
|
1382
|
+
fields: ResourceSchemaCatalogField[];
|
|
1383
|
+
relations: ResourceSchemaCatalogRelation[];
|
|
1384
|
+
}
|
|
1385
|
+
interface ResourceSchemaCatalogParameter {
|
|
1386
|
+
name: string | null;
|
|
1387
|
+
in: string | null;
|
|
1388
|
+
required: boolean;
|
|
1389
|
+
type: string | null;
|
|
1390
|
+
}
|
|
1391
|
+
interface ResourceSchemaCatalogExample {
|
|
1392
|
+
summary?: string;
|
|
1393
|
+
description?: string;
|
|
1394
|
+
value?: unknown;
|
|
1395
|
+
externalValue?: string;
|
|
1396
|
+
}
|
|
1397
|
+
type ResourceSchemaCatalogOperationExamples = Record<string, Record<string, ResourceSchemaCatalogExample>>;
|
|
1398
|
+
interface ResourceSchemaCatalogSchemaLinks {
|
|
1399
|
+
request: string | null;
|
|
1400
|
+
response: string | null;
|
|
1401
|
+
}
|
|
1402
|
+
interface ResourceSchemaCatalogEndpoint {
|
|
1403
|
+
path: string;
|
|
1404
|
+
method: ResourceSchemaCatalogHttpMethod;
|
|
1405
|
+
tags: string[];
|
|
1406
|
+
summary: string | null;
|
|
1407
|
+
description: string | null;
|
|
1408
|
+
operationId: string | null;
|
|
1409
|
+
resourceKey: string | null;
|
|
1410
|
+
resourceVisual: ResourceSchemaCatalogVisual | null;
|
|
1411
|
+
requestSchema: ResourceSchemaCatalogSchemaRef | null;
|
|
1412
|
+
responseSchema: ResourceSchemaCatalogSchemaRef | null;
|
|
1413
|
+
parameters: ResourceSchemaCatalogParameter[];
|
|
1414
|
+
operationExamples: ResourceSchemaCatalogOperationExamples;
|
|
1415
|
+
schemaLinks: ResourceSchemaCatalogSchemaLinks;
|
|
1416
|
+
}
|
|
1417
|
+
interface ResourceSchemaCatalogResponse {
|
|
1418
|
+
group: string;
|
|
1419
|
+
groupVisual: ResourceSchemaCatalogVisual | null;
|
|
1420
|
+
endpoints: ResourceSchemaCatalogEndpoint[];
|
|
1421
|
+
}
|
|
1248
1422
|
type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
|
|
1423
|
+
type RelatedResourceChildOperation = 'FILTER' | 'LIST' | 'CREATE' | 'UPDATE' | 'DELETE' | 'DUPLICATE_DRAFT';
|
|
1424
|
+
interface RelatedResourceSurface {
|
|
1425
|
+
parentResourceKey: string;
|
|
1426
|
+
parentIdPathVariable: string;
|
|
1427
|
+
childResourceKey: string;
|
|
1428
|
+
childResourcePath: string;
|
|
1429
|
+
childParentField: string;
|
|
1430
|
+
selectable: boolean;
|
|
1431
|
+
selectionKeyField: string;
|
|
1432
|
+
childOperations: RelatedResourceChildOperation[];
|
|
1433
|
+
}
|
|
1249
1434
|
interface ResourceSurfaceCatalogItem {
|
|
1250
1435
|
id: string;
|
|
1251
1436
|
resourceKey: string;
|
|
@@ -1263,6 +1448,7 @@ interface ResourceSurfaceCatalogItem {
|
|
|
1263
1448
|
availability: ResourceAvailabilityDecision;
|
|
1264
1449
|
order: number;
|
|
1265
1450
|
tags: string[];
|
|
1451
|
+
relatedResource?: RelatedResourceSurface | null;
|
|
1266
1452
|
}
|
|
1267
1453
|
interface ResourceSurfaceCatalogResponse {
|
|
1268
1454
|
resourceKey: string;
|
|
@@ -1271,6 +1457,13 @@ interface ResourceSurfaceCatalogResponse {
|
|
|
1271
1457
|
resourceId?: string | number | null;
|
|
1272
1458
|
surfaces: ResourceSurfaceCatalogItem[];
|
|
1273
1459
|
}
|
|
1460
|
+
interface ResourceRecordOpenRef {
|
|
1461
|
+
sourceIdentityField: string;
|
|
1462
|
+
target: {
|
|
1463
|
+
resourceKey: string;
|
|
1464
|
+
surfaceId: string;
|
|
1465
|
+
};
|
|
1466
|
+
}
|
|
1274
1467
|
interface ResourceActionCatalogItem {
|
|
1275
1468
|
id: string;
|
|
1276
1469
|
resourceKey: string;
|
|
@@ -1308,7 +1501,7 @@ interface ResourceCapabilityOperation {
|
|
|
1308
1501
|
maxRows?: ResourceExportMaxRows;
|
|
1309
1502
|
async?: boolean | null;
|
|
1310
1503
|
}
|
|
1311
|
-
type ResourceCapabilityOperations = Partial<Record<
|
|
1504
|
+
type ResourceCapabilityOperations = Partial<Record<ResourceKnownCapabilityOperationId, ResourceCapabilityOperation>> & Record<string, ResourceCapabilityOperation | undefined>;
|
|
1312
1505
|
interface ResourceCapabilitySnapshot {
|
|
1313
1506
|
resourceKey: string;
|
|
1314
1507
|
resourcePath: string;
|
|
@@ -1316,6 +1509,7 @@ interface ResourceCapabilitySnapshot {
|
|
|
1316
1509
|
resourceId?: string | number | null;
|
|
1317
1510
|
canonicalOperations: Record<string, boolean>;
|
|
1318
1511
|
operations?: ResourceCapabilityOperations;
|
|
1512
|
+
stats?: ResourceStatsCapability | null;
|
|
1319
1513
|
surfaces: ResourceSurfaceCatalogItem[];
|
|
1320
1514
|
actions: ResourceActionCatalogItem[];
|
|
1321
1515
|
}
|
|
@@ -1397,7 +1591,7 @@ interface ColumnDefinition {
|
|
|
1397
1591
|
expr: string;
|
|
1398
1592
|
};
|
|
1399
1593
|
/** Tipo do renderizador */
|
|
1400
|
-
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose';
|
|
1594
|
+
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'microVisualization' | 'html' | 'compose';
|
|
1401
1595
|
/** Tooltip associado ao renderer efetivo da célula. */
|
|
1402
1596
|
tooltip?: TableTooltipConfig;
|
|
1403
1597
|
/** Configuração de ícone (Material/SVG por nome) */
|
|
@@ -1406,12 +1600,20 @@ interface ColumnDefinition {
|
|
|
1406
1600
|
name?: string;
|
|
1407
1601
|
/** Campo do row que contém o nome do ícone */
|
|
1408
1602
|
nameField?: string;
|
|
1603
|
+
/** Texto fixo exibido ao lado do icone */
|
|
1604
|
+
text?: string;
|
|
1605
|
+
/** Campo usado como texto exibido ao lado do icone */
|
|
1606
|
+
textField?: string;
|
|
1409
1607
|
/** Cor do ícone (primary/accent/warn ou CSS color) */
|
|
1410
1608
|
color?: string;
|
|
1411
1609
|
/** Tamanho em px (opcional) */
|
|
1412
1610
|
size?: number;
|
|
1413
1611
|
/** Label acessível (fixo) */
|
|
1414
1612
|
ariaLabel?: string;
|
|
1613
|
+
/** Prefixo visual aplicado ao texto do renderer sem alterar o valor bruto. */
|
|
1614
|
+
prefix?: string;
|
|
1615
|
+
/** Sufixo visual aplicado ao texto do renderer sem alterar o valor bruto. */
|
|
1616
|
+
suffix?: string;
|
|
1415
1617
|
};
|
|
1416
1618
|
/** Configuração de imagem */
|
|
1417
1619
|
image?: {
|
|
@@ -1442,7 +1644,7 @@ interface ColumnDefinition {
|
|
|
1442
1644
|
/** Cor do badge (primary/accent/warn ou CSS) */
|
|
1443
1645
|
color?: string;
|
|
1444
1646
|
/** Variante visual */
|
|
1445
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1647
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1446
1648
|
/** Ícone opcional dentro do badge */
|
|
1447
1649
|
icon?: string;
|
|
1448
1650
|
/** Tooltip opcional associado ao indicador visual */
|
|
@@ -1478,7 +1680,7 @@ interface ColumnDefinition {
|
|
|
1478
1680
|
textField?: string;
|
|
1479
1681
|
color?: string;
|
|
1480
1682
|
icon?: string;
|
|
1481
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1683
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1482
1684
|
/** Tooltip opcional associado ao chip */
|
|
1483
1685
|
tooltip?: TableTooltipConfig;
|
|
1484
1686
|
};
|
|
@@ -1497,6 +1699,9 @@ interface ColumnDefinition {
|
|
|
1497
1699
|
size?: 'small' | 'medium' | 'large';
|
|
1498
1700
|
ariaLabel?: string;
|
|
1499
1701
|
};
|
|
1702
|
+
microVisualization?: {
|
|
1703
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1704
|
+
};
|
|
1500
1705
|
/** Avatar (imagem ou iniciais) */
|
|
1501
1706
|
avatar?: {
|
|
1502
1707
|
src?: string;
|
|
@@ -1539,9 +1744,13 @@ interface ColumnDefinition {
|
|
|
1539
1744
|
icon?: {
|
|
1540
1745
|
name?: string;
|
|
1541
1746
|
nameField?: string;
|
|
1747
|
+
text?: string;
|
|
1748
|
+
textField?: string;
|
|
1542
1749
|
color?: string;
|
|
1543
1750
|
size?: number;
|
|
1544
1751
|
ariaLabel?: string;
|
|
1752
|
+
prefix?: string;
|
|
1753
|
+
suffix?: string;
|
|
1545
1754
|
};
|
|
1546
1755
|
} | {
|
|
1547
1756
|
type: 'image';
|
|
@@ -1562,7 +1771,7 @@ interface ColumnDefinition {
|
|
|
1562
1771
|
text?: string;
|
|
1563
1772
|
textField?: string;
|
|
1564
1773
|
color?: string;
|
|
1565
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1774
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1566
1775
|
icon?: string;
|
|
1567
1776
|
tooltip?: TableTooltipConfig;
|
|
1568
1777
|
};
|
|
@@ -1598,7 +1807,7 @@ interface ColumnDefinition {
|
|
|
1598
1807
|
textField?: string;
|
|
1599
1808
|
color?: string;
|
|
1600
1809
|
icon?: string;
|
|
1601
|
-
variant?: 'filled' | 'outlined' | 'soft';
|
|
1810
|
+
variant?: 'filled' | 'outlined' | 'soft' | 'plain';
|
|
1602
1811
|
tooltip?: TableTooltipConfig;
|
|
1603
1812
|
};
|
|
1604
1813
|
} | {
|
|
@@ -1648,6 +1857,11 @@ interface ColumnDefinition {
|
|
|
1648
1857
|
size?: 'small' | 'medium' | 'large';
|
|
1649
1858
|
ariaLabel?: string;
|
|
1650
1859
|
};
|
|
1860
|
+
} | {
|
|
1861
|
+
type: 'microVisualization';
|
|
1862
|
+
microVisualization?: {
|
|
1863
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1864
|
+
};
|
|
1651
1865
|
} | {
|
|
1652
1866
|
type: 'html';
|
|
1653
1867
|
html?: {
|
|
@@ -1670,6 +1884,11 @@ interface ColumnDefinition {
|
|
|
1670
1884
|
/** Identificador estável usado para reconciliação e deduplicação de regras authoradas. */
|
|
1671
1885
|
id?: string;
|
|
1672
1886
|
condition: JsonLogicExpression | null;
|
|
1887
|
+
/** Referencia semantica versionada; a classe CSS correspondente e privada do runtime. */
|
|
1888
|
+
surfacePresetRef?: {
|
|
1889
|
+
id: string;
|
|
1890
|
+
catalogVersion: string;
|
|
1891
|
+
};
|
|
1673
1892
|
renderer?: Partial<ColumnDefinition['renderer']>;
|
|
1674
1893
|
/** Tooltip condicional aplicado quando a regra vencer. */
|
|
1675
1894
|
tooltip?: TableTooltipConfig;
|
|
@@ -1727,7 +1946,7 @@ interface ConfigMetadata {
|
|
|
1727
1946
|
isTemplate?: boolean;
|
|
1728
1947
|
/** Configuração derivada de outra (parent ID) */
|
|
1729
1948
|
derivedFrom?: string;
|
|
1730
|
-
/** Identidade do schema de origem (path|operation|schemaType|internal:<bool>|
|
|
1949
|
+
/** Identidade estrutural do schema de origem (path|operation|schemaType|internal:<bool>|idField|readOnly|origin) */
|
|
1731
1950
|
schemaId?: string;
|
|
1732
1951
|
/** ETag/hash do schema do servidor usado para a última reconciliação */
|
|
1733
1952
|
serverHash?: string;
|
|
@@ -2155,9 +2374,16 @@ interface LoadingConfig {
|
|
|
2155
2374
|
}
|
|
2156
2375
|
interface EmptyStateConfig {
|
|
2157
2376
|
/** Mensagem para estado vazio */
|
|
2377
|
+
title?: string;
|
|
2158
2378
|
message: string;
|
|
2379
|
+
description?: string;
|
|
2159
2380
|
/** Ícone para estado vazio */
|
|
2160
2381
|
icon?: string;
|
|
2382
|
+
tone?: 'neutral' | 'primary' | 'secondary';
|
|
2383
|
+
variant?: 'card' | 'inline' | 'panel' | 'transparent';
|
|
2384
|
+
alignment?: 'start' | 'center';
|
|
2385
|
+
density?: 'compact' | 'comfortable';
|
|
2386
|
+
iconContainer?: 'none' | 'circle' | 'soft';
|
|
2161
2387
|
/** Imagem para estado vazio */
|
|
2162
2388
|
image?: string;
|
|
2163
2389
|
/** Ações disponíveis no estado vazio */
|
|
@@ -2422,6 +2648,29 @@ interface ToolbarLayoutConfig {
|
|
|
2422
2648
|
/** Mostrar separador */
|
|
2423
2649
|
showSeparator: boolean;
|
|
2424
2650
|
}
|
|
2651
|
+
type ToolbarActionTargetScope = 'collection' | 'selection';
|
|
2652
|
+
interface ToolbarActionTargetCardinality {
|
|
2653
|
+
/** Minimum number of records required to execute the action. */
|
|
2654
|
+
min: number;
|
|
2655
|
+
/** Maximum number accepted; omitted means no upper limit. */
|
|
2656
|
+
max?: number;
|
|
2657
|
+
}
|
|
2658
|
+
interface ToolbarActionTarget {
|
|
2659
|
+
/** Semantic action target, independent from its visual placement. */
|
|
2660
|
+
scope: ToolbarActionTargetScope;
|
|
2661
|
+
/** Selection constraint when the action targets selected records. */
|
|
2662
|
+
cardinality?: ToolbarActionTargetCardinality;
|
|
2663
|
+
}
|
|
2664
|
+
interface ToolbarActionEvent<TRecord = Record<string, unknown>> {
|
|
2665
|
+
action: string;
|
|
2666
|
+
actionConfig?: ToolbarAction;
|
|
2667
|
+
target?: ToolbarActionTarget;
|
|
2668
|
+
row?: TRecord;
|
|
2669
|
+
selectedRow?: TRecord;
|
|
2670
|
+
selectedRows: TRecord[];
|
|
2671
|
+
selectedIds: unknown[];
|
|
2672
|
+
selectedCount: number;
|
|
2673
|
+
}
|
|
2425
2674
|
interface ToolbarAction {
|
|
2426
2675
|
/** ID único da ação */
|
|
2427
2676
|
id: string;
|
|
@@ -2439,6 +2688,8 @@ interface ToolbarAction {
|
|
|
2439
2688
|
disabled?: boolean;
|
|
2440
2689
|
/** Função a executar */
|
|
2441
2690
|
action: string;
|
|
2691
|
+
/** Semantic target; toolbar placement does not imply a bulk operation. */
|
|
2692
|
+
target?: ToolbarActionTarget;
|
|
2442
2693
|
/** Acao global estruturada executada pelo host via GlobalActionService */
|
|
2443
2694
|
globalAction?: GlobalActionRef;
|
|
2444
2695
|
/** Efeitos runtime canonicos executados quando a acao da toolbar e acionada */
|
|
@@ -2485,6 +2736,14 @@ interface ToolbarSettingsConfig {
|
|
|
2485
2736
|
options?: any[];
|
|
2486
2737
|
}>;
|
|
2487
2738
|
}
|
|
2739
|
+
interface TableAiAssistantConfig {
|
|
2740
|
+
/** Exibe e permite acionar o assistente de IA da tabela. Ausente equivale a true. */
|
|
2741
|
+
enabled?: boolean;
|
|
2742
|
+
}
|
|
2743
|
+
interface TableAiConfig {
|
|
2744
|
+
/** Configuracoes do assistente de IA embarcado na tabela. */
|
|
2745
|
+
assistant?: TableAiAssistantConfig;
|
|
2746
|
+
}
|
|
2488
2747
|
interface TableActionsConfig {
|
|
2489
2748
|
/** Ações por linha */
|
|
2490
2749
|
row?: RowActionsConfig;
|
|
@@ -2791,6 +3050,11 @@ interface TableDetailRichListNode extends TableDetailBaseNode {
|
|
|
2791
3050
|
}
|
|
2792
3051
|
type TableDetailEmbedAction = TableDetailActionBarAction;
|
|
2793
3052
|
interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
3053
|
+
/**
|
|
3054
|
+
* Governs whether the detail row should keep this embed as a host-mediated reference
|
|
3055
|
+
* or ask an owning runtime/provider to materialize it inline. Omitted means `reference`.
|
|
3056
|
+
*/
|
|
3057
|
+
renderMode?: 'reference' | 'inline';
|
|
2794
3058
|
description?: string;
|
|
2795
3059
|
caption?: string;
|
|
2796
3060
|
emptyText?: string;
|
|
@@ -2801,6 +3065,8 @@ interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
|
2801
3065
|
interface TableDetailRefNode extends TableDetailEmbedBaseNode {
|
|
2802
3066
|
type: 'formRef' | 'tableRef' | 'chartRef';
|
|
2803
3067
|
schemaId?: string;
|
|
3068
|
+
chartDocumentRef?: string;
|
|
3069
|
+
chartDocument?: unknown;
|
|
2804
3070
|
}
|
|
2805
3071
|
interface TableDetailDiagramEmbedNode extends TableDetailEmbedBaseNode {
|
|
2806
3072
|
type: 'diagramEmbed';
|
|
@@ -2855,6 +3121,8 @@ interface GeneralExportConfig {
|
|
|
2855
3121
|
interface ExcelExportConfig {
|
|
2856
3122
|
/** Nome da planilha */
|
|
2857
3123
|
sheetName: string;
|
|
3124
|
+
/** Exibir ação local para exportar a página atual com colunas visíveis */
|
|
3125
|
+
visibleCurrentPage?: boolean;
|
|
2858
3126
|
/** Incluir fórmulas nas células */
|
|
2859
3127
|
includeFormulas: boolean;
|
|
2860
3128
|
/** Congelar linha de cabeçalho */
|
|
@@ -3343,6 +3611,8 @@ interface TableConfigV2 {
|
|
|
3343
3611
|
toolbar?: ToolbarConfig;
|
|
3344
3612
|
/** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
|
|
3345
3613
|
actions?: TableActionsConfig;
|
|
3614
|
+
/** Configuracoes de IA do runtime da tabela */
|
|
3615
|
+
ai?: TableAiConfig;
|
|
3346
3616
|
/** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
|
|
3347
3617
|
export?: ExportConfig;
|
|
3348
3618
|
/** Mensagens personalizadas (Aba: Mensagens & Localização) */
|
|
@@ -3364,6 +3634,11 @@ interface TableConfigV2 {
|
|
|
3364
3634
|
*/
|
|
3365
3635
|
rowConditionalStyles?: Array<{
|
|
3366
3636
|
condition: JsonLogicExpression | null;
|
|
3637
|
+
/** Referencia semantica versionada; a classe CSS correspondente e privada do runtime. */
|
|
3638
|
+
surfacePresetRef?: {
|
|
3639
|
+
id: string;
|
|
3640
|
+
catalogVersion: string;
|
|
3641
|
+
};
|
|
3367
3642
|
/** Efeitos visuais canonicos produzidos pelo editor de regras da Table. */
|
|
3368
3643
|
effects?: Array<Record<string, unknown>>;
|
|
3369
3644
|
cssClass?: string;
|
|
@@ -3581,6 +3856,92 @@ declare const FieldControlType: {
|
|
|
3581
3856
|
};
|
|
3582
3857
|
type FieldControlType = (typeof FieldControlType)[keyof typeof FieldControlType];
|
|
3583
3858
|
|
|
3859
|
+
type FormFieldHelpDisplay = 'auto' | 'inline' | 'popover' | 'hidden';
|
|
3860
|
+
interface FormHelpPresentationConfig {
|
|
3861
|
+
/**
|
|
3862
|
+
* Controls how semantic field help (`hint`/`helpText`) is presented by field
|
|
3863
|
+
* renderers. Validation errors are never affected by this policy.
|
|
3864
|
+
*/
|
|
3865
|
+
display?: FormFieldHelpDisplay;
|
|
3866
|
+
/**
|
|
3867
|
+
* Maximum text length that may remain inline when `display` is `auto`.
|
|
3868
|
+
* Defaults to 64 characters.
|
|
3869
|
+
*/
|
|
3870
|
+
inlineMaxLength?: number;
|
|
3871
|
+
/**
|
|
3872
|
+
* Control types that should prefer a help affordance instead of inline text
|
|
3873
|
+
* when `display` is `auto`.
|
|
3874
|
+
*/
|
|
3875
|
+
preferPopoverForControls?: string[];
|
|
3876
|
+
}
|
|
3877
|
+
|
|
3878
|
+
type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
3879
|
+
type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
|
|
3880
|
+
type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
|
|
3881
|
+
interface FieldPresentationInteractions {
|
|
3882
|
+
/** Allows readonly surfaces to expose a copy affordance without changing the field value. */
|
|
3883
|
+
copy?: boolean;
|
|
3884
|
+
/** Allows readonly surfaces to expose contextual detail expansion. */
|
|
3885
|
+
details?: boolean;
|
|
3886
|
+
/** Allows readonly surfaces to expose inline expansion for long values. */
|
|
3887
|
+
expand?: boolean;
|
|
3888
|
+
/** Allows readonly surfaces to expose a link affordance when the value is navigable. */
|
|
3889
|
+
link?: boolean;
|
|
3890
|
+
}
|
|
3891
|
+
interface FieldPresentationConfig {
|
|
3892
|
+
/** Semantic display strategy for readonly/presentation surfaces. */
|
|
3893
|
+
presenter?: FieldPresenterKind;
|
|
3894
|
+
/** Alias accepted for schema authors that describe the semantic display as a variant. */
|
|
3895
|
+
variant?: FieldPresenterKind;
|
|
3896
|
+
/** Semantic tone mapped by consumers to theme tokens. */
|
|
3897
|
+
tone?: FieldPresentationTone;
|
|
3898
|
+
/** Material Symbols icon name, without arbitrary HTML. */
|
|
3899
|
+
icon?: string;
|
|
3900
|
+
/** Optional semantic label for status/chip/badge presentations. */
|
|
3901
|
+
label?: string;
|
|
3902
|
+
/** Optional secondary marker rendered by presentation-capable consumers. */
|
|
3903
|
+
badge?: string;
|
|
3904
|
+
/** Optional tooltip text for the presentation wrapper. */
|
|
3905
|
+
tooltip?: string;
|
|
3906
|
+
/** Optional readonly prefix rendered next to the displayed value without changing the raw value. */
|
|
3907
|
+
prefix?: string;
|
|
3908
|
+
/** Optional readonly suffix rendered next to the displayed value without changing the raw value. */
|
|
3909
|
+
suffix?: string;
|
|
3910
|
+
/** Visual density/emphasis strategy mapped by consumers to theme tokens. */
|
|
3911
|
+
appearance?: FieldPresentationAppearance;
|
|
3912
|
+
/** Optional formatter override for the presentation surface only. */
|
|
3913
|
+
valuePresentation?: ValuePresentationConfig;
|
|
3914
|
+
/** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
|
|
3915
|
+
visualization?: PraxisPresentationVisualizationConfig;
|
|
3916
|
+
/** Safe readonly affordances. No commands or mutations are executed from this contract. */
|
|
3917
|
+
interactions?: FieldPresentationInteractions;
|
|
3918
|
+
}
|
|
3919
|
+
interface FieldPresentationRule {
|
|
3920
|
+
/** Json Logic guard evaluated against the presentation context. */
|
|
3921
|
+
when: JsonLogicExpression;
|
|
3922
|
+
/** Semantic presentation state merged when the guard is truthy. */
|
|
3923
|
+
set?: FieldPresentationConfig;
|
|
3924
|
+
/** Alias for `set`, useful for rule-builder terminology. */
|
|
3925
|
+
effect?: FieldPresentationConfig;
|
|
3926
|
+
}
|
|
3927
|
+
interface ResolvedFieldPresentation extends FieldPresentationConfig {
|
|
3928
|
+
/** Indicates at least one conditional rule matched the current context. */
|
|
3929
|
+
matchedRule?: boolean;
|
|
3930
|
+
}
|
|
3931
|
+
interface FieldPresentationJsonLogicEvaluator {
|
|
3932
|
+
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
|
|
3933
|
+
truthy?(value: unknown): boolean;
|
|
3934
|
+
}
|
|
3935
|
+
interface ResolveFieldPresentationOptions {
|
|
3936
|
+
jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
|
|
3937
|
+
}
|
|
3938
|
+
/**
|
|
3939
|
+
* Resolves readonly field presentation from a base semantic config plus ordered
|
|
3940
|
+
* Json Logic rules. Later matching rules override earlier presentation values.
|
|
3941
|
+
*/
|
|
3942
|
+
declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
|
|
3943
|
+
declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
|
|
3944
|
+
|
|
3584
3945
|
/**
|
|
3585
3946
|
* @fileoverview Base metadata interfaces for dynamic Angular Material components
|
|
3586
3947
|
*
|
|
@@ -3953,6 +4314,14 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3953
4314
|
disabled?: boolean;
|
|
3954
4315
|
/** Field is read-only */
|
|
3955
4316
|
readOnly?: boolean;
|
|
4317
|
+
/**
|
|
4318
|
+
* Canonical backend-authored access metadata for field-level UX materialization.
|
|
4319
|
+
*
|
|
4320
|
+
* The frontend may use this contract to hide or lock controls for usability,
|
|
4321
|
+
* but it is not a security boundary. Backend filtering and validation remain
|
|
4322
|
+
* the final authority for sensitive data.
|
|
4323
|
+
*/
|
|
4324
|
+
fieldAccess?: FieldAccessMetadata;
|
|
3956
4325
|
/** Field is hidden from display */
|
|
3957
4326
|
hidden?: boolean;
|
|
3958
4327
|
/** Canonical conditional visibility guard for metadata-driven forms. */
|
|
@@ -3963,8 +4332,16 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3963
4332
|
placeholder?: string;
|
|
3964
4333
|
/** Help text displayed below field */
|
|
3965
4334
|
hint?: string;
|
|
4335
|
+
/** Domain help text emitted by backend schema metadata. */
|
|
4336
|
+
helpText?: string;
|
|
4337
|
+
/** Effective help presentation resolved by the form host. */
|
|
4338
|
+
helpDisplay?: FormFieldHelpDisplay;
|
|
4339
|
+
/** Field-level inline threshold used when `helpDisplay` is `auto`. */
|
|
4340
|
+
helpInlineMaxLength?: number;
|
|
3966
4341
|
/** Tooltip text on hover */
|
|
3967
4342
|
tooltip?: string;
|
|
4343
|
+
/** Enables hover tooltip presentation when supported by the field renderer. */
|
|
4344
|
+
tooltipOnHover?: boolean;
|
|
3968
4345
|
/** Semantic selection mode for boolean/single/multiple choice controls */
|
|
3969
4346
|
selectionMode?: 'boolean' | 'single' | 'multiple';
|
|
3970
4347
|
/** Visual variant used by controls with more than one supported presentation */
|
|
@@ -4004,6 +4381,10 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
4004
4381
|
suffixIcon?: string;
|
|
4005
4382
|
iconPosition?: 'start' | 'end';
|
|
4006
4383
|
iconSize?: 'small' | 'medium' | 'large';
|
|
4384
|
+
iconColor?: string;
|
|
4385
|
+
iconClass?: string;
|
|
4386
|
+
iconStyle?: string;
|
|
4387
|
+
iconFontSize?: string | number;
|
|
4007
4388
|
/** Tooltip for suffix icon (used for help actions) */
|
|
4008
4389
|
suffixIconTooltip?: string;
|
|
4009
4390
|
/** ARIA label for suffix icon when used as help */
|
|
@@ -4020,6 +4401,18 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
4020
4401
|
* heuristics.
|
|
4021
4402
|
*/
|
|
4022
4403
|
valuePresentation?: ValuePresentationConfig;
|
|
4404
|
+
/**
|
|
4405
|
+
* Semantic presentation metadata for read-only/display surfaces.
|
|
4406
|
+
*
|
|
4407
|
+
* Consumers map this contract to their own theme tokens and primitives. It
|
|
4408
|
+
* intentionally avoids arbitrary CSS, HTML, or mutation commands.
|
|
4409
|
+
*/
|
|
4410
|
+
presentation?: FieldPresentationConfig;
|
|
4411
|
+
/**
|
|
4412
|
+
* Ordered Json Logic rules that conditionally override `presentation` in
|
|
4413
|
+
* readonly/display surfaces. Later matching rules win.
|
|
4414
|
+
*/
|
|
4415
|
+
presentationRules?: FieldPresentationRule[];
|
|
4023
4416
|
/** Material Design specific configuration */
|
|
4024
4417
|
materialDesign?: MaterialDesignConfig;
|
|
4025
4418
|
/**
|
|
@@ -4156,6 +4549,40 @@ interface DateRangePreset {
|
|
|
4156
4549
|
/** Display order in preset list */
|
|
4157
4550
|
order?: number;
|
|
4158
4551
|
}
|
|
4552
|
+
/** Semantic tone for metadata-published date range shortcuts. */
|
|
4553
|
+
type StaticDateRangePresetTone = 'neutral' | 'info' | 'success' | 'warning';
|
|
4554
|
+
/**
|
|
4555
|
+
* Serializable, metadata-safe date range preset.
|
|
4556
|
+
*
|
|
4557
|
+
* The backend/domain publishes resolved date-only ranges. Angular materializes
|
|
4558
|
+
* the published interval and never deserializes executable calendar rules.
|
|
4559
|
+
*/
|
|
4560
|
+
interface StaticDateRangePreset {
|
|
4561
|
+
/** Unique identifier for observation and active state. */
|
|
4562
|
+
id: string;
|
|
4563
|
+
/** User-visible label published by the domain metadata source. */
|
|
4564
|
+
label: string;
|
|
4565
|
+
/** Inclusive ISO date-only start date (`YYYY-MM-DD`). */
|
|
4566
|
+
startDate: string;
|
|
4567
|
+
/** Inclusive ISO date-only end date (`YYYY-MM-DD`). */
|
|
4568
|
+
endDate: string;
|
|
4569
|
+
/** IANA timezone used to interpret the date-only interval. */
|
|
4570
|
+
timeZone?: string;
|
|
4571
|
+
/** Optional governed icon name. */
|
|
4572
|
+
icon?: string;
|
|
4573
|
+
/** Optional user-visible explanation. */
|
|
4574
|
+
description?: string;
|
|
4575
|
+
/** Semantic tone resolved by Praxis/host tokens. */
|
|
4576
|
+
tone?: StaticDateRangePresetTone;
|
|
4577
|
+
/** Optional ISO date-only first day this shortcut is valid for display. */
|
|
4578
|
+
effectiveFrom?: string;
|
|
4579
|
+
/** Optional ISO date-only last day this shortcut is valid for display. */
|
|
4580
|
+
effectiveTo?: string;
|
|
4581
|
+
/** Display order in preset list when a host sorts metadata before publication. */
|
|
4582
|
+
order?: number;
|
|
4583
|
+
}
|
|
4584
|
+
/** Supported date range shortcut entries. */
|
|
4585
|
+
type DateRangeShortcutPreset = string | DateRangePreset | StaticDateRangePreset;
|
|
4159
4586
|
/** Helper type for partial field metadata updates */
|
|
4160
4587
|
type PartialFieldMetadata = Partial<FieldMetadata> & {
|
|
4161
4588
|
name: string;
|
|
@@ -4165,6 +4592,23 @@ type CoreFieldMetadata = Pick<FieldMetadata, 'name' | 'label' | 'controlType'>;
|
|
|
4165
4592
|
/** Helper type for field metadata without computed properties */
|
|
4166
4593
|
type SerializableFieldMetadata = Omit<FieldMetadata, 'transformDisplayValue' | 'transformSaveValue'>;
|
|
4167
4594
|
|
|
4595
|
+
interface FieldAccessMetadata {
|
|
4596
|
+
visibleForAuthorities?: string[];
|
|
4597
|
+
editableForAuthorities?: string[];
|
|
4598
|
+
reason?: string;
|
|
4599
|
+
}
|
|
4600
|
+
interface FieldAccessEvaluationContext {
|
|
4601
|
+
authorities?: readonly string[] | null;
|
|
4602
|
+
}
|
|
4603
|
+
interface FieldAccessEvaluationResult {
|
|
4604
|
+
evaluated: boolean;
|
|
4605
|
+
visible: boolean;
|
|
4606
|
+
editable: boolean;
|
|
4607
|
+
reason?: string;
|
|
4608
|
+
}
|
|
4609
|
+
declare function normalizeFieldAccessMetadata(value: unknown): FieldAccessMetadata | undefined;
|
|
4610
|
+
declare function evaluateFieldAccess(fieldOrAccess: Pick<FieldMetadata, 'fieldAccess'> | FieldAccessMetadata | null | undefined, context?: FieldAccessEvaluationContext): FieldAccessEvaluationResult;
|
|
4611
|
+
|
|
4168
4612
|
/**
|
|
4169
4613
|
* Contrato de saída do normalizador de esquema (SchemaNormalizerService):
|
|
4170
4614
|
* - Converte metadados `x-ui` em FieldDefinition tipado.
|
|
@@ -4195,6 +4639,7 @@ interface FieldDefinition {
|
|
|
4195
4639
|
layout?: 'horizontal' | 'vertical';
|
|
4196
4640
|
disabled?: boolean;
|
|
4197
4641
|
readOnly?: boolean;
|
|
4642
|
+
fieldAccess?: FieldAccessMetadata;
|
|
4198
4643
|
array?: FieldArrayConfig;
|
|
4199
4644
|
collectionValidation?: FieldArrayCollectionValidation;
|
|
4200
4645
|
multiple?: boolean;
|
|
@@ -4223,6 +4668,7 @@ interface FieldDefinition {
|
|
|
4223
4668
|
helpText?: string;
|
|
4224
4669
|
hint?: string;
|
|
4225
4670
|
hiddenCondition?: JsonLogicExpression | null;
|
|
4671
|
+
tooltip?: string;
|
|
4226
4672
|
tooltipOnHover?: boolean;
|
|
4227
4673
|
icon?: string;
|
|
4228
4674
|
iconPosition?: string;
|
|
@@ -4252,6 +4698,10 @@ interface FieldDefinition {
|
|
|
4252
4698
|
filterOptions?: any[];
|
|
4253
4699
|
numericFormat?: string;
|
|
4254
4700
|
valuePresentation?: ValuePresentationConfig;
|
|
4701
|
+
/** Semantic read-only/list presentation metadata from canonical x-ui.presentation. */
|
|
4702
|
+
presentation?: FieldPresentationConfig;
|
|
4703
|
+
/** Conditional presentation overrides for read-only/list consumers. */
|
|
4704
|
+
presentationRules?: FieldPresentationRule[];
|
|
4255
4705
|
numericStep?: number;
|
|
4256
4706
|
numericMin?: number;
|
|
4257
4707
|
numericMax?: number;
|
|
@@ -4329,6 +4779,13 @@ interface ApiUrlEntry {
|
|
|
4329
4779
|
fullUrl?: string;
|
|
4330
4780
|
version?: string;
|
|
4331
4781
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
4782
|
+
/**
|
|
4783
|
+
* Absolute backend origins that ResourceDiscoveryService may fold back through
|
|
4784
|
+
* a relative API_URL proxy for canonical API discovery links. Only configure
|
|
4785
|
+
* origins controlled by the same deployment boundary; arbitrary external links
|
|
4786
|
+
* remain absolute.
|
|
4787
|
+
*/
|
|
4788
|
+
trustedOrigins?: string[];
|
|
4332
4789
|
}
|
|
4333
4790
|
interface ApiUrlConfig {
|
|
4334
4791
|
[key: string]: ApiUrlEntry;
|
|
@@ -4406,6 +4863,8 @@ declare class SchemaNormalizerService {
|
|
|
4406
4863
|
private parseOptionSource;
|
|
4407
4864
|
private parseOptionSourceType;
|
|
4408
4865
|
private parseOptionSourceSearchMode;
|
|
4866
|
+
private parseOptionSourceSelectedReloadPolicy;
|
|
4867
|
+
private parseOptionSourceInvalidSortPolicy;
|
|
4409
4868
|
private parseLookupOpenDetailMode;
|
|
4410
4869
|
private parseValuePresentation;
|
|
4411
4870
|
/**
|
|
@@ -4740,6 +5199,61 @@ declare class GlobalConfigService {
|
|
|
4740
5199
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalConfigService>;
|
|
4741
5200
|
}
|
|
4742
5201
|
|
|
5202
|
+
interface ResourceIdentityFieldMetadata {
|
|
5203
|
+
name: string;
|
|
5204
|
+
label?: string;
|
|
5205
|
+
presentation?: FieldPresentationConfig;
|
|
5206
|
+
}
|
|
5207
|
+
type ResourceIdentitySource = 'explicit' | 'resource-id-field' | 'host-id-field';
|
|
5208
|
+
interface ResourceIdentityDiagnostic {
|
|
5209
|
+
code: 'resource-identity.explicit-invalid' | 'resource-identity.id-field-contract-invalid' | 'resource-identity.id-field-invalid' | 'resource-identity.id-field-missing-from-schema' | 'resource-identity.fallback-used' | 'resource-identity.value-missing';
|
|
5210
|
+
severity: 'info' | 'warning';
|
|
5211
|
+
message: string;
|
|
5212
|
+
source?: ResourceIdentitySource;
|
|
5213
|
+
field?: string;
|
|
5214
|
+
invalidFields?: string[];
|
|
5215
|
+
}
|
|
5216
|
+
interface ResourceIdentityContract {
|
|
5217
|
+
keyField?: string;
|
|
5218
|
+
titleField?: string;
|
|
5219
|
+
metadataFields?: string[];
|
|
5220
|
+
displayLabelField?: string;
|
|
5221
|
+
valid: boolean;
|
|
5222
|
+
invalidFields?: string[];
|
|
5223
|
+
message?: string;
|
|
5224
|
+
source?: ResourceIdentitySource;
|
|
5225
|
+
diagnostics?: ResourceIdentityDiagnostic[];
|
|
5226
|
+
}
|
|
5227
|
+
interface ResourceIdentityPart {
|
|
5228
|
+
field: string;
|
|
5229
|
+
label?: string;
|
|
5230
|
+
value: unknown;
|
|
5231
|
+
presentation?: FieldPresentationConfig;
|
|
5232
|
+
}
|
|
5233
|
+
interface MaterializedResourceIdentity {
|
|
5234
|
+
key?: ResourceIdentityPart;
|
|
5235
|
+
title?: ResourceIdentityPart;
|
|
5236
|
+
metadata: ResourceIdentityPart[];
|
|
5237
|
+
displayLabel?: string;
|
|
5238
|
+
source?: ResourceIdentitySource;
|
|
5239
|
+
diagnostics?: ResourceIdentityDiagnostic[];
|
|
5240
|
+
}
|
|
5241
|
+
interface ResolveResourceIdentityOptions {
|
|
5242
|
+
explicitIdentity?: unknown;
|
|
5243
|
+
resourceIdField?: unknown;
|
|
5244
|
+
resourceIdFieldValid?: unknown;
|
|
5245
|
+
resourceIdFieldMessage?: unknown;
|
|
5246
|
+
effectiveIdField?: unknown;
|
|
5247
|
+
availableFields?: readonly ResourceIdentityFieldMetadata[] | readonly string[];
|
|
5248
|
+
}
|
|
5249
|
+
interface ResolvedResourceIdentityContract {
|
|
5250
|
+
contract: ResourceIdentityContract | null;
|
|
5251
|
+
diagnostics: ResourceIdentityDiagnostic[];
|
|
5252
|
+
}
|
|
5253
|
+
declare function normalizeResourceIdentityContract(value: unknown): ResourceIdentityContract | null;
|
|
5254
|
+
declare function resolveResourceIdentityContract(options: ResolveResourceIdentityOptions): ResolvedResourceIdentityContract;
|
|
5255
|
+
declare function materializeResourceIdentity(contract: ResourceIdentityContract | null | undefined, record: Record<string, unknown> | null | undefined, fields?: readonly ResourceIdentityFieldMetadata[]): MaterializedResourceIdentity | null;
|
|
5256
|
+
|
|
4743
5257
|
/**
|
|
4744
5258
|
* Interface para configuração de endpoints personalizados.
|
|
4745
5259
|
*
|
|
@@ -4790,6 +5304,12 @@ interface CrudOperationOptions {
|
|
|
4790
5304
|
endpointKey?: ApiEndpoint;
|
|
4791
5305
|
httpContext?: HttpContext;
|
|
4792
5306
|
}
|
|
5307
|
+
interface CrudSchemaOptions extends CrudOperationOptions {
|
|
5308
|
+
/** Canonical record identity used to resolve the response schema. */
|
|
5309
|
+
idField?: string;
|
|
5310
|
+
/** Whether the resolved resource surface is read-only. */
|
|
5311
|
+
readOnly?: boolean;
|
|
5312
|
+
}
|
|
4793
5313
|
interface CrudConfigureOptions {
|
|
4794
5314
|
endpointKey?: ApiEndpoint;
|
|
4795
5315
|
apiUrlEntry?: ApiUrlEntry | null;
|
|
@@ -4801,6 +5321,9 @@ interface OptionSourceRequestOptions<ID = string | number> extends CrudOperation
|
|
|
4801
5321
|
sortKey?: string;
|
|
4802
5322
|
filters?: LookupFilterRequest[];
|
|
4803
5323
|
}
|
|
5324
|
+
interface OptionSourceByIdsRequestOptions extends CrudOperationOptions {
|
|
5325
|
+
filter?: Record<string, unknown> | null;
|
|
5326
|
+
}
|
|
4804
5327
|
interface BatchDeleteProgress<ID = string | number> {
|
|
4805
5328
|
id: ID;
|
|
4806
5329
|
success: boolean;
|
|
@@ -4857,6 +5380,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4857
5380
|
private schemaCacheReady?;
|
|
4858
5381
|
private _lastResourceMeta;
|
|
4859
5382
|
private _lastResourceCapabilityDigest;
|
|
5383
|
+
private _lastResourceIdentity;
|
|
5384
|
+
private _lastResourceIdentityDiagnostics;
|
|
4860
5385
|
private _lastSchemaInfo;
|
|
4861
5386
|
/**
|
|
4862
5387
|
* Cria a instância do serviço genérico.
|
|
@@ -4924,7 +5449,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4924
5449
|
* crudService.getSchema().subscribe(schema => { // usar metadados });
|
|
4925
5450
|
* ```
|
|
4926
5451
|
*/
|
|
4927
|
-
getSchema(options?:
|
|
5452
|
+
getSchema(options?: CrudSchemaOptions): Observable<FieldDefinition[]>;
|
|
4928
5453
|
private updateLastResourceMetadataFromSchema;
|
|
4929
5454
|
private normalizeCanonicalCapabilities;
|
|
4930
5455
|
private shouldRememberFilteredSchemaEndpointUnavailable;
|
|
@@ -4932,6 +5457,10 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4932
5457
|
/** Retorna o campo identificador do recurso (ex.: 'id', 'codigo'), quando derivado do schema. */
|
|
4933
5458
|
getResourceIdField(): string | undefined;
|
|
4934
5459
|
getResourceCapabilityDigest(): ResourceCapabilityDigest | null;
|
|
5460
|
+
/** Returns explicit identity or the diagnostic key-only x-ui.resource.idField fallback. */
|
|
5461
|
+
getResourceIdentity(): ResourceIdentityContract | null;
|
|
5462
|
+
/** Returns structured diagnostics produced while resolving record identity. */
|
|
5463
|
+
getResourceIdentityDiagnostics(): ResourceIdentityDiagnostic[];
|
|
4935
5464
|
/** Retorna o último schemaId e hash conhecidos após getSchema()/getFilteredSchema(). */
|
|
4936
5465
|
getLastSchemaInfo(): {
|
|
4937
5466
|
schemaId?: string;
|
|
@@ -4961,6 +5490,8 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4961
5490
|
operation?: string;
|
|
4962
5491
|
includeInternalSchemas?: boolean;
|
|
4963
5492
|
schemaType?: string;
|
|
5493
|
+
idField?: string;
|
|
5494
|
+
readOnly?: boolean;
|
|
4964
5495
|
endpointKey?: ApiEndpoint;
|
|
4965
5496
|
httpContext?: HttpContext;
|
|
4966
5497
|
}): Observable<FieldDefinition[]>;
|
|
@@ -5116,7 +5647,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
5116
5647
|
/** OPTIONS: GET /options/by-ids */
|
|
5117
5648
|
getOptionsByIds(ids: ID[], options?: CrudOperationOptions): Observable<OptionDTO<ID>[]>;
|
|
5118
5649
|
/** OPTION SOURCES: GET /option-sources/{sourceKey}/options/by-ids */
|
|
5119
|
-
getOptionSourceOptionsByIds(sourceKey: string, ids: Array<string | number>, options?:
|
|
5650
|
+
getOptionSourceOptionsByIds(sourceKey: string, ids: Array<string | number>, options?: OptionSourceByIdsRequestOptions): Observable<OptionDTO<any>[]>;
|
|
5120
5651
|
/** CURSOR: POST /filter/cursor */
|
|
5121
5652
|
filterByCursor(criteria: any, cursorReq?: CursorRequest, options?: CrudOperationOptions): Observable<CursorPage<T>>;
|
|
5122
5653
|
/** LOCATE: POST /locate */
|
|
@@ -5373,6 +5904,9 @@ declare class TableConfigService {
|
|
|
5373
5904
|
declare function buildBaseColumnFromDef(def: FieldDefinition): ColumnDefinition;
|
|
5374
5905
|
declare function applyLocalCustomizations$1(baseCol: ColumnDefinition, localCol: ColumnDefinition): ColumnDefinition;
|
|
5375
5906
|
declare function reconcileTableConfig(layout: TableConfigV2, serverDefs: FieldDefinition[]): TableConfigV2;
|
|
5907
|
+
declare function resolveColumnTypeFromFieldDefinition(def: FieldDefinition, fallback?: ColumnDefinition['type']): ColumnDefinition['type'] | undefined;
|
|
5908
|
+
declare function resolveTextMaskFormatFromFieldDefinition(def: FieldDefinition): string | undefined;
|
|
5909
|
+
declare function resolveTextMaskFormat(value: unknown): string | undefined;
|
|
5376
5910
|
|
|
5377
5911
|
interface ConfigStorage {
|
|
5378
5912
|
loadConfig<T>(key: string): T | null;
|
|
@@ -5509,11 +6043,13 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
|
|
|
5509
6043
|
saveConfig<T>(key: string, config: T): Observable<void>;
|
|
5510
6044
|
private shouldPropagateSaveError;
|
|
5511
6045
|
private shouldPropagateClearError;
|
|
6046
|
+
private isConcurrencyConflict;
|
|
5512
6047
|
private shouldPropagateLoadError;
|
|
5513
6048
|
private isCriticalPersistenceKey;
|
|
5514
6049
|
clearConfig(key: string): Observable<void>;
|
|
5515
6050
|
private buildHeaders;
|
|
5516
6051
|
private buildParams;
|
|
6052
|
+
private resolveResponseScope;
|
|
5517
6053
|
private resolveKey;
|
|
5518
6054
|
private inferComponentType;
|
|
5519
6055
|
private looksLikePageKey;
|
|
@@ -5912,7 +6448,7 @@ interface MaterialInputMetadata extends BaseMaterialInputMetadata {
|
|
|
5912
6448
|
/**
|
|
5913
6449
|
* Configuração de botão "limpar" integrado
|
|
5914
6450
|
*
|
|
5915
|
-
*
|
|
6451
|
+
* Materializado como ação de ícone canônica no suffix do mat-form-field
|
|
5916
6452
|
* Comum em:
|
|
5917
6453
|
* - Campos de busca corporativa
|
|
5918
6454
|
* - Formulários de filtros
|
|
@@ -6719,10 +7255,12 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
6719
7255
|
/** Enable sidebar shortcuts overlay (phase 1). */
|
|
6720
7256
|
showShortcuts?: boolean;
|
|
6721
7257
|
/**
|
|
6722
|
-
* Shortcuts configuration. Accepts built-in identifiers
|
|
6723
|
-
*
|
|
7258
|
+
* Shortcuts configuration. Accepts built-in identifiers, programmatic
|
|
7259
|
+
* TypeScript presets, or static metadata-safe presets resolved by the
|
|
7260
|
+
* backend/domain.
|
|
7261
|
+
* Example: ['thisMonth', 'lastMonth', { id: 'periodo-votacao', label: 'Período de votação', startDate: '2026-07-06', endDate: '2026-10-04' }]
|
|
6724
7262
|
*/
|
|
6725
|
-
shortcuts?:
|
|
7263
|
+
shortcuts?: DateRangeShortcutPreset[];
|
|
6726
7264
|
/**
|
|
6727
7265
|
* Inline quick presets for compact filters (`inlineDateRange`).
|
|
6728
7266
|
* - `true`: enabled with defaults
|
|
@@ -6732,6 +7270,7 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
6732
7270
|
inlineQuickPresets?: boolean | {
|
|
6733
7271
|
enabled?: boolean;
|
|
6734
7272
|
maxVisible?: number;
|
|
7273
|
+
position?: 'auto' | 'footer' | 'start' | 'end';
|
|
6735
7274
|
};
|
|
6736
7275
|
/** Accessibility label for the inline quick presets group. */
|
|
6737
7276
|
inlineQuickPresetsAriaLabel?: string;
|
|
@@ -7720,8 +8259,18 @@ interface MaterialTreeSelectMetadata extends FieldMetadata {
|
|
|
7720
8259
|
returnObject?: boolean;
|
|
7721
8260
|
}
|
|
7722
8261
|
|
|
7723
|
-
type PraxisJsonLogicIssueCode = 'RULE_SHAPE_INVALID' | 'RULE_OPERATOR_UNKNOWN' | 'RULE_OPERATOR_CONFLICT' | 'RULE_ARITY_INVALID' | 'RULE_PATH_INVALID' | 'RULE_CONTEXT_AMBIGUOUS' | 'RULE_ROOT_UNKNOWN' | 'RULE_ARGUMENT_TYPE_INVALID';
|
|
8262
|
+
type PraxisJsonLogicIssueCode = 'RULE_SHAPE_INVALID' | 'RULE_OPERATOR_UNKNOWN' | 'RULE_OPERATOR_CONFLICT' | 'RULE_ARITY_INVALID' | 'RULE_PATH_INVALID' | 'RULE_CONTEXT_AMBIGUOUS' | 'RULE_ROOT_UNKNOWN' | 'RULE_ARGUMENT_TYPE_INVALID' | 'RULE_TEMPORAL_INPUT_INVALID' | 'RULE_REGEX_INVALID' | 'RULE_LIMIT_EXCEEDED';
|
|
7724
8263
|
type PraxisJsonLogicRuntimeValue = unknown;
|
|
8264
|
+
interface PraxisJsonLogicLimits {
|
|
8265
|
+
maxDepth: number;
|
|
8266
|
+
maxNodes: number;
|
|
8267
|
+
maxExpressionBytes: number;
|
|
8268
|
+
maxArrayItems: number;
|
|
8269
|
+
maxStringLength: number;
|
|
8270
|
+
maxOperations: number;
|
|
8271
|
+
maxRegexLength: number;
|
|
8272
|
+
maxRegexComplexity: number;
|
|
8273
|
+
}
|
|
7725
8274
|
interface PraxisJsonLogicEvaluationContext {
|
|
7726
8275
|
data: JsonLogicDataRecord;
|
|
7727
8276
|
availableRoots?: RuleContextRoot[];
|
|
@@ -7729,6 +8278,7 @@ interface PraxisJsonLogicEvaluationContext {
|
|
|
7729
8278
|
allowImplicitRoot?: boolean;
|
|
7730
8279
|
nowUtc?: string;
|
|
7731
8280
|
userTimeZone?: string;
|
|
8281
|
+
limits?: PraxisJsonLogicLimits;
|
|
7732
8282
|
}
|
|
7733
8283
|
interface PraxisJsonLogicEvaluationOptions {
|
|
7734
8284
|
availableRoots?: RuleContextRoot[];
|
|
@@ -7736,6 +8286,7 @@ interface PraxisJsonLogicEvaluationOptions {
|
|
|
7736
8286
|
allowImplicitRoot?: boolean;
|
|
7737
8287
|
nowUtc?: string;
|
|
7738
8288
|
userTimeZone?: string;
|
|
8289
|
+
limits?: Partial<PraxisJsonLogicLimits>;
|
|
7739
8290
|
}
|
|
7740
8291
|
interface PraxisJsonLogicValidationOptions extends PraxisJsonLogicEvaluationOptions {
|
|
7741
8292
|
requireExpressionObject?: boolean;
|
|
@@ -7827,6 +8378,7 @@ declare class PraxisJsonLogicService {
|
|
|
7827
8378
|
private evaluateNone;
|
|
7828
8379
|
private requireHigherOrderArgs;
|
|
7829
8380
|
private assertArrayOperand;
|
|
8381
|
+
private assertIntermediateArrayLimit;
|
|
7830
8382
|
private createChildContext;
|
|
7831
8383
|
private evaluateArgs;
|
|
7832
8384
|
private requireArgs;
|
|
@@ -8047,18 +8599,89 @@ declare class DynamicFormService {
|
|
|
8047
8599
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicFormService>;
|
|
8048
8600
|
}
|
|
8049
8601
|
|
|
8602
|
+
type PraxisLocale = string;
|
|
8603
|
+
interface PraxisTranslationParams {
|
|
8604
|
+
[key: string]: string | number | boolean | null | undefined;
|
|
8605
|
+
}
|
|
8606
|
+
interface PraxisI18nMessageDescriptor {
|
|
8607
|
+
key?: string;
|
|
8608
|
+
text?: string;
|
|
8609
|
+
params?: PraxisTranslationParams;
|
|
8610
|
+
}
|
|
8611
|
+
type PraxisTextValue = string | PraxisI18nMessageDescriptor;
|
|
8612
|
+
interface PraxisI18nDictionary {
|
|
8613
|
+
[key: string]: string;
|
|
8614
|
+
}
|
|
8615
|
+
interface PraxisI18nNamespaceDictionary {
|
|
8616
|
+
[locale: string]: PraxisI18nDictionary;
|
|
8617
|
+
}
|
|
8618
|
+
interface PraxisI18nNamespaceConfig {
|
|
8619
|
+
[namespace: string]: PraxisI18nNamespaceDictionary;
|
|
8620
|
+
}
|
|
8621
|
+
interface PraxisI18nConfig {
|
|
8622
|
+
locale?: PraxisLocale;
|
|
8623
|
+
fallbackLocale?: PraxisLocale;
|
|
8624
|
+
dictionaries?: Record<PraxisLocale, PraxisI18nDictionary>;
|
|
8625
|
+
namespaces?: PraxisI18nNamespaceConfig;
|
|
8626
|
+
}
|
|
8627
|
+
interface PraxisI18nTranslator {
|
|
8628
|
+
translate(key: string, params?: PraxisTranslationParams, fallback?: string): string;
|
|
8629
|
+
}
|
|
8630
|
+
|
|
8631
|
+
declare class PraxisI18nService {
|
|
8632
|
+
private readonly configs;
|
|
8633
|
+
private readonly translator;
|
|
8634
|
+
private readonly globalConfig;
|
|
8635
|
+
private readonly bootstrapOptions;
|
|
8636
|
+
constructor(configs: Array<Partial<PraxisI18nConfig>> | Partial<PraxisI18nConfig> | null, translator: PraxisI18nTranslator | null);
|
|
8637
|
+
getLocale(): string;
|
|
8638
|
+
getFallbackLocale(): string;
|
|
8639
|
+
t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8640
|
+
tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8641
|
+
resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
|
|
8642
|
+
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
8643
|
+
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
8644
|
+
formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
|
|
8645
|
+
private getConfig;
|
|
8646
|
+
private lookup;
|
|
8647
|
+
private translateExternally;
|
|
8648
|
+
private stringifyInvalidValue;
|
|
8649
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisI18nService, [{ optional: true; }, { optional: true; }]>;
|
|
8650
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisI18nService>;
|
|
8651
|
+
}
|
|
8652
|
+
|
|
8653
|
+
interface PraxisSubmitErrorDetail {
|
|
8654
|
+
code?: string;
|
|
8655
|
+
target?: string;
|
|
8656
|
+
category?: string;
|
|
8657
|
+
message: string;
|
|
8658
|
+
}
|
|
8659
|
+
interface PraxisSubmitError {
|
|
8660
|
+
message: string;
|
|
8661
|
+
details: PraxisSubmitErrorDetail[];
|
|
8662
|
+
}
|
|
8050
8663
|
/**
|
|
8051
8664
|
* Maps HTTP or network errors to user-friendly messages.
|
|
8052
8665
|
* This service centralizes error messaging so UI components don't
|
|
8053
8666
|
* need to know about HTTP status codes or low level error objects.
|
|
8054
8667
|
*/
|
|
8055
8668
|
declare class ErrorMessageService {
|
|
8669
|
+
private readonly i18n;
|
|
8670
|
+
constructor(i18n?: PraxisI18nService | null);
|
|
8671
|
+
normalizeSubmitError(error: unknown): PraxisSubmitError;
|
|
8056
8672
|
/**
|
|
8057
8673
|
* Returns a generic message for an error returned during a form submit.
|
|
8058
8674
|
* @param error Error object possibly containing an HTTP status code
|
|
8059
8675
|
*/
|
|
8060
8676
|
getSubmitErrorMessage(error: unknown): string;
|
|
8061
|
-
|
|
8677
|
+
private fallbackMessage;
|
|
8678
|
+
private normalizeDetails;
|
|
8679
|
+
private objectValue;
|
|
8680
|
+
private textValue;
|
|
8681
|
+
private numberValue;
|
|
8682
|
+
private genericSubmitError;
|
|
8683
|
+
private tx;
|
|
8684
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorMessageService, [{ optional: true; }]>;
|
|
8062
8685
|
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorMessageService>;
|
|
8063
8686
|
}
|
|
8064
8687
|
|
|
@@ -8102,6 +8725,25 @@ interface PortContract {
|
|
|
8102
8725
|
examples?: unknown[];
|
|
8103
8726
|
}
|
|
8104
8727
|
|
|
8728
|
+
interface ComponentConfigEditorContextRequest {
|
|
8729
|
+
componentId: string;
|
|
8730
|
+
widgetKey: string;
|
|
8731
|
+
widgetType?: string;
|
|
8732
|
+
persistedInputs: Record<string, unknown>;
|
|
8733
|
+
page?: unknown;
|
|
8734
|
+
widget?: unknown;
|
|
8735
|
+
metadata: ComponentDocMeta;
|
|
8736
|
+
}
|
|
8737
|
+
interface ComponentConfigEditorContextResult {
|
|
8738
|
+
context?: Record<string, unknown>;
|
|
8739
|
+
diagnostics?: Array<{
|
|
8740
|
+
code: string;
|
|
8741
|
+
severity?: 'info' | 'warning' | 'error';
|
|
8742
|
+
message?: string;
|
|
8743
|
+
path?: string;
|
|
8744
|
+
}>;
|
|
8745
|
+
}
|
|
8746
|
+
type ComponentConfigEditorContextResolver = (request: ComponentConfigEditorContextRequest) => ComponentConfigEditorContextResult | Record<string, unknown> | Promise<ComponentConfigEditorContextResult | Record<string, unknown>>;
|
|
8105
8747
|
/**
|
|
8106
8748
|
* Documentation metadata for dynamically added components.
|
|
8107
8749
|
*
|
|
@@ -8194,6 +8836,14 @@ interface ComponentDocMeta {
|
|
|
8194
8836
|
component: Type<unknown>;
|
|
8195
8837
|
/** Optional title shown by hosts when opening the editor. */
|
|
8196
8838
|
title?: string;
|
|
8839
|
+
/**
|
|
8840
|
+
* Optional transient authoring context resolver.
|
|
8841
|
+
*
|
|
8842
|
+
* The host resolves this immediately before opening the editor and passes
|
|
8843
|
+
* the result separately from persisted widget inputs. The returned context
|
|
8844
|
+
* must not be serialized into widget.definition.inputs.
|
|
8845
|
+
*/
|
|
8846
|
+
contextResolver?: ComponentConfigEditorContextResolver;
|
|
8197
8847
|
};
|
|
8198
8848
|
/** Optional canonical AI authoring manifest reference published by the component owner. */
|
|
8199
8849
|
authoringManifestRef?: {
|
|
@@ -8229,35 +8879,6 @@ interface ComponentDocMeta {
|
|
|
8229
8879
|
};
|
|
8230
8880
|
}
|
|
8231
8881
|
|
|
8232
|
-
type PraxisLocale = string;
|
|
8233
|
-
interface PraxisTranslationParams {
|
|
8234
|
-
[key: string]: string | number | boolean | null | undefined;
|
|
8235
|
-
}
|
|
8236
|
-
interface PraxisI18nMessageDescriptor {
|
|
8237
|
-
key?: string;
|
|
8238
|
-
text?: string;
|
|
8239
|
-
params?: PraxisTranslationParams;
|
|
8240
|
-
}
|
|
8241
|
-
type PraxisTextValue = string | PraxisI18nMessageDescriptor;
|
|
8242
|
-
interface PraxisI18nDictionary {
|
|
8243
|
-
[key: string]: string;
|
|
8244
|
-
}
|
|
8245
|
-
interface PraxisI18nNamespaceDictionary {
|
|
8246
|
-
[locale: string]: PraxisI18nDictionary;
|
|
8247
|
-
}
|
|
8248
|
-
interface PraxisI18nNamespaceConfig {
|
|
8249
|
-
[namespace: string]: PraxisI18nNamespaceDictionary;
|
|
8250
|
-
}
|
|
8251
|
-
interface PraxisI18nConfig {
|
|
8252
|
-
locale?: PraxisLocale;
|
|
8253
|
-
fallbackLocale?: PraxisLocale;
|
|
8254
|
-
dictionaries?: Record<PraxisLocale, PraxisI18nDictionary>;
|
|
8255
|
-
namespaces?: PraxisI18nNamespaceConfig;
|
|
8256
|
-
}
|
|
8257
|
-
interface PraxisI18nTranslator {
|
|
8258
|
-
translate(key: string, params?: PraxisTranslationParams, fallback?: string): string;
|
|
8259
|
-
}
|
|
8260
|
-
|
|
8261
8882
|
interface ComponentMetadataEditorialBindingDescriptor {
|
|
8262
8883
|
name: string;
|
|
8263
8884
|
type: string;
|
|
@@ -8309,28 +8930,6 @@ interface ComponentEditorialResolveOptions {
|
|
|
8309
8930
|
namespace?: string;
|
|
8310
8931
|
}
|
|
8311
8932
|
|
|
8312
|
-
declare class PraxisI18nService {
|
|
8313
|
-
private readonly configs;
|
|
8314
|
-
private readonly translator;
|
|
8315
|
-
private readonly globalConfig;
|
|
8316
|
-
private readonly bootstrapOptions;
|
|
8317
|
-
constructor(configs: Array<Partial<PraxisI18nConfig>> | Partial<PraxisI18nConfig> | null, translator: PraxisI18nTranslator | null);
|
|
8318
|
-
getLocale(): string;
|
|
8319
|
-
getFallbackLocale(): string;
|
|
8320
|
-
t(key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8321
|
-
tForLocale(locale: string, key: string, params?: PraxisTranslationParams, fallback?: string, namespace?: string): string;
|
|
8322
|
-
resolve(message: PraxisTextValue | null | undefined, fallback?: string, namespace?: string): string;
|
|
8323
|
-
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
8324
|
-
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
8325
|
-
formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
|
|
8326
|
-
private getConfig;
|
|
8327
|
-
private lookup;
|
|
8328
|
-
private translateExternally;
|
|
8329
|
-
private stringifyInvalidValue;
|
|
8330
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisI18nService, [{ optional: true; }, { optional: true; }]>;
|
|
8331
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisI18nService>;
|
|
8332
|
-
}
|
|
8333
|
-
|
|
8334
8933
|
/**
|
|
8335
8934
|
* Simple in-memory registry of component documentation metadata.
|
|
8336
8935
|
*
|
|
@@ -8368,14 +8967,21 @@ declare class ComponentMetadataRegistry {
|
|
|
8368
8967
|
*/
|
|
8369
8968
|
private normalizeMeta;
|
|
8370
8969
|
private normalizeEditorialDescriptor;
|
|
8970
|
+
private assertCanRegisterMetadata;
|
|
8971
|
+
private assertCanRegisterEditorialMetadata;
|
|
8371
8972
|
private resolveEditorialDescriptor;
|
|
8372
8973
|
private resolveComponentDocMeta;
|
|
8373
8974
|
private findLegacyMetadata;
|
|
8374
8975
|
private resolveEditorialBinding;
|
|
8375
8976
|
private resolveTextValue;
|
|
8376
8977
|
private resolveOptionalTextValue;
|
|
8978
|
+
private defaultCopy;
|
|
8979
|
+
private resolveDefaultCopy;
|
|
8377
8980
|
private isEditorialDescriptor;
|
|
8378
8981
|
private clonePortContract;
|
|
8982
|
+
private cloneComponentDocMeta;
|
|
8983
|
+
private cloneEditorialDescriptor;
|
|
8984
|
+
private cloneValue;
|
|
8379
8985
|
private normalizeComponentType;
|
|
8380
8986
|
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentMetadataRegistry, [{ optional: true; }]>;
|
|
8381
8987
|
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentMetadataRegistry>;
|
|
@@ -8585,15 +9191,25 @@ declare class ResourceDiscoveryService {
|
|
|
8585
9191
|
getSurfaces(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceSurfaceCatalogResponse>;
|
|
8586
9192
|
getActions(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceActionCatalogResponse>;
|
|
8587
9193
|
getCapabilities(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceCapabilitySnapshot>;
|
|
9194
|
+
getCapabilitiesByUrl(href: string, options?: ResourceDiscoveryRequestOptions): Observable<ResourceCapabilitySnapshot>;
|
|
9195
|
+
getSchemaCatalog(query?: ResourceSchemaCatalogQuery, options?: ResourceDiscoveryRequestOptions): Observable<ResourceSchemaCatalogResponse>;
|
|
8588
9196
|
fetchJson<T>(href: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
8589
9197
|
getSchemaByUrl<T = Record<string, any>>(schemaUrl: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
8590
9198
|
getSchemaFieldsByUrl(schemaUrl: string, options?: ResourceDiscoveryRequestOptions): Observable<FieldDefinition[]>;
|
|
8591
9199
|
resolveHref(href: string, options?: ResourceDiscoveryRequestOptions): string;
|
|
8592
9200
|
private requireLinkHref;
|
|
9201
|
+
private toSchemaCatalogParams;
|
|
8593
9202
|
private extractLinks;
|
|
8594
9203
|
resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
|
|
8595
9204
|
private resolveApiOrigin;
|
|
8596
9205
|
private resolveApiBaseUrl;
|
|
9206
|
+
private resolveTrustedAbsoluteHref;
|
|
9207
|
+
private isTrustedOrigin;
|
|
9208
|
+
private getTrustedOrigins;
|
|
9209
|
+
private normalizeOrigin;
|
|
9210
|
+
private isProxyableApiPath;
|
|
9211
|
+
private normalizePathPrefix;
|
|
9212
|
+
private isAbsoluteHttpUrl;
|
|
8597
9213
|
private resolveApiBaseHref;
|
|
8598
9214
|
private resolveEndpointEntry;
|
|
8599
9215
|
private getRuntimeOrigin;
|
|
@@ -8603,6 +9219,53 @@ declare class ResourceDiscoveryService {
|
|
|
8603
9219
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDiscoveryService>;
|
|
8604
9220
|
}
|
|
8605
9221
|
|
|
9222
|
+
type ResourceRecordOpenFailureCode = 'INVALID_REFERENCE' | 'SOURCE_IDENTITY_MISSING' | 'SOURCE_IDENTITY_INVALID' | 'RESOURCE_CATALOG_INVALID' | 'TARGET_SURFACE_UNAVAILABLE' | 'CONTEXTUAL_CATALOG_INVALID' | 'CONTEXTUAL_SURFACE_UNAVAILABLE' | 'DISCOVERY_FAILED';
|
|
9223
|
+
declare class ResourceRecordOpenError extends Error {
|
|
9224
|
+
readonly code: ResourceRecordOpenFailureCode;
|
|
9225
|
+
readonly detail?: unknown | undefined;
|
|
9226
|
+
constructor(code: ResourceRecordOpenFailureCode, message: string, detail?: unknown | undefined);
|
|
9227
|
+
}
|
|
9228
|
+
interface ResourceRecordOpenResolveOptions extends ResourceDiscoveryRequestOptions {
|
|
9229
|
+
presentation?: SurfacePresentation;
|
|
9230
|
+
title?: string;
|
|
9231
|
+
subtitle?: string;
|
|
9232
|
+
icon?: string;
|
|
9233
|
+
queryContext?: Record<string, unknown>;
|
|
9234
|
+
}
|
|
9235
|
+
interface ResourceRecordOpenResolution {
|
|
9236
|
+
resourceId: string | number;
|
|
9237
|
+
resourcePath: string;
|
|
9238
|
+
surface: ResourceSurfaceCatalogItem;
|
|
9239
|
+
payload: SurfaceOpenPayload;
|
|
9240
|
+
}
|
|
9241
|
+
/**
|
|
9242
|
+
* Resolves a governed record-open reference into a contextual surface payload.
|
|
9243
|
+
*
|
|
9244
|
+
* The service deliberately re-queries discovery for the current principal. It
|
|
9245
|
+
* never treats the authoring-time catalog, the row label or a local URL template
|
|
9246
|
+
* as authorization to open the target surface.
|
|
9247
|
+
*/
|
|
9248
|
+
declare class ResourceRecordOpenService {
|
|
9249
|
+
private readonly discovery;
|
|
9250
|
+
private readonly surfaceAdapter;
|
|
9251
|
+
resolve(reference: ResourceRecordOpenRef, record: unknown, options?: ResourceRecordOpenResolveOptions): Observable<ResourceRecordOpenResolution>;
|
|
9252
|
+
private materializeContextualSurface;
|
|
9253
|
+
private requireCollectionTargetSurface;
|
|
9254
|
+
private requireSurface;
|
|
9255
|
+
private requireCatalog;
|
|
9256
|
+
private requireReference;
|
|
9257
|
+
private requireResourceId;
|
|
9258
|
+
private surfaceCatalogHref;
|
|
9259
|
+
private itemHref;
|
|
9260
|
+
private safeResourcePath;
|
|
9261
|
+
private normalizeFailure;
|
|
9262
|
+
private record;
|
|
9263
|
+
private text;
|
|
9264
|
+
private nullableText;
|
|
9265
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceRecordOpenService, never>;
|
|
9266
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceRecordOpenService>;
|
|
9267
|
+
}
|
|
9268
|
+
|
|
8606
9269
|
declare const DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
|
|
8607
9270
|
interface DomainCatalogRelease {
|
|
8608
9271
|
releaseKey: string;
|
|
@@ -8741,6 +9404,7 @@ interface Domain360CatalogResponse {
|
|
|
8741
9404
|
|
|
8742
9405
|
interface DomainCatalogRequestOptions extends ResourceDiscoveryRequestOptions {
|
|
8743
9406
|
serviceKey?: string;
|
|
9407
|
+
resourceKey?: string;
|
|
8744
9408
|
limit?: number;
|
|
8745
9409
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
8746
9410
|
}
|
|
@@ -9134,6 +9798,133 @@ declare class DomainRuleService {
|
|
|
9134
9798
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
|
|
9135
9799
|
}
|
|
9136
9800
|
|
|
9801
|
+
interface EnterpriseRuntimeUser {
|
|
9802
|
+
userId: string;
|
|
9803
|
+
displayName?: string | null;
|
|
9804
|
+
resolvedFromServerPrincipal?: boolean;
|
|
9805
|
+
}
|
|
9806
|
+
interface EnterpriseRuntimeTenant {
|
|
9807
|
+
tenantId: string;
|
|
9808
|
+
label?: string | null;
|
|
9809
|
+
active?: boolean;
|
|
9810
|
+
}
|
|
9811
|
+
interface EnterpriseRuntimeTenantsResponse {
|
|
9812
|
+
schemaVersion: string;
|
|
9813
|
+
activeTenant?: EnterpriseRuntimeTenant | null;
|
|
9814
|
+
tenants?: EnterpriseRuntimeTenant[];
|
|
9815
|
+
capabilities?: string[];
|
|
9816
|
+
resolvedAt?: string | null;
|
|
9817
|
+
}
|
|
9818
|
+
interface EnterpriseRuntimeContext {
|
|
9819
|
+
schemaVersion: string;
|
|
9820
|
+
user: EnterpriseRuntimeUser;
|
|
9821
|
+
activeTenant: EnterpriseRuntimeTenant;
|
|
9822
|
+
environment?: string | null;
|
|
9823
|
+
locale?: string | null;
|
|
9824
|
+
timezone?: string | null;
|
|
9825
|
+
activeProfileId?: string | null;
|
|
9826
|
+
activeModuleKey?: string | null;
|
|
9827
|
+
/**
|
|
9828
|
+
* Host-resolved security authorities usable by metadata-driven UX policies.
|
|
9829
|
+
* Do not infer these from `capabilities` unless the host/backend explicitly
|
|
9830
|
+
* publishes that shared vocabulary.
|
|
9831
|
+
*/
|
|
9832
|
+
authorities?: string[];
|
|
9833
|
+
capabilities?: string[];
|
|
9834
|
+
resolvedAt?: string | null;
|
|
9835
|
+
}
|
|
9836
|
+
interface EnterpriseRuntimeContextSwitchCommand {
|
|
9837
|
+
targetTenantId?: string | null;
|
|
9838
|
+
targetProfileId?: string | null;
|
|
9839
|
+
targetModuleKey?: string | null;
|
|
9840
|
+
locale?: string | null;
|
|
9841
|
+
timezone?: string | null;
|
|
9842
|
+
reason?: string | null;
|
|
9843
|
+
}
|
|
9844
|
+
interface EnterpriseRuntimeContextSwitchResponse {
|
|
9845
|
+
schemaVersion: string;
|
|
9846
|
+
accepted: boolean;
|
|
9847
|
+
message?: string | null;
|
|
9848
|
+
effectiveContext?: EnterpriseRuntimeContext | null;
|
|
9849
|
+
propagationHeaders?: Record<string, string>;
|
|
9850
|
+
capabilities?: string[];
|
|
9851
|
+
resolvedAt?: string | null;
|
|
9852
|
+
}
|
|
9853
|
+
interface EnterpriseRuntimeNavigationNode {
|
|
9854
|
+
id: string;
|
|
9855
|
+
label?: string | null;
|
|
9856
|
+
type?: string | null;
|
|
9857
|
+
href?: string | null;
|
|
9858
|
+
route?: string | null;
|
|
9859
|
+
moduleKey?: string | null;
|
|
9860
|
+
resourceKey?: string | null;
|
|
9861
|
+
surfaceRef?: string | null;
|
|
9862
|
+
actionRef?: string | null;
|
|
9863
|
+
capabilityRef?: string | null;
|
|
9864
|
+
children?: EnterpriseRuntimeNavigationNode[];
|
|
9865
|
+
}
|
|
9866
|
+
interface EnterpriseRuntimeNavigationResponse {
|
|
9867
|
+
schemaVersion: string;
|
|
9868
|
+
nodes?: EnterpriseRuntimeNavigationNode[];
|
|
9869
|
+
capabilities?: string[];
|
|
9870
|
+
resolvedAt?: string | null;
|
|
9871
|
+
}
|
|
9872
|
+
interface EnterpriseRuntimeSecurityEvent {
|
|
9873
|
+
eventRef?: string | null;
|
|
9874
|
+
eventType?: string | null;
|
|
9875
|
+
severity?: string | null;
|
|
9876
|
+
summary?: string | null;
|
|
9877
|
+
tenantId?: string | null;
|
|
9878
|
+
environment?: string | null;
|
|
9879
|
+
occurredAt?: string | null;
|
|
9880
|
+
metadata?: Record<string, string>;
|
|
9881
|
+
}
|
|
9882
|
+
interface EnterpriseRuntimeSecurityEventsResponse {
|
|
9883
|
+
schemaVersion: string;
|
|
9884
|
+
events?: EnterpriseRuntimeSecurityEvent[];
|
|
9885
|
+
capabilities?: string[];
|
|
9886
|
+
resolvedAt?: string | null;
|
|
9887
|
+
}
|
|
9888
|
+
interface EnterpriseRuntimeContextHeaders {
|
|
9889
|
+
'X-Tenant-ID'?: string;
|
|
9890
|
+
'X-User-ID'?: string;
|
|
9891
|
+
'X-Env'?: string;
|
|
9892
|
+
'Accept-Language'?: string;
|
|
9893
|
+
'X-Timezone'?: string;
|
|
9894
|
+
'X-Praxis-Profile-ID'?: string;
|
|
9895
|
+
'X-Praxis-Module-Key'?: string;
|
|
9896
|
+
}
|
|
9897
|
+
|
|
9898
|
+
type RuntimeHeaderMap = Record<string, string | undefined>;
|
|
9899
|
+
declare class EnterpriseRuntimeContextService {
|
|
9900
|
+
private readonly http;
|
|
9901
|
+
private readonly apiUrl;
|
|
9902
|
+
private readonly options;
|
|
9903
|
+
private readonly contextSubject;
|
|
9904
|
+
private loadPromise;
|
|
9905
|
+
readonly contextChanges$: Observable<EnterpriseRuntimeContext | null>;
|
|
9906
|
+
get snapshot(): EnterpriseRuntimeContext | null;
|
|
9907
|
+
ready(): Promise<EnterpriseRuntimeContext | null>;
|
|
9908
|
+
refresh(): Promise<EnterpriseRuntimeContext | null>;
|
|
9909
|
+
tenants(): Promise<EnterpriseRuntimeTenantsResponse>;
|
|
9910
|
+
navigation(): Promise<EnterpriseRuntimeNavigationResponse>;
|
|
9911
|
+
securityEvents(): Promise<EnterpriseRuntimeSecurityEventsResponse>;
|
|
9912
|
+
switchContext(command: EnterpriseRuntimeContextSwitchCommand): Promise<EnterpriseRuntimeContextSwitchResponse>;
|
|
9913
|
+
headers(fallback?: RuntimeHeaderMap): EnterpriseRuntimeContextHeaders;
|
|
9914
|
+
private load;
|
|
9915
|
+
private getRuntimeSurface;
|
|
9916
|
+
private endpoint;
|
|
9917
|
+
private configuredEndpoint;
|
|
9918
|
+
private runtimeRoot;
|
|
9919
|
+
private surfacePath;
|
|
9920
|
+
private requestHeaders;
|
|
9921
|
+
private globalFetchHeaders;
|
|
9922
|
+
private headersFromSnapshot;
|
|
9923
|
+
private normalizeHeaders;
|
|
9924
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnterpriseRuntimeContextService, never>;
|
|
9925
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnterpriseRuntimeContextService>;
|
|
9926
|
+
}
|
|
9927
|
+
|
|
9137
9928
|
type PraxisRuntimeComponentObservationSchemaVersion = 'praxis-runtime-component-observation.v1';
|
|
9138
9929
|
type PraxisRuntimeComponentObservationClaimKind = 'component' | 'manifest' | 'resource' | 'schemaField' | 'selection' | 'operation' | 'surface' | 'action' | 'stateDigest' | 'dataDigest';
|
|
9139
9930
|
interface PraxisRuntimeComponentObservationEnvelope {
|
|
@@ -9192,6 +9983,21 @@ interface PraxisRuntimeComponentAffordanceHints {
|
|
|
9192
9983
|
activeOperationRefs?: string[];
|
|
9193
9984
|
activeSurfaceRefs?: string[];
|
|
9194
9985
|
activeActionRefs?: string[];
|
|
9986
|
+
visualMaterialization?: PraxisRuntimeVisualMaterializationCapability;
|
|
9987
|
+
}
|
|
9988
|
+
type PraxisRuntimeVisualMaterializationStatus = 'supported' | 'blocked' | 'unknown';
|
|
9989
|
+
interface PraxisRuntimeVisualMaterializationCapability {
|
|
9990
|
+
inlineStyle: PraxisRuntimeVisualMaterializationStatus;
|
|
9991
|
+
governedClass: 'supported' | 'unknown';
|
|
9992
|
+
constraintRefs?: Array<'csp.strict-style-src' | 'host.style-policy'>;
|
|
9993
|
+
surfacePresetCatalog?: {
|
|
9994
|
+
catalogId: string;
|
|
9995
|
+
catalogVersion: string;
|
|
9996
|
+
themeRef: string;
|
|
9997
|
+
themeMode: 'light' | 'dark' | 'high-contrast' | 'unknown';
|
|
9998
|
+
supportedScopes: Array<'row' | 'cell'>;
|
|
9999
|
+
supportedPresetIds: string[];
|
|
10000
|
+
};
|
|
9195
10001
|
}
|
|
9196
10002
|
interface PraxisRuntimeComponentObservationClaim {
|
|
9197
10003
|
kind: PraxisRuntimeComponentObservationClaimKind;
|
|
@@ -9293,6 +10099,87 @@ declare class ResourceSurfaceOpenAdapterService {
|
|
|
9293
10099
|
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
|
|
9294
10100
|
}
|
|
9295
10101
|
|
|
10102
|
+
interface SurfaceOutletRegistration {
|
|
10103
|
+
resourceKey: string;
|
|
10104
|
+
surfaceId: string;
|
|
10105
|
+
priority?: number;
|
|
10106
|
+
activate: (payload: SurfaceOpenPayload, context?: GlobalActionContext) => boolean | Promise<boolean>;
|
|
10107
|
+
}
|
|
10108
|
+
declare class SurfaceOutletRegistryService {
|
|
10109
|
+
private readonly registrations;
|
|
10110
|
+
register(registration: SurfaceOutletRegistration): () => void;
|
|
10111
|
+
tryActivate(payload: SurfaceOpenPayload, context?: GlobalActionContext): Promise<boolean>;
|
|
10112
|
+
private key;
|
|
10113
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceOutletRegistryService, never>;
|
|
10114
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SurfaceOutletRegistryService>;
|
|
10115
|
+
}
|
|
10116
|
+
|
|
10117
|
+
type RelatedResourceResolutionState = 'idle' | 'resolving' | 'loading' | 'ready' | 'empty' | 'permission-limited' | 'not-found' | 'error';
|
|
10118
|
+
interface RelatedResourceQueryContext {
|
|
10119
|
+
filters?: Record<string, unknown> | null;
|
|
10120
|
+
filterExpression?: unknown;
|
|
10121
|
+
sort?: string[] | null;
|
|
10122
|
+
limit?: number | null;
|
|
10123
|
+
page?: {
|
|
10124
|
+
index?: number | null;
|
|
10125
|
+
size?: number | null;
|
|
10126
|
+
} | null;
|
|
10127
|
+
meta?: Record<string, unknown> | null;
|
|
10128
|
+
}
|
|
10129
|
+
interface RelatedResourceSurfaceResolverRequest {
|
|
10130
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
10131
|
+
parentRecord?: Record<string, unknown> | null;
|
|
10132
|
+
parentResourceId?: string | number | null;
|
|
10133
|
+
parentResourcePath?: string | null;
|
|
10134
|
+
presentation?: SurfacePresentation;
|
|
10135
|
+
title?: string | null;
|
|
10136
|
+
subtitle?: string | null;
|
|
10137
|
+
icon?: string | null;
|
|
10138
|
+
tableId?: string | null;
|
|
10139
|
+
tableConfig?: Record<string, unknown> | null;
|
|
10140
|
+
enableCustomization?: boolean | null;
|
|
10141
|
+
authoringCapability?: string | null;
|
|
10142
|
+
emptyState?: Record<string, unknown> | null;
|
|
10143
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
10144
|
+
apiEndpointKey?: ApiEndpoint | null;
|
|
10145
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
10146
|
+
}
|
|
10147
|
+
interface RelatedResourceSurfaceResolution {
|
|
10148
|
+
state: RelatedResourceResolutionState;
|
|
10149
|
+
reason?: string;
|
|
10150
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
10151
|
+
relatedResource?: RelatedResourceSurface | null;
|
|
10152
|
+
parentResourceId?: string | number | null;
|
|
10153
|
+
childResourcePath?: string | null;
|
|
10154
|
+
childResourceKey?: string | null;
|
|
10155
|
+
queryContext?: RelatedResourceQueryContext | null;
|
|
10156
|
+
payload?: SurfaceOpenPayload;
|
|
10157
|
+
}
|
|
10158
|
+
declare class RelatedResourceSurfaceResolverService {
|
|
10159
|
+
private readonly i18n;
|
|
10160
|
+
resolve(request: RelatedResourceSurfaceResolverRequest | null | undefined): RelatedResourceSurfaceResolution;
|
|
10161
|
+
state(state: RelatedResourceResolutionState, reason?: string): RelatedResourceSurfaceResolution;
|
|
10162
|
+
private buildPayload;
|
|
10163
|
+
private buildTableConfig;
|
|
10164
|
+
private buildRelatedEmptyState;
|
|
10165
|
+
private objectValue;
|
|
10166
|
+
private buildQueryContext;
|
|
10167
|
+
private resolveParentResourceId;
|
|
10168
|
+
private readPath;
|
|
10169
|
+
private isCompleteRelatedResource;
|
|
10170
|
+
private hasReadOperation;
|
|
10171
|
+
private buildStableTableId;
|
|
10172
|
+
private normalizeResourcePath;
|
|
10173
|
+
private sanitizeStableId;
|
|
10174
|
+
private humanizeResourceKey;
|
|
10175
|
+
private t;
|
|
10176
|
+
private interpolate;
|
|
10177
|
+
private trim;
|
|
10178
|
+
private clone;
|
|
10179
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RelatedResourceSurfaceResolverService, never>;
|
|
10180
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RelatedResourceSurfaceResolverService>;
|
|
10181
|
+
}
|
|
10182
|
+
|
|
9296
10183
|
type SurfaceOpenMaterializationContext = {
|
|
9297
10184
|
payload?: unknown;
|
|
9298
10185
|
runtime?: unknown;
|
|
@@ -9301,21 +10188,6 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9301
10188
|
private readonly discovery;
|
|
9302
10189
|
materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
|
|
9303
10190
|
private projectMaterializedFormInputs;
|
|
9304
|
-
private buildLocalFormConfig;
|
|
9305
|
-
private buildMaterializedFormFields;
|
|
9306
|
-
private buildMaterializedFormSections;
|
|
9307
|
-
private shouldRenderMaterializedFormField;
|
|
9308
|
-
private isTechnicalRelationIdField;
|
|
9309
|
-
private isResolvedDisplayCompanionField;
|
|
9310
|
-
private resolveDisplayCompanionBase;
|
|
9311
|
-
private hasDisplayCompanion;
|
|
9312
|
-
private isDuplicateMediaUrlField;
|
|
9313
|
-
private looksLikeMediaUrlField;
|
|
9314
|
-
private looksLikeAvatarFieldName;
|
|
9315
|
-
private inferFormControlType;
|
|
9316
|
-
private humanizeFieldName;
|
|
9317
|
-
private stableSectionId;
|
|
9318
|
-
private chunk;
|
|
9319
10191
|
private shouldMaterializeItemReadProjection;
|
|
9320
10192
|
private resolveResponseCardinality;
|
|
9321
10193
|
private shouldMaterializeAsCollection;
|
|
@@ -9323,9 +10195,26 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9323
10195
|
private resolveResourceId;
|
|
9324
10196
|
private resolveItemReadUrl;
|
|
9325
10197
|
private resolveSchemaFields;
|
|
10198
|
+
private materializeArrayProjection;
|
|
10199
|
+
private materializeArrayAsCrud;
|
|
9326
10200
|
private materializeArrayAsTable;
|
|
10201
|
+
private ensureCollectionTableSelectionContract;
|
|
10202
|
+
private ensureTableSelectionConfig;
|
|
9327
10203
|
private projectTableInputs;
|
|
9328
10204
|
private buildLocalTableConfig;
|
|
10205
|
+
private objectRecord;
|
|
10206
|
+
private buildRelatedCrudActions;
|
|
10207
|
+
private buildRelatedCommandFormConfig;
|
|
10208
|
+
private buildExplicitRelatedActionForm;
|
|
10209
|
+
private buildRelatedCommandLayoutPolicy;
|
|
10210
|
+
private buildSchemaUrl;
|
|
10211
|
+
private hasRelatedChildWriteOperations;
|
|
10212
|
+
private resolveRelatedChildOperations;
|
|
10213
|
+
private resolveRelatedResource;
|
|
10214
|
+
private resolveRelatedSelectionKeyField;
|
|
10215
|
+
private resolveSurfacePath;
|
|
10216
|
+
private normalizeResourcePath;
|
|
10217
|
+
private resolveRelatedActionNoun;
|
|
9329
10218
|
private inferColumnsFromData;
|
|
9330
10219
|
private extractCollectionData;
|
|
9331
10220
|
private mergeMaterializationContext;
|
|
@@ -9363,6 +10252,7 @@ interface ResolvedCrudOperation {
|
|
|
9363
10252
|
interface ResolveCrudOperationRequest {
|
|
9364
10253
|
operation: ResourceCrudOperationId;
|
|
9365
10254
|
resourcePath: string;
|
|
10255
|
+
schemaResourcePath?: string | null;
|
|
9366
10256
|
resourceId?: string | number | null;
|
|
9367
10257
|
explicit?: ExplicitCrudResolutionContract | null;
|
|
9368
10258
|
}
|
|
@@ -9380,6 +10270,7 @@ declare class CrudOperationResolutionService {
|
|
|
9380
10270
|
private buildExplicitResolution;
|
|
9381
10271
|
private buildSurfaceResolution;
|
|
9382
10272
|
private buildConventionResolution;
|
|
10273
|
+
private addConventionSurfaceDiagnostic;
|
|
9383
10274
|
private resolveCanonicalSchemaUrl;
|
|
9384
10275
|
private buildCanonicalSchemaParams;
|
|
9385
10276
|
private resolveConventionSubmitUrl;
|
|
@@ -9400,6 +10291,7 @@ declare class CrudOperationResolutionService {
|
|
|
9400
10291
|
private normalizeResourcePath;
|
|
9401
10292
|
private resolveSchemaResourcePath;
|
|
9402
10293
|
private resolveCanonicalResourcePath;
|
|
10294
|
+
private resolveCanonicalSchemaResourcePath;
|
|
9403
10295
|
private toDiscoveryOptions;
|
|
9404
10296
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudOperationResolutionService, never>;
|
|
9405
10297
|
static ɵprov: i0.ɵɵInjectableDeclaration<CrudOperationResolutionService>;
|
|
@@ -9407,10 +10299,12 @@ declare class CrudOperationResolutionService {
|
|
|
9407
10299
|
|
|
9408
10300
|
type AnalyticsIntent = 'ranking' | 'trend' | 'distribution' | 'composition' | 'comparison' | 'correlation';
|
|
9409
10301
|
type AnalyticsSourceKind = 'praxis.stats';
|
|
9410
|
-
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution';
|
|
10302
|
+
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution' | 'comparison';
|
|
9411
10303
|
type AnalyticsStatsGranularity = 'day' | 'week' | 'month';
|
|
9412
10304
|
type AnalyticsStatsMetricOperation = 'COUNT' | 'DISTINCT_COUNT' | 'SUM' | 'AVG' | 'MIN' | 'MAX';
|
|
9413
10305
|
type AnalyticsStatsOrderBy = 'KEY_ASC' | 'KEY_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
|
|
10306
|
+
type AnalyticsComparisonPeriodPreset = 'TODAY' | 'YESTERDAY' | 'LAST_7_DAYS' | 'LAST_30_DAYS' | 'THIS_MONTH' | 'LAST_MONTH' | 'THIS_QUARTER' | 'THIS_YEAR';
|
|
10307
|
+
type AnalyticsComparisonPeriodMode = 'PREVIOUS_ALIGNED' | 'PREVIOUS_CALENDAR_PERIOD';
|
|
9414
10308
|
type AnalyticsPresentationFamily = 'chart' | 'analytic-table' | 'kpi' | 'summary-list';
|
|
9415
10309
|
interface PraxisXUiAnalytics {
|
|
9416
10310
|
projections: PraxisAnalyticsProjection[];
|
|
@@ -9433,17 +10327,26 @@ interface PraxisAnalyticsBindings {
|
|
|
9433
10327
|
primaryDimension?: PraxisAnalyticsDimensionBinding | null;
|
|
9434
10328
|
primaryMetrics: PraxisAnalyticsMetricBinding[];
|
|
9435
10329
|
secondaryMetrics?: PraxisAnalyticsMetricBinding[] | null;
|
|
10330
|
+
comparisonPeriod?: PraxisAnalyticsComparisonPeriodBinding | null;
|
|
9436
10331
|
}
|
|
9437
10332
|
interface PraxisAnalyticsDimensionBinding {
|
|
9438
10333
|
field: string;
|
|
9439
10334
|
role?: string | null;
|
|
9440
10335
|
label?: string | null;
|
|
10336
|
+
/** Public request field that receives the raw stats bucket key. */
|
|
10337
|
+
keyFilterField?: string | null;
|
|
9441
10338
|
}
|
|
9442
10339
|
interface PraxisAnalyticsMetricBinding {
|
|
9443
10340
|
field: string;
|
|
9444
10341
|
aggregation?: string | null;
|
|
9445
10342
|
label?: string | null;
|
|
9446
10343
|
}
|
|
10344
|
+
interface PraxisAnalyticsComparisonPeriodBinding {
|
|
10345
|
+
field: string;
|
|
10346
|
+
timezone: string;
|
|
10347
|
+
preset: AnalyticsComparisonPeriodPreset;
|
|
10348
|
+
mode: AnalyticsComparisonPeriodMode;
|
|
10349
|
+
}
|
|
9447
10350
|
interface PraxisAnalyticsDefaults {
|
|
9448
10351
|
sort?: PraxisAnalyticsSortRule[] | null;
|
|
9449
10352
|
limit?: number | null;
|
|
@@ -9503,7 +10406,51 @@ interface PraxisAnalyticsDistributionStatsRequest {
|
|
|
9503
10406
|
limit?: number;
|
|
9504
10407
|
orderBy?: AnalyticsStatsOrderBy;
|
|
9505
10408
|
}
|
|
9506
|
-
|
|
10409
|
+
interface PraxisAnalyticsComparisonStatsRequest {
|
|
10410
|
+
filter: Record<string, unknown>;
|
|
10411
|
+
field: string;
|
|
10412
|
+
periodField: string;
|
|
10413
|
+
metrics: PraxisAnalyticsStatsMetricRequest[];
|
|
10414
|
+
period: {
|
|
10415
|
+
preset: AnalyticsComparisonPeriodPreset;
|
|
10416
|
+
timezone: string;
|
|
10417
|
+
mode: AnalyticsComparisonPeriodMode;
|
|
10418
|
+
};
|
|
10419
|
+
limit?: number;
|
|
10420
|
+
orderBy?: AnalyticsStatsOrderBy;
|
|
10421
|
+
}
|
|
10422
|
+
/** One metric result returned for a bucket in a governed period comparison. */
|
|
10423
|
+
interface PraxisAnalyticsComparisonMetricValue {
|
|
10424
|
+
current: number | null;
|
|
10425
|
+
previous: number | null;
|
|
10426
|
+
delta: number | null;
|
|
10427
|
+
deltaPercent: number | null;
|
|
10428
|
+
baselineMissing: boolean;
|
|
10429
|
+
}
|
|
10430
|
+
/** A resolved, inclusive period returned by the comparison endpoint. */
|
|
10431
|
+
interface PraxisAnalyticsComparisonPeriodWindow {
|
|
10432
|
+
from: string;
|
|
10433
|
+
to: string;
|
|
10434
|
+
timezone: string;
|
|
10435
|
+
}
|
|
10436
|
+
/** Stable bucket identities emitted by the Praxis stats contract. */
|
|
10437
|
+
type PraxisAnalyticsComparisonBucketKey = string | number | boolean | null;
|
|
10438
|
+
/** A unioned bucket from the canonical comparison response. */
|
|
10439
|
+
interface PraxisAnalyticsComparisonBucket {
|
|
10440
|
+
key: PraxisAnalyticsComparisonBucketKey;
|
|
10441
|
+
label: string | null;
|
|
10442
|
+
values: Record<string, PraxisAnalyticsComparisonMetricValue | null>;
|
|
10443
|
+
}
|
|
10444
|
+
/** Canonical response from POST /{resource}/stats/comparison. */
|
|
10445
|
+
interface PraxisAnalyticsComparisonStatsResponse {
|
|
10446
|
+
field: string;
|
|
10447
|
+
periodField: string;
|
|
10448
|
+
metrics: PraxisAnalyticsStatsMetricRequest[];
|
|
10449
|
+
currentPeriod: PraxisAnalyticsComparisonPeriodWindow;
|
|
10450
|
+
previousPeriod: PraxisAnalyticsComparisonPeriodWindow;
|
|
10451
|
+
buckets: PraxisAnalyticsComparisonBucket[];
|
|
10452
|
+
}
|
|
10453
|
+
type PraxisAnalyticsStatsRequest = PraxisAnalyticsGroupByStatsRequest | PraxisAnalyticsTimeSeriesStatsRequest | PraxisAnalyticsDistributionStatsRequest | PraxisAnalyticsComparisonStatsRequest;
|
|
9507
10454
|
interface PraxisAnalyticsExecutionMetric {
|
|
9508
10455
|
field: string;
|
|
9509
10456
|
aggregation?: string;
|
|
@@ -9559,6 +10506,7 @@ declare class AnalyticsStatsRequestBuilderService {
|
|
|
9559
10506
|
buildExecutionPlan(projection: PraxisAnalyticsProjection): PraxisAnalyticsStatsExecutionPlan;
|
|
9560
10507
|
private buildStatsRequest;
|
|
9561
10508
|
private buildStatsMetric;
|
|
10509
|
+
private assertComparisonMetrics;
|
|
9562
10510
|
private mapAggregationToBackend;
|
|
9563
10511
|
private mapOrderBy;
|
|
9564
10512
|
private mapGranularityToBackend;
|
|
@@ -9795,12 +10743,33 @@ interface ObservabilityAlertRule {
|
|
|
9795
10743
|
threshold: number;
|
|
9796
10744
|
windowMs: number;
|
|
9797
10745
|
groupBy: ObservabilityAlertGroupBy;
|
|
10746
|
+
matchContext?: {
|
|
10747
|
+
lib?: string;
|
|
10748
|
+
component?: string;
|
|
10749
|
+
actionId?: string;
|
|
10750
|
+
};
|
|
9798
10751
|
throttleMs?: number;
|
|
9799
10752
|
}
|
|
9800
10753
|
interface ObservabilityCountBucket {
|
|
9801
10754
|
key: string;
|
|
9802
10755
|
count: number;
|
|
9803
10756
|
}
|
|
10757
|
+
interface ObservabilityAgenticTurnMetricBucket {
|
|
10758
|
+
key: string;
|
|
10759
|
+
started: number;
|
|
10760
|
+
completed: number;
|
|
10761
|
+
succeeded: number;
|
|
10762
|
+
timedOut: number;
|
|
10763
|
+
successRate: number;
|
|
10764
|
+
timeoutRate: number;
|
|
10765
|
+
averageDurationMs: number;
|
|
10766
|
+
p50DurationMs: number;
|
|
10767
|
+
p95DurationMs: number;
|
|
10768
|
+
}
|
|
10769
|
+
interface ObservabilityAgenticTurnMetrics extends Omit<ObservabilityAgenticTurnMetricBucket, 'key'> {
|
|
10770
|
+
byProvider: ReadonlyArray<ObservabilityAgenticTurnMetricBucket>;
|
|
10771
|
+
byModel: ReadonlyArray<ObservabilityAgenticTurnMetricBucket>;
|
|
10772
|
+
}
|
|
9804
10773
|
interface ObservabilityMetricsSnapshot {
|
|
9805
10774
|
generatedAt: string;
|
|
9806
10775
|
windowMs: number;
|
|
@@ -9809,6 +10778,7 @@ interface ObservabilityMetricsSnapshot {
|
|
|
9809
10778
|
byLib: ReadonlyArray<ObservabilityCountBucket>;
|
|
9810
10779
|
byComponent: ReadonlyArray<ObservabilityCountBucket>;
|
|
9811
10780
|
topActionIds: ReadonlyArray<ObservabilityCountBucket>;
|
|
10781
|
+
agenticTurns: ObservabilityAgenticTurnMetrics;
|
|
9812
10782
|
}
|
|
9813
10783
|
interface ObservabilityAlert {
|
|
9814
10784
|
severity: ObservabilityAlertSeverity;
|
|
@@ -9868,10 +10838,17 @@ declare class ObservabilityDashboardService {
|
|
|
9868
10838
|
getRecentAlerts(limit?: number): ReadonlyArray<ObservabilityAlert>;
|
|
9869
10839
|
clear(): void;
|
|
9870
10840
|
private evaluateAlerts;
|
|
10841
|
+
private matchesRuleContext;
|
|
9871
10842
|
private buildAlertContext;
|
|
9872
10843
|
private groupRecordsByRule;
|
|
9873
10844
|
private trimRecords;
|
|
9874
10845
|
private buildSnapshot;
|
|
10846
|
+
private buildAgenticTurnMetrics;
|
|
10847
|
+
private groupAgenticTurns;
|
|
10848
|
+
private summarizeAgenticTurns;
|
|
10849
|
+
private percentile;
|
|
10850
|
+
private agenticTurnData;
|
|
10851
|
+
private emptyAgenticTurnMetrics;
|
|
9875
10852
|
private incrementCounter;
|
|
9876
10853
|
private toSortedBuckets;
|
|
9877
10854
|
private normalizePayload;
|
|
@@ -9947,6 +10924,37 @@ declare const PRAXIS_LAYER_SCALE_VARS: {
|
|
|
9947
10924
|
};
|
|
9948
10925
|
declare function buildPraxisLayerScaleCss(scale?: PraxisLayerScale): string;
|
|
9949
10926
|
|
|
10927
|
+
/**
|
|
10928
|
+
* Host-themeable semantic surfaces shared by Praxis runtimes.
|
|
10929
|
+
*
|
|
10930
|
+
* These variables deliberately describe product roles rather than Material
|
|
10931
|
+
* implementation details. A host may override them without targeting MDC DOM.
|
|
10932
|
+
*/
|
|
10933
|
+
interface PraxisThemeSurfaceTokens {
|
|
10934
|
+
surface: string;
|
|
10935
|
+
surfaceRaised: string;
|
|
10936
|
+
surfaceOverlay: string;
|
|
10937
|
+
onSurface: string;
|
|
10938
|
+
onSurfaceMuted: string;
|
|
10939
|
+
outline: string;
|
|
10940
|
+
outlineStrong: string;
|
|
10941
|
+
focusOutline: string;
|
|
10942
|
+
elevation: string;
|
|
10943
|
+
}
|
|
10944
|
+
declare const PRAXIS_THEME_SURFACE_DEFAULTS: PraxisThemeSurfaceTokens;
|
|
10945
|
+
declare const PRAXIS_THEME_SURFACE_VARS: {
|
|
10946
|
+
readonly surface: "--praxis-theme-surface";
|
|
10947
|
+
readonly surfaceRaised: "--praxis-theme-surface-raised";
|
|
10948
|
+
readonly surfaceOverlay: "--praxis-theme-surface-overlay";
|
|
10949
|
+
readonly onSurface: "--praxis-theme-on-surface";
|
|
10950
|
+
readonly onSurfaceMuted: "--praxis-theme-on-surface-muted";
|
|
10951
|
+
readonly outline: "--praxis-theme-outline";
|
|
10952
|
+
readonly outlineStrong: "--praxis-theme-outline-strong";
|
|
10953
|
+
readonly focusOutline: "--praxis-theme-focus-outline";
|
|
10954
|
+
readonly elevation: "--praxis-theme-elevation";
|
|
10955
|
+
};
|
|
10956
|
+
declare function buildPraxisThemeSurfaceCss(tokens?: Partial<PraxisThemeSurfaceTokens>): string;
|
|
10957
|
+
|
|
9950
10958
|
declare const GLOBAL_CONFIG: InjectionToken<Partial<GlobalConfig>>;
|
|
9951
10959
|
interface PraxisAuthContext {
|
|
9952
10960
|
ready?: () => Promise<void>;
|
|
@@ -9982,6 +10990,62 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
|
|
|
9982
10990
|
declare function provideRemoteGlobalConfig(url: string): Provider;
|
|
9983
10991
|
declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
|
|
9984
10992
|
|
|
10993
|
+
interface PraxisEnterpriseRuntimeEndpoints {
|
|
10994
|
+
/**
|
|
10995
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10996
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10997
|
+
*/
|
|
10998
|
+
context?: string;
|
|
10999
|
+
/**
|
|
11000
|
+
* Absolute or relative endpoint for the host-owned tenant catalog.
|
|
11001
|
+
* Defaults to the same runtime root as `context`, ending in `/tenants`.
|
|
11002
|
+
*/
|
|
11003
|
+
tenants?: string;
|
|
11004
|
+
/**
|
|
11005
|
+
* Absolute or relative endpoint for host-owned navigation.
|
|
11006
|
+
* Defaults to the same runtime root as `context`, ending in `/navigation`.
|
|
11007
|
+
*/
|
|
11008
|
+
navigation?: string;
|
|
11009
|
+
/**
|
|
11010
|
+
* Absolute or relative endpoint for host-owned security events.
|
|
11011
|
+
* Defaults to the same runtime root as `context`, ending in `/security-events`.
|
|
11012
|
+
*/
|
|
11013
|
+
securityEvents?: string;
|
|
11014
|
+
}
|
|
11015
|
+
interface PraxisEnterpriseRuntimeContextOptions {
|
|
11016
|
+
/**
|
|
11017
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
11018
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
11019
|
+
* Prefer `endpoints.context` for new integrations.
|
|
11020
|
+
*/
|
|
11021
|
+
endpoint?: string;
|
|
11022
|
+
/**
|
|
11023
|
+
* Host-owned enterprise runtime surfaces. When omitted, URLs are derived from
|
|
11024
|
+
* the configured `endpoint` or from the canonical `/praxis/runtime` root.
|
|
11025
|
+
*/
|
|
11026
|
+
endpoints?: PraxisEnterpriseRuntimeEndpoints;
|
|
11027
|
+
/**
|
|
11028
|
+
* Headers used to resolve the context request. The response remains the source
|
|
11029
|
+
* of truth for tenant/user/environment headers after bootstrap.
|
|
11030
|
+
*/
|
|
11031
|
+
headersFactory?: () => Record<string, string | undefined>;
|
|
11032
|
+
/**
|
|
11033
|
+
* Include `globalThis.PAX_FETCH_HEADERS()` in the request headers when present.
|
|
11034
|
+
*/
|
|
11035
|
+
includeGlobalFetchHeaders?: boolean;
|
|
11036
|
+
/**
|
|
11037
|
+
* Block Angular bootstrap until the context has been resolved.
|
|
11038
|
+
*/
|
|
11039
|
+
blocking?: boolean;
|
|
11040
|
+
/**
|
|
11041
|
+
* Whether bootstrap should fail when the runtime context request fails.
|
|
11042
|
+
*/
|
|
11043
|
+
errorPolicy?: 'fail' | 'ignore';
|
|
11044
|
+
}
|
|
11045
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS: InjectionToken<PraxisEnterpriseRuntimeContextOptions>;
|
|
11046
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY: InjectionToken<() => Promise<void>>;
|
|
11047
|
+
declare function providePraxisEnterpriseRuntimeContext(options?: PraxisEnterpriseRuntimeContextOptions): Provider[];
|
|
11048
|
+
|
|
9985
11049
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
9986
11050
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
9987
11051
|
|
|
@@ -10143,6 +11207,26 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
10143
11207
|
|
|
10144
11208
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
10145
11209
|
|
|
11210
|
+
interface TableDetailInlineRendererContext {
|
|
11211
|
+
node: TableDetailRefNode;
|
|
11212
|
+
row: unknown;
|
|
11213
|
+
rowIndex: number;
|
|
11214
|
+
detailContext?: Record<string, unknown>;
|
|
11215
|
+
}
|
|
11216
|
+
interface TableDetailInlineRendererDefinition {
|
|
11217
|
+
nodeType: TableDetailRefNode['type'];
|
|
11218
|
+
renderMode: 'inline';
|
|
11219
|
+
component: Type<unknown>;
|
|
11220
|
+
buildInputs: (context: TableDetailInlineRendererContext) => Record<string, unknown> | null;
|
|
11221
|
+
}
|
|
11222
|
+
interface TableDetailInlineNodeResolverDefinition {
|
|
11223
|
+
nodeType: TableDetailRefNode['type'];
|
|
11224
|
+
renderMode: 'inline';
|
|
11225
|
+
resolveNode: (context: TableDetailInlineRendererContext) => TableDetailRefNode | null;
|
|
11226
|
+
}
|
|
11227
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_RENDERERS: InjectionToken<readonly TableDetailInlineRendererDefinition[]>;
|
|
11228
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS: InjectionToken<readonly TableDetailInlineNodeResolverDefinition[]>;
|
|
11229
|
+
|
|
10146
11230
|
declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
|
|
10147
11231
|
|
|
10148
11232
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
@@ -10152,6 +11236,9 @@ declare function providePraxisJsonLogicOperatorOverride(definition: PraxisJsonLo
|
|
|
10152
11236
|
declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
|
|
10153
11237
|
declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
|
|
10154
11238
|
|
|
11239
|
+
declare const COMPONENT_METADATA_REGISTRY_I18N_NAMESPACE = "componentMetadataRegistry";
|
|
11240
|
+
declare const COMPONENT_METADATA_REGISTRY_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
11241
|
+
|
|
10155
11242
|
declare const RESOURCE_DISCOVERY_I18N_NAMESPACE = "resourceDiscovery";
|
|
10156
11243
|
declare const RESOURCE_DISCOVERY_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
10157
11244
|
declare function normalizeResourceAvailabilityReasonCode(reason: string | null | undefined): string;
|
|
@@ -10778,7 +11865,7 @@ interface EditorialFormTemplateBuildOptions {
|
|
|
10778
11865
|
* - collections are replaced, not concatenated, unless omitted in overrides
|
|
10779
11866
|
* - template provenance is recorded under config.metadata.template
|
|
10780
11867
|
*/
|
|
10781
|
-
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions):
|
|
11868
|
+
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfigWithSections;
|
|
10782
11869
|
|
|
10783
11870
|
interface FormFieldLayoutItem {
|
|
10784
11871
|
kind: 'field';
|
|
@@ -10861,6 +11948,10 @@ interface FormRow {
|
|
|
10861
11948
|
interface FormSection {
|
|
10862
11949
|
id: string;
|
|
10863
11950
|
title?: string;
|
|
11951
|
+
/** Optional host/runtime CSS classes applied to the section container. */
|
|
11952
|
+
className?: string;
|
|
11953
|
+
/** Optional semantic presentation role used by compact/read-only layouts. */
|
|
11954
|
+
presentationRole?: string;
|
|
10864
11955
|
/** Visual appearance preset for the section container/header. */
|
|
10865
11956
|
appearance?: 'card' | 'plain' | 'step';
|
|
10866
11957
|
/** Optional compact step badge/kicker displayed before the title. */
|
|
@@ -10982,9 +12073,27 @@ interface FormSectionHeaderConfig {
|
|
|
10982
12073
|
*/
|
|
10983
12074
|
initialsMaxLength?: number;
|
|
10984
12075
|
}
|
|
12076
|
+
/**
|
|
12077
|
+
* Presentation preferences applied when a dynamic form renders semantic values
|
|
12078
|
+
* instead of editable controls.
|
|
12079
|
+
*/
|
|
12080
|
+
interface FormPresentationConfig {
|
|
12081
|
+
labelPosition?: 'above' | 'left';
|
|
12082
|
+
labelFontSize?: number | null;
|
|
12083
|
+
valueFontSize?: number | null;
|
|
12084
|
+
compact?: boolean;
|
|
12085
|
+
density?: 'comfortable' | 'cozy' | 'compact';
|
|
12086
|
+
labelWidth?: number | null;
|
|
12087
|
+
labelAlign?: 'start' | 'center' | 'end';
|
|
12088
|
+
valueAlign?: 'start' | 'center' | 'end';
|
|
12089
|
+
}
|
|
10985
12090
|
interface FormConfig {
|
|
10986
|
-
/**
|
|
10987
|
-
|
|
12091
|
+
/**
|
|
12092
|
+
* Optional manual layout sections.
|
|
12093
|
+
* When omitted, schema-driven runtimes may infer sections from field metadata
|
|
12094
|
+
* instead of forcing hosts to declare an empty manual layout.
|
|
12095
|
+
*/
|
|
12096
|
+
sections?: FormSection[];
|
|
10988
12097
|
/** Editorial or semantic rich content rendered before the form sections/actions. */
|
|
10989
12098
|
formBlocksBefore?: RichContentDocument | null;
|
|
10990
12099
|
/** Editorial or semantic rich content rendered after the form sections and before the primary action area. */
|
|
@@ -11023,7 +12132,18 @@ interface FormConfig {
|
|
|
11023
12132
|
* Útil para padronizar mensagens didáticas no host.
|
|
11024
12133
|
*/
|
|
11025
12134
|
hints?: FormModeHints;
|
|
12135
|
+
/**
|
|
12136
|
+
* Presentation policy for semantic field help (`hint`/`helpText`).
|
|
12137
|
+
* This controls visual density only; validation errors remain inline.
|
|
12138
|
+
*/
|
|
12139
|
+
helpPresentation?: FormHelpPresentationConfig;
|
|
12140
|
+
/** Presentation preferences for read-only and presentation-mode forms. */
|
|
12141
|
+
presentation?: FormPresentationConfig;
|
|
11026
12142
|
}
|
|
12143
|
+
interface FormConfigWithSections extends FormConfig {
|
|
12144
|
+
sections: FormSection[];
|
|
12145
|
+
}
|
|
12146
|
+
declare function withFormConfigSections(config: FormConfig): FormConfigWithSections;
|
|
11027
12147
|
interface FormModeHints {
|
|
11028
12148
|
dataModes: {
|
|
11029
12149
|
create: string;
|
|
@@ -11043,12 +12163,54 @@ interface FormConfigMetadata {
|
|
|
11043
12163
|
/** Last update timestamp */
|
|
11044
12164
|
lastUpdated?: Date;
|
|
11045
12165
|
/** Configuration source */
|
|
11046
|
-
source?: 'local' | 'server' | 'default';
|
|
12166
|
+
source?: 'local' | 'server' | 'default' | 'schema';
|
|
12167
|
+
/**
|
|
12168
|
+
* Layout preset used when this configuration was generated from metadata/schema.
|
|
12169
|
+
* This is provenance for generated configs; it must not be interpreted as a
|
|
12170
|
+
* command to reprocess authored or persisted layouts.
|
|
12171
|
+
*/
|
|
12172
|
+
generatedLayoutPreset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
12173
|
+
/** Runtime policy used to materialize schema-driven layout, when applicable. */
|
|
12174
|
+
schemaLayoutPolicy?: {
|
|
12175
|
+
source: 'authored' | 'schema';
|
|
12176
|
+
preset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
12177
|
+
intent?: 'detail' | 'command';
|
|
12178
|
+
lifecycle?: 'initial' | 'live';
|
|
12179
|
+
persistence?: 'transient' | 'authorable';
|
|
12180
|
+
detachBehavior?: 'none' | 'explicit';
|
|
12181
|
+
schemaOperation?: 'detail' | 'create' | 'update' | 'view';
|
|
12182
|
+
schemaType?: 'request' | 'response';
|
|
12183
|
+
detailSummary?: {
|
|
12184
|
+
includeFields?: readonly string[];
|
|
12185
|
+
excludeFields?: readonly string[];
|
|
12186
|
+
includeGroups?: readonly string[];
|
|
12187
|
+
excludeGroups?: readonly string[];
|
|
12188
|
+
includeRoles?: readonly string[];
|
|
12189
|
+
excludeRoles?: readonly string[];
|
|
12190
|
+
maxFields?: number;
|
|
12191
|
+
fieldPriority?: Record<string, number>;
|
|
12192
|
+
groupPriority?: Record<string, number>;
|
|
12193
|
+
columns?: number;
|
|
12194
|
+
responsiveColumns?: Partial<Record<'xs' | 'sm' | 'md' | 'lg' | 'xl', number>>;
|
|
12195
|
+
widthPrecedence?: 'schema' | 'summary';
|
|
12196
|
+
};
|
|
12197
|
+
groupedCommand?: {
|
|
12198
|
+
orphanFieldExpansion?: 'preserve' | 'medium-and-wide' | 'all';
|
|
12199
|
+
};
|
|
12200
|
+
};
|
|
11047
12201
|
/** Server data hash for change detection */
|
|
11048
12202
|
serverHash?: string;
|
|
12203
|
+
/**
|
|
12204
|
+
* Host-resolved security authorities used only for fieldAccess UX
|
|
12205
|
+
* materialization. Do not populate this from runtime capabilities unless the
|
|
12206
|
+
* host/backend explicitly declares that both vocabularies are shared.
|
|
12207
|
+
*/
|
|
12208
|
+
fieldAccessAuthorities?: string[];
|
|
11049
12209
|
/**
|
|
11050
12210
|
* Server schema identity used to build this configuration.
|
|
11051
|
-
* Format comes from buildSchemaId(path|operation|schemaType|internal|
|
|
12211
|
+
* Format comes from buildSchemaId(path|operation|schemaType|internal|idField|readOnly|origin).
|
|
12212
|
+
* tenant/locale remain request boundary context and do not vary structural identity
|
|
12213
|
+
* unless the backend contract starts varying the schema payload for them.
|
|
11052
12214
|
*/
|
|
11053
12215
|
schemaId?: string;
|
|
11054
12216
|
/**
|
|
@@ -11233,7 +12395,7 @@ interface FormActionConfirmationEvent {
|
|
|
11233
12395
|
confirmed: boolean;
|
|
11234
12396
|
}
|
|
11235
12397
|
|
|
11236
|
-
type RulePropertyType = 'string' | 'boolean' | 'object' | 'enum' | 'number';
|
|
12398
|
+
type RulePropertyType = 'string' | 'boolean' | 'object' | 'array' | 'enum' | 'number';
|
|
11237
12399
|
interface RulePropertyDefinition {
|
|
11238
12400
|
name: string;
|
|
11239
12401
|
type: RulePropertyType;
|
|
@@ -12173,6 +13335,35 @@ declare function createPersistedPage(identity: PageIdentity, page: WidgetPageDef
|
|
|
12173
13335
|
status?: PersistedPageConfig['status'];
|
|
12174
13336
|
}): PersistedPageConfig;
|
|
12175
13337
|
|
|
13338
|
+
type PraxisResourceEventKind = 'row-click' | 'row-double-click' | 'selection-change' | 'row-action' | 'toolbar-action' | 'bulk-action' | 'export-action' | 'surface-open' | 'widget-event' | 'custom';
|
|
13339
|
+
interface PraxisResourceEvent<TPayload = unknown> {
|
|
13340
|
+
/** Canonical resource-level intent represented by the original component output. */
|
|
13341
|
+
kind: PraxisResourceEventKind;
|
|
13342
|
+
/** Component selector/id that originated the event, such as praxis-table. */
|
|
13343
|
+
sourceComponentId: string;
|
|
13344
|
+
/** Legacy/public output that produced this envelope, such as rowClick or toolbarAction. */
|
|
13345
|
+
sourceOutput?: string;
|
|
13346
|
+
/** Lifecycle phase for enterprise orchestration, analytics, auditing, and feedback. */
|
|
13347
|
+
phase?: 'request' | 'success' | 'error' | 'notification';
|
|
13348
|
+
resourcePath?: string | null;
|
|
13349
|
+
resourceKey?: string | null;
|
|
13350
|
+
resourceId?: string | number | null;
|
|
13351
|
+
surface?: ResourceSurfaceCatalogItem | null;
|
|
13352
|
+
payload: TPayload;
|
|
13353
|
+
context?: Record<string, unknown> | null;
|
|
13354
|
+
}
|
|
13355
|
+
interface PraxisResourceRowClickPayload<TRow = unknown> {
|
|
13356
|
+
row: TRow;
|
|
13357
|
+
index: number;
|
|
13358
|
+
}
|
|
13359
|
+
interface PraxisResourceSelectionPayload<TRow = unknown> {
|
|
13360
|
+
trigger: string;
|
|
13361
|
+
row?: TRow;
|
|
13362
|
+
selectedRows: TRow[];
|
|
13363
|
+
selectedCount: number;
|
|
13364
|
+
tableId?: string;
|
|
13365
|
+
}
|
|
13366
|
+
|
|
12176
13367
|
type RecordRelatedSurfaceOperationId = 'dynamicPage.surface.discover' | 'dynamicPage.surface.open' | 'dynamicPage.surface.query';
|
|
12177
13368
|
interface RecordRelatedSurfaceEndpoint {
|
|
12178
13369
|
widget: string;
|
|
@@ -12478,6 +13669,61 @@ declare function mapFieldDefinitionToMetadata(field: FieldDefinition): FieldMeta
|
|
|
12478
13669
|
*/
|
|
12479
13670
|
declare function mapFieldDefinitionsToMetadata(fields: FieldDefinition[]): FieldMetadata[];
|
|
12480
13671
|
|
|
13672
|
+
type DynamicFormLayoutSource = 'authored' | 'schema';
|
|
13673
|
+
type DynamicFormSchemaLayoutPreset = 'default' | 'compactPresentation' | 'groupedCommand';
|
|
13674
|
+
type DynamicFormLayoutIntent = 'detail' | 'command';
|
|
13675
|
+
type DynamicFormLayoutLifecycle = 'initial' | 'live';
|
|
13676
|
+
type DynamicFormLayoutPersistence = 'transient' | 'authorable';
|
|
13677
|
+
type DynamicFormLayoutDetachBehavior = 'none' | 'explicit';
|
|
13678
|
+
type DynamicFormSchemaOperation = 'detail' | 'create' | 'update' | 'view';
|
|
13679
|
+
type DynamicFormSchemaType = 'request' | 'response';
|
|
13680
|
+
type DynamicFormResponsiveBreakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
13681
|
+
type DynamicFormResponsiveColumns = Partial<Record<DynamicFormResponsiveBreakpoint, number>>;
|
|
13682
|
+
type DynamicFormDetailSummaryWidthPrecedence = 'schema' | 'summary';
|
|
13683
|
+
type DynamicFormGroupedCommandOrphanFieldExpansion = 'preserve' | 'medium-and-wide' | 'all';
|
|
13684
|
+
interface DynamicFormDetailSummaryPolicy {
|
|
13685
|
+
includeFields?: readonly string[];
|
|
13686
|
+
excludeFields?: readonly string[];
|
|
13687
|
+
includeGroups?: readonly string[];
|
|
13688
|
+
excludeGroups?: readonly string[];
|
|
13689
|
+
includeRoles?: readonly string[];
|
|
13690
|
+
excludeRoles?: readonly string[];
|
|
13691
|
+
maxFields?: number;
|
|
13692
|
+
fieldPriority?: Record<string, number>;
|
|
13693
|
+
groupPriority?: Record<string, number>;
|
|
13694
|
+
columns?: number;
|
|
13695
|
+
responsiveColumns?: DynamicFormResponsiveColumns;
|
|
13696
|
+
widthPrecedence?: DynamicFormDetailSummaryWidthPrecedence;
|
|
13697
|
+
}
|
|
13698
|
+
interface DynamicFormGroupedCommandPolicy {
|
|
13699
|
+
/**
|
|
13700
|
+
* Controls how an incomplete row containing exactly one field uses the
|
|
13701
|
+
* remaining desktop grid space. The groupedCommand default expands only
|
|
13702
|
+
* medium/wide fields (6+ columns), preserving intentionally compact fields.
|
|
13703
|
+
*/
|
|
13704
|
+
orphanFieldExpansion?: DynamicFormGroupedCommandOrphanFieldExpansion;
|
|
13705
|
+
}
|
|
13706
|
+
interface DynamicFormLayoutPolicy {
|
|
13707
|
+
source: DynamicFormLayoutSource;
|
|
13708
|
+
preset?: DynamicFormSchemaLayoutPreset;
|
|
13709
|
+
intent?: DynamicFormLayoutIntent;
|
|
13710
|
+
lifecycle?: DynamicFormLayoutLifecycle;
|
|
13711
|
+
persistence?: DynamicFormLayoutPersistence;
|
|
13712
|
+
detachBehavior?: DynamicFormLayoutDetachBehavior;
|
|
13713
|
+
schemaOperation?: DynamicFormSchemaOperation;
|
|
13714
|
+
schemaType?: DynamicFormSchemaType;
|
|
13715
|
+
detailSummary?: DynamicFormDetailSummaryPolicy;
|
|
13716
|
+
groupedCommand?: DynamicFormGroupedCommandPolicy;
|
|
13717
|
+
}
|
|
13718
|
+
interface MaterializeFormLayoutOptions {
|
|
13719
|
+
policy?: DynamicFormLayoutPolicy | null;
|
|
13720
|
+
defaultSectionTitle?: string;
|
|
13721
|
+
presentationRoleMap?: Record<string, string>;
|
|
13722
|
+
includeHidden?: boolean;
|
|
13723
|
+
}
|
|
13724
|
+
declare function materializeFormLayoutFromMetadata(fields: FieldMetadata[], options?: MaterializeFormLayoutOptions): FormConfigWithSections;
|
|
13725
|
+
declare function normalizeLayoutPolicy(policy?: DynamicFormLayoutPolicy | null): Required<Pick<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>> & Omit<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>;
|
|
13726
|
+
|
|
12481
13727
|
/**
|
|
12482
13728
|
* Compose headers including optional API version information.
|
|
12483
13729
|
* If the entry already defines custom headers, they will be preserved.
|
|
@@ -12497,7 +13743,7 @@ type EnsureIdsOptions = {
|
|
|
12497
13743
|
* Garante que todas as sections/rows/columns do FormConfig possuam IDs únicos.
|
|
12498
13744
|
* Retorna um NOVO objeto (sem mutar o original).
|
|
12499
13745
|
*/
|
|
12500
|
-
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions):
|
|
13746
|
+
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions): FormConfigWithSections;
|
|
12501
13747
|
|
|
12502
13748
|
declare function resolveSpan(span?: ColumnSpan): Required<ColumnSpan>;
|
|
12503
13749
|
declare function resolveOffset(offset?: ColumnOffset): Required<ColumnOffset>;
|
|
@@ -12561,6 +13807,14 @@ interface ResolvePresetOptions {
|
|
|
12561
13807
|
minDate?: Date | null;
|
|
12562
13808
|
maxDate?: Date | null;
|
|
12563
13809
|
}
|
|
13810
|
+
interface StaticPresetResolutionOptions extends ResolvePresetOptions {
|
|
13811
|
+
referenceDate?: Date;
|
|
13812
|
+
}
|
|
13813
|
+
declare function isProgrammaticDateRangePreset(value: unknown): value is DateRangePreset;
|
|
13814
|
+
declare function isStaticDateRangePreset(value: unknown): value is StaticDateRangePreset;
|
|
13815
|
+
declare function staticDateRangePresetToPreset(preset: StaticDateRangePreset, opts?: StaticPresetResolutionOptions): DateRangePreset;
|
|
13816
|
+
declare function resolveDateRangeShortcutPreset(shortcut: DateRangeShortcutPreset, builtins: Record<string, DateRangePreset>, opts?: StaticPresetResolutionOptions): DateRangePreset | null;
|
|
13817
|
+
declare function resolveDateRangeShortcutPresets(shortcuts: readonly DateRangeShortcutPreset[], builtins: Record<string, DateRangePreset>, opts?: StaticPresetResolutionOptions): DateRangePreset[];
|
|
12564
13818
|
/** Normalize a date to start of day (00:00:00.000) respecting timezone if provided. */
|
|
12565
13819
|
declare function normalizeStart(date: Date, timezone?: string): Date;
|
|
12566
13820
|
/** Normalize a date to end of day (23:59:59.999) respecting timezone if provided. */
|
|
@@ -12835,7 +14089,7 @@ interface ComponentAuthoringManifest {
|
|
|
12835
14089
|
examples: ManifestExample[];
|
|
12836
14090
|
/**
|
|
12837
14091
|
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12838
|
-
* base, mas precisam expor
|
|
14092
|
+
* base, mas precisam expor semântica granular por componente/controlType.
|
|
12839
14093
|
*/
|
|
12840
14094
|
controlProfiles?: ManifestControlProfile[];
|
|
12841
14095
|
}
|
|
@@ -12878,6 +14132,12 @@ type ManifestSubmissionImpact = 'none' | 'visual-only' | 'config-only' | 'affect
|
|
|
12878
14132
|
interface ManifestOperation {
|
|
12879
14133
|
operationId: string;
|
|
12880
14134
|
title: string;
|
|
14135
|
+
/**
|
|
14136
|
+
* Efeito semântico da operação em linguagem natural.
|
|
14137
|
+
* Deve explicar a fronteira da operação e quando outra operação complementar é necessária;
|
|
14138
|
+
* consumidores de IA não devem inferir essa semântica apenas do operationId ou de palavras-chave.
|
|
14139
|
+
*/
|
|
14140
|
+
description?: string;
|
|
12881
14141
|
/**
|
|
12882
14142
|
* Escopo da operação.
|
|
12883
14143
|
* - 'global': opera sobre a configuração raiz; target.required deve ser false.
|
|
@@ -12994,13 +14254,13 @@ interface ManifestControlProfile {
|
|
|
12994
14254
|
profileId: string;
|
|
12995
14255
|
/** Nome curto usado por ferramentas de authoring. */
|
|
12996
14256
|
title: string;
|
|
12997
|
-
/** Explica a
|
|
14257
|
+
/** Explica a semântica que este perfil adiciona sobre o manifesto base. */
|
|
12998
14258
|
description: string;
|
|
12999
14259
|
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
13000
14260
|
appliesTo: ManifestControlProfileApplicability;
|
|
13001
14261
|
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
13002
14262
|
editableTargets?: ManifestTarget[];
|
|
13003
|
-
/**
|
|
14263
|
+
/** Operações específicas do perfil/controlType. */
|
|
13004
14264
|
operations: ManifestOperation[];
|
|
13005
14265
|
/** Validadores especificos do perfil/controlType. */
|
|
13006
14266
|
validators: ManifestValidator[];
|
|
@@ -13064,7 +14324,7 @@ interface CapabilityCatalog extends AiCapabilityCatalog {
|
|
|
13064
14324
|
}
|
|
13065
14325
|
declare const DYNAMIC_PAGE_AI_CAPABILITIES: CapabilityCatalog;
|
|
13066
14326
|
|
|
13067
|
-
type ComponentContextOptionMode = 'enum' | 'suggested';
|
|
14327
|
+
type ComponentContextOptionMode = 'enum' | 'suggested' | 'expression';
|
|
13068
14328
|
interface ComponentContextOption {
|
|
13069
14329
|
value: string | number;
|
|
13070
14330
|
label?: string;
|
|
@@ -13073,6 +14333,7 @@ interface ComponentContextOption {
|
|
|
13073
14333
|
interface ComponentContextOptionsByPathEntry {
|
|
13074
14334
|
mode: ComponentContextOptionMode;
|
|
13075
14335
|
options: ComponentContextOption[];
|
|
14336
|
+
suggestedRoots?: string[];
|
|
13076
14337
|
}
|
|
13077
14338
|
interface ComponentActionParam {
|
|
13078
14339
|
name: string;
|
|
@@ -13161,6 +14422,7 @@ interface WidgetEventEnvelope {
|
|
|
13161
14422
|
output?: string;
|
|
13162
14423
|
payload?: any;
|
|
13163
14424
|
path?: WidgetEventPathSegment[];
|
|
14425
|
+
resourceEvent?: PraxisResourceEvent;
|
|
13164
14426
|
}
|
|
13165
14427
|
type WidgetResolutionPhase = 'ready' | 'metadata-missing' | 'create-error' | 'validation-error' | 'bind-error';
|
|
13166
14428
|
interface WidgetResolutionDiagnostic {
|
|
@@ -13462,6 +14724,8 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
13462
14724
|
private orderedInputEntries;
|
|
13463
14725
|
private resolveAndCoerceValue;
|
|
13464
14726
|
private withInferredIdentityInputs;
|
|
14727
|
+
private areInputValuesEquivalent;
|
|
14728
|
+
private areJsonLikeInputsEqual;
|
|
13465
14729
|
private normalizeMaterializedRuntimeInputs;
|
|
13466
14730
|
private inferResourcePathFromSchemaUrl;
|
|
13467
14731
|
private bindOutputs;
|
|
@@ -13508,6 +14772,7 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
13508
14772
|
private get maxHeaderActions();
|
|
13509
14773
|
get windowActions(): ActionList;
|
|
13510
14774
|
displayActionIcon(action: WidgetShellAction): string | undefined;
|
|
14775
|
+
actionPressedState(action: WidgetShellAction): boolean | null;
|
|
13511
14776
|
onAction(action: WidgetShellAction, ev: MouseEvent): void;
|
|
13512
14777
|
onHeaderPointerDown(event: PointerEvent): void;
|
|
13513
14778
|
onHeaderKeydown(event: KeyboardEvent): void;
|
|
@@ -13527,6 +14792,21 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
13527
14792
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetShellComponent, "praxis-widget-shell", never, { "shell": { "alias": "shell"; "required": false; }; "context": { "alias": "context"; "required": false; }; "dragSurfaceEnabled": { "alias": "dragSurfaceEnabled"; "required": false; }; "dragSurfaceLabel": { "alias": "dragSurfaceLabel"; "required": false; }; }, { "action": "action"; "dragSurfacePointerDown": "dragSurfacePointerDown"; "dragSurfaceKeydown": "dragSurfaceKeydown"; }, ["loader"], ["*"], true, never>;
|
|
13528
14793
|
}
|
|
13529
14794
|
|
|
14795
|
+
declare class PraxisResourceIdentityComponent {
|
|
14796
|
+
identity: MaterializedResourceIdentity | null;
|
|
14797
|
+
emptyTitle: string;
|
|
14798
|
+
density: 'compact' | 'comfortable';
|
|
14799
|
+
showMetadataLabels: boolean;
|
|
14800
|
+
showKeyLabel: boolean;
|
|
14801
|
+
ariaLabel: string;
|
|
14802
|
+
protected title(): string;
|
|
14803
|
+
protected prefix(item: ResourceIdentityPart): string;
|
|
14804
|
+
protected suffix(item: ResourceIdentityPart): string;
|
|
14805
|
+
protected isChip(item: ResourceIdentityPart): boolean;
|
|
14806
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisResourceIdentityComponent, never>;
|
|
14807
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisResourceIdentityComponent, "praxis-resource-identity", never, { "identity": { "alias": "identity"; "required": false; }; "emptyTitle": { "alias": "emptyTitle"; "required": false; }; "density": { "alias": "density"; "required": false; }; "showMetadataLabels": { "alias": "showMetadataLabels"; "required": false; }; "showKeyLabel": { "alias": "showKeyLabel"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
14808
|
+
}
|
|
14809
|
+
|
|
13530
14810
|
declare const BUILTIN_PAGE_LAYOUT_PRESETS: Record<string, WidgetPageLayoutPresetDefinition>;
|
|
13531
14811
|
declare const BUILTIN_PAGE_THEME_PRESETS: Record<string, WidgetPageThemePresetDefinition>;
|
|
13532
14812
|
|
|
@@ -13646,6 +14926,7 @@ declare class CompositionValidatorService {
|
|
|
13646
14926
|
private readonly nestedPortCatalog;
|
|
13647
14927
|
private readonly jsonLogic;
|
|
13648
14928
|
constructor(nestedPortCatalog?: NestedPortCatalogService, jsonLogic?: PraxisJsonLogicService);
|
|
14929
|
+
validateLinks(links: SemanticCompositionLink[], context?: CompositionValidatorContext): DiagnosticRecord[];
|
|
13649
14930
|
validateLink(link: SemanticCompositionLink, context?: CompositionValidatorContext): DiagnosticRecord[];
|
|
13650
14931
|
private validateEndpointDirections;
|
|
13651
14932
|
private validateBindingPathBridge;
|
|
@@ -13658,6 +14939,12 @@ declare class CompositionValidatorService {
|
|
|
13658
14939
|
private validateCondition;
|
|
13659
14940
|
private validateTransformCatalog;
|
|
13660
14941
|
private validateSemanticCompatibility;
|
|
14942
|
+
private validateFeedbackCycles;
|
|
14943
|
+
private findFeedbackPath;
|
|
14944
|
+
private stableUniqueLinkIds;
|
|
14945
|
+
private feedbackNodeKey;
|
|
14946
|
+
private isIntentionalGuardedFeedback;
|
|
14947
|
+
private createFeedbackCycleDiagnostic;
|
|
13661
14948
|
private endpointSemanticKind;
|
|
13662
14949
|
private areSemanticKindsCompatible;
|
|
13663
14950
|
private areKindsDirectlyCompatible;
|
|
@@ -13768,6 +15055,7 @@ declare class LinkExecutorService {
|
|
|
13768
15055
|
private resolveSourceValue;
|
|
13769
15056
|
private extractComponentSourceBinding;
|
|
13770
15057
|
private matchesCondition;
|
|
15058
|
+
private resolveUserTimeZone;
|
|
13771
15059
|
private buildConditionData;
|
|
13772
15060
|
private buildTransformContext;
|
|
13773
15061
|
private resolveMissingValuePolicy;
|
|
@@ -13857,6 +15145,7 @@ declare class CompositionRuntimeEngine {
|
|
|
13857
15145
|
private extractDerivedNodeKey;
|
|
13858
15146
|
private appendDiagnosticTraceEntries;
|
|
13859
15147
|
private createNestedWidgetEventBridgeDiagnostics;
|
|
15148
|
+
private createFeedbackCycleBlockedDiagnostics;
|
|
13860
15149
|
}
|
|
13861
15150
|
|
|
13862
15151
|
interface CompositionRuntimeFacadeOptions {
|
|
@@ -13969,6 +15258,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
13969
15258
|
private pageDefinition?;
|
|
13970
15259
|
private pageState;
|
|
13971
15260
|
private pageRuntime;
|
|
15261
|
+
private readonly configEditorContextRequests;
|
|
15262
|
+
private nextConfigEditorContextRequestId;
|
|
13972
15263
|
private layout?;
|
|
13973
15264
|
private canvas?;
|
|
13974
15265
|
private grouping;
|
|
@@ -14010,6 +15301,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14010
15301
|
ngOnDestroy(): void;
|
|
14011
15302
|
ngOnChanges(changes: SimpleChanges): void;
|
|
14012
15303
|
onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
|
|
15304
|
+
private isTransientOnlyCompositionCycle;
|
|
14013
15305
|
private applyWidgetInputPatchToPage;
|
|
14014
15306
|
private resolveWidgetInputPatchNestedPath;
|
|
14015
15307
|
private extractWidgetInputPatch;
|
|
@@ -14065,6 +15357,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14065
15357
|
private enrichRuntimeWidgetInputs;
|
|
14066
15358
|
private buildRichContentHostCapabilities;
|
|
14067
15359
|
private dispatchRichContentAction;
|
|
15360
|
+
private emitRichContentCustomAction;
|
|
14068
15361
|
private isRichContentActionAvailable;
|
|
14069
15362
|
private hasRichContentCapability;
|
|
14070
15363
|
private resolveComponentBindingPath;
|
|
@@ -14104,7 +15397,9 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14104
15397
|
private resolveTemplate;
|
|
14105
15398
|
private lookup;
|
|
14106
15399
|
openWidgetShellSettings(key: string): void;
|
|
14107
|
-
openWidgetComponentSettings(key: string): void
|
|
15400
|
+
openWidgetComponentSettings(key: string): Promise<void>;
|
|
15401
|
+
private resolveWidgetConfigEditorContext;
|
|
15402
|
+
private isConfigEditorContextResult;
|
|
14108
15403
|
private materializeRuntimeInputsForWidget;
|
|
14109
15404
|
private findWidgetLoader;
|
|
14110
15405
|
private dispatchWidgetComponentSettingsToRuntime;
|
|
@@ -14137,6 +15432,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14137
15432
|
private resolveLayoutPresetDefinition;
|
|
14138
15433
|
private mergeLayout;
|
|
14139
15434
|
private applyResponsivePresentation;
|
|
15435
|
+
private projectPersistentCompositionStateInputs;
|
|
15436
|
+
private projectRuntimeCompositionStateInputs;
|
|
14140
15437
|
private resolveEffectivePresentation;
|
|
14141
15438
|
private resolveDeviceVariant;
|
|
14142
15439
|
private resolveCanvas;
|
|
@@ -14250,6 +15547,9 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14250
15547
|
*/
|
|
14251
15548
|
renderTitleInsideBody: boolean;
|
|
14252
15549
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
15550
|
+
rowClick: EventEmitter<unknown>;
|
|
15551
|
+
selectionChange: EventEmitter<unknown>;
|
|
15552
|
+
resourceEvent: EventEmitter<PraxisResourceEvent<unknown>>;
|
|
14253
15553
|
private beforeWidgetLoader?;
|
|
14254
15554
|
private mainWidgetLoader?;
|
|
14255
15555
|
private afterWidgetLoader?;
|
|
@@ -14267,16 +15567,97 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14267
15567
|
private isRichContentActionAvailable;
|
|
14268
15568
|
private hasRichContentCapability;
|
|
14269
15569
|
onSlotWidgetEvent(ownerWidgetKey: string, event: WidgetEventEnvelope): void;
|
|
15570
|
+
private toResourceEvent;
|
|
15571
|
+
private readRecord;
|
|
15572
|
+
private stringOrNull;
|
|
15573
|
+
private resourceIdOrNull;
|
|
15574
|
+
private toResourceSurface;
|
|
14270
15575
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
|
|
14271
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; }, never, never, true, never>;
|
|
15576
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; "resourceEvent": "resourceEvent"; }, never, never, true, never>;
|
|
14272
15577
|
}
|
|
14273
15578
|
|
|
15579
|
+
type RelatedResourceOutletMode = 'inline' | 'open-action';
|
|
15580
|
+
declare class PraxisRelatedResourceOutletComponent {
|
|
15581
|
+
private readonly resolver;
|
|
15582
|
+
private readonly materializer;
|
|
15583
|
+
private readonly i18n;
|
|
15584
|
+
private readonly injector;
|
|
15585
|
+
private discoverySubscription?;
|
|
15586
|
+
private discoveryRequestKey;
|
|
15587
|
+
private materializationRequestKey;
|
|
15588
|
+
readonly surface: i0.InputSignal<ResourceSurfaceCatalogItem | null>;
|
|
15589
|
+
readonly surfaceId: i0.InputSignal<string | null>;
|
|
15590
|
+
readonly surfaceCatalog: i0.InputSignal<ResourceSurfaceCatalogResponse | null>;
|
|
15591
|
+
readonly discoverySource: i0.InputSignal<ResourceLinkSource | null>;
|
|
15592
|
+
readonly parentLinks: i0.InputSignal<RestApiLinks | RestApiResponse<unknown> | null>;
|
|
15593
|
+
readonly apiEndpointKey: i0.InputSignal<ApiEndpoint | null>;
|
|
15594
|
+
readonly apiUrlEntry: i0.InputSignal<ApiUrlEntry | null>;
|
|
15595
|
+
readonly parentRecord: i0.InputSignal<Record<string, unknown> | null>;
|
|
15596
|
+
readonly parentResourceId: i0.InputSignal<string | number | null>;
|
|
15597
|
+
readonly parentResourcePath: i0.InputSignal<string | null>;
|
|
15598
|
+
readonly presentation: i0.InputSignal<SurfacePresentation>;
|
|
15599
|
+
readonly title: i0.InputSignal<string | null>;
|
|
15600
|
+
readonly subtitle: i0.InputSignal<string | null>;
|
|
15601
|
+
readonly icon: i0.InputSignal<string | null>;
|
|
15602
|
+
readonly tableId: i0.InputSignal<string | null>;
|
|
15603
|
+
readonly tableConfig: i0.InputSignal<Record<string, unknown> | null>;
|
|
15604
|
+
readonly enableCustomization: i0.InputSignal<boolean>;
|
|
15605
|
+
readonly authoringCapability: i0.InputSignal<string | null>;
|
|
15606
|
+
readonly emptyState: i0.InputSignal<Record<string, unknown> | null>;
|
|
15607
|
+
readonly queryContext: i0.InputSignal<RelatedResourceQueryContext | null>;
|
|
15608
|
+
readonly mode: i0.InputSignal<RelatedResourceOutletMode>;
|
|
15609
|
+
readonly state: i0.InputSignal<RelatedResourceResolutionState | null>;
|
|
15610
|
+
readonly stateReason: i0.InputSignal<string | null>;
|
|
15611
|
+
readonly compact: i0.InputSignal<boolean>;
|
|
15612
|
+
readonly strictValidation: i0.InputSignal<boolean>;
|
|
15613
|
+
readonly ownerWidgetKey: i0.InputSignal<string>;
|
|
15614
|
+
readonly surfaceOpen: i0.OutputEmitterRef<SurfaceOpenPayload>;
|
|
15615
|
+
readonly widgetEvent: i0.OutputEmitterRef<WidgetEventEnvelope>;
|
|
15616
|
+
readonly resourceEvent: i0.OutputEmitterRef<PraxisResourceEvent<unknown>>;
|
|
15617
|
+
private readonly discoveredSurface;
|
|
15618
|
+
private readonly discoveryState;
|
|
15619
|
+
private readonly discoveryStateReason;
|
|
15620
|
+
private readonly materializedPayload;
|
|
15621
|
+
readonly resolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
15622
|
+
readonly renderResolution: i0.Signal<RelatedResourceSurfaceResolution>;
|
|
15623
|
+
readonly isBusy: i0.Signal<boolean>;
|
|
15624
|
+
constructor();
|
|
15625
|
+
openRelated(): void;
|
|
15626
|
+
onWidgetEvent(event: WidgetEventEnvelope): void;
|
|
15627
|
+
stateIcon(): string;
|
|
15628
|
+
stateTitle(): string;
|
|
15629
|
+
stateDescription(): string;
|
|
15630
|
+
t(key: string, fallback: string): string;
|
|
15631
|
+
private defaultTitle;
|
|
15632
|
+
private defaultDescription;
|
|
15633
|
+
private applyCatalogSurface;
|
|
15634
|
+
private resetDiscoveryState;
|
|
15635
|
+
private discoveryOptions;
|
|
15636
|
+
private resolveFallbackSurfaceCatalogHref;
|
|
15637
|
+
private normalizeResourcePath;
|
|
15638
|
+
private buildDiscoveryRequestKey;
|
|
15639
|
+
private buildMaterializationRequestKey;
|
|
15640
|
+
private isPermissionError;
|
|
15641
|
+
private extractResourceEvent;
|
|
15642
|
+
private trim;
|
|
15643
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisRelatedResourceOutletComponent, never>;
|
|
15644
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisRelatedResourceOutletComponent, "praxis-related-resource-outlet", never, { "surface": { "alias": "surface"; "required": false; "isSignal": true; }; "surfaceId": { "alias": "surfaceId"; "required": false; "isSignal": true; }; "surfaceCatalog": { "alias": "surfaceCatalog"; "required": false; "isSignal": true; }; "discoverySource": { "alias": "discoverySource"; "required": false; "isSignal": true; }; "parentLinks": { "alias": "parentLinks"; "required": false; "isSignal": true; }; "apiEndpointKey": { "alias": "apiEndpointKey"; "required": false; "isSignal": true; }; "apiUrlEntry": { "alias": "apiUrlEntry"; "required": false; "isSignal": true; }; "parentRecord": { "alias": "parentRecord"; "required": false; "isSignal": true; }; "parentResourceId": { "alias": "parentResourceId"; "required": false; "isSignal": true; }; "parentResourcePath": { "alias": "parentResourcePath"; "required": false; "isSignal": true; }; "presentation": { "alias": "presentation"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "tableId": { "alias": "tableId"; "required": false; "isSignal": true; }; "tableConfig": { "alias": "tableConfig"; "required": false; "isSignal": true; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; "isSignal": true; }; "authoringCapability": { "alias": "authoringCapability"; "required": false; "isSignal": true; }; "emptyState": { "alias": "emptyState"; "required": false; "isSignal": true; }; "queryContext": { "alias": "queryContext"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "stateReason": { "alias": "stateReason"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; "strictValidation": { "alias": "strictValidation"; "required": false; "isSignal": true; }; "ownerWidgetKey": { "alias": "ownerWidgetKey"; "required": false; "isSignal": true; }; }, { "surfaceOpen": "surfaceOpen"; "widgetEvent": "widgetEvent"; "resourceEvent": "resourceEvent"; }, never, never, true, never>;
|
|
15645
|
+
}
|
|
15646
|
+
|
|
15647
|
+
declare const PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA: ComponentDocMeta;
|
|
15648
|
+
declare function providePraxisRelatedResourceOutletMetadata(): Provider;
|
|
15649
|
+
|
|
14274
15650
|
interface EmptyAction {
|
|
14275
15651
|
label: string;
|
|
14276
15652
|
icon?: string;
|
|
14277
15653
|
color?: 'primary' | 'accent' | 'warn' | undefined;
|
|
14278
15654
|
action: () => void;
|
|
14279
15655
|
}
|
|
15656
|
+
type EmptyStateTone = 'neutral' | 'primary' | 'secondary';
|
|
15657
|
+
type EmptyStateVariant = 'card' | 'inline' | 'panel' | 'transparent';
|
|
15658
|
+
type EmptyStateAlignment = 'start' | 'center';
|
|
15659
|
+
type EmptyStateDensity = 'compact' | 'comfortable';
|
|
15660
|
+
type EmptyStateIconContainer = 'none' | 'circle' | 'soft';
|
|
14280
15661
|
declare class EmptyStateCardComponent {
|
|
14281
15662
|
icon: string;
|
|
14282
15663
|
title: string;
|
|
@@ -14284,17 +15665,25 @@ declare class EmptyStateCardComponent {
|
|
|
14284
15665
|
primaryAction?: EmptyAction;
|
|
14285
15666
|
secondaryActions: EmptyAction[];
|
|
14286
15667
|
inline: boolean;
|
|
14287
|
-
tone:
|
|
15668
|
+
tone: EmptyStateTone;
|
|
15669
|
+
variant: EmptyStateVariant;
|
|
15670
|
+
alignment: EmptyStateAlignment;
|
|
15671
|
+
density: EmptyStateDensity;
|
|
15672
|
+
iconContainer: EmptyStateIconContainer;
|
|
15673
|
+
effectiveVariant(): EmptyStateVariant;
|
|
14288
15674
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStateCardComponent, never>;
|
|
14289
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateCardComponent, "praxis-empty-state-card", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; }, {}, never, never, true, never>;
|
|
15675
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateCardComponent, "praxis-empty-state-card", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "density": { "alias": "density"; "required": false; }; "iconContainer": { "alias": "iconContainer"; "required": false; }; }, {}, never, never, true, never>;
|
|
14290
15676
|
}
|
|
14291
15677
|
|
|
14292
|
-
declare class ResourceQuickConnectComponent implements SettingsValueProvider {
|
|
15678
|
+
declare class ResourceQuickConnectComponent implements SettingsValueProvider, OnChanges, OnInit {
|
|
14293
15679
|
resourcePath: string;
|
|
14294
15680
|
isDirty$: BehaviorSubject<boolean>;
|
|
14295
15681
|
isValid$: BehaviorSubject<boolean>;
|
|
14296
15682
|
isBusy$: BehaviorSubject<boolean>;
|
|
15683
|
+
ngOnInit(): void;
|
|
15684
|
+
ngOnChanges(): void;
|
|
14297
15685
|
updateState(): void;
|
|
15686
|
+
private updateValidity;
|
|
14298
15687
|
getSettingsValue(): any;
|
|
14299
15688
|
onSave(): any;
|
|
14300
15689
|
showInvalid(): boolean;
|
|
@@ -14375,6 +15764,30 @@ declare class PraxisIconDirective implements OnChanges {
|
|
|
14375
15764
|
static ɵdir: i0.ɵɵDirectiveDeclaration<PraxisIconDirective, "mat-icon[praxisIcon]", never, { "icon": { "alias": "praxisIcon"; "required": false; }; }, {}, never, never, true, never>;
|
|
14376
15765
|
}
|
|
14377
15766
|
|
|
15767
|
+
type PraxisIconButtonSize = 'dense' | 'compact' | 'standard';
|
|
15768
|
+
type PraxisIconButtonAppearance = 'plain' | 'filled';
|
|
15769
|
+
type PraxisIconButtonPresentation = 'icon' | 'projected';
|
|
15770
|
+
/**
|
|
15771
|
+
* Canonical Praxis icon-only action built on a native button.
|
|
15772
|
+
*
|
|
15773
|
+
* The host remains the real button so consumers retain native disabled, focus,
|
|
15774
|
+
* ARIA, tooltip and event behavior. The component owns visual geometry and
|
|
15775
|
+
* preserves a 44px pointer target independently from the visible circle size.
|
|
15776
|
+
*/
|
|
15777
|
+
declare class PraxisIconButtonComponent {
|
|
15778
|
+
readonly icon: i0.InputSignal<string>;
|
|
15779
|
+
readonly size: i0.InputSignal<PraxisIconButtonSize>;
|
|
15780
|
+
readonly appearance: i0.InputSignal<PraxisIconButtonAppearance>;
|
|
15781
|
+
readonly presentation: i0.InputSignal<PraxisIconButtonPresentation>;
|
|
15782
|
+
readonly pressed: i0.InputSignal<boolean | null>;
|
|
15783
|
+
/** Replaces the glyph with a centered progress indicator and exposes aria-busy. */
|
|
15784
|
+
readonly busy: i0.InputSignalWithTransform<boolean, unknown>;
|
|
15785
|
+
/** Preserves legacy unprefixed Material Icons while accepting Praxis icon-family prefixes. */
|
|
15786
|
+
protected readonly resolvedIcon: i0.Signal<string>;
|
|
15787
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisIconButtonComponent, never>;
|
|
15788
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisIconButtonComponent, "button[praxisIconButton]", never, { "icon": { "alias": "praxisIconButton"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "appearance": { "alias": "appearance"; "required": false; "isSignal": true; }; "presentation": { "alias": "presentation"; "required": false; "isSignal": true; }; "pressed": { "alias": "pressed"; "required": false; "isSignal": true; }; "busy": { "alias": "busy"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
15789
|
+
}
|
|
15790
|
+
|
|
14378
15791
|
/**
|
|
14379
15792
|
* Normalize a single FieldMetadata object to the canonical format used by runtime and editor.
|
|
14380
15793
|
* - Moves constraints from validators.* to top-level (required, minLength, maxLength, pattern)
|
|
@@ -14457,9 +15870,13 @@ interface SchemaIdParams {
|
|
|
14457
15870
|
operation?: string;
|
|
14458
15871
|
schemaType?: 'response' | 'request';
|
|
14459
15872
|
includeInternalSchemas?: boolean;
|
|
15873
|
+
idField?: string;
|
|
15874
|
+
readOnly?: boolean;
|
|
15875
|
+
/** Boundary/header context. Structurally neutral for schema identity in the current Praxis metadata contract. */
|
|
14460
15876
|
tenant?: string;
|
|
15877
|
+
/** Boundary/header context. Structurally neutral for schema identity in the current Praxis metadata contract. */
|
|
14461
15878
|
locale?: string;
|
|
14462
|
-
/** Optional
|
|
15879
|
+
/** Optional local cache binding to avoid cross-origin collisions (e.g., https://api.example.com). */
|
|
14463
15880
|
apiOrigin?: string;
|
|
14464
15881
|
}
|
|
14465
15882
|
declare function normalizePath(p: string): string;
|
|
@@ -14649,5 +16066,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
14649
16066
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
14650
16067
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
14651
16068
|
|
|
14652
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisRuntimeGlobalActionEffect, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
|
14653
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormFieldLayoutItem, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
16069
|
+
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, COMPONENT_METADATA_REGISTRY_I18N_CONFIG, COMPONENT_METADATA_REGISTRY_I18N_NAMESPACE, 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_THEME_SURFACE_DEFAULTS, PRAXIS_THEME_SURFACE_VARS, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconButtonComponent, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRelatedResourceOutletComponent, PraxisResourceIdentityComponent, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RelatedResourceSurfaceResolverService, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceRecordOpenError, ResourceRecordOpenService, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, SurfaceOutletRegistryService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildPraxisThemeSurfaceCss, 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, isProgrammaticDateRangePreset, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isStaticDateRangePreset, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, materializeFormLayoutFromMetadata, materializeResourceIdentity, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldAccessMetadata, normalizeFieldConstraints, normalizeFieldPresentation, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLayoutPolicy, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisPresentationVisualization, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeResourceAvailabilityReasonCode, normalizeResourceIdentityContract, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisEnterpriseRuntimeContext, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRelatedResourceOutletMetadata, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, renderPraxisPresentationVisualizationHtml, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveColumnTypeFromFieldDefinition, resolveControlTypeAlias, resolveDateRangeShortcutPreset, resolveDateRangeShortcutPresets, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveFieldPresentation, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveResourceIdentityContract, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToExcel, serializePraxisCollectionToJson, slugify, staticDateRangePresetToPreset, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withFormConfigSections, withMessage, withPraxisHttpLoading };
|
|
16070
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsComparisonPeriodMode, AnalyticsComparisonPeriodPreset, 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, ComponentConfigEditorContextRequest, ComponentConfigEditorContextResolver, ComponentConfigEditorContextResult, 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, CrudSchemaOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeShortcutPreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, DynamicFormDetailSummaryPolicy, DynamicFormDetailSummaryWidthPrecedence, DynamicFormGroupedCommandOrphanFieldExpansion, DynamicFormGroupedCommandPolicy, DynamicFormLayoutDetachBehavior, DynamicFormLayoutIntent, DynamicFormLayoutLifecycle, DynamicFormLayoutPersistence, DynamicFormLayoutPolicy, DynamicFormLayoutSource, DynamicFormResponsiveBreakpoint, DynamicFormResponsiveColumns, DynamicFormSchemaLayoutPreset, DynamicFormSchemaOperation, DynamicFormSchemaType, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateAlignment, EmptyStateConfig, EmptyStateDensity, EmptyStateIconContainer, EmptyStateTone, EmptyStateVariant, EndpointConfig, EndpointRef, EnhancedValidationConfig, EnterpriseRuntimeContext, EnterpriseRuntimeContextHeaders, EnterpriseRuntimeContextSwitchCommand, EnterpriseRuntimeContextSwitchResponse, EnterpriseRuntimeNavigationNode, EnterpriseRuntimeNavigationResponse, EnterpriseRuntimeSecurityEvent, EnterpriseRuntimeSecurityEventsResponse, EnterpriseRuntimeTenant, EnterpriseRuntimeTenantsResponse, EnterpriseRuntimeUser, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldAccessEvaluationContext, FieldAccessEvaluationResult, FieldAccessMetadata, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldPresentationAppearance, FieldPresentationConfig, FieldPresentationInteractions, FieldPresentationJsonLogicEvaluator, FieldPresentationRule, FieldPresentationTone, FieldPresenterKind, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormConfigWithSections, FormCustomActionEvent, FormEntityEvent, FormFieldHelpDisplay, FormFieldLayoutItem, FormHelpPresentationConfig, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormPresentationConfig, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MaterializeFormLayoutOptions, MaterializedResourceIdentity, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAgenticTurnMetricBucket, ObservabilityAgenticTurnMetrics, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceByIdsRequestOptions, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceInvalidSortPolicy, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceSelectedReloadPolicy, 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, PraxisAnalyticsComparisonBucket, PraxisAnalyticsComparisonBucketKey, PraxisAnalyticsComparisonMetricValue, PraxisAnalyticsComparisonPeriodBinding, PraxisAnalyticsComparisonPeriodWindow, PraxisAnalyticsComparisonStatsRequest, PraxisAnalyticsComparisonStatsResponse, 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, PraxisIconButtonAppearance, PraxisIconButtonPresentation, PraxisIconButtonSize, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicLimits, 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, PraxisRuntimeVisualMaterializationCapability, PraxisRuntimeVisualMaterializationStatus, PraxisSubmitError, PraxisSubmitErrorDetail, PraxisTextValue, PraxisThemeSurfaceTokens, 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, ResolveResourceIdentityOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedResourceIdentityContract, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCanonicalCapabilityOperationId, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceIdentityContract, ResourceIdentityDiagnostic, ResourceIdentityFieldMetadata, ResourceIdentityPart, ResourceIdentitySource, ResourceKnownCapabilityOperationId, ResourceLinkSource, ResourceRecordOpenFailureCode, ResourceRecordOpenRef, ResourceRecordOpenResolution, ResourceRecordOpenResolveOptions, ResourceSchemaCatalogEndpoint, ResourceSchemaCatalogExample, ResourceSchemaCatalogField, ResourceSchemaCatalogHttpMethod, ResourceSchemaCatalogOperationExamples, ResourceSchemaCatalogParameter, ResourceSchemaCatalogQuery, ResourceSchemaCatalogRelation, ResourceSchemaCatalogResponse, ResourceSchemaCatalogSchemaLinks, ResourceSchemaCatalogSchemaRef, ResourceSchemaCatalogVisual, ResourceSchemaCatalogVisualSource, ResourceStatsCapability, ResourceStatsFieldCapability, ResourceStatsMetric, ResourceStatsMode, 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, StaticDateRangePreset, StaticDateRangePresetTone, StaticPresetResolutionOptions, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfaceOutletRegistration, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAiAssistantConfig, TableAiConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineNodeResolverDefinition, TableDetailInlineRendererContext, TableDetailInlineRendererDefinition, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarActionEvent, ToolbarActionTarget, ToolbarActionTargetCardinality, ToolbarActionTargetScope, 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 };
|