@praxisui/table 8.0.0-beta.104 → 8.0.0-beta.106
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 +1 -1
- package/fesm2022/{praxisui-table-praxisui-table-BV50-u0I.mjs → praxisui-table-praxisui-table-CunEk0vb.mjs} +1667 -457
- package/fesm2022/{praxisui-table-table-ai.adapter-BsUGcbAY.mjs → praxisui-table-table-ai.adapter-BvaMq2CS.mjs} +1 -1
- package/fesm2022/praxisui-table.mjs +1 -1
- package/package.json +10 -10
- package/src/lib/praxis-table.json-api.md +152 -139
- package/types/praxisui-table.d.ts +85 -19
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _praxisui_core from '@praxisui/core';
|
|
2
|
-
import { TableToolbarAppearanceConfig, TableConfig, LoggerService, PraxisI18nService, TableToolbarAppearanceVariant, TableToolbarAppearanceDensity, TableToolbarAppearanceShape, TableToolbarAppearanceDivider, TableToolbarTokenName, GlobalConfigService, AsyncConfigStorage, FieldMetadata, SchemaIdParams, FormConfig, GenericCrudService, DynamicFormService, SchemaNormalizerService, ComponentKeyService, ComponentDocMeta, PraxisTextValue, PraxisAnalyticsProjection, PraxisDataQueryContext, ApiUrlConfig, PraxisQueryFilterExpression, RecordRelatedSurfaceContextPack, LoadingState, RestApiLinks, ColumnDefinition, RichBlockNode, ResourceCapabilityDigest, ConnectionStorage, LoadingOrchestrator, GlobalActionService, PraxisLoadingRenderer, PraxisRuntimeComponentObservationEnvelope, TableDetailRichListNode, TableDetailCardGridNode, TableDetailCardGridCardNode, TableDetailTimelineNode, JsonLogicDataRecord, TableDetailListItemAction, TableDetailActionBarNode, TableDetailActionBarAction, TableDetailRefNode, TableDetailTemplateRefNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, PraxisExportScope, GlobalActionRef, PraxisRuntimeGlobalActionEffect, ResourceActionCatalogItem, ResourceSurfaceCatalogItem, JsonLogicExpression, GlobalActionCatalogEntry, IconPickerService, SurfaceOpenPayload, GlobalActionField, FieldDefinition, PraxisRuntimeConditionalEffectRule, PraxisJsonLogicService, TableConfigService, SettingsValueProvider as SettingsValueProvider$1, AnalyticsSchemaContractService, AnalyticsPresentationResolver, RichPresenterNode, RichComposeNode, ComponentAuthoringManifest, AiCapability, AiCapabilityCategory, AiValueKind, AiCapabilityCatalog } from '@praxisui/core';
|
|
2
|
+
import { TableToolbarAppearanceConfig, TableConfig, LoggerService, PraxisI18nService, TableToolbarAppearanceVariant, TableToolbarAppearanceDensity, TableToolbarAppearanceShape, TableToolbarAppearanceDivider, TableToolbarTokenName, GlobalConfigService, AsyncConfigStorage, ApiUrlEntry, FieldMetadata, SchemaIdParams, FormConfig, GenericCrudService, DynamicFormService, SchemaNormalizerService, ComponentKeyService, ComponentDocMeta, PraxisTextValue, PraxisAnalyticsProjection, PraxisDataQueryContext, ApiUrlConfig, PraxisQueryFilterExpression, RecordRelatedSurfaceContextPack, LoadingState, RestApiLinks, ColumnDefinition, RichBlockNode, ResourceCapabilityDigest, ConnectionStorage, LoadingOrchestrator, GlobalActionService, PraxisLoadingRenderer, PraxisRuntimeComponentObservationEnvelope, TableDetailRichListNode, TableDetailCardGridNode, TableDetailCardGridCardNode, TableDetailTimelineNode, JsonLogicDataRecord, TableDetailListItemAction, TableDetailActionBarNode, TableDetailActionBarAction, TableDetailRefNode, TableDetailTemplateRefNode, TableDetailDiagramEmbedNode, TableDetailEmbedAction, PraxisExportScope, GlobalActionRef, PraxisRuntimeGlobalActionEffect, ResourceActionCatalogItem, ResourceSurfaceCatalogItem, JsonLogicExpression, GlobalActionCatalogEntry, IconPickerService, SurfaceOpenPayload, GlobalActionField, FieldDefinition, PraxisRuntimeConditionalEffectRule, PraxisJsonLogicService, TableConfigService, SettingsValueProvider as SettingsValueProvider$1, AnalyticsSchemaContractService, AnalyticsPresentationResolver, RichPresenterNode, RichComposeNode, ComponentAuthoringManifest, AiCapability, AiCapabilityCategory, AiValueKind, AiCapabilityCatalog } from '@praxisui/core';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
4
|
import { InjectionToken, OnDestroy, EventEmitter, ElementRef, Provider, OnInit, OnChanges, AfterViewInit, DoCheck, DestroyRef, ChangeDetectorRef, NgZone, SimpleChanges, ComponentRef, AfterContentInit, Injector } from '@angular/core';
|
|
5
5
|
import { ActivatedRoute } from '@angular/router';
|
|
@@ -55,6 +55,8 @@ declare class PraxisTableToolbar implements OnDestroy {
|
|
|
55
55
|
showMobileActions: boolean;
|
|
56
56
|
exportBusy: boolean;
|
|
57
57
|
evaluationContext: Record<string, any> | null;
|
|
58
|
+
/** @internal Used by PraxisTable so toolbar menu decisions materialize through the table runtime. */
|
|
59
|
+
columnVisibilityController?: (field: string, visible: boolean) => void;
|
|
58
60
|
toolbarAction: EventEmitter<{
|
|
59
61
|
action: string;
|
|
60
62
|
actionConfig?: any;
|
|
@@ -82,12 +84,23 @@ declare class PraxisTableToolbar implements OnDestroy {
|
|
|
82
84
|
getToolbarLeadingLabel(): string;
|
|
83
85
|
getToolbarActionsLabel(): string;
|
|
84
86
|
getToolbarConfigurationLabel(): string;
|
|
87
|
+
getToolbarIdentityLabel(): string;
|
|
88
|
+
getToolbarIdentityTooltip(): string | null;
|
|
89
|
+
hasToolbarIdentity(): boolean;
|
|
90
|
+
getToolbarTitle(): string;
|
|
91
|
+
getToolbarSubtitle(): string;
|
|
92
|
+
getToolbarIcon(): string | null;
|
|
93
|
+
getToolbarTextAlign(): 'start' | 'center' | 'end';
|
|
85
94
|
getExportDataLabel(): string;
|
|
86
95
|
getMoreActionsLabel(): string;
|
|
87
96
|
emitExportAction(event: Event, format: string): void;
|
|
88
97
|
getColumnsVisibilityLabel(): string;
|
|
89
98
|
isColumnsVisibilityEnabled(): boolean;
|
|
90
99
|
getVisibleColumnsCount(): number;
|
|
100
|
+
isColumnVisibilityToggleDisabled(column: {
|
|
101
|
+
visible?: boolean;
|
|
102
|
+
} | null | undefined): boolean;
|
|
103
|
+
onColumnVisibilityMenuToggle(event: Event, field: string, currentlyVisible: boolean): void;
|
|
91
104
|
toggleColumnVisibility(field: string, visible: boolean): void;
|
|
92
105
|
private tx;
|
|
93
106
|
ngOnDestroy(): void;
|
|
@@ -145,7 +158,7 @@ declare class PraxisTableToolbar implements OnDestroy {
|
|
|
145
158
|
private sortActions;
|
|
146
159
|
getExportIcon(format: string): string;
|
|
147
160
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisTableToolbar, [null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
148
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisTableToolbar, "praxis-table-toolbar", never, { "config": { "alias": "config"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "showMain": { "alias": "showMain"; "required": false; }; "showActionsGroup": { "alias": "showActionsGroup"; "required": false; }; "showEndActions": { "alias": "showEndActions"; "required": false; }; "showMobileActions": { "alias": "showMobileActions"; "required": false; }; "exportBusy": { "alias": "exportBusy"; "required": false; }; "evaluationContext": { "alias": "evaluationContext"; "required": false; }; }, { "toolbarAction": "toolbarAction"; "exportAction": "exportAction"; "columnVisibilityToggle": "columnVisibilityToggle"; }, never, ["[advancedFilter]", "[toolbar]", "[end-actions]"], true, never>;
|
|
161
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisTableToolbar, "praxis-table-toolbar", never, { "config": { "alias": "config"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "showMain": { "alias": "showMain"; "required": false; }; "showActionsGroup": { "alias": "showActionsGroup"; "required": false; }; "showEndActions": { "alias": "showEndActions"; "required": false; }; "showMobileActions": { "alias": "showMobileActions"; "required": false; }; "exportBusy": { "alias": "exportBusy"; "required": false; }; "evaluationContext": { "alias": "evaluationContext"; "required": false; }; "columnVisibilityController": { "alias": "columnVisibilityController"; "required": false; }; }, { "toolbarAction": "toolbarAction"; "exportAction": "exportAction"; "columnVisibilityToggle": "columnVisibilityToggle"; }, never, ["[advancedFilter]", "[toolbar]", "[end-actions]"], true, never>;
|
|
149
162
|
}
|
|
150
163
|
|
|
151
164
|
type ColumnDataType$1 = 'date' | 'number' | 'currency' | 'percentage' | 'string' | 'boolean' | 'custom';
|
|
@@ -418,6 +431,8 @@ declare class PraxisFilter implements OnInit, OnChanges, AfterViewInit, OnDestro
|
|
|
418
431
|
private route?;
|
|
419
432
|
private logger?;
|
|
420
433
|
resourcePath: string;
|
|
434
|
+
/** Resolved API entry carried by detached hosts when route-scoped API_URL is not inherited. */
|
|
435
|
+
apiUrlEntry?: ApiUrlEntry | null;
|
|
421
436
|
/**
|
|
422
437
|
* Optional static metadata for offline/showcase usage.
|
|
423
438
|
* When this input is provided (including an empty array), server schema loading is bypassed.
|
|
@@ -645,6 +660,7 @@ declare class PraxisFilter implements OnInit, OnChanges, AfterViewInit, OnDestro
|
|
|
645
660
|
private updateOverlayWidth;
|
|
646
661
|
private computeIsMobile;
|
|
647
662
|
ngOnChanges(changes: SimpleChanges): void;
|
|
663
|
+
private configureCrud;
|
|
648
664
|
private areStringArraysEqual;
|
|
649
665
|
private normalizeFieldIdList;
|
|
650
666
|
private areMetadataOverrideMapsEqual;
|
|
@@ -815,7 +831,7 @@ declare class PraxisFilter implements OnInit, OnChanges, AfterViewInit, OnDestro
|
|
|
815
831
|
private isEditableElement;
|
|
816
832
|
private focusQuick;
|
|
817
833
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisFilter, [null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
818
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisFilter, "praxis-filter", never, { "resourcePath": { "alias": "resourcePath"; "required": true; }; "fieldMetadata": { "alias": "fieldMetadata"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "notifyIfOutdated": { "alias": "notifyIfOutdated"; "required": false; }; "snoozeMs": { "alias": "snoozeMs"; "required": false; }; "autoOpenSettingsOnOutdated": { "alias": "autoOpenSettingsOnOutdated"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "value": { "alias": "value"; "required": false; }; "alwaysVisibleFields": { "alias": "alwaysVisibleFields"; "required": false; }; "alwaysVisibleFieldMetadataOverrides": { "alias": "alwaysVisibleFieldMetadataOverrides"; "required": false; }; "selectedFieldIds": { "alias": "selectedFieldIds"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; "allowSaveTags": { "alias": "allowSaveTags"; "required": false; }; "persistenceKey": { "alias": "persistenceKey"; "required": false; }; "disablePersistence": { "alias": "disablePersistence"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; "changeDebounceMs": { "alias": "changeDebounceMs"; "required": false; }; "showFilterSettings": { "alias": "showFilterSettings"; "required": false; }; "showAdvancedButton": { "alias": "showAdvancedButton"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; }; "confirmTagDelete": { "alias": "confirmTagDelete"; "required": false; }; "placeBooleansInActions": { "alias": "placeBooleansInActions"; "required": false; }; "showToggleLabels": { "alias": "showToggleLabels"; "required": false; }; "useInlineSelectVariant": { "alias": "useInlineSelectVariant"; "required": false; }; "useInlineSearchableSelectVariant": { "alias": "useInlineSearchableSelectVariant"; "required": false; }; "useInlineMultiSelectVariant": { "alias": "useInlineMultiSelectVariant"; "required": false; }; "useInlineInputVariant": { "alias": "useInlineInputVariant"; "required": false; }; "useInlineToggleVariant": { "alias": "useInlineToggleVariant"; "required": false; }; "useInlineRangeVariant": { "alias": "useInlineRangeVariant"; "required": false; }; "useInlineDateVariant": { "alias": "useInlineDateVariant"; "required": false; }; "useInlineDateRangeVariant": { "alias": "useInlineDateRangeVariant"; "required": false; }; "useInlineTimeVariant": { "alias": "useInlineTimeVariant"; "required": false; }; "useInlineTimeRangeVariant": { "alias": "useInlineTimeRangeVariant"; "required": false; }; "useInlineTreeSelectVariant": { "alias": "useInlineTreeSelectVariant"; "required": false; }; "alwaysMinWidth": { "alias": "alwaysMinWidth"; "required": false; }; "alwaysColsMd": { "alias": "alwaysColsMd"; "required": false; }; "alwaysColsLg": { "alias": "alwaysColsLg"; "required": false; }; "tagColor": { "alias": "tagColor"; "required": false; }; "tagVariant": { "alias": "tagVariant"; "required": false; }; "tagButtonColor": { "alias": "tagButtonColor"; "required": false; }; "actionsButtonColor": { "alias": "actionsButtonColor"; "required": false; }; "actionsVariant": { "alias": "actionsVariant"; "required": false; }; "overlayVariant": { "alias": "overlayVariant"; "required": false; }; "overlayBackdrop": { "alias": "overlayBackdrop"; "required": false; }; "advancedOpenMode": { "alias": "advancedOpenMode"; "required": false; }; "advancedClearButtonsEnabled": { "alias": "advancedClearButtonsEnabled"; "required": false; }; }, { "submit": "submit"; "change": "change"; "clear": "clear"; "modeChange": "modeChange"; "requestSearch": "requestSearch"; "tagsChange": "tagsChange"; "selectedFieldIdsChange": "selectedFieldIdsChange"; "metaChanged": "metaChanged"; "schemaStatusChange": "schemaStatusChange"; }, never, never, true, never>;
|
|
834
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisFilter, "praxis-filter", never, { "resourcePath": { "alias": "resourcePath"; "required": true; }; "apiUrlEntry": { "alias": "apiUrlEntry"; "required": false; }; "fieldMetadata": { "alias": "fieldMetadata"; "required": false; }; "filterId": { "alias": "filterId"; "required": false; }; "formId": { "alias": "formId"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "notifyIfOutdated": { "alias": "notifyIfOutdated"; "required": false; }; "snoozeMs": { "alias": "snoozeMs"; "required": false; }; "autoOpenSettingsOnOutdated": { "alias": "autoOpenSettingsOnOutdated"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "value": { "alias": "value"; "required": false; }; "alwaysVisibleFields": { "alias": "alwaysVisibleFields"; "required": false; }; "alwaysVisibleFieldMetadataOverrides": { "alias": "alwaysVisibleFieldMetadataOverrides"; "required": false; }; "selectedFieldIds": { "alias": "selectedFieldIds"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; "allowSaveTags": { "alias": "allowSaveTags"; "required": false; }; "persistenceKey": { "alias": "persistenceKey"; "required": false; }; "disablePersistence": { "alias": "disablePersistence"; "required": false; }; "i18n": { "alias": "i18n"; "required": false; }; "changeDebounceMs": { "alias": "changeDebounceMs"; "required": false; }; "showFilterSettings": { "alias": "showFilterSettings"; "required": false; }; "showAdvancedButton": { "alias": "showAdvancedButton"; "required": false; }; "showAddButton": { "alias": "showAddButton"; "required": false; }; "showClearButton": { "alias": "showClearButton"; "required": false; }; "showSearchButton": { "alias": "showSearchButton"; "required": false; }; "confirmTagDelete": { "alias": "confirmTagDelete"; "required": false; }; "placeBooleansInActions": { "alias": "placeBooleansInActions"; "required": false; }; "showToggleLabels": { "alias": "showToggleLabels"; "required": false; }; "useInlineSelectVariant": { "alias": "useInlineSelectVariant"; "required": false; }; "useInlineSearchableSelectVariant": { "alias": "useInlineSearchableSelectVariant"; "required": false; }; "useInlineMultiSelectVariant": { "alias": "useInlineMultiSelectVariant"; "required": false; }; "useInlineInputVariant": { "alias": "useInlineInputVariant"; "required": false; }; "useInlineToggleVariant": { "alias": "useInlineToggleVariant"; "required": false; }; "useInlineRangeVariant": { "alias": "useInlineRangeVariant"; "required": false; }; "useInlineDateVariant": { "alias": "useInlineDateVariant"; "required": false; }; "useInlineDateRangeVariant": { "alias": "useInlineDateRangeVariant"; "required": false; }; "useInlineTimeVariant": { "alias": "useInlineTimeVariant"; "required": false; }; "useInlineTimeRangeVariant": { "alias": "useInlineTimeRangeVariant"; "required": false; }; "useInlineTreeSelectVariant": { "alias": "useInlineTreeSelectVariant"; "required": false; }; "alwaysMinWidth": { "alias": "alwaysMinWidth"; "required": false; }; "alwaysColsMd": { "alias": "alwaysColsMd"; "required": false; }; "alwaysColsLg": { "alias": "alwaysColsLg"; "required": false; }; "tagColor": { "alias": "tagColor"; "required": false; }; "tagVariant": { "alias": "tagVariant"; "required": false; }; "tagButtonColor": { "alias": "tagButtonColor"; "required": false; }; "actionsButtonColor": { "alias": "actionsButtonColor"; "required": false; }; "actionsVariant": { "alias": "actionsVariant"; "required": false; }; "overlayVariant": { "alias": "overlayVariant"; "required": false; }; "overlayBackdrop": { "alias": "overlayBackdrop"; "required": false; }; "advancedOpenMode": { "alias": "advancedOpenMode"; "required": false; }; "advancedClearButtonsEnabled": { "alias": "advancedClearButtonsEnabled"; "required": false; }; }, { "submit": "submit"; "change": "change"; "clear": "clear"; "modeChange": "modeChange"; "requestSearch": "requestSearch"; "tagsChange": "tagsChange"; "selectedFieldIdsChange": "selectedFieldIdsChange"; "metaChanged": "metaChanged"; "schemaStatusChange": "schemaStatusChange"; }, never, never, true, never>;
|
|
819
835
|
}
|
|
820
836
|
|
|
821
837
|
declare const PRAXIS_FILTER_COMPONENT_METADATA: ComponentDocMeta;
|
|
@@ -909,6 +925,7 @@ type PraxisDataQueryContextBridge = {
|
|
|
909
925
|
meta?: Record<string, unknown> | null;
|
|
910
926
|
};
|
|
911
927
|
type DataMode = 'remote' | 'local' | 'empty';
|
|
928
|
+
type TableConfigPersistenceStrategy = 'local-first' | 'input-first' | 'volatile';
|
|
912
929
|
type RowExpansionTrigger = 'icon' | 'row' | 'keyboard' | 'api' | 'restore';
|
|
913
930
|
type RowExpansionReasonCode = 'user' | 'policy' | 'restore' | 'api';
|
|
914
931
|
type RowExpansionChangeBase = {
|
|
@@ -1029,6 +1046,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1029
1046
|
data: any[] | null;
|
|
1030
1047
|
tableId: string;
|
|
1031
1048
|
componentInstanceId?: string;
|
|
1049
|
+
configPersistenceStrategy: TableConfigPersistenceStrategy;
|
|
1032
1050
|
title: string;
|
|
1033
1051
|
subtitle: string;
|
|
1034
1052
|
icon: string;
|
|
@@ -1109,6 +1127,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1109
1127
|
private lastResolvedDataMode;
|
|
1110
1128
|
private localFilterFieldMetadataCache;
|
|
1111
1129
|
private localFilterFieldMetadataCacheKey;
|
|
1130
|
+
private remoteSchemaLoadSequence;
|
|
1112
1131
|
private remoteDataLoadSequence;
|
|
1113
1132
|
private analyticsLoadSequence;
|
|
1114
1133
|
private uncontrolledExpandedRowKeys;
|
|
@@ -1285,6 +1304,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1285
1304
|
private readonly cellAnimationPreviousValuesByRowId;
|
|
1286
1305
|
private readonly cellAnimationPreviousValuesByRowRef;
|
|
1287
1306
|
private readonly cellAnimationPreviousRowIdOrder;
|
|
1307
|
+
private readonly progressRichContentContextByRowRef;
|
|
1288
1308
|
private getLogger;
|
|
1289
1309
|
private buildLogOptions;
|
|
1290
1310
|
private debugLog;
|
|
@@ -1315,6 +1335,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1315
1335
|
private clearSchemaFieldsSnapshot;
|
|
1316
1336
|
private componentKeyId;
|
|
1317
1337
|
private storageKey;
|
|
1338
|
+
private isVolatileConfigPersistence;
|
|
1318
1339
|
private tableConfigKey;
|
|
1319
1340
|
private filterConfigKey;
|
|
1320
1341
|
private ensureConfigDefaults;
|
|
@@ -1680,10 +1701,14 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1680
1701
|
private persistHorizontalScrollInput;
|
|
1681
1702
|
private showPersistenceFailureFeedback;
|
|
1682
1703
|
private showResetSuccessFeedback;
|
|
1704
|
+
readonly toolbarColumnVisibilityController: (field: string, visible: boolean) => void;
|
|
1683
1705
|
toggleColumnVisibility(field: string, visible: boolean): void;
|
|
1684
1706
|
openTableSettings(): void;
|
|
1685
1707
|
private applyTableConfig;
|
|
1686
1708
|
private buildTableEditorRuntimeContext;
|
|
1709
|
+
private emitWidgetInputPatch;
|
|
1710
|
+
private scheduleWidgetInputPatch;
|
|
1711
|
+
private cloneInputPatch;
|
|
1687
1712
|
private executeTableEditorApplyPlan;
|
|
1688
1713
|
private attachRuntimeMetadataToEditorConfig;
|
|
1689
1714
|
private syncInternalFilterSettings;
|
|
@@ -1838,6 +1863,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1838
1863
|
private applyImplicitRuntimeCellPresentation;
|
|
1839
1864
|
private shouldHumanizeRuntimeEnumCell;
|
|
1840
1865
|
private resolveCellFormattingType;
|
|
1866
|
+
private isCanonicalNumericFormat;
|
|
1841
1867
|
private normalizeReadonlyEntityLookupCellValue;
|
|
1842
1868
|
private toEntityLookupDisplayToken;
|
|
1843
1869
|
private isEntityLookupDisplayCandidate;
|
|
@@ -2005,8 +2031,10 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
2005
2031
|
getBadgeIcon(row: any, column: ColumnDefinition): string | null;
|
|
2006
2032
|
getBadgeClasses(row: any, column: ColumnDefinition): string[];
|
|
2007
2033
|
getBadgeRichContentNodes(row: any, column: ColumnDefinition): RichBlockNode[];
|
|
2034
|
+
shouldRenderBadge(row: any, column: ColumnDefinition): boolean;
|
|
2008
2035
|
getEffectiveRendererType(row: any, column: ColumnDefinition): 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'html' | 'compose' | 'rating' | null;
|
|
2009
2036
|
getComposeItems(row: any, column: ColumnDefinition): any[];
|
|
2037
|
+
trackComposeItem(index: number, item: any): string;
|
|
2010
2038
|
getComposeClasses(row: any, column: ColumnDefinition): string[];
|
|
2011
2039
|
getComposeGapStyle(row: any, column: ColumnDefinition): any;
|
|
2012
2040
|
private getComposeItemField;
|
|
@@ -2043,7 +2071,9 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
2043
2071
|
onButtonClick(row: any, column: ColumnDefinition, event: Event): void;
|
|
2044
2072
|
getChipText(row: any, column: ColumnDefinition): string | null;
|
|
2045
2073
|
private getRendererTextFieldValue;
|
|
2074
|
+
private normalizeRendererText;
|
|
2046
2075
|
getChipRichContentNodes(row: any, column: ColumnDefinition): RichBlockNode[];
|
|
2076
|
+
shouldRenderChip(row: any, column: ColumnDefinition): boolean;
|
|
2047
2077
|
getChipIcon(row: any, column: ColumnDefinition): string | null;
|
|
2048
2078
|
getChipClasses(row: any, column: ColumnDefinition): string[];
|
|
2049
2079
|
getProgressValue(row: any, column: ColumnDefinition): number;
|
|
@@ -2215,7 +2245,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
2215
2245
|
private scheduleRowDiscoveryMarkForCheck;
|
|
2216
2246
|
ngOnDestroy(): void;
|
|
2217
2247
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisTable, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
2218
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisTable, "praxis-table", never, { "config": { "alias": "config"; "required": false; }; "resourcePath": { "alias": "resourcePath"; "required": false; }; "data": { "alias": "data"; "required": false; }; "tableId": { "alias": "tableId"; "required": true; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "autoDelete": { "alias": "autoDelete"; "required": false; }; "notifyIfOutdated": { "alias": "notifyIfOutdated"; "required": false; }; "snoozeMs": { "alias": "snoozeMs"; "required": false; }; "autoOpenSettingsOnOutdated": { "alias": "autoOpenSettingsOnOutdated"; "required": false; }; "crudContext": { "alias": "crudContext"; "required": false; }; "filterCriteria": { "alias": "filterCriteria"; "required": false; }; "queryContext": { "alias": "queryContext"; "required": false; }; "aiContext": { "alias": "aiContext"; "required": false; }; "aiAssistantVoiceInputMode": { "alias": "aiAssistantVoiceInputMode"; "required": false; }; "aiAssistantVoiceLanguage": { "alias": "aiAssistantVoiceLanguage"; "required": false; }; "horizontalScroll": { "alias": "horizontalScroll"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "dense": { "alias": "dense"; "required": false; }; }, { "rowClick": "rowClick"; "widgetEvent": "widgetEvent"; "rowDoubleClick": "rowDoubleClick"; "rowExpansionChange": "rowExpansionChange"; "rowAction": "rowAction"; "toolbarAction": "toolbarAction"; "bulkAction": "bulkAction"; "exportAction": "exportAction"; "columnReorder": "columnReorder"; "columnReorderAttempt": "columnReorderAttempt"; "beforeDelete": "beforeDelete"; "afterDelete": "afterDelete"; "deleteError": "deleteError"; "beforeBulkDelete": "beforeBulkDelete"; "afterBulkDelete": "afterBulkDelete"; "bulkDeleteError": "bulkDeleteError"; "schemaStatusChange": "schemaStatusChange"; "configChange": "configChange"; "metadataChange": "metadataChange"; "loadingStateChange": "loadingStateChange"; "collectionLinksChange": "collectionLinksChange"; "selectionChange": "selectionChange"; }, ["toolbar", "projectedFilter"], ["[advancedFilter]", "[toolbar]", "[advancedFilter]", "[toolbar]", "[advancedFilter]", "[toolbar]"], true, never>;
|
|
2248
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisTable, "praxis-table", never, { "config": { "alias": "config"; "required": false; }; "resourcePath": { "alias": "resourcePath"; "required": false; }; "data": { "alias": "data"; "required": false; }; "tableId": { "alias": "tableId"; "required": true; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; "configPersistenceStrategy": { "alias": "configPersistenceStrategy"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "autoDelete": { "alias": "autoDelete"; "required": false; }; "notifyIfOutdated": { "alias": "notifyIfOutdated"; "required": false; }; "snoozeMs": { "alias": "snoozeMs"; "required": false; }; "autoOpenSettingsOnOutdated": { "alias": "autoOpenSettingsOnOutdated"; "required": false; }; "crudContext": { "alias": "crudContext"; "required": false; }; "filterCriteria": { "alias": "filterCriteria"; "required": false; }; "queryContext": { "alias": "queryContext"; "required": false; }; "aiContext": { "alias": "aiContext"; "required": false; }; "aiAssistantVoiceInputMode": { "alias": "aiAssistantVoiceInputMode"; "required": false; }; "aiAssistantVoiceLanguage": { "alias": "aiAssistantVoiceLanguage"; "required": false; }; "horizontalScroll": { "alias": "horizontalScroll"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "dense": { "alias": "dense"; "required": false; }; }, { "rowClick": "rowClick"; "widgetEvent": "widgetEvent"; "rowDoubleClick": "rowDoubleClick"; "rowExpansionChange": "rowExpansionChange"; "rowAction": "rowAction"; "toolbarAction": "toolbarAction"; "bulkAction": "bulkAction"; "exportAction": "exportAction"; "columnReorder": "columnReorder"; "columnReorderAttempt": "columnReorderAttempt"; "beforeDelete": "beforeDelete"; "afterDelete": "afterDelete"; "deleteError": "deleteError"; "beforeBulkDelete": "beforeBulkDelete"; "afterBulkDelete": "afterBulkDelete"; "bulkDeleteError": "bulkDeleteError"; "schemaStatusChange": "schemaStatusChange"; "configChange": "configChange"; "metadataChange": "metadataChange"; "loadingStateChange": "loadingStateChange"; "collectionLinksChange": "collectionLinksChange"; "selectionChange": "selectionChange"; }, ["toolbar", "projectedFilter"], ["[advancedFilter]", "[toolbar]", "[advancedFilter]", "[toolbar]", "[advancedFilter]", "[toolbar]"], true, never>;
|
|
2219
2249
|
static ngAcceptInputType_enableCustomization: unknown;
|
|
2220
2250
|
}
|
|
2221
2251
|
|
|
@@ -2407,7 +2437,15 @@ interface ExtendedColumnDefinition extends ColumnDefinition {
|
|
|
2407
2437
|
resizable?: boolean;
|
|
2408
2438
|
filterable?: boolean;
|
|
2409
2439
|
}
|
|
2410
|
-
|
|
2440
|
+
interface RendererFieldOption {
|
|
2441
|
+
name: string;
|
|
2442
|
+
label: string;
|
|
2443
|
+
type?: string;
|
|
2444
|
+
isVisible: boolean;
|
|
2445
|
+
isHidden?: boolean;
|
|
2446
|
+
}
|
|
2447
|
+
type ComposePresetId = 'personAvatar' | 'contactTwoLines' | 'documentEmail' | 'statusChip';
|
|
2448
|
+
declare class ColumnsConfigEditorComponent implements OnInit, OnChanges, OnDestroy {
|
|
2411
2449
|
private cdr;
|
|
2412
2450
|
private readonly i18n;
|
|
2413
2451
|
tx(key: string, fallback: string): string;
|
|
@@ -2415,6 +2453,15 @@ declare class ColumnsConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
2415
2453
|
readonly ratingRendererHint: string;
|
|
2416
2454
|
readonly composeRatingRendererHint: string;
|
|
2417
2455
|
config: TableConfig;
|
|
2456
|
+
fieldMetadata: Array<{
|
|
2457
|
+
name?: string;
|
|
2458
|
+
label?: string;
|
|
2459
|
+
type?: string;
|
|
2460
|
+
tableHidden?: boolean;
|
|
2461
|
+
hidden?: boolean;
|
|
2462
|
+
xUi?: Record<string, any>;
|
|
2463
|
+
ui?: Record<string, any>;
|
|
2464
|
+
}>;
|
|
2418
2465
|
configChange: EventEmitter<_praxisui_core.TableConfigModern>;
|
|
2419
2466
|
columnChange: EventEmitter<ColumnChange>;
|
|
2420
2467
|
columns: ExtendedColumnDefinition[];
|
|
@@ -2437,12 +2484,7 @@ declare class ColumnsConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
2437
2484
|
onlyVisibleRendererFields: boolean;
|
|
2438
2485
|
uiRendererType: 'icon' | 'image' | 'badge' | 'link' | 'button' | 'chip' | 'progress' | 'avatar' | 'toggle' | 'menu' | 'rating' | 'html' | 'compose' | null;
|
|
2439
2486
|
private _rendererApplyTimer;
|
|
2440
|
-
rendererFieldOptions:
|
|
2441
|
-
name: string;
|
|
2442
|
-
label: string;
|
|
2443
|
-
type?: string;
|
|
2444
|
-
isVisible: boolean;
|
|
2445
|
-
}>;
|
|
2487
|
+
rendererFieldOptions: RendererFieldOption[];
|
|
2446
2488
|
uiRendererConditional: boolean;
|
|
2447
2489
|
condOverridesSelectedIndex: number;
|
|
2448
2490
|
getConditionalOverrides(): any[];
|
|
@@ -2468,15 +2510,14 @@ declare class ColumnsConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
2468
2510
|
private rendererAppliedSnapshot;
|
|
2469
2511
|
previewRows: any[];
|
|
2470
2512
|
private refreshRendererFieldOptions;
|
|
2471
|
-
getRendererFieldOptions():
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
isVisible: boolean;
|
|
2476
|
-
}>;
|
|
2513
|
+
getRendererFieldOptions(): RendererFieldOption[];
|
|
2514
|
+
formatRendererFieldOption(option: RendererFieldOption): string;
|
|
2515
|
+
private buildRendererFieldOptions;
|
|
2516
|
+
private sortRendererFieldOptions;
|
|
2477
2517
|
onRendererFieldToggleChange(): void;
|
|
2478
2518
|
constructor(cdr: ChangeDetectorRef);
|
|
2479
2519
|
ngOnInit(): void;
|
|
2520
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2480
2521
|
ngOnDestroy(): void;
|
|
2481
2522
|
private updateGlobalSettings;
|
|
2482
2523
|
private updateVisibilityState;
|
|
@@ -2615,6 +2656,7 @@ declare class ColumnsConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
2615
2656
|
private normalizePreviewRatingValue;
|
|
2616
2657
|
getPreviewAvatarSrc(row: any): string | null;
|
|
2617
2658
|
getPreviewAvatarInitials(row: any): string;
|
|
2659
|
+
private derivePreviewAvatarInitials;
|
|
2618
2660
|
getPreviewAvatarStyle(): Record<string, string>;
|
|
2619
2661
|
getPreviewAvatarShape(): 'square' | 'rounded' | 'circle' | undefined;
|
|
2620
2662
|
getPreviewToggleState(row: any): boolean;
|
|
@@ -2632,6 +2674,7 @@ declare class ColumnsConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
2632
2674
|
}>;
|
|
2633
2675
|
private getComposeItemSummary;
|
|
2634
2676
|
addComposeItem(kind: string): void;
|
|
2677
|
+
applyComposePreset(preset: ComposePresetId): void;
|
|
2635
2678
|
removeComposeItem(index: number): void;
|
|
2636
2679
|
duplicateComposeItem(index: number): void;
|
|
2637
2680
|
onComposeReorder(event: any): void;
|
|
@@ -2641,6 +2684,8 @@ declare class ColumnsConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
2641
2684
|
getSelectedComposeItem(): any;
|
|
2642
2685
|
getSelectedComposeItemProp(path: string): any;
|
|
2643
2686
|
setSelectedComposeItemProp(path: string, value: any): void;
|
|
2687
|
+
private findRendererFieldByCandidates;
|
|
2688
|
+
private normalizeFieldLookup;
|
|
2644
2689
|
getColumnKeyInputType(column: ColumnDefinition | null): 'text' | 'number' | 'boolean';
|
|
2645
2690
|
onMappingChange(mapping: {
|
|
2646
2691
|
[key: string | number]: string;
|
|
@@ -2677,7 +2722,7 @@ declare class ColumnsConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
2677
2722
|
}): void;
|
|
2678
2723
|
private updateFieldSchemasForStyleRules;
|
|
2679
2724
|
static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsConfigEditorComponent, never>;
|
|
2680
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsConfigEditorComponent, "columns-config-editor", never, { "config": { "alias": "config"; "required": false; }; }, { "configChange": "configChange"; "columnChange": "columnChange"; }, never, never, true, never>;
|
|
2725
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ColumnsConfigEditorComponent, "columns-config-editor", never, { "config": { "alias": "config"; "required": false; }; "fieldMetadata": { "alias": "fieldMetadata"; "required": false; }; }, { "configChange": "configChange"; "columnChange": "columnChange"; }, never, never, true, never>;
|
|
2681
2726
|
}
|
|
2682
2727
|
|
|
2683
2728
|
interface BehaviorConfigChange {
|
|
@@ -2939,6 +2984,9 @@ declare class ToolbarActionsEditorComponent implements OnInit, OnDestroy, OnChan
|
|
|
2939
2984
|
private getActionDraftKey;
|
|
2940
2985
|
private getActionDedupeKey;
|
|
2941
2986
|
pickAddButtonIcon(): Promise<void>;
|
|
2987
|
+
pickToolbarIcon(): Promise<void>;
|
|
2988
|
+
private normalizeToolbarIcon;
|
|
2989
|
+
private normalizeToolbarTextAlign;
|
|
2942
2990
|
pickActionIcon(index: number): Promise<void>;
|
|
2943
2991
|
pickRowActionIcon(index: number): Promise<void>;
|
|
2944
2992
|
pickBulkActionIcon(index: number): Promise<void>;
|
|
@@ -3334,6 +3382,7 @@ declare class TableRulesEditorComponent implements OnChanges, OnInit, OnDestroy
|
|
|
3334
3382
|
ngOnDestroy(): void;
|
|
3335
3383
|
get columnFields(): string[];
|
|
3336
3384
|
getOperatorsForField(fieldName: string | null): string[];
|
|
3385
|
+
getFieldDisplayLabel(fieldName: string | null): string;
|
|
3337
3386
|
onScopeChange(scope: 'row' | 'column'): void;
|
|
3338
3387
|
onColumnSelect(field: string): void;
|
|
3339
3388
|
private initFromConfig;
|
|
@@ -3543,6 +3592,7 @@ declare class PraxisTableConfigEditor implements OnInit, OnDestroy, SettingsValu
|
|
|
3543
3592
|
private readonly panelRef;
|
|
3544
3593
|
constructor(cdr: ChangeDetectorRef, configService: TableConfigService);
|
|
3545
3594
|
tx(key: string, fallback: string): string;
|
|
3595
|
+
private normalizeSearchText;
|
|
3546
3596
|
private isDebugLoggingEnabled;
|
|
3547
3597
|
private debugLog;
|
|
3548
3598
|
ngOnInit(): void;
|
|
@@ -3556,6 +3606,8 @@ declare class PraxisTableConfigEditor implements OnInit, OnDestroy, SettingsValu
|
|
|
3556
3606
|
private cloneFilterSettings;
|
|
3557
3607
|
private isEffectivelyEmptyFilterSettings;
|
|
3558
3608
|
getFilterSettingsMetas(): FieldMetadata[];
|
|
3609
|
+
getColumnAuthoringMetas(): FieldMetadata[];
|
|
3610
|
+
get filteredIdFieldOptions(): FieldMetadata[];
|
|
3559
3611
|
isUsingFilterDtoMetas(): boolean;
|
|
3560
3612
|
getEffectiveDataMode(): EffectiveDataMode;
|
|
3561
3613
|
isEffectiveLocalMode(): boolean;
|
|
@@ -3589,6 +3641,7 @@ declare class PraxisTableConfigEditor implements OnInit, OnDestroy, SettingsValu
|
|
|
3589
3641
|
onResourcePathChange(val: string): void;
|
|
3590
3642
|
private loadFilterDtoMetas;
|
|
3591
3643
|
onIdFieldChange(val: string): void;
|
|
3644
|
+
onIdFieldOptionSelected(value: string): void;
|
|
3592
3645
|
onHorizontalScrollChange(val: 'auto' | 'wrap' | 'none'): void;
|
|
3593
3646
|
onReconcileIdField(): void;
|
|
3594
3647
|
onAcceptServerHash(): void;
|
|
@@ -3656,6 +3709,8 @@ declare class PraxisTableWidgetConfigEditor implements SettingsValueProvider$1,
|
|
|
3656
3709
|
readonly isDirty$: BehaviorSubject<boolean>;
|
|
3657
3710
|
readonly isValid$: BehaviorSubject<boolean>;
|
|
3658
3711
|
readonly isBusy$: BehaviorSubject<boolean>;
|
|
3712
|
+
private readonly cdr;
|
|
3713
|
+
private readonly crudService;
|
|
3659
3714
|
private readonly subscription;
|
|
3660
3715
|
ngAfterViewInit(): void;
|
|
3661
3716
|
ngOnDestroy(): void;
|
|
@@ -3663,6 +3718,11 @@ declare class PraxisTableWidgetConfigEditor implements SettingsValueProvider$1,
|
|
|
3663
3718
|
onSave(): PraxisTableWidgetEditorValue;
|
|
3664
3719
|
reset(): void;
|
|
3665
3720
|
private initializeChildEditor;
|
|
3721
|
+
private hydrateColumnsFromSchemaIfNeeded;
|
|
3722
|
+
private fieldToColumn;
|
|
3723
|
+
private resolveColumnType;
|
|
3724
|
+
private humanizeFieldName;
|
|
3725
|
+
private tryInject;
|
|
3666
3726
|
private buildValue;
|
|
3667
3727
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisTableWidgetConfigEditor, never>;
|
|
3668
3728
|
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisTableWidgetConfigEditor, "praxis-table-widget-config-editor", never, { "inputs": { "alias": "inputs"; "required": false; }; "widgetKey": { "alias": "widgetKey"; "required": false; }; }, {}, never, never, true, never>;
|
|
@@ -3872,6 +3932,8 @@ declare class PraxisTableInlineAuthoringEditorComponent implements OnChanges {
|
|
|
3872
3932
|
workingConfig: TableConfig;
|
|
3873
3933
|
toolbarTitle: string;
|
|
3874
3934
|
toolbarSubtitle: string;
|
|
3935
|
+
toolbarIcon: string;
|
|
3936
|
+
toolbarTextAlign: 'start' | 'center' | 'end';
|
|
3875
3937
|
toolbarVisible: boolean;
|
|
3876
3938
|
density: 'compact' | 'comfortable' | 'spacious';
|
|
3877
3939
|
toolbarActionsPosition: 'top' | 'bottom' | 'both';
|
|
@@ -3902,6 +3964,8 @@ declare class PraxisTableInlineAuthoringEditorComponent implements OnChanges {
|
|
|
3902
3964
|
ngOnChanges(): void;
|
|
3903
3965
|
setToolbarTitle(value: string): void;
|
|
3904
3966
|
setToolbarSubtitle(value: string): void;
|
|
3967
|
+
setToolbarIcon(value: string): void;
|
|
3968
|
+
setToolbarTextAlign(value: 'start' | 'center' | 'end'): void;
|
|
3905
3969
|
setToolbarVisible(value: boolean): void;
|
|
3906
3970
|
setDensity(value: 'compact' | 'comfortable' | 'spacious'): void;
|
|
3907
3971
|
setToolbarActionsPosition(value: 'top' | 'bottom' | 'both'): void;
|
|
@@ -3931,6 +3995,8 @@ declare class PraxisTableInlineAuthoringEditorComponent implements OnChanges {
|
|
|
3931
3995
|
behaviorSummary(): string;
|
|
3932
3996
|
statesSummary(): string;
|
|
3933
3997
|
columnsPreviewSummary(): string;
|
|
3998
|
+
private normalizeToolbarTextAlign;
|
|
3999
|
+
private normalizeToolbarIcon;
|
|
3934
4000
|
serializedConfig(): string;
|
|
3935
4001
|
tx(key: string, fallback: string): string;
|
|
3936
4002
|
private emitConfig;
|
|
@@ -4524,4 +4590,4 @@ declare function compileTableComponentEditPlans(plans: TableComponentEditPlan[],
|
|
|
4524
4590
|
declare function compileTableComponentEditPlan(plan: TableComponentEditPlan, currentConfig: TableConfig): TableComponentEditPlanCompileResult;
|
|
4525
4591
|
|
|
4526
4592
|
export { AnalyticsTableConfigAdapterService, AnalyticsTableContractService, AnalyticsTableStatsApiService, BOOLEAN_PRESETS, BehaviorConfigEditorComponent, CURRENCY_PRESETS, ColumnsConfigEditorComponent, DATE_PRESETS, DataFormatterComponent, DataFormattingService, FORMULA_TEMPLATES, FilterConfigService, FilterSettingsComponent, FormulaGeneratorService, JsonConfigEditorComponent, MessagesLocalizationEditorComponent, NUMBER_PRESETS, PERCENTAGE_PRESETS, PRAXIS_FILTER_COMPONENT_METADATA, PRAXIS_TABLE_AUTHORING_MANIFEST, PRAXIS_TABLE_COMPONENT_METADATA, PRAXIS_TABLE_TOOLBAR_DEFAULT_APPEARANCE, PRAXIS_TABLE_TOOLBAR_TOKEN_PRESETS, PraxisFilter, PraxisFilterWidgetConfigEditor, PraxisTable, PraxisTableConfigEditor, PraxisTableInlineAuthoringEditorComponent, PraxisTableToolbar, PraxisTableWidgetConfigEditor, STRING_PRESETS, TABLE_AI_CAPABILITIES, TABLE_COMPONENT_AI_CAPABILITIES, TABLE_COMPONENT_EDIT_PLAN_ALLOWED_CHANGE_KINDS, TABLE_COMPONENT_EDIT_PLAN_BATCH_KIND, TABLE_COMPONENT_EDIT_PLAN_EXPECTED_PATHS, TABLE_COMPONENT_EDIT_PLAN_JSON_SCHEMA, TABLE_COMPONENT_EDIT_PLAN_KIND, TABLE_COMPONENT_EDIT_PLAN_VERSION, TASK_PRESETS, TableDefaultsProvider, TableRulesEditorComponent, ToolbarActionsEditorComponent, ValueMappingEditorComponent, VisualFormulaBuilderComponent, buildTableApplyPlan, coerceTableComponentEditPlan, coerceTableComponentEditPlans, compileTableComponentEditPlan, compileTableComponentEditPlans, createTableAuthoringDocument, getActionId, getEnum, getTableCapabilities, getTableComponentEditPlanCapabilities, isTableRendererSupportedByRichContentP0, mapTableRendererToRichContentP0, normalizeTableAuthoringDocument, parseLegacyOrTableDocument, providePraxisFilterMetadata, providePraxisTableMetadata, providePraxisTableToolbarAppearance, serializeTableAuthoringDocument, toCanonicalTableConfig, validateTableAuthoringDocument };
|
|
4527
|
-
export type { ActionLike, AnalyticsTableConfigAdapterOptions, AnalyticsTableContractDefinition, AnalyticsTableContractLoadOptions, AnalyticsTableContractLoadResult, AnalyticsTableContractSource, AnalyticsTableRow, AnalyticsTableViewModel, ArithmeticParams, BehaviorConfigChange, BooleanFormatterOptions, BulkAction, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColumnChange, ColumnDataType$1 as ColumnDataType, ConcatenationParams, ConditionalMappingParams, CurrencyFormatterOptions, DataFormattingOptions, DataMode, DateFormatterOptions, DefaultValueParams, EditorDiagnostic, EditorDocument, FieldSchema, FilterConfig, FilterTag, FormatPreset, FormatterConfig, FormulaDefinition, FormulaParameterSchema, FormulaParams, FormulaTemplate, FormulaType, I18n, JsonEditorEvent, JsonValidationResult, MessagesLocalizationChange, NestedPropertyParams, NumberFormatterOptions, PercentageFormatterOptions, PraxisFilterWidgetEditorInputs, PraxisFilterWidgetEditorValue, PraxisTableWidgetEditorInputs, PraxisTableWidgetEditorValue, ResourcePathIntent, RowAction, RowExpansionChangeBase, RowExpansionChangeEvent, RowExpansionReasonCode, RowExpansionTrigger, StringFormatterOptions, TableAiContext, TableAiNavigationContextPack, TableAiNavigationDestinationContext, TableApplyPlan, TableAuthoringDocument, TableBindings, Capability as TableComponentCapability, CapabilityCatalog as TableComponentCapabilityCatalog, CapabilityCategory as TableComponentCapabilityCategory, TableComponentEditChangeKind, TableComponentEditPlan, TableComponentEditPlanCompileResult, ValueKind as TableComponentValueKind, TableHorizontalScroll, TableProjectionContext, TableRichContentP0Node, TableRuntimeContext, TableValidationContext, ToolbarAction, ToolbarActionsChange, ValueKind$1 as ValueKind, ValueMappingPair };
|
|
4593
|
+
export type { ActionLike, AnalyticsTableConfigAdapterOptions, AnalyticsTableContractDefinition, AnalyticsTableContractLoadOptions, AnalyticsTableContractLoadResult, AnalyticsTableContractSource, AnalyticsTableRow, AnalyticsTableViewModel, ArithmeticParams, BehaviorConfigChange, BooleanFormatterOptions, BulkAction, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColumnChange, ColumnDataType$1 as ColumnDataType, ConcatenationParams, ConditionalMappingParams, CurrencyFormatterOptions, DataFormattingOptions, DataMode, DateFormatterOptions, DefaultValueParams, EditorDiagnostic, EditorDocument, FieldSchema, FilterConfig, FilterTag, FormatPreset, FormatterConfig, FormulaDefinition, FormulaParameterSchema, FormulaParams, FormulaTemplate, FormulaType, I18n, JsonEditorEvent, JsonValidationResult, MessagesLocalizationChange, NestedPropertyParams, NumberFormatterOptions, PercentageFormatterOptions, PraxisFilterWidgetEditorInputs, PraxisFilterWidgetEditorValue, PraxisTableWidgetEditorInputs, PraxisTableWidgetEditorValue, ResourcePathIntent, RowAction, RowExpansionChangeBase, RowExpansionChangeEvent, RowExpansionReasonCode, RowExpansionTrigger, StringFormatterOptions, TableAiContext, TableAiNavigationContextPack, TableAiNavigationDestinationContext, TableApplyPlan, TableAuthoringDocument, TableBindings, Capability as TableComponentCapability, CapabilityCatalog as TableComponentCapabilityCatalog, CapabilityCategory as TableComponentCapabilityCategory, TableComponentEditChangeKind, TableComponentEditPlan, TableComponentEditPlanCompileResult, ValueKind as TableComponentValueKind, TableConfigPersistenceStrategy, TableHorizontalScroll, TableProjectionContext, TableRichContentP0Node, TableRuntimeContext, TableValidationContext, ToolbarAction, ToolbarActionsChange, ValueKind$1 as ValueKind, ValueMappingPair };
|