@trudb/tru-common-lib 0.0.653 → 0.0.655
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/esm2020/lib/components/desktop/menubar/tru-desktop-menubar.mjs +8 -10
- package/esm2020/lib/components/toolbar/tru-toolbar-module.mjs +14 -7
- package/esm2020/lib/components/toolbar/user-profile/tru-toolbar-user-profile-module.mjs +36 -0
- package/esm2020/lib/components/toolbar/user-profile/tru-toolbar-user-profile.mjs +15 -0
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/trudb-tru-common-lib.mjs +72 -28
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +72 -28
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/lib/components/toolbar/tru-toolbar-module.d.ts +2 -1
- package/lib/components/toolbar/user-profile/tru-toolbar-user-profile-module.d.ts +12 -0
- package/lib/components/toolbar/user-profile/tru-toolbar-user-profile.d.ts +6 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -8,8 +8,9 @@ import * as i6 from "./dropdown/tru-toolbar-dropdown-module";
|
|
|
8
8
|
import * as i7 from "./separator/tru-toolbar-separator-module";
|
|
9
9
|
import * as i8 from "./context-filter/tru-toolbar-context-filter-module";
|
|
10
10
|
import * as i9 from "./text/tru-toolbar-text-module";
|
|
11
|
+
import * as i10 from "./user-profile/tru-toolbar-user-profile-module";
|
|
11
12
|
export declare class TruToolbarModule {
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<TruToolbarModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TruToolbarModule, [typeof i1.TruToolbar], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.TruToolbarMenuModule, typeof i5.TruToolbarButtonModule, typeof i6.TruToolbarDropdownModule, typeof i7.TruToolbarSeparatorModule, typeof i8.TruToolbarContextFilterModule, typeof i9.TruToolbarTextModule], [typeof i1.TruToolbar, typeof i4.TruToolbarMenuModule, typeof i5.TruToolbarButtonModule, typeof i6.TruToolbarDropdownModule, typeof i7.TruToolbarSeparatorModule, typeof i8.TruToolbarContextFilterModule, typeof i9.TruToolbarTextModule]>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TruToolbarModule, [typeof i1.TruToolbar], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.TruToolbarMenuModule, typeof i5.TruToolbarButtonModule, typeof i6.TruToolbarDropdownModule, typeof i7.TruToolbarSeparatorModule, typeof i8.TruToolbarContextFilterModule, typeof i9.TruToolbarTextModule, typeof i10.TruToolbarUserProfileModule], [typeof i1.TruToolbar, typeof i4.TruToolbarMenuModule, typeof i5.TruToolbarButtonModule, typeof i6.TruToolbarDropdownModule, typeof i7.TruToolbarSeparatorModule, typeof i8.TruToolbarContextFilterModule, typeof i9.TruToolbarTextModule, typeof i10.TruToolbarUserProfileModule]>;
|
|
14
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<TruToolbarModule>;
|
|
15
16
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tru-toolbar-user-profile";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/material/menu";
|
|
6
|
+
import * as i5 from "@angular/material/button";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
export declare class TruToolbarUserProfileModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TruToolbarUserProfileModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TruToolbarUserProfileModule, [typeof i1.TruToolbarUserProfile], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.MatMenuModule, typeof i5.MatButtonModule, typeof i6.MatIconModule], [typeof i1.TruToolbarUserProfile]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TruToolbarUserProfileModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TruToolbarUserProfile {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TruToolbarUserProfile, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TruToolbarUserProfile, "tru-toolbar-user-profile", never, {}, {}, never, never, false, never>;
|
|
6
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -78,6 +78,8 @@ export * from './lib/components/toolbar/context-filter/tru-toolbar-context-filte
|
|
|
78
78
|
export * from './lib/components/toolbar/context-filter/tru-toolbar-context-filter-module';
|
|
79
79
|
export * from './lib/components/toolbar/text/tru-toolbar-text';
|
|
80
80
|
export * from './lib/components/toolbar/text/tru-toolbar-text-module';
|
|
81
|
+
export * from './lib/components/toolbar/user-profile/tru-toolbar-user-profile';
|
|
82
|
+
export * from './lib/components/toolbar/user-profile/tru-toolbar-user-profile-module';
|
|
81
83
|
export * from './lib/components/login/tru-login';
|
|
82
84
|
export * from './lib/components/login/tru-login-module';
|
|
83
85
|
export * from './lib/components/login/services/tru-auth';
|