@indigina/ui-kit 1.1.300 → 1.1.301
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/index.d.ts
CHANGED
|
@@ -4257,6 +4257,7 @@ interface KitMobileMenuItem {
|
|
|
4257
4257
|
links: {
|
|
4258
4258
|
title: string;
|
|
4259
4259
|
commands: string[];
|
|
4260
|
+
permissions?: KitPermission;
|
|
4260
4261
|
extras?: NavigationExtras;
|
|
4261
4262
|
}[];
|
|
4262
4263
|
}
|
|
@@ -4270,7 +4271,9 @@ declare class KitMobileMenuComponent {
|
|
|
4270
4271
|
readonly navListFooter: Signal<HTMLDivElement | undefined>;
|
|
4271
4272
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
4272
4273
|
readonly selectedItem: () => KitMobileMenuItem | null;
|
|
4274
|
+
readonly displayedItems: Observable<KitMobileMenuItem[]>;
|
|
4273
4275
|
setSelectedItem(item: KitMobileMenuItem | null): void;
|
|
4276
|
+
private filterMenuItemsByPermissions;
|
|
4274
4277
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitMobileMenuComponent, never>;
|
|
4275
4278
|
static ɵcmp: i0.ɵɵComponentDeclaration<KitMobileMenuComponent, "kit-mobile-menu", never, { "kitMobileMenuItems": { "alias": "kitMobileMenuItems"; "required": true; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; }, {}, ["categoryItem", "linkItem", "navListFooter"], never, true, never>;
|
|
4276
4279
|
}
|