@praxisui/table 1.0.0-beta.7 → 1.0.0-beta.8

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
@@ -638,6 +638,7 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
638
638
  getActionsHeaderIcon(): string | undefined;
639
639
  getActionsHeaderTooltip(): string | undefined;
640
640
  private styleSpecCache;
641
+ private actionSpecCache;
641
642
  schemaError: boolean;
642
643
  dataError: boolean;
643
644
  errorMessage: string | null;
@@ -743,6 +744,8 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
743
744
  getCellClasses(rowData: any, column: ColumnDefinition): string[] | undefined;
744
745
  getCellNgStyle(rowData: any, column: ColumnDefinition): Record<string, string> | undefined;
745
746
  private evaluateStyleRule;
747
+ /** Evaluate row action visibility condition using the same DSL as styles */
748
+ private evaluateActionCondition;
746
749
  getRowClasses(rowData: any): string[] | undefined;
747
750
  getRowNgStyle(rowData: any): Record<string, string> | undefined;
748
751
  /**
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@praxisui/table",
3
- "version": "1.0.0-beta.7",
3
+ "version": "1.0.0-beta.8",
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.7",
9
- "@praxisui/dynamic-fields": "^1.0.0-beta.7",
10
- "@praxisui/dynamic-form": "^1.0.0-beta.7",
11
- "@praxisui/settings-panel": "^1.0.0-beta.7"
8
+ "@praxisui/core": "^1.0.0-beta.8",
9
+ "@praxisui/dynamic-fields": "^1.0.0-beta.8",
10
+ "@praxisui/dynamic-form": "^1.0.0-beta.8",
11
+ "@praxisui/settings-panel": "^1.0.0-beta.8"
12
12
  },
13
13
  "dependencies": {
14
14
  "tslib": "^2.3.0"