qms-angular 1.1.73 → 1.1.75

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.
@@ -17,6 +17,8 @@ import { FilterPersonModel } from './model/filter-person.model';
17
17
  import { OptionSelectAccessModel } from './model/option-select-access.model';
18
18
  import { QMSSelectAccessDialog } from './model/select-access-config.model';
19
19
  import { QMSSelectAccessResult } from './model/select-access-data';
20
+ import { MatTabChangeEvent } from '@angular/material/tabs';
21
+ import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
20
22
  export declare class QMSSelectAccessDialogComponent implements OnInit, OnDestroy, AfterViewInit, AfterContentInit, AfterContentChecked {
21
23
  private dialogRef;
22
24
  dialogData: QMSSelectAccessDialog;
@@ -43,6 +45,9 @@ export declare class QMSSelectAccessDialogComponent implements OnInit, OnDestroy
43
45
  set tree(data: SelectDepartmentTreeComponent);
44
46
  pagingPerson: QMSPaginatorComponent;
45
47
  pagingUserGroup: QMSPaginatorComponent;
48
+ cdkVirtualScrollViewportPerson: CdkVirtualScrollViewport;
49
+ cdkVirtualScrollViewportUserGroup: CdkVirtualScrollViewport;
50
+ ITEM_SIZE: number;
46
51
  /** list filtered by search keyword */
47
52
  optionFilterPersonDataGlobal: {
48
53
  departments: QMSFlatNodeTree[];
@@ -61,6 +66,7 @@ export declare class QMSSelectAccessDialogComponent implements OnInit, OnDestroy
61
66
  resultAccess: QMSSelectAccessResult;
62
67
  arrSkeleton: any[];
63
68
  getSearching$: BehaviorSubject<boolean>;
69
+ isShowSearchControl: boolean;
64
70
  constructor(dialogRef: MatDialogRef<QMSSelectAccessDialogComponent>, dialogData: QMSSelectAccessDialog, translate: TranslateLibraryService, _fb: FormBuilder, cdRef: ChangeDetectorRef);
65
71
  ngAfterContentChecked(): void;
66
72
  ngAfterContentInit(): void;
@@ -100,4 +106,8 @@ export declare class QMSSelectAccessDialogComponent implements OnInit, OnDestroy
100
106
  updateOptionPersonFilter(departmentFilter?: QMSFlatNodeTree[], userGroupFilter?: QMSAccessItem[]): void;
101
107
  setDefaultPageSizeOption(data: number[]): void;
102
108
  allowRemove: (type: OptionSelectAccessEnum, item: any) => boolean;
109
+ setShowSearchControl(isShowSearchControl: boolean): void;
110
+ onSelectionTabChange(event: MatTabChangeEvent): void;
111
+ onScroll(): void;
112
+ loadPage(pageIndex: number): void;
103
113
  }
@@ -101,6 +101,7 @@ export declare class SelectDepartmentTreeComponent implements OnInit, AfterViewI
101
101
  private readonly _handlingLazyObject;
102
102
  private lockHandleSelectionChange;
103
103
  source_object: QMSTreeNode;
104
+ isShowSearchControl: boolean;
104
105
  constructor(cdRef: ChangeDetectorRef, domSanitizer: DomSanitizer, appIconService: QMSIconRegistryService, iconRegistry: MatIconRegistry, eleRef: ElementRef, trans: TranslateLibraryService, overlay: Overlay, viewContainerRef: ViewContainerRef, treeDepartmentService: QMSSelectDepartmentTreeGlobalService);
105
106
  ngAfterContentInit(): void;
106
107
  ngAfterViewInit(): void;
@@ -207,4 +208,5 @@ export declare class SelectDepartmentTreeComponent implements OnInit, AfterViewI
207
208
  private execWithoutEmitNodeChangeEvent;
208
209
  isDisabledNode: (nodeId: string) => boolean;
209
210
  isPushingNode(allChildNode: QMSTreeNode[], countChildrenPushing?: number): void;
211
+ setShowSearchControl(isShowSearchControl: boolean): void;
210
212
  }
package/lib/model/en.d.ts CHANGED
@@ -578,4 +578,6 @@ export declare const en: {
578
578
  INTERCONNECTED_PROCESSES: string;
579
579
  PLACE_NEXT_TO: string;
580
580
  PLACE_UNDER: string;
581
+ PROJECT: string;
582
+ CONFIRM: string;
581
583
  };
package/lib/model/no.d.ts CHANGED
@@ -578,4 +578,6 @@ export declare const no: {
578
578
  INTERCONNECTED_PROCESSES: string;
579
579
  PLACE_NEXT_TO: string;
580
580
  PLACE_UNDER: string;
581
+ PROJECT: string;
582
+ CONFIRM: string;
581
583
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qms-angular",
3
- "version": "1.1.73",
3
+ "version": "1.1.75",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },