@praxisui/core 9.0.0-beta.3 → 9.0.0-beta.31
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/ai/component-registry.json +3473 -0
- package/fesm2022/praxisui-core.mjs +2389 -404
- package/package.json +6 -2
- package/types/praxisui-core.d.ts +605 -31
package/types/praxisui-core.d.ts
CHANGED
|
@@ -322,7 +322,7 @@ declare function serializeEntityLookupValueForPayload(value: unknown, options?:
|
|
|
322
322
|
}): unknown;
|
|
323
323
|
declare function classifyEntityLookupResult(result?: Pick<EntityLookupResult<any>, 'extra'> | null, context?: EntityLookupResultStateContext): EntityLookupResultState;
|
|
324
324
|
|
|
325
|
-
type RuleContextRoot = 'form' | 'row' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
325
|
+
type RuleContextRoot = 'form' | 'row' | 'rowData' | 'computed' | 'meta' | 'source' | 'event' | 'payload' | 'state' | 'context';
|
|
326
326
|
type PraxisNativeJsonLogicOperator = 'var' | '==' | '===' | '!=' | '!==' | '>' | '>=' | '<' | '<=' | '!' | '!!' | 'and' | 'or' | 'if' | 'in' | 'cat' | 'substr' | '+' | '-' | '*' | '/' | '%' | 'min' | 'max' | 'merge' | 'map' | 'filter' | 'reduce' | 'all' | 'some' | 'none';
|
|
327
327
|
type PraxisBuiltinCustomRuleOperator = 'contains' | 'startsWith' | 'endsWith' | 'matches' | 'isBlank' | 'len' | 'round' | 'ceil' | 'floor' | 'abs' | 'coalesce' | 'now' | 'date' | 'yearsSince' | 'monthsSince' | 'daysSince' | 'toNumber' | 'stringify' | 'jsonGet' | 'hasKey' | 'isToday' | 'inLast' | 'weekdayIn';
|
|
328
328
|
type PraxisHostRuleOperator = string & {
|
|
@@ -745,6 +745,43 @@ interface RichActionCardNode extends RichBlockBaseNode {
|
|
|
745
745
|
action: RichActionRef;
|
|
746
746
|
secondaryActions?: RichActionButtonNode[];
|
|
747
747
|
}
|
|
748
|
+
type RichDecisionGovernanceStatus = 'draft' | 'simulated' | 'approved' | 'published' | 'superseded' | 'reverted';
|
|
749
|
+
type RichDecisionRisk = 'low' | 'medium' | 'high' | 'critical';
|
|
750
|
+
interface RichDecisionPackageEvidence {
|
|
751
|
+
id?: string;
|
|
752
|
+
label?: string;
|
|
753
|
+
labelExpr?: string;
|
|
754
|
+
source?: string;
|
|
755
|
+
sourceExpr?: string;
|
|
756
|
+
}
|
|
757
|
+
interface RichDecisionPackageNode extends RichBlockBaseNode {
|
|
758
|
+
type: 'decisionPackage';
|
|
759
|
+
title?: string;
|
|
760
|
+
titleExpr?: string;
|
|
761
|
+
subtitle?: string;
|
|
762
|
+
subtitleExpr?: string;
|
|
763
|
+
summary?: string;
|
|
764
|
+
summaryExpr?: string;
|
|
765
|
+
status?: RichDecisionGovernanceStatus;
|
|
766
|
+
statusExpr?: string;
|
|
767
|
+
owner?: string;
|
|
768
|
+
ownerExpr?: string;
|
|
769
|
+
policySource?: string;
|
|
770
|
+
policySourceExpr?: string;
|
|
771
|
+
version?: string;
|
|
772
|
+
versionExpr?: string;
|
|
773
|
+
confidence?: number;
|
|
774
|
+
confidenceExpr?: string;
|
|
775
|
+
risk?: RichDecisionRisk;
|
|
776
|
+
riskExpr?: string;
|
|
777
|
+
lastReviewed?: string;
|
|
778
|
+
lastReviewedExpr?: string;
|
|
779
|
+
supersedes?: string;
|
|
780
|
+
supersedesExpr?: string;
|
|
781
|
+
evidence?: RichDecisionPackageEvidence[];
|
|
782
|
+
primaryAction?: RichActionButtonNode;
|
|
783
|
+
secondaryActions?: RichActionButtonNode[];
|
|
784
|
+
}
|
|
748
785
|
interface RichFormLauncherNode extends RichBlockBaseNode {
|
|
749
786
|
type: 'formLauncher';
|
|
750
787
|
title?: string;
|
|
@@ -838,6 +875,9 @@ type RichTimelineConnectorVariant = 'solid' | 'dashed' | 'none';
|
|
|
838
875
|
type RichTimelineMarkerVariant = 'dot' | 'icon' | 'number';
|
|
839
876
|
type RichTimelineMarkerStyle = 'filled' | 'outlined';
|
|
840
877
|
type RichTimelineColor = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'error' | 'info' | 'neutral';
|
|
878
|
+
type RichTimelineEmphasis = 'subtle' | 'standard' | 'strong' | 'hero';
|
|
879
|
+
type RichTimelineDensity = 'compact' | 'comfortable' | 'spacious';
|
|
880
|
+
type RichTimelineTextAppearance = 'default' | 'prominent' | 'eyebrow' | 'label';
|
|
841
881
|
interface RichTimelineNode extends RichBlockBaseNode {
|
|
842
882
|
type: 'timeline';
|
|
843
883
|
title?: string;
|
|
@@ -851,6 +891,9 @@ interface RichTimelineNode extends RichBlockBaseNode {
|
|
|
851
891
|
markerVariant?: RichTimelineMarkerVariant;
|
|
852
892
|
markerColor?: RichTimelineColor;
|
|
853
893
|
markerStyle?: RichTimelineMarkerStyle;
|
|
894
|
+
emphasis?: RichTimelineEmphasis;
|
|
895
|
+
density?: RichTimelineDensity;
|
|
896
|
+
textAppearance?: RichTimelineTextAppearance;
|
|
854
897
|
items: RichTimelineItem[];
|
|
855
898
|
}
|
|
856
899
|
type CorePresetKind = 'surface-open' | 'widget-page-layout' | 'widget-page-theme' | 'editorial-theme' | 'editorial-compliance' | 'editorial-solution' | 'rich-block';
|
|
@@ -899,7 +942,7 @@ interface RichBlockHostCapabilities {
|
|
|
899
942
|
onLoadError?: 'hide' | 'error' | 'placeholder';
|
|
900
943
|
};
|
|
901
944
|
}
|
|
902
|
-
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
945
|
+
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichDecisionPackageNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
903
946
|
type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
|
|
904
947
|
interface RichContentDocument {
|
|
905
948
|
kind: 'praxis.rich-content';
|
|
@@ -1136,6 +1179,70 @@ declare function serializePraxisCollectionToJson<T>(request: PraxisCollectionExp
|
|
|
1136
1179
|
declare function hasPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): boolean;
|
|
1137
1180
|
declare function assertPraxisCollectionExportArtifact(result: PraxisCollectionExportResult | null | undefined): asserts result is PraxisCollectionExportResult;
|
|
1138
1181
|
|
|
1182
|
+
type PraxisPresentationVisualizationKind = 'line' | 'area' | 'column' | 'comparison' | 'stackedBar' | 'radial' | 'harveyBall' | 'bullet' | 'delta' | 'processFlow';
|
|
1183
|
+
type PraxisPresentationVisualizationSurface = 'table-cell' | 'list-item' | 'object-header' | 'card-summary' | 'form-presentation';
|
|
1184
|
+
type PraxisPresentationVisualizationSize = 'xs' | 'sm' | 'md' | 'lg' | 'responsive';
|
|
1185
|
+
type PraxisPresentationVisualizationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger' | 'critical';
|
|
1186
|
+
interface PraxisPresentationVisualizationPoint {
|
|
1187
|
+
label?: string;
|
|
1188
|
+
value: number;
|
|
1189
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1190
|
+
}
|
|
1191
|
+
interface PraxisPresentationVisualizationSegment {
|
|
1192
|
+
label?: string;
|
|
1193
|
+
value: number;
|
|
1194
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1195
|
+
}
|
|
1196
|
+
interface PraxisPresentationVisualizationThreshold {
|
|
1197
|
+
label?: string;
|
|
1198
|
+
value: number;
|
|
1199
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1200
|
+
}
|
|
1201
|
+
interface PraxisPresentationVisualizationItem {
|
|
1202
|
+
id?: string;
|
|
1203
|
+
label?: string;
|
|
1204
|
+
value?: number;
|
|
1205
|
+
icon?: string;
|
|
1206
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1207
|
+
state?: string;
|
|
1208
|
+
}
|
|
1209
|
+
interface PraxisPresentationVisualizationConfig {
|
|
1210
|
+
kind: PraxisPresentationVisualizationKind;
|
|
1211
|
+
surface?: PraxisPresentationVisualizationSurface;
|
|
1212
|
+
size?: PraxisPresentationVisualizationSize;
|
|
1213
|
+
value?: unknown;
|
|
1214
|
+
valueExpr?: JsonLogicExpression | string;
|
|
1215
|
+
valueSuffix?: string;
|
|
1216
|
+
valueSuffixExpr?: JsonLogicExpression | string;
|
|
1217
|
+
total?: number;
|
|
1218
|
+
totalExpr?: JsonLogicExpression | string;
|
|
1219
|
+
target?: number;
|
|
1220
|
+
targetExpr?: JsonLogicExpression | string;
|
|
1221
|
+
baseline?: number;
|
|
1222
|
+
baselineExpr?: JsonLogicExpression | string;
|
|
1223
|
+
points?: PraxisPresentationVisualizationPoint[];
|
|
1224
|
+
pointsExpr?: JsonLogicExpression | string;
|
|
1225
|
+
segments?: PraxisPresentationVisualizationSegment[];
|
|
1226
|
+
segmentsExpr?: JsonLogicExpression | string;
|
|
1227
|
+
thresholds?: PraxisPresentationVisualizationThreshold[];
|
|
1228
|
+
thresholdsExpr?: JsonLogicExpression | string;
|
|
1229
|
+
items?: PraxisPresentationVisualizationItem[];
|
|
1230
|
+
itemsExpr?: JsonLogicExpression | string;
|
|
1231
|
+
tone?: PraxisPresentationVisualizationTone;
|
|
1232
|
+
toneExpr?: JsonLogicExpression | string;
|
|
1233
|
+
ariaLabel?: string;
|
|
1234
|
+
ariaLabelExpr?: JsonLogicExpression | string;
|
|
1235
|
+
fallbackText: string;
|
|
1236
|
+
fallbackTextExpr?: JsonLogicExpression | string;
|
|
1237
|
+
}
|
|
1238
|
+
type ResolvedPraxisPresentationVisualizationConfig = PraxisPresentationVisualizationConfig;
|
|
1239
|
+
declare function normalizePraxisPresentationVisualization(value: PraxisPresentationVisualizationConfig | null | undefined): ResolvedPraxisPresentationVisualizationConfig | undefined;
|
|
1240
|
+
declare function isPraxisPresentationVisualizationTableSafe(value: PraxisPresentationVisualizationConfig | null | undefined): boolean;
|
|
1241
|
+
interface PraxisPresentationVisualizationHtmlOptions {
|
|
1242
|
+
locale?: string;
|
|
1243
|
+
}
|
|
1244
|
+
declare function renderPraxisPresentationVisualizationHtml(value: PraxisPresentationVisualizationConfig | null | undefined, options?: PraxisPresentationVisualizationHtmlOptions): string;
|
|
1245
|
+
|
|
1139
1246
|
type PraxisRuntimeEffectTrigger = 'on-condition-enter' | 'on-value-change' | 'while-true';
|
|
1140
1247
|
interface PraxisEffectPolicy {
|
|
1141
1248
|
trigger?: PraxisRuntimeEffectTrigger;
|
|
@@ -1354,7 +1461,7 @@ interface ColumnDefinition {
|
|
|
1354
1461
|
expr: string;
|
|
1355
1462
|
};
|
|
1356
1463
|
/** Tipo do renderizador */
|
|
1357
|
-
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose';
|
|
1464
|
+
type: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'microVisualization' | 'html' | 'compose';
|
|
1358
1465
|
/** Tooltip associado ao renderer efetivo da célula. */
|
|
1359
1466
|
tooltip?: TableTooltipConfig;
|
|
1360
1467
|
/** Configuração de ícone (Material/SVG por nome) */
|
|
@@ -1454,6 +1561,9 @@ interface ColumnDefinition {
|
|
|
1454
1561
|
size?: 'small' | 'medium' | 'large';
|
|
1455
1562
|
ariaLabel?: string;
|
|
1456
1563
|
};
|
|
1564
|
+
microVisualization?: {
|
|
1565
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1566
|
+
};
|
|
1457
1567
|
/** Avatar (imagem ou iniciais) */
|
|
1458
1568
|
avatar?: {
|
|
1459
1569
|
src?: string;
|
|
@@ -1605,6 +1715,11 @@ interface ColumnDefinition {
|
|
|
1605
1715
|
size?: 'small' | 'medium' | 'large';
|
|
1606
1716
|
ariaLabel?: string;
|
|
1607
1717
|
};
|
|
1718
|
+
} | {
|
|
1719
|
+
type: 'microVisualization';
|
|
1720
|
+
microVisualization?: {
|
|
1721
|
+
visualization: PraxisPresentationVisualizationConfig;
|
|
1722
|
+
};
|
|
1608
1723
|
} | {
|
|
1609
1724
|
type: 'html';
|
|
1610
1725
|
html?: {
|
|
@@ -2442,6 +2557,14 @@ interface ToolbarSettingsConfig {
|
|
|
2442
2557
|
options?: any[];
|
|
2443
2558
|
}>;
|
|
2444
2559
|
}
|
|
2560
|
+
interface TableAiAssistantConfig {
|
|
2561
|
+
/** Exibe e permite acionar o assistente de IA da tabela. Ausente equivale a true. */
|
|
2562
|
+
enabled?: boolean;
|
|
2563
|
+
}
|
|
2564
|
+
interface TableAiConfig {
|
|
2565
|
+
/** Configuracoes do assistente de IA embarcado na tabela. */
|
|
2566
|
+
assistant?: TableAiAssistantConfig;
|
|
2567
|
+
}
|
|
2445
2568
|
interface TableActionsConfig {
|
|
2446
2569
|
/** Ações por linha */
|
|
2447
2570
|
row?: RowActionsConfig;
|
|
@@ -2748,6 +2871,11 @@ interface TableDetailRichListNode extends TableDetailBaseNode {
|
|
|
2748
2871
|
}
|
|
2749
2872
|
type TableDetailEmbedAction = TableDetailActionBarAction;
|
|
2750
2873
|
interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
2874
|
+
/**
|
|
2875
|
+
* Governs whether the detail row should keep this embed as a host-mediated reference
|
|
2876
|
+
* or ask an owning runtime/provider to materialize it inline. Omitted means `reference`.
|
|
2877
|
+
*/
|
|
2878
|
+
renderMode?: 'reference' | 'inline';
|
|
2751
2879
|
description?: string;
|
|
2752
2880
|
caption?: string;
|
|
2753
2881
|
emptyText?: string;
|
|
@@ -2758,6 +2886,8 @@ interface TableDetailEmbedBaseNode extends TableDetailBaseNode {
|
|
|
2758
2886
|
interface TableDetailRefNode extends TableDetailEmbedBaseNode {
|
|
2759
2887
|
type: 'formRef' | 'tableRef' | 'chartRef';
|
|
2760
2888
|
schemaId?: string;
|
|
2889
|
+
chartDocumentRef?: string;
|
|
2890
|
+
chartDocument?: unknown;
|
|
2761
2891
|
}
|
|
2762
2892
|
interface TableDetailDiagramEmbedNode extends TableDetailEmbedBaseNode {
|
|
2763
2893
|
type: 'diagramEmbed';
|
|
@@ -3300,6 +3430,8 @@ interface TableConfigV2 {
|
|
|
3300
3430
|
toolbar?: ToolbarConfig;
|
|
3301
3431
|
/** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
|
|
3302
3432
|
actions?: TableActionsConfig;
|
|
3433
|
+
/** Configuracoes de IA do runtime da tabela */
|
|
3434
|
+
ai?: TableAiConfig;
|
|
3303
3435
|
/** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
|
|
3304
3436
|
export?: ExportConfig;
|
|
3305
3437
|
/** Mensagens personalizadas (Aba: Mensagens & Localização) */
|
|
@@ -3538,6 +3670,88 @@ declare const FieldControlType: {
|
|
|
3538
3670
|
};
|
|
3539
3671
|
type FieldControlType = (typeof FieldControlType)[keyof typeof FieldControlType];
|
|
3540
3672
|
|
|
3673
|
+
type FormFieldHelpDisplay = 'auto' | 'inline' | 'popover' | 'hidden';
|
|
3674
|
+
interface FormHelpPresentationConfig {
|
|
3675
|
+
/**
|
|
3676
|
+
* Controls how semantic field help (`hint`/`helpText`) is presented by field
|
|
3677
|
+
* renderers. Validation errors are never affected by this policy.
|
|
3678
|
+
*/
|
|
3679
|
+
display?: FormFieldHelpDisplay;
|
|
3680
|
+
/**
|
|
3681
|
+
* Maximum text length that may remain inline when `display` is `auto`.
|
|
3682
|
+
* Defaults to 64 characters.
|
|
3683
|
+
*/
|
|
3684
|
+
inlineMaxLength?: number;
|
|
3685
|
+
/**
|
|
3686
|
+
* Control types that should prefer a help affordance instead of inline text
|
|
3687
|
+
* when `display` is `auto`.
|
|
3688
|
+
*/
|
|
3689
|
+
preferPopoverForControls?: string[];
|
|
3690
|
+
}
|
|
3691
|
+
|
|
3692
|
+
type FieldPresentationTone = 'neutral' | 'info' | 'success' | 'warning' | 'danger';
|
|
3693
|
+
type FieldPresentationAppearance = 'plain' | 'soft' | 'outlined' | 'filled';
|
|
3694
|
+
type FieldPresenterKind = 'text' | 'badge' | 'chip' | 'status' | 'iconValue' | 'progress' | 'rating' | 'microVisualization';
|
|
3695
|
+
interface FieldPresentationInteractions {
|
|
3696
|
+
/** Allows readonly surfaces to expose a copy affordance without changing the field value. */
|
|
3697
|
+
copy?: boolean;
|
|
3698
|
+
/** Allows readonly surfaces to expose contextual detail expansion. */
|
|
3699
|
+
details?: boolean;
|
|
3700
|
+
/** Allows readonly surfaces to expose inline expansion for long values. */
|
|
3701
|
+
expand?: boolean;
|
|
3702
|
+
/** Allows readonly surfaces to expose a link affordance when the value is navigable. */
|
|
3703
|
+
link?: boolean;
|
|
3704
|
+
}
|
|
3705
|
+
interface FieldPresentationConfig {
|
|
3706
|
+
/** Semantic display strategy for readonly/presentation surfaces. */
|
|
3707
|
+
presenter?: FieldPresenterKind;
|
|
3708
|
+
/** Alias accepted for schema authors that describe the semantic display as a variant. */
|
|
3709
|
+
variant?: FieldPresenterKind;
|
|
3710
|
+
/** Semantic tone mapped by consumers to theme tokens. */
|
|
3711
|
+
tone?: FieldPresentationTone;
|
|
3712
|
+
/** Material Symbols icon name, without arbitrary HTML. */
|
|
3713
|
+
icon?: string;
|
|
3714
|
+
/** Optional semantic label for status/chip/badge presentations. */
|
|
3715
|
+
label?: string;
|
|
3716
|
+
/** Optional secondary marker rendered by presentation-capable consumers. */
|
|
3717
|
+
badge?: string;
|
|
3718
|
+
/** Optional tooltip text for the presentation wrapper. */
|
|
3719
|
+
tooltip?: string;
|
|
3720
|
+
/** Visual density/emphasis strategy mapped by consumers to theme tokens. */
|
|
3721
|
+
appearance?: FieldPresentationAppearance;
|
|
3722
|
+
/** Optional formatter override for the presentation surface only. */
|
|
3723
|
+
valuePresentation?: ValuePresentationConfig;
|
|
3724
|
+
/** Renderer-neutral micro visualization metadata for compact presentation surfaces. */
|
|
3725
|
+
visualization?: PraxisPresentationVisualizationConfig;
|
|
3726
|
+
/** Safe readonly affordances. No commands or mutations are executed from this contract. */
|
|
3727
|
+
interactions?: FieldPresentationInteractions;
|
|
3728
|
+
}
|
|
3729
|
+
interface FieldPresentationRule {
|
|
3730
|
+
/** Json Logic guard evaluated against the presentation context. */
|
|
3731
|
+
when: JsonLogicExpression;
|
|
3732
|
+
/** Semantic presentation state merged when the guard is truthy. */
|
|
3733
|
+
set?: FieldPresentationConfig;
|
|
3734
|
+
/** Alias for `set`, useful for rule-builder terminology. */
|
|
3735
|
+
effect?: FieldPresentationConfig;
|
|
3736
|
+
}
|
|
3737
|
+
interface ResolvedFieldPresentation extends FieldPresentationConfig {
|
|
3738
|
+
/** Indicates at least one conditional rule matched the current context. */
|
|
3739
|
+
matchedRule?: boolean;
|
|
3740
|
+
}
|
|
3741
|
+
interface FieldPresentationJsonLogicEvaluator {
|
|
3742
|
+
evaluate(expression: JsonLogicExpression, data: JsonLogicDataRecord): unknown;
|
|
3743
|
+
truthy?(value: unknown): boolean;
|
|
3744
|
+
}
|
|
3745
|
+
interface ResolveFieldPresentationOptions {
|
|
3746
|
+
jsonLogic?: FieldPresentationJsonLogicEvaluator | null;
|
|
3747
|
+
}
|
|
3748
|
+
/**
|
|
3749
|
+
* Resolves readonly field presentation from a base semantic config plus ordered
|
|
3750
|
+
* Json Logic rules. Later matching rules override earlier presentation values.
|
|
3751
|
+
*/
|
|
3752
|
+
declare function resolveFieldPresentation(base: FieldPresentationConfig | null | undefined, rules: readonly FieldPresentationRule[] | null | undefined, context?: JsonLogicDataRecord, options?: ResolveFieldPresentationOptions): ResolvedFieldPresentation;
|
|
3753
|
+
declare function normalizeFieldPresentation(value: FieldPresentationConfig | null | undefined): ResolvedFieldPresentation;
|
|
3754
|
+
|
|
3541
3755
|
/**
|
|
3542
3756
|
* @fileoverview Base metadata interfaces for dynamic Angular Material components
|
|
3543
3757
|
*
|
|
@@ -3910,6 +4124,14 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3910
4124
|
disabled?: boolean;
|
|
3911
4125
|
/** Field is read-only */
|
|
3912
4126
|
readOnly?: boolean;
|
|
4127
|
+
/**
|
|
4128
|
+
* Canonical backend-authored access metadata for field-level UX materialization.
|
|
4129
|
+
*
|
|
4130
|
+
* The frontend may use this contract to hide or lock controls for usability,
|
|
4131
|
+
* but it is not a security boundary. Backend filtering and validation remain
|
|
4132
|
+
* the final authority for sensitive data.
|
|
4133
|
+
*/
|
|
4134
|
+
fieldAccess?: FieldAccessMetadata;
|
|
3913
4135
|
/** Field is hidden from display */
|
|
3914
4136
|
hidden?: boolean;
|
|
3915
4137
|
/** Canonical conditional visibility guard for metadata-driven forms. */
|
|
@@ -3920,8 +4142,16 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3920
4142
|
placeholder?: string;
|
|
3921
4143
|
/** Help text displayed below field */
|
|
3922
4144
|
hint?: string;
|
|
4145
|
+
/** Domain help text emitted by backend schema metadata. */
|
|
4146
|
+
helpText?: string;
|
|
4147
|
+
/** Effective help presentation resolved by the form host. */
|
|
4148
|
+
helpDisplay?: FormFieldHelpDisplay;
|
|
4149
|
+
/** Field-level inline threshold used when `helpDisplay` is `auto`. */
|
|
4150
|
+
helpInlineMaxLength?: number;
|
|
3923
4151
|
/** Tooltip text on hover */
|
|
3924
4152
|
tooltip?: string;
|
|
4153
|
+
/** Enables hover tooltip presentation when supported by the field renderer. */
|
|
4154
|
+
tooltipOnHover?: boolean;
|
|
3925
4155
|
/** Semantic selection mode for boolean/single/multiple choice controls */
|
|
3926
4156
|
selectionMode?: 'boolean' | 'single' | 'multiple';
|
|
3927
4157
|
/** Visual variant used by controls with more than one supported presentation */
|
|
@@ -3961,6 +4191,10 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3961
4191
|
suffixIcon?: string;
|
|
3962
4192
|
iconPosition?: 'start' | 'end';
|
|
3963
4193
|
iconSize?: 'small' | 'medium' | 'large';
|
|
4194
|
+
iconColor?: string;
|
|
4195
|
+
iconClass?: string;
|
|
4196
|
+
iconStyle?: string;
|
|
4197
|
+
iconFontSize?: string | number;
|
|
3964
4198
|
/** Tooltip for suffix icon (used for help actions) */
|
|
3965
4199
|
suffixIconTooltip?: string;
|
|
3966
4200
|
/** ARIA label for suffix icon when used as help */
|
|
@@ -3977,6 +4211,18 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3977
4211
|
* heuristics.
|
|
3978
4212
|
*/
|
|
3979
4213
|
valuePresentation?: ValuePresentationConfig;
|
|
4214
|
+
/**
|
|
4215
|
+
* Semantic presentation metadata for read-only/display surfaces.
|
|
4216
|
+
*
|
|
4217
|
+
* Consumers map this contract to their own theme tokens and primitives. It
|
|
4218
|
+
* intentionally avoids arbitrary CSS, HTML, or mutation commands.
|
|
4219
|
+
*/
|
|
4220
|
+
presentation?: FieldPresentationConfig;
|
|
4221
|
+
/**
|
|
4222
|
+
* Ordered Json Logic rules that conditionally override `presentation` in
|
|
4223
|
+
* readonly/display surfaces. Later matching rules win.
|
|
4224
|
+
*/
|
|
4225
|
+
presentationRules?: FieldPresentationRule[];
|
|
3980
4226
|
/** Material Design specific configuration */
|
|
3981
4227
|
materialDesign?: MaterialDesignConfig;
|
|
3982
4228
|
/**
|
|
@@ -4122,6 +4368,23 @@ type CoreFieldMetadata = Pick<FieldMetadata, 'name' | 'label' | 'controlType'>;
|
|
|
4122
4368
|
/** Helper type for field metadata without computed properties */
|
|
4123
4369
|
type SerializableFieldMetadata = Omit<FieldMetadata, 'transformDisplayValue' | 'transformSaveValue'>;
|
|
4124
4370
|
|
|
4371
|
+
interface FieldAccessMetadata {
|
|
4372
|
+
visibleForAuthorities?: string[];
|
|
4373
|
+
editableForAuthorities?: string[];
|
|
4374
|
+
reason?: string;
|
|
4375
|
+
}
|
|
4376
|
+
interface FieldAccessEvaluationContext {
|
|
4377
|
+
authorities?: readonly string[] | null;
|
|
4378
|
+
}
|
|
4379
|
+
interface FieldAccessEvaluationResult {
|
|
4380
|
+
evaluated: boolean;
|
|
4381
|
+
visible: boolean;
|
|
4382
|
+
editable: boolean;
|
|
4383
|
+
reason?: string;
|
|
4384
|
+
}
|
|
4385
|
+
declare function normalizeFieldAccessMetadata(value: unknown): FieldAccessMetadata | undefined;
|
|
4386
|
+
declare function evaluateFieldAccess(fieldOrAccess: Pick<FieldMetadata, 'fieldAccess'> | FieldAccessMetadata | null | undefined, context?: FieldAccessEvaluationContext): FieldAccessEvaluationResult;
|
|
4387
|
+
|
|
4125
4388
|
/**
|
|
4126
4389
|
* Contrato de saída do normalizador de esquema (SchemaNormalizerService):
|
|
4127
4390
|
* - Converte metadados `x-ui` em FieldDefinition tipado.
|
|
@@ -4152,6 +4415,7 @@ interface FieldDefinition {
|
|
|
4152
4415
|
layout?: 'horizontal' | 'vertical';
|
|
4153
4416
|
disabled?: boolean;
|
|
4154
4417
|
readOnly?: boolean;
|
|
4418
|
+
fieldAccess?: FieldAccessMetadata;
|
|
4155
4419
|
array?: FieldArrayConfig;
|
|
4156
4420
|
collectionValidation?: FieldArrayCollectionValidation;
|
|
4157
4421
|
multiple?: boolean;
|
|
@@ -4180,6 +4444,7 @@ interface FieldDefinition {
|
|
|
4180
4444
|
helpText?: string;
|
|
4181
4445
|
hint?: string;
|
|
4182
4446
|
hiddenCondition?: JsonLogicExpression | null;
|
|
4447
|
+
tooltip?: string;
|
|
4183
4448
|
tooltipOnHover?: boolean;
|
|
4184
4449
|
icon?: string;
|
|
4185
4450
|
iconPosition?: string;
|
|
@@ -4286,6 +4551,13 @@ interface ApiUrlEntry {
|
|
|
4286
4551
|
fullUrl?: string;
|
|
4287
4552
|
version?: string;
|
|
4288
4553
|
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
4554
|
+
/**
|
|
4555
|
+
* Absolute backend origins that ResourceDiscoveryService may fold back through
|
|
4556
|
+
* a relative API_URL proxy for canonical API discovery links. Only configure
|
|
4557
|
+
* origins controlled by the same deployment boundary; arbitrary external links
|
|
4558
|
+
* remain absolute.
|
|
4559
|
+
*/
|
|
4560
|
+
trustedOrigins?: string[];
|
|
4289
4561
|
}
|
|
4290
4562
|
interface ApiUrlConfig {
|
|
4291
4563
|
[key: string]: ApiUrlEntry;
|
|
@@ -5330,6 +5602,9 @@ declare class TableConfigService {
|
|
|
5330
5602
|
declare function buildBaseColumnFromDef(def: FieldDefinition): ColumnDefinition;
|
|
5331
5603
|
declare function applyLocalCustomizations$1(baseCol: ColumnDefinition, localCol: ColumnDefinition): ColumnDefinition;
|
|
5332
5604
|
declare function reconcileTableConfig(layout: TableConfigV2, serverDefs: FieldDefinition[]): TableConfigV2;
|
|
5605
|
+
declare function resolveColumnTypeFromFieldDefinition(def: FieldDefinition, fallback?: ColumnDefinition['type']): ColumnDefinition['type'] | undefined;
|
|
5606
|
+
declare function resolveTextMaskFormatFromFieldDefinition(def: FieldDefinition): string | undefined;
|
|
5607
|
+
declare function resolveTextMaskFormat(value: unknown): string | undefined;
|
|
5333
5608
|
|
|
5334
5609
|
interface ConfigStorage {
|
|
5335
5610
|
loadConfig<T>(key: string): T | null;
|
|
@@ -8551,6 +8826,13 @@ declare class ResourceDiscoveryService {
|
|
|
8551
8826
|
resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
|
|
8552
8827
|
private resolveApiOrigin;
|
|
8553
8828
|
private resolveApiBaseUrl;
|
|
8829
|
+
private resolveTrustedAbsoluteHref;
|
|
8830
|
+
private isTrustedOrigin;
|
|
8831
|
+
private getTrustedOrigins;
|
|
8832
|
+
private normalizeOrigin;
|
|
8833
|
+
private isProxyableApiPath;
|
|
8834
|
+
private normalizePathPrefix;
|
|
8835
|
+
private isAbsoluteHttpUrl;
|
|
8554
8836
|
private resolveApiBaseHref;
|
|
8555
8837
|
private resolveEndpointEntry;
|
|
8556
8838
|
private getRuntimeOrigin;
|
|
@@ -9091,6 +9373,133 @@ declare class DomainRuleService {
|
|
|
9091
9373
|
static ɵprov: i0.ɵɵInjectableDeclaration<DomainRuleService>;
|
|
9092
9374
|
}
|
|
9093
9375
|
|
|
9376
|
+
interface EnterpriseRuntimeUser {
|
|
9377
|
+
userId: string;
|
|
9378
|
+
displayName?: string | null;
|
|
9379
|
+
resolvedFromServerPrincipal?: boolean;
|
|
9380
|
+
}
|
|
9381
|
+
interface EnterpriseRuntimeTenant {
|
|
9382
|
+
tenantId: string;
|
|
9383
|
+
label?: string | null;
|
|
9384
|
+
active?: boolean;
|
|
9385
|
+
}
|
|
9386
|
+
interface EnterpriseRuntimeTenantsResponse {
|
|
9387
|
+
schemaVersion: string;
|
|
9388
|
+
activeTenant?: EnterpriseRuntimeTenant | null;
|
|
9389
|
+
tenants?: EnterpriseRuntimeTenant[];
|
|
9390
|
+
capabilities?: string[];
|
|
9391
|
+
resolvedAt?: string | null;
|
|
9392
|
+
}
|
|
9393
|
+
interface EnterpriseRuntimeContext {
|
|
9394
|
+
schemaVersion: string;
|
|
9395
|
+
user: EnterpriseRuntimeUser;
|
|
9396
|
+
activeTenant: EnterpriseRuntimeTenant;
|
|
9397
|
+
environment?: string | null;
|
|
9398
|
+
locale?: string | null;
|
|
9399
|
+
timezone?: string | null;
|
|
9400
|
+
activeProfileId?: string | null;
|
|
9401
|
+
activeModuleKey?: string | null;
|
|
9402
|
+
/**
|
|
9403
|
+
* Host-resolved security authorities usable by metadata-driven UX policies.
|
|
9404
|
+
* Do not infer these from `capabilities` unless the host/backend explicitly
|
|
9405
|
+
* publishes that shared vocabulary.
|
|
9406
|
+
*/
|
|
9407
|
+
authorities?: string[];
|
|
9408
|
+
capabilities?: string[];
|
|
9409
|
+
resolvedAt?: string | null;
|
|
9410
|
+
}
|
|
9411
|
+
interface EnterpriseRuntimeContextSwitchCommand {
|
|
9412
|
+
targetTenantId?: string | null;
|
|
9413
|
+
targetProfileId?: string | null;
|
|
9414
|
+
targetModuleKey?: string | null;
|
|
9415
|
+
locale?: string | null;
|
|
9416
|
+
timezone?: string | null;
|
|
9417
|
+
reason?: string | null;
|
|
9418
|
+
}
|
|
9419
|
+
interface EnterpriseRuntimeContextSwitchResponse {
|
|
9420
|
+
schemaVersion: string;
|
|
9421
|
+
accepted: boolean;
|
|
9422
|
+
message?: string | null;
|
|
9423
|
+
effectiveContext?: EnterpriseRuntimeContext | null;
|
|
9424
|
+
propagationHeaders?: Record<string, string>;
|
|
9425
|
+
capabilities?: string[];
|
|
9426
|
+
resolvedAt?: string | null;
|
|
9427
|
+
}
|
|
9428
|
+
interface EnterpriseRuntimeNavigationNode {
|
|
9429
|
+
id: string;
|
|
9430
|
+
label?: string | null;
|
|
9431
|
+
type?: string | null;
|
|
9432
|
+
href?: string | null;
|
|
9433
|
+
route?: string | null;
|
|
9434
|
+
moduleKey?: string | null;
|
|
9435
|
+
resourceKey?: string | null;
|
|
9436
|
+
surfaceRef?: string | null;
|
|
9437
|
+
actionRef?: string | null;
|
|
9438
|
+
capabilityRef?: string | null;
|
|
9439
|
+
children?: EnterpriseRuntimeNavigationNode[];
|
|
9440
|
+
}
|
|
9441
|
+
interface EnterpriseRuntimeNavigationResponse {
|
|
9442
|
+
schemaVersion: string;
|
|
9443
|
+
nodes?: EnterpriseRuntimeNavigationNode[];
|
|
9444
|
+
capabilities?: string[];
|
|
9445
|
+
resolvedAt?: string | null;
|
|
9446
|
+
}
|
|
9447
|
+
interface EnterpriseRuntimeSecurityEvent {
|
|
9448
|
+
eventRef?: string | null;
|
|
9449
|
+
eventType?: string | null;
|
|
9450
|
+
severity?: string | null;
|
|
9451
|
+
summary?: string | null;
|
|
9452
|
+
tenantId?: string | null;
|
|
9453
|
+
environment?: string | null;
|
|
9454
|
+
occurredAt?: string | null;
|
|
9455
|
+
metadata?: Record<string, string>;
|
|
9456
|
+
}
|
|
9457
|
+
interface EnterpriseRuntimeSecurityEventsResponse {
|
|
9458
|
+
schemaVersion: string;
|
|
9459
|
+
events?: EnterpriseRuntimeSecurityEvent[];
|
|
9460
|
+
capabilities?: string[];
|
|
9461
|
+
resolvedAt?: string | null;
|
|
9462
|
+
}
|
|
9463
|
+
interface EnterpriseRuntimeContextHeaders {
|
|
9464
|
+
'X-Tenant-ID'?: string;
|
|
9465
|
+
'X-User-ID'?: string;
|
|
9466
|
+
'X-Env'?: string;
|
|
9467
|
+
'Accept-Language'?: string;
|
|
9468
|
+
'X-Timezone'?: string;
|
|
9469
|
+
'X-Praxis-Profile-ID'?: string;
|
|
9470
|
+
'X-Praxis-Module-Key'?: string;
|
|
9471
|
+
}
|
|
9472
|
+
|
|
9473
|
+
type RuntimeHeaderMap = Record<string, string | undefined>;
|
|
9474
|
+
declare class EnterpriseRuntimeContextService {
|
|
9475
|
+
private readonly http;
|
|
9476
|
+
private readonly apiUrl;
|
|
9477
|
+
private readonly options;
|
|
9478
|
+
private readonly contextSubject;
|
|
9479
|
+
private loadPromise;
|
|
9480
|
+
readonly contextChanges$: Observable<EnterpriseRuntimeContext | null>;
|
|
9481
|
+
get snapshot(): EnterpriseRuntimeContext | null;
|
|
9482
|
+
ready(): Promise<EnterpriseRuntimeContext | null>;
|
|
9483
|
+
refresh(): Promise<EnterpriseRuntimeContext | null>;
|
|
9484
|
+
tenants(): Promise<EnterpriseRuntimeTenantsResponse>;
|
|
9485
|
+
navigation(): Promise<EnterpriseRuntimeNavigationResponse>;
|
|
9486
|
+
securityEvents(): Promise<EnterpriseRuntimeSecurityEventsResponse>;
|
|
9487
|
+
switchContext(command: EnterpriseRuntimeContextSwitchCommand): Promise<EnterpriseRuntimeContextSwitchResponse>;
|
|
9488
|
+
headers(fallback?: RuntimeHeaderMap): EnterpriseRuntimeContextHeaders;
|
|
9489
|
+
private load;
|
|
9490
|
+
private getRuntimeSurface;
|
|
9491
|
+
private endpoint;
|
|
9492
|
+
private configuredEndpoint;
|
|
9493
|
+
private runtimeRoot;
|
|
9494
|
+
private surfacePath;
|
|
9495
|
+
private requestHeaders;
|
|
9496
|
+
private globalFetchHeaders;
|
|
9497
|
+
private headersFromSnapshot;
|
|
9498
|
+
private normalizeHeaders;
|
|
9499
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EnterpriseRuntimeContextService, never>;
|
|
9500
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EnterpriseRuntimeContextService>;
|
|
9501
|
+
}
|
|
9502
|
+
|
|
9094
9503
|
type PraxisRuntimeComponentObservationSchemaVersion = 'praxis-runtime-component-observation.v1';
|
|
9095
9504
|
type PraxisRuntimeComponentObservationClaimKind = 'component' | 'manifest' | 'resource' | 'schemaField' | 'selection' | 'operation' | 'surface' | 'action' | 'stateDigest' | 'dataDigest';
|
|
9096
9505
|
interface PraxisRuntimeComponentObservationEnvelope {
|
|
@@ -9258,21 +9667,6 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9258
9667
|
private readonly discovery;
|
|
9259
9668
|
materialize(payload: SurfaceOpenPayload, context?: SurfaceOpenMaterializationContext): Promise<SurfaceOpenPayload>;
|
|
9260
9669
|
private projectMaterializedFormInputs;
|
|
9261
|
-
private buildLocalFormConfig;
|
|
9262
|
-
private buildMaterializedFormFields;
|
|
9263
|
-
private buildMaterializedFormSections;
|
|
9264
|
-
private shouldRenderMaterializedFormField;
|
|
9265
|
-
private isTechnicalRelationIdField;
|
|
9266
|
-
private isResolvedDisplayCompanionField;
|
|
9267
|
-
private resolveDisplayCompanionBase;
|
|
9268
|
-
private hasDisplayCompanion;
|
|
9269
|
-
private isDuplicateMediaUrlField;
|
|
9270
|
-
private looksLikeMediaUrlField;
|
|
9271
|
-
private looksLikeAvatarFieldName;
|
|
9272
|
-
private inferFormControlType;
|
|
9273
|
-
private humanizeFieldName;
|
|
9274
|
-
private stableSectionId;
|
|
9275
|
-
private chunk;
|
|
9276
9670
|
private shouldMaterializeItemReadProjection;
|
|
9277
9671
|
private resolveResponseCardinality;
|
|
9278
9672
|
private shouldMaterializeAsCollection;
|
|
@@ -9281,6 +9675,8 @@ declare class SurfaceOpenMaterializerService {
|
|
|
9281
9675
|
private resolveItemReadUrl;
|
|
9282
9676
|
private resolveSchemaFields;
|
|
9283
9677
|
private materializeArrayAsTable;
|
|
9678
|
+
private ensureCollectionTableSelectionContract;
|
|
9679
|
+
private ensureTableSelectionConfig;
|
|
9284
9680
|
private projectTableInputs;
|
|
9285
9681
|
private buildLocalTableConfig;
|
|
9286
9682
|
private inferColumnsFromData;
|
|
@@ -9939,6 +10335,62 @@ declare function provideGlobalConfigSeed(seed: Partial<GlobalConfig>): Provider;
|
|
|
9939
10335
|
declare function provideRemoteGlobalConfig(url: string): Provider;
|
|
9940
10336
|
declare function providePraxisGlobalConfigBootstrap(options?: PraxisGlobalConfigBootstrapOptions): Provider[];
|
|
9941
10337
|
|
|
10338
|
+
interface PraxisEnterpriseRuntimeEndpoints {
|
|
10339
|
+
/**
|
|
10340
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10341
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10342
|
+
*/
|
|
10343
|
+
context?: string;
|
|
10344
|
+
/**
|
|
10345
|
+
* Absolute or relative endpoint for the host-owned tenant catalog.
|
|
10346
|
+
* Defaults to the same runtime root as `context`, ending in `/tenants`.
|
|
10347
|
+
*/
|
|
10348
|
+
tenants?: string;
|
|
10349
|
+
/**
|
|
10350
|
+
* Absolute or relative endpoint for host-owned navigation.
|
|
10351
|
+
* Defaults to the same runtime root as `context`, ending in `/navigation`.
|
|
10352
|
+
*/
|
|
10353
|
+
navigation?: string;
|
|
10354
|
+
/**
|
|
10355
|
+
* Absolute or relative endpoint for host-owned security events.
|
|
10356
|
+
* Defaults to the same runtime root as `context`, ending in `/security-events`.
|
|
10357
|
+
*/
|
|
10358
|
+
securityEvents?: string;
|
|
10359
|
+
}
|
|
10360
|
+
interface PraxisEnterpriseRuntimeContextOptions {
|
|
10361
|
+
/**
|
|
10362
|
+
* Absolute or relative endpoint for the host-owned runtime context snapshot.
|
|
10363
|
+
* Defaults to `${API_URL.default}/praxis/runtime/context` or `/api/praxis/runtime/context`.
|
|
10364
|
+
* Prefer `endpoints.context` for new integrations.
|
|
10365
|
+
*/
|
|
10366
|
+
endpoint?: string;
|
|
10367
|
+
/**
|
|
10368
|
+
* Host-owned enterprise runtime surfaces. When omitted, URLs are derived from
|
|
10369
|
+
* the configured `endpoint` or from the canonical `/praxis/runtime` root.
|
|
10370
|
+
*/
|
|
10371
|
+
endpoints?: PraxisEnterpriseRuntimeEndpoints;
|
|
10372
|
+
/**
|
|
10373
|
+
* Headers used to resolve the context request. The response remains the source
|
|
10374
|
+
* of truth for tenant/user/environment headers after bootstrap.
|
|
10375
|
+
*/
|
|
10376
|
+
headersFactory?: () => Record<string, string | undefined>;
|
|
10377
|
+
/**
|
|
10378
|
+
* Include `globalThis.PAX_FETCH_HEADERS()` in the request headers when present.
|
|
10379
|
+
*/
|
|
10380
|
+
includeGlobalFetchHeaders?: boolean;
|
|
10381
|
+
/**
|
|
10382
|
+
* Block Angular bootstrap until the context has been resolved.
|
|
10383
|
+
*/
|
|
10384
|
+
blocking?: boolean;
|
|
10385
|
+
/**
|
|
10386
|
+
* Whether bootstrap should fail when the runtime context request fails.
|
|
10387
|
+
*/
|
|
10388
|
+
errorPolicy?: 'fail' | 'ignore';
|
|
10389
|
+
}
|
|
10390
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS: InjectionToken<PraxisEnterpriseRuntimeContextOptions>;
|
|
10391
|
+
declare const PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY: InjectionToken<() => Promise<void>>;
|
|
10392
|
+
declare function providePraxisEnterpriseRuntimeContext(options?: PraxisEnterpriseRuntimeContextOptions): Provider[];
|
|
10393
|
+
|
|
9942
10394
|
declare const PRAXIS_I18N_CONFIG: InjectionToken<Partial<PraxisI18nConfig>>;
|
|
9943
10395
|
declare const PRAXIS_I18N_TRANSLATOR: InjectionToken<PraxisI18nTranslator>;
|
|
9944
10396
|
|
|
@@ -10100,6 +10552,26 @@ declare const DYNAMIC_PAGE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
|
10100
10552
|
|
|
10101
10553
|
declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
10102
10554
|
|
|
10555
|
+
interface TableDetailInlineRendererContext {
|
|
10556
|
+
node: TableDetailRefNode;
|
|
10557
|
+
row: unknown;
|
|
10558
|
+
rowIndex: number;
|
|
10559
|
+
detailContext?: Record<string, unknown>;
|
|
10560
|
+
}
|
|
10561
|
+
interface TableDetailInlineRendererDefinition {
|
|
10562
|
+
nodeType: TableDetailRefNode['type'];
|
|
10563
|
+
renderMode: 'inline';
|
|
10564
|
+
component: Type<unknown>;
|
|
10565
|
+
buildInputs: (context: TableDetailInlineRendererContext) => Record<string, unknown> | null;
|
|
10566
|
+
}
|
|
10567
|
+
interface TableDetailInlineNodeResolverDefinition {
|
|
10568
|
+
nodeType: TableDetailRefNode['type'];
|
|
10569
|
+
renderMode: 'inline';
|
|
10570
|
+
resolveNode: (context: TableDetailInlineRendererContext) => TableDetailRefNode | null;
|
|
10571
|
+
}
|
|
10572
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_RENDERERS: InjectionToken<readonly TableDetailInlineRendererDefinition[]>;
|
|
10573
|
+
declare const PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS: InjectionToken<readonly TableDetailInlineNodeResolverDefinition[]>;
|
|
10574
|
+
|
|
10103
10575
|
declare function providePraxisHttpCollectionExportProvider(options?: PraxisCollectionExportHttpProviderOptions): Provider[];
|
|
10104
10576
|
|
|
10105
10577
|
declare const PRAXIS_JSON_LOGIC_OPERATORS: InjectionToken<PraxisJsonLogicOperatorDefinition[]>;
|
|
@@ -10735,7 +11207,7 @@ interface EditorialFormTemplateBuildOptions {
|
|
|
10735
11207
|
* - collections are replaced, not concatenated, unless omitted in overrides
|
|
10736
11208
|
* - template provenance is recorded under config.metadata.template
|
|
10737
11209
|
*/
|
|
10738
|
-
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions):
|
|
11210
|
+
declare function buildFormConfigFromEditorialTemplate(template: EditorialFormTemplate, options?: EditorialFormTemplateBuildOptions): FormConfigWithSections;
|
|
10739
11211
|
|
|
10740
11212
|
interface FormFieldLayoutItem {
|
|
10741
11213
|
kind: 'field';
|
|
@@ -10818,6 +11290,10 @@ interface FormRow {
|
|
|
10818
11290
|
interface FormSection {
|
|
10819
11291
|
id: string;
|
|
10820
11292
|
title?: string;
|
|
11293
|
+
/** Optional host/runtime CSS classes applied to the section container. */
|
|
11294
|
+
className?: string;
|
|
11295
|
+
/** Optional semantic presentation role used by compact/read-only layouts. */
|
|
11296
|
+
presentationRole?: string;
|
|
10821
11297
|
/** Visual appearance preset for the section container/header. */
|
|
10822
11298
|
appearance?: 'card' | 'plain' | 'step';
|
|
10823
11299
|
/** Optional compact step badge/kicker displayed before the title. */
|
|
@@ -10940,8 +11416,12 @@ interface FormSectionHeaderConfig {
|
|
|
10940
11416
|
initialsMaxLength?: number;
|
|
10941
11417
|
}
|
|
10942
11418
|
interface FormConfig {
|
|
10943
|
-
/**
|
|
10944
|
-
|
|
11419
|
+
/**
|
|
11420
|
+
* Optional manual layout sections.
|
|
11421
|
+
* When omitted, schema-driven runtimes may infer sections from field metadata
|
|
11422
|
+
* instead of forcing hosts to declare an empty manual layout.
|
|
11423
|
+
*/
|
|
11424
|
+
sections?: FormSection[];
|
|
10945
11425
|
/** Editorial or semantic rich content rendered before the form sections/actions. */
|
|
10946
11426
|
formBlocksBefore?: RichContentDocument | null;
|
|
10947
11427
|
/** Editorial or semantic rich content rendered after the form sections and before the primary action area. */
|
|
@@ -10980,7 +11460,16 @@ interface FormConfig {
|
|
|
10980
11460
|
* Útil para padronizar mensagens didáticas no host.
|
|
10981
11461
|
*/
|
|
10982
11462
|
hints?: FormModeHints;
|
|
11463
|
+
/**
|
|
11464
|
+
* Presentation policy for semantic field help (`hint`/`helpText`).
|
|
11465
|
+
* This controls visual density only; validation errors remain inline.
|
|
11466
|
+
*/
|
|
11467
|
+
helpPresentation?: FormHelpPresentationConfig;
|
|
11468
|
+
}
|
|
11469
|
+
interface FormConfigWithSections extends FormConfig {
|
|
11470
|
+
sections: FormSection[];
|
|
10983
11471
|
}
|
|
11472
|
+
declare function withFormConfigSections(config: FormConfig): FormConfigWithSections;
|
|
10984
11473
|
interface FormModeHints {
|
|
10985
11474
|
dataModes: {
|
|
10986
11475
|
create: string;
|
|
@@ -11000,9 +11489,43 @@ interface FormConfigMetadata {
|
|
|
11000
11489
|
/** Last update timestamp */
|
|
11001
11490
|
lastUpdated?: Date;
|
|
11002
11491
|
/** Configuration source */
|
|
11003
|
-
source?: 'local' | 'server' | 'default';
|
|
11492
|
+
source?: 'local' | 'server' | 'default' | 'schema';
|
|
11493
|
+
/**
|
|
11494
|
+
* Layout preset used when this configuration was generated from metadata/schema.
|
|
11495
|
+
* This is provenance for generated configs; it must not be interpreted as a
|
|
11496
|
+
* command to reprocess authored or persisted layouts.
|
|
11497
|
+
*/
|
|
11498
|
+
generatedLayoutPreset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
11499
|
+
/** Runtime policy used to materialize schema-driven layout, when applicable. */
|
|
11500
|
+
schemaLayoutPolicy?: {
|
|
11501
|
+
source: 'authored' | 'schema';
|
|
11502
|
+
preset?: 'default' | 'compactPresentation' | 'groupedCommand';
|
|
11503
|
+
intent?: 'detail' | 'command';
|
|
11504
|
+
lifecycle?: 'initial' | 'live';
|
|
11505
|
+
persistence?: 'transient' | 'authorable';
|
|
11506
|
+
detachBehavior?: 'none' | 'explicit';
|
|
11507
|
+
schemaOperation?: 'detail' | 'create' | 'update' | 'view';
|
|
11508
|
+
schemaType?: 'request' | 'response';
|
|
11509
|
+
detailSummary?: {
|
|
11510
|
+
includeFields?: readonly string[];
|
|
11511
|
+
excludeFields?: readonly string[];
|
|
11512
|
+
includeGroups?: readonly string[];
|
|
11513
|
+
excludeGroups?: readonly string[];
|
|
11514
|
+
includeRoles?: readonly string[];
|
|
11515
|
+
excludeRoles?: readonly string[];
|
|
11516
|
+
maxFields?: number;
|
|
11517
|
+
fieldPriority?: Record<string, number>;
|
|
11518
|
+
groupPriority?: Record<string, number>;
|
|
11519
|
+
};
|
|
11520
|
+
};
|
|
11004
11521
|
/** Server data hash for change detection */
|
|
11005
11522
|
serverHash?: string;
|
|
11523
|
+
/**
|
|
11524
|
+
* Host-resolved security authorities used only for fieldAccess UX
|
|
11525
|
+
* materialization. Do not populate this from runtime capabilities unless the
|
|
11526
|
+
* host/backend explicitly declares that both vocabularies are shared.
|
|
11527
|
+
*/
|
|
11528
|
+
fieldAccessAuthorities?: string[];
|
|
11006
11529
|
/**
|
|
11007
11530
|
* Server schema identity used to build this configuration.
|
|
11008
11531
|
* Format comes from buildSchemaId(path|operation|schemaType|internal|tenant|locale|origin).
|
|
@@ -11190,7 +11713,7 @@ interface FormActionConfirmationEvent {
|
|
|
11190
11713
|
confirmed: boolean;
|
|
11191
11714
|
}
|
|
11192
11715
|
|
|
11193
|
-
type RulePropertyType = 'string' | 'boolean' | 'object' | 'enum' | 'number';
|
|
11716
|
+
type RulePropertyType = 'string' | 'boolean' | 'object' | 'array' | 'enum' | 'number';
|
|
11194
11717
|
interface RulePropertyDefinition {
|
|
11195
11718
|
name: string;
|
|
11196
11719
|
type: RulePropertyType;
|
|
@@ -11703,6 +12226,10 @@ interface WidgetShellAction {
|
|
|
11703
12226
|
tooltip?: string;
|
|
11704
12227
|
/** Visual style of the action button. */
|
|
11705
12228
|
variant?: 'icon' | 'text' | 'outlined';
|
|
12229
|
+
/** Optional icon rendered when the action is pressed. Falls back to `icon`. */
|
|
12230
|
+
pressedIcon?: string;
|
|
12231
|
+
/** Toggle state exposed through aria-pressed for shell actions that enable/disable a runtime mode. */
|
|
12232
|
+
pressed?: boolean | string;
|
|
11706
12233
|
/** Placement inside the shell header. Defaults to 'header'. */
|
|
11707
12234
|
placement?: WidgetShellActionPlacement;
|
|
11708
12235
|
/** Output name to emit to the page builder (defaults to `shell:${id}`). */
|
|
@@ -11784,6 +12311,8 @@ interface WidgetShellActionEvent {
|
|
|
11784
12311
|
emit?: string;
|
|
11785
12312
|
/** Optional payload for the action. */
|
|
11786
12313
|
payload?: any;
|
|
12314
|
+
/** Toggle state captured when the action was emitted. */
|
|
12315
|
+
pressed?: boolean | string;
|
|
11787
12316
|
/** Original action definition, when available. */
|
|
11788
12317
|
action?: WidgetShellAction;
|
|
11789
12318
|
}
|
|
@@ -12429,6 +12958,45 @@ declare function mapFieldDefinitionToMetadata(field: FieldDefinition): FieldMeta
|
|
|
12429
12958
|
*/
|
|
12430
12959
|
declare function mapFieldDefinitionsToMetadata(fields: FieldDefinition[]): FieldMetadata[];
|
|
12431
12960
|
|
|
12961
|
+
type DynamicFormLayoutSource = 'authored' | 'schema';
|
|
12962
|
+
type DynamicFormSchemaLayoutPreset = 'default' | 'compactPresentation' | 'groupedCommand';
|
|
12963
|
+
type DynamicFormLayoutIntent = 'detail' | 'command';
|
|
12964
|
+
type DynamicFormLayoutLifecycle = 'initial' | 'live';
|
|
12965
|
+
type DynamicFormLayoutPersistence = 'transient' | 'authorable';
|
|
12966
|
+
type DynamicFormLayoutDetachBehavior = 'none' | 'explicit';
|
|
12967
|
+
type DynamicFormSchemaOperation = 'detail' | 'create' | 'update' | 'view';
|
|
12968
|
+
type DynamicFormSchemaType = 'request' | 'response';
|
|
12969
|
+
interface DynamicFormDetailSummaryPolicy {
|
|
12970
|
+
includeFields?: readonly string[];
|
|
12971
|
+
excludeFields?: readonly string[];
|
|
12972
|
+
includeGroups?: readonly string[];
|
|
12973
|
+
excludeGroups?: readonly string[];
|
|
12974
|
+
includeRoles?: readonly string[];
|
|
12975
|
+
excludeRoles?: readonly string[];
|
|
12976
|
+
maxFields?: number;
|
|
12977
|
+
fieldPriority?: Record<string, number>;
|
|
12978
|
+
groupPriority?: Record<string, number>;
|
|
12979
|
+
}
|
|
12980
|
+
interface DynamicFormLayoutPolicy {
|
|
12981
|
+
source: DynamicFormLayoutSource;
|
|
12982
|
+
preset?: DynamicFormSchemaLayoutPreset;
|
|
12983
|
+
intent?: DynamicFormLayoutIntent;
|
|
12984
|
+
lifecycle?: DynamicFormLayoutLifecycle;
|
|
12985
|
+
persistence?: DynamicFormLayoutPersistence;
|
|
12986
|
+
detachBehavior?: DynamicFormLayoutDetachBehavior;
|
|
12987
|
+
schemaOperation?: DynamicFormSchemaOperation;
|
|
12988
|
+
schemaType?: DynamicFormSchemaType;
|
|
12989
|
+
detailSummary?: DynamicFormDetailSummaryPolicy;
|
|
12990
|
+
}
|
|
12991
|
+
interface MaterializeFormLayoutOptions {
|
|
12992
|
+
policy?: DynamicFormLayoutPolicy | null;
|
|
12993
|
+
defaultSectionTitle?: string;
|
|
12994
|
+
presentationRoleMap?: Record<string, string>;
|
|
12995
|
+
includeHidden?: boolean;
|
|
12996
|
+
}
|
|
12997
|
+
declare function materializeFormLayoutFromMetadata(fields: FieldMetadata[], options?: MaterializeFormLayoutOptions): FormConfigWithSections;
|
|
12998
|
+
declare function normalizeLayoutPolicy(policy?: DynamicFormLayoutPolicy | null): Required<Pick<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>> & Omit<DynamicFormLayoutPolicy, 'source' | 'preset' | 'intent' | 'lifecycle' | 'persistence' | 'detachBehavior'>;
|
|
12999
|
+
|
|
12432
13000
|
/**
|
|
12433
13001
|
* Compose headers including optional API version information.
|
|
12434
13002
|
* If the entry already defines custom headers, they will be preserved.
|
|
@@ -12448,7 +13016,7 @@ type EnsureIdsOptions = {
|
|
|
12448
13016
|
* Garante que todas as sections/rows/columns do FormConfig possuam IDs únicos.
|
|
12449
13017
|
* Retorna um NOVO objeto (sem mutar o original).
|
|
12450
13018
|
*/
|
|
12451
|
-
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions):
|
|
13019
|
+
declare function ensureIds(config: FormConfig, options?: EnsureIdsOptions): FormConfigWithSections;
|
|
12452
13020
|
|
|
12453
13021
|
declare function resolveSpan(span?: ColumnSpan): Required<ColumnSpan>;
|
|
12454
13022
|
declare function resolveOffset(offset?: ColumnOffset): Required<ColumnOffset>;
|
|
@@ -12786,7 +13354,7 @@ interface ComponentAuthoringManifest {
|
|
|
12786
13354
|
examples: ManifestExample[];
|
|
12787
13355
|
/**
|
|
12788
13356
|
* Perfis opcionais para familias de componentes que compartilham um manifesto
|
|
12789
|
-
* base, mas precisam expor
|
|
13357
|
+
* base, mas precisam expor semântica granular por componente/controlType.
|
|
12790
13358
|
*/
|
|
12791
13359
|
controlProfiles?: ManifestControlProfile[];
|
|
12792
13360
|
}
|
|
@@ -12945,13 +13513,13 @@ interface ManifestControlProfile {
|
|
|
12945
13513
|
profileId: string;
|
|
12946
13514
|
/** Nome curto usado por ferramentas de authoring. */
|
|
12947
13515
|
title: string;
|
|
12948
|
-
/** Explica a
|
|
13516
|
+
/** Explica a semântica que este perfil adiciona sobre o manifesto base. */
|
|
12949
13517
|
description: string;
|
|
12950
13518
|
/** Regras deterministicas para projetar o perfil em componentes do registry. */
|
|
12951
13519
|
appliesTo: ManifestControlProfileApplicability;
|
|
12952
13520
|
/** Alvos adicionais ou refinados que este perfil torna editaveis. */
|
|
12953
13521
|
editableTargets?: ManifestTarget[];
|
|
12954
|
-
/**
|
|
13522
|
+
/** Operações específicas do perfil/controlType. */
|
|
12955
13523
|
operations: ManifestOperation[];
|
|
12956
13524
|
/** Validadores especificos do perfil/controlType. */
|
|
12957
13525
|
validators: ManifestValidator[];
|
|
@@ -13015,7 +13583,7 @@ interface CapabilityCatalog extends AiCapabilityCatalog {
|
|
|
13015
13583
|
}
|
|
13016
13584
|
declare const DYNAMIC_PAGE_AI_CAPABILITIES: CapabilityCatalog;
|
|
13017
13585
|
|
|
13018
|
-
type ComponentContextOptionMode = 'enum' | 'suggested';
|
|
13586
|
+
type ComponentContextOptionMode = 'enum' | 'suggested' | 'expression';
|
|
13019
13587
|
interface ComponentContextOption {
|
|
13020
13588
|
value: string | number;
|
|
13021
13589
|
label?: string;
|
|
@@ -13024,6 +13592,7 @@ interface ComponentContextOption {
|
|
|
13024
13592
|
interface ComponentContextOptionsByPathEntry {
|
|
13025
13593
|
mode: ComponentContextOptionMode;
|
|
13026
13594
|
options: ComponentContextOption[];
|
|
13595
|
+
suggestedRoots?: string[];
|
|
13027
13596
|
}
|
|
13028
13597
|
interface ComponentActionParam {
|
|
13029
13598
|
name: string;
|
|
@@ -13458,6 +14027,7 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
13458
14027
|
get overflowHeaderActions(): ActionList;
|
|
13459
14028
|
private get maxHeaderActions();
|
|
13460
14029
|
get windowActions(): ActionList;
|
|
14030
|
+
displayActionIcon(action: WidgetShellAction): string | undefined;
|
|
13461
14031
|
onAction(action: WidgetShellAction, ev: MouseEvent): void;
|
|
13462
14032
|
onHeaderPointerDown(event: PointerEvent): void;
|
|
13463
14033
|
onHeaderKeydown(event: KeyboardEvent): void;
|
|
@@ -14015,6 +14585,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14015
14585
|
private enrichRuntimeWidgetInputs;
|
|
14016
14586
|
private buildRichContentHostCapabilities;
|
|
14017
14587
|
private dispatchRichContentAction;
|
|
14588
|
+
private emitRichContentCustomAction;
|
|
14018
14589
|
private isRichContentActionAvailable;
|
|
14019
14590
|
private hasRichContentCapability;
|
|
14020
14591
|
private resolveComponentBindingPath;
|
|
@@ -14047,6 +14618,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
14047
14618
|
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
14048
14619
|
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
14049
14620
|
private handleSetInputCommand;
|
|
14621
|
+
private handleToggleInputCommand;
|
|
14050
14622
|
private mergeOrder;
|
|
14051
14623
|
private maybeExecuteMappedAction;
|
|
14052
14624
|
private resolveActionPayload;
|
|
@@ -14199,6 +14771,8 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14199
14771
|
*/
|
|
14200
14772
|
renderTitleInsideBody: boolean;
|
|
14201
14773
|
widgetEvent: EventEmitter<WidgetEventEnvelope>;
|
|
14774
|
+
rowClick: EventEmitter<unknown>;
|
|
14775
|
+
selectionChange: EventEmitter<unknown>;
|
|
14202
14776
|
private beforeWidgetLoader?;
|
|
14203
14777
|
private mainWidgetLoader?;
|
|
14204
14778
|
private afterWidgetLoader?;
|
|
@@ -14217,7 +14791,7 @@ declare class PraxisSurfaceHostComponent implements AfterViewInit, OnChanges {
|
|
|
14217
14791
|
private hasRichContentCapability;
|
|
14218
14792
|
onSlotWidgetEvent(ownerWidgetKey: string, event: WidgetEventEnvelope): void;
|
|
14219
14793
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
|
|
14220
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; }, never, never, true, never>;
|
|
14794
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "beforeWidget": { "alias": "beforeWidget"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "afterWidget": { "alias": "afterWidget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, { "widgetEvent": "widgetEvent"; "rowClick": "rowClick"; "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
14221
14795
|
}
|
|
14222
14796
|
|
|
14223
14797
|
interface EmptyAction {
|
|
@@ -14598,5 +15172,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
14598
15172
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
14599
15173
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
14600
15174
|
|
|
14601
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisRuntimeGlobalActionEffect, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withMessage, withPraxisHttpLoading };
|
|
14602
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormFieldLayoutItem, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedNestedPort, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
15175
|
+
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_TABLE_CONFIG, DOMAIN_CATALOG_COMPONENT_CONTEXT_PACK, DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DomainCatalogService, DomainKnowledgeService, DomainRuleService, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, EnterpriseRuntimeContextService, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NestedPortCatalogService, NestedWidgetConfigAccessor, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS, PRAXIS_TABLE_DETAIL_INLINE_RENDERERS, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, classifyEntityLookupResult, clonePraxisRuntimeComponentObservation, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createEmptyRichContentDocument, createFieldLayoutItem, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, domainKnowledgeTimelineToRichContentDocument, domainRuleTimelineToRichContentDocument, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, escapePraxisExportCell, evaluateFieldAccess, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisPresentationVisualizationTableSafe, isPraxisRuntimeGlobalActionEffect, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, materializeFormLayoutFromMetadata, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldAccessMetadata, normalizeFieldConstraints, normalizeFieldPresentation, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLayoutPolicy, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisPresentationVisualization, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisEnterpriseRuntimeContext, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, renderPraxisPresentationVisualizationHtml, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveColumnTypeFromFieldDefinition, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveFieldPresentation, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToJson, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withFormConfigSections, withMessage, withPraxisHttpLoading };
|
|
15176
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, CompositionLink, CompositionRuntimeFacadeOptions, ConditionalValidationRule, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCreatedByType, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExplainability, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DraggingConfig, DynamicFormDetailSummaryPolicy, DynamicFormLayoutDetachBehavior, DynamicFormLayoutIntent, DynamicFormLayoutLifecycle, DynamicFormLayoutPersistence, DynamicFormLayoutPolicy, DynamicFormLayoutSource, DynamicFormSchemaLayoutPreset, DynamicFormSchemaOperation, DynamicFormSchemaType, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, EnterpriseRuntimeContext, EnterpriseRuntimeContextHeaders, EnterpriseRuntimeContextSwitchCommand, EnterpriseRuntimeContextSwitchResponse, EnterpriseRuntimeNavigationNode, EnterpriseRuntimeNavigationResponse, EnterpriseRuntimeSecurityEvent, EnterpriseRuntimeSecurityEventsResponse, EnterpriseRuntimeTenant, EnterpriseRuntimeTenantsResponse, EnterpriseRuntimeUser, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldAccessEvaluationContext, FieldAccessEvaluationResult, FieldAccessMetadata, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldPresentationAppearance, FieldPresentationConfig, FieldPresentationInteractions, FieldPresentationJsonLogicEvaluator, FieldPresentationRule, FieldPresentationTone, FieldPresenterKind, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormConfigWithSections, FormCustomActionEvent, FormEntityEvent, FormFieldHelpDisplay, FormFieldLayoutItem, FormHelpPresentationConfig, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionRef, GlobalActionResult, GlobalActionUiSchema, GlobalActionValidationCode, GlobalActionValidationIssue, GlobalActionValidationTarget, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlineOverlayActionAppearance, InlineOverlayActionColorRole, InlineOverlayActionMetadata, InlineOverlayActionsMetadata, InlineOverlayApplyMode, InlineOverlayMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, JsonLogicArguments, JsonLogicArray, JsonLogicDataRecord, JsonLogicDerivedValueExpression, JsonLogicExpression, JsonLogicOperationExpression, JsonLogicPrimitive, JsonLogicRecord, JsonLogicValue, JsonLogicVarExpression, JsonLogicVarReference, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyCompositionLinkInput, LegacyLinkCondition, LegacyLinkMetaPolicy, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, LookupCapabilitiesMetadata, LookupCreateMetadata, LookupDetailMetadata, LookupDialogMetadata, LookupDialogSize, LookupFilterDefinitionMetadata, LookupFilterFieldType, LookupFilterOperator, LookupFilterRequest, LookupFilteringMetadata, LookupOpenDetailMode, LookupResultColumnKind, LookupResultColumnMetadata, LookupSelectionPolicyMetadata, LookupSortOptionMetadata, LookupStatusTone, ManifestControlProfile, ManifestControlProfileApplicability, ManifestDomainPatchHandlerContract, ManifestEffect, ManifestExample, ManifestInput, ManifestOperation, ManifestPresentationAffordance, ManifestPresentationAffordanceCatalog, ManifestSubmissionImpact, ManifestTarget, ManifestValidator, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialEntityLookupMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MaterializeFormLayoutOptions, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisEnterpriseRuntimeContextOptions, PraxisEnterpriseRuntimeEndpoints, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisPresentationVisualizationConfig, PraxisPresentationVisualizationHtmlOptions, PraxisPresentationVisualizationItem, PraxisPresentationVisualizationKind, PraxisPresentationVisualizationPoint, PraxisPresentationVisualizationSegment, PraxisPresentationVisualizationSize, PraxisPresentationVisualizationSurface, PraxisPresentationVisualizationThreshold, PraxisPresentationVisualizationTone, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolveFieldPresentationOptions, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAiAssistantConfig, TableAiConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineNodeResolverDefinition, TableDetailInlineRendererContext, TableDetailInlineRendererDefinition, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|