@ngrdt/menu 0.0.69 → 0.0.72
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/ngrdt-menu.mjs +15 -10
- package/fesm2022/ngrdt-menu.mjs.map +1 -1
- package/index.d.ts +2 -2
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -227,7 +227,7 @@ declare abstract class RdtMenuBaseComponent {
|
|
|
227
227
|
protected autofocusSubmenuItem: 'first' | 'last' | null;
|
|
228
228
|
protected readonly filteredItems: Signal<ParsedRdtMenuItem[]>;
|
|
229
229
|
get clientSize(): Size;
|
|
230
|
-
private
|
|
230
|
+
private _windowSize;
|
|
231
231
|
get bodyMargin(): {
|
|
232
232
|
top: number;
|
|
233
233
|
bottom: number;
|
|
@@ -277,7 +277,7 @@ declare abstract class RdtMenuBaseComponent {
|
|
|
277
277
|
protected readMargin(): void;
|
|
278
278
|
protected measureClientSize(): void;
|
|
279
279
|
protected measureButtonContainer(): void;
|
|
280
|
-
protected
|
|
280
|
+
protected listenWindowResizeScroll(): void;
|
|
281
281
|
protected listenShortcuts(): void;
|
|
282
282
|
protected getShortcutMap(itemsWithShortcuts: ParsedRdtMenuItemWithShortcut[]): Record<string, ParsedRdtMenuItem[]>;
|
|
283
283
|
protected onShortcut(shortcut: RdtShortcut, map: Record<string, ParsedRdtMenuItem[]>): void;
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngrdt/menu",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.72",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.2.0",
|
|
6
6
|
"@angular/core": ">=18.2.0",
|
|
7
7
|
"@angular/router": ">=18.2.0",
|
|
8
8
|
"rxjs": ">=7.0.0",
|
|
9
|
-
"@ngrdt/router": "^0.0.
|
|
10
|
-
"@ngrdt/utils": "^0.0.
|
|
11
|
-
"@ngrdt/button": "^0.0.
|
|
12
|
-
"@ngrdt/shortcuts": "^0.0.
|
|
9
|
+
"@ngrdt/router": "^0.0.72",
|
|
10
|
+
"@ngrdt/utils": "^0.0.72",
|
|
11
|
+
"@ngrdt/button": "^0.0.72",
|
|
12
|
+
"@ngrdt/shortcuts": "^0.0.72"
|
|
13
13
|
},
|
|
14
14
|
"sideEffects": false,
|
|
15
15
|
"module": "fesm2022/ngrdt-menu.mjs",
|