exceladdincbms-v2 20.0.4 → 20.0.5

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 (46) hide show
  1. package/esm2022/bulk-tool-20.mjs +5 -0
  2. package/esm2022/lib/auth.service.mjs +50 -0
  3. package/esm2022/lib/bulk-tool.component.mjs +22 -0
  4. package/esm2022/lib/bulk-tool.module.mjs +50 -0
  5. package/esm2022/lib/bulk-tool.service.mjs +14 -0
  6. package/esm2022/lib/constant.enum.mjs +6 -0
  7. package/esm2022/lib/environmentsModel.info.mjs +2 -0
  8. package/esm2022/lib/http-interceptor.mjs +25 -0
  9. package/esm2022/lib/login/login.component.mjs +84 -0
  10. package/esm2022/lib/materils/materils.module.mjs +172 -0
  11. package/esm2022/lib/menu/menu.component.mjs +47 -0
  12. package/esm2022/public_api.mjs +10 -0
  13. package/fesm2022/bulk-tool-20.mjs +448 -0
  14. package/fesm2022/bulk-tool-20.mjs.map +1 -0
  15. package/index.d.ts +31 -83
  16. package/lib/auth.service.d.ts +16 -0
  17. package/lib/bulk-tool.component.d.ts +8 -0
  18. package/lib/bulk-tool.module.d.ts +17 -0
  19. package/lib/bulk-tool.service.d.ts +6 -0
  20. package/lib/constant.enum.d.ts +5 -0
  21. package/lib/environmentsModel.info.d.ts +3 -0
  22. package/lib/http-interceptor.d.ts +8 -0
  23. package/lib/login/login.component.d.ts +27 -0
  24. package/lib/materils/materils.module.d.ts +45 -0
  25. package/lib/menu/menu.component.d.ts +28 -0
  26. package/package.json +5 -5
  27. package/public_api.d.ts +6 -2
  28. package/Pictures - Shortcut.lnk +0 -0
  29. package/fesm2022/exceladdincbms-20.mjs +0 -638
  30. package/fesm2022/exceladdincbms-20.mjs.map +0 -1
  31. package/src/lib/auth.service.ts +0 -46
  32. package/src/lib/base-app.service.ts +0 -36
  33. package/src/lib/bulk-tool.component.ts +0 -20
  34. package/src/lib/bulk-tool.module.ts +0 -32
  35. package/src/lib/constant.enum.ts +0 -6
  36. package/src/lib/environmentsModel.info.ts +0 -14
  37. package/src/lib/http-interceptor.ts +0 -22
  38. package/src/lib/login/login.component.css +0 -103
  39. package/src/lib/login/login.component.html +0 -59
  40. package/src/lib/login/login.component.ts +0 -105
  41. package/src/lib/materils/materils.module.ts +0 -96
  42. package/src/lib/menu/menu.component.css +0 -388
  43. package/src/lib/menu/menu.component.html +0 -46
  44. package/src/lib/menu/menu.component.ts +0 -191
  45. package/src/public_api.ts +0 -14
  46. package/src/styles.css +0 -44
package/index.d.ts CHANGED
@@ -1,13 +1,12 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injector, OnInit, ModuleWithProviders } from '@angular/core';
3
- import { HttpClient, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
4
- import { Observable } from 'rxjs';
5
- import * as i6$1 from '@angular/common';
6
- import { Location } from '@angular/common';
2
+ import { OnInit, Injector, ModuleWithProviders } from '@angular/core';
7
3
  import * as i7$1 from '@angular/router';
8
4
  import { ActivatedRoute, Router } from '@angular/router';
9
5
  import * as i5$1 from '@angular/forms';
10
6
  import { FormGroup, FormBuilder, AbstractControl } from '@angular/forms';
7
+ import * as i8$1 from '@angular/common/http';
8
+ import { HttpClient } from '@angular/common/http';
9
+ import { Observable } from 'rxjs';
11
10
  import * as i1 from '@angular/cdk/a11y';
12
11
  import * as i2 from '@angular/cdk/table';
13
12
  import * as i3 from '@angular/cdk/tree';
@@ -47,36 +46,12 @@ import * as i36 from '@angular/material/toolbar';
47
46
  import * as i37 from '@angular/material/tooltip';
48
47
  import * as i38 from '@angular/material/tree';
49
48
  import * as i39 from '@angular/cdk/scrolling';
50
- import * as i40 from '@angular/cdk/overlay';
51
-
52
- declare class BaseAppService {
53
- private userInfo;
54
- private userMenus;
55
- private menuName;
56
- getUserInfo(): any;
57
- setUserInfo(value: any): void;
58
- removeUserInfo(): void;
59
- setUserMenus(data: any): void;
60
- getUserMenus(): any;
61
- clearData(): void;
62
- setmenuNameFromBudget(name: any): void;
63
- getmenuNameFromBudget(): any;
64
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseAppService, never>;
65
- static ɵprov: i0.ɵɵInjectableDeclaration<BaseAppService>;
66
- }
49
+ import * as i6$1 from '@angular/common';
67
50
 
68
- declare class AuthService {
69
- private http;
70
- injector: Injector;
71
- private baseAppService;
72
- private API_ENDPOINT;
73
- private menuName;
74
- constructor(http: HttpClient, injector: Injector, baseAppService: BaseAppService);
75
- login(username: string, password: string): Observable<any>;
76
- logout(): void;
77
- GetMenu(userId: any): Observable<any>;
78
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
79
- static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
51
+ declare class BulkToolService {
52
+ constructor();
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolService, never>;
54
+ static ɵprov: i0.ɵɵInjectableDeclaration<BulkToolService>;
80
55
  }
81
56
 
82
57
  declare class BulkToolComponent implements OnInit {
@@ -87,13 +62,20 @@ declare class BulkToolComponent implements OnInit {
87
62
  }
88
63
 
89
64
  interface IEnvironmentsInfo {
90
- production: true;
91
- baseAppApiUrl: string;
92
- rootUrl: string;
93
- moduleName: string;
94
- MenuName?: "Budget";
95
- Url?: string;
96
- RootUrl?: string;
65
+ Url: string;
66
+ }
67
+
68
+ declare class AuthService {
69
+ private http;
70
+ injector: Injector;
71
+ private API_ENDPOINT;
72
+ _username: any;
73
+ constructor(http: HttpClient, injector: Injector);
74
+ login(username: string, password: string): Observable<any>;
75
+ logout(): void;
76
+ GetMenu(): Observable<any>;
77
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
78
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
97
79
  }
98
80
 
99
81
  interface Login {
@@ -103,17 +85,14 @@ declare class LoginComponent implements OnInit {
103
85
  private formBuilder;
104
86
  private route;
105
87
  private router;
106
- private location;
107
88
  private authenticationService;
108
- private baseAppService;
109
89
  isLoading: boolean;
110
90
  routeUrl: string;
111
91
  loginForm: FormGroup;
112
92
  submitted: boolean;
113
93
  returnUrl: string;
114
94
  error: string;
115
- userInfo: any;
116
- constructor(formBuilder: FormBuilder, route: ActivatedRoute, router: Router, location: Location, authenticationService: AuthService, baseAppService: BaseAppService);
95
+ constructor(formBuilder: FormBuilder, route: ActivatedRoute, router: Router, authenticationService: AuthService);
117
96
  isvalidUser: boolean;
118
97
  ngOnInit(): void;
119
98
  get formsData(): Login;
@@ -130,67 +109,36 @@ interface Menu {
130
109
  parentMenuId: number;
131
110
  targetAction: string;
132
111
  targetServer: string;
133
- parentMenuName: string;
134
- children: any[];
135
112
  }
136
113
  declare class MenuComponent implements OnInit {
137
114
  private authenticationService;
138
- private route;
139
- private router;
140
- injector: Injector;
141
- private baseAppService;
142
115
  async: any;
143
116
  MenuMode: string;
144
117
  message: string;
145
118
  tooltext: any;
146
- menuName: string;
147
- childMenu: string;
148
- isLoading: boolean;
149
- userInfo: any;
150
- moduleNameFromExcel: string;
151
- IsPermissionExists: boolean;
119
+ sidenav: any;
152
120
  messages: string[];
153
121
  MenuData: Menu[];
154
- RootUrl: string;
155
- menuFromExcel: any;
156
- navigateMsg: string;
157
- result: any;
158
- constructor(authenticationService: AuthService, route: ActivatedRoute, router: Router, injector: Injector, baseAppService: BaseAppService);
122
+ constructor(authenticationService: AuthService);
159
123
  ngOnInit(): void;
160
- GetCBMSMenu(): void;
161
- navigateToChildMenu(CurrentMenu: any): void;
124
+ GetCBMenu(): void;
162
125
  listItemClick(link: any): void;
163
- navigateToAnotherMenu(link: any): void;
164
- navigateUrl(Url: string): string;
165
- onLogOut(): void;
166
126
  static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
167
127
  static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "lib-menu", never, {}, {}, never, never, false, never>;
168
128
  }
169
129
 
170
130
  declare class MaterilsModule {
171
131
  static ɵfac: i0.ɵɵFactoryDeclaration<MaterilsModule, never>;
172
- static ɵmod: i0.ɵɵNgModuleDeclaration<MaterilsModule, never, never, [typeof i1.A11yModule, typeof i2.CdkTableModule, typeof i3.CdkTreeModule, typeof i4.DragDropModule, typeof i5.MatAutocompleteModule, typeof i6.MatBadgeModule, typeof i7.MatBottomSheetModule, typeof i8.MatButtonModule, typeof i9.MatButtonToggleModule, typeof i10.MatCardModule, typeof i11.MatCheckboxModule, typeof i12.MatChipsModule, typeof i13.MatStepperModule, typeof i14.MatDatepickerModule, typeof i15.MatDialogModule, typeof i16.MatDividerModule, typeof i17.MatExpansionModule, typeof i18.MatGridListModule, typeof i19.MatIconModule, typeof i20.MatInputModule, typeof i21.MatListModule, typeof i22.MatMenuModule, typeof i23.MatNativeDateModule, typeof i24.MatPaginatorModule, typeof i25.MatProgressBarModule, typeof i26.MatProgressSpinnerModule, typeof i27.MatRadioModule, typeof i23.MatRippleModule, typeof i28.MatSelectModule, typeof i29.MatSidenavModule, typeof i30.MatSliderModule, typeof i31.MatSlideToggleModule, typeof i32.MatSnackBarModule, typeof i33.MatSortModule, typeof i34.MatTableModule, typeof i35.MatTabsModule, typeof i36.MatToolbarModule, typeof i37.MatTooltipModule, typeof i38.MatTreeModule, typeof i39.ScrollingModule, typeof i40.OverlayModule]>;
132
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterilsModule, never, never, [typeof i1.A11yModule, typeof i2.CdkTableModule, typeof i3.CdkTreeModule, typeof i4.DragDropModule, typeof i5.MatAutocompleteModule, typeof i6.MatBadgeModule, typeof i7.MatBottomSheetModule, typeof i8.MatButtonModule, typeof i9.MatButtonToggleModule, typeof i10.MatCardModule, typeof i11.MatCheckboxModule, typeof i12.MatChipsModule, typeof i13.MatStepperModule, typeof i14.MatDatepickerModule, typeof i15.MatDialogModule, typeof i16.MatDividerModule, typeof i17.MatExpansionModule, typeof i18.MatGridListModule, typeof i19.MatIconModule, typeof i20.MatInputModule, typeof i21.MatListModule, typeof i22.MatMenuModule, typeof i23.MatNativeDateModule, typeof i24.MatPaginatorModule, typeof i25.MatProgressBarModule, typeof i26.MatProgressSpinnerModule, typeof i27.MatRadioModule, typeof i23.MatRippleModule, typeof i28.MatSelectModule, typeof i29.MatSidenavModule, typeof i30.MatSliderModule, typeof i31.MatSlideToggleModule, typeof i32.MatSnackBarModule, typeof i33.MatSortModule, typeof i34.MatTableModule, typeof i35.MatTabsModule, typeof i36.MatToolbarModule, typeof i37.MatTooltipModule, typeof i38.MatTreeModule, typeof i39.ScrollingModule]>;
173
133
  static ɵinj: i0.ɵɵInjectorDeclaration<MaterilsModule>;
174
134
  }
175
135
 
176
136
  declare class BulkToolModule {
177
137
  static forRoot(config: IEnvironmentsInfo): ModuleWithProviders<BulkToolModule>;
178
138
  static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolModule, never>;
179
- static ɵmod: i0.ɵɵNgModuleDeclaration<BulkToolModule, [typeof BulkToolComponent, typeof LoginComponent, typeof MenuComponent], [typeof MaterilsModule, typeof i5$1.FormsModule, typeof i6$1.CommonModule, typeof i7$1.RouterModule, typeof i5$1.ReactiveFormsModule], [typeof BulkToolComponent, typeof LoginComponent, typeof MenuComponent]>;
139
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BulkToolModule, [typeof BulkToolComponent, typeof LoginComponent, typeof MenuComponent], [typeof MaterilsModule, typeof i5$1.FormsModule, typeof i6$1.CommonModule, typeof i7$1.RouterModule, typeof i5$1.ReactiveFormsModule, typeof i8$1.HttpClientModule], [typeof BulkToolComponent, typeof LoginComponent, typeof MenuComponent]>;
180
140
  static ɵinj: i0.ɵɵInjectorDeclaration<BulkToolModule>;
181
141
  }
182
142
 
183
- declare const Constant: {
184
- APPSERVICEURL: string;
185
- APPSERVICEPRODURL: string;
186
- INVALID: string;
187
- };
188
-
189
- declare class HttpLibInterceptor implements HttpInterceptor {
190
- intercept(request: HttpRequest<any>, newRequest: HttpHandler): Observable<HttpEvent<any>>;
191
- static ɵfac: i0.ɵɵFactoryDeclaration<HttpLibInterceptor, never>;
192
- static ɵprov: i0.ɵɵInjectableDeclaration<HttpLibInterceptor>;
193
- }
194
-
195
- export { AuthService, BaseAppService, BulkToolComponent, BulkToolModule, Constant, HttpLibInterceptor, LoginComponent, MaterilsModule, MenuComponent };
196
- export type { IEnvironmentsInfo, Login, Menu };
143
+ export { BulkToolComponent, BulkToolModule, BulkToolService, LoginComponent, MaterilsModule, MenuComponent };
144
+ export type { Login, Menu };
@@ -0,0 +1,16 @@
1
+ import { Injector } from '@angular/core';
2
+ import { HttpClient } from '@angular/common/http';
3
+ import { Observable } from "rxjs";
4
+ import * as i0 from "@angular/core";
5
+ export declare class AuthService {
6
+ private http;
7
+ injector: Injector;
8
+ private API_ENDPOINT;
9
+ _username: any;
10
+ constructor(http: HttpClient, injector: Injector);
11
+ login(username: string, password: string): Observable<any>;
12
+ logout(): void;
13
+ GetMenu(): Observable<any>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
15
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
16
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BulkToolComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<BulkToolComponent, "lib-BulkTool", never, {}, {}, never, never, false, never>;
8
+ }
@@ -0,0 +1,17 @@
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import { IEnvironmentsInfo } from '../lib/environmentsModel.info';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./bulk-tool.component";
5
+ import * as i2 from "./login/login.component";
6
+ import * as i3 from "./menu/menu.component";
7
+ import * as i4 from "./materils/materils.module";
8
+ import * as i5 from "@angular/forms";
9
+ import * as i6 from "@angular/common";
10
+ import * as i7 from "@angular/router";
11
+ import * as i8 from "@angular/common/http";
12
+ export declare class BulkToolModule {
13
+ static forRoot(config: IEnvironmentsInfo): ModuleWithProviders<BulkToolModule>;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BulkToolModule, [typeof i1.BulkToolComponent, typeof i2.LoginComponent, typeof i3.MenuComponent], [typeof i4.MaterilsModule, typeof i5.FormsModule, typeof i6.CommonModule, typeof i7.RouterModule, typeof i5.ReactiveFormsModule, typeof i8.HttpClientModule], [typeof i1.BulkToolComponent, typeof i2.LoginComponent, typeof i3.MenuComponent]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<BulkToolModule>;
17
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BulkToolService {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<BulkToolService, never>;
5
+ static ɵprov: i0.ɵɵInjectableDeclaration<BulkToolService>;
6
+ }
@@ -0,0 +1,5 @@
1
+ export declare const Constant: {
2
+ APPSERVICEURL: string;
3
+ APPSERVICEPRODURL: string;
4
+ INVALID: string;
5
+ };
@@ -0,0 +1,3 @@
1
+ export interface IEnvironmentsInfo {
2
+ Url: string;
3
+ }
@@ -0,0 +1,8 @@
1
+ import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare class HttpLibInterceptor implements HttpInterceptor {
5
+ intercept(request: HttpRequest<any>, newRequest: HttpHandler): Observable<HttpEvent<any>>;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<HttpLibInterceptor, never>;
7
+ static ɵprov: i0.ɵɵInjectableDeclaration<HttpLibInterceptor>;
8
+ }
@@ -0,0 +1,27 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { Router, ActivatedRoute } from '@angular/router';
3
+ import { FormBuilder, FormGroup, AbstractControl } from '@angular/forms';
4
+ import { AuthService } from '../auth.service';
5
+ import * as i0 from "@angular/core";
6
+ export interface Login {
7
+ [key: string]: AbstractControl;
8
+ }
9
+ export declare class LoginComponent implements OnInit {
10
+ private formBuilder;
11
+ private route;
12
+ private router;
13
+ private authenticationService;
14
+ isLoading: boolean;
15
+ routeUrl: string;
16
+ loginForm: FormGroup;
17
+ submitted: boolean;
18
+ returnUrl: string;
19
+ error: string;
20
+ constructor(formBuilder: FormBuilder, route: ActivatedRoute, router: Router, authenticationService: AuthService);
21
+ isvalidUser: boolean;
22
+ ngOnInit(): void;
23
+ get formsData(): Login;
24
+ onLogin(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "lib-login", never, { "routeUrl": { "alias": "routeUrl"; "required": false; }; }, {}, never, never, false, never>;
27
+ }
@@ -0,0 +1,45 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/cdk/a11y";
3
+ import * as i2 from "@angular/cdk/table";
4
+ import * as i3 from "@angular/cdk/tree";
5
+ import * as i4 from "@angular/cdk/drag-drop";
6
+ import * as i5 from "@angular/material/autocomplete";
7
+ import * as i6 from "@angular/material/badge";
8
+ import * as i7 from "@angular/material/bottom-sheet";
9
+ import * as i8 from "@angular/material/button";
10
+ import * as i9 from "@angular/material/button-toggle";
11
+ import * as i10 from "@angular/material/card";
12
+ import * as i11 from "@angular/material/checkbox";
13
+ import * as i12 from "@angular/material/chips";
14
+ import * as i13 from "@angular/material/stepper";
15
+ import * as i14 from "@angular/material/datepicker";
16
+ import * as i15 from "@angular/material/dialog";
17
+ import * as i16 from "@angular/material/divider";
18
+ import * as i17 from "@angular/material/expansion";
19
+ import * as i18 from "@angular/material/grid-list";
20
+ import * as i19 from "@angular/material/icon";
21
+ import * as i20 from "@angular/material/input";
22
+ import * as i21 from "@angular/material/list";
23
+ import * as i22 from "@angular/material/menu";
24
+ import * as i23 from "@angular/material/core";
25
+ import * as i24 from "@angular/material/paginator";
26
+ import * as i25 from "@angular/material/progress-bar";
27
+ import * as i26 from "@angular/material/progress-spinner";
28
+ import * as i27 from "@angular/material/radio";
29
+ import * as i28 from "@angular/material/select";
30
+ import * as i29 from "@angular/material/sidenav";
31
+ import * as i30 from "@angular/material/slider";
32
+ import * as i31 from "@angular/material/slide-toggle";
33
+ import * as i32 from "@angular/material/snack-bar";
34
+ import * as i33 from "@angular/material/sort";
35
+ import * as i34 from "@angular/material/table";
36
+ import * as i35 from "@angular/material/tabs";
37
+ import * as i36 from "@angular/material/toolbar";
38
+ import * as i37 from "@angular/material/tooltip";
39
+ import * as i38 from "@angular/material/tree";
40
+ import * as i39 from "@angular/cdk/scrolling";
41
+ export declare class MaterilsModule {
42
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterilsModule, never>;
43
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterilsModule, never, never, [typeof i1.A11yModule, typeof i2.CdkTableModule, typeof i3.CdkTreeModule, typeof i4.DragDropModule, typeof i5.MatAutocompleteModule, typeof i6.MatBadgeModule, typeof i7.MatBottomSheetModule, typeof i8.MatButtonModule, typeof i9.MatButtonToggleModule, typeof i10.MatCardModule, typeof i11.MatCheckboxModule, typeof i12.MatChipsModule, typeof i13.MatStepperModule, typeof i14.MatDatepickerModule, typeof i15.MatDialogModule, typeof i16.MatDividerModule, typeof i17.MatExpansionModule, typeof i18.MatGridListModule, typeof i19.MatIconModule, typeof i20.MatInputModule, typeof i21.MatListModule, typeof i22.MatMenuModule, typeof i23.MatNativeDateModule, typeof i24.MatPaginatorModule, typeof i25.MatProgressBarModule, typeof i26.MatProgressSpinnerModule, typeof i27.MatRadioModule, typeof i23.MatRippleModule, typeof i28.MatSelectModule, typeof i29.MatSidenavModule, typeof i30.MatSliderModule, typeof i31.MatSlideToggleModule, typeof i32.MatSnackBarModule, typeof i33.MatSortModule, typeof i34.MatTableModule, typeof i35.MatTabsModule, typeof i36.MatToolbarModule, typeof i37.MatTooltipModule, typeof i38.MatTreeModule, typeof i39.ScrollingModule]>;
44
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterilsModule>;
45
+ }
@@ -0,0 +1,28 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { AuthService } from '../auth.service';
3
+ import * as i0 from "@angular/core";
4
+ export interface Menu {
5
+ displaytext: string;
6
+ displayorder: number;
7
+ menuId: number;
8
+ menulevel: number;
9
+ parentMenuId: number;
10
+ targetAction: string;
11
+ targetServer: string;
12
+ }
13
+ export declare class MenuComponent implements OnInit {
14
+ private authenticationService;
15
+ async: any;
16
+ MenuMode: string;
17
+ message: string;
18
+ tooltext: any;
19
+ sidenav: any;
20
+ messages: string[];
21
+ MenuData: Menu[];
22
+ constructor(authenticationService: AuthService);
23
+ ngOnInit(): void;
24
+ GetCBMenu(): void;
25
+ listItemClick(link: any): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<MenuComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<MenuComponent, "lib-menu", never, {}, {}, never, never, false, never>;
28
+ }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "exceladdincbms-v2",
3
- "version": "20.0.4",
3
+ "version": "20.0.5",
4
4
  "peerDependencies": {
5
- "@angular/common": "^20.3.15",
6
- "@angular/core": "^20.3.15"
5
+ "@angular/common": "^20.3.13",
6
+ "@angular/core": "^20.3.13"
7
7
  },
8
- "module": "fesm2022/exceladdincbms-20.mjs",
8
+ "module": "fesm2022/bulk-tool-20.mjs",
9
9
  "typings": "index.d.ts",
10
10
  "exports": {
11
11
  "./package.json": {
@@ -13,7 +13,7 @@
13
13
  },
14
14
  ".": {
15
15
  "types": "./index.d.ts",
16
- "default": "./fesm2022/exceladdincbms-20.mjs"
16
+ "default": "./fesm2022/bulk-tool-20.mjs"
17
17
  }
18
18
  },
19
19
  "sideEffects": false,
package/public_api.d.ts CHANGED
@@ -1,2 +1,6 @@
1
- export * from './src/public_api';
2
-
1
+ export * from './lib/bulk-tool.service';
2
+ export * from './lib/bulk-tool.component';
3
+ export * from './lib/bulk-tool.module';
4
+ export * from './lib/login/login.component';
5
+ export * from './lib/menu/menu.component';
6
+ export * from './lib/materils/materils.module';
Binary file