ngx-bimplus-components 0.0.136-webcomponents → 0.0.136
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/esm2022/lib/components/bimplus-main-menu/bimplus-main-menu.component.mjs +22 -4
- package/esm2022/lib/components/bimplus-navbar/bimplus-navbar.component.mjs +19 -6
- package/esm2022/lib/components/bimplus-navbar/logo-state.enum.mjs +2 -1
- package/fesm2022/ngx-bimplus-components.mjs +40 -8
- package/fesm2022/ngx-bimplus-components.mjs.map +1 -1
- package/lib/components/bimplus-navbar/bimplus-navbar.component.d.ts +5 -1
- package/lib/components/bimplus-navbar/logo-state.enum.d.ts +1 -0
- package/package.json +9 -1
|
@@ -10,6 +10,8 @@ export declare class BimplusNavbarComponent {
|
|
|
10
10
|
isNavbarMenuVisible: boolean;
|
|
11
11
|
isNavbarInfoVisible: boolean;
|
|
12
12
|
logoState: LogoState;
|
|
13
|
+
set isModelViewerActiveValue(value: boolean);
|
|
14
|
+
protected readonly isModelViewerActive: import("@angular/core").WritableSignal<boolean>;
|
|
13
15
|
isNavbarMessageVisible: boolean;
|
|
14
16
|
isNavbarMenuActive: boolean;
|
|
15
17
|
isNavbarMenuEnabled: boolean;
|
|
@@ -18,15 +20,17 @@ export declare class BimplusNavbarComponent {
|
|
|
18
20
|
selectedLanguage: string;
|
|
19
21
|
bimplusNavbarClicked: EventEmitter<string>;
|
|
20
22
|
LogoState: typeof LogoState;
|
|
23
|
+
protected readonly logoStateSignal: import("@angular/core").Signal<LogoState>;
|
|
21
24
|
_menuClicked(): void;
|
|
22
25
|
_logoClicked(): void;
|
|
23
26
|
_projectInfoClicked(): void;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<BimplusNavbarComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusNavbarComponent, "lib-bimplus-navbar", never, { "projectInfo": { "alias": "projectInfo"; "required": false; }; "teamInfo": { "alias": "teamInfo"; "required": false; }; "isDev": { "alias": "isDev"; "required": false; }; "isStage": { "alias": "isStage"; "required": false; }; "teamInfoOffset": { "alias": "teamInfoOffset"; "required": false; }; "isNavbarMenuVisible": { "alias": "isNavbarMenuVisible"; "required": false; }; "isNavbarInfoVisible": { "alias": "isNavbarInfoVisible"; "required": false; }; "logoState": { "alias": "logoState"; "required": false; }; "isNavbarMessageVisible": { "alias": "isNavbarMessageVisible"; "required": false; }; "isNavbarMenuActive": { "alias": "isNavbarMenuActive"; "required": false; }; "isNavbarMenuEnabled": { "alias": "isNavbarMenuEnabled"; "required": false; }; "isTouch": { "alias": "isTouch"; "required": false; }; "isDashboardTooltipEnabled": { "alias": "isDashboardTooltipEnabled"; "required": false; }; "selectedLanguage": { "alias": "selectedLanguage"; "required": false; }; }, { "bimplusNavbarClicked": "bimplusNavbarClicked"; }, never, never, true, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BimplusNavbarComponent, "lib-bimplus-navbar", never, { "projectInfo": { "alias": "projectInfo"; "required": false; }; "teamInfo": { "alias": "teamInfo"; "required": false; }; "isDev": { "alias": "isDev"; "required": false; }; "isStage": { "alias": "isStage"; "required": false; }; "teamInfoOffset": { "alias": "teamInfoOffset"; "required": false; }; "isNavbarMenuVisible": { "alias": "isNavbarMenuVisible"; "required": false; }; "isNavbarInfoVisible": { "alias": "isNavbarInfoVisible"; "required": false; }; "logoState": { "alias": "logoState"; "required": false; }; "isModelViewerActiveValue": { "alias": "isModelViewerActive"; "required": false; }; "isNavbarMessageVisible": { "alias": "isNavbarMessageVisible"; "required": false; }; "isNavbarMenuActive": { "alias": "isNavbarMenuActive"; "required": false; }; "isNavbarMenuEnabled": { "alias": "isNavbarMenuEnabled"; "required": false; }; "isTouch": { "alias": "isTouch"; "required": false; }; "isDashboardTooltipEnabled": { "alias": "isDashboardTooltipEnabled"; "required": false; }; "selectedLanguage": { "alias": "selectedLanguage"; "required": false; }; }, { "bimplusNavbarClicked": "bimplusNavbarClicked"; }, never, never, true, never>;
|
|
26
29
|
static ngAcceptInputType_isDev: unknown;
|
|
27
30
|
static ngAcceptInputType_isStage: unknown;
|
|
28
31
|
static ngAcceptInputType_isNavbarMenuVisible: unknown;
|
|
29
32
|
static ngAcceptInputType_isNavbarInfoVisible: unknown;
|
|
33
|
+
static ngAcceptInputType_isModelViewerActiveValue: unknown;
|
|
30
34
|
static ngAcceptInputType_isNavbarMessageVisible: unknown;
|
|
31
35
|
static ngAcceptInputType_isNavbarMenuActive: unknown;
|
|
32
36
|
static ngAcceptInputType_isNavbarMenuEnabled: unknown;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare enum LogoState {
|
|
2
2
|
BimplusViewer = "bimplusViewer",// Bimplus logo
|
|
3
|
+
ModelViewerBlack = "modelViewerBlack",// Model viewer black logo
|
|
3
4
|
ModelViewer = "modelViewer",// Cloud viewer logo
|
|
4
5
|
ConnexisViewer = "connexisViewer",// Connexis viewer logo
|
|
5
6
|
ConnexisViewerBlack = "connexisViewerBlack"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-bimplus-components",
|
|
3
|
-
"version": "0.0.136
|
|
3
|
+
"version": "0.0.136",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "",
|
|
6
6
|
"description": "bim+ angular components library",
|
|
@@ -24,11 +24,19 @@
|
|
|
24
24
|
"@angular/common": "18.2.9",
|
|
25
25
|
"@angular/core": "18.2.9",
|
|
26
26
|
"@angular/material": "18.2.10",
|
|
27
|
+
"@ng-select/ng-select": "^13.9.1",
|
|
27
28
|
"@ngx-translate/core": "^15.0.0",
|
|
28
29
|
"@ngx-translate/http-loader": "^8.0.0",
|
|
29
30
|
"simplebar": "^6.2.7"
|
|
30
31
|
},
|
|
31
32
|
"dependencies": {
|
|
33
|
+
"@angular/cdk": "18.2.10",
|
|
34
|
+
"@angular/material": "18.2.10",
|
|
35
|
+
"@ng-select/ng-select": "^13.9.1",
|
|
36
|
+
"@ngx-translate/core": "^15.0.0",
|
|
37
|
+
"@ngx-translate/http-loader": "^8.0.0",
|
|
38
|
+
"bimplus-websdk": "^1.0.22",
|
|
39
|
+
"simplebar": "^6.2.7",
|
|
32
40
|
"tslib": "^2.8.0"
|
|
33
41
|
},
|
|
34
42
|
"sideEffects": false,
|