@praxisui/table 1.0.0-beta.43 → 1.0.0-beta.44

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/index.d.ts CHANGED
@@ -730,6 +730,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
730
730
  private route?;
731
731
  private logger?;
732
732
  private static dslRuntimeInstanceCounter;
733
+ private static readonly CELL_ANIMATION_CHANGE_CACHE_LIMIT;
733
734
  private static readonly ROW_ANIMATION_PRESETS;
734
735
  private static readonly ROW_ANIMATION_PRESET_ALIASES;
735
736
  config: TableConfig;
@@ -890,6 +891,10 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
890
891
  private fallbackLoggerEnvironment;
891
892
  private lastColumnDropHandledAt;
892
893
  private activeColumnDragField;
894
+ private readonly _effectiveCellRenderCache;
895
+ private readonly cellAnimationPreviousValuesByRowId;
896
+ private readonly cellAnimationPreviousValuesByRowRef;
897
+ private readonly cellAnimationPreviousRowIdOrder;
893
898
  private getLogger;
894
899
  private buildLogOptions;
895
900
  private debugLog;
@@ -1054,6 +1059,12 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
1054
1059
  getCellClasses(rowData: any, column: ColumnDefinition): string[] | undefined;
1055
1060
  getCellNgStyle(rowData: any, column: ColumnDefinition): Record<string, string> | undefined;
1056
1061
  private resetComputedContextCache;
1062
+ private ensureEffectiveCellRenderCache;
1063
+ private ensureCellAnimationPreviousValuesByRowId;
1064
+ private ensureCellAnimationPreviousValuesByRowRef;
1065
+ private ensureCellAnimationPreviousRowIdOrder;
1066
+ private clearEffectiveCellRendererCache;
1067
+ private clearCellAnimationChangeState;
1057
1068
  private collectComputedFieldNames;
1058
1069
  private buildComputedSignature;
1059
1070
  private stringifyDependencyValue;
@@ -1072,10 +1083,17 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
1072
1083
  getRowClasses(rowData: any): string[] | undefined;
1073
1084
  getRowNgStyle(rowData: any): Record<string, string> | undefined;
1074
1085
  private getRowRenderer;
1086
+ private isMotionReductionRequested;
1075
1087
  private isRowAnimationRuntimeEnabled;
1088
+ private isCellAnimationRuntimeEnabled;
1089
+ private resolveRuntimeConditionalAnimationConfig;
1090
+ private getCellAnimationValueSignature;
1091
+ private shouldActivateCellAnimationOnChange;
1076
1092
  private getRowAnimationConfig;
1077
1093
  private getRowAnimationClasses;
1078
1094
  private getRowAnimationNgStyle;
1095
+ getCellContentClasses(rowData: any, column: ColumnDefinition): string[] | undefined;
1096
+ getCellContentNgStyle(rowData: any, column: ColumnDefinition): Record<string, string> | undefined;
1079
1097
  getRowTooltip(rowData: any): any;
1080
1098
  getRowTooltipPosition(rowData: any): 'above' | 'below' | 'left' | 'right';
1081
1099
  getRowTooltipShowDelay(rowData: any): number;
@@ -1170,9 +1188,11 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
1170
1188
  getComposeGapStyle(row: any, column: ColumnDefinition): any;
1171
1189
  asItemColumn(base: ColumnDefinition, item: any): any;
1172
1190
  getItemEffectiveType(row: any, column: ColumnDefinition, item: any): any;
1173
- private _rendererOverrideCache;
1174
1191
  private mergeRenderer;
1175
- private sanitizeColumnConditionalRendererRule;
1192
+ private hasRenderableColumnOverride;
1193
+ private resolveColumnRuleAnimationCandidate;
1194
+ private buildEffectiveCellRenderCacheKey;
1195
+ private getEffectiveCellRenderResult;
1176
1196
  private getEffectiveRenderer;
1177
1197
  getLinkHref(row: any, column: ColumnDefinition): string | null;
1178
1198
  getLinkText(row: any, column: ColumnDefinition): string;
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@praxisui/table",
3
- "version": "1.0.0-beta.43",
3
+ "version": "1.0.0-beta.44",
4
4
  "description": "Advanced data table for Angular (Praxis UI) with editing, filtering, sorting, virtualization, and settings panel integration.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",
7
7
  "@angular/core": "^20.0.0",
8
- "@praxisui/core": "^1.0.0-beta.43",
9
- "@praxisui/dynamic-fields": "^1.0.0-beta.43",
10
- "@praxisui/dynamic-form": "^1.0.0-beta.43",
11
- "@praxisui/metadata-editor": "^1.0.0-beta.43",
12
- "@praxisui/settings-panel": "^1.0.0-beta.43",
13
- "@praxisui/table-rule-builder": "^1.0.0-beta.43"
8
+ "@praxisui/core": "^1.0.0-beta.44",
9
+ "@praxisui/dynamic-fields": "^1.0.0-beta.44",
10
+ "@praxisui/dynamic-form": "^1.0.0-beta.44",
11
+ "@praxisui/metadata-editor": "^1.0.0-beta.44",
12
+ "@praxisui/settings-panel": "^1.0.0-beta.44",
13
+ "@praxisui/table-rule-builder": "^1.0.0-beta.44"
14
14
  },
15
15
  "dependencies": {
16
16
  "tslib": "^2.3.0"