@praxisui/core 8.0.0-beta.33 → 8.0.0-beta.34
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/fesm2022/praxisui-core.mjs +287 -44
- package/package.json +1 -1
- package/types/praxisui-core.d.ts +210 -100
|
@@ -3093,6 +3093,7 @@ class GenericCrudService {
|
|
|
3093
3093
|
schemaCacheReady;
|
|
3094
3094
|
// Último metadata de recurso derivado do schema carregado (ex.: idField)
|
|
3095
3095
|
_lastResourceMeta = {};
|
|
3096
|
+
_lastResourceCapabilityDigest = null;
|
|
3096
3097
|
// Última informação do schema consumido (para auditoria/merge)
|
|
3097
3098
|
_lastSchemaInfo = {};
|
|
3098
3099
|
/**
|
|
@@ -3193,6 +3194,8 @@ class GenericCrudService {
|
|
|
3193
3194
|
this.configured = true;
|
|
3194
3195
|
this._filterSchemaLoaded = false;
|
|
3195
3196
|
this._rangeFilterFieldHints.clear();
|
|
3197
|
+
this._lastResourceMeta = {};
|
|
3198
|
+
this._lastResourceCapabilityDigest = null;
|
|
3196
3199
|
console.debug('[CRUD:Service] configure', {
|
|
3197
3200
|
resourcePath, baseApiUrl: this.baseApiUrl,
|
|
3198
3201
|
});
|
|
@@ -3315,11 +3318,7 @@ class GenericCrudService {
|
|
|
3315
3318
|
if (cached?.schema) {
|
|
3316
3319
|
// Extrai idField de x-ui.resource, se presente no schema em cache
|
|
3317
3320
|
try {
|
|
3318
|
-
|
|
3319
|
-
this._lastResourceMeta = {
|
|
3320
|
-
idField: idField || this._lastResourceMeta.idField,
|
|
3321
|
-
resourcePath: this.resourcePath,
|
|
3322
|
-
};
|
|
3321
|
+
this.updateLastResourceMetadataFromSchema(cached.schema);
|
|
3323
3322
|
}
|
|
3324
3323
|
catch { }
|
|
3325
3324
|
// Atualiza última info de schema a partir do cache
|
|
@@ -3379,12 +3378,7 @@ class GenericCrudService {
|
|
|
3379
3378
|
resourcePath: this.resourcePath, idField: idFieldFromBody, schemaId, apiOrigin,
|
|
3380
3379
|
} });
|
|
3381
3380
|
this._lastSchemaInfo = { schemaId, schemaHash };
|
|
3382
|
-
|
|
3383
|
-
try {
|
|
3384
|
-
const idField = body?.['x-ui']?.resource?.idField;
|
|
3385
|
-
this._lastResourceMeta = { idField, resourcePath: this.resourcePath };
|
|
3386
|
-
}
|
|
3387
|
-
catch { }
|
|
3381
|
+
this.updateLastResourceMetadataFromSchema(body);
|
|
3388
3382
|
return of(this.schemaNormalizer.normalizeSchema(body));
|
|
3389
3383
|
}),
|
|
3390
3384
|
// Angular HttpClient treats 304 as error; also handle status 0 (CORS/network) by reusing cache
|
|
@@ -3399,11 +3393,7 @@ class GenericCrudService {
|
|
|
3399
3393
|
return from(this._schemaCache.get(schemaId)).pipe(concatMap((cached) => {
|
|
3400
3394
|
if (cached?.schema) {
|
|
3401
3395
|
try {
|
|
3402
|
-
|
|
3403
|
-
this._lastResourceMeta = {
|
|
3404
|
-
idField: idField || this._lastResourceMeta.idField,
|
|
3405
|
-
resourcePath: this.resourcePath,
|
|
3406
|
-
};
|
|
3396
|
+
this.updateLastResourceMetadataFromSchema(cached.schema);
|
|
3407
3397
|
}
|
|
3408
3398
|
catch { }
|
|
3409
3399
|
return of(this.schemaNormalizer.normalizeSchema(cached.schema));
|
|
@@ -3441,8 +3431,7 @@ class GenericCrudService {
|
|
|
3441
3431
|
this._lastSchemaInfo = { schemaId, schemaHash: '' };
|
|
3442
3432
|
}), tap((fresh) => {
|
|
3443
3433
|
try {
|
|
3444
|
-
|
|
3445
|
-
this._lastResourceMeta = { idField, resourcePath: this.resourcePath };
|
|
3434
|
+
this.updateLastResourceMetadataFromSchema(fresh);
|
|
3446
3435
|
}
|
|
3447
3436
|
catch { }
|
|
3448
3437
|
}), map((fresh) => this.schemaNormalizer.normalizeSchema(fresh)), catchError(this.handleError));
|
|
@@ -3451,6 +3440,36 @@ class GenericCrudService {
|
|
|
3451
3440
|
return this.handleError(err);
|
|
3452
3441
|
}))), shareReplay(1));
|
|
3453
3442
|
}
|
|
3443
|
+
updateLastResourceMetadataFromSchema(schema) {
|
|
3444
|
+
const resource = schema?.['x-ui']?.resource;
|
|
3445
|
+
const idField = typeof resource?.idField === 'string' ? resource.idField : undefined;
|
|
3446
|
+
this._lastResourceMeta = {
|
|
3447
|
+
idField: idField || this._lastResourceMeta.idField,
|
|
3448
|
+
resourcePath: this.resourcePath,
|
|
3449
|
+
};
|
|
3450
|
+
const canonicalOperations = this.normalizeCanonicalCapabilities(resource?.capabilities);
|
|
3451
|
+
if (canonicalOperations) {
|
|
3452
|
+
this._lastResourceCapabilityDigest = {
|
|
3453
|
+
source: 'schema-x-ui-resource',
|
|
3454
|
+
resourcePath: this.resourcePath,
|
|
3455
|
+
canonicalOperations,
|
|
3456
|
+
filterExpressionSupported: canonicalOperations['filterExpression'] === true,
|
|
3457
|
+
};
|
|
3458
|
+
}
|
|
3459
|
+
}
|
|
3460
|
+
normalizeCanonicalCapabilities(value) {
|
|
3461
|
+
if (!value || typeof value !== 'object' || Array.isArray(value)) {
|
|
3462
|
+
return null;
|
|
3463
|
+
}
|
|
3464
|
+
const normalized = {};
|
|
3465
|
+
for (const [key, raw] of Object.entries(value)) {
|
|
3466
|
+
const name = key.trim();
|
|
3467
|
+
if (!name || typeof raw !== 'boolean')
|
|
3468
|
+
continue;
|
|
3469
|
+
normalized[name] = raw;
|
|
3470
|
+
}
|
|
3471
|
+
return Object.keys(normalized).length ? normalized : null;
|
|
3472
|
+
}
|
|
3454
3473
|
shouldRememberFilteredSchemaEndpointUnavailable(err) {
|
|
3455
3474
|
const payload = err?.error;
|
|
3456
3475
|
if (!payload || typeof payload !== 'object') {
|
|
@@ -3515,19 +3534,14 @@ class GenericCrudService {
|
|
|
3515
3534
|
this._schemaCache.set(schemaId, entryToCache);
|
|
3516
3535
|
this._lastSchemaInfo = { schemaId, schemaHash };
|
|
3517
3536
|
try {
|
|
3518
|
-
|
|
3519
|
-
this._lastResourceMeta = { idField, resourcePath: this.resourcePath };
|
|
3537
|
+
this.updateLastResourceMetadataFromSchema(body);
|
|
3520
3538
|
}
|
|
3521
3539
|
catch { }
|
|
3522
3540
|
return of(this.schemaNormalizer.normalizeSchema(body));
|
|
3523
3541
|
}), catchError((err) => {
|
|
3524
3542
|
if ((err?.status === 304 || err?.status === 0) && cached?.schema) {
|
|
3525
3543
|
try {
|
|
3526
|
-
|
|
3527
|
-
this._lastResourceMeta = {
|
|
3528
|
-
idField: idField || this._lastResourceMeta.idField,
|
|
3529
|
-
resourcePath: this.resourcePath,
|
|
3530
|
-
};
|
|
3544
|
+
this.updateLastResourceMetadataFromSchema(cached.schema);
|
|
3531
3545
|
}
|
|
3532
3546
|
catch { }
|
|
3533
3547
|
const cachedHash = cached.schemaHash || '';
|
|
@@ -3543,6 +3557,14 @@ class GenericCrudService {
|
|
|
3543
3557
|
const key = (this._lastResourceMeta?.idField || '').trim();
|
|
3544
3558
|
return key || undefined;
|
|
3545
3559
|
}
|
|
3560
|
+
getResourceCapabilityDigest() {
|
|
3561
|
+
return this._lastResourceCapabilityDigest
|
|
3562
|
+
? {
|
|
3563
|
+
...this._lastResourceCapabilityDigest,
|
|
3564
|
+
canonicalOperations: { ...this._lastResourceCapabilityDigest.canonicalOperations },
|
|
3565
|
+
}
|
|
3566
|
+
: null;
|
|
3567
|
+
}
|
|
3546
3568
|
/** Retorna o último schemaId e hash conhecidos após getSchema()/getFilteredSchema(). */
|
|
3547
3569
|
getLastSchemaInfo() {
|
|
3548
3570
|
return { ...this._lastSchemaInfo };
|
|
@@ -3707,6 +3729,7 @@ class GenericCrudService {
|
|
|
3707
3729
|
catch { }
|
|
3708
3730
|
const entryToCache = { schema: body, schemaHash, meta: { version: '2.0.0', name: (schemaTypeParam === 'request' ? 'Filter/Request Schema' : 'Schema'), createdAt: nowIso2, updatedAt: nowIso2, resourcePath: this.resourcePath, idField: idFieldFromBody2, schemaId, apiOrigin: origin } };
|
|
3709
3731
|
this._schemaCache.set(schemaId, entryToCache);
|
|
3732
|
+
this.updateLastResourceMetadataFromSchema(body);
|
|
3710
3733
|
return of(this.schemaNormalizer.normalizeSchema(body));
|
|
3711
3734
|
}),
|
|
3712
3735
|
// Angular HttpClient may surface 304 as error; also handle status 0 (CORS/network) by reusing cache
|
|
@@ -3717,6 +3740,7 @@ class GenericCrudService {
|
|
|
3717
3740
|
try {
|
|
3718
3741
|
const cachedHash = cached.schemaHash || '';
|
|
3719
3742
|
this._lastSchemaInfo = { schemaId, schemaHash: cachedHash };
|
|
3743
|
+
this.updateLastResourceMetadataFromSchema(cached.schema);
|
|
3720
3744
|
}
|
|
3721
3745
|
catch { }
|
|
3722
3746
|
return of(this.schemaNormalizer.normalizeSchema(cached.schema));
|
|
@@ -3740,6 +3764,7 @@ class GenericCrudService {
|
|
|
3740
3764
|
const now = new Date().toISOString();
|
|
3741
3765
|
const entry = { schema: fresh, schemaHash: '', meta: { version: '2.0.0', name: (schemaTypeParam === 'request' ? 'Filter/Request Schema' : 'Schema'), createdAt: now, updatedAt: now, resourcePath: this.resourcePath, schemaId, apiOrigin: origin } };
|
|
3742
3766
|
this._schemaCache.set(schemaId, entry);
|
|
3767
|
+
this.updateLastResourceMetadataFromSchema(fresh);
|
|
3743
3768
|
}), map((fresh) => this.schemaNormalizer.normalizeSchema(fresh)), catchError(this.handleError));
|
|
3744
3769
|
}));
|
|
3745
3770
|
}
|
|
@@ -6113,22 +6138,26 @@ class SurfaceBindingRuntimeService {
|
|
|
6113
6138
|
.split('.')
|
|
6114
6139
|
.reduce((acc, key) => acc?.[key], obj);
|
|
6115
6140
|
}
|
|
6116
|
-
resolveTemplate(node, context, key) {
|
|
6141
|
+
resolveTemplate(node, context, key, path = []) {
|
|
6117
6142
|
if (node == null)
|
|
6118
6143
|
return node;
|
|
6119
|
-
if (this.isDeferredTemplateExpressionKey(key) && typeof node === 'string') {
|
|
6144
|
+
if (this.isDeferredTemplateExpressionKey(key, path) && typeof node === 'string') {
|
|
6120
6145
|
return node;
|
|
6121
6146
|
}
|
|
6122
6147
|
if (Array.isArray(node))
|
|
6123
|
-
return node.map((value) => this.resolveTemplate(value, context, key));
|
|
6148
|
+
return node.map((value) => this.resolveTemplate(value, context, key, path));
|
|
6124
6149
|
if (typeof node === 'object') {
|
|
6125
6150
|
const out = {};
|
|
6126
6151
|
for (const [key, value] of Object.entries(node)) {
|
|
6127
|
-
out[key] = this.resolveTemplate(value, context, key);
|
|
6152
|
+
out[key] = this.resolveTemplate(value, context, key, [...path, key]);
|
|
6128
6153
|
}
|
|
6129
6154
|
return out;
|
|
6130
6155
|
}
|
|
6131
6156
|
if (typeof node === 'string') {
|
|
6157
|
+
const parsed = this.tryParseStructuredTemplate(node);
|
|
6158
|
+
if (parsed.parsed) {
|
|
6159
|
+
return this.resolveTemplate(parsed.value, context, key, path);
|
|
6160
|
+
}
|
|
6132
6161
|
const exact = node.match(/^\s*\$\{([^}]+)\}\s*$/);
|
|
6133
6162
|
if (exact) {
|
|
6134
6163
|
return this.extractByPath(context, exact[1].trim());
|
|
@@ -6140,10 +6169,27 @@ class SurfaceBindingRuntimeService {
|
|
|
6140
6169
|
}
|
|
6141
6170
|
return node;
|
|
6142
6171
|
}
|
|
6143
|
-
isDeferredTemplateExpressionKey(key) {
|
|
6144
|
-
if (
|
|
6145
|
-
return
|
|
6146
|
-
|
|
6172
|
+
isDeferredTemplateExpressionKey(key, path = []) {
|
|
6173
|
+
if (key && (key === 'expr' || key.endsWith('Expr')))
|
|
6174
|
+
return true;
|
|
6175
|
+
for (let index = 0; index < path.length - 1; index++) {
|
|
6176
|
+
if (path[index] === 'globalAction' && path[index + 1] === 'payload') {
|
|
6177
|
+
return true;
|
|
6178
|
+
}
|
|
6179
|
+
}
|
|
6180
|
+
return false;
|
|
6181
|
+
}
|
|
6182
|
+
tryParseStructuredTemplate(value) {
|
|
6183
|
+
const trimmed = value.trim();
|
|
6184
|
+
if (!trimmed || (trimmed[0] !== '{' && trimmed[0] !== '[')) {
|
|
6185
|
+
return { parsed: false };
|
|
6186
|
+
}
|
|
6187
|
+
try {
|
|
6188
|
+
return { parsed: true, value: JSON.parse(trimmed) };
|
|
6189
|
+
}
|
|
6190
|
+
catch {
|
|
6191
|
+
return { parsed: false };
|
|
6192
|
+
}
|
|
6147
6193
|
}
|
|
6148
6194
|
setValueAtPath(obj, rawPath, value) {
|
|
6149
6195
|
const path = this.tokenizePath(rawPath);
|
|
@@ -10629,6 +10675,22 @@ class PraxisHttpCollectionExportProvider {
|
|
|
10629
10675
|
const text = await blob.text();
|
|
10630
10676
|
const parsed = JSON.parse(text || '{}');
|
|
10631
10677
|
const exportHeaders = this.normalizeExportHeaders(response);
|
|
10678
|
+
if (!this.isExportResultEnvelope(parsed)) {
|
|
10679
|
+
return {
|
|
10680
|
+
status: 'completed',
|
|
10681
|
+
format: request.format,
|
|
10682
|
+
scope: resolvePraxisExportScope(request),
|
|
10683
|
+
fileName: this.resolveFileName(response, request),
|
|
10684
|
+
mimeType: contentType,
|
|
10685
|
+
content: new Blob([text], { type: contentType }),
|
|
10686
|
+
rowCount: exportHeaders.rowCount,
|
|
10687
|
+
warnings: exportHeaders.warnings,
|
|
10688
|
+
metadata: {
|
|
10689
|
+
httpStatus: response.status,
|
|
10690
|
+
...exportHeaders.metadata,
|
|
10691
|
+
},
|
|
10692
|
+
};
|
|
10693
|
+
}
|
|
10632
10694
|
return {
|
|
10633
10695
|
...parsed,
|
|
10634
10696
|
format: parsed.format || request.format,
|
|
@@ -10676,6 +10738,17 @@ class PraxisHttpCollectionExportProvider {
|
|
|
10676
10738
|
}
|
|
10677
10739
|
return { rowCount, warnings, metadata };
|
|
10678
10740
|
}
|
|
10741
|
+
isExportResultEnvelope(value) {
|
|
10742
|
+
if (!value || Array.isArray(value) || typeof value !== 'object') {
|
|
10743
|
+
return false;
|
|
10744
|
+
}
|
|
10745
|
+
const candidate = value;
|
|
10746
|
+
return candidate.status === 'completed'
|
|
10747
|
+
|| candidate.status === 'deferred'
|
|
10748
|
+
|| typeof candidate.downloadUrl === 'string'
|
|
10749
|
+
|| typeof candidate.jobId === 'string'
|
|
10750
|
+
|| candidate.content !== undefined;
|
|
10751
|
+
}
|
|
10679
10752
|
readNumberHeader(response, headerName) {
|
|
10680
10753
|
const value = response.headers.get(headerName);
|
|
10681
10754
|
if (!value) {
|
|
@@ -11638,15 +11711,22 @@ const SURFACE_OPEN_PRESETS = [
|
|
|
11638
11711
|
{
|
|
11639
11712
|
id: 'praxis-crud',
|
|
11640
11713
|
label: 'CRUD',
|
|
11641
|
-
description: 'Abre a surface de CRUD com
|
|
11714
|
+
description: 'Abre a surface de CRUD com metadata/crudId e bindings configuráveis.',
|
|
11642
11715
|
payload: {
|
|
11643
11716
|
presentation: 'drawer',
|
|
11644
11717
|
widget: {
|
|
11645
11718
|
id: 'praxis-crud',
|
|
11646
|
-
bindingOrder: ['
|
|
11719
|
+
bindingOrder: ['metadata', 'crudId', 'context'],
|
|
11647
11720
|
inputs: {
|
|
11648
|
-
|
|
11649
|
-
|
|
11721
|
+
metadata: {
|
|
11722
|
+
component: 'praxis-crud',
|
|
11723
|
+
table: {
|
|
11724
|
+
columns: [],
|
|
11725
|
+
},
|
|
11726
|
+
data: [],
|
|
11727
|
+
},
|
|
11728
|
+
crudId: '',
|
|
11729
|
+
context: {},
|
|
11650
11730
|
},
|
|
11651
11731
|
},
|
|
11652
11732
|
bindings: [],
|
|
@@ -14480,7 +14560,7 @@ const SURFACE_OPEN_I18N_CONFIG = {
|
|
|
14480
14560
|
'preset.praxis-list.label': 'Lista',
|
|
14481
14561
|
'preset.praxis-list.description': 'Abre uma lista com listId e config básicos.',
|
|
14482
14562
|
'preset.praxis-crud.label': 'CRUD',
|
|
14483
|
-
'preset.praxis-crud.description': 'Abre a surface de CRUD com
|
|
14563
|
+
'preset.praxis-crud.description': 'Abre a surface de CRUD com metadata, crudId e bindings configuráveis.',
|
|
14484
14564
|
'action.surfaceOpen.label': 'Abrir Surface',
|
|
14485
14565
|
'action.surfaceOpen.description': 'Abre modal ou drawer com um componente registrado e payload dinâmico.',
|
|
14486
14566
|
'action.surfaceOpen.hint': 'Use o editor especializado para configurar widget, inputs e bindings da surface.',
|
|
@@ -14529,7 +14609,7 @@ const SURFACE_OPEN_I18N_CONFIG = {
|
|
|
14529
14609
|
'preset.praxis-list.label': 'List',
|
|
14530
14610
|
'preset.praxis-list.description': 'Opens a list with basic listId and config inputs.',
|
|
14531
14611
|
'preset.praxis-crud.label': 'CRUD',
|
|
14532
|
-
'preset.praxis-crud.description': 'Opens the CRUD surface with
|
|
14612
|
+
'preset.praxis-crud.description': 'Opens the CRUD surface with metadata, crudId and configurable bindings.',
|
|
14533
14613
|
'action.surfaceOpen.label': 'Open Surface',
|
|
14534
14614
|
'action.surfaceOpen.description': 'Opens a modal or drawer with a registered component and dynamic payload.',
|
|
14535
14615
|
'action.surfaceOpen.hint': 'Use the dedicated editor to configure the surface widget, inputs and bindings.',
|
|
@@ -18045,6 +18125,33 @@ function markerColorForEvent(eventType) {
|
|
|
18045
18125
|
return 'neutral';
|
|
18046
18126
|
}
|
|
18047
18127
|
|
|
18128
|
+
const PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION = 'praxis.query-filter-expression.v1';
|
|
18129
|
+
const PRAXIS_QUERY_FILTER_GROUP_OPERATORS = new Set(['all', 'any']);
|
|
18130
|
+
const PRAXIS_QUERY_FILTER_PREDICATE_OPERATORS = new Set([
|
|
18131
|
+
'equals',
|
|
18132
|
+
'notEquals',
|
|
18133
|
+
'in',
|
|
18134
|
+
'notIn',
|
|
18135
|
+
'contains',
|
|
18136
|
+
'startsWith',
|
|
18137
|
+
'between',
|
|
18138
|
+
'gte',
|
|
18139
|
+
'lte',
|
|
18140
|
+
'isNull',
|
|
18141
|
+
'isNotNull',
|
|
18142
|
+
]);
|
|
18143
|
+
const PRAXIS_QUERY_FILTER_PREDICATE_SOURCE_KINDS = new Set([
|
|
18144
|
+
'selected-records',
|
|
18145
|
+
'manual',
|
|
18146
|
+
'workflow',
|
|
18147
|
+
'current-context',
|
|
18148
|
+
]);
|
|
18149
|
+
const PRAXIS_QUERY_FILTER_GOVERNANCE_SOURCES = new Set([
|
|
18150
|
+
'selected-records',
|
|
18151
|
+
'manual',
|
|
18152
|
+
'workflow',
|
|
18153
|
+
'ai-authored',
|
|
18154
|
+
]);
|
|
18048
18155
|
function normalizeRecord(record) {
|
|
18049
18156
|
if (!record || typeof record !== 'object')
|
|
18050
18157
|
return null;
|
|
@@ -18060,10 +18167,136 @@ function normalizeRecord(record) {
|
|
|
18060
18167
|
}, {});
|
|
18061
18168
|
return Object.keys(next).length ? next : null;
|
|
18062
18169
|
}
|
|
18170
|
+
function isMeaningfulQueryFilterValue(value) {
|
|
18171
|
+
if (value === null || value === undefined)
|
|
18172
|
+
return false;
|
|
18173
|
+
if (Array.isArray(value))
|
|
18174
|
+
return value.some((item) => isMeaningfulQueryFilterValue(item));
|
|
18175
|
+
if (typeof value === 'string')
|
|
18176
|
+
return value.trim() !== '';
|
|
18177
|
+
return true;
|
|
18178
|
+
}
|
|
18179
|
+
function normalizeQueryFilterSource(source) {
|
|
18180
|
+
if (!source || typeof source !== 'object')
|
|
18181
|
+
return null;
|
|
18182
|
+
const kind = typeof source['kind'] === 'string' ? source['kind'].trim() : '';
|
|
18183
|
+
if (!PRAXIS_QUERY_FILTER_PREDICATE_SOURCE_KINDS.has(kind))
|
|
18184
|
+
return null;
|
|
18185
|
+
const field = typeof source['field'] === 'string' && source['field'].trim()
|
|
18186
|
+
? source['field'].trim()
|
|
18187
|
+
: null;
|
|
18188
|
+
const selectedIds = Array.isArray(source['selectedIds'])
|
|
18189
|
+
? source['selectedIds'].filter((id) => (typeof id === 'string' && id.trim() !== '') ||
|
|
18190
|
+
(typeof id === 'number' && Number.isFinite(id)))
|
|
18191
|
+
: [];
|
|
18192
|
+
return {
|
|
18193
|
+
kind: kind,
|
|
18194
|
+
...(field ? { field } : {}),
|
|
18195
|
+
...(selectedIds.length ? { selectedIds } : {}),
|
|
18196
|
+
};
|
|
18197
|
+
}
|
|
18198
|
+
function normalizeQueryFilterGovernance(governance) {
|
|
18199
|
+
if (!governance || typeof governance !== 'object')
|
|
18200
|
+
return null;
|
|
18201
|
+
const source = typeof governance['source'] === 'string' ? governance['source'].trim() : '';
|
|
18202
|
+
const decisionId = typeof governance['decisionId'] === 'string' && governance['decisionId'].trim()
|
|
18203
|
+
? governance['decisionId'].trim()
|
|
18204
|
+
: null;
|
|
18205
|
+
const explanation = typeof governance['explanation'] === 'string' && governance['explanation'].trim()
|
|
18206
|
+
? governance['explanation'].trim()
|
|
18207
|
+
: null;
|
|
18208
|
+
const next = {};
|
|
18209
|
+
if (PRAXIS_QUERY_FILTER_GOVERNANCE_SOURCES.has(source)) {
|
|
18210
|
+
next.source = source;
|
|
18211
|
+
}
|
|
18212
|
+
if (decisionId)
|
|
18213
|
+
next.decisionId = decisionId;
|
|
18214
|
+
if (explanation)
|
|
18215
|
+
next.explanation = explanation;
|
|
18216
|
+
return Object.keys(next).length ? next : null;
|
|
18217
|
+
}
|
|
18218
|
+
function normalizePraxisQueryFilterNode(node) {
|
|
18219
|
+
if (!node || typeof node !== 'object')
|
|
18220
|
+
return null;
|
|
18221
|
+
const kind = typeof node['kind'] === 'string' ? node['kind'].trim() : '';
|
|
18222
|
+
if (kind === 'group') {
|
|
18223
|
+
const operator = typeof node['operator'] === 'string' ? node['operator'].trim() : '';
|
|
18224
|
+
if (!PRAXIS_QUERY_FILTER_GROUP_OPERATORS.has(operator))
|
|
18225
|
+
return null;
|
|
18226
|
+
const clauses = Array.isArray(node['clauses'])
|
|
18227
|
+
? node['clauses']
|
|
18228
|
+
.map((clause) => normalizePraxisQueryFilterNode(clause))
|
|
18229
|
+
.filter((clause) => !!clause)
|
|
18230
|
+
: [];
|
|
18231
|
+
if (!clauses.length)
|
|
18232
|
+
return null;
|
|
18233
|
+
return {
|
|
18234
|
+
kind: 'group',
|
|
18235
|
+
operator: operator,
|
|
18236
|
+
clauses,
|
|
18237
|
+
};
|
|
18238
|
+
}
|
|
18239
|
+
if (kind === 'predicate') {
|
|
18240
|
+
const field = typeof node['field'] === 'string' ? node['field'].trim() : '';
|
|
18241
|
+
const operator = typeof node['operator'] === 'string' ? node['operator'].trim() : '';
|
|
18242
|
+
if (!field || !PRAXIS_QUERY_FILTER_PREDICATE_OPERATORS.has(operator))
|
|
18243
|
+
return null;
|
|
18244
|
+
const values = Array.isArray(node['values'])
|
|
18245
|
+
? node['values'].filter((value) => isMeaningfulQueryFilterValue(value))
|
|
18246
|
+
: [];
|
|
18247
|
+
const hasValue = isMeaningfulQueryFilterValue(node['value']);
|
|
18248
|
+
const label = typeof node['label'] === 'string' && node['label'].trim()
|
|
18249
|
+
? node['label'].trim()
|
|
18250
|
+
: null;
|
|
18251
|
+
const source = normalizeQueryFilterSource(node['source']);
|
|
18252
|
+
return {
|
|
18253
|
+
kind: 'predicate',
|
|
18254
|
+
field,
|
|
18255
|
+
operator: operator,
|
|
18256
|
+
...(hasValue ? { value: node['value'] } : {}),
|
|
18257
|
+
...(values.length ? { values } : {}),
|
|
18258
|
+
...(label ? { label } : {}),
|
|
18259
|
+
...(source ? { source } : {}),
|
|
18260
|
+
};
|
|
18261
|
+
}
|
|
18262
|
+
return null;
|
|
18263
|
+
}
|
|
18264
|
+
function normalizePraxisQueryFilterExpression(expression) {
|
|
18265
|
+
if (!expression || typeof expression !== 'object')
|
|
18266
|
+
return null;
|
|
18267
|
+
if (expression.schemaVersion !== PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION)
|
|
18268
|
+
return null;
|
|
18269
|
+
const root = normalizePraxisQueryFilterNode(expression.root);
|
|
18270
|
+
if (!root)
|
|
18271
|
+
return null;
|
|
18272
|
+
const projection = expression.projection && typeof expression.projection === 'object'
|
|
18273
|
+
? {
|
|
18274
|
+
filters: normalizeRecord(expression.projection.filters),
|
|
18275
|
+
lossless: expression.projection.lossless === true,
|
|
18276
|
+
reason: typeof expression.projection.reason === 'string' && expression.projection.reason.trim()
|
|
18277
|
+
? expression.projection.reason.trim()
|
|
18278
|
+
: undefined,
|
|
18279
|
+
}
|
|
18280
|
+
: null;
|
|
18281
|
+
const governance = normalizeQueryFilterGovernance(expression.governance);
|
|
18282
|
+
return {
|
|
18283
|
+
schemaVersion: PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION,
|
|
18284
|
+
root,
|
|
18285
|
+
...(projection ? {
|
|
18286
|
+
projection: {
|
|
18287
|
+
...(projection.filters ? { filters: projection.filters } : {}),
|
|
18288
|
+
lossless: projection.lossless,
|
|
18289
|
+
...(projection.reason ? { reason: projection.reason } : {}),
|
|
18290
|
+
},
|
|
18291
|
+
} : {}),
|
|
18292
|
+
...(governance ? { governance } : {}),
|
|
18293
|
+
};
|
|
18294
|
+
}
|
|
18063
18295
|
function normalizePraxisDataQueryContext(context) {
|
|
18064
18296
|
if (!context || typeof context !== 'object')
|
|
18065
18297
|
return null;
|
|
18066
18298
|
const filters = normalizeRecord(context.filters);
|
|
18299
|
+
const filterExpression = normalizePraxisQueryFilterExpression(context.filterExpression);
|
|
18067
18300
|
const meta = normalizeRecord(context.meta);
|
|
18068
18301
|
const sort = Array.isArray(context.sort)
|
|
18069
18302
|
? context.sort
|
|
@@ -18086,6 +18319,8 @@ function normalizePraxisDataQueryContext(context) {
|
|
|
18086
18319
|
const next = {};
|
|
18087
18320
|
if (filters)
|
|
18088
18321
|
next.filters = filters;
|
|
18322
|
+
if (filterExpression)
|
|
18323
|
+
next.filterExpression = filterExpression;
|
|
18089
18324
|
if (sort.length)
|
|
18090
18325
|
next.sort = sort;
|
|
18091
18326
|
if (limit !== null)
|
|
@@ -32716,8 +32951,14 @@ function applyLocalCustomizations$1(base, local) {
|
|
|
32716
32951
|
const authoritative = {
|
|
32717
32952
|
name: base.name,
|
|
32718
32953
|
label: base.label,
|
|
32954
|
+
type: base.type,
|
|
32719
32955
|
controlType: base.controlType,
|
|
32720
32956
|
required: base.required,
|
|
32957
|
+
hint: base.hint,
|
|
32958
|
+
helpText: base.helpText,
|
|
32959
|
+
description: base.description,
|
|
32960
|
+
icon: base.icon,
|
|
32961
|
+
iconPosition: base.iconPosition,
|
|
32721
32962
|
endpoint: base.endpoint,
|
|
32722
32963
|
resourcePath: base.resourcePath,
|
|
32723
32964
|
optionSource: base.optionSource,
|
|
@@ -32732,15 +32973,14 @@ function applyLocalCustomizations$1(base, local) {
|
|
|
32732
32973
|
// Local customizations to preserve (order/layout/visibility/UI hints/masks/placeholders)
|
|
32733
32974
|
const preserved = {
|
|
32734
32975
|
placeholder: local.placeholder ?? base.placeholder,
|
|
32735
|
-
hint: local.hint ?? base.hint,
|
|
32736
32976
|
mask: (typeChanged ? undefined : local.mask) ?? base.mask,
|
|
32737
32977
|
format: (typeChanged ? undefined : local.format) ?? base.format,
|
|
32738
32978
|
width: local.width ?? base.width,
|
|
32739
32979
|
isFlex: local.isFlex ?? base.isFlex,
|
|
32740
32980
|
visibleIn: local.visibleIn ?? base.visibleIn,
|
|
32741
|
-
formHidden:
|
|
32742
|
-
tableHidden:
|
|
32743
|
-
filterHidden:
|
|
32981
|
+
formHidden: mergeServerVisibilityFlag(base.formHidden),
|
|
32982
|
+
tableHidden: mergeServerVisibilityFlag(base.tableHidden),
|
|
32983
|
+
filterHidden: mergeServerVisibilityFlag(base.filterHidden),
|
|
32744
32984
|
materialDesign: {
|
|
32745
32985
|
...local.materialDesign,
|
|
32746
32986
|
...base.materialDesign,
|
|
@@ -32761,6 +33001,9 @@ function applyLocalCustomizations$1(base, local) {
|
|
|
32761
33001
|
...preserved,
|
|
32762
33002
|
};
|
|
32763
33003
|
}
|
|
33004
|
+
function mergeServerVisibilityFlag(serverValue) {
|
|
33005
|
+
return serverValue === true ? true : undefined;
|
|
33006
|
+
}
|
|
32764
33007
|
function stripLocalSubmitSemantics(field) {
|
|
32765
33008
|
const { source, transient, submitPolicy, ...rest } = field;
|
|
32766
33009
|
void source;
|
|
@@ -33221,4 +33464,4 @@ function provideHookWhitelist(allowed) {
|
|
|
33221
33464
|
* Generated bundle index. Do not edit.
|
|
33222
33465
|
*/
|
|
33223
33466
|
|
|
33224
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$2 as applyLocalCustomizations, applyLocalCustomizations$1 as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, 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$1 as normalizeGlobalActionRef, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
|
33467
|
+
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, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$2 as applyLocalCustomizations, applyLocalCustomizations$1 as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, 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$1 as 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, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/core",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.34",
|
|
4
4
|
"description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
package/types/praxisui-core.d.ts
CHANGED
|
@@ -1012,6 +1012,40 @@ interface PraxisCollectionSelectionState<T = unknown> {
|
|
|
1012
1012
|
allMatchingSelected?: boolean;
|
|
1013
1013
|
excludedKeys?: Array<string | number>;
|
|
1014
1014
|
}
|
|
1015
|
+
interface PraxisCollectionExportLocalization {
|
|
1016
|
+
locale?: string;
|
|
1017
|
+
timeZone?: string;
|
|
1018
|
+
}
|
|
1019
|
+
interface PraxisCollectionExportFieldPresentation {
|
|
1020
|
+
semanticType?: string;
|
|
1021
|
+
format?: string;
|
|
1022
|
+
currency?: string;
|
|
1023
|
+
locale?: string;
|
|
1024
|
+
timeZone?: string;
|
|
1025
|
+
trueLabel?: string;
|
|
1026
|
+
falseLabel?: string;
|
|
1027
|
+
nullDisplay?: string;
|
|
1028
|
+
valueMapping?: Record<string, string>;
|
|
1029
|
+
}
|
|
1030
|
+
interface PraxisCollectionExportCsvOptions {
|
|
1031
|
+
delimiter?: ',' | ';' | '|' | '\t' | string;
|
|
1032
|
+
encoding?: 'utf-8' | 'utf-16' | 'iso-8859-1' | string;
|
|
1033
|
+
includeBom?: boolean;
|
|
1034
|
+
lineEnding?: 'crlf' | 'lf' | string;
|
|
1035
|
+
excelCompatibility?: boolean;
|
|
1036
|
+
includeSepDirective?: boolean;
|
|
1037
|
+
}
|
|
1038
|
+
interface PraxisCollectionExportExcelOptions {
|
|
1039
|
+
sheetName?: string;
|
|
1040
|
+
freezeHeaders?: boolean;
|
|
1041
|
+
autoFitColumns?: boolean;
|
|
1042
|
+
typedCells?: boolean;
|
|
1043
|
+
includeFormulas?: boolean;
|
|
1044
|
+
}
|
|
1045
|
+
interface PraxisCollectionExportFormatOptions {
|
|
1046
|
+
csv?: PraxisCollectionExportCsvOptions;
|
|
1047
|
+
excel?: PraxisCollectionExportExcelOptions;
|
|
1048
|
+
}
|
|
1015
1049
|
interface PraxisCollectionExportField<T = unknown> {
|
|
1016
1050
|
key: string;
|
|
1017
1051
|
label?: string;
|
|
@@ -1019,6 +1053,8 @@ interface PraxisCollectionExportField<T = unknown> {
|
|
|
1019
1053
|
exportable?: boolean;
|
|
1020
1054
|
type?: string;
|
|
1021
1055
|
valuePath?: string;
|
|
1056
|
+
format?: string;
|
|
1057
|
+
presentation?: PraxisCollectionExportFieldPresentation;
|
|
1022
1058
|
valueGetter?: (item: T) => unknown;
|
|
1023
1059
|
formatter?: (value: unknown, item: T) => unknown;
|
|
1024
1060
|
}
|
|
@@ -1051,6 +1087,8 @@ interface PraxisCollectionExportRequest<T = unknown> extends PraxisCollectionExp
|
|
|
1051
1087
|
applyFormatting?: boolean;
|
|
1052
1088
|
maxRows?: number;
|
|
1053
1089
|
fileName?: string;
|
|
1090
|
+
formatOptions?: PraxisCollectionExportFormatOptions;
|
|
1091
|
+
localization?: PraxisCollectionExportLocalization;
|
|
1054
1092
|
metadata?: Record<string, unknown>;
|
|
1055
1093
|
}
|
|
1056
1094
|
interface PraxisCollectionExportResult {
|
|
@@ -1128,6 +1166,12 @@ declare function isPraxisRuntimeGlobalActionEffect(value: unknown): value is Pra
|
|
|
1128
1166
|
declare function normalizePraxisEffectPolicy(policy: PraxisEffectPolicy | null | undefined): PraxisEffectPolicy;
|
|
1129
1167
|
declare function buildPraxisEffectDistinctKey(input: PraxisEffectDistinctKeyInput): string;
|
|
1130
1168
|
|
|
1169
|
+
interface TableTooltipConfig {
|
|
1170
|
+
text?: string;
|
|
1171
|
+
position?: 'top' | 'right' | 'bottom' | 'left' | 'above' | 'below' | 'before' | 'after';
|
|
1172
|
+
bgColor?: string;
|
|
1173
|
+
delayMs?: number;
|
|
1174
|
+
}
|
|
1131
1175
|
/**
|
|
1132
1176
|
* Nova arquitetura modular do TableConfig v2.0
|
|
1133
1177
|
* Preparada para crescimento exponencial e alinhada com as 5 abas do editor
|
|
@@ -1194,6 +1238,8 @@ interface ColumnDefinition {
|
|
|
1194
1238
|
};
|
|
1195
1239
|
/** Tipo do renderizador */
|
|
1196
1240
|
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose';
|
|
1241
|
+
/** Tooltip associado ao renderer efetivo da célula. */
|
|
1242
|
+
tooltip?: TableTooltipConfig;
|
|
1197
1243
|
/** Configuração de ícone (Material/SVG por nome) */
|
|
1198
1244
|
icon?: {
|
|
1199
1245
|
/** Nome fixo do ícone (ex.: 'check_circle') */
|
|
@@ -1239,6 +1285,8 @@ interface ColumnDefinition {
|
|
|
1239
1285
|
variant?: 'filled' | 'outlined' | 'soft';
|
|
1240
1286
|
/** Ícone opcional dentro do badge */
|
|
1241
1287
|
icon?: string;
|
|
1288
|
+
/** Tooltip opcional associado ao indicador visual */
|
|
1289
|
+
tooltip?: TableTooltipConfig;
|
|
1242
1290
|
};
|
|
1243
1291
|
/** Link (sanitizado) */
|
|
1244
1292
|
link?: {
|
|
@@ -1271,6 +1319,8 @@ interface ColumnDefinition {
|
|
|
1271
1319
|
color?: string;
|
|
1272
1320
|
icon?: string;
|
|
1273
1321
|
variant?: 'filled' | 'outlined' | 'soft';
|
|
1322
|
+
/** Tooltip opcional associado ao chip */
|
|
1323
|
+
tooltip?: TableTooltipConfig;
|
|
1274
1324
|
};
|
|
1275
1325
|
/** Barra de progresso leve */
|
|
1276
1326
|
progress?: {
|
|
@@ -1354,6 +1404,7 @@ interface ColumnDefinition {
|
|
|
1354
1404
|
color?: string;
|
|
1355
1405
|
variant?: 'filled' | 'outlined' | 'soft';
|
|
1356
1406
|
icon?: string;
|
|
1407
|
+
tooltip?: TableTooltipConfig;
|
|
1357
1408
|
};
|
|
1358
1409
|
} | {
|
|
1359
1410
|
type: 'link';
|
|
@@ -1388,6 +1439,7 @@ interface ColumnDefinition {
|
|
|
1388
1439
|
color?: string;
|
|
1389
1440
|
icon?: string;
|
|
1390
1441
|
variant?: 'filled' | 'outlined' | 'soft';
|
|
1442
|
+
tooltip?: TableTooltipConfig;
|
|
1391
1443
|
};
|
|
1392
1444
|
} | {
|
|
1393
1445
|
type: 'progress';
|
|
@@ -1459,6 +1511,8 @@ interface ColumnDefinition {
|
|
|
1459
1511
|
id?: string;
|
|
1460
1512
|
condition: JsonLogicExpression | null;
|
|
1461
1513
|
renderer?: Partial<ColumnDefinition['renderer']>;
|
|
1514
|
+
/** Tooltip condicional aplicado quando a regra vencer. */
|
|
1515
|
+
tooltip?: TableTooltipConfig;
|
|
1462
1516
|
/** Efeitos visuais canonicos que podem produzir renderer, tooltip ou animacao. */
|
|
1463
1517
|
effects?: Array<Record<string, unknown>>;
|
|
1464
1518
|
description?: string;
|
|
@@ -4455,6 +4509,109 @@ declare class GlobalConfigService {
|
|
|
4455
4509
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalConfigService>;
|
|
4456
4510
|
}
|
|
4457
4511
|
|
|
4512
|
+
/**
|
|
4513
|
+
* Contratos compartilhados de discovery semantico consumidos pelo runtime Angular.
|
|
4514
|
+
*
|
|
4515
|
+
* `resourcePath` continua sendo o endereco operacional do recurso.
|
|
4516
|
+
* `resourceKey` representa a identidade semantica estavel devolvida pelo backend para
|
|
4517
|
+
* surfaces, actions e capabilities.
|
|
4518
|
+
*
|
|
4519
|
+
* O runtime usa `resourceKey` para preservar contexto semantico e gerar ids estaveis de
|
|
4520
|
+
* abertura, enquanto `resourcePath`, `path`, `method` e `schemaUrl` seguem responsaveis pelo
|
|
4521
|
+
* comportamento operacional.
|
|
4522
|
+
*/
|
|
4523
|
+
|
|
4524
|
+
interface ResourceAvailabilityDecision {
|
|
4525
|
+
allowed: boolean;
|
|
4526
|
+
reason?: string | null;
|
|
4527
|
+
metadata?: Record<string, any>;
|
|
4528
|
+
}
|
|
4529
|
+
type ResourceSurfaceKind = 'FORM' | 'PARTIAL_FORM' | 'VIEW' | 'READ_PROJECTION';
|
|
4530
|
+
type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
|
|
4531
|
+
type ResourceActionScope = 'COLLECTION' | 'ITEM';
|
|
4532
|
+
type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
4533
|
+
type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
|
|
4534
|
+
type ResourceCapabilityOperationId = ResourceCrudOperationId | 'export' | string;
|
|
4535
|
+
type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
|
|
4536
|
+
interface ResourceSurfaceCatalogItem {
|
|
4537
|
+
id: string;
|
|
4538
|
+
resourceKey: string;
|
|
4539
|
+
kind: ResourceSurfaceKind;
|
|
4540
|
+
scope: ResourceSurfaceScope;
|
|
4541
|
+
title: string;
|
|
4542
|
+
description?: string | null;
|
|
4543
|
+
intent?: string | null;
|
|
4544
|
+
operationId: string;
|
|
4545
|
+
path: string;
|
|
4546
|
+
method: string;
|
|
4547
|
+
schemaId: string;
|
|
4548
|
+
schemaUrl: string;
|
|
4549
|
+
availability: ResourceAvailabilityDecision;
|
|
4550
|
+
order: number;
|
|
4551
|
+
tags: string[];
|
|
4552
|
+
}
|
|
4553
|
+
interface ResourceSurfaceCatalogResponse {
|
|
4554
|
+
resourceKey: string;
|
|
4555
|
+
resourcePath: string;
|
|
4556
|
+
group?: string | null;
|
|
4557
|
+
resourceId?: string | number | null;
|
|
4558
|
+
surfaces: ResourceSurfaceCatalogItem[];
|
|
4559
|
+
}
|
|
4560
|
+
interface ResourceActionCatalogItem {
|
|
4561
|
+
id: string;
|
|
4562
|
+
resourceKey: string;
|
|
4563
|
+
scope: ResourceActionScope;
|
|
4564
|
+
title: string;
|
|
4565
|
+
description?: string | null;
|
|
4566
|
+
operationId: string;
|
|
4567
|
+
path: string;
|
|
4568
|
+
method: string;
|
|
4569
|
+
requestSchemaId?: string | null;
|
|
4570
|
+
requestSchemaUrl?: string | null;
|
|
4571
|
+
responseSchemaId?: string | null;
|
|
4572
|
+
responseSchemaUrl?: string | null;
|
|
4573
|
+
availability: ResourceAvailabilityDecision;
|
|
4574
|
+
order: number;
|
|
4575
|
+
successMessage?: string | null;
|
|
4576
|
+
tags: string[];
|
|
4577
|
+
}
|
|
4578
|
+
interface ResourceActionCatalogResponse {
|
|
4579
|
+
resourceKey: string;
|
|
4580
|
+
resourcePath: string;
|
|
4581
|
+
group?: string | null;
|
|
4582
|
+
resourceId?: string | number | null;
|
|
4583
|
+
actions: ResourceActionCatalogItem[];
|
|
4584
|
+
}
|
|
4585
|
+
interface ResourceCapabilityOperation {
|
|
4586
|
+
id: ResourceCapabilityOperationId;
|
|
4587
|
+
supported: boolean;
|
|
4588
|
+
scope: ResourceSurfaceScope;
|
|
4589
|
+
preferredMethod?: string | null;
|
|
4590
|
+
preferredRel?: string | null;
|
|
4591
|
+
availability?: ResourceAvailabilityDecision | null;
|
|
4592
|
+
formats?: PraxisExportFormat[];
|
|
4593
|
+
scopes?: PraxisExportScope[];
|
|
4594
|
+
maxRows?: ResourceExportMaxRows;
|
|
4595
|
+
async?: boolean | null;
|
|
4596
|
+
}
|
|
4597
|
+
type ResourceCapabilityOperations = Partial<Record<ResourceCrudOperationId | 'export', ResourceCapabilityOperation>> & Record<string, ResourceCapabilityOperation | undefined>;
|
|
4598
|
+
interface ResourceCapabilitySnapshot {
|
|
4599
|
+
resourceKey: string;
|
|
4600
|
+
resourcePath: string;
|
|
4601
|
+
group?: string | null;
|
|
4602
|
+
resourceId?: string | number | null;
|
|
4603
|
+
canonicalOperations: Record<string, boolean>;
|
|
4604
|
+
operations?: ResourceCapabilityOperations;
|
|
4605
|
+
surfaces: ResourceSurfaceCatalogItem[];
|
|
4606
|
+
actions: ResourceActionCatalogItem[];
|
|
4607
|
+
}
|
|
4608
|
+
interface ResourceCapabilityDigest {
|
|
4609
|
+
source: 'schema-x-ui-resource';
|
|
4610
|
+
resourcePath: string;
|
|
4611
|
+
canonicalOperations: Record<string, boolean>;
|
|
4612
|
+
filterExpressionSupported: boolean;
|
|
4613
|
+
}
|
|
4614
|
+
|
|
4458
4615
|
/**
|
|
4459
4616
|
* Interface para configuração de endpoints personalizados.
|
|
4460
4617
|
*
|
|
@@ -4570,6 +4727,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4570
4727
|
private _schemaCache?;
|
|
4571
4728
|
private schemaCacheReady?;
|
|
4572
4729
|
private _lastResourceMeta;
|
|
4730
|
+
private _lastResourceCapabilityDigest;
|
|
4573
4731
|
private _lastSchemaInfo;
|
|
4574
4732
|
/**
|
|
4575
4733
|
* Cria a instância do serviço genérico.
|
|
@@ -4638,10 +4796,13 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
4638
4796
|
* ```
|
|
4639
4797
|
*/
|
|
4640
4798
|
getSchema(options?: CrudOperationOptions): Observable<FieldDefinition[]>;
|
|
4799
|
+
private updateLastResourceMetadataFromSchema;
|
|
4800
|
+
private normalizeCanonicalCapabilities;
|
|
4641
4801
|
private shouldRememberFilteredSchemaEndpointUnavailable;
|
|
4642
4802
|
private fetchDirectSchema;
|
|
4643
4803
|
/** Retorna o campo identificador do recurso (ex.: 'id', 'codigo'), quando derivado do schema. */
|
|
4644
4804
|
getResourceIdField(): string | undefined;
|
|
4805
|
+
getResourceCapabilityDigest(): ResourceCapabilityDigest | null;
|
|
4645
4806
|
/** Retorna o último schemaId e hash conhecidos após getSchema()/getFilteredSchema(). */
|
|
4646
4807
|
getLastSchemaInfo(): {
|
|
4647
4808
|
schemaId?: string;
|
|
@@ -5316,8 +5477,9 @@ declare class SurfaceBindingRuntimeService {
|
|
|
5316
5477
|
resolveWidget(widget: WidgetDefinition, bindings: SurfaceBinding[] | undefined, actionPayload?: any, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): WidgetDefinition;
|
|
5317
5478
|
resolveSurfacePayload<T extends SurfaceOpenPayload>(surfacePayload: T, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): T;
|
|
5318
5479
|
extractByPath(obj: any, path?: string): any;
|
|
5319
|
-
resolveTemplate(node: any, context: any, key?: string): any;
|
|
5480
|
+
resolveTemplate(node: any, context: any, key?: string, path?: string[]): any;
|
|
5320
5481
|
private isDeferredTemplateExpressionKey;
|
|
5482
|
+
private tryParseStructuredTemplate;
|
|
5321
5483
|
setValueAtPath<T extends object>(obj: T, rawPath: string, value: any): T;
|
|
5322
5484
|
private buildContext;
|
|
5323
5485
|
private resolveBindingValue;
|
|
@@ -6407,6 +6569,8 @@ interface MaterialDateRangeMetadata extends FieldMetadata {
|
|
|
6407
6569
|
startAriaLabel?: string;
|
|
6408
6570
|
/** Accessibility label for end date input */
|
|
6409
6571
|
endAriaLabel?: string;
|
|
6572
|
+
/** Compact inline chip display mode. */
|
|
6573
|
+
inlineChipDisplay?: 'value' | 'label-value';
|
|
6410
6574
|
/** Start view (month, year, multi-year) */
|
|
6411
6575
|
startView?: 'month' | 'year' | 'multi-year';
|
|
6412
6576
|
/** Enable sidebar shortcuts overlay (phase 1). */
|
|
@@ -6501,6 +6665,8 @@ interface MaterialPriceRangeMetadata extends FieldMetadata {
|
|
|
6501
6665
|
endLabel?: string;
|
|
6502
6666
|
/** Hide labels for start/end sub-inputs (compact mode). */
|
|
6503
6667
|
hideSubLabels?: boolean;
|
|
6668
|
+
/** Inline chip display when the range has a value. Defaults to value only. */
|
|
6669
|
+
inlineChipDisplay?: 'value' | 'label-value';
|
|
6504
6670
|
/** Layout dos inputs (lado a lado ou em linhas). */
|
|
6505
6671
|
layout?: 'row' | 'column';
|
|
6506
6672
|
/** Espaçamento entre os inputs (px ou CSS). */
|
|
@@ -8141,6 +8307,7 @@ declare class PraxisHttpCollectionExportProvider implements PraxisCollectionExpo
|
|
|
8141
8307
|
private buildRequestBody;
|
|
8142
8308
|
private normalizeResponse;
|
|
8143
8309
|
private normalizeExportHeaders;
|
|
8310
|
+
private isExportResultEnvelope;
|
|
8144
8311
|
private readNumberHeader;
|
|
8145
8312
|
private readBooleanHeader;
|
|
8146
8313
|
private readWarningHeader;
|
|
@@ -8244,103 +8411,6 @@ declare class PraxisLayerScaleStyleService {
|
|
|
8244
8411
|
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisLayerScaleStyleService>;
|
|
8245
8412
|
}
|
|
8246
8413
|
|
|
8247
|
-
/**
|
|
8248
|
-
* Contratos compartilhados de discovery semantico consumidos pelo runtime Angular.
|
|
8249
|
-
*
|
|
8250
|
-
* `resourcePath` continua sendo o endereco operacional do recurso.
|
|
8251
|
-
* `resourceKey` representa a identidade semantica estavel devolvida pelo backend para
|
|
8252
|
-
* surfaces, actions e capabilities.
|
|
8253
|
-
*
|
|
8254
|
-
* O runtime usa `resourceKey` para preservar contexto semantico e gerar ids estaveis de
|
|
8255
|
-
* abertura, enquanto `resourcePath`, `path`, `method` e `schemaUrl` seguem responsaveis pelo
|
|
8256
|
-
* comportamento operacional.
|
|
8257
|
-
*/
|
|
8258
|
-
|
|
8259
|
-
interface ResourceAvailabilityDecision {
|
|
8260
|
-
allowed: boolean;
|
|
8261
|
-
reason?: string | null;
|
|
8262
|
-
metadata?: Record<string, any>;
|
|
8263
|
-
}
|
|
8264
|
-
type ResourceSurfaceKind = 'FORM' | 'PARTIAL_FORM' | 'VIEW' | 'READ_PROJECTION';
|
|
8265
|
-
type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
|
|
8266
|
-
type ResourceActionScope = 'COLLECTION' | 'ITEM';
|
|
8267
|
-
type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
8268
|
-
type ResourceCrudOperationId = 'create' | 'view' | 'edit' | 'delete';
|
|
8269
|
-
type ResourceCapabilityOperationId = ResourceCrudOperationId | 'export' | string;
|
|
8270
|
-
type ResourceExportMaxRows = Partial<Record<PraxisExportFormat, number>> & Record<string, number | undefined>;
|
|
8271
|
-
interface ResourceSurfaceCatalogItem {
|
|
8272
|
-
id: string;
|
|
8273
|
-
resourceKey: string;
|
|
8274
|
-
kind: ResourceSurfaceKind;
|
|
8275
|
-
scope: ResourceSurfaceScope;
|
|
8276
|
-
title: string;
|
|
8277
|
-
description?: string | null;
|
|
8278
|
-
intent?: string | null;
|
|
8279
|
-
operationId: string;
|
|
8280
|
-
path: string;
|
|
8281
|
-
method: string;
|
|
8282
|
-
schemaId: string;
|
|
8283
|
-
schemaUrl: string;
|
|
8284
|
-
availability: ResourceAvailabilityDecision;
|
|
8285
|
-
order: number;
|
|
8286
|
-
tags: string[];
|
|
8287
|
-
}
|
|
8288
|
-
interface ResourceSurfaceCatalogResponse {
|
|
8289
|
-
resourceKey: string;
|
|
8290
|
-
resourcePath: string;
|
|
8291
|
-
group?: string | null;
|
|
8292
|
-
resourceId?: string | number | null;
|
|
8293
|
-
surfaces: ResourceSurfaceCatalogItem[];
|
|
8294
|
-
}
|
|
8295
|
-
interface ResourceActionCatalogItem {
|
|
8296
|
-
id: string;
|
|
8297
|
-
resourceKey: string;
|
|
8298
|
-
scope: ResourceActionScope;
|
|
8299
|
-
title: string;
|
|
8300
|
-
description?: string | null;
|
|
8301
|
-
operationId: string;
|
|
8302
|
-
path: string;
|
|
8303
|
-
method: string;
|
|
8304
|
-
requestSchemaId?: string | null;
|
|
8305
|
-
requestSchemaUrl?: string | null;
|
|
8306
|
-
responseSchemaId?: string | null;
|
|
8307
|
-
responseSchemaUrl?: string | null;
|
|
8308
|
-
availability: ResourceAvailabilityDecision;
|
|
8309
|
-
order: number;
|
|
8310
|
-
successMessage?: string | null;
|
|
8311
|
-
tags: string[];
|
|
8312
|
-
}
|
|
8313
|
-
interface ResourceActionCatalogResponse {
|
|
8314
|
-
resourceKey: string;
|
|
8315
|
-
resourcePath: string;
|
|
8316
|
-
group?: string | null;
|
|
8317
|
-
resourceId?: string | number | null;
|
|
8318
|
-
actions: ResourceActionCatalogItem[];
|
|
8319
|
-
}
|
|
8320
|
-
interface ResourceCapabilityOperation {
|
|
8321
|
-
id: ResourceCapabilityOperationId;
|
|
8322
|
-
supported: boolean;
|
|
8323
|
-
scope: ResourceSurfaceScope;
|
|
8324
|
-
preferredMethod?: string | null;
|
|
8325
|
-
preferredRel?: string | null;
|
|
8326
|
-
availability?: ResourceAvailabilityDecision | null;
|
|
8327
|
-
formats?: PraxisExportFormat[];
|
|
8328
|
-
scopes?: PraxisExportScope[];
|
|
8329
|
-
maxRows?: ResourceExportMaxRows;
|
|
8330
|
-
async?: boolean | null;
|
|
8331
|
-
}
|
|
8332
|
-
type ResourceCapabilityOperations = Partial<Record<ResourceCrudOperationId | 'export', ResourceCapabilityOperation>> & Record<string, ResourceCapabilityOperation | undefined>;
|
|
8333
|
-
interface ResourceCapabilitySnapshot {
|
|
8334
|
-
resourceKey: string;
|
|
8335
|
-
resourcePath: string;
|
|
8336
|
-
group?: string | null;
|
|
8337
|
-
resourceId?: string | number | null;
|
|
8338
|
-
canonicalOperations: Record<string, boolean>;
|
|
8339
|
-
operations?: ResourceCapabilityOperations;
|
|
8340
|
-
surfaces: ResourceSurfaceCatalogItem[];
|
|
8341
|
-
actions: ResourceActionCatalogItem[];
|
|
8342
|
-
}
|
|
8343
|
-
|
|
8344
8414
|
interface ResourceDiscoveryRequestOptions {
|
|
8345
8415
|
endpointKey?: ApiEndpoint;
|
|
8346
8416
|
apiUrlEntry?: ApiUrlEntry | null;
|
|
@@ -11748,11 +11818,13 @@ interface BackConfig {
|
|
|
11748
11818
|
confirmOnDirty?: boolean;
|
|
11749
11819
|
}
|
|
11750
11820
|
|
|
11821
|
+
declare const PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION: "praxis.query-filter-expression.v1";
|
|
11751
11822
|
interface PraxisDataQueryContextMeta extends Record<string, unknown> {
|
|
11752
11823
|
domainCatalog?: DomainCatalogContextHint | null;
|
|
11753
11824
|
}
|
|
11754
11825
|
interface PraxisDataQueryContext {
|
|
11755
11826
|
filters?: Record<string, unknown> | null;
|
|
11827
|
+
filterExpression?: PraxisQueryFilterExpression | null;
|
|
11756
11828
|
sort?: string[] | null;
|
|
11757
11829
|
limit?: number | null;
|
|
11758
11830
|
page?: {
|
|
@@ -11761,6 +11833,44 @@ interface PraxisDataQueryContext {
|
|
|
11761
11833
|
} | null;
|
|
11762
11834
|
meta?: PraxisDataQueryContextMeta | null;
|
|
11763
11835
|
}
|
|
11836
|
+
interface PraxisQueryFilterExpression {
|
|
11837
|
+
schemaVersion: typeof PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION;
|
|
11838
|
+
root: PraxisQueryFilterNode;
|
|
11839
|
+
projection?: {
|
|
11840
|
+
filters?: Record<string, unknown> | null;
|
|
11841
|
+
lossless: boolean;
|
|
11842
|
+
reason?: string;
|
|
11843
|
+
} | null;
|
|
11844
|
+
governance?: PraxisQueryFilterGovernance | null;
|
|
11845
|
+
}
|
|
11846
|
+
interface PraxisQueryFilterGovernance extends Record<string, unknown> {
|
|
11847
|
+
source?: 'selected-records' | 'manual' | 'workflow' | 'ai-authored';
|
|
11848
|
+
decisionId?: string;
|
|
11849
|
+
explanation?: string;
|
|
11850
|
+
}
|
|
11851
|
+
type PraxisQueryFilterNode = PraxisQueryFilterGroup | PraxisQueryFilterPredicate;
|
|
11852
|
+
interface PraxisQueryFilterGroup {
|
|
11853
|
+
kind: 'group';
|
|
11854
|
+
operator: 'all' | 'any';
|
|
11855
|
+
clauses: PraxisQueryFilterNode[];
|
|
11856
|
+
}
|
|
11857
|
+
interface PraxisQueryFilterPredicate {
|
|
11858
|
+
kind: 'predicate';
|
|
11859
|
+
field: string;
|
|
11860
|
+
operator: PraxisQueryFilterPredicateOperator;
|
|
11861
|
+
value?: unknown;
|
|
11862
|
+
values?: unknown[];
|
|
11863
|
+
label?: string;
|
|
11864
|
+
source?: PraxisQueryFilterPredicateSource;
|
|
11865
|
+
}
|
|
11866
|
+
type PraxisQueryFilterPredicateOperator = 'equals' | 'notEquals' | 'in' | 'notIn' | 'contains' | 'startsWith' | 'between' | 'gte' | 'lte' | 'isNull' | 'isNotNull';
|
|
11867
|
+
interface PraxisQueryFilterPredicateSource extends Record<string, unknown> {
|
|
11868
|
+
kind: 'selected-records' | 'manual' | 'workflow' | 'current-context';
|
|
11869
|
+
field?: string;
|
|
11870
|
+
selectedIds?: Array<string | number>;
|
|
11871
|
+
}
|
|
11872
|
+
declare function normalizePraxisQueryFilterNode(node?: Record<string, unknown> | null): PraxisQueryFilterNode | null;
|
|
11873
|
+
declare function normalizePraxisQueryFilterExpression(expression?: Partial<PraxisQueryFilterExpression> | null): PraxisQueryFilterExpression | null;
|
|
11764
11874
|
declare function normalizePraxisDataQueryContext(context?: PraxisDataQueryContext | null): PraxisDataQueryContext | null;
|
|
11765
11875
|
declare function resolvePraxisFilterCriteria(filterCriteria?: Record<string, unknown> | null, queryContext?: PraxisDataQueryContext | null): Record<string, unknown>;
|
|
11766
11876
|
|
|
@@ -13999,5 +14109,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
13999
14109
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
14000
14110
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
14001
14111
|
|
|
14002
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, 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, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
|
14003
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, 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, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportField, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, 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, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
14112
|
+
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, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, 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, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
|
14113
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, 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, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, 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, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, 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 };
|