tango-app-ui-shared 3.0.0 → 3.0.2

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.
Files changed (212) hide show
  1. package/esm2022/lib/guards/auth.guard.mjs +26 -0
  2. package/esm2022/lib/i18n/index.mjs +3 -0
  3. package/esm2022/lib/i18n/translation.module.mjs +17 -0
  4. package/esm2022/lib/i18n/translation.service.mjs +53 -0
  5. package/esm2022/lib/i18n/vocabs/ch.mjs +106 -0
  6. package/esm2022/lib/i18n/vocabs/de.mjs +106 -0
  7. package/esm2022/lib/i18n/vocabs/en.mjs +106 -0
  8. package/esm2022/lib/i18n/vocabs/es.mjs +106 -0
  9. package/esm2022/lib/i18n/vocabs/fr.mjs +106 -0
  10. package/esm2022/lib/i18n/vocabs/jp.mjs +106 -0
  11. package/esm2022/lib/interceptors/http-auth-interceptor.mjs +19 -0
  12. package/esm2022/lib/interfaces/global-state.mjs +2 -0
  13. package/esm2022/lib/modules/errors/error404/error404.component.mjs +45 -0
  14. package/esm2022/lib/modules/errors/error500/error500.component.mjs +45 -0
  15. package/esm2022/lib/modules/errors/errors-routing.module.mjs +38 -0
  16. package/esm2022/lib/modules/errors/errors.component.mjs +39 -0
  17. package/esm2022/lib/modules/errors/errors.module.mjs +31 -0
  18. package/esm2022/lib/modules/layout/content/content.component.mjs +43 -0
  19. package/esm2022/lib/modules/layout/footer/footer.component.mjs +17 -0
  20. package/esm2022/lib/modules/layout/header/header-menu/header-menu.component.mjs +41 -0
  21. package/esm2022/lib/modules/layout/header/header.component.mjs +100 -0
  22. package/esm2022/lib/modules/layout/header/navbar/navbar.component.mjs +24 -0
  23. package/esm2022/lib/modules/layout/header/page-title/page-title.component.mjs +50 -0
  24. package/esm2022/lib/modules/layout/keenicon/icons.json +1 -0
  25. package/esm2022/lib/modules/layout/keenicon/keenicon.component.mjs +37 -0
  26. package/esm2022/lib/modules/layout/layout/layout.component.mjs +285 -0
  27. package/esm2022/lib/modules/layout/layout.module.mjs +139 -0
  28. package/esm2022/lib/modules/layout/scripts-init/scripts-init.component.mjs +74 -0
  29. package/esm2022/lib/modules/layout/scroll-top/scroll-top.component.mjs +74 -0
  30. package/esm2022/lib/modules/layout/sidebar/sidebar-footer/sidebar-footer.component.mjs +14 -0
  31. package/esm2022/lib/modules/layout/sidebar/sidebar-logo/sidebar-logo.component.mjs +46 -0
  32. package/esm2022/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.mjs +15 -0
  33. package/esm2022/lib/modules/layout/sidebar/sidebar.component.mjs +132 -0
  34. package/esm2022/lib/modules/layout/toolbar/accounting/accounting.component.mjs +15 -0
  35. package/esm2022/lib/modules/layout/toolbar/classic/classic.component.mjs +67 -0
  36. package/esm2022/lib/modules/layout/toolbar/extended/extended.component.mjs +14 -0
  37. package/esm2022/lib/modules/layout/toolbar/reports/reports.component.mjs +17 -0
  38. package/esm2022/lib/modules/layout/toolbar/saas/saas.component.mjs +17 -0
  39. package/esm2022/lib/modules/layout/toolbar/toolbar.component.mjs +89 -0
  40. package/esm2022/lib/routes/route-wraper-modules/manage-wrapper.module.mjs +18 -0
  41. package/esm2022/lib/routes/route-wraper-modules/profile-wrapper.module.mjs +18 -0
  42. package/esm2022/lib/routes/route-wraper-modules/store-wrapper.module.mjs +18 -0
  43. package/esm2022/lib/routes/routing.mjs +25 -0
  44. package/esm2022/lib/services/auth.service.mjs +23 -0
  45. package/esm2022/lib/services/global-state.service.mjs +16 -0
  46. package/esm2022/public-api.mjs +48 -0
  47. package/esm2022/tango-app-ui-shared.mjs +5 -0
  48. package/fesm2022/tango-app-ui-shared-manage-wrapper.module-B6GJQNQZ.mjs +21 -0
  49. package/fesm2022/tango-app-ui-shared-manage-wrapper.module-B6GJQNQZ.mjs.map +1 -0
  50. package/fesm2022/tango-app-ui-shared-profile-wrapper.module-CTJBnU9I.mjs +21 -0
  51. package/fesm2022/tango-app-ui-shared-profile-wrapper.module-CTJBnU9I.mjs.map +1 -0
  52. package/fesm2022/tango-app-ui-shared-store-wrapper.module-UYYC9an_.mjs +21 -0
  53. package/fesm2022/tango-app-ui-shared-store-wrapper.module-UYYC9an_.mjs.map +1 -0
  54. package/fesm2022/tango-app-ui-shared.mjs +3418 -0
  55. package/fesm2022/tango-app-ui-shared.mjs.map +1 -0
  56. package/index.d.ts +5 -0
  57. package/lib/guards/auth.guard.d.ts +10 -0
  58. package/{src/lib/i18n/index.ts → lib/i18n/index.d.ts} +2 -2
  59. package/lib/i18n/translation.module.d.ts +8 -0
  60. package/lib/i18n/translation.service.d.ts +19 -0
  61. package/lib/i18n/vocabs/ch.d.ts +104 -0
  62. package/lib/i18n/vocabs/de.d.ts +104 -0
  63. package/lib/i18n/vocabs/en.d.ts +104 -0
  64. package/lib/i18n/vocabs/es.d.ts +104 -0
  65. package/lib/i18n/vocabs/fr.d.ts +104 -0
  66. package/lib/i18n/vocabs/jp.d.ts +104 -0
  67. package/lib/interceptors/http-auth-interceptor.d.ts +9 -0
  68. package/lib/interfaces/global-state.d.ts +5 -0
  69. package/lib/modules/errors/error404/error404.component.d.ts +15 -0
  70. package/lib/modules/errors/error500/error500.component.d.ts +15 -0
  71. package/lib/modules/errors/errors-routing.module.d.ts +7 -0
  72. package/lib/modules/errors/errors.component.d.ts +13 -0
  73. package/lib/modules/errors/errors.module.d.ts +11 -0
  74. package/lib/modules/layout/content/content.component.d.ts +16 -0
  75. package/lib/modules/layout/footer/footer.component.d.ts +8 -0
  76. package/lib/modules/layout/header/header-menu/header-menu.component.d.ts +18 -0
  77. package/lib/modules/layout/header/header.component.d.ts +30 -0
  78. package/lib/modules/layout/header/navbar/navbar.component.d.ts +14 -0
  79. package/lib/modules/layout/header/page-title/page-title.component.d.ts +20 -0
  80. package/lib/modules/layout/keenicon/keenicon.component.d.ts +13 -0
  81. package/lib/modules/layout/layout/layout.component.d.ts +74 -0
  82. package/lib/modules/layout/layout.module.d.ts +32 -0
  83. package/lib/modules/layout/scripts-init/scripts-init.component.d.ts +19 -0
  84. package/lib/modules/layout/scroll-top/scroll-top.component.d.ts +19 -0
  85. package/lib/modules/layout/sidebar/sidebar-footer/sidebar-footer.component.d.ts +8 -0
  86. package/lib/modules/layout/sidebar/sidebar-logo/sidebar-logo.component.d.ts +19 -0
  87. package/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.d.ts +8 -0
  88. package/lib/modules/layout/sidebar/sidebar.component.d.ts +35 -0
  89. package/lib/modules/layout/toolbar/accounting/accounting.component.d.ts +8 -0
  90. package/lib/modules/layout/toolbar/classic/classic.component.d.ts +27 -0
  91. package/lib/modules/layout/toolbar/extended/extended.component.d.ts +8 -0
  92. package/lib/modules/layout/toolbar/reports/reports.component.d.ts +9 -0
  93. package/lib/modules/layout/toolbar/saas/saas.component.d.ts +9 -0
  94. package/lib/modules/layout/toolbar/toolbar.component.d.ts +27 -0
  95. package/lib/routes/route-wraper-modules/manage-wrapper.module.d.ts +7 -0
  96. package/lib/routes/route-wraper-modules/profile-wrapper.module.d.ts +7 -0
  97. package/lib/routes/route-wraper-modules/store-wrapper.module.d.ts +7 -0
  98. package/lib/routes/routing.d.ts +3 -0
  99. package/lib/services/auth.service.d.ts +9 -0
  100. package/lib/services/global-state.service.d.ts +9 -0
  101. package/package.json +25 -12
  102. package/{src/public-api.ts → public-api.d.ts} +37 -64
  103. package/.eslintrc.json +0 -37
  104. package/ng-package.json +0 -7
  105. package/src/lib/guards/auth.guard.ts +0 -20
  106. package/src/lib/i18n/translation.module.ts +0 -9
  107. package/src/lib/i18n/translation.service.ts +0 -61
  108. package/src/lib/i18n/vocabs/ch.ts +0 -105
  109. package/src/lib/i18n/vocabs/de.ts +0 -105
  110. package/src/lib/i18n/vocabs/en.ts +0 -105
  111. package/src/lib/i18n/vocabs/es.ts +0 -105
  112. package/src/lib/i18n/vocabs/fr.ts +0 -105
  113. package/src/lib/i18n/vocabs/jp.ts +0 -105
  114. package/src/lib/interceptors/http-auth-interceptor.ts +0 -21
  115. package/src/lib/interfaces/global-state.ts +0 -6
  116. package/src/lib/modules/errors/error404/error404.component.html +0 -24
  117. package/src/lib/modules/errors/error404/error404.component.scss +0 -0
  118. package/src/lib/modules/errors/error404/error404.component.spec.ts +0 -25
  119. package/src/lib/modules/errors/error404/error404.component.ts +0 -50
  120. package/src/lib/modules/errors/error500/error500.component.html +0 -24
  121. package/src/lib/modules/errors/error500/error500.component.scss +0 -0
  122. package/src/lib/modules/errors/error500/error500.component.spec.ts +0 -25
  123. package/src/lib/modules/errors/error500/error500.component.ts +0 -50
  124. package/src/lib/modules/errors/errors-routing.module.ts +0 -30
  125. package/src/lib/modules/errors/errors.component.html +0 -15
  126. package/src/lib/modules/errors/errors.component.scss +0 -4
  127. package/src/lib/modules/errors/errors.component.spec.ts +0 -25
  128. package/src/lib/modules/errors/errors.component.ts +0 -42
  129. package/src/lib/modules/errors/errors.module.ts +0 -21
  130. package/src/lib/modules/layout/content/content.component.html +0 -12
  131. package/src/lib/modules/layout/content/content.component.scss +0 -0
  132. package/src/lib/modules/layout/content/content.component.ts +0 -35
  133. package/src/lib/modules/layout/footer/footer.component.html +0 -32
  134. package/src/lib/modules/layout/footer/footer.component.scss +0 -0
  135. package/src/lib/modules/layout/footer/footer.component.spec.ts +0 -25
  136. package/src/lib/modules/layout/footer/footer.component.ts +0 -13
  137. package/src/lib/modules/layout/header/header-menu/header-menu.component.html +0 -27
  138. package/src/lib/modules/layout/header/header-menu/header-menu.component.scss +0 -4
  139. package/src/lib/modules/layout/header/header-menu/header-menu.component.spec.ts +0 -25
  140. package/src/lib/modules/layout/header/header-menu/header-menu.component.ts +0 -38
  141. package/src/lib/modules/layout/header/header.component.html +0 -90
  142. package/src/lib/modules/layout/header/header.component.scss +0 -0
  143. package/src/lib/modules/layout/header/header.component.spec.ts +0 -25
  144. package/src/lib/modules/layout/header/header.component.ts +0 -139
  145. package/src/lib/modules/layout/header/navbar/navbar.component.html +0 -92
  146. package/src/lib/modules/layout/header/navbar/navbar.component.scss +0 -0
  147. package/src/lib/modules/layout/header/navbar/navbar.component.spec.ts +0 -23
  148. package/src/lib/modules/layout/header/navbar/navbar.component.ts +0 -20
  149. package/src/lib/modules/layout/header/page-title/page-title.component.html +0 -32
  150. package/src/lib/modules/layout/header/page-title/page-title.component.ts +0 -40
  151. package/src/lib/modules/layout/keenicon/icons.json +0 -1
  152. package/src/lib/modules/layout/keenicon/keenicon.component.html +0 -4
  153. package/src/lib/modules/layout/keenicon/keenicon.component.scss +0 -0
  154. package/src/lib/modules/layout/keenicon/keenicon.component.spec.ts +0 -23
  155. package/src/lib/modules/layout/keenicon/keenicon.component.ts +0 -30
  156. package/src/lib/modules/layout/layout/layout.component.html +0 -70
  157. package/src/lib/modules/layout/layout/layout.component.scss +0 -15
  158. package/src/lib/modules/layout/layout/layout.component.ts +0 -399
  159. package/src/lib/modules/layout/layout.module.ts +0 -93
  160. package/src/lib/modules/layout/scripts-init/scripts-init.component.html +0 -0
  161. package/src/lib/modules/layout/scripts-init/scripts-init.component.ts +0 -81
  162. package/src/lib/modules/layout/scroll-top/scroll-top.component.html +0 -1
  163. package/src/lib/modules/layout/scroll-top/scroll-top.component.ts +0 -75
  164. package/src/lib/modules/layout/sidebar/sidebar-footer/sidebar-footer.component.html +0 -9
  165. package/src/lib/modules/layout/sidebar/sidebar-footer/sidebar-footer.component.scss +0 -0
  166. package/src/lib/modules/layout/sidebar/sidebar-footer/sidebar-footer.component.spec.ts +0 -23
  167. package/src/lib/modules/layout/sidebar/sidebar-footer/sidebar-footer.component.ts +0 -13
  168. package/src/lib/modules/layout/sidebar/sidebar-logo/sidebar-logo.component.html +0 -26
  169. package/src/lib/modules/layout/sidebar/sidebar-logo/sidebar-logo.component.scss +0 -0
  170. package/src/lib/modules/layout/sidebar/sidebar-logo/sidebar-logo.component.spec.ts +0 -23
  171. package/src/lib/modules/layout/sidebar/sidebar-logo/sidebar-logo.component.ts +0 -36
  172. package/src/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.html +0 -276
  173. package/src/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.scss +0 -0
  174. package/src/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.spec.ts +0 -23
  175. package/src/lib/modules/layout/sidebar/sidebar-menu/sidebar-menu.component.ts +0 -15
  176. package/src/lib/modules/layout/sidebar/sidebar.component.html +0 -16
  177. package/src/lib/modules/layout/sidebar/sidebar.component.scss +0 -0
  178. package/src/lib/modules/layout/sidebar/sidebar.component.spec.ts +0 -23
  179. package/src/lib/modules/layout/sidebar/sidebar.component.ts +0 -203
  180. package/src/lib/modules/layout/toolbar/accounting/accounting.component.html +0 -84
  181. package/src/lib/modules/layout/toolbar/accounting/accounting.component.scss +0 -0
  182. package/src/lib/modules/layout/toolbar/accounting/accounting.component.spec.ts +0 -23
  183. package/src/lib/modules/layout/toolbar/accounting/accounting.component.ts +0 -14
  184. package/src/lib/modules/layout/toolbar/classic/classic.component.html +0 -37
  185. package/src/lib/modules/layout/toolbar/classic/classic.component.scss +0 -0
  186. package/src/lib/modules/layout/toolbar/classic/classic.component.spec.ts +0 -23
  187. package/src/lib/modules/layout/toolbar/classic/classic.component.ts +0 -88
  188. package/src/lib/modules/layout/toolbar/extended/extended.component.html +0 -100
  189. package/src/lib/modules/layout/toolbar/extended/extended.component.scss +0 -0
  190. package/src/lib/modules/layout/toolbar/extended/extended.component.spec.ts +0 -23
  191. package/src/lib/modules/layout/toolbar/extended/extended.component.ts +0 -12
  192. package/src/lib/modules/layout/toolbar/reports/reports.component.html +0 -62
  193. package/src/lib/modules/layout/toolbar/reports/reports.component.scss +0 -0
  194. package/src/lib/modules/layout/toolbar/reports/reports.component.spec.ts +0 -23
  195. package/src/lib/modules/layout/toolbar/reports/reports.component.ts +0 -14
  196. package/src/lib/modules/layout/toolbar/saas/saas.component.html +0 -77
  197. package/src/lib/modules/layout/toolbar/saas/saas.component.scss +0 -0
  198. package/src/lib/modules/layout/toolbar/saas/saas.component.spec.ts +0 -23
  199. package/src/lib/modules/layout/toolbar/saas/saas.component.ts +0 -14
  200. package/src/lib/modules/layout/toolbar/toolbar.component.html +0 -27
  201. package/src/lib/modules/layout/toolbar/toolbar.component.scss +0 -0
  202. package/src/lib/modules/layout/toolbar/toolbar.component.spec.ts +0 -25
  203. package/src/lib/modules/layout/toolbar/toolbar.component.ts +0 -125
  204. package/src/lib/routes/route-wraper-modules/manage-wrapper.module.ts +0 -12
  205. package/src/lib/routes/route-wraper-modules/profile-wrapper.module.ts +0 -12
  206. package/src/lib/routes/route-wraper-modules/store-wrapper.module.ts +0 -12
  207. package/src/lib/routes/routing.ts +0 -72
  208. package/src/lib/services/auth.service.ts +0 -16
  209. package/src/lib/services/global-state.service.ts +0 -11
  210. package/tsconfig.lib.json +0 -14
  211. package/tsconfig.lib.prod.json +0 -10
  212. package/tsconfig.spec.json +0 -14
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/router";
3
+ export declare class ErrorsRoutingModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorsRoutingModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ErrorsRoutingModule, never, [typeof i1.RouterModule], [typeof i1.RouterModule]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<ErrorsRoutingModule>;
7
+ }
@@ -0,0 +1,13 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ErrorsComponent implements OnInit, OnDestroy {
5
+ private router;
6
+ class: string;
7
+ constructor(router: Router);
8
+ ngOnInit(): void;
9
+ ngOnDestroy(): void;
10
+ routeToDashboard(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorsComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ErrorsComponent, "lib-errors", never, {}, {}, never, never, false, never>;
13
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./errors.component";
3
+ import * as i2 from "./error404/error404.component";
4
+ import * as i3 from "./error500/error500.component";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "./errors-routing.module";
7
+ export declare class ErrorsModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorsModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ErrorsModule, [typeof i1.ErrorsComponent, typeof i2.Error404Component, typeof i3.Error500Component], [typeof i4.CommonModule, typeof i5.ErrorsRoutingModule], never>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ErrorsModule>;
11
+ }
@@ -0,0 +1,16 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ContentComponent implements OnInit, OnDestroy {
5
+ private router;
6
+ contentContainerCSSClass: string;
7
+ appContentContiner?: 'fixed' | 'fluid';
8
+ appContentContainerClass: string;
9
+ private unsubscribe;
10
+ constructor(router: Router);
11
+ ngOnInit(): void;
12
+ routingChanges(): void;
13
+ ngOnDestroy(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContentComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContentComponent, "lib-content", never, { "contentContainerCSSClass": { "alias": "contentContainerCSSClass"; "required": false; }; "appContentContiner": { "alias": "appContentContiner"; "required": false; }; "appContentContainerClass": { "alias": "appContentContainerClass"; "required": false; }; }, {}, never, never, false, never>;
16
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class FooterComponent {
3
+ appFooterContainerCSSClass: string;
4
+ currentDateStr: string;
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<FooterComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<FooterComponent, "lib-footer", never, { "appFooterContainerCSSClass": { "alias": "appFooterContainerCSSClass"; "required": false; }; }, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,18 @@
1
+ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { PageInfoService } from 'tango-app-ui-metronics';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HeaderMenuComponent implements OnInit, OnDestroy {
6
+ private pageInfo;
7
+ private cd;
8
+ private unsubscribe;
9
+ appPageTitleDirection: string;
10
+ appPageTitleDescription: boolean;
11
+ title$: Observable<string>;
12
+ description$: Observable<string>;
13
+ constructor(pageInfo: PageInfoService, cd: ChangeDetectorRef);
14
+ ngOnInit(): void;
15
+ ngOnDestroy(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderMenuComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderMenuComponent, "lib-header-menu", never, { "appPageTitleDirection": { "alias": "appPageTitleDirection"; "required": false; }; "appPageTitleDescription": { "alias": "appPageTitleDescription"; "required": false; }; }, {}, never, never, false, never>;
18
+ }
@@ -0,0 +1,30 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { ILayout, LayoutType } from 'tango-app-ui-metronics';
4
+ import { LayoutService } from 'tango-app-ui-metronics';
5
+ import * as i0 from "@angular/core";
6
+ export declare class HeaderComponent implements OnInit, OnDestroy {
7
+ private layout;
8
+ private router;
9
+ private unsubscribe;
10
+ currentLayoutType: LayoutType | null;
11
+ appHeaderDisplay: boolean;
12
+ appHeaderDefaultFixedDesktop: boolean;
13
+ appHeaderDefaultFixedMobile: boolean;
14
+ appHeaderDefaultContainer: 'fixed' | 'fluid';
15
+ headerContainerCssClass: string;
16
+ appHeaderDefaultContainerClass: string;
17
+ appHeaderDefaultStacked: boolean;
18
+ appSidebarDefaultCollapseDesktopEnabled: boolean;
19
+ appSidebarDisplay: boolean;
20
+ appHeaderDefaultContent: string;
21
+ appHeaderDefaulMenuDisplay: boolean;
22
+ appPageTitleDisplay: boolean;
23
+ constructor(layout: LayoutService, router: Router);
24
+ updateProps(config: ILayout): void;
25
+ ngOnInit(): void;
26
+ routingChanges(): void;
27
+ ngOnDestroy(): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<HeaderComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderComponent, "lib-header", never, {}, {}, never, never, false, never>;
30
+ }
@@ -0,0 +1,14 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class NavbarComponent implements OnInit {
4
+ appHeaderDefaulMenuDisplay: boolean;
5
+ isRtl: boolean;
6
+ itemClass: string;
7
+ btnClass: string;
8
+ userAvatarClass: string;
9
+ btnIconClass: string;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavbarComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavbarComponent, "lib-navbar", never, { "appHeaderDefaulMenuDisplay": { "alias": "appHeaderDefaulMenuDisplay"; "required": false; }; "isRtl": { "alias": "isRtl"; "required": false; }; }, {}, never, never, false, never>;
14
+ }
@@ -0,0 +1,20 @@
1
+ import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
2
+ import { Observable } from 'rxjs';
3
+ import { PageInfoService, PageLink } from 'tango-app-ui-metronics';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PageTitleComponent implements OnInit, OnDestroy {
6
+ private pageInfo;
7
+ private cd;
8
+ private unsubscribe;
9
+ appPageTitleDirection: string;
10
+ appPageTitleBreadcrumb: boolean;
11
+ appPageTitleDescription: boolean;
12
+ title$: Observable<string>;
13
+ description$: Observable<string>;
14
+ bc$: Observable<Array<PageLink>>;
15
+ constructor(pageInfo: PageInfoService, cd: ChangeDetectorRef);
16
+ ngOnInit(): void;
17
+ ngOnDestroy(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageTitleComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageTitleComponent, "lib-page-title", never, { "appPageTitleDirection": { "alias": "appPageTitleDirection"; "required": false; }; "appPageTitleBreadcrumb": { "alias": "appPageTitleBreadcrumb"; "required": false; }; "appPageTitleDescription": { "alias": "appPageTitleDescription"; "required": false; }; }, {}, never, never, false, never>;
20
+ }
@@ -0,0 +1,13 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class KeeniconComponent implements OnInit {
4
+ name: string;
5
+ class: string;
6
+ type: string;
7
+ pathsNumber: number;
8
+ constructor();
9
+ ngOnInit(): void;
10
+ get styleDisplay(): string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<KeeniconComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<KeeniconComponent, "lib-keenicon", never, { "name": { "alias": "name"; "required": false; }; "class": { "alias": "class"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
13
+ }
@@ -0,0 +1,74 @@
1
+ import { OnInit, ElementRef, OnDestroy } from '@angular/core';
2
+ import { ActivatedRoute, Router } from '@angular/router';
3
+ import { ILayout } from 'tango-app-ui-metronics';
4
+ import { LayoutInitService, LayoutService } from 'tango-app-ui-metronics';
5
+ import * as i0 from "@angular/core";
6
+ export declare class LayoutComponent implements OnInit, OnDestroy {
7
+ private initService;
8
+ private layout;
9
+ private router;
10
+ private activatedRoute;
11
+ private unsubscribe;
12
+ pageContainerCSSClasses: string;
13
+ appHeaderDefaultClass: string;
14
+ appHeaderDisplay: boolean;
15
+ appHeaderDefaultStickyEnabled: boolean;
16
+ appHeaderDefaultStickyAttributes: {
17
+ [attrName: string]: string;
18
+ };
19
+ appHeaderDefaultMinimizeEnabled: boolean;
20
+ appHeaderDefaultMinimizeAttributes: {
21
+ [attrName: string]: string;
22
+ };
23
+ appToolbarDisplay: boolean;
24
+ appToolbarLayout: 'classic' | 'accounting' | 'extended' | 'reports' | 'saas';
25
+ appToolbarCSSClass: string;
26
+ appToolbarSwapEnabled: boolean;
27
+ appToolbarSwapAttributes: {
28
+ [attrName: string]: string;
29
+ };
30
+ appToolbarStickyEnabled: boolean;
31
+ appToolbarStickyAttributes: {
32
+ [attrName: string]: string;
33
+ };
34
+ appToolbarMinimizeEnabled: boolean;
35
+ appToolbarMinimizeAttributes: {
36
+ [attrName: string]: string;
37
+ };
38
+ appContentContiner?: 'fixed' | 'fluid';
39
+ appContentContainerClass: string;
40
+ contentCSSClasses: string;
41
+ contentContainerCSSClass: string;
42
+ appSidebarDefaultClass: string;
43
+ appSidebarDefaultDrawerEnabled: boolean;
44
+ appSidebarDefaultDrawerAttributes: {
45
+ [attrName: string]: string;
46
+ };
47
+ appSidebarDisplay: boolean;
48
+ appSidebarDefaultStickyEnabled: boolean;
49
+ appSidebarDefaultStickyAttributes: {
50
+ [attrName: string]: string;
51
+ };
52
+ ktSidebar: ElementRef;
53
+ appSidebarPanelDisplay: boolean;
54
+ appFooterDisplay: boolean;
55
+ appFooterCSSClass: string;
56
+ appFooterContainer: string;
57
+ appFooterContainerCSSClass: string;
58
+ appFooterFixedDesktop: boolean;
59
+ appFooterFixedMobile: boolean;
60
+ scrolltopDisplay: boolean;
61
+ ktAside: ElementRef;
62
+ ktHeaderMobile: ElementRef;
63
+ ktHeader: ElementRef;
64
+ constructor(initService: LayoutInitService, layout: LayoutService, router: Router, activatedRoute: ActivatedRoute);
65
+ ngOnInit(): void;
66
+ updateProps(config: ILayout): void;
67
+ updateSidebar(config: ILayout): void;
68
+ updateHeader(config: ILayout): void;
69
+ updateFooter(config: ILayout): void;
70
+ updateToolbar(config: ILayout): void;
71
+ ngOnDestroy(): void;
72
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "lib-layout", never, {}, {}, never, never, false, never>;
74
+ }
@@ -0,0 +1,32 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./layout/layout.component";
3
+ import * as i2 from "./header/header.component";
4
+ import * as i3 from "./content/content.component";
5
+ import * as i4 from "./footer/footer.component";
6
+ import * as i5 from "./scripts-init/scripts-init.component";
7
+ import * as i6 from "./toolbar/toolbar.component";
8
+ import * as i7 from "./header/page-title/page-title.component";
9
+ import * as i8 from "./header/header-menu/header-menu.component";
10
+ import * as i9 from "./sidebar/sidebar.component";
11
+ import * as i10 from "./sidebar/sidebar-logo/sidebar-logo.component";
12
+ import * as i11 from "./sidebar/sidebar-menu/sidebar-menu.component";
13
+ import * as i12 from "./sidebar/sidebar-footer/sidebar-footer.component";
14
+ import * as i13 from "./header/navbar/navbar.component";
15
+ import * as i14 from "./toolbar/accounting/accounting.component";
16
+ import * as i15 from "./toolbar/classic/classic.component";
17
+ import * as i16 from "./toolbar/extended/extended.component";
18
+ import * as i17 from "./toolbar/reports/reports.component";
19
+ import * as i18 from "./toolbar/saas/saas.component";
20
+ import * as i19 from "./keenicon/keenicon.component";
21
+ import * as i20 from "./scroll-top/scroll-top.component";
22
+ import * as i21 from "@angular/common";
23
+ import * as i22 from "@angular/router";
24
+ import * as i23 from "../../i18n/translation.module";
25
+ import * as i24 from "ng-inline-svg-2";
26
+ import * as i25 from "@ng-bootstrap/ng-bootstrap";
27
+ import * as i26 from "@ngx-translate/core";
28
+ export declare class LayoutModule {
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayoutModule, never>;
30
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LayoutModule, [typeof i1.LayoutComponent, typeof i2.HeaderComponent, typeof i3.ContentComponent, typeof i4.FooterComponent, typeof i5.ScriptsInitComponent, typeof i6.ToolbarComponent, typeof i7.PageTitleComponent, typeof i8.HeaderMenuComponent, typeof i9.SidebarComponent, typeof i10.SidebarLogoComponent, typeof i11.SidebarMenuComponent, typeof i12.SidebarFooterComponent, typeof i13.NavbarComponent, typeof i14.AccountingComponent, typeof i15.ClassicComponent, typeof i16.ExtendedComponent, typeof i17.ReportsComponent, typeof i18.SaasComponent, typeof i19.KeeniconComponent, typeof i20.LayoutScrollTopComponent], [typeof i21.CommonModule, typeof i22.RouterModule, typeof i23.TranslationModule, typeof i24.InlineSVGModule, typeof i25.NgbDropdownModule, typeof i25.NgbProgressbarModule, typeof i25.NgbTooltipModule, typeof i26.TranslateModule], [typeof i22.RouterModule]>;
31
+ static ɵinj: i0.ɵɵInjectorDeclaration<LayoutModule>;
32
+ }
@@ -0,0 +1,19 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { Title } from '@angular/platform-browser';
4
+ import { LayoutService, PageInfoService } from 'tango-app-ui-metronics';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ScriptsInitComponent implements OnInit, OnDestroy {
7
+ private layout;
8
+ private pageInfo;
9
+ private router;
10
+ private titleService;
11
+ private unsubscribe;
12
+ constructor(layout: LayoutService, pageInfo: PageInfoService, router: Router, titleService: Title);
13
+ ngOnInit(): void;
14
+ pluginsInitialization(): void;
15
+ pluginsReInitialization(): void;
16
+ ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScriptsInitComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScriptsInitComponent, "lib-scripts-init", never, {}, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,19 @@
1
+ import { OnInit, OnDestroy } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LayoutScrollTopComponent implements OnInit, OnDestroy {
5
+ private router;
6
+ class: string;
7
+ id: string;
8
+ dataKtScrolltop: string;
9
+ private unsubscribe;
10
+ constructor(router: Router);
11
+ ngOnInit(): void;
12
+ routingChanges(): void;
13
+ updateHeaderSticky(): void;
14
+ scrollTop(): void;
15
+ pluginsReinitialization(): void;
16
+ ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<LayoutScrollTopComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<LayoutScrollTopComponent, "lib-scroll-top", never, {}, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SidebarFooterComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarFooterComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarFooterComponent, "lib-sidebar-footer", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,19 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { LayoutService } from 'tango-app-ui-metronics';
3
+ import { LayoutType } from 'tango-app-ui-metronics';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SidebarLogoComponent implements OnInit, OnDestroy {
6
+ private layout;
7
+ private unsubscribe;
8
+ toggleButtonClass: string;
9
+ toggleEnabled: boolean;
10
+ toggleType: string;
11
+ toggleState: string;
12
+ currentLayoutType: LayoutType | null;
13
+ toggleAttr: string;
14
+ constructor(layout: LayoutService);
15
+ ngOnInit(): void;
16
+ ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarLogoComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarLogoComponent, "lib-sidebar-logo", never, { "toggleButtonClass": { "alias": "toggleButtonClass"; "required": false; }; "toggleEnabled": { "alias": "toggleEnabled"; "required": false; }; "toggleType": { "alias": "toggleType"; "required": false; }; "toggleState": { "alias": "toggleState"; "required": false; }; }, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SidebarMenuComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarMenuComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarMenuComponent, "lib-sidebar-menu", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,35 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { LayoutService } from 'tango-app-ui-metronics';
3
+ import { ILayout } from 'tango-app-ui-metronics';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SidebarComponent implements OnInit, OnDestroy {
6
+ private layout;
7
+ private unsubscribe;
8
+ appSidebarDisplay: boolean;
9
+ appSidebarDefaultFixedDesktop: boolean;
10
+ appSidebarDefaultMinimizeDesktopEnabled: boolean;
11
+ appSidebarDefaultMinimizeDesktopDefault: boolean;
12
+ appSidebarDefaultMinimizeDesktopHoverable: boolean;
13
+ appSidebarDefaultMinimizeMobileEnabled: boolean;
14
+ appSidebarDefaultMinimizeMobileDefault: boolean;
15
+ appSidebarDefaultMinimizeMobileHoverable: boolean;
16
+ appSidebarDefaultCollapseDesktopEnabled: boolean;
17
+ appSidebarDefaultCollapseDesktopDefault: boolean;
18
+ appSidebarDefaultCollapseMobileEnabled: boolean;
19
+ appSidebarDefaultCollapseMobileDefault: boolean;
20
+ appSidebarDefaultPushHeader: boolean;
21
+ appSidebarDefaultPushToolbar: boolean;
22
+ appSidebarDefaultPushFooter: boolean;
23
+ appSidebarDefaultStacked: boolean;
24
+ appSidebarDefaultMinimizeDefault: boolean;
25
+ toggleButtonClass: string;
26
+ toggleEnabled: boolean;
27
+ toggleType: string;
28
+ toggleState: string;
29
+ constructor(layout: LayoutService);
30
+ ngOnInit(): void;
31
+ updateProps(config: ILayout): void;
32
+ ngOnDestroy(): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "lib-sidebar", never, {}, {}, never, never, false, never>;
35
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AccountingComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccountingComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccountingComponent, "lib-accounting", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,27 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { LayoutService } from 'tango-app-ui-metronics';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ClassicComponent implements OnInit, OnDestroy {
5
+ private layout;
6
+ private unsubscribe;
7
+ appToolbarPrimaryButton: boolean;
8
+ appToolbarPrimaryButtonLabel: string;
9
+ appToolbarPrimaryButtonUrl: string;
10
+ appToolbarPrimaryButtonModal: string;
11
+ appToolbarSecondaryButton: boolean;
12
+ appToolbarFixedDesktop: boolean;
13
+ appToolbarSecondaryButtonLabel: string;
14
+ appToolbarSecondaryButtonUrl: string;
15
+ appToolbarSecondaryButtonModal: string;
16
+ appToolbarFilterButton: boolean;
17
+ appToolbarDaterangepickerButton: boolean;
18
+ secondaryButtonClass: string;
19
+ filterButtonClass: string;
20
+ daterangepickerButtonClass: string;
21
+ constructor(layout: LayoutService);
22
+ ngOnInit(): void;
23
+ updateProps(): void;
24
+ ngOnDestroy(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClassicComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<ClassicComponent, "lib-classic", never, {}, {}, never, never, false, never>;
27
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ExtendedComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExtendedComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExtendedComponent, "lib-extended", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ReportsComponent implements OnInit {
4
+ appPageTitleDisplay: boolean;
5
+ constructor();
6
+ ngOnInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReportsComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReportsComponent, "lib-reports", never, { "appPageTitleDisplay": { "alias": "appPageTitleDisplay"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SaasComponent implements OnInit {
4
+ appPageTitleDisplay: boolean;
5
+ constructor();
6
+ ngOnInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SaasComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<SaasComponent, "lib-saas", never, { "appPageTitleDisplay": { "alias": "appPageTitleDisplay"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
@@ -0,0 +1,27 @@
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { LayoutService } from 'tango-app-ui-metronics';
3
+ import { ILayout, LayoutType } from 'tango-app-ui-metronics';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ToolbarComponent implements OnInit, OnDestroy {
6
+ private layout;
7
+ private unsubscribe;
8
+ currentLayoutType: LayoutType | null;
9
+ appToolbarLayout: 'classic' | 'accounting' | 'extended' | 'reports' | 'saas';
10
+ appToolbarDisplay: boolean;
11
+ appToolbarContainer: 'fixed' | 'fluid';
12
+ appToolbarContainerCSSClass: string;
13
+ appToolbarFixedDesktop: boolean;
14
+ appToolbarFixedMobile: boolean;
15
+ appPageTitleDisplay: boolean;
16
+ appPageTitleDirection: string;
17
+ appPageTitleCSSClass: string;
18
+ appPageTitleBreadcrumb: boolean;
19
+ appPageTitleDescription: boolean;
20
+ constructor(layout: LayoutService);
21
+ ngOnInit(): void;
22
+ updateProps(config: ILayout): void;
23
+ ngOnDestroy(): void;
24
+ showPageTitle(): boolean;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "lib-toolbar", never, { "currentLayoutType": { "alias": "currentLayoutType"; "required": false; }; "appToolbarLayout": { "alias": "appToolbarLayout"; "required": false; }; }, {}, never, never, false, never>;
27
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "tango-app-ui-manage";
3
+ export declare class ManageWrapperModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ManageWrapperModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ManageWrapperModule, never, [typeof i1.TangoManageModule], never>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<ManageWrapperModule>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "tango-app-ui-profile";
3
+ export declare class ProfileWrapperModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileWrapperModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProfileWrapperModule, never, [typeof i1.TangoProfileModule], never>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<ProfileWrapperModule>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "tango-app-ui-store";
3
+ export declare class StoreWrapperModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<StoreWrapperModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<StoreWrapperModule, never, [typeof i1.TangoStoreModule], never>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<StoreWrapperModule>;
7
+ }
@@ -0,0 +1,3 @@
1
+ import { Routes } from '@angular/router';
2
+ declare const Routing: Routes;
3
+ export { Routing };
@@ -0,0 +1,9 @@
1
+ import { Router } from '@angular/router';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AuthService {
4
+ private router;
5
+ constructor(router: Router);
6
+ logout(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import { BehaviorSubject } from 'rxjs';
2
+ import { sampleType } from '../interfaces/global-state';
3
+ import * as i0 from "@angular/core";
4
+ export declare class GlobalStateService {
5
+ userData: BehaviorSubject<sampleType | null>;
6
+ environment: BehaviorSubject<any>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<GlobalStateService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<GlobalStateService>;
9
+ }
package/package.json CHANGED
@@ -1,12 +1,25 @@
1
- {
2
- "name": "tango-app-ui-shared",
3
- "version": "3.0.0",
4
- "peerDependencies": {
5
- "@angular/common": "^17.0.0",
6
- "@angular/core": "^17.0.0"
7
- },
8
- "dependencies": {
9
- "tslib": "^2.3.0"
10
- },
11
- "sideEffects": false
12
- }
1
+ {
2
+ "name": "tango-app-ui-shared",
3
+ "version": "3.0.2",
4
+ "peerDependencies": {
5
+ "@angular/common": "^17.0.0",
6
+ "@angular/core": "^17.0.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "sideEffects": false,
12
+ "module": "fesm2022/tango-app-ui-shared.mjs",
13
+ "typings": "index.d.ts",
14
+ "exports": {
15
+ "./package.json": {
16
+ "default": "./package.json"
17
+ },
18
+ ".": {
19
+ "types": "./index.d.ts",
20
+ "esm2022": "./esm2022/tango-app-ui-shared.mjs",
21
+ "esm": "./esm2022/tango-app-ui-shared.mjs",
22
+ "default": "./fesm2022/tango-app-ui-shared.mjs"
23
+ }
24
+ }
25
+ }