@praxisui/table 1.0.0-beta.20 → 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/fesm2022/praxisui-table.mjs +11 -5
- package/fesm2022/praxisui-table.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -1272,6 +1272,7 @@ interface BehaviorConfigChange {
|
|
|
1272
1272
|
declare class BehaviorConfigEditorComponent implements OnInit, OnDestroy {
|
|
1273
1273
|
private fb;
|
|
1274
1274
|
config: TableConfig;
|
|
1275
|
+
resourcePath?: string;
|
|
1275
1276
|
configChange: EventEmitter<_praxisui_core.TableConfigModern>;
|
|
1276
1277
|
behaviorChange: EventEmitter<BehaviorConfigChange>;
|
|
1277
1278
|
behaviorForm: FormGroup;
|
|
@@ -1291,7 +1292,7 @@ declare class BehaviorConfigEditorComponent implements OnInit, OnDestroy {
|
|
|
1291
1292
|
private arrayToString;
|
|
1292
1293
|
private stringToArray;
|
|
1293
1294
|
static ɵfac: i0.ɵɵFactoryDeclaration<BehaviorConfigEditorComponent, never>;
|
|
1294
|
-
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>;
|
|
1295
1296
|
}
|
|
1296
1297
|
|
|
1297
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"
|