@flusys/ng-layout 3.0.0-rc → 3.0.1
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 +393 -483
- package/fesm2022/flusys-ng-layout.mjs +56 -47
- package/fesm2022/flusys-ng-layout.mjs.map +1 -1
- package/package.json +12 -12
- package/types/flusys-ng-layout.d.ts +5 -3
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flusys/ng-layout",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Layout components for FLUSYS Angular applications",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@angular/common": "
|
|
8
|
-
"@angular/core": "
|
|
9
|
-
"@angular/router": "
|
|
10
|
-
"@flusys/ng-core": "
|
|
11
|
-
"@flusys/ng-shared": "
|
|
12
|
-
"@primeuix/themes": "
|
|
13
|
-
"primeicons": "
|
|
14
|
-
"primeng": "
|
|
15
|
-
"tailwindcss": "
|
|
16
|
-
"tailwindcss-primeui": "
|
|
7
|
+
"@angular/common": ">=21.0.0",
|
|
8
|
+
"@angular/core": ">=21.0.0",
|
|
9
|
+
"@angular/router": ">=21.0.0",
|
|
10
|
+
"@flusys/ng-core": ">=3.0.1",
|
|
11
|
+
"@flusys/ng-shared": ">=3.0.1",
|
|
12
|
+
"@primeuix/themes": ">=1.0.0",
|
|
13
|
+
"primeicons": ">=7.0.0",
|
|
14
|
+
"primeng": ">=21.0.0",
|
|
15
|
+
"tailwindcss": ">=4.0.0",
|
|
16
|
+
"tailwindcss-primeui": ">=0.6.0"
|
|
17
17
|
},
|
|
18
18
|
"sideEffects": false,
|
|
19
19
|
"module": "fesm2022/flusys-ng-layout.mjs",
|
|
@@ -30,4 +30,4 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"tslib": "^2.3.0"
|
|
32
32
|
}
|
|
33
|
-
}
|
|
33
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { Signal, InjectionToken } from '@angular/core';
|
|
2
|
+
import { Signal, InjectionToken, Type } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import { ILogicNode, IconTypeEnum } from '@flusys/ng-shared';
|
|
@@ -72,6 +72,7 @@ interface ILayoutAuthApi {
|
|
|
72
72
|
}
|
|
73
73
|
declare const LAYOUT_AUTH_STATE: InjectionToken<ILayoutAuthState>;
|
|
74
74
|
declare const LAYOUT_AUTH_API: InjectionToken<ILayoutAuthApi>;
|
|
75
|
+
declare const LAYOUT_NOTIFICATION_BELL: InjectionToken<Type<unknown>>;
|
|
75
76
|
|
|
76
77
|
interface LayoutConfig {
|
|
77
78
|
preset?: string;
|
|
@@ -421,11 +422,12 @@ declare class AppTopbar {
|
|
|
421
422
|
private readonly document;
|
|
422
423
|
private readonly destroyRef;
|
|
423
424
|
readonly layoutService: LayoutService;
|
|
425
|
+
readonly notificationBellComponent: _angular_core.Type<unknown> | null;
|
|
424
426
|
private readonly configContainer;
|
|
425
427
|
readonly activePanel: _angular_core.WritableSignal<ActivePanel>;
|
|
426
428
|
constructor();
|
|
427
429
|
readonly companyName: _angular_core.Signal<string>;
|
|
428
|
-
readonly enableCompanyFeature:
|
|
430
|
+
readonly enableCompanyFeature: boolean;
|
|
429
431
|
toggleDarkMode(): void;
|
|
430
432
|
togglePanel(panel: ActivePanel): void;
|
|
431
433
|
private handleOutsideClick;
|
|
@@ -530,5 +532,5 @@ declare const NavyBlueTheme: _primeuix_themes_types.Preset;
|
|
|
530
532
|
|
|
531
533
|
declare const GreenTheme: _primeuix_themes_types.Preset;
|
|
532
534
|
|
|
533
|
-
export { AppCompanyBranchSelector, AppConfigurator, AppFloatingConfigurator, AppFooter, AppLauncher, AppLayout, AppMenu, AppMenuitem, AppProfile, AppSidebar, AppTopbar, GreenTheme, LAYOUT_AUTH_API, LAYOUT_AUTH_STATE, LayoutPersistenceService, LayoutService, NavyBlueTheme, filterAppsByPermissions, filterMenuByPermissions };
|
|
535
|
+
export { AppCompanyBranchSelector, AppConfigurator, AppFloatingConfigurator, AppFooter, AppLauncher, AppLayout, AppMenu, AppMenuitem, AppProfile, AppSidebar, AppTopbar, GreenTheme, LAYOUT_AUTH_API, LAYOUT_AUTH_STATE, LAYOUT_NOTIFICATION_BELL, LayoutPersistenceService, LayoutService, NavyBlueTheme, filterAppsByPermissions, filterMenuByPermissions };
|
|
534
536
|
export type { CompanyProfile, DocumentWithViewTransition, IBranchInfo, ICompanyInfo, ILauncherApp, ILayoutAuthApi, ILayoutAuthState, IMenuItem, IUserInfo, LayoutConfig, LayoutState, MenuChangeEvent, UserProfile, ViewTransition };
|