@praxisui/core 3.0.0-beta.8 → 4.0.0-beta.0
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 +56 -1
- package/fesm2022/praxisui-core.mjs +2594 -1177
- package/index.d.ts +511 -99
- package/package.json +1 -1
- package/fesm2022/praxisui-core.mjs.map +0 -1
package/index.d.ts
CHANGED
|
@@ -564,7 +564,7 @@ interface TableExpansionConfig {
|
|
|
564
564
|
sanitization?: 'strict';
|
|
565
565
|
};
|
|
566
566
|
source?: {
|
|
567
|
-
mode?: 'inline' | 'resource' | 'resourcePath';
|
|
567
|
+
mode?: 'inline' | 'resource' | 'resourcePath' | 'hypermedia';
|
|
568
568
|
inlineSchema?: Record<string, unknown>;
|
|
569
569
|
resource?: {
|
|
570
570
|
kind?: 'ui-composition' | 'form-schema' | 'table-schema' | 'dashboard-schema';
|
|
@@ -2511,6 +2511,10 @@ interface CrudOperationOptions {
|
|
|
2511
2511
|
endpointKey?: ApiEndpoint;
|
|
2512
2512
|
httpContext?: HttpContext;
|
|
2513
2513
|
}
|
|
2514
|
+
interface CrudConfigureOptions {
|
|
2515
|
+
endpointKey?: ApiEndpoint;
|
|
2516
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
2517
|
+
}
|
|
2514
2518
|
interface OptionSourceRequestOptions<ID = string | number> extends CrudOperationOptions {
|
|
2515
2519
|
includeIds?: ID[];
|
|
2516
2520
|
observeVersionHeader?: boolean;
|
|
@@ -2581,7 +2585,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
2581
2585
|
constructor(http: HttpClient, schemaNormalizer: SchemaNormalizerService, globalConfig: GlobalConfigService, apiUrlInjected: ApiUrlConfig);
|
|
2582
2586
|
private ensureSchemaCacheReady;
|
|
2583
2587
|
private get errorMessages();
|
|
2584
|
-
configure(resourcePath: string,
|
|
2588
|
+
configure(resourcePath: string, endpointKeyOrOptions?: ApiEndpoint | CrudConfigureOptions): void;
|
|
2585
2589
|
/**
|
|
2586
2590
|
* Configura endpoints personalizados para cada operação CRUD, substituindo as URLs padrão.
|
|
2587
2591
|
*
|
|
@@ -2805,6 +2809,13 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
2805
2809
|
filter(filterCriteria: any, pageable: PageableRequest, opts: FilterOptions & CrudOperationOptions): Observable<Page<T> & {
|
|
2806
2810
|
dataVersion?: string;
|
|
2807
2811
|
}>;
|
|
2812
|
+
filterResponse(filterCriteria: any, pageable: PageableRequest): Observable<RestApiResponse<Page<T>>>;
|
|
2813
|
+
filterResponse(filterCriteria: any, pageable: PageableRequest, opts: FilterOptions): Observable<RestApiResponse<Page<T>> & {
|
|
2814
|
+
dataVersion?: string;
|
|
2815
|
+
}>;
|
|
2816
|
+
filterResponse(filterCriteria: any, pageable: PageableRequest, opts: FilterOptions & CrudOperationOptions): Observable<RestApiResponse<Page<T>> & {
|
|
2817
|
+
dataVersion?: string;
|
|
2818
|
+
}>;
|
|
2808
2819
|
/** GET /by-ids */
|
|
2809
2820
|
getByIds(ids: ID[], options?: CrudOperationOptions): Observable<T[]>;
|
|
2810
2821
|
/** OPTIONS: POST /options/filter */
|
|
@@ -2916,6 +2927,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
2916
2927
|
* Mantém compatibilidade quando a API já retorna Page<T> diretamente.
|
|
2917
2928
|
*/
|
|
2918
2929
|
private unwrapPageResponse;
|
|
2930
|
+
private normalizeRestApiResponse;
|
|
2919
2931
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenericCrudService<any, any>, never>;
|
|
2920
2932
|
static ɵprov: i0.ɵɵInjectableDeclaration<GenericCrudService<any, any>>;
|
|
2921
2933
|
}
|
|
@@ -6567,6 +6579,343 @@ declare class DefaultLoadingRenderer implements PraxisLoadingRenderer {
|
|
|
6567
6579
|
static ɵprov: i0.ɵɵInjectableDeclaration<DefaultLoadingRenderer>;
|
|
6568
6580
|
}
|
|
6569
6581
|
|
|
6582
|
+
declare class PraxisLayerScaleStyleService {
|
|
6583
|
+
private readonly doc;
|
|
6584
|
+
private readonly styleId;
|
|
6585
|
+
constructor();
|
|
6586
|
+
ensureInstalled(): void;
|
|
6587
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisLayerScaleStyleService, never>;
|
|
6588
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PraxisLayerScaleStyleService>;
|
|
6589
|
+
}
|
|
6590
|
+
|
|
6591
|
+
/**
|
|
6592
|
+
* Contratos compartilhados de discovery semantico consumidos pelo runtime Angular.
|
|
6593
|
+
*
|
|
6594
|
+
* `resourcePath` continua sendo o endereco operacional do recurso.
|
|
6595
|
+
* `resourceKey` representa a identidade semantica estavel devolvida pelo backend para
|
|
6596
|
+
* surfaces, actions e capabilities.
|
|
6597
|
+
*
|
|
6598
|
+
* O runtime usa `resourceKey` para preservar contexto semantico e gerar ids estaveis de
|
|
6599
|
+
* abertura, enquanto `resourcePath`, `path`, `method` e `schemaUrl` seguem responsaveis pelo
|
|
6600
|
+
* comportamento operacional.
|
|
6601
|
+
*/
|
|
6602
|
+
interface ResourceAvailabilityDecision {
|
|
6603
|
+
allowed: boolean;
|
|
6604
|
+
reason?: string | null;
|
|
6605
|
+
metadata?: Record<string, any>;
|
|
6606
|
+
}
|
|
6607
|
+
type ResourceSurfaceKind = 'FORM' | 'PARTIAL_FORM' | 'VIEW' | 'READ_PROJECTION';
|
|
6608
|
+
type ResourceSurfaceScope = 'COLLECTION' | 'ITEM';
|
|
6609
|
+
type ResourceActionScope = 'COLLECTION' | 'ITEM';
|
|
6610
|
+
type ResourceDiscoveryRel = 'surfaces' | 'actions' | 'capabilities';
|
|
6611
|
+
interface ResourceSurfaceCatalogItem {
|
|
6612
|
+
id: string;
|
|
6613
|
+
resourceKey: string;
|
|
6614
|
+
kind: ResourceSurfaceKind;
|
|
6615
|
+
scope: ResourceSurfaceScope;
|
|
6616
|
+
title: string;
|
|
6617
|
+
description?: string | null;
|
|
6618
|
+
intent?: string | null;
|
|
6619
|
+
operationId: string;
|
|
6620
|
+
path: string;
|
|
6621
|
+
method: string;
|
|
6622
|
+
schemaId: string;
|
|
6623
|
+
schemaUrl: string;
|
|
6624
|
+
availability: ResourceAvailabilityDecision;
|
|
6625
|
+
order: number;
|
|
6626
|
+
tags: string[];
|
|
6627
|
+
}
|
|
6628
|
+
interface ResourceSurfaceCatalogResponse {
|
|
6629
|
+
resourceKey: string;
|
|
6630
|
+
resourcePath: string;
|
|
6631
|
+
group?: string | null;
|
|
6632
|
+
resourceId?: string | number | null;
|
|
6633
|
+
surfaces: ResourceSurfaceCatalogItem[];
|
|
6634
|
+
}
|
|
6635
|
+
interface ResourceActionCatalogItem {
|
|
6636
|
+
id: string;
|
|
6637
|
+
resourceKey: string;
|
|
6638
|
+
scope: ResourceActionScope;
|
|
6639
|
+
title: string;
|
|
6640
|
+
description?: string | null;
|
|
6641
|
+
operationId: string;
|
|
6642
|
+
path: string;
|
|
6643
|
+
method: string;
|
|
6644
|
+
requestSchemaId?: string | null;
|
|
6645
|
+
requestSchemaUrl?: string | null;
|
|
6646
|
+
responseSchemaId?: string | null;
|
|
6647
|
+
responseSchemaUrl?: string | null;
|
|
6648
|
+
availability: ResourceAvailabilityDecision;
|
|
6649
|
+
order: number;
|
|
6650
|
+
successMessage?: string | null;
|
|
6651
|
+
tags: string[];
|
|
6652
|
+
}
|
|
6653
|
+
interface ResourceActionCatalogResponse {
|
|
6654
|
+
resourceKey: string;
|
|
6655
|
+
resourcePath: string;
|
|
6656
|
+
group?: string | null;
|
|
6657
|
+
resourceId?: string | number | null;
|
|
6658
|
+
actions: ResourceActionCatalogItem[];
|
|
6659
|
+
}
|
|
6660
|
+
interface ResourceCapabilitySnapshot {
|
|
6661
|
+
resourceKey: string;
|
|
6662
|
+
resourcePath: string;
|
|
6663
|
+
group?: string | null;
|
|
6664
|
+
resourceId?: string | number | null;
|
|
6665
|
+
canonicalOperations: Record<string, boolean>;
|
|
6666
|
+
surfaces: ResourceSurfaceCatalogItem[];
|
|
6667
|
+
actions: ResourceActionCatalogItem[];
|
|
6668
|
+
}
|
|
6669
|
+
|
|
6670
|
+
interface ResourceDiscoveryRequestOptions {
|
|
6671
|
+
endpointKey?: ApiEndpoint;
|
|
6672
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
6673
|
+
}
|
|
6674
|
+
type ResourceLinkSource = RestApiResponse<unknown> | RestApiLinks;
|
|
6675
|
+
declare class ResourceDiscoveryService {
|
|
6676
|
+
private readonly http;
|
|
6677
|
+
private readonly schemaNormalizer;
|
|
6678
|
+
private readonly apiUrlConfig;
|
|
6679
|
+
getLinks(source: ResourceLinkSource | null | undefined, rel: string): HateoasLink[];
|
|
6680
|
+
getLink(source: ResourceLinkSource | null | undefined, rel: string): HateoasLink | null;
|
|
6681
|
+
hasLink(source: ResourceLinkSource | null | undefined, rel: string): boolean;
|
|
6682
|
+
resolveLinkHref(source: ResourceLinkSource | null | undefined, rel: string, options?: ResourceDiscoveryRequestOptions): string | null;
|
|
6683
|
+
followLink<T>(source: ResourceLinkSource | null | undefined, rel: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
6684
|
+
getSurfaces(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceSurfaceCatalogResponse>;
|
|
6685
|
+
getActions(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceActionCatalogResponse>;
|
|
6686
|
+
getCapabilities(source: ResourceLinkSource | null | undefined, options?: ResourceDiscoveryRequestOptions): Observable<ResourceCapabilitySnapshot>;
|
|
6687
|
+
fetchJson<T>(href: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
6688
|
+
getSchemaByUrl<T = Record<string, any>>(schemaUrl: string, options?: ResourceDiscoveryRequestOptions): Observable<T>;
|
|
6689
|
+
getSchemaFieldsByUrl(schemaUrl: string, options?: ResourceDiscoveryRequestOptions): Observable<FieldDefinition[]>;
|
|
6690
|
+
resolveHref(href: string, options?: ResourceDiscoveryRequestOptions): string;
|
|
6691
|
+
private requireLinkHref;
|
|
6692
|
+
private extractLinks;
|
|
6693
|
+
resolveApiEntry(options?: ResourceDiscoveryRequestOptions): ApiUrlEntry;
|
|
6694
|
+
private resolveApiOrigin;
|
|
6695
|
+
private resolveApiBaseUrl;
|
|
6696
|
+
private resolveApiBaseHref;
|
|
6697
|
+
private resolveEndpointEntry;
|
|
6698
|
+
private getRuntimeOrigin;
|
|
6699
|
+
private ensureTrailingSlash;
|
|
6700
|
+
private isRestApiResponse;
|
|
6701
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceDiscoveryService, never>;
|
|
6702
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceDiscoveryService>;
|
|
6703
|
+
}
|
|
6704
|
+
|
|
6705
|
+
interface ResourceActionOpenAdapterOptions {
|
|
6706
|
+
resourcePath: string;
|
|
6707
|
+
resourceId?: string | number | null;
|
|
6708
|
+
endpointKey?: ApiEndpoint;
|
|
6709
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
6710
|
+
group?: string | null;
|
|
6711
|
+
idBindingPath?: string;
|
|
6712
|
+
presentation?: SurfacePresentation;
|
|
6713
|
+
title?: string;
|
|
6714
|
+
subtitle?: string;
|
|
6715
|
+
icon?: string;
|
|
6716
|
+
}
|
|
6717
|
+
declare class ResourceActionOpenAdapterService {
|
|
6718
|
+
private readonly discovery;
|
|
6719
|
+
toPayload(action: ResourceActionCatalogItem, options: ResourceActionOpenAdapterOptions): SurfaceOpenPayload;
|
|
6720
|
+
private resolveDynamicFormPreset;
|
|
6721
|
+
private buildStableInstanceId;
|
|
6722
|
+
private normalizeResourcePath;
|
|
6723
|
+
private buildIdBinding;
|
|
6724
|
+
private clone;
|
|
6725
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceActionOpenAdapterService, never>;
|
|
6726
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceActionOpenAdapterService>;
|
|
6727
|
+
}
|
|
6728
|
+
|
|
6729
|
+
interface ResourceSurfaceOpenAdapterOptions {
|
|
6730
|
+
resourcePath: string;
|
|
6731
|
+
resourceId?: string | number | null;
|
|
6732
|
+
endpointKey?: ApiEndpoint;
|
|
6733
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
6734
|
+
group?: string | null;
|
|
6735
|
+
idBindingPath?: string;
|
|
6736
|
+
presentation?: SurfacePresentation;
|
|
6737
|
+
title?: string;
|
|
6738
|
+
subtitle?: string;
|
|
6739
|
+
icon?: string;
|
|
6740
|
+
queryContext?: Record<string, any>;
|
|
6741
|
+
}
|
|
6742
|
+
declare class ResourceSurfaceOpenAdapterService {
|
|
6743
|
+
private readonly discovery;
|
|
6744
|
+
toPayload(surface: ResourceSurfaceCatalogItem, options: ResourceSurfaceOpenAdapterOptions): SurfaceOpenPayload;
|
|
6745
|
+
private buildBasePayload;
|
|
6746
|
+
private buildStableInstanceId;
|
|
6747
|
+
private normalizeResourcePath;
|
|
6748
|
+
private resolveFormMode;
|
|
6749
|
+
private isCollectionView;
|
|
6750
|
+
private isWritableFormSurface;
|
|
6751
|
+
private buildIdBinding;
|
|
6752
|
+
private clone;
|
|
6753
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceSurfaceOpenAdapterService, never>;
|
|
6754
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResourceSurfaceOpenAdapterService>;
|
|
6755
|
+
}
|
|
6756
|
+
|
|
6757
|
+
type AnalyticsIntent = 'ranking' | 'trend' | 'distribution' | 'composition' | 'comparison' | 'correlation';
|
|
6758
|
+
type AnalyticsSourceKind = 'praxis.stats';
|
|
6759
|
+
type AnalyticsStatsOperation = 'group-by' | 'timeseries' | 'distribution';
|
|
6760
|
+
type AnalyticsStatsGranularity = 'hour' | 'day' | 'week' | 'month' | 'quarter' | 'year';
|
|
6761
|
+
type AnalyticsStatsMetricOperation = 'COUNT' | 'SUM' | 'AVG' | 'MIN' | 'MAX';
|
|
6762
|
+
type AnalyticsStatsOrderBy = 'KEY_ASC' | 'KEY_DESC' | 'VALUE_ASC' | 'VALUE_DESC';
|
|
6763
|
+
type AnalyticsPresentationFamily = 'chart' | 'analytic-table' | 'kpi' | 'summary-list';
|
|
6764
|
+
interface PraxisXUiAnalytics {
|
|
6765
|
+
projections: PraxisAnalyticsProjection[];
|
|
6766
|
+
}
|
|
6767
|
+
interface PraxisAnalyticsProjection {
|
|
6768
|
+
id: string;
|
|
6769
|
+
intent: AnalyticsIntent;
|
|
6770
|
+
source: PraxisAnalyticsSource;
|
|
6771
|
+
bindings: PraxisAnalyticsBindings;
|
|
6772
|
+
defaults?: PraxisAnalyticsDefaults | null;
|
|
6773
|
+
presentationHints?: PraxisAnalyticsPresentationHints | null;
|
|
6774
|
+
interactions?: PraxisAnalyticsInteractions | null;
|
|
6775
|
+
}
|
|
6776
|
+
interface PraxisAnalyticsSource {
|
|
6777
|
+
kind: AnalyticsSourceKind;
|
|
6778
|
+
resource: string;
|
|
6779
|
+
operation: AnalyticsStatsOperation;
|
|
6780
|
+
}
|
|
6781
|
+
interface PraxisAnalyticsBindings {
|
|
6782
|
+
primaryDimension?: PraxisAnalyticsDimensionBinding | null;
|
|
6783
|
+
primaryMetrics: PraxisAnalyticsMetricBinding[];
|
|
6784
|
+
secondaryMetrics?: PraxisAnalyticsMetricBinding[] | null;
|
|
6785
|
+
}
|
|
6786
|
+
interface PraxisAnalyticsDimensionBinding {
|
|
6787
|
+
field: string;
|
|
6788
|
+
role?: string | null;
|
|
6789
|
+
label?: string | null;
|
|
6790
|
+
}
|
|
6791
|
+
interface PraxisAnalyticsMetricBinding {
|
|
6792
|
+
field: string;
|
|
6793
|
+
aggregation?: string | null;
|
|
6794
|
+
label?: string | null;
|
|
6795
|
+
}
|
|
6796
|
+
interface PraxisAnalyticsDefaults {
|
|
6797
|
+
sort?: PraxisAnalyticsSortRule[] | null;
|
|
6798
|
+
limit?: number | null;
|
|
6799
|
+
granularity?: AnalyticsStatsGranularity | null;
|
|
6800
|
+
}
|
|
6801
|
+
interface PraxisAnalyticsSortRule {
|
|
6802
|
+
field: string;
|
|
6803
|
+
direction: 'asc' | 'desc';
|
|
6804
|
+
}
|
|
6805
|
+
interface PraxisAnalyticsPresentationHints {
|
|
6806
|
+
preferredFamilies?: AnalyticsPresentationFamily[] | null;
|
|
6807
|
+
}
|
|
6808
|
+
interface PraxisAnalyticsInteractions {
|
|
6809
|
+
drillDown?: boolean | null;
|
|
6810
|
+
pointSelection?: boolean | null;
|
|
6811
|
+
crossFilter?: boolean | null;
|
|
6812
|
+
}
|
|
6813
|
+
interface AnalyticsPresentationResolverOptions {
|
|
6814
|
+
availableFamilies?: AnalyticsPresentationFamily[] | null;
|
|
6815
|
+
preferFamily?: AnalyticsPresentationFamily | null;
|
|
6816
|
+
}
|
|
6817
|
+
interface AnalyticsPresentationDecision {
|
|
6818
|
+
projectionId: string;
|
|
6819
|
+
family: AnalyticsPresentationFamily;
|
|
6820
|
+
reason: string;
|
|
6821
|
+
}
|
|
6822
|
+
interface PraxisAnalyticsStatsMetricRequest {
|
|
6823
|
+
operation: AnalyticsStatsMetricOperation;
|
|
6824
|
+
field?: string;
|
|
6825
|
+
alias?: string;
|
|
6826
|
+
}
|
|
6827
|
+
interface PraxisAnalyticsGroupByStatsRequest {
|
|
6828
|
+
filter: Record<string, unknown>;
|
|
6829
|
+
field: string;
|
|
6830
|
+
metric: PraxisAnalyticsStatsMetricRequest;
|
|
6831
|
+
metrics?: PraxisAnalyticsStatsMetricRequest[];
|
|
6832
|
+
limit?: number;
|
|
6833
|
+
orderBy?: AnalyticsStatsOrderBy;
|
|
6834
|
+
}
|
|
6835
|
+
interface PraxisAnalyticsTimeSeriesStatsRequest {
|
|
6836
|
+
filter: Record<string, unknown>;
|
|
6837
|
+
field: string;
|
|
6838
|
+
granularity: Uppercase<AnalyticsStatsGranularity>;
|
|
6839
|
+
metric: PraxisAnalyticsStatsMetricRequest;
|
|
6840
|
+
metrics?: PraxisAnalyticsStatsMetricRequest[];
|
|
6841
|
+
from?: string;
|
|
6842
|
+
to?: string;
|
|
6843
|
+
fillGaps?: boolean;
|
|
6844
|
+
}
|
|
6845
|
+
interface PraxisAnalyticsDistributionStatsRequest {
|
|
6846
|
+
filter: Record<string, unknown>;
|
|
6847
|
+
field: string;
|
|
6848
|
+
mode: 'TERMS' | 'HISTOGRAM';
|
|
6849
|
+
metric: PraxisAnalyticsStatsMetricRequest;
|
|
6850
|
+
bucketSize?: number;
|
|
6851
|
+
bucketCount?: number;
|
|
6852
|
+
limit?: number;
|
|
6853
|
+
orderBy?: AnalyticsStatsOrderBy;
|
|
6854
|
+
}
|
|
6855
|
+
type PraxisAnalyticsStatsRequest = PraxisAnalyticsGroupByStatsRequest | PraxisAnalyticsTimeSeriesStatsRequest | PraxisAnalyticsDistributionStatsRequest;
|
|
6856
|
+
interface PraxisAnalyticsExecutionMetric {
|
|
6857
|
+
field: string;
|
|
6858
|
+
aggregation?: string;
|
|
6859
|
+
alias: string;
|
|
6860
|
+
}
|
|
6861
|
+
interface PraxisAnalyticsStatsExecutionPlan {
|
|
6862
|
+
resourcePath: string;
|
|
6863
|
+
statsPath: string;
|
|
6864
|
+
operation: AnalyticsStatsOperation;
|
|
6865
|
+
statsRequest: PraxisAnalyticsStatsRequest;
|
|
6866
|
+
dimensions?: string[];
|
|
6867
|
+
metrics: PraxisAnalyticsExecutionMetric[];
|
|
6868
|
+
sort?: string[];
|
|
6869
|
+
limit?: number;
|
|
6870
|
+
}
|
|
6871
|
+
|
|
6872
|
+
declare class AnalyticsPresentationResolver {
|
|
6873
|
+
resolve(analytics: PraxisXUiAnalytics | null | undefined, options?: AnalyticsPresentationResolverOptions): AnalyticsPresentationDecision;
|
|
6874
|
+
private tryResolvePreferredProjection;
|
|
6875
|
+
private inferDecision;
|
|
6876
|
+
private buildInferenceReason;
|
|
6877
|
+
private getCompatiblePreferredFamilies;
|
|
6878
|
+
private supportsFamily;
|
|
6879
|
+
private isChartInequivocal;
|
|
6880
|
+
private isAnalyticTableEligible;
|
|
6881
|
+
private hasExplicitPreferredFamily;
|
|
6882
|
+
private normalizeFamilies;
|
|
6883
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnalyticsPresentationResolver, never>;
|
|
6884
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AnalyticsPresentationResolver>;
|
|
6885
|
+
}
|
|
6886
|
+
|
|
6887
|
+
interface AnalyticsSchemaContractRequest {
|
|
6888
|
+
path: string;
|
|
6889
|
+
operation?: 'get' | 'post' | 'put' | 'patch' | 'delete';
|
|
6890
|
+
schemaType?: 'request' | 'response';
|
|
6891
|
+
includeInternalSchemas?: boolean;
|
|
6892
|
+
cacheNamespace?: string;
|
|
6893
|
+
cacheTtlMs?: number;
|
|
6894
|
+
tenant?: string;
|
|
6895
|
+
locale?: string;
|
|
6896
|
+
}
|
|
6897
|
+
declare class AnalyticsSchemaContractService {
|
|
6898
|
+
private readonly apiUrl;
|
|
6899
|
+
constructor(apiUrl: ApiUrlConfig);
|
|
6900
|
+
getAnalytics(request: AnalyticsSchemaContractRequest): Promise<PraxisXUiAnalytics>;
|
|
6901
|
+
private buildSchemasBaseUrl;
|
|
6902
|
+
private asRecord;
|
|
6903
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnalyticsSchemaContractService, never>;
|
|
6904
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AnalyticsSchemaContractService>;
|
|
6905
|
+
}
|
|
6906
|
+
|
|
6907
|
+
declare class AnalyticsStatsRequestBuilderService {
|
|
6908
|
+
buildExecutionPlan(projection: PraxisAnalyticsProjection): PraxisAnalyticsStatsExecutionPlan;
|
|
6909
|
+
private buildStatsRequest;
|
|
6910
|
+
private buildStatsMetric;
|
|
6911
|
+
private mapAggregationToBackend;
|
|
6912
|
+
private mapOrderBy;
|
|
6913
|
+
private mapGranularityToBackend;
|
|
6914
|
+
private getExecutionMetrics;
|
|
6915
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnalyticsStatsRequestBuilderService, never>;
|
|
6916
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AnalyticsStatsRequestBuilderService>;
|
|
6917
|
+
}
|
|
6918
|
+
|
|
6570
6919
|
declare function provideFieldSelectorRegistryRuntime(map: FieldSelectorRegistryMap, opts?: {
|
|
6571
6920
|
overwrite?: boolean;
|
|
6572
6921
|
}): Provider;
|
|
@@ -6903,6 +7252,45 @@ declare class TelemetryLoggerSink implements LoggerSink {
|
|
|
6903
7252
|
declare const OVERLAY_DECISION_MATRIX: InjectionToken<OverlayDecisionMatrix>;
|
|
6904
7253
|
declare function provideOverlayDecisionMatrix(matrix?: OverlayDecisionMatrix): EnvironmentProviders;
|
|
6905
7254
|
|
|
7255
|
+
interface PraxisLayerScale {
|
|
7256
|
+
stickyLocal: number;
|
|
7257
|
+
floatingLocal: number;
|
|
7258
|
+
authoringInsert: number;
|
|
7259
|
+
authoringHover: number;
|
|
7260
|
+
authoringSelected: number;
|
|
7261
|
+
authoringToolbar: number;
|
|
7262
|
+
cdkOverlayContainer: number;
|
|
7263
|
+
cdkOverlayBackdrop: number;
|
|
7264
|
+
cdkOverlayWrapper: number;
|
|
7265
|
+
settingsPanel: number;
|
|
7266
|
+
widgetShellBackdrop: number;
|
|
7267
|
+
widgetShellExpanded: number;
|
|
7268
|
+
widgetShellFullscreen: number;
|
|
7269
|
+
dialog: number;
|
|
7270
|
+
popup: number;
|
|
7271
|
+
loadingBlocking: number;
|
|
7272
|
+
}
|
|
7273
|
+
declare const PRAXIS_LAYER_SCALE_DEFAULTS: PraxisLayerScale;
|
|
7274
|
+
declare const PRAXIS_LAYER_SCALE_VARS: {
|
|
7275
|
+
readonly stickyLocal: "--praxis-layer-sticky-local";
|
|
7276
|
+
readonly floatingLocal: "--praxis-layer-floating-local";
|
|
7277
|
+
readonly authoringInsert: "--praxis-layer-authoring-insert";
|
|
7278
|
+
readonly authoringHover: "--praxis-layer-authoring-hover";
|
|
7279
|
+
readonly authoringSelected: "--praxis-layer-authoring-selected";
|
|
7280
|
+
readonly authoringToolbar: "--praxis-layer-authoring-toolbar";
|
|
7281
|
+
readonly cdkOverlayContainer: "--praxis-layer-cdk-overlay-container";
|
|
7282
|
+
readonly cdkOverlayBackdrop: "--praxis-layer-cdk-overlay-backdrop";
|
|
7283
|
+
readonly cdkOverlayWrapper: "--praxis-layer-cdk-overlay-wrapper";
|
|
7284
|
+
readonly settingsPanel: "--praxis-layer-settings-panel";
|
|
7285
|
+
readonly widgetShellBackdrop: "--praxis-layer-widget-shell-backdrop";
|
|
7286
|
+
readonly widgetShellExpanded: "--praxis-layer-widget-shell-expanded";
|
|
7287
|
+
readonly widgetShellFullscreen: "--praxis-layer-widget-shell-fullscreen";
|
|
7288
|
+
readonly dialog: "--praxis-layer-dialog";
|
|
7289
|
+
readonly popup: "--praxis-layer-popup";
|
|
7290
|
+
readonly loadingBlocking: "--praxis-layer-loading-blocking";
|
|
7291
|
+
};
|
|
7292
|
+
declare function buildPraxisLayerScaleCss(scale?: PraxisLayerScale): string;
|
|
7293
|
+
|
|
6906
7294
|
declare const GLOBAL_CONFIG: InjectionToken<Partial<GlobalConfig>>;
|
|
6907
7295
|
interface PraxisAuthContext {
|
|
6908
7296
|
ready?: () => Promise<void>;
|
|
@@ -7026,6 +7414,16 @@ interface SettingsPanelOpenOptions<TInputs = any> {
|
|
|
7026
7414
|
interface SettingsPanelBridge {
|
|
7027
7415
|
open<TInputs = any, TOut = any>(opts: SettingsPanelOpenOptions<TInputs>): SettingsPanelRef<TOut>;
|
|
7028
7416
|
}
|
|
7417
|
+
/**
|
|
7418
|
+
* Authoring/editor drawer bridge.
|
|
7419
|
+
*
|
|
7420
|
+
* Use this token for settings/configuration flows that depend on
|
|
7421
|
+
* `SettingsValueProvider` semantics (`apply/save/reset/cancel`).
|
|
7422
|
+
*
|
|
7423
|
+
* Runtime surfaces opened by `surface.open` should migrate to
|
|
7424
|
+
* `SURFACE_DRAWER_BRIDGE`, which carries runtime-oriented semantics instead of
|
|
7425
|
+
* editor semantics.
|
|
7426
|
+
*/
|
|
7029
7427
|
declare const SETTINGS_PANEL_BRIDGE: InjectionToken<SettingsPanelBridge>;
|
|
7030
7428
|
declare const SETTINGS_PANEL_DATA: InjectionToken<any>;
|
|
7031
7429
|
interface SettingsValueProvider {
|
|
@@ -7037,6 +7435,59 @@ interface SettingsValueProvider {
|
|
|
7037
7435
|
reset?(): void;
|
|
7038
7436
|
}
|
|
7039
7437
|
|
|
7438
|
+
type SurfaceDrawerWidthPreset = 'narrow' | 'default' | 'wide' | 'full';
|
|
7439
|
+
interface SurfaceDrawerResult<T = unknown> {
|
|
7440
|
+
type?: string;
|
|
7441
|
+
data?: T;
|
|
7442
|
+
}
|
|
7443
|
+
interface SurfaceDrawerRef<T = unknown> {
|
|
7444
|
+
/**
|
|
7445
|
+
* Emits once when the drawer closes, regardless of whether a semantic result
|
|
7446
|
+
* was produced by the hosted runtime surface.
|
|
7447
|
+
*/
|
|
7448
|
+
closed$: Observable<SurfaceDrawerResult<T> | undefined>;
|
|
7449
|
+
/**
|
|
7450
|
+
* Optional semantic result stream for runtime surfaces that want to notify
|
|
7451
|
+
* their host without inheriting authoring semantics such as applied$/saved$.
|
|
7452
|
+
*/
|
|
7453
|
+
result$?: Observable<SurfaceDrawerResult<T>>;
|
|
7454
|
+
close?(result?: SurfaceDrawerResult<T>): void;
|
|
7455
|
+
updateTitle?(title: string): void;
|
|
7456
|
+
updateSize?(preset: SurfaceDrawerWidthPreset | string): void;
|
|
7457
|
+
}
|
|
7458
|
+
interface SurfaceDrawerOpenContent<TInputs = any> {
|
|
7459
|
+
component: Type<any>;
|
|
7460
|
+
inputs?: TInputs;
|
|
7461
|
+
}
|
|
7462
|
+
interface SurfaceDrawerOpenOptions<TInputs = any> {
|
|
7463
|
+
id: string;
|
|
7464
|
+
title: string;
|
|
7465
|
+
titleIcon?: string;
|
|
7466
|
+
subtitle?: string;
|
|
7467
|
+
widthPreset?: SurfaceDrawerWidthPreset;
|
|
7468
|
+
width?: string;
|
|
7469
|
+
minWidth?: string;
|
|
7470
|
+
maxWidth?: string;
|
|
7471
|
+
resizable?: boolean;
|
|
7472
|
+
resizeAxis?: 'x';
|
|
7473
|
+
persistSizeKey?: string;
|
|
7474
|
+
height?: string;
|
|
7475
|
+
minHeight?: string;
|
|
7476
|
+
maxHeight?: string;
|
|
7477
|
+
content: SurfaceDrawerOpenContent<TInputs>;
|
|
7478
|
+
}
|
|
7479
|
+
/**
|
|
7480
|
+
* Canonical runtime drawer bridge used by `surface.open` when
|
|
7481
|
+
* `presentation='drawer'`.
|
|
7482
|
+
*
|
|
7483
|
+
* This contract is intentionally distinct from SettingsPanelBridge, which
|
|
7484
|
+
* remains authoring-focused and may expose save/apply/reset semantics.
|
|
7485
|
+
*/
|
|
7486
|
+
interface SurfaceDrawerBridge {
|
|
7487
|
+
open<TInputs = any, TResult = unknown>(opts: SurfaceDrawerOpenOptions<TInputs>): SurfaceDrawerRef<TResult>;
|
|
7488
|
+
}
|
|
7489
|
+
declare const SURFACE_DRAWER_BRIDGE: InjectionToken<SurfaceDrawerBridge>;
|
|
7490
|
+
|
|
7040
7491
|
declare const TABLE_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
7041
7492
|
declare const STEPPER_CONFIG_EDITOR: InjectionToken<Type<any>>;
|
|
7042
7493
|
declare const DYNAMIC_PAGE_SHELL_EDITOR: InjectionToken<Type<any>>;
|
|
@@ -7047,6 +7498,14 @@ declare const PRAXIS_LOADING_CTX: HttpContextToken<LoadingContext | null>;
|
|
|
7047
7498
|
declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
|
|
7048
7499
|
declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
|
|
7049
7500
|
|
|
7501
|
+
declare const RESOURCE_DISCOVERY_I18N_NAMESPACE = "resourceDiscovery";
|
|
7502
|
+
declare const RESOURCE_DISCOVERY_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
7503
|
+
declare function normalizeResourceAvailabilityReasonCode(reason: string | null | undefined): string;
|
|
7504
|
+
declare function resolveResourceAvailabilityReasonKey(reason: string | null | undefined): string;
|
|
7505
|
+
declare function translateResourceDiscoveryText(i18n: PraxisI18nService, key: string, params?: PraxisTranslationParams, fallback?: string): string;
|
|
7506
|
+
declare function translateResourceAvailabilityReason(i18n: PraxisI18nService, reason: string | null | undefined): string;
|
|
7507
|
+
declare function translateUnavailableWorkflowMessage(i18n: PraxisI18nService, availability?: ResourceAvailabilityDecision | null): string;
|
|
7508
|
+
|
|
7050
7509
|
declare function resolveValuePresentation(config: ValuePresentationConfig, context?: ValuePresentationResolutionContext): ResolvedValuePresentation;
|
|
7051
7510
|
declare function resolveValuePresentationLocale(context?: ValuePresentationResolutionContext, localization?: LocalizationConfig | null): string;
|
|
7052
7511
|
declare function supportsImplicitValuePresentation(type: ValuePresentationType | null | undefined): boolean;
|
|
@@ -7164,7 +7623,7 @@ interface LinkMetadata {
|
|
|
7164
7623
|
description?: string;
|
|
7165
7624
|
tags?: string[];
|
|
7166
7625
|
deprecated?: boolean;
|
|
7167
|
-
source?: 'legacy-widget-connection' | 'native-composition-link';
|
|
7626
|
+
source?: 'legacy-widget-connection' | 'persisted-composition-link' | 'native-composition-link';
|
|
7168
7627
|
traceKey?: string;
|
|
7169
7628
|
}
|
|
7170
7629
|
interface CompositionLink {
|
|
@@ -7313,7 +7772,7 @@ interface FormHookContext {
|
|
|
7313
7772
|
stage: FormHookStage;
|
|
7314
7773
|
formGroup?: FormGroup;
|
|
7315
7774
|
formConfig?: FormConfig;
|
|
7316
|
-
operation?: 'create' | 'update';
|
|
7775
|
+
operation?: 'create' | 'update' | 'patch';
|
|
7317
7776
|
entityId?: string | number;
|
|
7318
7777
|
resourcePath?: string;
|
|
7319
7778
|
/** Per-hook arguments coming from FormConfig (x-ui.hooks) */
|
|
@@ -8034,7 +8493,7 @@ interface FormSubmitEvent {
|
|
|
8034
8493
|
isValid: boolean;
|
|
8035
8494
|
validationErrors?: ValidationError[];
|
|
8036
8495
|
entityId?: string | number;
|
|
8037
|
-
operation: 'create' | 'update';
|
|
8496
|
+
operation: 'create' | 'update' | 'patch';
|
|
8038
8497
|
result?: any;
|
|
8039
8498
|
error?: any;
|
|
8040
8499
|
}
|
|
@@ -8690,38 +9149,6 @@ interface WidgetInstance {
|
|
|
8690
9149
|
/** Optional shell config for standardized widget framing. */
|
|
8691
9150
|
shell?: WidgetShellConfig;
|
|
8692
9151
|
}
|
|
8693
|
-
type WidgetConnectionSource = {
|
|
8694
|
-
widget: string;
|
|
8695
|
-
output: string;
|
|
8696
|
-
} | {
|
|
8697
|
-
state: string;
|
|
8698
|
-
};
|
|
8699
|
-
type WidgetConnectionTarget = {
|
|
8700
|
-
widget: string;
|
|
8701
|
-
input: string;
|
|
8702
|
-
bindingOrder?: string[];
|
|
8703
|
-
} | {
|
|
8704
|
-
state: string;
|
|
8705
|
-
};
|
|
8706
|
-
interface WidgetConnection {
|
|
8707
|
-
from: WidgetConnectionSource;
|
|
8708
|
-
to: WidgetConnectionTarget;
|
|
8709
|
-
/** Dot-path to extract from event object (e.g., 'payload.row.id'). Defaults to 'payload'. */
|
|
8710
|
-
map?: string;
|
|
8711
|
-
/** Constant value override (when provided, map is ignored). */
|
|
8712
|
-
set?: any;
|
|
8713
|
-
/** Optional metadata for runtime operators (beta). */
|
|
8714
|
-
meta?: {
|
|
8715
|
-
/** Expression to filter events (safe, controlled) */
|
|
8716
|
-
filterExpr?: string;
|
|
8717
|
-
/** Debounce time in milliseconds */
|
|
8718
|
-
debounceMs?: number;
|
|
8719
|
-
/** Only emit when value changes */
|
|
8720
|
-
distinct?: boolean;
|
|
8721
|
-
/** Optional key path for distinct comparison (e.g., 'payload.id') */
|
|
8722
|
-
distinctBy?: string;
|
|
8723
|
-
};
|
|
8724
|
-
}
|
|
8725
9152
|
type WidgetPageOrientation = 'vertical' | 'columns';
|
|
8726
9153
|
type WidgetPageDeviceKind = 'desktop' | 'tablet' | 'mobile';
|
|
8727
9154
|
interface WidgetPageSlotDefinition {
|
|
@@ -8923,6 +9350,15 @@ interface WidgetPageDeviceLayouts {
|
|
|
8923
9350
|
tablet?: WidgetPageLayoutVariant;
|
|
8924
9351
|
mobile?: WidgetPageLayoutVariant;
|
|
8925
9352
|
}
|
|
9353
|
+
/**
|
|
9354
|
+
* Canonical persisted composition surface for page wiring.
|
|
9355
|
+
* This is the nominal public surface for persisted page wiring.
|
|
9356
|
+
*/
|
|
9357
|
+
interface WidgetPageCompositionDefinition {
|
|
9358
|
+
/** Composition envelope schema version for persisted payload governance. */
|
|
9359
|
+
version?: string;
|
|
9360
|
+
links?: CompositionLink[];
|
|
9361
|
+
}
|
|
8926
9362
|
/**
|
|
8927
9363
|
* Canonical slot occupancy for preset-driven pages.
|
|
8928
9364
|
* Maps widget keys to semantic slot ids from the active layout preset.
|
|
@@ -8930,7 +9366,11 @@ interface WidgetPageDeviceLayouts {
|
|
|
8930
9366
|
type WidgetPageSlotAssignments = Record<string, string>;
|
|
8931
9367
|
interface WidgetPageDefinition {
|
|
8932
9368
|
widgets: WidgetInstance[];
|
|
8933
|
-
|
|
9369
|
+
/**
|
|
9370
|
+
* Canonical persisted composition surface.
|
|
9371
|
+
* `composition.links` is the nominal saved shape for `CompositionLink[]`.
|
|
9372
|
+
*/
|
|
9373
|
+
composition?: WidgetPageCompositionDefinition;
|
|
8934
9374
|
/** Optional declarative page state shared across widgets and connections */
|
|
8935
9375
|
state?: WidgetPageStateInput;
|
|
8936
9376
|
/** Optional page-wide context available to all widgets */
|
|
@@ -9947,41 +10387,6 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
9947
10387
|
declare const BUILTIN_PAGE_LAYOUT_PRESETS: Record<string, WidgetPageLayoutPresetDefinition>;
|
|
9948
10388
|
declare const BUILTIN_PAGE_THEME_PRESETS: Record<string, WidgetPageThemePresetDefinition>;
|
|
9949
10389
|
|
|
9950
|
-
declare class ConnectionManagerService {
|
|
9951
|
-
/** Extract value from an object using dot-path (e.g., 'payload.row.id'). */
|
|
9952
|
-
extractByPath(obj: any, path: string | undefined): any;
|
|
9953
|
-
/** Find connections triggered by an event. */
|
|
9954
|
-
findMatches(connections: WidgetConnection[] | undefined, fromKey: string, output: string | undefined): WidgetConnection[];
|
|
9955
|
-
/** Find connections triggered by a state-path update. */
|
|
9956
|
-
findStateMatches(connections: WidgetConnection[] | undefined, statePath: string): WidgetConnection[];
|
|
9957
|
-
/** Apply a single match into widgets array, supporting dot-path in target input. Returns a new array. */
|
|
9958
|
-
applyMatch(widgets: WidgetInstance[], match: WidgetConnection & {
|
|
9959
|
-
to: {
|
|
9960
|
-
widget: string;
|
|
9961
|
-
input: string;
|
|
9962
|
-
bindingOrder?: string[];
|
|
9963
|
-
};
|
|
9964
|
-
}, event: {
|
|
9965
|
-
payload?: any;
|
|
9966
|
-
}): WidgetInstance[];
|
|
9967
|
-
resolveConnectionValue(match: Pick<WidgetConnection, 'map' | 'set'>, event: {
|
|
9968
|
-
payload?: any;
|
|
9969
|
-
} | Record<string, any>): any;
|
|
9970
|
-
setValueAtPath<T extends object>(obj: T, rawPath: string, value: any): T;
|
|
9971
|
-
/** Resolve mapped value: supports dot-path or JSON template with ${...} placeholders. */
|
|
9972
|
-
private resolveMappedValue;
|
|
9973
|
-
/** Recursively resolve ${path} placeholders in objects/arrays/strings. */
|
|
9974
|
-
private resolveTemplate;
|
|
9975
|
-
/** Whether a string looks like a deep path (contains '.' or array index). */
|
|
9976
|
-
private looksLikePath;
|
|
9977
|
-
/** Immutable set at dot/array path (e.g., 'config.tabs[0].items[1].form.inputs.resourceId'). */
|
|
9978
|
-
private setAtPath;
|
|
9979
|
-
private tokenizePath;
|
|
9980
|
-
private mergeOrder;
|
|
9981
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ConnectionManagerService, never>;
|
|
9982
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ConnectionManagerService>;
|
|
9983
|
-
}
|
|
9984
|
-
|
|
9985
10390
|
interface WidgetPageStateRuntimeSnapshot {
|
|
9986
10391
|
state: WidgetPageStateDefinition;
|
|
9987
10392
|
primaryValues: Record<string, any>;
|
|
@@ -9991,7 +10396,6 @@ interface WidgetPageStateRuntimeSnapshot {
|
|
|
9991
10396
|
}
|
|
9992
10397
|
declare class WidgetPageStateRuntimeService {
|
|
9993
10398
|
private readonly connections;
|
|
9994
|
-
constructor(connections: ConnectionManagerService);
|
|
9995
10399
|
normalizeState(state: WidgetPageStateInput | undefined): WidgetPageStateDefinition;
|
|
9996
10400
|
buildRuntimeSnapshot(state: WidgetPageStateInput | undefined, context?: Record<string, any> | null): WidgetPageStateRuntimeSnapshot;
|
|
9997
10401
|
collectChangedPaths(previous: Record<string, any> | undefined, next: Record<string, any> | undefined, paths: string[]): string[];
|
|
@@ -10007,6 +10411,7 @@ declare class WidgetPageStateRuntimeService {
|
|
|
10007
10411
|
private matchesCase;
|
|
10008
10412
|
private resolveCaseValue;
|
|
10009
10413
|
private resolveTemplate;
|
|
10414
|
+
private normalizeDependencyPath;
|
|
10010
10415
|
private readPath;
|
|
10011
10416
|
private isPlainObject;
|
|
10012
10417
|
private isEqual;
|
|
@@ -10015,13 +10420,11 @@ declare class WidgetPageStateRuntimeService {
|
|
|
10015
10420
|
private toNumber;
|
|
10016
10421
|
private formatFieldValue;
|
|
10017
10422
|
private clone;
|
|
10423
|
+
private describeError;
|
|
10018
10424
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetPageStateRuntimeService, never>;
|
|
10019
10425
|
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetPageStateRuntimeService>;
|
|
10020
10426
|
}
|
|
10021
10427
|
|
|
10022
|
-
declare function adaptWidgetConnectionToCompositionLink(connection: WidgetConnection): CompositionLink;
|
|
10023
|
-
declare function adaptWidgetConnectionsToCompositionLinks(connections: WidgetConnection[] | undefined): CompositionLink[];
|
|
10024
|
-
|
|
10025
10428
|
interface WidgetPageCompositionState {
|
|
10026
10429
|
primaryValues: Record<string, unknown>;
|
|
10027
10430
|
schema: Record<string, WidgetStateNode>;
|
|
@@ -10131,6 +10534,7 @@ declare class LinkExecutorService {
|
|
|
10131
10534
|
constructor(transforms?: LinkExecutorTransformRunner, pathAccessor?: LinkExecutorPathAccessor);
|
|
10132
10535
|
executeLink(link: CompositionLink, context: LinkExecutionContext): LinkExecutionResult;
|
|
10133
10536
|
private resolveSourceValue;
|
|
10537
|
+
private extractComponentSourceBinding;
|
|
10134
10538
|
private matchesConditions;
|
|
10135
10539
|
private evaluateCondition;
|
|
10136
10540
|
private evaluateExpression;
|
|
@@ -10141,6 +10545,7 @@ declare class LinkExecutorService {
|
|
|
10141
10545
|
private resolveMissingValuePolicy;
|
|
10142
10546
|
private resolvePolicySkip;
|
|
10143
10547
|
private deliverValue;
|
|
10548
|
+
private resolveDistinctValue;
|
|
10144
10549
|
private readStatePath;
|
|
10145
10550
|
private buildEffectiveState;
|
|
10146
10551
|
private createDiagnostic;
|
|
@@ -10217,6 +10622,8 @@ declare class CompositionRuntimeEngine {
|
|
|
10217
10622
|
private createDerivedDiagnostic;
|
|
10218
10623
|
private clonePreviewWidgets;
|
|
10219
10624
|
private cloneJson;
|
|
10625
|
+
private extractDerivedNodeKey;
|
|
10626
|
+
private appendDiagnosticTraceEntries;
|
|
10220
10627
|
}
|
|
10221
10628
|
|
|
10222
10629
|
interface CompositionRuntimeFacadeOptions {
|
|
@@ -10265,11 +10672,6 @@ interface CanvasResizeHandleDefinition {
|
|
|
10265
10672
|
className: string;
|
|
10266
10673
|
}
|
|
10267
10674
|
declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
10268
|
-
private conn;
|
|
10269
|
-
private stateRuntime;
|
|
10270
|
-
private settingsPanel;
|
|
10271
|
-
private defaultShellEditor;
|
|
10272
|
-
private defaultPageEditor;
|
|
10273
10675
|
pageCanvasHost?: ElementRef<HTMLElement>;
|
|
10274
10676
|
page?: WidgetPageDefinition | string;
|
|
10275
10677
|
context?: Record<string, any> | null;
|
|
@@ -10317,6 +10719,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
10317
10719
|
private isHydrating;
|
|
10318
10720
|
private persistenceReady;
|
|
10319
10721
|
private warnedMissingKey;
|
|
10722
|
+
private runtimeEventSequence;
|
|
10320
10723
|
private readonly compositionFactory;
|
|
10321
10724
|
private readonly compositionRuntime;
|
|
10322
10725
|
private compositionDefinition?;
|
|
@@ -10325,10 +10728,30 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
10325
10728
|
private readonly componentKeys;
|
|
10326
10729
|
private readonly i18n;
|
|
10327
10730
|
private readonly route;
|
|
10328
|
-
|
|
10731
|
+
private readonly conn;
|
|
10732
|
+
private readonly stateRuntime;
|
|
10733
|
+
private readonly settingsPanel;
|
|
10734
|
+
private readonly defaultShellEditor;
|
|
10735
|
+
private readonly defaultPageEditor;
|
|
10736
|
+
constructor();
|
|
10329
10737
|
ngOnDestroy(): void;
|
|
10330
10738
|
ngOnChanges(changes: SimpleChanges): void;
|
|
10331
10739
|
onWidgetEvent(fromKey: string, evt: WidgetEventEnvelope): void;
|
|
10740
|
+
private buildStateRuntime;
|
|
10741
|
+
private bootstrapCompositionAdapter;
|
|
10742
|
+
private applyEditShellActions;
|
|
10743
|
+
private applyBootstrapCompositionHydration;
|
|
10744
|
+
private reportStateDiagnostics;
|
|
10745
|
+
private dispatchWidgetEventToComposition;
|
|
10746
|
+
private stateFromCompositionSnapshot;
|
|
10747
|
+
private applyCompositionWidgetDeliveries;
|
|
10748
|
+
private buildStateContext;
|
|
10749
|
+
private cloneStateValues;
|
|
10750
|
+
private cloneGrouping;
|
|
10751
|
+
private resolveShellTemplates;
|
|
10752
|
+
private resolveComponentBindingPath;
|
|
10753
|
+
private buildRuntimeEventId;
|
|
10754
|
+
private shouldInjectWidgetSettings;
|
|
10332
10755
|
private areStateValuesEqual;
|
|
10333
10756
|
onWidgetDiagnostic(widgetKey: string, diagnostic: WidgetResolutionDiagnostic): void;
|
|
10334
10757
|
onShellAction(fromKey: string, evt: WidgetShellActionEvent): void;
|
|
@@ -10423,7 +10846,7 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
10423
10846
|
widgetClassName(widget: WidgetInstance): string;
|
|
10424
10847
|
private mergeClassNames;
|
|
10425
10848
|
private resolveRenderedCanvasItem;
|
|
10426
|
-
private
|
|
10849
|
+
private toPersistedCanonicalPage;
|
|
10427
10850
|
private savePage;
|
|
10428
10851
|
private loadPersistedPage;
|
|
10429
10852
|
private storageKey;
|
|
@@ -10431,19 +10854,8 @@ declare class DynamicWidgetPageComponent implements OnChanges, OnDestroy {
|
|
|
10431
10854
|
private buildPageScopeId;
|
|
10432
10855
|
private warnMissingKey;
|
|
10433
10856
|
private sanitizeSegment;
|
|
10434
|
-
private
|
|
10435
|
-
|
|
10436
|
-
private cloneGrouping;
|
|
10437
|
-
private buildStateRuntime;
|
|
10438
|
-
private buildStateContext;
|
|
10439
|
-
private resolveShellTemplates;
|
|
10440
|
-
private reportStateDiagnostics;
|
|
10441
|
-
private applyBootstrapCompositionHydration;
|
|
10442
|
-
private bootstrapCompositionAdapter;
|
|
10443
|
-
private dispatchWidgetEventToComposition;
|
|
10444
|
-
private stateFromCompositionSnapshot;
|
|
10445
|
-
private applyCompositionWidgetDeliveries;
|
|
10446
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetPageComponent, [null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
10857
|
+
private assertNoLegacyConnections;
|
|
10858
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetPageComponent, never>;
|
|
10447
10859
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetPageComponent, "praxis-dynamic-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showPageSettingsButton": { "alias": "showPageSettingsButton"; "required": false; }; "shellEditorComponent": { "alias": "shellEditorComponent"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; }, { "pageChange": "pageChange"; "widgetDiagnosticsChange": "widgetDiagnosticsChange"; }, never, never, true, never>;
|
|
10448
10860
|
}
|
|
10449
10861
|
|
|
@@ -10842,5 +11254,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
10842
11254
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
10843
11255
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
10844
11256
|
|
|
10845
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade,
|
|
10846
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, CompositionLink, CompositionRuntimeFacadeOptions, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkCondition, LinkConditionKind, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsOptions, PraxisAuthContext, PraxisDataQueryContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedValuePresentation, ResponsiveConfig, RichTextAppearance, RichTextVariant, RowAction, RowActionsConfig, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SurfaceBinding, SurfaceBindingMode, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TransformStepCondition, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetConnection, WidgetConnectionSource, WidgetConnectionTarget, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
11257
|
+
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, AnalyticsPresentationResolver, AnalyticsSchemaContractService, AnalyticsStatsRequestBuilderService, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, CompositionRuntimeFacade, ConsoleLoggerSink, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG$1 as GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_CATALOG as GLOBAL_ACTION_SPEC_CATALOG, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_LAYER_SCALE_DEFAULTS, PRAXIS_LAYER_SCALE_VARS, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisLayerScaleStyleService, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RESOURCE_DISCOVERY_I18N_CONFIG, RESOURCE_DISCOVERY_I18N_NAMESPACE, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceActionOpenAdapterService, ResourceDiscoveryService, ResourceQuickConnectComponent, ResourceSurfaceOpenAdapterService, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_DRAWER_BRIDGE, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildPraxisLayerScaleCss, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionUiSchema, getReferencedFieldMetadata, getTextTransformer, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isInlineFilterControlType, isRangeValidForFilter, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizePraxisDataQueryContext, normalizeResourceAvailabilityReasonCode, normalizeStart, normalizeUnknownError, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisFilterCriteria, resolveResourceAvailabilityReasonKey, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, translateResourceAvailabilityReason, translateResourceDiscoveryText, translateUnavailableWorkflowMessage, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
|
|
11258
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnalyticsIntent, AnalyticsPresentationDecision, AnalyticsPresentationFamily, AnalyticsPresentationResolverOptions, AnalyticsSchemaContractRequest, AnalyticsSourceKind, AnalyticsStatsGranularity, AnalyticsStatsMetricOperation, AnalyticsStatsOperation, AnalyticsStatsOrderBy, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentEditorialResolveOptions, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ComponentMetadataEditorialBindingDescriptor, ComponentMetadataEditorialDescriptor, ComponentPortEndpointRef, CompositionLink, CompositionRuntimeFacadeOptions, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CrudConfigureOptions, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DiagnosticPhase, DiagnosticRecord, DiagnosticSeverity, DiagnosticSource, DiagnosticSubjectKind, DiagnosticSubjectRef, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EndpointRef, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, HateoasLink, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LinkCondition, LinkConditionKind, LinkIntent, LinkMetadata, LinkPolicy, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedPageDefinitionWithIds, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PortCardinality, PortCompatibilityRuleSet, PortContract, PortDirection, PortExposure, PortSchemaKind, PortSchemaMode, PortSchemaRef, PortSemanticKind, PraxisAnalyticsBindings, PraxisAnalyticsDefaults, PraxisAnalyticsDimensionBinding, PraxisAnalyticsDistributionStatsRequest, PraxisAnalyticsExecutionMetric, PraxisAnalyticsGroupByStatsRequest, PraxisAnalyticsInteractions, PraxisAnalyticsMetricBinding, PraxisAnalyticsOptions, PraxisAnalyticsPresentationHints, PraxisAnalyticsProjection, PraxisAnalyticsSortRule, PraxisAnalyticsSource, PraxisAnalyticsStatsExecutionPlan, PraxisAnalyticsStatsMetricRequest, PraxisAnalyticsStatsRequest, PraxisAnalyticsTimeSeriesStatsRequest, PraxisAuthContext, PraxisDataQueryContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisLayerScale, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PraxisXUiAnalytics, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResolvedComponentMetadataEditorialBinding, ResolvedComponentMetadataEditorialMeta, ResolvedValuePresentation, ResourceActionCatalogItem, ResourceActionCatalogResponse, ResourceActionOpenAdapterOptions, ResourceActionScope, ResourceAvailabilityDecision, ResourceCapabilitySnapshot, ResourceDiscoveryRel, ResourceDiscoveryRequestOptions, ResourceLinkSource, ResourceSurfaceCatalogItem, ResourceSurfaceCatalogResponse, ResourceSurfaceKind, ResourceSurfaceOpenAdapterOptions, ResourceSurfaceScope, ResponsiveConfig, RestApiLinks, RestApiResponse, RichTextAppearance, RichTextVariant, RowAction, RowActionsConfig, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, RuntimeLinkSnapshot, RuntimeLinkStatus, RuntimePayloadSummary, RuntimeSnapshot, RuntimeSnapshotStatus, RuntimeStateSnapshot, RuntimeTraceEntry, RuntimeTracePhase, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateEndpointRef, StateMessagesConfig, SurfaceBinding, SurfaceBindingMode, SurfaceDrawerBridge, SurfaceDrawerOpenContent, SurfaceDrawerOpenOptions, SurfaceDrawerRef, SurfaceDrawerResult, SurfaceDrawerWidthPreset, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TransformBinding, TransformBindingSource, TransformCatalogCategory, TransformCatalogEntry, TransformKind, TransformLegacyReplacement, TransformOutputHint, TransformPhase, TransformPipeline, TransformSemanticKind, TransformStep, TransformStepCondition, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetDefinition, WidgetDerivedStateNode, WidgetEventEnvelope, WidgetEventPathSegment, WidgetInstance, WidgetPageCanvasCollisionPolicy, WidgetPageCanvasConstraints, WidgetPageCanvasItem, WidgetPageCanvasItemOverride, WidgetPageCanvasLayout, WidgetPageCanvasLayoutVariant, WidgetPageCompositionDefinition, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotAssignments, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetResolutionDiagnostic, WidgetResolutionPhase, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|