@praxisui/core 8.0.0-beta.0 → 8.0.0-beta.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -1
- package/fesm2022/praxisui-core.mjs +9525 -8282
- package/index.d.ts +653 -99
- package/package.json +1 -1
- package/theme-bridge.css +174 -0
package/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { InjectionToken, Type, Provider, ErrorHandler, EnvironmentProviders, OnC
|
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { HttpHeaders, HttpContext, HttpClient, HttpParams, HttpInterceptorFn, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpFeature, HttpFeatureKind, HttpContextToken } from '@angular/common/http';
|
|
6
|
-
import { ValidationErrors, ValidatorFn, AsyncValidatorFn,
|
|
6
|
+
import { ValidationErrors, ValidatorFn, AsyncValidatorFn, FormGroup, AbstractControl, FormControl } from '@angular/forms';
|
|
7
7
|
import { ThemePalette, DateAdapter } from '@angular/material/core';
|
|
8
8
|
import { ActivatedRoute } from '@angular/router';
|
|
9
9
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
@@ -76,6 +76,32 @@ interface LocateRequest {
|
|
|
76
76
|
sort?: string[];
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
interface LookupSelectionPolicyMetadata {
|
|
80
|
+
selectablePropertyPath?: string;
|
|
81
|
+
statusPropertyPath?: string;
|
|
82
|
+
allowedStatuses?: string[];
|
|
83
|
+
blockedStatuses?: string[];
|
|
84
|
+
allowRetainInvalidExistingValue?: boolean;
|
|
85
|
+
disabledReasonTemplate?: string;
|
|
86
|
+
validationMessageTemplate?: string;
|
|
87
|
+
}
|
|
88
|
+
interface LookupCapabilitiesMetadata {
|
|
89
|
+
filter?: boolean;
|
|
90
|
+
byIds?: boolean;
|
|
91
|
+
detail?: boolean;
|
|
92
|
+
create?: boolean;
|
|
93
|
+
edit?: boolean;
|
|
94
|
+
navigateToDetail?: boolean;
|
|
95
|
+
multiSelect?: boolean;
|
|
96
|
+
recent?: boolean;
|
|
97
|
+
favorites?: boolean;
|
|
98
|
+
auditSnapshot?: boolean;
|
|
99
|
+
}
|
|
100
|
+
interface LookupDetailMetadata {
|
|
101
|
+
hrefTemplate?: string;
|
|
102
|
+
routeTemplate?: string;
|
|
103
|
+
openDetailMode?: string;
|
|
104
|
+
}
|
|
79
105
|
interface OptionSourceMetadata {
|
|
80
106
|
key: string;
|
|
81
107
|
type?: string;
|
|
@@ -85,6 +111,17 @@ interface OptionSourceMetadata {
|
|
|
85
111
|
labelPropertyPath?: string;
|
|
86
112
|
valuePropertyPath?: string;
|
|
87
113
|
dependsOn?: string[];
|
|
114
|
+
entityKey?: string;
|
|
115
|
+
codePropertyPath?: string;
|
|
116
|
+
descriptionPropertyPaths?: string[];
|
|
117
|
+
statusPropertyPath?: string;
|
|
118
|
+
disabledPropertyPath?: string;
|
|
119
|
+
disabledReasonPropertyPath?: string;
|
|
120
|
+
searchPropertyPaths?: string[];
|
|
121
|
+
dependencyFilterMap?: Record<string, string>;
|
|
122
|
+
selectionPolicy?: LookupSelectionPolicyMetadata;
|
|
123
|
+
capabilities?: LookupCapabilitiesMetadata;
|
|
124
|
+
detail?: LookupDetailMetadata;
|
|
88
125
|
excludeSelfField?: boolean;
|
|
89
126
|
searchMode?: string;
|
|
90
127
|
pageSize?: number;
|
|
@@ -170,6 +207,14 @@ interface RichImageNode extends RichBlockBaseNode {
|
|
|
170
207
|
alt?: string;
|
|
171
208
|
altExpr?: string;
|
|
172
209
|
}
|
|
210
|
+
interface RichLinkNode extends RichBlockBaseNode {
|
|
211
|
+
type: 'link';
|
|
212
|
+
label?: string;
|
|
213
|
+
labelExpr?: string;
|
|
214
|
+
href: string;
|
|
215
|
+
target?: '_blank' | '_self';
|
|
216
|
+
rel?: string;
|
|
217
|
+
}
|
|
173
218
|
interface RichBadgeNode extends RichBlockBaseNode {
|
|
174
219
|
type: 'badge';
|
|
175
220
|
label?: string;
|
|
@@ -200,7 +245,7 @@ interface RichProgressNode extends RichBlockBaseNode {
|
|
|
200
245
|
labelExpr?: string;
|
|
201
246
|
showPercent?: boolean;
|
|
202
247
|
}
|
|
203
|
-
type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
|
|
248
|
+
type RichPresenterNode = RichTextNode | RichIconNode | RichImageNode | RichLinkNode | RichBadgeNode | RichAvatarNode | RichMetricNode | RichProgressNode;
|
|
204
249
|
interface RichComposeNode extends RichBlockBaseNode {
|
|
205
250
|
type: 'compose';
|
|
206
251
|
direction?: 'row' | 'column';
|
|
@@ -293,6 +338,86 @@ interface RichContentDocument {
|
|
|
293
338
|
}
|
|
294
339
|
declare function createEmptyRichContentDocument(): RichContentDocument;
|
|
295
340
|
|
|
341
|
+
type GlobalActionResult = {
|
|
342
|
+
success: boolean;
|
|
343
|
+
data?: any;
|
|
344
|
+
error?: string;
|
|
345
|
+
};
|
|
346
|
+
interface GlobalActionRef {
|
|
347
|
+
actionId: string;
|
|
348
|
+
payload?: any;
|
|
349
|
+
payloadExpr?: string;
|
|
350
|
+
meta?: {
|
|
351
|
+
label?: string;
|
|
352
|
+
icon?: string;
|
|
353
|
+
emitLocal?: boolean;
|
|
354
|
+
confirmation?: any;
|
|
355
|
+
[key: string]: any;
|
|
356
|
+
};
|
|
357
|
+
}
|
|
358
|
+
type GlobalActionContext = {
|
|
359
|
+
sourceId?: string;
|
|
360
|
+
widgetKey?: string;
|
|
361
|
+
output?: string;
|
|
362
|
+
payload?: any;
|
|
363
|
+
pageContext?: Record<string, any> | null;
|
|
364
|
+
meta?: Record<string, any>;
|
|
365
|
+
runtime?: {
|
|
366
|
+
row?: any;
|
|
367
|
+
item?: any;
|
|
368
|
+
selection?: any;
|
|
369
|
+
formData?: any;
|
|
370
|
+
value?: any;
|
|
371
|
+
state?: any;
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
|
|
375
|
+
interface GlobalActionHandlerEntry {
|
|
376
|
+
id: string;
|
|
377
|
+
handler: GlobalActionHandler;
|
|
378
|
+
}
|
|
379
|
+
interface GlobalDialogService {
|
|
380
|
+
alert: (payload: {
|
|
381
|
+
title?: string;
|
|
382
|
+
message?: string;
|
|
383
|
+
variant?: string;
|
|
384
|
+
}) => Promise<any> | any;
|
|
385
|
+
confirm: (payload: {
|
|
386
|
+
title?: string;
|
|
387
|
+
message?: string;
|
|
388
|
+
confirmLabel?: string;
|
|
389
|
+
cancelLabel?: string;
|
|
390
|
+
type?: 'danger' | 'warning' | 'info';
|
|
391
|
+
}) => Promise<boolean> | boolean;
|
|
392
|
+
prompt: (payload: {
|
|
393
|
+
title?: string;
|
|
394
|
+
message?: string;
|
|
395
|
+
placeholder?: string;
|
|
396
|
+
defaultValue?: string;
|
|
397
|
+
}) => Promise<any> | any;
|
|
398
|
+
open: (payload: {
|
|
399
|
+
componentId?: string;
|
|
400
|
+
inputs?: any;
|
|
401
|
+
size?: any;
|
|
402
|
+
data?: any;
|
|
403
|
+
}) => Promise<any> | any;
|
|
404
|
+
}
|
|
405
|
+
interface GlobalToastService {
|
|
406
|
+
success: (message: string, opts?: any) => void;
|
|
407
|
+
error: (message: string, opts?: any) => void;
|
|
408
|
+
}
|
|
409
|
+
interface GlobalAnalyticsService {
|
|
410
|
+
track: (eventName: string, payload?: any) => void;
|
|
411
|
+
}
|
|
412
|
+
interface GlobalApiClient {
|
|
413
|
+
get: (url: string, params?: Record<string, any>) => Promise<any> | any;
|
|
414
|
+
post: (url: string, body?: any) => Promise<any> | any;
|
|
415
|
+
patch: (url: string, body?: any) => Promise<any> | any;
|
|
416
|
+
}
|
|
417
|
+
interface GlobalRouteGuardResolver {
|
|
418
|
+
resolve: (guardId: string) => any;
|
|
419
|
+
}
|
|
420
|
+
|
|
296
421
|
/**
|
|
297
422
|
* Nova arquitetura modular do TableConfig v2.0
|
|
298
423
|
* Preparada para crescimento exponencial e alinhada com as 5 abas do editor
|
|
@@ -686,6 +811,8 @@ interface TableBehaviorConfig {
|
|
|
686
811
|
sorting?: SortingConfig;
|
|
687
812
|
/** Configurações de filtragem */
|
|
688
813
|
filtering?: FilteringConfig;
|
|
814
|
+
/** Configurações de agrupamento de linhas */
|
|
815
|
+
grouping?: GroupingConfig;
|
|
689
816
|
/** Configurações de seleção de linhas */
|
|
690
817
|
selection?: SelectionConfig;
|
|
691
818
|
/** Configurações de interação do usuário */
|
|
@@ -920,6 +1047,14 @@ interface SortingConfig {
|
|
|
920
1047
|
preserveSort?: boolean;
|
|
921
1048
|
};
|
|
922
1049
|
}
|
|
1050
|
+
interface GroupingConfig {
|
|
1051
|
+
/** Habilitar agrupamento */
|
|
1052
|
+
enabled: boolean;
|
|
1053
|
+
/** Campos usados para agrupamento */
|
|
1054
|
+
fields: string[];
|
|
1055
|
+
/** Se os grupos iniciam expandidos */
|
|
1056
|
+
expanded?: boolean;
|
|
1057
|
+
}
|
|
923
1058
|
interface FilteringConfig {
|
|
924
1059
|
/** Habilitar filtragem */
|
|
925
1060
|
enabled: boolean;
|
|
@@ -1336,6 +1471,8 @@ interface ToolbarAction {
|
|
|
1336
1471
|
disabled?: boolean;
|
|
1337
1472
|
/** Função a executar */
|
|
1338
1473
|
action: string;
|
|
1474
|
+
/** Acao global estruturada executada pelo host via GlobalActionService */
|
|
1475
|
+
globalAction?: GlobalActionRef;
|
|
1339
1476
|
/** Tooltip */
|
|
1340
1477
|
tooltip?: string;
|
|
1341
1478
|
/** Tecla de atalho */
|
|
@@ -1446,6 +1583,8 @@ interface RowAction {
|
|
|
1446
1583
|
disabled?: boolean;
|
|
1447
1584
|
/** Função a executar */
|
|
1448
1585
|
action: string;
|
|
1586
|
+
/** Acao global estruturada executada pelo host via GlobalActionService */
|
|
1587
|
+
globalAction?: GlobalActionRef;
|
|
1449
1588
|
/** Tooltip */
|
|
1450
1589
|
tooltip?: string;
|
|
1451
1590
|
/** Requer confirmação */
|
|
@@ -1484,6 +1623,8 @@ interface BulkAction {
|
|
|
1484
1623
|
color?: string;
|
|
1485
1624
|
/** Função a executar */
|
|
1486
1625
|
action: string;
|
|
1626
|
+
/** Acao global estruturada executada pelo host via GlobalActionService */
|
|
1627
|
+
globalAction?: GlobalActionRef;
|
|
1487
1628
|
/** Requer confirmação */
|
|
1488
1629
|
requiresConfirmation?: boolean;
|
|
1489
1630
|
/** Mínimo de itens selecionados */
|
|
@@ -2293,6 +2434,7 @@ declare const FieldDataType: {
|
|
|
2293
2434
|
readonly FILE: "file";
|
|
2294
2435
|
readonly URL: "url";
|
|
2295
2436
|
readonly BOOLEAN: "boolean";
|
|
2437
|
+
readonly ARRAY: "array";
|
|
2296
2438
|
readonly JSON: "json";
|
|
2297
2439
|
};
|
|
2298
2440
|
type FieldDataType = typeof FieldDataType[keyof typeof FieldDataType];
|
|
@@ -2343,6 +2485,7 @@ declare const FieldControlType: {
|
|
|
2343
2485
|
readonly DRAWER: "drawer";
|
|
2344
2486
|
readonly DROP_DOWN_TREE: "dropDownTree";
|
|
2345
2487
|
readonly EMAIL_INPUT: "email";
|
|
2488
|
+
readonly ENTITY_LOOKUP: "entityLookup";
|
|
2346
2489
|
readonly EXPANSION_PANEL: "expansionPanel";
|
|
2347
2490
|
readonly FILE_SAVER: "fileSaver";
|
|
2348
2491
|
readonly FILE_SELECT: "fileSelect";
|
|
@@ -2585,6 +2728,52 @@ interface ConditionalValidationRule {
|
|
|
2585
2728
|
/** Validators applied when the guard resolves to true. */
|
|
2586
2729
|
validators: Omit<ValidatorOptions, 'conditionalValidation'>;
|
|
2587
2730
|
}
|
|
2731
|
+
interface FieldArrayOperations {
|
|
2732
|
+
add?: boolean;
|
|
2733
|
+
edit?: boolean;
|
|
2734
|
+
remove?: boolean;
|
|
2735
|
+
[key: string]: any;
|
|
2736
|
+
}
|
|
2737
|
+
interface FieldArrayCollectionValidation {
|
|
2738
|
+
uniqueBy?: string[];
|
|
2739
|
+
exactlyOne?: {
|
|
2740
|
+
field: string;
|
|
2741
|
+
value?: any;
|
|
2742
|
+
message?: string;
|
|
2743
|
+
};
|
|
2744
|
+
atLeastOne?: {
|
|
2745
|
+
field: string;
|
|
2746
|
+
value?: any;
|
|
2747
|
+
message?: string;
|
|
2748
|
+
};
|
|
2749
|
+
sumEquals?: {
|
|
2750
|
+
field: string;
|
|
2751
|
+
targetField?: string;
|
|
2752
|
+
value?: number;
|
|
2753
|
+
message?: string;
|
|
2754
|
+
};
|
|
2755
|
+
[key: string]: any;
|
|
2756
|
+
}
|
|
2757
|
+
interface FieldArrayConfig {
|
|
2758
|
+
itemType?: 'object';
|
|
2759
|
+
mode?: 'cards';
|
|
2760
|
+
itemSchemaRef?: string;
|
|
2761
|
+
itemIdentityField?: string;
|
|
2762
|
+
minItems?: number;
|
|
2763
|
+
maxItems?: number;
|
|
2764
|
+
addLabel?: string;
|
|
2765
|
+
emptyState?: string;
|
|
2766
|
+
itemTitleTemplate?: string;
|
|
2767
|
+
operations?: FieldArrayOperations;
|
|
2768
|
+
deleteMode?: 'removeFromPayload';
|
|
2769
|
+
itemSchema?: {
|
|
2770
|
+
fields?: FieldMetadata[];
|
|
2771
|
+
properties?: Record<string, any>;
|
|
2772
|
+
[key: string]: any;
|
|
2773
|
+
};
|
|
2774
|
+
collectionValidation?: FieldArrayCollectionValidation;
|
|
2775
|
+
[key: string]: any;
|
|
2776
|
+
}
|
|
2588
2777
|
/**
|
|
2589
2778
|
* Configuration for field options in selection components.
|
|
2590
2779
|
*
|
|
@@ -2673,6 +2862,8 @@ interface MaterialDesignConfig {
|
|
|
2673
2862
|
* };
|
|
2674
2863
|
* ```
|
|
2675
2864
|
*/
|
|
2865
|
+
type FieldSource = 'schema' | 'local';
|
|
2866
|
+
type FieldSubmitPolicy = 'include' | 'omit' | 'includeWhenDirty';
|
|
2676
2867
|
interface FieldMetadata extends ComponentMetadata {
|
|
2677
2868
|
/** Unique field identifier (required) */
|
|
2678
2869
|
name: string;
|
|
@@ -2695,12 +2886,39 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
2695
2886
|
controlType: FieldControlType;
|
|
2696
2887
|
/** Data type for processing and validation */
|
|
2697
2888
|
dataType?: FieldDataType;
|
|
2889
|
+
/** Canonical metadata for editable collection fields (`controlType: "array"`). */
|
|
2890
|
+
array?: FieldArrayConfig;
|
|
2891
|
+
/** Optional top-level alias for collection validators mirrored into `array.collectionValidation`. */
|
|
2892
|
+
collectionValidation?: FieldArrayCollectionValidation;
|
|
2698
2893
|
/** Display order in form */
|
|
2699
2894
|
order?: number;
|
|
2700
2895
|
/** Logical grouping of related fields */
|
|
2701
2896
|
group?: string;
|
|
2702
2897
|
/** Detailed description for tooltips */
|
|
2703
2898
|
description?: string;
|
|
2899
|
+
/**
|
|
2900
|
+
* Field origin for metadata-driven forms.
|
|
2901
|
+
*
|
|
2902
|
+
* Defaults to `schema` when omitted. Use `local` for host-authored fields that
|
|
2903
|
+
* support the form UX but do not belong to the backend DTO/schema.
|
|
2904
|
+
*/
|
|
2905
|
+
source?: FieldSource;
|
|
2906
|
+
/**
|
|
2907
|
+
* Marks a field as form-local/transient.
|
|
2908
|
+
*
|
|
2909
|
+
* Transient fields participate in validation, rules, visibility, and value
|
|
2910
|
+
* changes, but are omitted from submit payloads unless `submitPolicy` is
|
|
2911
|
+
* explicitly set to `include`.
|
|
2912
|
+
*/
|
|
2913
|
+
transient?: boolean;
|
|
2914
|
+
/**
|
|
2915
|
+
* Submit behavior for the field.
|
|
2916
|
+
*
|
|
2917
|
+
* Defaults to `omit` for local/transient fields and `include` for schema
|
|
2918
|
+
* fields. When provided, this value has priority over `source` and
|
|
2919
|
+
* `transient`.
|
|
2920
|
+
*/
|
|
2921
|
+
submitPolicy?: FieldSubmitPolicy;
|
|
2704
2922
|
/** Field is required */
|
|
2705
2923
|
required?: boolean;
|
|
2706
2924
|
/** Field is disabled */
|
|
@@ -2942,6 +3160,8 @@ interface FieldDefinition {
|
|
|
2942
3160
|
layout?: 'horizontal' | 'vertical';
|
|
2943
3161
|
disabled?: boolean;
|
|
2944
3162
|
readOnly?: boolean;
|
|
3163
|
+
array?: FieldArrayConfig;
|
|
3164
|
+
collectionValidation?: FieldArrayCollectionValidation;
|
|
2945
3165
|
multiple?: boolean;
|
|
2946
3166
|
editable?: boolean;
|
|
2947
3167
|
validationMode?: string;
|
|
@@ -3119,10 +3339,22 @@ declare function buildHeaders(entry: ApiUrlEntry): HttpHeaders | undefined;
|
|
|
3119
3339
|
* // fields: [{ name: 'email', label: 'E-mail', type: 'string', controlType: 'input', required: true, email: true }]
|
|
3120
3340
|
*/
|
|
3121
3341
|
declare class SchemaNormalizerService {
|
|
3342
|
+
private clonePlain;
|
|
3343
|
+
private resolveSchemaRef;
|
|
3344
|
+
private normalizeObjectSchema;
|
|
3345
|
+
private normalizeArrayConfig;
|
|
3346
|
+
private finalizeArrayConfig;
|
|
3347
|
+
private normalizeInlineItemSchemaFields;
|
|
3348
|
+
private normalizeInlineItemSchemaField;
|
|
3122
3349
|
/** Convert value to boolean. Accepts boolean, string or number. */
|
|
3123
3350
|
private parseBoolean;
|
|
3124
3351
|
/** Ensure an array of strings from various inputs. */
|
|
3125
3352
|
private parseStringArray;
|
|
3353
|
+
private parseNonBlankStringArray;
|
|
3354
|
+
private parseStringRecord;
|
|
3355
|
+
private parseSelectionPolicy;
|
|
3356
|
+
private parseLookupCapabilities;
|
|
3357
|
+
private parseLookupDetail;
|
|
3126
3358
|
/** Parse option arrays into `{ key, value }` objects. */
|
|
3127
3359
|
private parseOptions;
|
|
3128
3360
|
private parseOptionSource;
|
|
@@ -3160,6 +3392,7 @@ declare class SchemaNormalizerService {
|
|
|
3160
3392
|
* @returns FieldDefinition[] prontos para mapeamento/uso no restante do sistema.
|
|
3161
3393
|
*/
|
|
3162
3394
|
normalizeSchema(schema: any): FieldDefinition[];
|
|
3395
|
+
private normalizeSchemaWithRoot;
|
|
3163
3396
|
private resolveFieldType;
|
|
3164
3397
|
static ɵfac: i0.ɵɵFactoryDeclaration<SchemaNormalizerService, never>;
|
|
3165
3398
|
static ɵprov: i0.ɵɵInjectableDeclaration<SchemaNormalizerService>;
|
|
@@ -4181,6 +4414,8 @@ declare const CONFIG_STORAGE: InjectionToken<ConfigStorage>;
|
|
|
4181
4414
|
*/
|
|
4182
4415
|
interface ApiConfigStorageOptions {
|
|
4183
4416
|
baseUrl?: string;
|
|
4417
|
+
/** Optional ui_user_config scope query param, e.g. "user" for user-owned configs. */
|
|
4418
|
+
scope?: string;
|
|
4184
4419
|
/** Factory to supply headers (tenant/user/env/updatedBy) per request. */
|
|
4185
4420
|
headersFactory?: () => Record<string, string | undefined>;
|
|
4186
4421
|
/** Default headers applied when the headersFactory omits them. */
|
|
@@ -4199,6 +4434,7 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
|
|
|
4199
4434
|
private readonly http;
|
|
4200
4435
|
private readonly opts;
|
|
4201
4436
|
private readonly baseUrl;
|
|
4437
|
+
private readonly scope;
|
|
4202
4438
|
private readonly headersFactory;
|
|
4203
4439
|
private readonly defaultHeaders;
|
|
4204
4440
|
private readonly componentTypeResolver;
|
|
@@ -4226,74 +4462,6 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
|
|
|
4226
4462
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiConfigStorage>;
|
|
4227
4463
|
}
|
|
4228
4464
|
|
|
4229
|
-
type GlobalActionResult = {
|
|
4230
|
-
success: boolean;
|
|
4231
|
-
data?: any;
|
|
4232
|
-
error?: string;
|
|
4233
|
-
};
|
|
4234
|
-
type GlobalActionContext = {
|
|
4235
|
-
sourceId?: string;
|
|
4236
|
-
widgetKey?: string;
|
|
4237
|
-
output?: string;
|
|
4238
|
-
payload?: any;
|
|
4239
|
-
pageContext?: Record<string, any> | null;
|
|
4240
|
-
meta?: Record<string, any>;
|
|
4241
|
-
runtime?: {
|
|
4242
|
-
row?: any;
|
|
4243
|
-
item?: any;
|
|
4244
|
-
selection?: any;
|
|
4245
|
-
formData?: any;
|
|
4246
|
-
value?: any;
|
|
4247
|
-
state?: any;
|
|
4248
|
-
};
|
|
4249
|
-
};
|
|
4250
|
-
type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
|
|
4251
|
-
interface GlobalActionHandlerEntry {
|
|
4252
|
-
id: string;
|
|
4253
|
-
handler: GlobalActionHandler;
|
|
4254
|
-
}
|
|
4255
|
-
interface GlobalDialogService {
|
|
4256
|
-
alert: (payload: {
|
|
4257
|
-
title?: string;
|
|
4258
|
-
message?: string;
|
|
4259
|
-
variant?: string;
|
|
4260
|
-
}) => Promise<any> | any;
|
|
4261
|
-
confirm: (payload: {
|
|
4262
|
-
title?: string;
|
|
4263
|
-
message?: string;
|
|
4264
|
-
confirmLabel?: string;
|
|
4265
|
-
cancelLabel?: string;
|
|
4266
|
-
type?: 'danger' | 'warning' | 'info';
|
|
4267
|
-
}) => Promise<boolean> | boolean;
|
|
4268
|
-
prompt: (payload: {
|
|
4269
|
-
title?: string;
|
|
4270
|
-
message?: string;
|
|
4271
|
-
placeholder?: string;
|
|
4272
|
-
defaultValue?: string;
|
|
4273
|
-
}) => Promise<any> | any;
|
|
4274
|
-
open: (payload: {
|
|
4275
|
-
componentId?: string;
|
|
4276
|
-
inputs?: any;
|
|
4277
|
-
size?: any;
|
|
4278
|
-
data?: any;
|
|
4279
|
-
}) => Promise<any> | any;
|
|
4280
|
-
}
|
|
4281
|
-
interface GlobalToastService {
|
|
4282
|
-
success: (message: string, opts?: any) => void;
|
|
4283
|
-
error: (message: string, opts?: any) => void;
|
|
4284
|
-
}
|
|
4285
|
-
interface GlobalAnalyticsService {
|
|
4286
|
-
track: (eventName: string, payload?: any) => void;
|
|
4287
|
-
}
|
|
4288
|
-
interface GlobalApiClient {
|
|
4289
|
-
get: (url: string, params?: Record<string, any>) => Promise<any> | any;
|
|
4290
|
-
post: (url: string, body?: any) => Promise<any> | any;
|
|
4291
|
-
patch: (url: string, body?: any) => Promise<any> | any;
|
|
4292
|
-
}
|
|
4293
|
-
interface GlobalRouteGuardResolver {
|
|
4294
|
-
resolve: (guardId: string) => any;
|
|
4295
|
-
}
|
|
4296
|
-
|
|
4297
4465
|
declare class GlobalActionService {
|
|
4298
4466
|
private readonly handlers;
|
|
4299
4467
|
private readonly router;
|
|
@@ -4311,6 +4479,9 @@ declare class GlobalActionService {
|
|
|
4311
4479
|
register(id: string, handler: GlobalActionHandler): void;
|
|
4312
4480
|
has(id: string): boolean;
|
|
4313
4481
|
execute(id: string, payload?: any, context?: GlobalActionContext): Promise<GlobalActionResult>;
|
|
4482
|
+
executeRef(ref: GlobalActionRef | null | undefined, context?: GlobalActionContext): Promise<GlobalActionResult>;
|
|
4483
|
+
private resolvePayloadExpr;
|
|
4484
|
+
private lookupPath;
|
|
4314
4485
|
private registerBuiltins;
|
|
4315
4486
|
private handleApi;
|
|
4316
4487
|
private handleRouteRegister;
|
|
@@ -4370,7 +4541,8 @@ interface SurfaceOpenPayload {
|
|
|
4370
4541
|
declare class SurfaceBindingRuntimeService {
|
|
4371
4542
|
resolveWidget(widget: WidgetDefinition, bindings: SurfaceBinding[] | undefined, actionPayload?: any, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): WidgetDefinition;
|
|
4372
4543
|
extractByPath(obj: any, path?: string): any;
|
|
4373
|
-
resolveTemplate(node: any, context: any): any;
|
|
4544
|
+
resolveTemplate(node: any, context: any, key?: string): any;
|
|
4545
|
+
private isDeferredTemplateExpressionKey;
|
|
4374
4546
|
setValueAtPath<T extends object>(obj: T, rawPath: string, value: any): T;
|
|
4375
4547
|
private buildContext;
|
|
4376
4548
|
private resolveBindingValue;
|
|
@@ -5160,6 +5332,39 @@ interface MaterialSelectMetadata extends FieldMetadata {
|
|
|
5160
5332
|
/** Inline/runtime compatibility for selected option icon color. */
|
|
5161
5333
|
optionSelectedIconColor?: string;
|
|
5162
5334
|
}
|
|
5335
|
+
interface MaterialEntityLookupMetadata extends Omit<MaterialSelectMetadata, 'controlType'> {
|
|
5336
|
+
controlType: typeof FieldControlType.ENTITY_LOOKUP | typeof FieldControlType.INLINE_ENTITY_LOOKUP;
|
|
5337
|
+
lookupIdKey?: string;
|
|
5338
|
+
lookupLabelKey?: string;
|
|
5339
|
+
lookupSubtitleKey?: string;
|
|
5340
|
+
lookupSeparator?: string;
|
|
5341
|
+
searchPlaceholder?: string;
|
|
5342
|
+
resetLabel?: string;
|
|
5343
|
+
ariaLabel?: string;
|
|
5344
|
+
dependencyLoadOnChange?: 'respectLoadOn' | 'immediate' | 'manual';
|
|
5345
|
+
selectedLayout?: 'card' | 'inline' | 'compact' | 'token';
|
|
5346
|
+
resultLayout?: 'list' | 'denseList' | 'table' | 'card';
|
|
5347
|
+
showCode?: boolean;
|
|
5348
|
+
showDescription?: boolean;
|
|
5349
|
+
showStatus?: boolean;
|
|
5350
|
+
showAvatar?: boolean;
|
|
5351
|
+
showBadges?: boolean;
|
|
5352
|
+
showDisabledReason?: boolean;
|
|
5353
|
+
showResultCount?: boolean;
|
|
5354
|
+
statusToneMap?: Record<string, 'success' | 'warning' | 'danger' | 'neutral'>;
|
|
5355
|
+
badgeKeys?: string[];
|
|
5356
|
+
maxVisibleBadges?: number;
|
|
5357
|
+
detailActionLabel?: string;
|
|
5358
|
+
changeActionLabel?: string;
|
|
5359
|
+
copyCodeActionLabel?: string;
|
|
5360
|
+
clearActionLabel?: string;
|
|
5361
|
+
actions?: {
|
|
5362
|
+
showDetail?: boolean;
|
|
5363
|
+
showChange?: boolean;
|
|
5364
|
+
showCopyCode?: boolean;
|
|
5365
|
+
showClear?: boolean;
|
|
5366
|
+
};
|
|
5367
|
+
}
|
|
5163
5368
|
/**
|
|
5164
5369
|
* Metadata for Material Autocomplete components.
|
|
5165
5370
|
*
|
|
@@ -5807,6 +6012,8 @@ interface MaterialButtonMetadata extends FieldMetadata {
|
|
|
5807
6012
|
buttonIconPosition?: 'before' | 'after';
|
|
5808
6013
|
/** Button action/command */
|
|
5809
6014
|
action?: string;
|
|
6015
|
+
/** Structured global action executed through GlobalActionService. */
|
|
6016
|
+
globalAction?: GlobalActionRef;
|
|
5810
6017
|
/** Disable button ripple effect */
|
|
5811
6018
|
disableRipple?: boolean;
|
|
5812
6019
|
/** Confirmation message for destructive actions */
|
|
@@ -6553,6 +6760,18 @@ declare class DynamicFormService {
|
|
|
6553
6760
|
* Indica se o campo deve ser tratado como seleção múltipla (valor padrão []).
|
|
6554
6761
|
*/
|
|
6555
6762
|
private isMultipleField;
|
|
6763
|
+
private isArrayMetadata;
|
|
6764
|
+
private getArrayConfig;
|
|
6765
|
+
private getArrayItemFields;
|
|
6766
|
+
createArrayItemGroupFromMetadata(meta: FieldMetadata, value?: Record<string, any>): FormGroup;
|
|
6767
|
+
private ensureArrayItemIdentityControl;
|
|
6768
|
+
private createArrayControlFromMetadata;
|
|
6769
|
+
private buildArrayValidators;
|
|
6770
|
+
private buildArrayCountValidator;
|
|
6771
|
+
private uniqueKeyForItem;
|
|
6772
|
+
private normalizeUniqueValue;
|
|
6773
|
+
private arrayValues;
|
|
6774
|
+
private readPath;
|
|
6556
6775
|
/**
|
|
6557
6776
|
* Envelopa um ValidatorFn Angular para padronizar a saída de erro com mensagem.
|
|
6558
6777
|
* Útil quando deseja-se forçar uma mensagem customizada em um validador nativo.
|
|
@@ -6575,7 +6794,7 @@ declare class DynamicFormService {
|
|
|
6575
6794
|
* - Aplica validadores específicos de UI quando aplicável.
|
|
6576
6795
|
* - Valor inicial: [] para campos múltiplos quando ausente; caso contrário defaultValue.
|
|
6577
6796
|
*/
|
|
6578
|
-
createControlFromField(field: FieldDefinition):
|
|
6797
|
+
createControlFromField(field: FieldDefinition): AbstractControl;
|
|
6579
6798
|
/**
|
|
6580
6799
|
* Cria um FormControl a partir de FieldMetadata.
|
|
6581
6800
|
* - Aplica ValidatorOptions (normalizados) e validadores de UI por tipo.
|
|
@@ -6587,6 +6806,11 @@ declare class DynamicFormService {
|
|
|
6587
6806
|
defaultValue?: any;
|
|
6588
6807
|
disabled?: boolean;
|
|
6589
6808
|
}): FormControl;
|
|
6809
|
+
createAbstractControlFromMetadata(meta: FieldMetadata & {
|
|
6810
|
+
validators?: ValidatorOptions;
|
|
6811
|
+
defaultValue?: any;
|
|
6812
|
+
disabled?: boolean;
|
|
6813
|
+
}): AbstractControl;
|
|
6590
6814
|
/**
|
|
6591
6815
|
* Reconfigura um controle existente a partir de FieldDefinition.
|
|
6592
6816
|
* Atualiza: validators, asyncValidators, estado enabled/disabled e defaultValue (com suporte a múltiplos).
|
|
@@ -7330,6 +7554,7 @@ declare class CrudOperationResolutionService {
|
|
|
7330
7554
|
private defaultScope;
|
|
7331
7555
|
private defaultMethod;
|
|
7332
7556
|
private normalizeResourcePath;
|
|
7557
|
+
private resolveSchemaResourcePath;
|
|
7333
7558
|
private resolveCanonicalResourcePath;
|
|
7334
7559
|
private toDiscoveryOptions;
|
|
7335
7560
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrudOperationResolutionService, never>;
|
|
@@ -7339,8 +7564,8 @@ declare class CrudOperationResolutionService {
|
|
|
7339
7564
|
type AnalyticsIntent = 'ranking' | 'trend' | 'distribution' | 'composition' | 'comparison' | 'correlation';
|
|
7340
7565
|
type AnalyticsSourceKind = 'praxis.stats';
|
|
7341
7566
|
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution';
|
|
7342
|
-
type AnalyticsStatsGranularity = '
|
|
7343
|
-
type AnalyticsStatsMetricOperation = 'COUNT' | 'SUM' | 'AVG' | 'MIN' | 'MAX';
|
|
7567
|
+
type AnalyticsStatsGranularity = 'day' | 'week' | 'month';
|
|
7568
|
+
type AnalyticsStatsMetricOperation = 'COUNT' | 'DISTINCT_COUNT' | 'SUM' | 'AVG' | 'MIN' | 'MAX';
|
|
7344
7569
|
type AnalyticsStatsOrderBy = 'KEY_ASC' | 'KEY_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
|
|
7345
7570
|
type AnalyticsPresentationFamily = 'chart' | 'analytic-table' | 'kpi' | 'summary-list';
|
|
7346
7571
|
interface PraxisXUiAnalytics {
|
|
@@ -7916,7 +8141,7 @@ declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfig
|
|
|
7916
8141
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
7917
8142
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
7918
8143
|
|
|
7919
|
-
declare function providePraxisI18nConfig(config: Partial<PraxisI18nConfig>): Provider;
|
|
8144
|
+
declare function providePraxisI18nConfig(config: Partial<PraxisI18nConfig>): Provider[];
|
|
7920
8145
|
declare const providePraxisI18n: typeof providePraxisI18nConfig;
|
|
7921
8146
|
declare function providePraxisI18nTranslator(translator: PraxisI18nTranslator): Provider;
|
|
7922
8147
|
|
|
@@ -7952,8 +8177,15 @@ type GlobalActionCatalogEntry = {
|
|
|
7952
8177
|
required?: string[];
|
|
7953
8178
|
example?: any;
|
|
7954
8179
|
};
|
|
8180
|
+
param?: {
|
|
8181
|
+
required?: boolean;
|
|
8182
|
+
label?: string;
|
|
8183
|
+
placeholder?: string;
|
|
8184
|
+
hint?: string;
|
|
8185
|
+
example?: string;
|
|
8186
|
+
};
|
|
7955
8187
|
};
|
|
7956
|
-
declare const GLOBAL_ACTION_CATALOG
|
|
8188
|
+
declare const GLOBAL_ACTION_CATALOG: InjectionToken<readonly GlobalActionCatalogEntry[][]>;
|
|
7957
8189
|
declare function provideGlobalActionCatalog(entries: GlobalActionCatalogEntry[]): Provider;
|
|
7958
8190
|
declare function getGlobalActionCatalog(catalog: ReadonlyArray<GlobalActionCatalogEntry[]> | null | undefined): GlobalActionCatalogEntry[];
|
|
7959
8191
|
declare const PRAXIS_GLOBAL_ACTION_CATALOG: GlobalActionCatalogEntry[];
|
|
@@ -7964,22 +8196,6 @@ interface GlobalSurfaceService {
|
|
|
7964
8196
|
}
|
|
7965
8197
|
declare const GLOBAL_SURFACE_SERVICE: InjectionToken<GlobalSurfaceService>;
|
|
7966
8198
|
|
|
7967
|
-
type GlobalActionId = 'navigate' | 'openUrl' | 'surface.open' | 'showAlert' | 'log' | 'openDialog' | 'confirm' | 'alert' | 'prompt' | 'submitForm' | 'resetForm' | 'validateForm' | 'clearValidation' | 'saveFormDraft' | 'loadFormDraft' | 'clearFormDraft' | 'apiCall' | 'download' | 'copyToClipboard' | 'refreshOptions' | 'loadDependentData';
|
|
7968
|
-
type GlobalActionParam = {
|
|
7969
|
-
required?: boolean;
|
|
7970
|
-
label?: string;
|
|
7971
|
-
placeholder?: string;
|
|
7972
|
-
hint?: string;
|
|
7973
|
-
example?: string;
|
|
7974
|
-
};
|
|
7975
|
-
interface GlobalActionSpec {
|
|
7976
|
-
id: GlobalActionId;
|
|
7977
|
-
label: string;
|
|
7978
|
-
description: string;
|
|
7979
|
-
param?: GlobalActionParam;
|
|
7980
|
-
}
|
|
7981
|
-
declare const GLOBAL_ACTION_CATALOG: GlobalActionSpec[];
|
|
7982
|
-
|
|
7983
8199
|
declare const SURFACE_OPEN_I18N_NAMESPACE = "surfaceOpen";
|
|
7984
8200
|
declare const SURFACE_OPEN_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
7985
8201
|
|
|
@@ -8173,8 +8389,16 @@ interface ComponentPortEndpointRef {
|
|
|
8173
8389
|
direction: 'input' | 'output';
|
|
8174
8390
|
componentType?: string;
|
|
8175
8391
|
bindingPath?: string;
|
|
8392
|
+
nestedPath?: ComponentPortPathSegment[];
|
|
8176
8393
|
};
|
|
8177
8394
|
}
|
|
8395
|
+
interface ComponentPortPathSegment {
|
|
8396
|
+
kind: 'widget' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
|
|
8397
|
+
id?: string;
|
|
8398
|
+
key?: string;
|
|
8399
|
+
index?: number;
|
|
8400
|
+
componentType?: string;
|
|
8401
|
+
}
|
|
8178
8402
|
interface StateEndpointRef {
|
|
8179
8403
|
kind: 'state';
|
|
8180
8404
|
ref: {
|
|
@@ -8417,6 +8641,7 @@ interface FormActionButton {
|
|
|
8417
8641
|
disabled?: boolean;
|
|
8418
8642
|
type?: 'button' | 'submit' | 'reset';
|
|
8419
8643
|
action?: string;
|
|
8644
|
+
globalAction?: GlobalActionRef;
|
|
8420
8645
|
tooltip?: string;
|
|
8421
8646
|
loading?: boolean;
|
|
8422
8647
|
size?: 'small' | 'medium' | 'large';
|
|
@@ -8808,8 +9033,10 @@ interface FormSectionHeaderAction {
|
|
|
8808
9033
|
label: string;
|
|
8809
9034
|
/** Icon rendered in the section header action slot. */
|
|
8810
9035
|
icon: string;
|
|
8811
|
-
/** Optional action name emitted by the runtime; defaults to `id` when omitted. */
|
|
9036
|
+
/** Optional local action name emitted by the runtime; defaults to `id` when omitted. */
|
|
8812
9037
|
action?: string;
|
|
9038
|
+
/** Optional structured global action executed by hosts through GlobalActionService. */
|
|
9039
|
+
globalAction?: GlobalActionRef;
|
|
8813
9040
|
/** Optional tooltip override. Falls back to `label` when omitted. */
|
|
8814
9041
|
tooltip?: string;
|
|
8815
9042
|
/** Optional theme color mapped to Angular Material button tones. */
|
|
@@ -9060,7 +9287,15 @@ interface ValidationError {
|
|
|
9060
9287
|
}
|
|
9061
9288
|
interface FormSubmitEvent {
|
|
9062
9289
|
stage: 'before' | 'after' | 'error';
|
|
9290
|
+
/** Payload that will be submitted to the backend. */
|
|
9063
9291
|
formData: any;
|
|
9292
|
+
/**
|
|
9293
|
+
* Full form value before submit filtering.
|
|
9294
|
+
*
|
|
9295
|
+
* Includes local/transient fields for hosts that need UI context while
|
|
9296
|
+
* keeping `formData` aligned with the persistence payload.
|
|
9297
|
+
*/
|
|
9298
|
+
rawFormData?: any;
|
|
9064
9299
|
isValid: boolean;
|
|
9065
9300
|
validationErrors?: ValidationError[];
|
|
9066
9301
|
entityId?: string | number;
|
|
@@ -9106,6 +9341,7 @@ interface FormInitializationError {
|
|
|
9106
9341
|
}
|
|
9107
9342
|
interface FormCustomActionEvent {
|
|
9108
9343
|
actionId: string;
|
|
9344
|
+
globalAction?: GlobalActionRef;
|
|
9109
9345
|
formData: any;
|
|
9110
9346
|
isValid: boolean;
|
|
9111
9347
|
source: 'button' | 'shortcut' | 'section-header';
|
|
@@ -10418,7 +10654,7 @@ interface GlobalActionField {
|
|
|
10418
10654
|
dependsOnValue?: string;
|
|
10419
10655
|
}
|
|
10420
10656
|
interface GlobalActionUiSchema {
|
|
10421
|
-
id:
|
|
10657
|
+
id: string;
|
|
10422
10658
|
label: string;
|
|
10423
10659
|
fields: GlobalActionField[];
|
|
10424
10660
|
editorMode?: 'default' | 'surface-open';
|
|
@@ -10426,6 +10662,33 @@ interface GlobalActionUiSchema {
|
|
|
10426
10662
|
declare const GLOBAL_ACTION_UI_SCHEMAS: GlobalActionUiSchema[];
|
|
10427
10663
|
declare function getGlobalActionUiSchema(id: string | undefined): GlobalActionUiSchema | undefined;
|
|
10428
10664
|
|
|
10665
|
+
type GlobalActionValidationCode = 'globalAction.actionId.required' | 'globalAction.payload.required' | 'globalAction.payload.type';
|
|
10666
|
+
interface GlobalActionValidationIssue {
|
|
10667
|
+
code: GlobalActionValidationCode;
|
|
10668
|
+
path?: string;
|
|
10669
|
+
actionId?: string;
|
|
10670
|
+
requiredKeys?: string[];
|
|
10671
|
+
missingKeys?: string[];
|
|
10672
|
+
expectedType?: string;
|
|
10673
|
+
actualType?: string;
|
|
10674
|
+
}
|
|
10675
|
+
interface GlobalActionValidationTarget {
|
|
10676
|
+
ref: GlobalActionRef | null | undefined;
|
|
10677
|
+
catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null;
|
|
10678
|
+
path?: string;
|
|
10679
|
+
}
|
|
10680
|
+
declare function normalizeGlobalActionRef(ref: GlobalActionRef | null | undefined): GlobalActionRef | null;
|
|
10681
|
+
declare function isGlobalActionRef(value: unknown): value is GlobalActionRef;
|
|
10682
|
+
declare function getRequiredGlobalActionPayloadKeys(actionId: string | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
|
|
10683
|
+
declare function hasMeaningfulGlobalActionPayloadValue(value: any): boolean;
|
|
10684
|
+
declare function getMissingGlobalActionPayloadKeys(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): string[];
|
|
10685
|
+
declare function isRequiredGlobalActionParamPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
|
|
10686
|
+
declare function isRequiredGlobalActionPayloadMissing(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null): boolean;
|
|
10687
|
+
declare function getGlobalActionPayloadActualType(value: unknown): string;
|
|
10688
|
+
declare function getGlobalActionPayloadTypeIssue(ref: GlobalActionRef | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema'> | null): Pick<GlobalActionValidationIssue, 'expectedType' | 'actualType'> | null;
|
|
10689
|
+
declare function validateGlobalActionRef(ref: GlobalActionRef | null | undefined, catalogEntry?: Pick<GlobalActionCatalogEntry, 'payloadSchema' | 'param'> | null, path?: string): GlobalActionValidationIssue[];
|
|
10690
|
+
declare function validateGlobalActionRefs(targets: GlobalActionValidationTarget[]): GlobalActionValidationIssue[];
|
|
10691
|
+
|
|
10429
10692
|
interface SurfaceOpenPreset {
|
|
10430
10693
|
id: string;
|
|
10431
10694
|
label: string;
|
|
@@ -10554,6 +10817,203 @@ interface AiConcept {
|
|
|
10554
10817
|
}
|
|
10555
10818
|
type AiConceptPack = Record<string, AiConcept>;
|
|
10556
10819
|
|
|
10820
|
+
/**
|
|
10821
|
+
* Representa o contrato canônico de authoring executável de um componente.
|
|
10822
|
+
*/
|
|
10823
|
+
interface ComponentAuthoringManifest {
|
|
10824
|
+
/** Versão do schema do manifesto (ex: 1.0.0) */
|
|
10825
|
+
schemaVersion: string;
|
|
10826
|
+
/** Identificador único do componente no registry (ex: praxis-table) */
|
|
10827
|
+
componentId: string;
|
|
10828
|
+
/** Nome do pacote npm que possui o componente (ex: @praxisui/table) */
|
|
10829
|
+
ownerPackage: string;
|
|
10830
|
+
/** ID do schema de configuração (ex: TableConfig) */
|
|
10831
|
+
configSchemaId: string;
|
|
10832
|
+
/** Versão do manifesto específico deste componente */
|
|
10833
|
+
manifestVersion: string;
|
|
10834
|
+
/** Inputs que o componente aceita em runtime */
|
|
10835
|
+
runtimeInputs: ManifestInput[];
|
|
10836
|
+
/** Alvos que podem ser editados via AI */
|
|
10837
|
+
editableTargets: ManifestTarget[];
|
|
10838
|
+
/** Operações atômicas permitidas */
|
|
10839
|
+
operations: ManifestOperation[];
|
|
10840
|
+
/** Validadores de integridade da configuração */
|
|
10841
|
+
validators: ManifestValidator[];
|
|
10842
|
+
/** Requisitos para round-trip sem perda de informação */
|
|
10843
|
+
roundTripRequirements?: string[];
|
|
10844
|
+
/**
|
|
10845
|
+
* Exemplos de intenção → operação para uso em Few-Shot e evals.
|
|
10846
|
+
* Obrigatório: o gate de aceitação rejeita manifestos sem examples.
|
|
10847
|
+
* Deve conter ao menos um exemplo negativo (isPositive: false).
|
|
10848
|
+
*/
|
|
10849
|
+
examples: ManifestExample[];
|
|
10850
|
+
/**
|
|
10851
|
+
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
10852
|
+
* base, mas precisam expor semantica granular por componente/controlType.
|
|
10853
|
+
*/
|
|
10854
|
+
controlProfiles?: ManifestControlProfile[];
|
|
10855
|
+
}
|
|
10856
|
+
interface ManifestInput {
|
|
10857
|
+
name: string;
|
|
10858
|
+
type: string;
|
|
10859
|
+
description?: string;
|
|
10860
|
+
allowedValues?: any[];
|
|
10861
|
+
}
|
|
10862
|
+
interface ManifestTarget {
|
|
10863
|
+
kind: string;
|
|
10864
|
+
resolver: string;
|
|
10865
|
+
description: string;
|
|
10866
|
+
}
|
|
10867
|
+
/**
|
|
10868
|
+
* Política de submissão para campos locais num formulário.
|
|
10869
|
+
* - 'omit': campo não é incluído no payload de submissão (default para campos locais).
|
|
10870
|
+
* - 'include': campo é sempre incluído no payload.
|
|
10871
|
+
* - 'includeWhenDirty': campo é incluído apenas se o valor foi alterado pelo usuário.
|
|
10872
|
+
* NOTA: 'transient' NÃO é um valor válido; use source:'local' + transient:true no schema de input.
|
|
10873
|
+
*/
|
|
10874
|
+
type SubmitPolicy = 'omit' | 'include' | 'includeWhenDirty';
|
|
10875
|
+
interface ManifestOperation {
|
|
10876
|
+
operationId: string;
|
|
10877
|
+
title: string;
|
|
10878
|
+
/**
|
|
10879
|
+
* Escopo da operação.
|
|
10880
|
+
* - 'global': opera sobre a configuração raiz; target.required deve ser false.
|
|
10881
|
+
* - Outros valores: opera sobre um alvo específico; target.required deve ser true.
|
|
10882
|
+
* O valor 'target' é reservado para uso futuro e não deve ser usado.
|
|
10883
|
+
*/
|
|
10884
|
+
scope: 'global' | 'column' | 'section' | 'row' | 'cell' | 'field' | 'rule' | 'itemTemplate' | 'itemAction' | 'selection' | 'layout' | 'rowLayout' | 'dataBinding' | 'interaction' | 'expansion' | 'rules' | 'meta' | 'skin' | 'templating' | 'toolbarUi' | 'localization' | 'accessibility' | 'eventMapping' | 'controlType' | 'controlAlias' | 'editorialDescriptor' | 'selectorMapping' | 'fieldMetadataPath' | 'runtimeCoverage' | 'editorCoverage';
|
|
10885
|
+
/**
|
|
10886
|
+
* @deprecated Use `target.kind` em vez disso.
|
|
10887
|
+
* Mantido para compatibilidade retroativa com ferramentas que lêem o registry.
|
|
10888
|
+
* Deve ser igual a `target.kind` quando `target` estiver presente.
|
|
10889
|
+
*/
|
|
10890
|
+
targetKind?: string;
|
|
10891
|
+
/**
|
|
10892
|
+
* Definição estruturada do alvo da operação.
|
|
10893
|
+
* Obrigatório para operações com scope diferente de 'global'.
|
|
10894
|
+
* Usado pelo backend para resolver o alvo antes de compilar o patch.
|
|
10895
|
+
*/
|
|
10896
|
+
target?: {
|
|
10897
|
+
/** Tipo do alvo (ex: column, rule) */
|
|
10898
|
+
kind: string;
|
|
10899
|
+
/** Resolver canônico usado para localizar o alvo (ex: column-by-field) */
|
|
10900
|
+
resolver: string;
|
|
10901
|
+
/** Política para lidar com ambiguidades na resolução */
|
|
10902
|
+
ambiguityPolicy?: 'fail' | 'first' | 'all';
|
|
10903
|
+
/** Se o alvo é obrigatório para a operação */
|
|
10904
|
+
required: boolean;
|
|
10905
|
+
};
|
|
10906
|
+
/** Schema JSON do payload de entrada da operação */
|
|
10907
|
+
inputSchema: any;
|
|
10908
|
+
/**
|
|
10909
|
+
* Efeitos que a operação causa na configuração.
|
|
10910
|
+
* Usado pelo backend para compilar o patch de forma determinística.
|
|
10911
|
+
*/
|
|
10912
|
+
effects: ManifestEffect[];
|
|
10913
|
+
/** Se true, a operação é destrutiva e pode causar perda de dados/configuração */
|
|
10914
|
+
destructive?: boolean;
|
|
10915
|
+
/**
|
|
10916
|
+
* Se true, o agente DEVE solicitar confirmação explícita antes de aplicar.
|
|
10917
|
+
* Obrigatório para todas as operações com destructive:true.
|
|
10918
|
+
*/
|
|
10919
|
+
requiresConfirmation?: boolean;
|
|
10920
|
+
/** IDs dos validadores que devem ser executados para esta operação */
|
|
10921
|
+
validators?: string[];
|
|
10922
|
+
/**
|
|
10923
|
+
* Caminhos (JSON Path-like) na configuração afetados por esta operação.
|
|
10924
|
+
* Deve cobrir todos os paths tocados pelos effects.
|
|
10925
|
+
* Usado pelo backend para validação de acesso e auditoria de mudanças.
|
|
10926
|
+
*/
|
|
10927
|
+
affectedPaths: string[];
|
|
10928
|
+
/**
|
|
10929
|
+
* Se true, a operação afeta o payload de submissão de dados ao backend.
|
|
10930
|
+
* Deve ser declarado explicitamente em todas as operações.
|
|
10931
|
+
*/
|
|
10932
|
+
submissionImpact: boolean;
|
|
10933
|
+
/**
|
|
10934
|
+
* Condições de estado que devem ser verdadeiras antes de executar a operação.
|
|
10935
|
+
* Usado pelo backend para validação prévia ao patch.
|
|
10936
|
+
* Ex: ['config-initialized', 'target-exists']
|
|
10937
|
+
*/
|
|
10938
|
+
preconditions: string[];
|
|
10939
|
+
}
|
|
10940
|
+
/**
|
|
10941
|
+
* Efeito atômico sobre a configuração.
|
|
10942
|
+
* Usa discriminated union por `kind` para documentar quais campos são obrigatórios:
|
|
10943
|
+
*
|
|
10944
|
+
* - 'merge-object': path obrigatório; funde o payload no objeto no path.
|
|
10945
|
+
* - 'merge-by-key': path + key obrigatórios; funde pelo campo-chave em uma coleção.
|
|
10946
|
+
* - 'append-unique': path + key obrigatórios; adiciona item se não existir (deduplicação por key).
|
|
10947
|
+
* - 'remove-by-key': path + key obrigatórios; remove item da coleção pelo valor da key.
|
|
10948
|
+
* - 'reorder-by-key': path + key obrigatórios; reordena coleção por key.
|
|
10949
|
+
* - 'set-value': path obrigatório; seta o valor diretamente no path.
|
|
10950
|
+
* - 'compile-domain-patch': handler obrigatório; delega compilação a um handler especializado.
|
|
10951
|
+
*/
|
|
10952
|
+
interface ManifestEffect {
|
|
10953
|
+
kind: 'merge-object' | 'merge-by-key' | 'append-unique' | 'remove-by-key' | 'reorder-by-key' | 'set-value' | 'compile-domain-patch';
|
|
10954
|
+
/** Path JSON-like na configuração onde o efeito é aplicado. Obrigatório para todos os kinds exceto 'compile-domain-patch'. */
|
|
10955
|
+
path?: string;
|
|
10956
|
+
/** Chave de identidade em coleções. Obrigatório para merge-by-key, append-unique, remove-by-key, reorder-by-key. */
|
|
10957
|
+
key?: string;
|
|
10958
|
+
/** ID do handler especializado. Obrigatório quando kind é 'compile-domain-patch'. */
|
|
10959
|
+
handler?: string;
|
|
10960
|
+
handlerContract?: ManifestDomainPatchHandlerContract;
|
|
10961
|
+
}
|
|
10962
|
+
interface ManifestDomainPatchHandlerContract {
|
|
10963
|
+
reads: string[];
|
|
10964
|
+
writes: string[];
|
|
10965
|
+
identityKeys: string[];
|
|
10966
|
+
inputSchema?: any;
|
|
10967
|
+
failureModes: string[];
|
|
10968
|
+
description: string;
|
|
10969
|
+
}
|
|
10970
|
+
interface ManifestValidator {
|
|
10971
|
+
validatorId: string;
|
|
10972
|
+
level: 'error' | 'warning' | 'info';
|
|
10973
|
+
code: string;
|
|
10974
|
+
description: string;
|
|
10975
|
+
}
|
|
10976
|
+
interface ManifestExample {
|
|
10977
|
+
id: string;
|
|
10978
|
+
request: string;
|
|
10979
|
+
operationId: string;
|
|
10980
|
+
target?: string;
|
|
10981
|
+
params?: any;
|
|
10982
|
+
isPositive?: boolean;
|
|
10983
|
+
}
|
|
10984
|
+
interface ManifestControlProfile {
|
|
10985
|
+
/** Identificador estavel do perfil dentro do manifesto familiar. */
|
|
10986
|
+
profileId: string;
|
|
10987
|
+
/** Nome curto usado por ferramentas de authoring. */
|
|
10988
|
+
title: string;
|
|
10989
|
+
/** Explica a semantica que este perfil adiciona sobre o manifesto base. */
|
|
10990
|
+
description: string;
|
|
10991
|
+
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
10992
|
+
appliesTo: ManifestControlProfileApplicability;
|
|
10993
|
+
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
10994
|
+
editableTargets?: ManifestTarget[];
|
|
10995
|
+
/** Operacoes especificas do perfil/controlType. */
|
|
10996
|
+
operations: ManifestOperation[];
|
|
10997
|
+
/** Validadores especificos do perfil/controlType. */
|
|
10998
|
+
validators: ManifestValidator[];
|
|
10999
|
+
/** Exemplos/evals especificos do perfil/controlType. */
|
|
11000
|
+
examples: ManifestExample[];
|
|
11001
|
+
/** Requisitos adicionais de round-trip para este perfil. */
|
|
11002
|
+
roundTripRequirements?: string[];
|
|
11003
|
+
}
|
|
11004
|
+
interface ManifestControlProfileApplicability {
|
|
11005
|
+
/** IDs de componentes do registry que devem receber este perfil. */
|
|
11006
|
+
componentIds?: string[];
|
|
11007
|
+
/** Selectors publicos que devem receber este perfil. */
|
|
11008
|
+
selectors?: string[];
|
|
11009
|
+
/** Control types canonicos ou aliases que devem receber este perfil. */
|
|
11010
|
+
controlTypes?: string[];
|
|
11011
|
+
/** Tags de ComponentDocMeta usadas como fallback de classificacao. */
|
|
11012
|
+
tags?: string[];
|
|
11013
|
+
/** Tipos do input `metadata` usados como fallback de classificacao. */
|
|
11014
|
+
metadataInputTypes?: string[];
|
|
11015
|
+
}
|
|
11016
|
+
|
|
10557
11017
|
/**
|
|
10558
11018
|
* Catálogo de capacidades genéricas de FieldMetadata para uso da IA.
|
|
10559
11019
|
* Baseado em projects/praxis-core/src/lib/models/component-metadata.interface.ts
|
|
@@ -10670,9 +11130,11 @@ interface ComponentMergePatch<TConfig extends Record<string, unknown> = Record<s
|
|
|
10670
11130
|
declare const DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK: ComponentContextPack;
|
|
10671
11131
|
|
|
10672
11132
|
interface WidgetEventPathSegment {
|
|
10673
|
-
kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group';
|
|
11133
|
+
kind: 'tabs' | 'tab' | 'nav' | 'link' | 'expansion' | 'panel' | 'stepper' | 'step' | 'slot' | 'group' | 'widget';
|
|
10674
11134
|
id?: string;
|
|
11135
|
+
key?: string;
|
|
10675
11136
|
index?: number;
|
|
11137
|
+
componentType?: string;
|
|
10676
11138
|
}
|
|
10677
11139
|
interface WidgetEventEnvelope {
|
|
10678
11140
|
/** Optional top-level page widget key that owns the event tree. */
|
|
@@ -10694,6 +11156,50 @@ interface WidgetResolutionDiagnostic {
|
|
|
10694
11156
|
error?: unknown;
|
|
10695
11157
|
}
|
|
10696
11158
|
|
|
11159
|
+
interface WidgetEventPathNormalizeOptions {
|
|
11160
|
+
/** Optional owner component id used to strip only the top-level container segment. */
|
|
11161
|
+
ownerComponentId?: string;
|
|
11162
|
+
}
|
|
11163
|
+
interface WidgetEventPathNormalizeInput {
|
|
11164
|
+
path?: WidgetEventPathSegment[];
|
|
11165
|
+
sourceChildWidgetKey?: string;
|
|
11166
|
+
sourceComponentId?: string;
|
|
11167
|
+
}
|
|
11168
|
+
declare function normalizeWidgetEventPath(event: WidgetEventEnvelope | WidgetEventPathNormalizeInput, options?: WidgetEventPathNormalizeOptions): ComponentPortPathSegment[];
|
|
11169
|
+
|
|
11170
|
+
interface NestedWidgetResolution {
|
|
11171
|
+
ownerWidgetKey: string;
|
|
11172
|
+
nestedPath: ComponentPortPathSegment[];
|
|
11173
|
+
widget: WidgetDefinition;
|
|
11174
|
+
componentId: string;
|
|
11175
|
+
childWidgetKey: string;
|
|
11176
|
+
}
|
|
11177
|
+
interface NestedWidgetInputPatchResult {
|
|
11178
|
+
widget: WidgetInstance;
|
|
11179
|
+
changed: boolean;
|
|
11180
|
+
}
|
|
11181
|
+
declare class NestedWidgetConfigAccessor {
|
|
11182
|
+
listNestedWidgets(owner: WidgetInstance): NestedWidgetResolution[];
|
|
11183
|
+
resolveNestedWidget(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined): WidgetDefinition | undefined;
|
|
11184
|
+
setNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string, value: unknown): NestedWidgetInputPatchResult;
|
|
11185
|
+
private listNestedWidgetsInDefinition;
|
|
11186
|
+
private resolveNestedWidgetInDefinition;
|
|
11187
|
+
private setNestedWidgetInputInDefinition;
|
|
11188
|
+
private listChildWidgetLocations;
|
|
11189
|
+
private listTabsWidgetLocations;
|
|
11190
|
+
private listExpansionWidgetLocations;
|
|
11191
|
+
private resolveWidgetArrayLocation;
|
|
11192
|
+
private resolveTabsWidgetArray;
|
|
11193
|
+
private resolveExpansionWidgetArray;
|
|
11194
|
+
private findBySegment;
|
|
11195
|
+
private segmentIdentity;
|
|
11196
|
+
private asWidgetDefinitions;
|
|
11197
|
+
private isWidgetDefinition;
|
|
11198
|
+
private resolveChildWidgetKey;
|
|
11199
|
+
private clone;
|
|
11200
|
+
private isEqual;
|
|
11201
|
+
}
|
|
11202
|
+
|
|
10697
11203
|
type EditorialContentFormat = 'plain' | 'markdown';
|
|
10698
11204
|
interface EditorialLinkDefinition {
|
|
10699
11205
|
label: string;
|
|
@@ -10924,6 +11430,7 @@ type Appearance = WidgetShellConfig['appearance'];
|
|
|
10924
11430
|
declare const BUILTIN_SHELL_PRESETS: Record<string, NonNullable<Appearance>>;
|
|
10925
11431
|
declare class WidgetShellComponent implements OnChanges {
|
|
10926
11432
|
private readonly i18n;
|
|
11433
|
+
get hostCollapsed(): boolean;
|
|
10927
11434
|
shell?: WidgetShellConfig | null;
|
|
10928
11435
|
context?: Record<string, any> | null;
|
|
10929
11436
|
dragSurfaceEnabled: boolean;
|
|
@@ -11100,6 +11607,7 @@ interface LinkExecutionDelivery {
|
|
|
11100
11607
|
widgetKey?: string;
|
|
11101
11608
|
portId?: string;
|
|
11102
11609
|
bindingPath?: string;
|
|
11610
|
+
nestedPath?: ComponentPortPathSegment[];
|
|
11103
11611
|
}
|
|
11104
11612
|
interface LinkExecutionResult {
|
|
11105
11613
|
status: 'delivered' | 'skipped' | 'failed';
|
|
@@ -11186,6 +11694,7 @@ declare class CompositionRuntimeEngine {
|
|
|
11186
11694
|
private readonly stateRuntime;
|
|
11187
11695
|
private readonly traceService;
|
|
11188
11696
|
private readonly pathAccessor;
|
|
11697
|
+
private readonly nestedWidgetAccessor;
|
|
11189
11698
|
private definition;
|
|
11190
11699
|
private readonly now;
|
|
11191
11700
|
constructor(options?: CompositionRuntimeEngineOptions);
|
|
@@ -11202,6 +11711,7 @@ declare class CompositionRuntimeEngine {
|
|
|
11202
11711
|
private cloneJson;
|
|
11203
11712
|
private extractDerivedNodeKey;
|
|
11204
11713
|
private appendDiagnosticTraceEntries;
|
|
11714
|
+
private createNestedWidgetEventBridgeDiagnostics;
|
|
11205
11715
|
}
|
|
11206
11716
|
|
|
11207
11717
|
interface CompositionRuntimeFacadeOptions {
|
|
@@ -11248,6 +11758,46 @@ type LegacyCompositionLinkInput = Omit<CompositionLink, 'condition' | 'policy' |
|
|
|
11248
11758
|
declare function migrateLegacyCompositionLinks(links: LegacyCompositionLinkInput[] | undefined | null): CompositionLink[];
|
|
11249
11759
|
declare function migrateLegacyCompositionLink(link: LegacyCompositionLinkInput): CompositionLink;
|
|
11250
11760
|
|
|
11761
|
+
interface NestedPortCatalogRegistry {
|
|
11762
|
+
get(id: string): Pick<ComponentDocMeta, 'ports'> | undefined;
|
|
11763
|
+
}
|
|
11764
|
+
interface ResolvedNestedPort {
|
|
11765
|
+
ownerWidgetKey: string;
|
|
11766
|
+
ownerComponentId?: string;
|
|
11767
|
+
nestedPath: ComponentPortPathSegment[];
|
|
11768
|
+
containerPath?: ComponentPortPathSegment[];
|
|
11769
|
+
port: PortContract;
|
|
11770
|
+
componentId: string;
|
|
11771
|
+
childWidgetKey: string;
|
|
11772
|
+
}
|
|
11773
|
+
interface NestedPortCatalogDiagnostic {
|
|
11774
|
+
code: 'NESTED_WIDGET_METADATA_MISSING' | 'NESTED_WIDGET_KEY_MISSING';
|
|
11775
|
+
severity: 'warning' | 'error';
|
|
11776
|
+
ownerWidgetKey: string;
|
|
11777
|
+
nestedPath: ComponentPortPathSegment[];
|
|
11778
|
+
componentId?: string;
|
|
11779
|
+
message: string;
|
|
11780
|
+
}
|
|
11781
|
+
interface NestedPortCatalogResult {
|
|
11782
|
+
ports: ResolvedNestedPort[];
|
|
11783
|
+
diagnostics: NestedPortCatalogDiagnostic[];
|
|
11784
|
+
}
|
|
11785
|
+
declare class NestedPortCatalogService {
|
|
11786
|
+
private readonly accessor;
|
|
11787
|
+
constructor(accessor?: NestedWidgetConfigAccessor);
|
|
11788
|
+
resolve(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry): NestedPortCatalogResult;
|
|
11789
|
+
resolveEndpoint(page: Pick<WidgetPageDefinition, 'widgets'>, registry: NestedPortCatalogRegistry, options: {
|
|
11790
|
+
ownerWidgetKey: string;
|
|
11791
|
+
nestedPath: ComponentPortPathSegment[];
|
|
11792
|
+
portId: string;
|
|
11793
|
+
direction: PortContract['direction'];
|
|
11794
|
+
}): ResolvedNestedPort | undefined;
|
|
11795
|
+
private hasStableTerminalKey;
|
|
11796
|
+
private containerPath;
|
|
11797
|
+
private isSamePath;
|
|
11798
|
+
private clone;
|
|
11799
|
+
}
|
|
11800
|
+
|
|
11251
11801
|
interface RenderedWidgetInstance extends WidgetInstance {
|
|
11252
11802
|
renderClassName?: string;
|
|
11253
11803
|
renderSpan?: number;
|
|
@@ -11293,6 +11843,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11293
11843
|
/** Optional instance key for pages rendered multiple times. */
|
|
11294
11844
|
componentInstanceId?: string;
|
|
11295
11845
|
pageChange: EventEmitter<WidgetPageDefinition>;
|
|
11846
|
+
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
11296
11847
|
widgetDiagnosticsChange: EventEmitter<Record<string, WidgetResolutionDiagnostic>>;
|
|
11297
11848
|
widgets: i0.WritableSignal<WidgetInstance[]>;
|
|
11298
11849
|
renderedGroups: i0.WritableSignal<RenderedWidgetGroup[]>;
|
|
@@ -11333,6 +11884,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11333
11884
|
private readonly route;
|
|
11334
11885
|
private readonly conn;
|
|
11335
11886
|
private readonly stateRuntime;
|
|
11887
|
+
private readonly nestedWidgetAccessor;
|
|
11336
11888
|
private readonly settingsPanel;
|
|
11337
11889
|
private readonly defaultShellEditor;
|
|
11338
11890
|
private readonly defaultPageEditor;
|
|
@@ -11349,6 +11901,9 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11349
11901
|
private applyBootstrapCompositionHydration;
|
|
11350
11902
|
private reportStateDiagnostics;
|
|
11351
11903
|
private dispatchWidgetEventToComposition;
|
|
11904
|
+
private matchesRuntimeSourceRef;
|
|
11905
|
+
private matchesLegacyWidgetEventSource;
|
|
11906
|
+
private areNestedPathsEqual;
|
|
11352
11907
|
private stateFromCompositionSnapshot;
|
|
11353
11908
|
private applyCompositionWidgetDeliveries;
|
|
11354
11909
|
private buildStateContext;
|
|
@@ -11365,7 +11920,6 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11365
11920
|
private handleSetInputCommand;
|
|
11366
11921
|
private mergeOrder;
|
|
11367
11922
|
private maybeExecuteMappedAction;
|
|
11368
|
-
private maybeExecuteGlobalCommand;
|
|
11369
11923
|
private resolveActionPayload;
|
|
11370
11924
|
private resolveTemplate;
|
|
11371
11925
|
private lookup;
|
|
@@ -11466,7 +12020,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
11466
12020
|
private sanitizeSegment;
|
|
11467
12021
|
private assertNoLegacyConnections;
|
|
11468
12022
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetPageComponent, never>;
|
|
11469
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetPageComponent, "praxis-dynamic-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showPageSettingsButton": { "alias": "showPageSettingsButton"; "required": false; }; "shellEditorComponent": { "alias": "shellEditorComponent"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; }, { "pageChange": "pageChange"; "widgetDiagnosticsChange": "widgetDiagnosticsChange"; }, never, never, true, never>;
|
|
12023
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetPageComponent, "praxis-dynamic-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showPageSettingsButton": { "alias": "showPageSettingsButton"; "required": false; }; "shellEditorComponent": { "alias": "shellEditorComponent"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; }, { "pageChange": "pageChange"; "widgetEvent": "widgetEvent"; "widgetDiagnosticsChange": "widgetDiagnosticsChange"; }, never, never, true, never>;
|
|
11470
12024
|
}
|
|
11471
12025
|
|
|
11472
12026
|
/** Metadata for Praxis Dynamic Page component */
|
|
@@ -11864,5 +12418,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
11864
12418
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
11865
12419
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
11866
12420
|
|
|
11867
|
-
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, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, 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
|
|
11868
|
-
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, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, 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, 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, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, 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, 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, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, 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, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, 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, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, 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, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityOperation, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCardNode, RichComposeNode, RichContentDocument, RichIconNode, RichImageNode, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineItem, RichTimelineNode, 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, 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, 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 };
|
|
12421
|
+
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, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, 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_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, 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, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, 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, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisLayerScaleCss, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isGlobalActionRef, isInlineFilterControlType, 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, normalizeFormMetadata, normalizeGlobalActionRef, normalizePath, normalizePraxisDataQueryContext, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
|
12422
|
+
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, 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, 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, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, 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, LookupDetailMetadata, LookupSelectionPolicyMetadata, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, 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, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, 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, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, 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, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityOperation, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCardNode, RichComposeNode, RichContentDocument, RichIconNode, RichImageNode, RichLinkNode, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineItem, RichTimelineNode, 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 };
|