@praxisui/core 9.0.67 → 9.0.68-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +388 -11
- package/ai/component-registry.json +92 -22
- package/fesm2022/praxisui-core.mjs +4163 -638
- package/package.json +2 -1
- package/types/praxisui-core.d.ts +463 -152
package/types/praxisui-core.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injector, InjectionToken, Type, Provider, DestroyRef, ErrorHandler, EnvironmentProviders, OnChanges, EventEmitter, SimpleChanges, OnInit,
|
|
2
|
+
import { Injector, InjectionToken, Type, Provider, DestroyRef, ErrorHandler, EnvironmentProviders, OnChanges, OnDestroy, EventEmitter, SimpleChanges, OnInit, ElementRef, AfterViewInit, AfterViewChecked, Renderer2 } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { HttpHeaders, HttpContext, HttpClient, HttpParams, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpInterceptorFn, HttpFeature, HttpFeatureKind, HttpContextToken } from '@angular/common/http';
|
|
6
6
|
import * as _praxisui_core from '@praxisui/core';
|
|
7
7
|
import { ValidationErrors, ValidatorFn, AsyncValidatorFn, FormGroup, AbstractControl, FormControl } from '@angular/forms';
|
|
8
|
-
import { ThemePalette, DateAdapter } from '@angular/material/core';
|
|
8
|
+
import { ThemePalette, DateAdapter, ErrorStateMatcher } from '@angular/material/core';
|
|
9
9
|
import { ActivatedRoute } from '@angular/router';
|
|
10
10
|
import { ConnectedPosition, OverlayRef } from '@angular/cdk/overlay';
|
|
11
11
|
import { MatDialogRef } from '@angular/material/dialog';
|
|
@@ -517,6 +517,24 @@ interface RichCardAccessibility {
|
|
|
517
517
|
ariaLabelledBy?: string;
|
|
518
518
|
ariaDescribedBy?: string;
|
|
519
519
|
}
|
|
520
|
+
/** Semantic page opening. Navigation remains links; commands remain host-mediated actions. */
|
|
521
|
+
interface RichPageHeaderNode extends RichBlockBaseNode {
|
|
522
|
+
type: 'pageHeader';
|
|
523
|
+
title?: string;
|
|
524
|
+
titleExpr?: string;
|
|
525
|
+
subtitle?: string;
|
|
526
|
+
subtitleExpr?: string;
|
|
527
|
+
/** Document outline level, independent of visual size. Defaults to 1. */
|
|
528
|
+
headingLevel?: 1 | 2 | 3 | 4 | 5 | 6;
|
|
529
|
+
size?: 'sm' | 'md' | 'lg';
|
|
530
|
+
identity?: RichIconNode | RichAvatarNode | RichImageNode;
|
|
531
|
+
/** Ancestors only. The resolved title is the non-link current item. */
|
|
532
|
+
breadcrumbs?: RichLinkNode[];
|
|
533
|
+
primaryAction?: RichActionButtonNode;
|
|
534
|
+
secondaryActions?: RichActionButtonNode[];
|
|
535
|
+
overflowActions?: RichActionButtonNode[];
|
|
536
|
+
relatedLinks?: RichLinkNode[];
|
|
537
|
+
}
|
|
520
538
|
interface RichCardNode extends RichBlockBaseNode {
|
|
521
539
|
type: 'card';
|
|
522
540
|
title?: string;
|
|
@@ -960,7 +978,7 @@ interface RichBlockHostCapabilities {
|
|
|
960
978
|
onLoadError?: 'hide' | 'error' | 'placeholder';
|
|
961
979
|
};
|
|
962
980
|
}
|
|
963
|
-
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichDecisionPackageNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
981
|
+
type RichPrimitiveNode = RichPresenterNode | RichComposeNode | RichCardNode | RichPageHeaderNode | RichCalloutNode | RichCtaGroupNode | RichKeyValueListNode | RichPropertySheetNode | RichStatGroupNode | RichTabsNode | RichEmptyStateNode | RichRecordSummaryNode | RichLookupResultNode | RichLookupCardNode | RichRelatedRecordNode | RichActionCardNode | RichDecisionPackageNode | RichFormLauncherNode | RichCollapsibleCardNode | RichDisclosureNode | RichAccordionNode | RichMediaBlockNode | RichTimelineNode;
|
|
964
982
|
type RichBlockNode = RichPrimitiveNode | RichPresetReferenceNode;
|
|
965
983
|
interface RichContentDocument {
|
|
966
984
|
kind: 'praxis.rich-content';
|
|
@@ -2474,6 +2492,38 @@ interface GroupingConfig {
|
|
|
2474
2492
|
/** Se os grupos iniciam expandidos */
|
|
2475
2493
|
expanded?: boolean;
|
|
2476
2494
|
}
|
|
2495
|
+
/** Presentation of a filter region; never part of the backend filter DTO. */
|
|
2496
|
+
interface FilterPresentationConfig {
|
|
2497
|
+
header?: {
|
|
2498
|
+
visible?: boolean;
|
|
2499
|
+
text?: string;
|
|
2500
|
+
/** Empty string hides the icon. */
|
|
2501
|
+
icon?: string;
|
|
2502
|
+
position?: 'above' | 'inline';
|
|
2503
|
+
size?: 'small' | 'medium' | 'large';
|
|
2504
|
+
};
|
|
2505
|
+
advancedAction?: {
|
|
2506
|
+
display?: 'icon' | 'text' | 'icon-text';
|
|
2507
|
+
/** Overrides i18n.advanced; omitted uses the localized label. */
|
|
2508
|
+
text?: string;
|
|
2509
|
+
/** Empty string hides the icon. */
|
|
2510
|
+
icon?: string;
|
|
2511
|
+
size?: 'compact' | 'standard';
|
|
2512
|
+
/** Position within the auxiliary controls, not within the page. */
|
|
2513
|
+
position?: 'start' | 'end';
|
|
2514
|
+
};
|
|
2515
|
+
tokens?: {
|
|
2516
|
+
gap?: string;
|
|
2517
|
+
headerGap?: string;
|
|
2518
|
+
headerColor?: string;
|
|
2519
|
+
headerFontSize?: string;
|
|
2520
|
+
headerFontWeight?: string;
|
|
2521
|
+
iconSize?: string;
|
|
2522
|
+
actionGap?: string;
|
|
2523
|
+
actionFontSize?: string;
|
|
2524
|
+
actionFontWeight?: string;
|
|
2525
|
+
};
|
|
2526
|
+
}
|
|
2477
2527
|
interface FilteringConfig {
|
|
2478
2528
|
/** Habilitar filtragem */
|
|
2479
2529
|
enabled: boolean;
|
|
@@ -2494,6 +2544,7 @@ interface FilteringConfig {
|
|
|
2494
2544
|
savePresets?: boolean;
|
|
2495
2545
|
/** Configurações específicas do componente praxis-filter */
|
|
2496
2546
|
settings?: {
|
|
2547
|
+
presentation?: FilterPresentationConfig;
|
|
2497
2548
|
/** Campos sempre visíveis */
|
|
2498
2549
|
alwaysVisibleFields?: string[];
|
|
2499
2550
|
/** Overrides de metadata por campo sempre visível (merge sobre o DTO de filtro) */
|
|
@@ -5390,6 +5441,7 @@ declare class GlobalConfigService {
|
|
|
5390
5441
|
private configCacheKey;
|
|
5391
5442
|
private configLoadPromise;
|
|
5392
5443
|
private configLoadKey;
|
|
5444
|
+
private snapshotLoad;
|
|
5393
5445
|
private storageSnapshot;
|
|
5394
5446
|
private storageSnapshotKey;
|
|
5395
5447
|
private readonly providerPartials;
|
|
@@ -5417,6 +5469,8 @@ declare class GlobalConfigService {
|
|
|
5417
5469
|
getTable(): GlobalConfig['table'];
|
|
5418
5470
|
getDialog(): GlobalConfig['dialog'];
|
|
5419
5471
|
getI18n(): GlobalConfig['i18n'];
|
|
5472
|
+
/** Snapshot reads must not enqueue bootstrap promises on every template check. */
|
|
5473
|
+
private requestSnapshotLoad;
|
|
5420
5474
|
/** Set current tenant (affects storage key). Pass undefined to clear. */
|
|
5421
5475
|
setTenant(tenantId?: string): void;
|
|
5422
5476
|
/** Get current tenant id (if any). */
|
|
@@ -6304,6 +6358,8 @@ declare class ApiConfigStorage implements AsyncConfigDocumentStorage {
|
|
|
6304
6358
|
private isRecord;
|
|
6305
6359
|
private buildParams;
|
|
6306
6360
|
private resolveResponseScope;
|
|
6361
|
+
private resolveRequestScope;
|
|
6362
|
+
private resolveCompatibleWriteEtag;
|
|
6307
6363
|
private resolveKey;
|
|
6308
6364
|
private inferComponentType;
|
|
6309
6365
|
private looksLikePageKey;
|
|
@@ -9175,7 +9231,9 @@ declare class PraxisI18nService {
|
|
|
9175
9231
|
formatDate(value: Date | string | number, options?: Intl.DateTimeFormatOptions): string;
|
|
9176
9232
|
formatNumber(value: number, options?: Intl.NumberFormatOptions): string;
|
|
9177
9233
|
formatCurrency(value: number, currency: string, options?: Intl.NumberFormatOptions): string;
|
|
9178
|
-
|
|
9234
|
+
/** Read current layers without copying every dictionary for each template lookup. */
|
|
9235
|
+
private getConfigLayers;
|
|
9236
|
+
private readConfigLocale;
|
|
9179
9237
|
private lookup;
|
|
9180
9238
|
private lookupInHierarchy;
|
|
9181
9239
|
private readParentLocale;
|
|
@@ -9286,6 +9344,149 @@ interface PortContract {
|
|
|
9286
9344
|
resourceQueryFieldSource?: PortResourceQueryFieldSource;
|
|
9287
9345
|
}
|
|
9288
9346
|
|
|
9347
|
+
type WidgetShellActionPlacement = 'header' | 'window' | 'menu';
|
|
9348
|
+
interface WidgetShellAction {
|
|
9349
|
+
/** Unique action id used for tracking and default emit name. */
|
|
9350
|
+
id: string;
|
|
9351
|
+
/** Optional label for text or outlined buttons. */
|
|
9352
|
+
label?: PraxisTextValue;
|
|
9353
|
+
/** Optional icon name (Material or Praxis icon registry). */
|
|
9354
|
+
icon?: string;
|
|
9355
|
+
/** Tooltip text for the action. */
|
|
9356
|
+
tooltip?: PraxisTextValue;
|
|
9357
|
+
/** Visual style of the action button. */
|
|
9358
|
+
variant?: 'icon' | 'text' | 'outlined';
|
|
9359
|
+
/** Optional icon rendered when the action is pressed. Falls back to `icon`. */
|
|
9360
|
+
pressedIcon?: string;
|
|
9361
|
+
/** Toggle state exposed through aria-pressed for shell actions that enable/disable a runtime mode. */
|
|
9362
|
+
pressed?: boolean | string;
|
|
9363
|
+
/** Id of the runtime region controlled by the action. */
|
|
9364
|
+
ariaControls?: string;
|
|
9365
|
+
/** Expanded state for actions that reveal an alternate runtime region. */
|
|
9366
|
+
ariaExpanded?: boolean | string;
|
|
9367
|
+
/** 'menu' keeps the action in More actions regardless of header capacity. Defaults to 'header'. */
|
|
9368
|
+
placement?: WidgetShellActionPlacement;
|
|
9369
|
+
/** Output name to emit to the page builder (defaults to `shell:${id}`). */
|
|
9370
|
+
emit?: string;
|
|
9371
|
+
/** Optional command name to dispatch to the inner widget. */
|
|
9372
|
+
command?: string;
|
|
9373
|
+
/** Optional payload for action dispatch/emit. */
|
|
9374
|
+
payload?: any;
|
|
9375
|
+
/** Whether the action is disabled. */
|
|
9376
|
+
disabled?: boolean;
|
|
9377
|
+
/** Whether the action is visible. */
|
|
9378
|
+
visible?: boolean;
|
|
9379
|
+
}
|
|
9380
|
+
/**
|
|
9381
|
+
* Optional runtime contract for widgets that contribute transient actions to
|
|
9382
|
+
* their owning WidgetShell. The contribution is presentation state and must
|
|
9383
|
+
* never be persisted into the authored page definition.
|
|
9384
|
+
*/
|
|
9385
|
+
interface WidgetShellActionContributor {
|
|
9386
|
+
readonly widgetShellActions: () => ReadonlyArray<WidgetShellAction>;
|
|
9387
|
+
setWidgetShellActionHostActive?(active: boolean): void;
|
|
9388
|
+
/** Live, presentation-only availability; undefined means not assessed by this owner.
|
|
9389
|
+
* Must be side-effect free. Never persist this state into authored actions.
|
|
9390
|
+
*/
|
|
9391
|
+
getWidgetShellActionAvailability?(action: WidgetShellAction): Pick<WidgetShellAction, 'disabled' | 'tooltip'> | undefined;
|
|
9392
|
+
}
|
|
9393
|
+
interface WidgetShellWindowActions {
|
|
9394
|
+
/** Show collapse/expand control in the header. */
|
|
9395
|
+
collapsible?: boolean;
|
|
9396
|
+
/** Show fullscreen toggle in the header. */
|
|
9397
|
+
fullscreen?: boolean;
|
|
9398
|
+
}
|
|
9399
|
+
type WidgetShellBodyLayout = 'content' | 'fill' | 'scroll';
|
|
9400
|
+
type WidgetShellPresetCategory = 'single-surface' | 'sectioned' | 'frameless';
|
|
9401
|
+
interface WidgetShellConfig {
|
|
9402
|
+
/** Optional avatar beside the title. Uses the existing core avatar vocabulary.
|
|
9403
|
+
* Values may use page shell templates, e.g. ${transient.employee.avatarUrl}.
|
|
9404
|
+
* Without an image, initials/name provide the fallback. Omit to keep the icon.
|
|
9405
|
+
*/
|
|
9406
|
+
avatar?: Pick<RichAvatarNode, 'imageSrc' | 'name' | 'initials'>;
|
|
9407
|
+
/** Shell type. 'dashboard-card' enables the default dashboard styling. */
|
|
9408
|
+
kind?: 'dashboard-card' | 'none';
|
|
9409
|
+
/** Optional preset id to resolve appearance defaults. */
|
|
9410
|
+
preset?: string;
|
|
9411
|
+
/** Header icon name. */
|
|
9412
|
+
icon?: string;
|
|
9413
|
+
/** Header title. */
|
|
9414
|
+
title?: PraxisTextValue;
|
|
9415
|
+
/** Header subtitle. */
|
|
9416
|
+
subtitle?: PraxisTextValue;
|
|
9417
|
+
/** Whether to show the header; defaults to true when title/icon/actions exist. */
|
|
9418
|
+
showHeader?: boolean;
|
|
9419
|
+
/** Keep the existing header within its widget while the page scrolls.
|
|
9420
|
+
* Suspended during drag authoring, collapse, overlays and scroll recovery.
|
|
9421
|
+
* Hosts with fixed chrome can set --pdx-shell-sticky-header-offset. Default false.
|
|
9422
|
+
*/
|
|
9423
|
+
stickyHeader?: boolean;
|
|
9424
|
+
/** Header + window actions. */
|
|
9425
|
+
actions?: WidgetShellAction[];
|
|
9426
|
+
/** Built-in window actions configuration. */
|
|
9427
|
+
windowActions?: WidgetShellWindowActions;
|
|
9428
|
+
/** Initial collapsed state. */
|
|
9429
|
+
collapsed?: boolean;
|
|
9430
|
+
/** Initial expanded (fullscreen) state. */
|
|
9431
|
+
expanded?: boolean;
|
|
9432
|
+
/** Initial fullscreen state. */
|
|
9433
|
+
fullscreen?: boolean;
|
|
9434
|
+
/** Defines how projected widget content should occupy the shell body. */
|
|
9435
|
+
bodyLayout?: WidgetShellBodyLayout;
|
|
9436
|
+
/** Optional appearance overrides for card, header, and typography. */
|
|
9437
|
+
appearance?: {
|
|
9438
|
+
card?: {
|
|
9439
|
+
background?: string;
|
|
9440
|
+
borderColor?: string;
|
|
9441
|
+
borderRadius?: string;
|
|
9442
|
+
shadow?: string;
|
|
9443
|
+
};
|
|
9444
|
+
header?: {
|
|
9445
|
+
background?: string;
|
|
9446
|
+
borderColor?: string;
|
|
9447
|
+
titleColor?: string;
|
|
9448
|
+
subtitleColor?: string;
|
|
9449
|
+
iconColor?: string;
|
|
9450
|
+
};
|
|
9451
|
+
body?: {
|
|
9452
|
+
background?: string;
|
|
9453
|
+
textColor?: string;
|
|
9454
|
+
padding?: string;
|
|
9455
|
+
};
|
|
9456
|
+
typography?: {
|
|
9457
|
+
titleSize?: string;
|
|
9458
|
+
titleWeight?: string;
|
|
9459
|
+
subtitleSize?: string;
|
|
9460
|
+
};
|
|
9461
|
+
};
|
|
9462
|
+
}
|
|
9463
|
+
/** Canonical authoring descriptor for a reusable WidgetShell treatment. */
|
|
9464
|
+
interface WidgetShellPresetDefinition {
|
|
9465
|
+
id: string;
|
|
9466
|
+
label: PraxisTextValue;
|
|
9467
|
+
description: PraxisTextValue;
|
|
9468
|
+
category: WidgetShellPresetCategory;
|
|
9469
|
+
appearance: NonNullable<WidgetShellConfig['appearance']>;
|
|
9470
|
+
}
|
|
9471
|
+
interface WidgetShellActionEvent {
|
|
9472
|
+
/** Action id. */
|
|
9473
|
+
id: string;
|
|
9474
|
+
/** Optional command name to dispatch to the inner widget. */
|
|
9475
|
+
command?: string;
|
|
9476
|
+
/** Optional emit name to propagate to the page builder. */
|
|
9477
|
+
emit?: string;
|
|
9478
|
+
/** Optional payload for the action. */
|
|
9479
|
+
payload?: any;
|
|
9480
|
+
/** Toggle state captured when the action was emitted. */
|
|
9481
|
+
pressed?: boolean | string;
|
|
9482
|
+
/** Original action definition, when available. */
|
|
9483
|
+
action?: WidgetShellAction;
|
|
9484
|
+
}
|
|
9485
|
+
/** Validates an authored action identity, excluding platform-owned shell controls.
|
|
9486
|
+
* Pass sibling identities without the current action. No runtime contributions are persisted.
|
|
9487
|
+
*/
|
|
9488
|
+
declare function getWidgetShellActionIdError(id: string, siblingIds?: readonly string[]): 'required' | 'duplicate' | 'reserved' | null;
|
|
9489
|
+
|
|
9289
9490
|
/**
|
|
9290
9491
|
* Host-evaluable execution profiles published by component owners.
|
|
9291
9492
|
*
|
|
@@ -9391,6 +9592,27 @@ interface ComponentConfigEditorContextResult {
|
|
|
9391
9592
|
}>;
|
|
9392
9593
|
}
|
|
9393
9594
|
type ComponentConfigEditorContextResolver = (request: ComponentConfigEditorContextRequest) => ComponentConfigEditorContextResult | Record<string, unknown> | Promise<ComponentConfigEditorContextResult | Record<string, unknown>>;
|
|
9595
|
+
interface ComponentConfigEditorDefinitionBase {
|
|
9596
|
+
/** Optional title shown by hosts when opening the editor. */
|
|
9597
|
+
title?: string;
|
|
9598
|
+
/**
|
|
9599
|
+
* Optional transient authoring context resolver.
|
|
9600
|
+
*
|
|
9601
|
+
* The host resolves this immediately before opening the editor and passes
|
|
9602
|
+
* the result separately from persisted widget inputs. The returned context
|
|
9603
|
+
* must not be serialized into widget.definition.inputs.
|
|
9604
|
+
*/
|
|
9605
|
+
contextResolver?: ComponentConfigEditorContextResolver;
|
|
9606
|
+
}
|
|
9607
|
+
type ComponentConfigEditorDefinition = ComponentConfigEditorDefinitionBase & ({
|
|
9608
|
+
/** Eager component used by settings-panel to edit this component's inputs. */
|
|
9609
|
+
component: Type<unknown>;
|
|
9610
|
+
loadComponent?: never;
|
|
9611
|
+
} | {
|
|
9612
|
+
component?: never;
|
|
9613
|
+
/** Owner-provided lazy loader used when the editor should stay outside runtime bundles. */
|
|
9614
|
+
loadComponent: () => Promise<Type<unknown>>;
|
|
9615
|
+
});
|
|
9394
9616
|
/**
|
|
9395
9617
|
* Documentation metadata for dynamically added components.
|
|
9396
9618
|
*
|
|
@@ -9478,20 +9700,7 @@ interface ComponentDocMeta {
|
|
|
9478
9700
|
/** Optional canonical semantic ports that complement legacy inputs/outputs metadata. */
|
|
9479
9701
|
ports?: PortContract[];
|
|
9480
9702
|
/** Optional settings-panel editor for the component input contract. */
|
|
9481
|
-
configEditor?:
|
|
9482
|
-
/** Component used by settings-panel to edit this component's inputs. */
|
|
9483
|
-
component: Type<unknown>;
|
|
9484
|
-
/** Optional title shown by hosts when opening the editor. */
|
|
9485
|
-
title?: string;
|
|
9486
|
-
/**
|
|
9487
|
-
* Optional transient authoring context resolver.
|
|
9488
|
-
*
|
|
9489
|
-
* The host resolves this immediately before opening the editor and passes
|
|
9490
|
-
* the result separately from persisted widget inputs. The returned context
|
|
9491
|
-
* must not be serialized into widget.definition.inputs.
|
|
9492
|
-
*/
|
|
9493
|
-
contextResolver?: ComponentConfigEditorContextResolver;
|
|
9494
|
-
};
|
|
9703
|
+
configEditor?: ComponentConfigEditorDefinition;
|
|
9495
9704
|
/** Optional canonical AI authoring manifest reference published by the component owner. */
|
|
9496
9705
|
authoringManifestRef?: {
|
|
9497
9706
|
/** Component id used by the manifest registry/backend. */
|
|
@@ -9517,6 +9726,8 @@ interface ComponentDocMeta {
|
|
|
9517
9726
|
description?: string;
|
|
9518
9727
|
icon?: string;
|
|
9519
9728
|
inputs?: Record<string, unknown>;
|
|
9729
|
+
/** Initial composition shell, cloned into each inserted widget; not a component input. */
|
|
9730
|
+
shell?: WidgetShellConfig;
|
|
9520
9731
|
}>;
|
|
9521
9732
|
/** Source library for the component */
|
|
9522
9733
|
lib?: string;
|
|
@@ -11708,6 +11919,7 @@ interface AnalyticsSchemaContractRequest {
|
|
|
11708
11919
|
}
|
|
11709
11920
|
declare class AnalyticsSchemaContractService {
|
|
11710
11921
|
private readonly apiUrl;
|
|
11922
|
+
private readonly schemaTransportOptions;
|
|
11711
11923
|
constructor(apiUrl: ApiUrlConfig);
|
|
11712
11924
|
getAnalytics(request: AnalyticsSchemaContractRequest): Promise<PraxisXUiAnalytics>;
|
|
11713
11925
|
private buildSchemasBaseUrl;
|
|
@@ -12411,12 +12623,17 @@ interface SettingsPanelRef<T = any> {
|
|
|
12411
12623
|
}
|
|
12412
12624
|
interface SettingsPanelOpenContent<TInputs = any> {
|
|
12413
12625
|
component: Type<any>;
|
|
12414
|
-
inputs
|
|
12626
|
+
/** Lazy inputs run once, only after opening/replacement is accepted. Never persisted. */
|
|
12627
|
+
inputs?: TInputs | (() => TInputs);
|
|
12415
12628
|
}
|
|
12416
12629
|
interface SettingsPanelOpenOptions<TInputs = any> {
|
|
12630
|
+
/** Transient owner lifetime. Destroying it cancels this panel without saving. */
|
|
12631
|
+
owner?: DestroyRef;
|
|
12417
12632
|
id: string;
|
|
12418
12633
|
title: string;
|
|
12419
12634
|
titleIcon?: string;
|
|
12635
|
+
/** Ephemeral target for inspecting the live preview without closing the editor. */
|
|
12636
|
+
previewTarget?: () => HTMLElement | null;
|
|
12420
12637
|
content: SettingsPanelOpenContent<TInputs>;
|
|
12421
12638
|
}
|
|
12422
12639
|
interface SettingsPanelBridge {
|
|
@@ -12434,13 +12651,28 @@ interface SettingsPanelBridge {
|
|
|
12434
12651
|
*/
|
|
12435
12652
|
declare const SETTINGS_PANEL_BRIDGE: InjectionToken<SettingsPanelBridge>;
|
|
12436
12653
|
declare const SETTINGS_PANEL_DATA: InjectionToken<any>;
|
|
12654
|
+
/** Transient navigation metadata; never part of the saved settings document. */
|
|
12655
|
+
interface SettingsEditorSection {
|
|
12656
|
+
/** Stable within one editor. Hosts namespace IDs when composing providers. */
|
|
12657
|
+
id: string;
|
|
12658
|
+
/** Resolved user-facing text owned by the editor's i18n catalog. */
|
|
12659
|
+
label: string;
|
|
12660
|
+
invalid?: boolean;
|
|
12661
|
+
}
|
|
12662
|
+
/** A composing host renders section navigation; the provider renders its selected fields. */
|
|
12663
|
+
declare const SETTINGS_EDITOR_SECTIONS_HOSTED: InjectionToken<boolean>;
|
|
12437
12664
|
interface SettingsValueProvider {
|
|
12665
|
+
/** Implement together to expose editor-owned topics to a composing host. Must not mutate the document. */
|
|
12666
|
+
getSettingsSections?(): readonly SettingsEditorSection[];
|
|
12667
|
+
selectSettingsSection?(id: string): void;
|
|
12438
12668
|
isDirty$: Observable<boolean>;
|
|
12439
12669
|
isValid$: Observable<boolean>;
|
|
12440
12670
|
isBusy$: Observable<boolean>;
|
|
12441
12671
|
getSettingsValue(): any;
|
|
12442
12672
|
onSave?(): any;
|
|
12443
12673
|
reset?(): void;
|
|
12674
|
+
/** Called by the document owner only after a value was successfully applied. */
|
|
12675
|
+
acceptAppliedValue?(value: unknown): void;
|
|
12444
12676
|
}
|
|
12445
12677
|
|
|
12446
12678
|
type SurfaceDrawerWidthPreset = 'narrow' | 'default' | 'wide' | 'full';
|
|
@@ -13321,6 +13553,7 @@ declare function getFormLayoutFieldNames(items: readonly FormLayoutItem[] | null
|
|
|
13321
13553
|
declare function getFormColumnFieldNames(column: FormLayoutItemsColumnLike | null | undefined): string[];
|
|
13322
13554
|
|
|
13323
13555
|
type Breakpoint = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
13556
|
+
/** Integer grid units 1..12. Omitted breakpoints inherit the preceding value. */
|
|
13324
13557
|
interface ColumnSpan {
|
|
13325
13558
|
xs?: number;
|
|
13326
13559
|
sm?: number;
|
|
@@ -13328,6 +13561,7 @@ interface ColumnSpan {
|
|
|
13328
13561
|
lg?: number;
|
|
13329
13562
|
xl?: number;
|
|
13330
13563
|
}
|
|
13564
|
+
/** Integer grid units 0..11. Omitted breakpoints inherit the preceding value. */
|
|
13331
13565
|
interface ColumnOffset {
|
|
13332
13566
|
xs?: number;
|
|
13333
13567
|
sm?: number;
|
|
@@ -13335,6 +13569,7 @@ interface ColumnOffset {
|
|
|
13335
13569
|
lg?: number;
|
|
13336
13570
|
xl?: number;
|
|
13337
13571
|
}
|
|
13572
|
+
/** Integer CSS grid ordering -12..12, matching the runtime utility classes. */
|
|
13338
13573
|
interface ColumnOrder {
|
|
13339
13574
|
xs?: number;
|
|
13340
13575
|
sm?: number;
|
|
@@ -14405,127 +14640,6 @@ declare function getEditorialThemePresetById(themeId: string): EditorialThemePre
|
|
|
14405
14640
|
declare function getEditorialCompliancePresetById(presetId: string): EditorialCompliancePreset | undefined;
|
|
14406
14641
|
declare function getEditorialSolutionPresetById(presetId: string): EditorialSolutionPreset | undefined;
|
|
14407
14642
|
|
|
14408
|
-
type WidgetShellActionPlacement = 'header' | 'window' | 'menu';
|
|
14409
|
-
interface WidgetShellAction {
|
|
14410
|
-
/** Unique action id used for tracking and default emit name. */
|
|
14411
|
-
id: string;
|
|
14412
|
-
/** Optional label for text or outlined buttons. */
|
|
14413
|
-
label?: PraxisTextValue;
|
|
14414
|
-
/** Optional icon name (Material or Praxis icon registry). */
|
|
14415
|
-
icon?: string;
|
|
14416
|
-
/** Tooltip text for the action. */
|
|
14417
|
-
tooltip?: PraxisTextValue;
|
|
14418
|
-
/** Visual style of the action button. */
|
|
14419
|
-
variant?: 'icon' | 'text' | 'outlined';
|
|
14420
|
-
/** Optional icon rendered when the action is pressed. Falls back to `icon`. */
|
|
14421
|
-
pressedIcon?: string;
|
|
14422
|
-
/** Toggle state exposed through aria-pressed for shell actions that enable/disable a runtime mode. */
|
|
14423
|
-
pressed?: boolean | string;
|
|
14424
|
-
/** Id of the runtime region controlled by the action. */
|
|
14425
|
-
ariaControls?: string;
|
|
14426
|
-
/** Expanded state for actions that reveal an alternate runtime region. */
|
|
14427
|
-
ariaExpanded?: boolean | string;
|
|
14428
|
-
/** 'menu' keeps the action in More actions regardless of header capacity. Defaults to 'header'. */
|
|
14429
|
-
placement?: WidgetShellActionPlacement;
|
|
14430
|
-
/** Output name to emit to the page builder (defaults to `shell:${id}`). */
|
|
14431
|
-
emit?: string;
|
|
14432
|
-
/** Optional command name to dispatch to the inner widget. */
|
|
14433
|
-
command?: string;
|
|
14434
|
-
/** Optional payload for action dispatch/emit. */
|
|
14435
|
-
payload?: any;
|
|
14436
|
-
/** Whether the action is disabled. */
|
|
14437
|
-
disabled?: boolean;
|
|
14438
|
-
/** Whether the action is visible. */
|
|
14439
|
-
visible?: boolean;
|
|
14440
|
-
}
|
|
14441
|
-
/**
|
|
14442
|
-
* Optional runtime contract for widgets that contribute transient actions to
|
|
14443
|
-
* their owning WidgetShell. The contribution is presentation state and must
|
|
14444
|
-
* never be persisted into the authored page definition.
|
|
14445
|
-
*/
|
|
14446
|
-
interface WidgetShellActionContributor {
|
|
14447
|
-
readonly widgetShellActions: () => ReadonlyArray<WidgetShellAction>;
|
|
14448
|
-
setWidgetShellActionHostActive?(active: boolean): void;
|
|
14449
|
-
}
|
|
14450
|
-
interface WidgetShellWindowActions {
|
|
14451
|
-
/** Show collapse/expand control in the header. */
|
|
14452
|
-
collapsible?: boolean;
|
|
14453
|
-
/** Show fullscreen toggle in the header. */
|
|
14454
|
-
fullscreen?: boolean;
|
|
14455
|
-
}
|
|
14456
|
-
type WidgetShellBodyLayout = 'content' | 'fill' | 'scroll';
|
|
14457
|
-
interface WidgetShellConfig {
|
|
14458
|
-
/** Shell type. 'dashboard-card' enables the default dashboard styling. */
|
|
14459
|
-
kind?: 'dashboard-card' | 'none';
|
|
14460
|
-
/** Optional preset id to resolve appearance defaults. */
|
|
14461
|
-
preset?: string;
|
|
14462
|
-
/** Header icon name. */
|
|
14463
|
-
icon?: string;
|
|
14464
|
-
/** Header title. */
|
|
14465
|
-
title?: PraxisTextValue;
|
|
14466
|
-
/** Header subtitle. */
|
|
14467
|
-
subtitle?: PraxisTextValue;
|
|
14468
|
-
/** Whether to show the header; defaults to true when title/icon/actions exist. */
|
|
14469
|
-
showHeader?: boolean;
|
|
14470
|
-
/** Keep the existing header within its widget while the page scrolls.
|
|
14471
|
-
* Suspended during drag authoring, collapse, overlays and scroll recovery.
|
|
14472
|
-
* Hosts with fixed chrome can set --pdx-shell-sticky-header-offset. Default false.
|
|
14473
|
-
*/
|
|
14474
|
-
stickyHeader?: boolean;
|
|
14475
|
-
/** Header + window actions. */
|
|
14476
|
-
actions?: WidgetShellAction[];
|
|
14477
|
-
/** Built-in window actions configuration. */
|
|
14478
|
-
windowActions?: WidgetShellWindowActions;
|
|
14479
|
-
/** Initial collapsed state. */
|
|
14480
|
-
collapsed?: boolean;
|
|
14481
|
-
/** Initial expanded (fullscreen) state. */
|
|
14482
|
-
expanded?: boolean;
|
|
14483
|
-
/** Initial fullscreen state. */
|
|
14484
|
-
fullscreen?: boolean;
|
|
14485
|
-
/** Defines how projected widget content should occupy the shell body. */
|
|
14486
|
-
bodyLayout?: WidgetShellBodyLayout;
|
|
14487
|
-
/** Optional appearance overrides for card, header, and typography. */
|
|
14488
|
-
appearance?: {
|
|
14489
|
-
card?: {
|
|
14490
|
-
background?: string;
|
|
14491
|
-
borderColor?: string;
|
|
14492
|
-
borderRadius?: string;
|
|
14493
|
-
shadow?: string;
|
|
14494
|
-
};
|
|
14495
|
-
header?: {
|
|
14496
|
-
background?: string;
|
|
14497
|
-
borderColor?: string;
|
|
14498
|
-
titleColor?: string;
|
|
14499
|
-
subtitleColor?: string;
|
|
14500
|
-
iconColor?: string;
|
|
14501
|
-
};
|
|
14502
|
-
body?: {
|
|
14503
|
-
background?: string;
|
|
14504
|
-
textColor?: string;
|
|
14505
|
-
padding?: string;
|
|
14506
|
-
};
|
|
14507
|
-
typography?: {
|
|
14508
|
-
titleSize?: string;
|
|
14509
|
-
titleWeight?: string;
|
|
14510
|
-
subtitleSize?: string;
|
|
14511
|
-
};
|
|
14512
|
-
};
|
|
14513
|
-
}
|
|
14514
|
-
interface WidgetShellActionEvent {
|
|
14515
|
-
/** Action id. */
|
|
14516
|
-
id: string;
|
|
14517
|
-
/** Optional command name to dispatch to the inner widget. */
|
|
14518
|
-
command?: string;
|
|
14519
|
-
/** Optional emit name to propagate to the page builder. */
|
|
14520
|
-
emit?: string;
|
|
14521
|
-
/** Optional payload for the action. */
|
|
14522
|
-
payload?: any;
|
|
14523
|
-
/** Toggle state captured when the action was emitted. */
|
|
14524
|
-
pressed?: boolean | string;
|
|
14525
|
-
/** Original action definition, when available. */
|
|
14526
|
-
action?: WidgetShellAction;
|
|
14527
|
-
}
|
|
14528
|
-
|
|
14529
14643
|
interface WidgetInstance {
|
|
14530
14644
|
key: string;
|
|
14531
14645
|
definition: WidgetDefinition;
|
|
@@ -14666,6 +14780,8 @@ interface WidgetPageLayout {
|
|
|
14666
14780
|
columns?: number;
|
|
14667
14781
|
/** CSS gap value for grid spacing (e.g., '16px'). */
|
|
14668
14782
|
gap?: string;
|
|
14783
|
+
/** Shared inline page inset (CSS length or var()). Omit to inherit --pdx-page-padding-inline; 0px removes the inset. */
|
|
14784
|
+
paddingInline?: string;
|
|
14669
14785
|
/** Optional responsive columns by breakpoint (sm/md/lg/xl). */
|
|
14670
14786
|
breakpoints?: {
|
|
14671
14787
|
sm?: number;
|
|
@@ -15589,11 +15705,20 @@ interface SurfaceOpenPreset {
|
|
|
15589
15705
|
}
|
|
15590
15706
|
declare const SURFACE_OPEN_PRESETS: SurfaceOpenPreset[];
|
|
15591
15707
|
|
|
15708
|
+
/** Finite choices from the existing ComponentDocMeta type grammar, not user intent. */
|
|
15709
|
+
declare function surfaceInputChoices(type: string): Array<string | number | boolean | null> | undefined;
|
|
15710
|
+
|
|
15592
15711
|
type SurfaceSizeField = keyof NonNullable<SurfaceOpenPayload['size']>;
|
|
15593
|
-
declare class SurfaceOpenActionEditorComponent implements OnChanges {
|
|
15712
|
+
declare class SurfaceOpenActionEditorComponent implements OnChanges, OnDestroy {
|
|
15594
15713
|
value?: SurfaceOpenPayload | null;
|
|
15595
15714
|
hostKind?: string | null;
|
|
15596
15715
|
valueChange: EventEmitter<SurfaceOpenPayload>;
|
|
15716
|
+
/** Transient validity; never part of the surface payload. */
|
|
15717
|
+
validationChange: EventEmitter<boolean>;
|
|
15718
|
+
private reportedValid;
|
|
15719
|
+
readonly contextErrorMatcher: ErrorStateMatcher;
|
|
15720
|
+
jsonErrorMatcher(name: string): ErrorStateMatcher;
|
|
15721
|
+
private reportValidity;
|
|
15597
15722
|
draft: SurfaceOpenPayload;
|
|
15598
15723
|
inputJsonDrafts: Record<string, string>;
|
|
15599
15724
|
inputErrors: Record<string, string>;
|
|
@@ -15609,12 +15734,20 @@ declare class SurfaceOpenActionEditorComponent implements OnChanges {
|
|
|
15609
15734
|
get componentOptions(): ComponentDocMeta[];
|
|
15610
15735
|
get selectedComponentMeta(): ComponentDocMeta | undefined;
|
|
15611
15736
|
get selectedInputs(): NonNullable<ComponentDocMeta['inputs']>;
|
|
15737
|
+
private groupingComponentId?;
|
|
15738
|
+
private primaryInputNames;
|
|
15739
|
+
protected get primaryInputs(): NonNullable<ComponentDocMeta['inputs']>;
|
|
15740
|
+
protected get additionalInputs(): NonNullable<ComponentDocMeta['inputs']>;
|
|
15741
|
+
private initializeInputGroups;
|
|
15612
15742
|
get bindingOrderText(): string;
|
|
15613
15743
|
get bindingSourceSuggestions(): string[];
|
|
15614
15744
|
get bindingTargetSuggestions(): string[];
|
|
15615
15745
|
get bindingSourceSuggestionsPreview(): string;
|
|
15616
15746
|
get bindingTargetSuggestionsPreview(): string;
|
|
15617
15747
|
ngOnChanges(changes: SimpleChanges): void;
|
|
15748
|
+
/** Discard transient text errors without publishing or changing the last valid payload. */
|
|
15749
|
+
discardInvalidDrafts(): void;
|
|
15750
|
+
ngOnDestroy(): void;
|
|
15618
15751
|
updatePresentation(value: SurfaceOpenPayload['presentation']): void;
|
|
15619
15752
|
updateTextField(field: 'title' | 'subtitle' | 'icon', value: string): void;
|
|
15620
15753
|
updateSizeField(field: SurfaceSizeField, value: string): void;
|
|
@@ -15624,6 +15757,11 @@ declare class SurfaceOpenActionEditorComponent implements OnChanges {
|
|
|
15624
15757
|
isBooleanType(type?: string): boolean;
|
|
15625
15758
|
isNumberType(type?: string): boolean;
|
|
15626
15759
|
isJsonType(type?: string): boolean;
|
|
15760
|
+
protected inputChoices: typeof surfaceInputChoices;
|
|
15761
|
+
protected inputChoiceKey(name: string, choices: Array<string | number | boolean | null>): string;
|
|
15762
|
+
protected inputChoiceCurrentText(name: string): string;
|
|
15763
|
+
protected inputChoiceLabel(value: string | number | boolean | null): string;
|
|
15764
|
+
protected updateInputChoice(name: string, choices: Array<string | number | boolean | null>, key: string): void;
|
|
15627
15765
|
getBooleanInputValue(name: string): boolean;
|
|
15628
15766
|
getScalarInputValue(name: string): any;
|
|
15629
15767
|
getJsonInputDraft(name: string): string;
|
|
@@ -15650,7 +15788,7 @@ declare class SurfaceOpenActionEditorComponent implements OnChanges {
|
|
|
15650
15788
|
private clone;
|
|
15651
15789
|
private uniqueStrings;
|
|
15652
15790
|
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceOpenActionEditorComponent, never>;
|
|
15653
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SurfaceOpenActionEditorComponent, "praxis-surface-open-action-editor", never, { "value": { "alias": "value"; "required": false; }; "hostKind": { "alias": "hostKind"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
15791
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurfaceOpenActionEditorComponent, "praxis-surface-open-action-editor", never, { "value": { "alias": "value"; "required": false; }; "hostKind": { "alias": "hostKind"; "required": false; }; }, { "valueChange": "valueChange"; "validationChange": "validationChange"; }, never, never, true, never>;
|
|
15654
15792
|
}
|
|
15655
15793
|
|
|
15656
15794
|
type AiValueKind = 'boolean' | 'string' | 'number' | 'enum' | 'expression' | 'object' | 'array';
|
|
@@ -16379,6 +16517,13 @@ declare class PraxisUserContextSummaryComponent {
|
|
|
16379
16517
|
declare const PRAXIS_USER_CONTEXT_SUMMARY_METADATA: ComponentDocMeta;
|
|
16380
16518
|
declare function providePraxisUserContextSummaryMetadata(): Provider;
|
|
16381
16519
|
|
|
16520
|
+
type Appearance = NonNullable<WidgetShellConfig['appearance']>;
|
|
16521
|
+
declare const BUILTIN_WIDGET_SHELL_PRESETS: readonly WidgetShellPresetDefinition[];
|
|
16522
|
+
/** Public ID lookup derived from the canonical catalog; no separate preset definitions. */
|
|
16523
|
+
declare const BUILTIN_SHELL_PRESETS: Record<string, Appearance>;
|
|
16524
|
+
declare function findBuiltinWidgetShellPreset(id: string | null | undefined): WidgetShellPresetDefinition | undefined;
|
|
16525
|
+
declare function resolveBuiltinWidgetShellAppearance(id: string | null | undefined): Appearance | undefined;
|
|
16526
|
+
|
|
16382
16527
|
/**
|
|
16383
16528
|
* Carrega dinamicamente um componente "widget" (de página) a partir de um id registrado
|
|
16384
16529
|
* no ComponentMetadataRegistry e aplica bindings declarados em JSON (WidgetDefinition).
|
|
@@ -16407,6 +16552,7 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
16407
16552
|
private shellActionContributionEffect?;
|
|
16408
16553
|
private shellActionContributor?;
|
|
16409
16554
|
private destroyed;
|
|
16555
|
+
getWidgetShellActionAvailability(action: WidgetShellAction): Pick<WidgetShellAction, 'disabled' | 'tooltip'> | undefined;
|
|
16410
16556
|
/** Dispatch a shell action to the inner widget instance when supported. */
|
|
16411
16557
|
dispatchAction(action: WidgetShellActionEvent): boolean;
|
|
16412
16558
|
ngOnInit(): void;
|
|
@@ -16447,8 +16593,6 @@ declare class DynamicWidgetLoaderDirective implements OnInit, OnChanges, OnDestr
|
|
|
16447
16593
|
}
|
|
16448
16594
|
|
|
16449
16595
|
type ActionList = WidgetShellAction[];
|
|
16450
|
-
type Appearance = WidgetShellConfig['appearance'];
|
|
16451
|
-
declare const BUILTIN_SHELL_PRESETS: Record<string, NonNullable<Appearance>>;
|
|
16452
16596
|
declare class WidgetShellComponent implements OnChanges {
|
|
16453
16597
|
protected readonly stickyAncestorHeight: i0.WritableSignal<number>;
|
|
16454
16598
|
private stickyAncestorObserver?;
|
|
@@ -16462,13 +16606,30 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
16462
16606
|
private readonly changeDetector;
|
|
16463
16607
|
private readonly destroyRef;
|
|
16464
16608
|
private readonly element;
|
|
16609
|
+
private readonly overlay;
|
|
16610
|
+
private readonly focusTraps;
|
|
16611
|
+
private readonly interactivity;
|
|
16612
|
+
private readonly transients;
|
|
16613
|
+
private windowOverlay?;
|
|
16614
|
+
private windowFocusTrap?;
|
|
16615
|
+
private releaseWindowIsolation?;
|
|
16616
|
+
private windowPlaceholder?;
|
|
16617
|
+
private windowInlineHeight;
|
|
16618
|
+
private readonly windowThemeProperties;
|
|
16465
16619
|
protected readonly scrollRecovery: i0.WritableSignal<boolean>;
|
|
16620
|
+
protected readonly focusRecovery: i0.WritableSignal<boolean>;
|
|
16466
16621
|
private scrollResizeObserver?;
|
|
16467
16622
|
private scrollMutationObserver?;
|
|
16468
16623
|
private scrollObservedElements;
|
|
16469
16624
|
private scrollObservedBody?;
|
|
16470
16625
|
private scrollFrame?;
|
|
16626
|
+
private readonly compactHeader;
|
|
16627
|
+
private headerWidthObserver?;
|
|
16628
|
+
private observeHeaderWidth;
|
|
16471
16629
|
constructor();
|
|
16630
|
+
private syncWindowOverlay;
|
|
16631
|
+
private syncWindowTheme;
|
|
16632
|
+
private releaseWindowOverlay;
|
|
16472
16633
|
private disconnectScrollGeometry;
|
|
16473
16634
|
private observeScrollGeometry;
|
|
16474
16635
|
get hostCollapsed(): boolean;
|
|
@@ -16482,6 +16643,7 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
16482
16643
|
dragSurfaceKeydown: EventEmitter<KeyboardEvent>;
|
|
16483
16644
|
readonly loader: i0.Signal<DynamicWidgetLoaderDirective | undefined>;
|
|
16484
16645
|
shellText(value: PraxisTextValue | null | undefined, fallback?: string): string;
|
|
16646
|
+
get windowAccessibleName(): string;
|
|
16485
16647
|
actionText(value: PraxisTextValue | null | undefined, fallback?: string): string;
|
|
16486
16648
|
get appearance(): WidgetShellConfig['appearance'];
|
|
16487
16649
|
collapsed: boolean;
|
|
@@ -16513,6 +16675,7 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
16513
16675
|
closeOverlay(): void;
|
|
16514
16676
|
onOverlayEscape(event: Event): void;
|
|
16515
16677
|
private restoreOverlayFocus;
|
|
16678
|
+
protected clearFocusRecovery(): void;
|
|
16516
16679
|
moreActionsLabel(): string;
|
|
16517
16680
|
private handleWindowAction;
|
|
16518
16681
|
private buildWindowActions;
|
|
@@ -16975,7 +17138,15 @@ declare function migrateLegacyCompositionLink(link: LegacyCompositionLinkInput):
|
|
|
16975
17138
|
interface CanvasSizeRequest {
|
|
16976
17139
|
width: number;
|
|
16977
17140
|
height: number;
|
|
17141
|
+
rowSpan?: number;
|
|
16978
17142
|
handle: 'south-east' | 'south-west' | 'north-east' | 'north-west';
|
|
17143
|
+
expansion?: {
|
|
17144
|
+
direction: 'east' | 'west' | 'north' | 'south' | CanvasSizeRequest['handle'];
|
|
17145
|
+
behavior: 'free-space';
|
|
17146
|
+
} | {
|
|
17147
|
+
direction: 'east' | 'west';
|
|
17148
|
+
behavior: 'reorganize';
|
|
17149
|
+
};
|
|
16979
17150
|
}
|
|
16980
17151
|
|
|
16981
17152
|
interface RenderedWidgetInstance extends WidgetInstance {
|
|
@@ -17004,6 +17175,7 @@ interface CanvasResizeHandleDefinition {
|
|
|
17004
17175
|
icon: string;
|
|
17005
17176
|
}
|
|
17006
17177
|
declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
17178
|
+
private widgetSizeTemplate?;
|
|
17007
17179
|
pageCanvasHost?: ElementRef<HTMLElement>;
|
|
17008
17180
|
page?: WidgetPageDefinition | string;
|
|
17009
17181
|
context?: Record<string, any> | null;
|
|
@@ -17041,10 +17213,12 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17041
17213
|
pageThemeMotion: WidgetPageThemePresetDefinition['motion'] | null;
|
|
17042
17214
|
pageThemeTokenStyle: Record<string, string>;
|
|
17043
17215
|
pageGap: string;
|
|
17216
|
+
pagePaddingInline: string | null;
|
|
17044
17217
|
gridTemplateColumns: string;
|
|
17045
17218
|
gridAutoRows: string;
|
|
17046
17219
|
layoutAnnouncement: string;
|
|
17047
17220
|
readonly canvasResizeHandles: readonly CanvasResizeHandleDefinition[];
|
|
17221
|
+
private resizeClickTargets;
|
|
17048
17222
|
private pageDefinition?;
|
|
17049
17223
|
/**
|
|
17050
17224
|
* Last canonical definition accepted from the host or published by the
|
|
@@ -17089,6 +17263,9 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17089
17263
|
private compositionDefinition?;
|
|
17090
17264
|
private readonly globalActions;
|
|
17091
17265
|
private readonly injector;
|
|
17266
|
+
private readonly settingsSessions;
|
|
17267
|
+
private widgetSettingsSession?;
|
|
17268
|
+
private settingsIdentityRevision;
|
|
17092
17269
|
private readonly storage;
|
|
17093
17270
|
private readonly componentKeys;
|
|
17094
17271
|
private readonly componentMetadata;
|
|
@@ -17105,6 +17282,25 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17105
17282
|
private readonly hostElement;
|
|
17106
17283
|
private readonly changeDetector;
|
|
17107
17284
|
private readonly lastCanvasResize;
|
|
17285
|
+
private widgetSettingsKey;
|
|
17286
|
+
private readonly widgetSettingsAppliedValues;
|
|
17287
|
+
private settingsShellContext;
|
|
17288
|
+
private settingsUndoProof;
|
|
17289
|
+
private sizeSettingsLastRequest;
|
|
17290
|
+
readonly sizeEditorRestoredValue: i0.WritableSignal<{
|
|
17291
|
+
width: number;
|
|
17292
|
+
height: number;
|
|
17293
|
+
rowSpan: number;
|
|
17294
|
+
handle: CanvasSizeRequest["handle"];
|
|
17295
|
+
} | null>;
|
|
17296
|
+
private readonly settingsUndoValue;
|
|
17297
|
+
private settingsShellDraft;
|
|
17298
|
+
private sizeSettingsState;
|
|
17299
|
+
private readonly sizeSettingsDirty;
|
|
17300
|
+
private readonly sizeSettingsValid;
|
|
17301
|
+
private readonly sizeSettingsBusy;
|
|
17302
|
+
readonly sizeEditorResetRevision: i0.WritableSignal<number>;
|
|
17303
|
+
private readonly sizeSettingsProvider;
|
|
17108
17304
|
readonly sizeEditorOrigin: i0.WritableSignal<HTMLElement | null>;
|
|
17109
17305
|
readonly sizeEditorSeed: i0.WritableSignal<{
|
|
17110
17306
|
key: string;
|
|
@@ -17115,9 +17311,22 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17115
17311
|
device: WidgetPageDeviceKind;
|
|
17116
17312
|
} | null>;
|
|
17117
17313
|
readonly sizeEditorError: i0.WritableSignal<string | null>;
|
|
17118
|
-
|
|
17314
|
+
readonly sizeEditorNotice: i0.WritableSignal<string | null>;
|
|
17119
17315
|
readonly sizeEditorPositions: ConnectedPosition[];
|
|
17120
17316
|
private sizeEditorResizeObserver?;
|
|
17317
|
+
private sizePreviewRevision;
|
|
17318
|
+
readonly sizePreviewTransitionPending: i0.WritableSignal<boolean>;
|
|
17319
|
+
private cornerPreview;
|
|
17320
|
+
private cornerGesturePending;
|
|
17321
|
+
private sizeEditorContentBaseline;
|
|
17322
|
+
private sizeEditorVerticalChoices;
|
|
17323
|
+
private sizeEditorSouthSignature;
|
|
17324
|
+
private sizeEditorSouthObserver?;
|
|
17325
|
+
private sizeEditorNorthMinimum;
|
|
17326
|
+
private sizeEditorNorthContentSignature;
|
|
17327
|
+
private sizeEditorReflowCanvas;
|
|
17328
|
+
private readonly projectedSizeActions;
|
|
17329
|
+
private readonly sizeSettingsEffect;
|
|
17121
17330
|
private hostResizeObserver?;
|
|
17122
17331
|
private containerWidth?;
|
|
17123
17332
|
private readonly widgetLoaders?;
|
|
@@ -17196,6 +17405,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17196
17405
|
private buildRuntimeEventId;
|
|
17197
17406
|
canCustomizeCanvas(): boolean;
|
|
17198
17407
|
canOpenPageSettings(): boolean;
|
|
17408
|
+
protected showSizeShortcut(): boolean;
|
|
17199
17409
|
canOpenWidgetShellSettings(): boolean;
|
|
17200
17410
|
canOpenWidgetComponentSettings(key: string): boolean;
|
|
17201
17411
|
protected isWidgetComponentSettingsPending(key: string): boolean;
|
|
@@ -17218,6 +17428,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17218
17428
|
widgetContextLabel(widget: WidgetInstance): string;
|
|
17219
17429
|
widgetContextTooltip(widget: WidgetInstance): string;
|
|
17220
17430
|
shouldRenderWidgetContextOverlay(widget: WidgetInstance): boolean;
|
|
17431
|
+
widgetShellSettingsContext(): Record<string, any>;
|
|
17221
17432
|
widgetShellForRender(widget: WidgetInstance): WidgetShellConfig | null | undefined;
|
|
17222
17433
|
private widgetShellWithActions;
|
|
17223
17434
|
private resolveWidgetDisplayName;
|
|
@@ -17231,7 +17442,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17231
17442
|
private isVisibleShellAction;
|
|
17232
17443
|
private areStateValuesEqual;
|
|
17233
17444
|
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
17234
|
-
|
|
17445
|
+
onWidgetShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
17235
17446
|
private handleSetInputCommand;
|
|
17236
17447
|
private handleToggleInputCommand;
|
|
17237
17448
|
private mergeOrder;
|
|
@@ -17245,6 +17456,26 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17245
17456
|
private resolveTemplate;
|
|
17246
17457
|
private lookup;
|
|
17247
17458
|
openWidgetShellSettings(key: string): void;
|
|
17459
|
+
onSizeEditorState(state: {
|
|
17460
|
+
dirty: boolean;
|
|
17461
|
+
valid: boolean;
|
|
17462
|
+
request: CanvasSizeRequest | null;
|
|
17463
|
+
}): void;
|
|
17464
|
+
private createSettingsSession;
|
|
17465
|
+
private releaseSettingsSession;
|
|
17466
|
+
private invalidateSettingsSessions;
|
|
17467
|
+
private openWidgetSettingsPanel;
|
|
17468
|
+
sizeEditorLayoutItems(): {
|
|
17469
|
+
key: string;
|
|
17470
|
+
label: string;
|
|
17471
|
+
selected: boolean;
|
|
17472
|
+
changed: boolean;
|
|
17473
|
+
before: WidgetPageCanvasItem;
|
|
17474
|
+
after: WidgetPageCanvasItem;
|
|
17475
|
+
}[];
|
|
17476
|
+
private previewSettingsShell;
|
|
17477
|
+
private validateWidgetSettings;
|
|
17478
|
+
private commitWidgetSettings;
|
|
17248
17479
|
openWidgetComponentSettings(key: string): Promise<void>;
|
|
17249
17480
|
private setWidgetComponentSettingsPending;
|
|
17250
17481
|
private captureFocusReturnTarget;
|
|
@@ -17314,14 +17545,22 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17314
17545
|
isCanvasSizeLocked(key: string): boolean;
|
|
17315
17546
|
sizeEditorWidgetLabel(): string;
|
|
17316
17547
|
sizeEditorLabel(): string;
|
|
17548
|
+
sizeCancelLabel(): string;
|
|
17549
|
+
sizeApplyLabel(): string;
|
|
17317
17550
|
sizeEditorScopeLabel(): string;
|
|
17318
17551
|
openSizeEditor(key: string): void;
|
|
17552
|
+
standaloneSizeEditorOrigin(): HTMLElement | null;
|
|
17553
|
+
canApplyStandaloneSizeEditor(): boolean;
|
|
17554
|
+
applyStandaloneSizeEditor(): void;
|
|
17319
17555
|
focusSizeEditor(overlay: OverlayRef): void;
|
|
17320
|
-
closeSizeEditor(restoreFocus: boolean): void;
|
|
17321
17556
|
onSizeEditorKeydown(event: KeyboardEvent): void;
|
|
17557
|
+
private resolveSizeEditorTarget;
|
|
17558
|
+
private prepareSizeEditor;
|
|
17559
|
+
closeSizeEditor(restoreFocus: boolean): void;
|
|
17322
17560
|
private clearSizePreview;
|
|
17323
17561
|
private resolveSizeRequest;
|
|
17324
17562
|
previewCanvasSize(request: CanvasSizeRequest | null): void;
|
|
17563
|
+
private sizeRequestNorthMinimum;
|
|
17325
17564
|
applyCanvasSize(request: CanvasSizeRequest): void;
|
|
17326
17565
|
hasCanvasResizeUndo(key: string): boolean;
|
|
17327
17566
|
private canvasResizeUndoPage;
|
|
@@ -17329,6 +17568,43 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17329
17568
|
undoCanvasResize(key: string): void;
|
|
17330
17569
|
onSelectedCanvasResizePointerDown(handle: CanvasResizeHandle, event: PointerEvent): void;
|
|
17331
17570
|
onSelectedCanvasResizeKeydown(handle: CanvasResizeHandle, event: KeyboardEvent): void;
|
|
17571
|
+
canvasFreeSpaceWidths(key: string): {
|
|
17572
|
+
east: number | null;
|
|
17573
|
+
west: number | null;
|
|
17574
|
+
};
|
|
17575
|
+
private isCornerHandle;
|
|
17576
|
+
private resolveCornerResize;
|
|
17577
|
+
canvasCornerFreeSpaceSizes(key: string): Partial<Record<CanvasSizeRequest['handle'], {
|
|
17578
|
+
width: number;
|
|
17579
|
+
height: number;
|
|
17580
|
+
}>>;
|
|
17581
|
+
canvasCornerUnavailable(key: string): string | null;
|
|
17582
|
+
private cornerPlacement;
|
|
17583
|
+
private captureCornerRects;
|
|
17584
|
+
private captureCornerProof;
|
|
17585
|
+
private validateCornerPreview;
|
|
17586
|
+
private rejectCornerPreview;
|
|
17587
|
+
private captureCornerContentSignature;
|
|
17588
|
+
private previewCornerResize;
|
|
17589
|
+
private settingsRestorePage;
|
|
17590
|
+
private validateSettingsRestore;
|
|
17591
|
+
private stageSettingsUndo;
|
|
17592
|
+
private undoCornerResize;
|
|
17593
|
+
/** Private content observation for preview revalidation and undo; never authored or logged. */
|
|
17594
|
+
private captureCanvasContentBaseline;
|
|
17595
|
+
/** Observed eligibility stays local; authored dimensions remain authoritative in the pure resolver. */
|
|
17596
|
+
private captureSouthContext;
|
|
17597
|
+
private resolveSouthResize;
|
|
17598
|
+
private observeSouthPreview;
|
|
17599
|
+
canvasSouthFreeSpaceHeight(key: string): number | null;
|
|
17600
|
+
canvasSouthUnavailable(key: string): string | null;
|
|
17601
|
+
canvasNorthFreeSpaceHeight(key: string): number | null;
|
|
17602
|
+
canvasNorthUnavailable(key: string): string | null;
|
|
17603
|
+
canvasExpandWidths(key: string): {
|
|
17604
|
+
east: number | null;
|
|
17605
|
+
west: number | null;
|
|
17606
|
+
};
|
|
17607
|
+
onSelectedCanvasResizeDoubleClick(handle: CanvasResizeHandle, event: MouseEvent): void;
|
|
17332
17608
|
selectCanvasWidget(widgetKey: string): void;
|
|
17333
17609
|
getPageSnapshot(): WidgetPageDefinition;
|
|
17334
17610
|
isCanvasWidgetBlocked(widgetKey: string): boolean;
|
|
@@ -17356,6 +17632,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17356
17632
|
hasResizeFeedback(): boolean;
|
|
17357
17633
|
resizeFeedbackLabel(state: 'valid' | 'minimum' | 'blocked'): string;
|
|
17358
17634
|
private updateCanvasResize;
|
|
17635
|
+
private applyCanvasResizePlacement;
|
|
17359
17636
|
private resolveCanvasTarget;
|
|
17360
17637
|
private applyCanvasDrag;
|
|
17361
17638
|
private applyCanvasResize;
|
|
@@ -17365,6 +17642,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
17365
17642
|
dragWidgetLabel(): string;
|
|
17366
17643
|
resizeWidgetLabel(): string;
|
|
17367
17644
|
resizeHandleLabel(handle: CanvasResizeHandle): string;
|
|
17645
|
+
resizeHandleTooltip(handle: CanvasResizeHandle): string;
|
|
17368
17646
|
private canvasAnnouncement;
|
|
17369
17647
|
private blockedCanvasAnnouncement;
|
|
17370
17648
|
private canvasSwapAnnouncement;
|
|
@@ -17982,12 +18260,26 @@ declare class MemoryCacheAdapter implements CacheAdapter {
|
|
|
17982
18260
|
|
|
17983
18261
|
interface GetSchemaParams extends SchemaIdParams {
|
|
17984
18262
|
baseUrl: string;
|
|
18263
|
+
/** Cancels this caller; other callers sharing the request remain subscribed. */
|
|
18264
|
+
signal?: AbortSignal;
|
|
17985
18265
|
}
|
|
18266
|
+
declare const DEFAULT_SCHEMA_REQUEST_TIMEOUT_MS = 30000;
|
|
18267
|
+
interface SchemaMetadataClientOptions {
|
|
18268
|
+
/** Deadline for the complete read, including response body and a 304 refetch. Default 30000 ms; 0 disables it. */
|
|
18269
|
+
requestTimeoutMs?: number;
|
|
18270
|
+
}
|
|
18271
|
+
/** Host transport policy for Angular schema consumers. Direct clients pass constructor options. */
|
|
18272
|
+
declare const SCHEMA_METADATA_CLIENT_OPTIONS: InjectionToken<SchemaMetadataClientOptions>;
|
|
17986
18273
|
declare class SchemaMetadataClient {
|
|
17987
|
-
private cache;
|
|
17988
|
-
private inFlight;
|
|
17989
|
-
|
|
18274
|
+
private readonly cache;
|
|
18275
|
+
private readonly inFlight;
|
|
18276
|
+
private readonly requestTimeoutMs;
|
|
18277
|
+
constructor(cache: CacheAdapter, options?: SchemaMetadataClientOptions);
|
|
17990
18278
|
getSchema(params: GetSchemaParams): Promise<CacheEntry>;
|
|
18279
|
+
private startRequest;
|
|
18280
|
+
private subscribe;
|
|
18281
|
+
private readSchema;
|
|
18282
|
+
private abortError;
|
|
17991
18283
|
}
|
|
17992
18284
|
|
|
17993
18285
|
declare function buildBaseFormField(def: FieldDefinition): FieldMetadata;
|
|
@@ -18072,5 +18364,24 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
18072
18364
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
18073
18365
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
18074
18366
|
|
|
18075
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, COMPONENT_METADATA_REGISTRY_I18N_CONFIG, COMPONENT_METADATA_REGISTRY_I18N_NAMESPACE, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentAuthoringManifestProjectionError, ComponentKeyService, ComponentMetadataRegistry, ComponentRuntimeProfileService, CompositionRuntimeFacade, CompositionValidatorService, 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, GOVERNED_COLOR_PALETTE_OPTIONS, GenericCrudService, GlobalActionService, GlobalConfigService, GovernedColorPaletteService, 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_ACTION_CONTROL_DEFAULTS, PRAXIS_ACTION_CONTROL_VARS, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_COLLECTION_SEARCH_DEFAULTS, PRAXIS_COLLECTION_SEARCH_VARS, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, PRAXIS_RELATED_RESOURCE_OUTLET_AUTHORING_MANIFEST, PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA, PRAXIS_RELATED_RESOURCE_OUTLET_PORTS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS, PRAXIS_TABLE_DETAIL_INLINE_RENDERERS, PRAXIS_TABLE_DETAIL_RESOURCE_RESOLVER, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_THEME_SURFACE_DEFAULTS, PRAXIS_THEME_SURFACE_VARS, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconButtonComponent, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRelatedResourceOutletComponent, PraxisRelatedResourceOutletConfigEditorComponent, PraxisResourceIdentityComponent, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RelatedResourceSurfaceResolverService, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceRecordOpenError, ResourceRecordOpenService, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_DRAWER_CONTENT_DATA, SURFACE_DRAWER_REF, SURFACE_NAVIGATION_I18N_CONFIG, SURFACE_NAVIGATION_I18N_NAMESPACE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceNavigationError, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, SurfaceOutletRegistryService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageCompositionFactory, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisActionControlCss, buildPraxisCollectionSearchCss, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildPraxisThemeSurfaceCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, canonicalJsonSha256, canonicalJsonStringify, 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, getGlobalActionProviderEvidence, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getPraxisTableCellVisualizationConstraint, getPraxisTableCellVisualizationGuidance, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isDomainRuleSnapshotProblemResponse, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionProviderOperational, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisI18nMessageDescriptor, isPraxisPresentationVisualizationTableSafe, isPraxisRuntimeGlobalActionEffect, isProgrammaticDateRangePreset, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isStaticDateRangePreset, isSurfaceNavigationError, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, markGlobalActionProviderOperational, matchFieldValidator, materializeFormLayoutFromMetadata, materializeGovernedPaletteColors, materializeGovernedPaletteEntries, materializeResourceIdentity, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, nestedPortPathIdentity, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldAccessMetadata, normalizeFieldConstraints, normalizeFieldPresentation, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLayoutPolicy, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisPresentationVisualization, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeReactiveDeterminations, normalizeResourceAvailabilityReasonCode, normalizeResourceIdentityContract, normalizeStart, normalizeSurfaceOperationContext, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, projectComponentAuthoringManifest, projectGroupedCommandPartialRows, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisEnterpriseRuntimeContext, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRelatedResourceOutletMetadata, providePraxisRichTextBlockMetadata, providePraxisTelemetry, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, renderPraxisPresentationVisualizationHtml, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveColumnTypeFromFieldDefinition, resolveControlTypeAlias, resolveDateRangeShortcutPreset, resolveDateRangeShortcutPresets, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveFieldPresentation, resolveGroupedCommandPartialRowSpans, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolvePraxisI18nDocument, resolveResourceAvailabilityReasonKey, resolveResourceIdentityContract, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToExcel, serializePraxisCollectionToJson, slugify, staticDateRangePresetToPreset, stripMasksHook, supportsConfigDocuments, supportsImplicitValuePresentation, syncWithServerMetadata, textSha256, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateSurfaceNavigationRejected, translateSurfaceOpenFailed, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withFormConfigSections, withMessage, withPraxisHttpLoading };
|
|
18076
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsComparisonPeriodMode, AnalyticsComparisonPeriodPreset, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigDocumentStorage, 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, CollectionActionsConfig, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentAuthoringManifestProjection, ComponentAuthoringManifestProjectionErrorCode, ComponentConfigEditorContextRequest, ComponentConfigEditorContextResolver, ComponentConfigEditorContextResult, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, ComponentRuntimeEffect, ComponentRuntimeProfile, ComponentRuntimeProfileConstraint, ComponentRuntimeProfileConstraintOperator, ComponentRuntimeProfileMatch, ComponentRuntimeProfileMismatch, ComponentRuntimeProfileResolution, ComponentRuntimeResourceReadEffect, ComponentRuntimeResourceReadOperation, CompositionLink, CompositionRuntimeFacadeOptions, CompositionValidatorContext, ConditionalValidationRule, ConfigAuthoringSource, ConfigAuthoringSourceMaterialization, ConfigAuthoringSourceProvenance, ConfigDocument, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CrudSchemaOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeShortcutPreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCatalogCandidate, DomainRuleCatalogFilters, DomainRuleCatalogPage, DomainRuleChangeWorkspace, DomainRuleChangeWorkspaceCreateRequest, DomainRuleChangeWorkspaceUpdateRequest, DomainRuleCompositionApproval, DomainRuleCompositionManifest, DomainRuleCreatedByType, DomainRuleDecision, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionAction, DomainRuleDefinitionCapabilities, DomainRuleDefinitionCapability, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExecutionSummary, DomainRuleExplainability, DomainRuleFactCatalog, DomainRuleFactDescriptor, DomainRuleFactRedaction, DomainRuleFactSensitivity, DomainRuleFactValueType, DomainRuleHostStatusSummary, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRuleOperationalTestEvidence, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleRollout, DomainRuleRolloutAvailableAction, DomainRuleRolloutCatalog, DomainRuleRolloutCatalogAction, DomainRuleRolloutCatalogItem, DomainRuleRolloutCreateRequest, DomainRuleRolloutEnforcementMode, DomainRuleRolloutPolicy, DomainRuleRolloutPolicyAction, DomainRuleRolloutPolicyCatalog, DomainRuleRolloutPolicyCatalogAction, DomainRuleRolloutPolicyCreateRequest, DomainRuleRolloutPolicyEvent, DomainRuleRolloutPolicyMutation, DomainRuleRolloutPolicyStatus, DomainRuleRolloutReadiness, DomainRuleRolloutStatus, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleSnapshotActivation, DomainRuleSnapshotAvailableAction, DomainRuleSnapshotBlocker, DomainRuleSnapshotCompositionRequest, DomainRuleSnapshotGovernanceState, DomainRuleSnapshotHeadStatus, DomainRuleSnapshotProblemResponse, DomainRuleSnapshotPublicationRequest, DomainRuleSnapshotVersion, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTestBaselineAuthority, DomainRuleTestBaselineEvidence, DomainRuleTestComparison, DomainRuleTestEvidenceEligibility, DomainRuleTestRun, DomainRuleTestRunResult, DomainRuleTestScenario, DomainRuleTestScenarioRequest, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DomainRuleWorkspaceAction, DomainRuleWorkspaceBlocker, DomainRuleWorkspaceCapabilities, DomainRuleWorkspaceLifecycleInspection, DomainRuleWorkspaceReview, DomainRuleWorkspaceReviewRequest, DomainRuleWorkspaceStatus, DraggingConfig, DynamicFormDetailSummaryPolicy, DynamicFormDetailSummaryWidthPrecedence, DynamicFormGroupedCommandOrphanFieldExpansion, DynamicFormGroupedCommandPartialRowProjection, DynamicFormGroupedCommandPartialRowStrategy, DynamicFormGroupedCommandPolicy, DynamicFormGroupedCommandSpanCandidate, DynamicFormGroupedCommandVisualRowProjection, DynamicFormLayoutDetachBehavior, DynamicFormLayoutIntent, DynamicFormLayoutLifecycle, DynamicFormLayoutPersistence, DynamicFormLayoutPolicy, DynamicFormLayoutSource, DynamicFormResponsiveBreakpoint, DynamicFormResponsiveColumns, DynamicFormSchemaLayoutPreset, DynamicFormSchemaOperation, DynamicFormSchemaType, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateAlignment, EmptyStateConfig, EmptyStateDensity, EmptyStateIconContainer, EmptyStateTone, EmptyStateVariant, EndpointConfig, EndpointRef, EnhancedValidationConfig, EnterpriseRuntimeContext, EnterpriseRuntimeContextHeaders, EnterpriseRuntimeContextSwitchCommand, EnterpriseRuntimeContextSwitchResponse, EnterpriseRuntimeNavigationNode, EnterpriseRuntimeNavigationResponse, EnterpriseRuntimeSecurityEvent, EnterpriseRuntimeSecurityEventsResponse, EnterpriseRuntimeTenant, EnterpriseRuntimeTenantsResponse, EnterpriseRuntimeUser, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldAccessEvaluationContext, FieldAccessEvaluationResult, FieldAccessMetadata, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldPresentationAppearance, FieldPresentationConfig, FieldPresentationInteractions, FieldPresentationJsonLogicEvaluator, FieldPresentationRule, FieldPresentationTone, FieldPresenterKind, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormConfigWithSections, FormCustomActionEvent, FormEntityEvent, FormFieldHelpDisplay, FormFieldLayoutItem, FormHelpPresentationConfig, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutItem, FormLayoutItemsColumnLike, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormPayloadPreviewEvent, FormPayloadPreviewReason, FormPresentationConfig, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionProviderEvidence, GlobalActionReadiness, GlobalActionReadinessProbe, GlobalActionReadinessRequirement, GlobalActionReadinessRequirementKind, 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, GovernedColorContrastEvidence, GovernedColorPalette, GovernedColorPaletteCapabilities, GovernedColorPaletteOptions, GovernedColorPalettePreview, GovernedColorPalettePreviewRequest, GovernedColorPaletteRef, GovernedColorPaletteValidation, GovernedColorPaletteVariant, GovernedColorPurpose, GovernedColorTokenEntry, GovernedColorTokenSelection, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineDistanceRadiusMetadata, InlineDistanceRadiusPreset, InlineDistanceRadiusUnit, 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, LookupSearchInputFormat, LookupSearchStrategyKind, LookupSearchStrategyMetadata, 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, MaterializedGovernedColorToken, MaterializedResourceIdentity, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedPortEndpointResolution, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAgenticTurnMetricBucket, ObservabilityAgenticTurnMetrics, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceByIdsRequestOptions, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceInvalidSortPolicy, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceSelectedReloadPolicy, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortResourceQueryFieldSource, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisActionControlTokens, PraxisAnalyticsBindings, PraxisAnalyticsComparisonBucket, PraxisAnalyticsComparisonBucketKey, PraxisAnalyticsComparisonMetricValue, PraxisAnalyticsComparisonPeriodBinding, PraxisAnalyticsComparisonPeriodWindow, PraxisAnalyticsComparisonStatsRequest, PraxisAnalyticsComparisonStatsResponse, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSearchTokens, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisEnterpriseRuntimeContextOptions, PraxisEnterpriseRuntimeEndpoints, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nDocumentResolveOptions, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconButtonAppearance, PraxisIconButtonPresentation, PraxisIconButtonSize, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicLimits, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisPresentationVisualizationConfig, PraxisPresentationVisualizationHtmlOptions, PraxisPresentationVisualizationItem, PraxisPresentationVisualizationKind, PraxisPresentationVisualizationPoint, PraxisPresentationVisualizationSegment, PraxisPresentationVisualizationSize, PraxisPresentationVisualizationSurface, PraxisPresentationVisualizationThreshold, PraxisPresentationVisualizationTone, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRelatedResourceOutletEditorValue, PraxisResourceEvent, PraxisResourceEventKind, PraxisResourceRowClickPayload, PraxisResourceSelectionPayload, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisRuntimeVisualMaterializationCapability, PraxisRuntimeVisualMaterializationStatus, PraxisSubmitError, PraxisSubmitErrorDetail, PraxisTableCellVisualizationConstraint, PraxisTableCellVisualizationGuidance, PraxisTextValue, PraxisThemeSurfaceTokens, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, ReactiveDeterminationCapability, ReactiveDeterminationDefinition, ReactiveDeterminationExecutionEvent, ReactiveDeterminationExecutionStatus, ReactiveDeterminationFormMode, ReactiveDeterminationInputBinding, ReactiveDeterminationOutputBinding, ReactiveDeterminationProvenance, ReactiveDeterminationProvenanceKind, ReactiveDeterminationScope, ReactiveDeterminationTrigger, ReactiveDeterminationTriggerMode, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RelatedResourceChildOperation, RelatedResourceOutletMode, RelatedResourceQueryContext, RelatedResourceResolutionState, RelatedResourceSurface, RelatedResourceSurfaceResolution, RelatedResourceSurfaceResolverRequest, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolveFieldPresentationOptions, ResolvePresetOptions, ResolveResourceIdentityOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedResourceIdentityContract, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionCollectionAtomicity, ResourceActionExecutionContract, ResourceActionInteractionMode, ResourceActionOpenAdapterOptions, ResourceActionOutcomeMode, ResourceActionRequirement, ResourceActionRiskLevel, ResourceActionScope, ResourceActionVersionTransport, ResourceAvailabilityDecision, ResourceCanonicalCapabilityOperationId, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceIdentityContract, ResourceIdentityDiagnostic, ResourceIdentityFieldMetadata, ResourceIdentityPart, ResourceIdentitySource, ResourceKnownCapabilityOperationId, ResourceLinkSource, ResourceRecordOpenFailureCode, ResourceRecordOpenRef, ResourceRecordOpenResolution, ResourceRecordOpenResolveOptions, ResourceSchemaCatalogEndpoint, ResourceSchemaCatalogExample, ResourceSchemaCatalogField, ResourceSchemaCatalogHttpMethod, ResourceSchemaCatalogOperationExamples, ResourceSchemaCatalogParameter, ResourceSchemaCatalogQuery, ResourceSchemaCatalogRelation, ResourceSchemaCatalogResponse, ResourceSchemaCatalogSchemaLinks, ResourceSchemaCatalogSchemaRef, ResourceSchemaCatalogVisual, ResourceSchemaCatalogVisualSource, ResourceStatsCapability, ResourceStatsFieldCapability, ResourceStatsMetric, ResourceStatsMode, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPresenterNode, RichPresetReferenceNode, RichPrimitiveNode, RichProgressNode, RichPropertySheetColumns, RichPropertySheetItem, RichPropertySheetNode, RichPropertySheetTone, RichRecordSummaryField, RichRecordSummaryNode, RichRelatedRecordNode, RichStatGroupLayout, RichStatGroupNode, RichStatItem, RichStatTone, RichTabsAppearance, RichTabsItem, RichTabsNode, RichTextAppearance, RichTextNode, RichTextVariant, RichTimelineColor, RichTimelineConnectorVariant, RichTimelineDensity, RichTimelineEmphasis, RichTimelineItem, RichTimelineMarkerStyle, RichTimelineMarkerVariant, RichTimelineNode, RichTimelineOrder, RichTimelineOrientation, RichTimelinePosition, RichTimelineTextAppearance, RowAction, RowActionsConfig, RuleContextRoot, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SemanticCompositionLink, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, StaticDateRangePreset, StaticDateRangePresetTone, StaticPresetResolutionOptions, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerFrameRef, SurfaceDrawerNavigationFrame, SurfaceDrawerNavigationGuard, SurfaceDrawerNavigationState, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceLifecycleCondition, SurfaceLifecycleOutcomeBinding, SurfaceLifecyclePolicy, SurfaceNavigationFailureCode, SurfaceNavigationOperation, SurfaceOpenPayload, SurfaceOpenPreset, SurfaceOperationContext, SurfaceOperationRelationship, SurfaceOperationResourceRef, SurfaceOutcome, SurfaceOutcomeKind, SurfaceOutletRegistration, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAiAssistantConfig, TableAiConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineNodeResolverDefinition, TableDetailInlineRendererContext, TableDetailInlineRendererDefinition, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailResourceDocument, TableDetailResourceResolver, TableDetailResourceResolverRequest, TableDetailResourceResolverResult, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableSchemaColumnProjectionConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarActionEvent, ToolbarActionTarget, ToolbarActionTargetCardinality, ToolbarActionTargetScope, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageAuthoringCapabilities, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageComposition, WidgetPageCompositionDefinition, WidgetPageCompositionInput, WidgetPageCompositionState, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionContributor, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellAuthoringCapabilities, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
18367
|
+
/** Accessible navigation for editor topics. Labels and validation belong to the editor. */
|
|
18368
|
+
declare class SettingsSectionTabsComponent {
|
|
18369
|
+
readonly sections: i0.InputSignal<readonly SettingsEditorSection[]>;
|
|
18370
|
+
readonly selectedId: i0.InputSignal<string>;
|
|
18371
|
+
readonly selectedIdChange: i0.OutputEmitterRef<string>;
|
|
18372
|
+
readonly label: i0.InputSignal<string>;
|
|
18373
|
+
readonly invalidLabel: i0.InputSignal<string>;
|
|
18374
|
+
readonly panelId: i0.InputSignal<string>;
|
|
18375
|
+
readonly columns: i0.WritableSignal<number>;
|
|
18376
|
+
private readonly element;
|
|
18377
|
+
private readonly destroyRef;
|
|
18378
|
+
constructor();
|
|
18379
|
+
private readonly instanceId;
|
|
18380
|
+
tabId(id: string): string;
|
|
18381
|
+
navigate(event: KeyboardEvent, id: string): void;
|
|
18382
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsSectionTabsComponent, never>;
|
|
18383
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SettingsSectionTabsComponent, "praxis-settings-section-tabs", never, { "sections": { "alias": "sections"; "required": true; "isSignal": true; }; "selectedId": { "alias": "selectedId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "invalidLabel": { "alias": "invalidLabel"; "required": true; "isSignal": true; }; "panelId": { "alias": "panelId"; "required": true; "isSignal": true; }; }, { "selectedIdChange": "selectedIdChange"; }, never, never, true, never>;
|
|
18384
|
+
}
|
|
18385
|
+
|
|
18386
|
+
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, BUILTIN_WIDGET_SHELL_PRESETS, COMPONENT_METADATA_REGISTRY_I18N_CONFIG, COMPONENT_METADATA_REGISTRY_I18N_NAMESPACE, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentAuthoringManifestProjectionError, ComponentKeyService, ComponentMetadataRegistry, ComponentRuntimeProfileService, CompositionRuntimeFacade, CompositionValidatorService, ConsoleLoggerSink, CrudOperationResolutionService, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_JSON_LOGIC_OPERATORS, DEFAULT_SCHEMA_REQUEST_TIMEOUT_MS, 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, GOVERNED_COLOR_PALETTE_OPTIONS, GenericCrudService, GlobalActionService, GlobalConfigService, GovernedColorPaletteService, 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_ACTION_CONTROL_DEFAULTS, PRAXIS_ACTION_CONTROL_VARS, PRAXIS_COLLECTION_EXPORT_HTTP_OPTIONS, PRAXIS_COLLECTION_EXPORT_PROVIDER, PRAXIS_COLLECTION_SEARCH_DEFAULTS, PRAXIS_COLLECTION_SEARCH_VARS, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_EXPORT_SECURITY_POLICY, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_OPTIONS, PRAXIS_ENTERPRISE_RUNTIME_CONTEXT_READY, PRAXIS_EXPORT_FORMULA_PREFIXES, PRAXIS_EXPORT_SECURITY_POLICY, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_JSON_LOGIC_OPERATORS, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_QUERY_FILTER_EXPRESSION_SCHEMA_VERSION, PRAXIS_RELATED_RESOURCE_OUTLET_AUTHORING_MANIFEST, PRAXIS_RELATED_RESOURCE_OUTLET_COMPONENT_METADATA, PRAXIS_RELATED_RESOURCE_OUTLET_PORTS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TABLE_DETAIL_INLINE_NODE_RESOLVERS, PRAXIS_TABLE_DETAIL_INLINE_RENDERERS, PRAXIS_TABLE_DETAIL_RESOURCE_RESOLVER, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_THEME_SURFACE_DEFAULTS, PRAXIS_THEME_SURFACE_VARS, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCollectionExportService, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisHttpCollectionExportProvider, PraxisI18nService, PraxisIconButtonComponent, PraxisIconDirective, PraxisIconPickerComponent, PraxisJsonLogicError, PraxisJsonLogicService, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRelatedResourceOutletComponent, PraxisRelatedResourceOutletConfigEditorComponent, PraxisResourceIdentityComponent, PraxisRichTextBlockComponent, PraxisRuntimeComponentObservationRegistryService, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RelatedResourceSurfaceResolverService, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceRecordOpenError, ResourceRecordOpenService, ResourceSurfaceOpenAdapterService, SCHEMA_METADATA_CLIENT_OPTIONS, SCHEMA_VIEWER_CONTEXT, SETTINGS_EDITOR_SECTIONS_HOSTED, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_DRAWER_CONTENT_DATA, SURFACE_DRAWER_REF, SURFACE_NAVIGATION_I18N_CONFIG, SURFACE_NAVIGATION_I18N_NAMESPACE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SettingsSectionTabsComponent, SurfaceBindingRuntimeService, SurfaceNavigationError, SurfaceOpenActionEditorComponent, SurfaceOpenMaterializerService, SurfaceOutletRegistryService, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageCompositionFactory, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, assertPraxisCollectionExportArtifact, assertPraxisRuntimeComponentObservationSerializable, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisActionControlCss, buildPraxisCollectionSearchCss, buildPraxisEffectDistinctKey, buildPraxisLayerScaleCss, buildPraxisThemeSurfaceCss, buildSchemaId, buildSchemaIdStorageKeySegment, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, canonicalJsonSha256, canonicalJsonStringify, 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, findBuiltinWidgetShellPreset, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getFormColumnFieldNames, getFormLayoutFieldNames, getGlobalActionCatalog, getGlobalActionPayloadActualType, getGlobalActionPayloadTypeIssue, getGlobalActionProviderEvidence, getGlobalActionUiSchema, getMissingGlobalActionPayloadKeys, getPraxisTableCellVisualizationConstraint, getPraxisTableCellVisualizationGuidance, getReferencedFieldMetadata, getRequiredGlobalActionPayloadKeys, getTextTransformer, getWidgetShellActionIdError, hasMeaningfulGlobalActionPayloadValue, hasPraxisCollectionExportArtifact, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isDomainRuleSnapshotProblemResponse, isEditorialComponentMeta, isEntityLookupMultiplePayloadMode, isEntityLookupPayloadMode, isEntityLookupPayloadModeCompatible, isEntityLookupResultSelectable, isEntityLookupSinglePayloadMode, isFormLayoutItem, isGlobalActionProviderOperational, isGlobalActionRef, isInlineFilterControlType, isLookupDialogSize, isLookupFilterFieldType, isLookupFilterOperator, isPraxisI18nMessageDescriptor, isPraxisPresentationVisualizationTableSafe, isPraxisRuntimeGlobalActionEffect, isProgrammaticDateRangePreset, isRangeValidForFilter, isRequiredGlobalActionParamPayloadMissing, isRequiredGlobalActionPayloadMissing, isStaticDateRangePreset, isSurfaceNavigationError, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, markGlobalActionProviderOperational, matchFieldValidator, materializeFormLayoutFromMetadata, materializeGovernedPaletteColors, materializeGovernedPaletteEntries, materializeResourceIdentity, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, migrateLegacyCompositionLink, migrateLegacyCompositionLinks, minWordsValidator, nestedPortPathIdentity, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldAccessMetadata, normalizeFieldConstraints, normalizeFieldPresentation, normalizeFormConfig, normalizeFormLayoutItems, normalizeFormMetadata, normalizeGlobalActionRef, normalizeLayoutPolicy, normalizeLookupFilterRequest, normalizePath, normalizePraxisDataQueryContext, normalizePraxisEffectPolicy, normalizePraxisPresentationVisualization, normalizePraxisQueryFilterExpression, normalizePraxisQueryFilterNode, normalizeReactiveDeterminations, normalizeResourceAvailabilityReasonCode, normalizeResourceIdentityContract, normalizeStart, normalizeSurfaceOperationContext, normalizeUnknownError, normalizeWidgetEventPath, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, projectComponentAuthoringManifest, projectGroupedCommandPartialRows, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisCollectionExportProvider, providePraxisDynamicPageMetadata, providePraxisEnterpriseRuntimeContext, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpCollectionExportProvider, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisIconDefaults, providePraxisJsonLogicOperator, providePraxisJsonLogicOperatorOverride, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRelatedResourceOutletMetadata, providePraxisRichTextBlockMetadata, providePraxisTelemetry, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, readPraxisExportValue, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, registerPraxisRuntimeComponentObservation, removeDiacritics, renderPraxisPresentationVisualizationHtml, reportTelemetryHookFactory, requiredCheckedValidator, requiredPresenceValidator, resolveBuiltinPresets, resolveBuiltinWidgetShellAppearance, resolveColumnTypeFromFieldDefinition, resolveControlTypeAlias, resolveDateRangeShortcutPreset, resolveDateRangeShortcutPresets, resolveDefaultValuePresentationFormat, resolveEntityLookupPayloadMode, resolveFieldPresentation, resolveGroupedCommandPartialRowSpans, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisCollectionExportItems, resolvePraxisExportFields, resolvePraxisExportScope, resolvePraxisFilterCriteria, resolvePraxisI18nDocument, resolveResourceAvailabilityReasonKey, resolveResourceIdentityContract, resolveSpan, resolveTextMaskFormat, resolveTextMaskFormatFromFieldDefinition, resolveValuePresentation, resolveValuePresentationLocale, serializeEntityLookupValueForPayload, serializeOptionSourceFilterRequest, serializePraxisCollectionToCsv, serializePraxisCollectionToExcel, serializePraxisCollectionToJson, slugify, staticDateRangePresetToPreset, stripMasksHook, supportsConfigDocuments, supportsImplicitValuePresentation, syncWithServerMetadata, textSha256, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateSurfaceNavigationRejected, translateSurfaceOpenFailed, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, validateGlobalActionRef, validateGlobalActionRefs, withFormConfigSections, withMessage, withPraxisHttpLoading };
|
|
18387
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsComparisonPeriodMode, AnalyticsComparisonPeriodPreset, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigDocumentStorage, 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, CollectionActionsConfig, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentAuthoringManifest, ComponentAuthoringManifestProjection, ComponentAuthoringManifestProjectionErrorCode, ComponentConfigEditorContextRequest, ComponentConfigEditorContextResolver, ComponentConfigEditorContextResult, ComponentConfigEditorDefinition, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, ComponentPortPathSegment, ComponentRuntimeEffect, ComponentRuntimeProfile, ComponentRuntimeProfileConstraint, ComponentRuntimeProfileConstraintOperator, ComponentRuntimeProfileMatch, ComponentRuntimeProfileMismatch, ComponentRuntimeProfileResolution, ComponentRuntimeResourceReadEffect, ComponentRuntimeResourceReadOperation, CompositionLink, CompositionRuntimeFacadeOptions, CompositionValidatorContext, ConditionalValidationRule, ConfigAuthoringSource, ConfigAuthoringSourceMaterialization, ConfigAuthoringSourceProvenance, ConfigDocument, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CorePresetDescriptor, CorePresetDiscoveryRegistry, CorePresetKind, CorePresetRef, CrudConfigureOptions, CrudOperationOptions, CrudOperationResolutionContext, CrudSchemaOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeShortcutPreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, Domain360CatalogCoverage, Domain360CatalogDiagnostic, Domain360CatalogEntry, Domain360CatalogRequestOptions, Domain360CatalogResponse, Domain360CatalogRoute, DomainCatalogContextHint, DomainCatalogContextHintIntent, DomainCatalogContextHintItemType, DomainCatalogGovernanceContext, DomainCatalogGovernancePayload, DomainCatalogGovernanceRequestOptions, DomainCatalogItem, DomainCatalogRecommendedAuthoringFlow, DomainCatalogRecommendedRuleType, DomainCatalogRelationshipHint, DomainCatalogRelease, DomainCatalogRequestOptions, DomainCatalogResourceProbe, DomainKnowledgeAuthorType, DomainKnowledgeChangeSet, DomainKnowledgeChangeSetFilters, DomainKnowledgeChangeSetRequest, DomainKnowledgeChangeSetStatus, DomainKnowledgeChangeSetTarget, DomainKnowledgeChangeSetTimelineEventResponse, DomainKnowledgeChangeSetTimelineResponse, DomainKnowledgeOperationType, DomainKnowledgePatchOperation, DomainKnowledgeRequestOptions, DomainKnowledgeSafeOperationSummary, DomainKnowledgeStatusTransitionRequest, DomainKnowledgeTimelineEventVisibility, DomainKnowledgeTimelineRichContentOptions, DomainKnowledgeValidationIssue, DomainKnowledgeValidationResponse, DomainKnowledgeValidationStatus, DomainRuleAppliedByType, DomainRuleCatalogCandidate, DomainRuleCatalogFilters, DomainRuleCatalogPage, DomainRuleChangeWorkspace, DomainRuleChangeWorkspaceCreateRequest, DomainRuleChangeWorkspaceUpdateRequest, DomainRuleCompositionApproval, DomainRuleCompositionManifest, DomainRuleCreatedByType, DomainRuleDecision, DomainRuleDecisionDiagnostics, DomainRuleDefinition, DomainRuleDefinitionAction, DomainRuleDefinitionCapabilities, DomainRuleDefinitionCapability, DomainRuleDefinitionFilters, DomainRuleDefinitionRequest, DomainRuleExecutionSummary, DomainRuleExplainability, DomainRuleFactCatalog, DomainRuleFactDescriptor, DomainRuleFactRedaction, DomainRuleFactSensitivity, DomainRuleFactValueType, DomainRuleHostStatusSummary, DomainRuleIntakeRequest, DomainRuleIntakeResponse, DomainRuleMaterialization, DomainRuleMaterializationFilters, DomainRuleMaterializationOutcomeResolution, DomainRuleMaterializationRequest, DomainRuleOperationalTestEvidence, DomainRulePublicationDiagnostics, DomainRulePublicationMaterializationOutcome, DomainRulePublicationRequest, DomainRulePublicationResponse, DomainRuleRequestOptions, DomainRuleRollout, DomainRuleRolloutAvailableAction, DomainRuleRolloutCatalog, DomainRuleRolloutCatalogAction, DomainRuleRolloutCatalogItem, DomainRuleRolloutCreateRequest, DomainRuleRolloutEnforcementMode, DomainRuleRolloutPolicy, DomainRuleRolloutPolicyAction, DomainRuleRolloutPolicyCatalog, DomainRuleRolloutPolicyCatalogAction, DomainRuleRolloutPolicyCreateRequest, DomainRuleRolloutPolicyEvent, DomainRuleRolloutPolicyMutation, DomainRuleRolloutPolicyStatus, DomainRuleRolloutReadiness, DomainRuleRolloutStatus, DomainRuleSimulationRequest, DomainRuleSimulationResponse, DomainRuleSnapshotActivation, DomainRuleSnapshotAvailableAction, DomainRuleSnapshotBlocker, DomainRuleSnapshotCompositionRequest, DomainRuleSnapshotGovernanceState, DomainRuleSnapshotHeadStatus, DomainRuleSnapshotProblemResponse, DomainRuleSnapshotPublicationRequest, DomainRuleSnapshotVersion, DomainRuleStatus, DomainRuleStatusTransitionRequest, DomainRuleTargetLayer, DomainRuleTestBaselineAuthority, DomainRuleTestBaselineEvidence, DomainRuleTestComparison, DomainRuleTestEvidenceEligibility, DomainRuleTestRun, DomainRuleTestRunResult, DomainRuleTestScenario, DomainRuleTestScenarioRequest, DomainRuleTimelineEventResponse, DomainRuleTimelineEventVisibility, DomainRuleTimelineResponse, DomainRuleTimelineRichContentOptions, DomainRuleWorkspaceAction, DomainRuleWorkspaceBlocker, DomainRuleWorkspaceCapabilities, DomainRuleWorkspaceLifecycleInspection, DomainRuleWorkspaceReview, DomainRuleWorkspaceReviewRequest, DomainRuleWorkspaceStatus, DraggingConfig, DynamicFormDetailSummaryPolicy, DynamicFormDetailSummaryWidthPrecedence, DynamicFormGroupedCommandOrphanFieldExpansion, DynamicFormGroupedCommandPartialRowProjection, DynamicFormGroupedCommandPartialRowStrategy, DynamicFormGroupedCommandPolicy, DynamicFormGroupedCommandSpanCandidate, DynamicFormGroupedCommandVisualRowProjection, DynamicFormLayoutDetachBehavior, DynamicFormLayoutIntent, DynamicFormLayoutLifecycle, DynamicFormLayoutPersistence, DynamicFormLayoutPolicy, DynamicFormLayoutSource, DynamicFormResponsiveBreakpoint, DynamicFormResponsiveColumns, DynamicFormSchemaLayoutPreset, DynamicFormSchemaOperation, DynamicFormSchemaType, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateAlignment, EmptyStateConfig, EmptyStateDensity, EmptyStateIconContainer, EmptyStateTone, EmptyStateVariant, EndpointConfig, EndpointRef, EnhancedValidationConfig, EnterpriseRuntimeContext, EnterpriseRuntimeContextHeaders, EnterpriseRuntimeContextSwitchCommand, EnterpriseRuntimeContextSwitchResponse, EnterpriseRuntimeNavigationNode, EnterpriseRuntimeNavigationResponse, EnterpriseRuntimeSecurityEvent, EnterpriseRuntimeSecurityEventsResponse, EnterpriseRuntimeTenant, EnterpriseRuntimeTenantsResponse, EnterpriseRuntimeUser, EntityLookupActionsMetadata, EntityLookupCollectionMetadata, EntityLookupDensity, EntityLookupDisplayFieldMetadata, EntityLookupDisplayFieldPresentation, EntityLookupDisplayMetadata, EntityLookupDisplayPreset, EntityLookupMultiplePayloadMode, EntityLookupPayloadMode, EntityLookupResult, EntityLookupResultExtra, EntityLookupResultLayout, EntityLookupResultState, EntityLookupResultStateContext, EntityLookupRichFieldMetadata, EntityLookupSelectedLayout, EntityLookupSinglePayloadMode, EntityLookupUsage, EntityRef, ExcelExportConfig, ExcelStylingConfig, ExplicitCrudResolutionContract, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldAccessEvaluationContext, FieldAccessEvaluationResult, FieldAccessMetadata, FieldArrayCollectionValidation, FieldArrayConfig, FieldArrayOperations, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldPresentationAppearance, FieldPresentationConfig, FieldPresentationInteractions, FieldPresentationJsonLogicEvaluator, FieldPresentationRule, FieldPresentationTone, FieldPresenterKind, FieldSelectorRegistryMap, FieldSource, FieldSubmitPolicy, FieldsetLayout, FilterOptions, FilterPresentationConfig, 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, FormPayloadPreviewEvent, FormPayloadPreviewReason, FormPresentationConfig, FormReadyEvent, FormRichContentLayoutItem, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionEndpointRef, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionProviderEvidence, GlobalActionReadiness, GlobalActionReadinessProbe, GlobalActionReadinessRequirement, GlobalActionReadinessRequirementKind, 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, GovernedColorContrastEvidence, GovernedColorPalette, GovernedColorPaletteCapabilities, GovernedColorPaletteOptions, GovernedColorPalettePreview, GovernedColorPalettePreviewRequest, GovernedColorPaletteRef, GovernedColorPaletteValidation, GovernedColorPaletteVariant, GovernedColorPurpose, GovernedColorTokenEntry, GovernedColorTokenSelection, GroupingConfig, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HeroVisualSummary, HeroVisualSummaryEvent, HeroVisualSummaryItem, HeroVisualTone, HookResolver, InlineDistanceRadiusMetadata, InlineDistanceRadiusPreset, InlineDistanceRadiusUnit, 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, LookupSearchInputFormat, LookupSearchStrategyKind, LookupSearchStrategyMetadata, 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, MaterializedGovernedColorToken, MaterializedResourceIdentity, MemoryConfig, MessageTemplate, MessagesConfig, NavigationOpenRoutePayload, NestedFieldsetLayout, NestedPortCatalogDiagnostic, NestedPortCatalogRegistry, NestedPortCatalogResult, NestedPortEndpointResolution, NestedWidgetInputPatchResult, NestedWidgetResolution, NormalizedError, NumberLocaleConfig, ObservabilityAgenticTurnMetricBucket, ObservabilityAgenticTurnMetrics, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceByIdsRequestOptions, OptionSourceCachePolicy, OptionSourceFilterRequest, OptionSourceInvalidSortPolicy, OptionSourceMetadata, OptionSourceRequestOptions, OptionSourceSearchMode, OptionSourceSelectedReloadPolicy, OptionSourceType, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortResourceQueryFieldSource, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisActionControlTokens, PraxisAnalyticsBindings, PraxisAnalyticsComparisonBucket, PraxisAnalyticsComparisonBucketKey, PraxisAnalyticsComparisonMetricValue, PraxisAnalyticsComparisonPeriodBinding, PraxisAnalyticsComparisonPeriodWindow, PraxisAnalyticsComparisonStatsRequest, PraxisAnalyticsComparisonStatsResponse, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisBuiltinCustomRuleOperator, PraxisCollectionComponentType, PraxisCollectionExportCsvOptions, PraxisCollectionExportExcelOptions, PraxisCollectionExportField, PraxisCollectionExportFieldPresentation, PraxisCollectionExportFormatOptions, PraxisCollectionExportHttpProviderOptions, PraxisCollectionExportLocalization, PraxisCollectionExportProvider, PraxisCollectionExportRequest, PraxisCollectionExportResult, PraxisCollectionExportSource, PraxisCollectionPaginationState, PraxisCollectionSearchTokens, PraxisCollectionSelectionMode, PraxisCollectionSelectionState, PraxisCollectionSortDescriptor, PraxisConditionalEffectDiagnostic, PraxisConditionalRule, PraxisConditionalRuleMatchInput, PraxisCustomRuleOperator, PraxisDataQueryContext, PraxisDataQueryContextMeta, PraxisEffectDistinctKeyInput, PraxisEffectPolicy, PraxisEnterpriseRuntimeContextOptions, PraxisEnterpriseRuntimeEndpoints, PraxisExportFormat, PraxisExportScope, PraxisExportSecurityPolicy, PraxisExportSortDirection, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHostRuleOperator, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nDocumentResolveOptions, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisIconButtonAppearance, PraxisIconButtonPresentation, PraxisIconButtonSize, PraxisIconDefaultsOptions, PraxisJsonLogicEvaluationContext, PraxisJsonLogicEvaluationOptions, PraxisJsonLogicEvaluationResult, PraxisJsonLogicIssueCode, PraxisJsonLogicLimits, PraxisJsonLogicOperatorDefinition, PraxisJsonLogicOperatorDescriptor, PraxisJsonLogicOperatorHelpers, PraxisJsonLogicOperatorMetadata, PraxisJsonLogicOperatorPurity, PraxisJsonLogicOperatorReturnType, PraxisJsonLogicOperatorSource, PraxisJsonLogicRuntimeValue, PraxisJsonLogicValidationIssue, PraxisJsonLogicValidationOptions, PraxisJsonLogicValidationResult, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisNativeJsonLogicOperator, PraxisPresentationVisualizationConfig, PraxisPresentationVisualizationHtmlOptions, PraxisPresentationVisualizationItem, PraxisPresentationVisualizationKind, PraxisPresentationVisualizationPoint, PraxisPresentationVisualizationSegment, PraxisPresentationVisualizationSize, PraxisPresentationVisualizationSurface, PraxisPresentationVisualizationThreshold, PraxisPresentationVisualizationTone, PraxisQueryFilterExpression, PraxisQueryFilterGovernance, PraxisQueryFilterGroup, PraxisQueryFilterNode, PraxisQueryFilterPredicate, PraxisQueryFilterPredicateOperator, PraxisQueryFilterPredicateSource, PraxisRelatedResourceOutletEditorValue, PraxisResourceEvent, PraxisResourceEventKind, PraxisResourceRowClickPayload, PraxisResourceSelectionPayload, PraxisRuleContextDescriptor, PraxisRuleOperator, PraxisRuntimeComponentAffordanceHints, PraxisRuntimeComponentAuthoringManifestRef, PraxisRuntimeComponentIdentity, PraxisRuntimeComponentLifecycle, PraxisRuntimeComponentObservationClaim, PraxisRuntimeComponentObservationClaimKind, PraxisRuntimeComponentObservationDiagnostics, PraxisRuntimeComponentObservationEnvelope, PraxisRuntimeComponentObservationProvider, PraxisRuntimeComponentObservationRegisterOptions, PraxisRuntimeComponentObservationRegistry, PraxisRuntimeComponentObservationSchemaVersion, PraxisRuntimeComponentRefs, PraxisRuntimeComponentRegistration, PraxisRuntimeComponentSchemaFieldDescriptor, PraxisRuntimeComponentSnapshotDigest, PraxisRuntimeConditionalEffectRule, PraxisRuntimeEffectTrigger, PraxisRuntimeGlobalActionEffect, PraxisRuntimeVisualMaterializationCapability, PraxisRuntimeVisualMaterializationStatus, PraxisSubmitError, PraxisSubmitErrorDetail, PraxisTableCellVisualizationConstraint, PraxisTableCellVisualizationGuidance, PraxisTextValue, PraxisThemeSurfaceTokens, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderMark, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderScalePreset, RangeSliderSemanticBand, RangeSliderSemanticTone, RangeSliderTrackMode, RangeSliderValue, RangeSliderValueFormat, RangeSliderValueLabelDisplay, ReactiveDeterminationCapability, ReactiveDeterminationDefinition, ReactiveDeterminationExecutionEvent, ReactiveDeterminationExecutionStatus, ReactiveDeterminationFormMode, ReactiveDeterminationInputBinding, ReactiveDeterminationOutputBinding, ReactiveDeterminationProvenance, ReactiveDeterminationProvenanceKind, ReactiveDeterminationScope, ReactiveDeterminationTrigger, ReactiveDeterminationTriggerMode, RecordRelatedSurfaceContext, RecordRelatedSurfaceContextPack, RecordRelatedSurfaceEndpoint, RecordRelatedSurfaceOperationId, RelatedResourceChildOperation, RelatedResourceOutletMode, RelatedResourceQueryContext, RelatedResourceResolutionState, RelatedResourceSurface, RelatedResourceSurfaceResolution, RelatedResourceSurfaceResolverRequest, RenderingConfig, ResizingConfig, ResolveCrudOperationRequest, ResolveFieldPresentationOptions, ResolvePresetOptions, ResolveResourceIdentityOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedCrudOperation, ResolvedCrudOperationSource, ResolvedFieldPresentation, ResolvedNestedPort, ResolvedPraxisPresentationVisualizationConfig, ResolvedResourceIdentityContract, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionCollectionAtomicity, ResourceActionExecutionContract, ResourceActionInteractionMode, ResourceActionOpenAdapterOptions, ResourceActionOutcomeMode, ResourceActionRequirement, ResourceActionRiskLevel, ResourceActionScope, ResourceActionVersionTransport, ResourceAvailabilityDecision, ResourceCanonicalCapabilityOperationId, ResourceCapabilityDigest, ResourceCapabilityOperation, ResourceCapabilityOperationId, ResourceCapabilityOperations, ResourceCapabilitySnapshot, ResourceCrudOperationId, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceExportMaxRows, ResourceIdentityContract, ResourceIdentityDiagnostic, ResourceIdentityFieldMetadata, ResourceIdentityPart, ResourceIdentitySource, ResourceKnownCapabilityOperationId, ResourceLinkSource, ResourceRecordOpenFailureCode, ResourceRecordOpenRef, ResourceRecordOpenResolution, ResourceRecordOpenResolveOptions, ResourceSchemaCatalogEndpoint, ResourceSchemaCatalogExample, ResourceSchemaCatalogField, ResourceSchemaCatalogHttpMethod, ResourceSchemaCatalogOperationExamples, ResourceSchemaCatalogParameter, ResourceSchemaCatalogQuery, ResourceSchemaCatalogRelation, ResourceSchemaCatalogResponse, ResourceSchemaCatalogSchemaLinks, ResourceSchemaCatalogSchemaRef, ResourceSchemaCatalogVisual, ResourceSchemaCatalogVisualSource, ResourceStatsCapability, ResourceStatsFieldCapability, ResourceStatsMetric, ResourceStatsMode, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceResponseCardinality, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichAccordionItem, RichAccordionNode, RichActionButtonNode, RichActionCardNode, RichActionRef, RichAvatarNode, RichBadgeNode, RichBlockBaseNode, RichBlockContextConfig, RichBlockContextScope, RichBlockHostCapabilities, RichBlockNode, RichBlockRuleSet, RichCalloutNode, RichCapabilityMode, RichCardAccessibility, RichCardDensity, RichCardInteraction, RichCardInteractionMode, RichCardMedia, RichCardMediaKind, RichCardMediaPlacement, RichCardNode, RichCardOrientation, RichCardSize, RichCardTone, RichCardVariant, RichCollapsibleCardNode, RichComposeNode, RichContentDocument, RichCtaGroupLayout, RichCtaGroupNode, RichDecisionGovernanceStatus, RichDecisionPackageEvidence, RichDecisionPackageNode, RichDecisionRisk, RichDisclosureNode, RichEmptyStateNode, RichFormLauncherNode, RichIconNode, RichImageNode, RichKeyValueItem, RichKeyValueListNode, RichLinkNode, RichLookupCardNode, RichLookupResultField, RichLookupResultNode, RichLookupResultStatus, RichMediaBlockNode, RichMetricNode, RichPageHeaderNode, 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, SchemaMetadataClientOptions, SchemaViewerContext, SelectionConfig, SemanticCompositionLink, SerializableFieldMetadata, SettingsEditorSection, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, StaticDateRangePreset, StaticDateRangePresetTone, StaticPresetResolutionOptions, SubmitPolicy, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerFrameRef, SurfaceDrawerNavigationFrame, SurfaceDrawerNavigationGuard, SurfaceDrawerNavigationState, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceLifecycleCondition, SurfaceLifecycleOutcomeBinding, SurfaceLifecyclePolicy, SurfaceNavigationFailureCode, SurfaceNavigationOperation, SurfaceOpenPayload, SurfaceOpenPreset, SurfaceOperationContext, SurfaceOperationRelationship, SurfaceOperationResourceRef, SurfaceOutcome, SurfaceOutcomeKind, SurfaceOutletRegistration, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAiAssistantConfig, TableAiConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableDetailActionBarAction, TableDetailActionBarNode, TableDetailActionNode, TableDetailAllowedNode, TableDetailBaseNode, TableDetailCardGridCardNode, TableDetailCardGridNode, TableDetailCardNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, TableDetailEmbedBaseNode, TableDetailInlineNodeResolverDefinition, TableDetailInlineRendererContext, TableDetailInlineRendererDefinition, TableDetailInlineSchemaDocument, TableDetailLayoutNode, TableDetailListItemAction, TableDetailListItemContextConfig, TableDetailListItemSchema, TableDetailListNode, TableDetailMediaBlockNode, TableDetailRefNode, TableDetailResourceDocument, TableDetailResourceResolver, TableDetailResourceResolverRequest, TableDetailResourceResolverResult, TableDetailRichListNode, TableDetailRichTextNode, TableDetailSchemaNode, TableDetailTabNode, TableDetailTabsNode, TableDetailTemplateRefNode, TableDetailTimelineItemSchema, TableDetailTimelineNode, TableDetailTimelineStaticItem, TableDetailValueNode, TableExpansionConfig, TableLocalDataModeConfig, TableSchemaColumnProjectionConfig, TableToolbarAppearanceConfig, TableToolbarAppearanceDensity, TableToolbarAppearanceDivider, TableToolbarAppearanceShape, TableToolbarAppearanceVariant, TableToolbarTokenName, TableTooltipConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarActionEvent, ToolbarActionTarget, ToolbarActionTargetCardinality, ToolbarActionTargetScope, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathNormalizeInput, WidgetEventPathNormalizeOptions, WidgetEventPathSegment, WidgetInstance, WidgetPageAuthoringCapabilities, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageComposition, WidgetPageCompositionDefinition, WidgetPageCompositionInput, WidgetPageCompositionState, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionContributor, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellAuthoringCapabilities, WidgetShellBodyLayout, WidgetShellConfig, WidgetShellPresetCategory, WidgetShellPresetDefinition, WidgetShellWindowActions, WidgetStateNode };
|