@myrmidon/paged-data-browsers 5.2.0 → 5.2.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myrmidon/paged-data-browsers",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.2",
|
|
4
4
|
"description": "Generic simple paged data browsers.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"data browsers"
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"name": "Daniele Fusi"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@angular/common": "^
|
|
18
|
-
"@angular/core": "^
|
|
19
|
-
"@angular/forms": "^
|
|
20
|
-
"@angular/material": "^
|
|
17
|
+
"@angular/common": "^21.2.10",
|
|
18
|
+
"@angular/core": "^21.2.10",
|
|
19
|
+
"@angular/forms": "^21.2.10",
|
|
20
|
+
"@angular/material": "^21.2.8",
|
|
21
21
|
"@myrmidon/ngx-tools": "^2.0.2"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
@@ -34,5 +34,6 @@
|
|
|
34
34
|
"types": "./types/myrmidon-paged-data-browsers.d.ts",
|
|
35
35
|
"default": "./fesm2022/myrmidon-paged-data-browsers.mjs"
|
|
36
36
|
}
|
|
37
|
-
}
|
|
37
|
+
},
|
|
38
|
+
"type": "module"
|
|
38
39
|
}
|
|
@@ -402,9 +402,13 @@ declare class CompactPagerComponent {
|
|
|
402
402
|
* Emits the new paging information when the user changes the page.
|
|
403
403
|
*/
|
|
404
404
|
readonly pagingChange: _angular_core.OutputEmitterRef<PagingInfo>;
|
|
405
|
+
/** Navigate to the first page. */
|
|
405
406
|
onFirst(): void;
|
|
407
|
+
/** Navigate to the previous page (no-op when already on page 1). */
|
|
406
408
|
onPrevious(): void;
|
|
409
|
+
/** Navigate to the next page (no-op when already on the last page). */
|
|
407
410
|
onNext(): void;
|
|
411
|
+
/** Navigate to the last page (no-op when already on the last page). */
|
|
408
412
|
onLast(): void;
|
|
409
413
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CompactPagerComponent, never>;
|
|
410
414
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CompactPagerComponent, "pdb-compact-pager", never, { "paging": { "alias": "paging"; "required": false; "isSignal": true; }; }, { "pagingChange": "pagingChange"; }, never, never, true, never>;
|
|
@@ -427,6 +431,9 @@ declare class RangeViewComponent {
|
|
|
427
431
|
* The height of the component.
|
|
428
432
|
*/
|
|
429
433
|
height: _angular_core.InputSignal<number>;
|
|
434
|
+
/**
|
|
435
|
+
* The scaled range [start, limit] in pixels, derived from domain, range, and width.
|
|
436
|
+
*/
|
|
430
437
|
scaledRange: _angular_core.Signal<number[]>;
|
|
431
438
|
constructor();
|
|
432
439
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RangeViewComponent, never>;
|
|
@@ -504,8 +511,11 @@ declare class BrowserTreeNodeComponent {
|
|
|
504
511
|
* Emits when the user wants to edit the node's filter.
|
|
505
512
|
*/
|
|
506
513
|
readonly editNodeFilterRequest: _angular_core.OutputEmitterRef<PagedTreeNode<any>>;
|
|
514
|
+
/** Emits toggleExpandedRequest for the current node. */
|
|
507
515
|
onToggleExpanded(): void;
|
|
516
|
+
/** Emits changePageRequest for the given node and new paging state. */
|
|
508
517
|
onPagingChange(node: PagedTreeNode<any>, paging: PagingInfo): void;
|
|
518
|
+
/** Emits editNodeFilterRequest for the current node. */
|
|
509
519
|
onEditFilter(): void;
|
|
510
520
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BrowserTreeNodeComponent, never>;
|
|
511
521
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BrowserTreeNodeComponent, "pdb-browser-tree-node", never, { "node": { "alias": "node"; "required": false; "isSignal": true; }; "paging": { "alias": "paging"; "required": false; "isSignal": true; }; "debug": { "alias": "debug"; "required": false; "isSignal": true; }; "hideLabel": { "alias": "hideLabel"; "required": false; "isSignal": true; }; "hideLoc": { "alias": "hideLoc"; "required": false; "isSignal": true; }; "hidePaging": { "alias": "hidePaging"; "required": false; "isSignal": true; }; "hideFilter": { "alias": "hideFilter"; "required": false; "isSignal": true; }; "indentSize": { "alias": "indentSize"; "required": false; "isSignal": true; }; "rangeWidth": { "alias": "rangeWidth"; "required": false; "isSignal": true; }; }, { "toggleExpandedRequest": "toggleExpandedRequest"; "changePageRequest": "changePageRequest"; "editNodeFilterRequest": "editNodeFilterRequest"; }, never, ["*"], true, never>;
|