@tuki-io/tuki-widgets 0.0.219-dev.20 → 0.0.219-dev.23

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 (64) hide show
  1. package/esm2020/shared/public-api.mjs +4 -0
  2. package/esm2020/shared/src/ui/material.module.mjs +188 -0
  3. package/esm2020/shared/src/ui/shared.module.mjs +36 -0
  4. package/esm2020/shared/src/ui/tk-page-section/tk-page-section.component.mjs +13 -0
  5. package/esm2020/shared/src/ui/tk-page-section-row/tk-page-section-row.component.mjs +13 -0
  6. package/esm2020/shared/src/ui/ui.module.mjs +37 -0
  7. package/esm2020/shared/tuki-io-tuki-widgets-shared.mjs +5 -0
  8. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +6 -4
  9. package/esm2020/user-device-manage/src/classes/simplified-user.mjs +1 -1
  10. package/esm2020/user-device-manage/src/user-device-manage.module.mjs +1 -4
  11. package/esm2020/user-manage/src/app.constants.mjs +7 -1
  12. package/esm2020/user-manage/src/classes/simplified-user.mjs +4 -3
  13. package/esm2020/user-manage/src/device-list/device-list.component.mjs +7 -4
  14. package/esm2020/user-manage/src/device-list/device-row/device-row.component.mjs +6 -3
  15. package/esm2020/user-manage/src/material.module.mjs +14 -7
  16. package/esm2020/user-manage/src/services/user.service.mjs +53 -15
  17. package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +3 -3
  18. package/esm2020/user-manage/src/user-manage-widget.component.mjs +16 -10
  19. package/esm2020/user-manage/src/user-manage.module.mjs +7 -3
  20. package/esm2020/users-list/src/classes/simlified-user.mjs +1 -1
  21. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +14 -3
  22. package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +5 -3
  23. package/esm2020/users-list/src/users-list.component.mjs +4 -3
  24. package/fesm2015/tuki-io-tuki-widgets-shared.mjs +280 -0
  25. package/fesm2015/tuki-io-tuki-widgets-shared.mjs.map +1 -0
  26. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +5 -3
  27. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  28. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +0 -13
  29. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  30. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +104 -37
  31. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  32. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +21 -6
  33. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  34. package/fesm2020/tuki-io-tuki-widgets-shared.mjs +280 -0
  35. package/fesm2020/tuki-io-tuki-widgets-shared.mjs.map +1 -0
  36. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +5 -3
  37. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  38. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +0 -13
  39. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  40. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +104 -37
  41. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  42. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +20 -6
  43. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  44. package/package.json +9 -1
  45. package/shared/index.d.ts +5 -0
  46. package/shared/public-api.d.ts +3 -0
  47. package/shared/src/ui/material.module.d.ts +28 -0
  48. package/shared/src/ui/shared.module.d.ts +10 -0
  49. package/{user-device-manage/src/shared/tk-page-section/page-section.component.d.ts → shared/src/ui/tk-page-section/tk-page-section.component.d.ts} +1 -1
  50. package/shared/src/ui/tk-page-section-row/tk-page-section-row.component.d.ts +6 -0
  51. package/shared/src/ui/ui.module.d.ts +11 -0
  52. package/user-device-manage/src/classes/simplified-user.d.ts +1 -1
  53. package/user-device-manage/src/user-device-manage.module.d.ts +9 -10
  54. package/user-manage/src/app.constants.d.ts +6 -0
  55. package/user-manage/src/classes/simplified-user.d.ts +4 -1
  56. package/user-manage/src/device-list/device-list.component.d.ts +2 -0
  57. package/user-manage/src/material.module.d.ts +2 -1
  58. package/user-manage/src/services/user.service.d.ts +4 -0
  59. package/user-manage/src/user-manage-widget.component.d.ts +2 -0
  60. package/user-manage/src/user-manage.module.d.ts +2 -1
  61. package/users-list/src/classes/simlified-user.d.ts +1 -1
  62. package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +3 -1
  63. package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +2 -1
  64. package/esm2020/user-device-manage/src/shared/tk-page-section/page-section.component.mjs +0 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tuki-io/tuki-widgets",
3
- "version": "0.0.219-dev.20",
3
+ "version": "0.0.219-dev.23",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.2.0",
6
6
  "@angular/core": "^15.2.0",
@@ -44,6 +44,14 @@
44
44
  "node": "./fesm2015/tuki-io-tuki-widgets-di2mt.mjs",
45
45
  "default": "./fesm2020/tuki-io-tuki-widgets-di2mt.mjs"
46
46
  },
47
+ "./shared": {
48
+ "types": "./shared/index.d.ts",
49
+ "esm2020": "./esm2020/shared/tuki-io-tuki-widgets-shared.mjs",
50
+ "es2020": "./fesm2020/tuki-io-tuki-widgets-shared.mjs",
51
+ "es2015": "./fesm2015/tuki-io-tuki-widgets-shared.mjs",
52
+ "node": "./fesm2015/tuki-io-tuki-widgets-shared.mjs",
53
+ "default": "./fesm2020/tuki-io-tuki-widgets-shared.mjs"
54
+ },
47
55
  "./user-creation": {
48
56
  "types": "./user-creation/index.d.ts",
49
57
  "esm2020": "./esm2020/user-creation/tuki-io-tuki-widgets-user-creation.mjs",
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@tuki-io/tuki-widgets/shared" />
5
+ export * from './public-api';
@@ -0,0 +1,3 @@
1
+ export * from './src/ui/ui.module';
2
+ export * from './src/ui/tk-page-section/tk-page-section.component';
3
+ export * from './src/ui/tk-page-section-row/tk-page-section-row.component';
@@ -0,0 +1,28 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/cdk/drag-drop";
3
+ import * as i2 from "@angular/material/button";
4
+ import * as i3 from "@angular/material/list";
5
+ import * as i4 from "@angular/material/progress-spinner";
6
+ import * as i5 from "@angular/material/expansion";
7
+ import * as i6 from "@angular/material/input";
8
+ import * as i7 from "@angular/material/tree";
9
+ import * as i8 from "@angular/material/core";
10
+ import * as i9 from "@angular/material/datepicker";
11
+ import * as i10 from "@angular/material/tooltip";
12
+ import * as i11 from "@angular/material/autocomplete";
13
+ import * as i12 from "@angular/material/chips";
14
+ import * as i13 from "@angular/material/sidenav";
15
+ import * as i14 from "@angular/material/form-field";
16
+ import * as i15 from "@angular/material/stepper";
17
+ import * as i16 from "@angular/material/tabs";
18
+ import * as i17 from "@angular/material/card";
19
+ import * as i18 from "@angular/material/select";
20
+ import * as i19 from "@angular/material/checkbox";
21
+ import * as i20 from "@angular/material/slide-toggle";
22
+ import * as i21 from "@angular/material/table";
23
+ import * as i22 from "@angular/material/paginator";
24
+ export declare class MaterialModule {
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
26
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i18.MatSelectModule, typeof i19.MatCheckboxModule, typeof i20.MatSlideToggleModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule], [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i19.MatCheckboxModule, typeof i18.MatSelectModule, typeof i20.MatSlideToggleModule, typeof i4.MatProgressSpinnerModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule]>;
27
+ static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
28
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./material.module";
4
+ import * as i3 from "ng-apexcharts";
5
+ import * as i4 from "@angular/common/http";
6
+ export declare class SharedModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.CommonModule, typeof i2.MaterialModule, typeof i3.NgApexchartsModule, typeof i4.HttpClientModule], [typeof i1.CommonModule, typeof i2.MaterialModule]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
10
+ }
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
2
2
  export declare class PageSectionComponent {
3
3
  heading: string;
4
4
  static ɵfac: i0.ɵɵFactoryDeclaration<PageSectionComponent, never>;
5
- static ɵcmp: i0.ɵɵComponentDeclaration<PageSectionComponent, "lib-page-section", never, { "heading": "heading"; }, {}, never, ["heading-icon", "content"], false, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageSectionComponent, "tk-page-section", never, { "heading": "heading"; }, {}, never, ["content"], false, never>;
6
6
  }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class PageSectionRowComponent {
3
+ label: string;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageSectionRowComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageSectionRowComponent, "tk-page-section-row", never, { "label": "label"; }, {}, never, ["*"], false, never>;
6
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tk-page-section/tk-page-section.component";
3
+ import * as i2 from "./tk-page-section-row/tk-page-section-row.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "./shared.module";
6
+ import * as i5 from "./material.module";
7
+ export declare class UIModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<UIModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UIModule, [typeof i1.PageSectionComponent, typeof i2.PageSectionRowComponent], [typeof i3.CommonModule, typeof i4.SharedModule, typeof i5.MaterialModule], [typeof i1.PageSectionComponent, typeof i2.PageSectionRowComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<UIModule>;
11
+ }
@@ -29,7 +29,7 @@ export declare class SimplifiedUser {
29
29
  displayName: string;
30
30
  viewMode: string;
31
31
  hasModifiedCache: boolean;
32
- newUserId?: string;
32
+ newUserid?: string;
33
33
  editMode: boolean;
34
34
  form: FormGroup;
35
35
  viewType?: any;
@@ -9,17 +9,16 @@ import * as i7 from "./device-associated-line/device-associated-line-extension/d
9
9
  import * as i8 from "./device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component";
10
10
  import * as i9 from "./device-associated-line/associated-line-row/associated-line-row.component";
11
11
  import * as i10 from "./confirm-dialog/info-dialog.component";
12
- import * as i11 from "./shared/tk-page-section/page-section.component";
13
- import * as i12 from "./device-info/device-info.component";
14
- import * as i13 from "./pipes/mac-address.pipe";
15
- import * as i14 from "@angular/common";
16
- import * as i15 from "@angular/platform-browser";
17
- import * as i16 from "@angular/platform-browser/animations";
18
- import * as i17 from "@angular/forms";
19
- import * as i18 from "@angular/common/http";
20
- import * as i19 from "./material.module";
12
+ import * as i11 from "./device-info/device-info.component";
13
+ import * as i12 from "./pipes/mac-address.pipe";
14
+ import * as i13 from "@angular/common";
15
+ import * as i14 from "@angular/platform-browser";
16
+ import * as i15 from "@angular/platform-browser/animations";
17
+ import * as i16 from "@angular/forms";
18
+ import * as i17 from "@angular/common/http";
19
+ import * as i18 from "./material.module";
21
20
  export declare class UserDeviceManageModule {
22
21
  static ɵfac: i0.ɵɵFactoryDeclaration<UserDeviceManageModule, never>;
23
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserDeviceManageModule, [typeof i1.AppLoaderComponent, typeof i2.NotificationsComponent, typeof i3.LazyLoadingSelectComponent, typeof i4.DeviceListComponent, typeof i5.DeviceManageWidgetComponent, typeof i6.DeviceAssociatedLineComponent, typeof i7.DeviceAssociatedLineExtensionComponent, typeof i8.DeviceAssociatedLineDetailsBoxComponent, typeof i9.AssociatedLineRowComponent, typeof i10.InfoDialogComponent, typeof i11.PageSectionComponent, typeof i12.DeviceInfoComponent, typeof i13.MacAddressPipe], [typeof i14.CommonModule, typeof i15.BrowserModule, typeof i16.BrowserAnimationsModule, typeof i17.FormsModule, typeof i17.ReactiveFormsModule, typeof i18.HttpClientModule, typeof i19.MaterialModule], [typeof i5.DeviceManageWidgetComponent]>;
22
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UserDeviceManageModule, [typeof i1.AppLoaderComponent, typeof i2.NotificationsComponent, typeof i3.LazyLoadingSelectComponent, typeof i4.DeviceListComponent, typeof i5.DeviceManageWidgetComponent, typeof i6.DeviceAssociatedLineComponent, typeof i7.DeviceAssociatedLineExtensionComponent, typeof i8.DeviceAssociatedLineDetailsBoxComponent, typeof i9.AssociatedLineRowComponent, typeof i10.InfoDialogComponent, typeof i11.DeviceInfoComponent, typeof i12.MacAddressPipe], [typeof i13.CommonModule, typeof i14.BrowserModule, typeof i15.BrowserAnimationsModule, typeof i16.FormsModule, typeof i16.ReactiveFormsModule, typeof i17.HttpClientModule, typeof i18.MaterialModule], [typeof i5.DeviceManageWidgetComponent]>;
24
23
  static ɵinj: i0.ɵɵInjectorDeclaration<UserDeviceManageModule>;
25
24
  }
@@ -20,6 +20,11 @@ export declare const API: {
20
20
  UPDATE_LINE_FIELDS: string;
21
21
  UPDATE_DEVICE_FIELDS: string;
22
22
  TRANSLATION_PATTERN_CUCM: string;
23
+ LEAN_USER_CONVERSATION_START: string;
24
+ LEAN_USER_DEVICES_CONVERSATION_START: string;
25
+ LEAN_USER_LINES_CONVERSATION_START: string;
26
+ LEAN_USER_SNR_CONVERSATION_START: string;
27
+ UPDATE_LEAN_USER_FIELDS: string;
23
28
  };
24
29
  export declare const REGEX_PATTERN: {
25
30
  EMAIL: string;
@@ -32,3 +37,4 @@ export declare const PAGINATION_SIZE_OPTIONS: number[];
32
37
  export declare const CUCS_TO_IGNORE: number[];
33
38
  export declare const CUCMS_TO_IGNORE: number[];
34
39
  export declare const RECORDING_MEDIA_SOURCE: string[];
40
+ export declare const ON_PREM_ID = 2542;
@@ -38,10 +38,13 @@ export declare class SimplifiedUser {
38
38
  devices: Device[];
39
39
  viewMode: string;
40
40
  hasModifiedCache: boolean;
41
- newUserId: string;
41
+ newUserid: string;
42
42
  editMode: boolean;
43
43
  ldapIntegrated: boolean;
44
44
  lines?: LineInterface[];
45
+ leanUserDetailsToken?: string;
46
+ leanUserLinesToken?: string;
47
+ leanUserSNRToken?: string;
45
48
  form: FormGroup;
46
49
  constructor(user?: any, isLdap?: boolean);
47
50
  getLineVal(lineAssociation: LineAssociation | LineAssociationInterface, lines: any, token: string): any;
@@ -2,10 +2,12 @@ import { EventEmitter } from '@angular/core';
2
2
  import { Device } from '../classes/device';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class DeviceListComponent {
5
+ readonly columns: string[];
5
6
  devices: any;
6
7
  onDeviceSelect: EventEmitter<Device>;
7
8
  constructor();
8
9
  selectDevice(device: Device): void;
10
+ trackByName(device: any): any;
9
11
  static ɵfac: i0.ɵɵFactoryDeclaration<DeviceListComponent, never>;
10
12
  static ɵcmp: i0.ɵɵComponentDeclaration<DeviceListComponent, "app-device-list", never, { "devices": "devices"; }, { "onDeviceSelect": "onDeviceSelect"; }, never, never, false, never>;
11
13
  }
@@ -21,8 +21,9 @@ import * as i19 from "@angular/material/checkbox";
21
21
  import * as i20 from "@angular/material/slide-toggle";
22
22
  import * as i21 from "@angular/material/table";
23
23
  import * as i22 from "@angular/material/paginator";
24
+ import * as i23 from "@angular/material/menu";
24
25
  export declare class MaterialModule {
25
26
  static ɵfac: i0.ɵɵFactoryDeclaration<MaterialModule, never>;
26
- static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i18.MatSelectModule, typeof i19.MatCheckboxModule, typeof i20.MatSlideToggleModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule], [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i19.MatCheckboxModule, typeof i18.MatSelectModule, typeof i20.MatSlideToggleModule, typeof i4.MatProgressSpinnerModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule]>;
27
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialModule, never, [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i18.MatSelectModule, typeof i19.MatCheckboxModule, typeof i20.MatSlideToggleModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule, typeof i23.MatMenuModule], [typeof i1.DragDropModule, typeof i2.MatButtonModule, typeof i3.MatListModule, typeof i4.MatProgressSpinnerModule, typeof i5.MatExpansionModule, typeof i6.MatInputModule, typeof i6.MatInputModule, typeof i3.MatListModule, typeof i7.MatTreeModule, typeof i7.MatTreeModule, typeof i8.MatNativeDateModule, typeof i9.MatDatepickerModule, typeof i10.MatTooltipModule, typeof i11.MatAutocompleteModule, typeof i12.MatChipsModule, typeof i13.MatSidenavModule, typeof i14.MatFormFieldModule, typeof i15.MatStepperModule, typeof i16.MatTabsModule, typeof i17.MatCardModule, typeof i19.MatCheckboxModule, typeof i18.MatSelectModule, typeof i20.MatSlideToggleModule, typeof i4.MatProgressSpinnerModule, typeof i21.MatTableModule, typeof i22.MatPaginatorModule, typeof i23.MatMenuModule]>;
27
28
  static ɵinj: i0.ɵɵInjectorDeclaration<MaterialModule>;
28
29
  }
@@ -42,6 +42,10 @@ export declare class UserService implements OnInit {
42
42
  setSimplifiedUser(user: any, isLdap?: boolean): void;
43
43
  private handleSaveUserResponse;
44
44
  getPrimaryLineDevice(primaryLineReferenceDirectoryNumber: string): any;
45
+ fetchLeanUserConversationById(id: string, siteId?: number): import("rxjs").Observable<Object>;
46
+ fetchLeanUserDevicesConversationById(id: string, siteId?: number): import("rxjs").Observable<Object>;
47
+ fetchLeanUserLinesConversationById(id: string, siteId: number): import("rxjs").Observable<Object>;
48
+ fetchLeanUserSNRConversationById(id: string, siteId?: number): import("rxjs").Observable<Object>;
45
49
  static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
46
50
  static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
47
51
  }
@@ -25,7 +25,9 @@ export declare class UserManageWidgetComponent implements OnInit {
25
25
  get userName(): string;
26
26
  get lineAssociation(): LineAssociation | LineAssociationInterface | undefined;
27
27
  get primaryLineReference(): string | undefined;
28
+ get webexUUID(): string | null;
28
29
  private readonly router;
30
+ readonly ON_PREM_ID = 2542;
29
31
  constructor(userService: UserService, apiService: APIService);
30
32
  ngOnInit(): void;
31
33
  onDeviceSelect(device: Device): void;
@@ -15,8 +15,9 @@ import * as i13 from "@angular/platform-browser/animations";
15
15
  import * as i14 from "@angular/forms";
16
16
  import * as i15 from "@angular/common/http";
17
17
  import * as i16 from "./material.module";
18
+ import * as i17 from "@tuki-io/tuki-widgets/shared";
18
19
  export declare class UserManageModule {
19
20
  static ɵfac: i0.ɵɵFactoryDeclaration<UserManageModule, never>;
20
- static ɵmod: i0.ɵɵNgModuleDeclaration<UserManageModule, [typeof i1.AppLoaderComponent, typeof i2.UserInfoComponent, typeof i3.NotificationsComponent, typeof i4.PaginationComponent, typeof i5.LazyLoadingSelectComponent, typeof i6.UserManageWidgetComponent, typeof i7.UserCallingComponent, typeof i8.UserCallingExtensionComponent, typeof i9.DeviceListComponent, typeof i10.DeviceRowComponent], [typeof i11.CommonModule, typeof i12.BrowserModule, typeof i13.BrowserAnimationsModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.HttpClientModule, typeof i16.MaterialModule], [typeof i6.UserManageWidgetComponent]>;
21
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UserManageModule, [typeof i1.AppLoaderComponent, typeof i2.UserInfoComponent, typeof i3.NotificationsComponent, typeof i4.PaginationComponent, typeof i5.LazyLoadingSelectComponent, typeof i6.UserManageWidgetComponent, typeof i7.UserCallingComponent, typeof i8.UserCallingExtensionComponent, typeof i9.DeviceListComponent, typeof i10.DeviceRowComponent], [typeof i11.CommonModule, typeof i12.BrowserModule, typeof i13.BrowserAnimationsModule, typeof i14.FormsModule, typeof i14.ReactiveFormsModule, typeof i15.HttpClientModule, typeof i16.MaterialModule, typeof i17.UIModule], [typeof i6.UserManageWidgetComponent]>;
21
22
  static ɵinj: i0.ɵɵInjectorDeclaration<UserManageModule>;
22
23
  }
@@ -7,7 +7,7 @@ export declare class SimplifiedUser {
7
7
  token: string;
8
8
  viewMode: string;
9
9
  hasModifiedCache: boolean;
10
- newUserId?: string;
10
+ newUserid?: string;
11
11
  editMode: boolean;
12
12
  form: FormGroup;
13
13
  constructor(user?: any);
@@ -20,6 +20,7 @@ export declare class MoveUserStepperComponent implements OnInit {
20
20
  done: EventEmitter<any>;
21
21
  user: any;
22
22
  customerId: number;
23
+ host: string;
23
24
  runMoveUser: EventEmitter<any>;
24
25
  cancel: EventEmitter<any>;
25
26
  isLinear: boolean;
@@ -31,6 +32,7 @@ export declare class MoveUserStepperComponent implements OnInit {
31
32
  get currentNumber(): string;
32
33
  get locations(): AppLocation[];
33
34
  get prepareMigrationData(): PrepareMigrationData;
35
+ get userDetailsUrl(): string;
34
36
  constructor(dnsService: DnsService, userService: UserService, siteSettingsService: SiteSettingsService, notificationService: NotificationService, moveUserService: MoveUserService);
35
37
  ngOnInit(): void;
36
38
  displayLocation(location?: AppLocation): string;
@@ -51,5 +53,5 @@ export declare class MoveUserStepperComponent implements OnInit {
51
53
  private getPrepareUserData;
52
54
  private resetMoveTypePhoneNUmber;
53
55
  static ɵfac: i0.ɵɵFactoryDeclaration<MoveUserStepperComponent, never>;
54
- static ɵcmp: i0.ɵɵComponentDeclaration<MoveUserStepperComponent, "app-move-user-stepper", never, { "user": "user"; "customerId": "customerId"; }, { "done": "done"; "runMoveUser": "runMoveUser"; "cancel": "cancel"; }, never, never, false, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<MoveUserStepperComponent, "app-move-user-stepper", never, { "user": "user"; "customerId": "customerId"; "host": "host"; }, { "done": "done"; "runMoveUser": "runMoveUser"; "cancel": "cancel"; }, never, never, false, never>;
55
57
  }
@@ -5,6 +5,7 @@ export declare class MoveUserWizardComponent {
5
5
  dnsService: DnsService;
6
6
  user: any;
7
7
  customerId: number;
8
+ host: string;
8
9
  closeMoveUserWizard: EventEmitter<any>;
9
10
  done: EventEmitter<any>;
10
11
  runMoveUser: EventEmitter<any>;
@@ -13,5 +14,5 @@ export declare class MoveUserWizardComponent {
13
14
  onClose(): void;
14
15
  onRunMoveUser(): void;
15
16
  static ɵfac: i0.ɵɵFactoryDeclaration<MoveUserWizardComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<MoveUserWizardComponent, "app-move-user-wizard", never, { "user": "user"; "customerId": "customerId"; }, { "closeMoveUserWizard": "closeMoveUserWizard"; "done": "done"; "runMoveUser": "runMoveUser"; }, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<MoveUserWizardComponent, "app-move-user-wizard", never, { "user": "user"; "customerId": "customerId"; "host": "host"; }, { "closeMoveUserWizard": "closeMoveUserWizard"; "done": "done"; "runMoveUser": "runMoveUser"; }, never, never, false, never>;
17
18
  }
@@ -1,13 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class PageSectionComponent {
4
- }
5
- PageSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
- PageSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PageSectionComponent, selector: "lib-page-section", inputs: { heading: "heading" }, ngImport: i0, template: "<section class=\"wrapper\">\r\n <div class=\"section__left-header\">\r\n <div class=\"heading-wrapper\">\r\n <h2 class=\"heading\">{{ heading }}</h2>\r\n <div class=\"heading-icon\">\r\n <ng-content select=\"heading-icon\"></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"section__content\">\r\n <ng-content select=\"content\"></ng-content>\r\n </div>\r\n</section>", styles: [".wrapper{color:#000000f2;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;width:100%;padding:1.5rem;display:flex}.section__left-header{display:flex;align-items:left;justify-content:center;flex-direction:column;gap:1rem;background-color:red;flex:1;max-width:11rem}.section__left-header .heading-wrapper{display:flex;align-items:center;justify-content:left;gap:.5rem}.section__left-header .heading{font-size:16px;font-weight:500}.section__left-header .heading-icon{display:flex;align-items:center;justify-content:center}.section__content{display:flex;align-items:center;justify-content:center;gap:.5rem}\n"] });
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, decorators: [{
8
- type: Component,
9
- args: [{ selector: 'lib-page-section', template: "<section class=\"wrapper\">\r\n <div class=\"section__left-header\">\r\n <div class=\"heading-wrapper\">\r\n <h2 class=\"heading\">{{ heading }}</h2>\r\n <div class=\"heading-icon\">\r\n <ng-content select=\"heading-icon\"></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"section__content\">\r\n <ng-content select=\"content\"></ng-content>\r\n </div>\r\n</section>", styles: [".wrapper{color:#000000f2;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;width:100%;padding:1.5rem;display:flex}.section__left-header{display:flex;align-items:left;justify-content:center;flex-direction:column;gap:1rem;background-color:red;flex:1;max-width:11rem}.section__left-header .heading-wrapper{display:flex;align-items:center;justify-content:left;gap:.5rem}.section__left-header .heading{font-size:16px;font-weight:500}.section__left-header .heading-icon{display:flex;align-items:center;justify-content:center}.section__content{display:flex;align-items:center;justify-content:center;gap:.5rem}\n"] }]
10
- }], propDecorators: { heading: [{
11
- type: Input
12
- }] } });
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnZS1zZWN0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R1a2kvd2lkZ2V0cy91c2VyLWRldmljZS1tYW5hZ2Uvc3JjL3NoYXJlZC90ay1wYWdlLXNlY3Rpb24vcGFnZS1zZWN0aW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3R1a2kvd2lkZ2V0cy91c2VyLWRldmljZS1tYW5hZ2Uvc3JjL3NoYXJlZC90ay1wYWdlLXNlY3Rpb24vcGFnZS1zZWN0aW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU9qRCxNQUFNLE9BQU8sb0JBQW9COztrSEFBcEIsb0JBQW9CO3NHQUFwQixvQkFBb0Isd0ZDUGpDLCtjQVlVOzRGRExHLG9CQUFvQjtrQkFMaEMsU0FBUzsrQkFDRSxrQkFBa0I7OEJBS25CLE9BQU87c0JBQWYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbGliLXBhZ2Utc2VjdGlvbicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3BhZ2Utc2VjdGlvbi5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vcGFnZS1zZWN0aW9uLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIFBhZ2VTZWN0aW9uQ29tcG9uZW50IHtcclxuICBASW5wdXQoKSBoZWFkaW5nITogc3RyaW5nO1xyXG59XHJcbiIsIjxzZWN0aW9uIGNsYXNzPVwid3JhcHBlclwiPlxyXG4gICAgPGRpdiBjbGFzcz1cInNlY3Rpb25fX2xlZnQtaGVhZGVyXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImhlYWRpbmctd3JhcHBlclwiPlxyXG4gICAgICAgICAgICA8aDIgY2xhc3M9XCJoZWFkaW5nXCI+e3sgaGVhZGluZyB9fTwvaDI+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJoZWFkaW5nLWljb25cIj5cclxuICAgICAgICAgICAgICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImhlYWRpbmctaWNvblwiPjwvbmctY29udGVudD5cclxuICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJzZWN0aW9uX19jb250ZW50XCI+XHJcbiAgICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiY29udGVudFwiPjwvbmctY29udGVudD5cclxuICAgIDwvZGl2PlxyXG48L3NlY3Rpb24+Il19