@praxisui/table 1.0.0-beta.64 → 1.0.0-beta.66
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 +2 -2
- package/fesm2022/praxisui-table.mjs +393 -223
- package/fesm2022/praxisui-table.mjs.map +1 -1
- package/index.d.ts +8 -0
- package/package.json +7 -7
package/index.d.ts
CHANGED
|
@@ -1042,6 +1042,10 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1042
1042
|
shouldRenderExpansionDetailRow(row: any, index?: number): boolean;
|
|
1043
1043
|
getRowExpansionDetailId(row: any, index?: number): string;
|
|
1044
1044
|
getRowExpansionToggleAriaLabel(row: any, index?: number): string;
|
|
1045
|
+
getExpansionCollapsedIcon(): string;
|
|
1046
|
+
getExpansionExpandedIcon(): string;
|
|
1047
|
+
getExpansionMotionPresetClass(): string;
|
|
1048
|
+
getExpansionMotionStyle(): Record<string, string>;
|
|
1045
1049
|
getRowExpansionRegionAriaLabel(row: any, index?: number): string;
|
|
1046
1050
|
getExpansionDetailViewState(row: any, index?: number): ExpansionDetailViewState;
|
|
1047
1051
|
getExpansionDetailItems(schema: Record<string, unknown> | null): any[];
|
|
@@ -1115,6 +1119,9 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
1115
1119
|
private sanitizeDomIdToken;
|
|
1116
1120
|
private areStringSetsEqual;
|
|
1117
1121
|
private shouldToggleExpansionOnRowClick;
|
|
1122
|
+
private getExpansionMotionPreset;
|
|
1123
|
+
private getExpansionMotionDurationMs;
|
|
1124
|
+
private getExpansionMotionEasingCurve;
|
|
1118
1125
|
private isInteractiveRowTarget;
|
|
1119
1126
|
private restoreFocusToToggle;
|
|
1120
1127
|
private collapseExpandedRowsByPolicy;
|
|
@@ -2001,6 +2008,7 @@ declare class BehaviorConfigEditorComponent implements OnInit, OnDestroy, OnChan
|
|
|
2001
2008
|
private stringToArray;
|
|
2002
2009
|
private stringToStringArray;
|
|
2003
2010
|
private resolvePositiveNumber;
|
|
2011
|
+
private resolveNonNegativeNumber;
|
|
2004
2012
|
private resolveExpansionMaxExpandedRows;
|
|
2005
2013
|
private asRecord;
|
|
2006
2014
|
private cloneRecord;
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/table",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.66",
|
|
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.
|
|
9
|
-
"@praxisui/dynamic-fields": "^1.0.0-beta.
|
|
10
|
-
"@praxisui/dynamic-form": "^1.0.0-beta.
|
|
11
|
-
"@praxisui/metadata-editor": "^1.0.0-beta.
|
|
12
|
-
"@praxisui/settings-panel": "^1.0.0-beta.
|
|
13
|
-
"@praxisui/table-rule-builder": "^1.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^1.0.0-beta.66",
|
|
9
|
+
"@praxisui/dynamic-fields": "^1.0.0-beta.66",
|
|
10
|
+
"@praxisui/dynamic-form": "^1.0.0-beta.66",
|
|
11
|
+
"@praxisui/metadata-editor": "^1.0.0-beta.66",
|
|
12
|
+
"@praxisui/settings-panel": "^1.0.0-beta.66",
|
|
13
|
+
"@praxisui/table-rule-builder": "^1.0.0-beta.66"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"tslib": "^2.3.0"
|