@praxisui/table 1.0.0-beta.19 → 1.0.0-beta.21
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 +8 -0
- package/fesm2022/praxisui-table.mjs +76 -8
- package/fesm2022/praxisui-table.mjs.map +1 -1
- package/index.d.ts +9 -1
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -720,6 +720,8 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
720
720
|
openTableSettings(): void;
|
|
721
721
|
private applyTableConfig;
|
|
722
722
|
onResetPreferences(): void;
|
|
723
|
+
private resolvePagingStrategy;
|
|
724
|
+
private resolveSortingStrategy;
|
|
723
725
|
private applyDataSourceSettings;
|
|
724
726
|
private setupColumns;
|
|
725
727
|
private applyDefaultSortIfNone;
|
|
@@ -731,6 +733,11 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
|
|
|
731
733
|
private verifyServerSchemaVersion;
|
|
732
734
|
private loadSchema;
|
|
733
735
|
private convertFieldToColumn;
|
|
736
|
+
/**
|
|
737
|
+
* Apply automatic renderer hints based on schema field metadata.
|
|
738
|
+
* Runs only on initial bootstrap (when columns are derived from schema).
|
|
739
|
+
*/
|
|
740
|
+
private applyAutoRenderer;
|
|
734
741
|
/**
|
|
735
742
|
* Check if a value is a valid ColumnDataType
|
|
736
743
|
*/
|
|
@@ -1265,6 +1272,7 @@ interface BehaviorConfigChange {
|
|
|
1265
1272
|
declare class BehaviorConfigEditorComponent implements OnInit, OnDestroy {
|
|
1266
1273
|
private fb;
|
|
1267
1274
|
config: TableConfig;
|
|
1275
|
+
resourcePath?: string;
|
|
1268
1276
|
configChange: EventEmitter<_praxisui_core.TableConfigModern>;
|
|
1269
1277
|
behaviorChange: EventEmitter<BehaviorConfigChange>;
|
|
1270
1278
|
behaviorForm: FormGroup;
|
|
@@ -1284,7 +1292,7 @@ declare class BehaviorConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
1284
1292
|
private arrayToString;
|
|
1285
1293
|
private stringToArray;
|
|
1286
1294
|
static ɵfac: i0.ɵɵFactoryDeclaration<BehaviorConfigEditorComponent, never>;
|
|
1287
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BehaviorConfigEditorComponent, "behavior-config-editor", never, { "config": { "alias": "config"; "required": false; }; }, { "configChange": "configChange"; "behaviorChange": "behaviorChange"; }, never, never, true, never>;
|
|
1295
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BehaviorConfigEditorComponent, "behavior-config-editor", never, { "config": { "alias": "config"; "required": false; }; "resourcePath": { "alias": "resourcePath"; "required": false; }; }, { "configChange": "configChange"; "behaviorChange": "behaviorChange"; }, never, never, true, never>;
|
|
1288
1296
|
}
|
|
1289
1297
|
|
|
1290
1298
|
interface ToolbarAction {
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/table",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.21",
|
|
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/settings-panel": "^1.0.0-beta.
|
|
12
|
-
"@praxisui/table-rule-builder": "^1.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^1.0.0-beta.21",
|
|
9
|
+
"@praxisui/dynamic-fields": "^1.0.0-beta.21",
|
|
10
|
+
"@praxisui/dynamic-form": "^1.0.0-beta.21",
|
|
11
|
+
"@praxisui/settings-panel": "^1.0.0-beta.21",
|
|
12
|
+
"@praxisui/table-rule-builder": "^1.0.0-beta.21"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"tslib": "^2.3.0"
|