qms-angular 1.0.80 → 1.0.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/qms-angular.umd.js +259 -106
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.js +3 -3
- package/esm2015/lib/components/qms-paginator/qms-paginator.component.js +14 -4
- package/esm2015/lib/components/related/popup/related-popup.component.js +48 -56
- package/esm2015/lib/components/select-one/select-one.component.js +3 -2
- package/esm2015/lib/components/select-process-document/select-process-document.component.js +65 -34
- package/esm2015/lib/components/tree/tree.component.js +2 -2
- package/esm2015/lib/directives/dialog/dialog.content.directive.js +96 -0
- package/esm2015/lib/directives/table/table-row.directive.js +3 -3
- package/esm2015/lib/directives/table/table.directive.js +6 -6
- package/esm2015/lib/model/en.js +4 -1
- package/esm2015/lib/model/no.js +4 -1
- package/esm2015/lib/qms-angular.module.js +12 -3
- package/esm2015/public-api.js +2 -1
- package/fesm2015/qms-angular.js +247 -105
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/qms-paginator/qms-paginator.component.d.ts +5 -1
- package/lib/directives/dialog/dialog.content.directive.d.ts +30 -0
- package/lib/directives/table/table-row.directive.d.ts +1 -1
- package/lib/directives/table/table.directive.d.ts +1 -1
- package/lib/model/en.d.ts +3 -0
- package/lib/model/no.d.ts +3 -0
- package/lib.theme.scss +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/qms-angular.metadata.json +1 -1
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js +1 -1
- package/src/assets/qms-ckeditor-plugin/build/ckeditor.js.map +1 -1
- package/src/assets/qms-ckeditor-plugin/src/plugins/anchor/anchorediting.js +19 -1
- package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/converters.js +44 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/imagemap/imagemapediting.js +3 -1
- package/src/assets/qms-ckeditor-plugin/src/plugins/media/mediaembedediting.js +30 -0
- package/src/assets/qms-ckeditor-plugin/src/plugins/tooltip/tooltipediting.js +20 -9
- package/src/assets/qms-ckeditor-plugin/src/plugins/tooltip/utils.js +4 -1
- package/src/lib/components/qms-navigation-drawer/qms-navigation-drawer.component.scss +5 -5
- package/src/themes/core/_dialog.scss +35 -0
- package/src/themes/core/_form.scss +4 -0
package/fesm2015/qms-angular.js
CHANGED
@@ -63,6 +63,9 @@ QmsAngularService.decorators = [
|
|
63
63
|
QmsAngularService.ctorParameters = () => [];
|
64
64
|
|
65
65
|
const en = {
|
66
|
+
"RESULTS": "Results",
|
67
|
+
"ROW_PER_PAGE": "Items per page",
|
68
|
+
"JUM_TO_PAGE": "Go to page",
|
66
69
|
"MY_COMPONENT": "My component",
|
67
70
|
"SAVE_BUTTON": "Save",
|
68
71
|
"CANCEL_BUTTON": "Cancel",
|
@@ -360,6 +363,9 @@ const en = {
|
|
360
363
|
};
|
361
364
|
|
362
365
|
const no = {
|
366
|
+
"RESULTS": "Resultater",
|
367
|
+
"ROW_PER_PAGE": "Rader per side",
|
368
|
+
"JUM_TO_PAGE": "Hopp til side",
|
363
369
|
"MY_COMPONENT": "Min komponent",
|
364
370
|
"SAVE_BUTTON": "Lagre",
|
365
371
|
"CANCEL_BUTTON": "Avbryt",
|
@@ -2760,7 +2766,7 @@ class CdkDetailRowDirective {
|
|
2760
2766
|
get expanded() {
|
2761
2767
|
return this.opened;
|
2762
2768
|
}
|
2763
|
-
set
|
2769
|
+
set qmsCdkDetailRow(value) {
|
2764
2770
|
if (value !== this.row) {
|
2765
2771
|
this.row = value;
|
2766
2772
|
}
|
@@ -2827,7 +2833,7 @@ class CdkDetailRowDirective {
|
|
2827
2833
|
}
|
2828
2834
|
CdkDetailRowDirective.decorators = [
|
2829
2835
|
{ type: Directive, args: [{
|
2830
|
-
selector: '[
|
2836
|
+
selector: '[qmsCdkDetailRow]'
|
2831
2837
|
},] }
|
2832
2838
|
];
|
2833
2839
|
CdkDetailRowDirective.ctorParameters = () => [
|
@@ -2837,9 +2843,9 @@ CdkDetailRowDirective.ctorParameters = () => [
|
|
2837
2843
|
CdkDetailRowDirective.propDecorators = {
|
2838
2844
|
onRowExpandEvent: [{ type: Output }],
|
2839
2845
|
expanded: [{ type: HostBinding, args: ['class.qms-row-expanded',] }],
|
2840
|
-
|
2841
|
-
template: [{ type: Input, args: ['
|
2842
|
-
otherTemplate: [{ type: Input, args: ['
|
2846
|
+
qmsCdkDetailRow: [{ type: Input }],
|
2847
|
+
template: [{ type: Input, args: ['qmsCdkDetailRowTpl',] }],
|
2848
|
+
otherTemplate: [{ type: Input, args: ['qmsCdkotherTemplate',] }],
|
2843
2849
|
onClick: [{ type: HostListener, args: ['click',] }],
|
2844
2850
|
onKeydownHandler: [{ type: HostListener, args: ['keydown.enter', ['$event'],] }],
|
2845
2851
|
onClickItem: [{ type: HostListener, args: ['document:click', ['$event.target'],] }],
|
@@ -2861,7 +2867,7 @@ class QMSTableRowDirective {
|
|
2861
2867
|
}
|
2862
2868
|
}
|
2863
2869
|
}
|
2864
|
-
set
|
2870
|
+
set qmsCdkDetailRow(value) {
|
2865
2871
|
this._rowData = value;
|
2866
2872
|
}
|
2867
2873
|
get disable() {
|
@@ -2888,13 +2894,108 @@ QMSTableRowDirective.ctorParameters = () => [
|
|
2888
2894
|
{ type: Renderer2 }
|
2889
2895
|
];
|
2890
2896
|
QMSTableRowDirective.propDecorators = {
|
2891
|
-
|
2897
|
+
qmsCdkDetailRow: [{ type: Input }],
|
2892
2898
|
disable: [{ type: HostBinding, args: ['class.qms-table-row-disabled',] }],
|
2893
2899
|
select: [{ type: HostBinding, args: ['class.qms-table-row-selected',] }],
|
2894
2900
|
group: [{ type: HostBinding, args: ['class.qms-table-row-group',] }],
|
2895
2901
|
isDraft: [{ type: HostBinding, args: ['class.qms-table-row-draft',] }]
|
2896
2902
|
};
|
2897
2903
|
|
2904
|
+
class QMSDialogContainer {
|
2905
|
+
constructor(el) {
|
2906
|
+
this.el = el;
|
2907
|
+
}
|
2908
|
+
ngOnInit() {
|
2909
|
+
if (this.min) {
|
2910
|
+
this.el.nativeElement.style[`min-height`] = `${this.min}`;
|
2911
|
+
}
|
2912
|
+
if (this.max) {
|
2913
|
+
this.el.nativeElement.style[`max-height`] = `${this.max}`;
|
2914
|
+
}
|
2915
|
+
}
|
2916
|
+
}
|
2917
|
+
QMSDialogContainer.decorators = [
|
2918
|
+
{ type: Directive, args: [{
|
2919
|
+
selector: `[qms-dialog-container], qms-dialog-container, [qmsDialogContainer]`,
|
2920
|
+
host: { 'class': 'qms-dialog-container' },
|
2921
|
+
},] }
|
2922
|
+
];
|
2923
|
+
QMSDialogContainer.ctorParameters = () => [
|
2924
|
+
{ type: ElementRef }
|
2925
|
+
];
|
2926
|
+
QMSDialogContainer.propDecorators = {
|
2927
|
+
min: [{ type: Input }],
|
2928
|
+
max: [{ type: Input }]
|
2929
|
+
};
|
2930
|
+
class QMSDialogHeader {
|
2931
|
+
constructor(el) {
|
2932
|
+
this.el = el;
|
2933
|
+
}
|
2934
|
+
ngOnInit() {
|
2935
|
+
if (this.height) {
|
2936
|
+
this.el.nativeElement.style[`height`] = `${this.height}`;
|
2937
|
+
}
|
2938
|
+
}
|
2939
|
+
}
|
2940
|
+
QMSDialogHeader.decorators = [
|
2941
|
+
{ type: Directive, args: [{
|
2942
|
+
selector: '[qms-dialog-header], qms-dialog-header, [qmsDialogHeader]',
|
2943
|
+
exportAs: 'qmsDialogHeader',
|
2944
|
+
host: {
|
2945
|
+
'class': 'qms-dialog-header'
|
2946
|
+
},
|
2947
|
+
},] }
|
2948
|
+
];
|
2949
|
+
QMSDialogHeader.ctorParameters = () => [
|
2950
|
+
{ type: ElementRef }
|
2951
|
+
];
|
2952
|
+
QMSDialogHeader.propDecorators = {
|
2953
|
+
height: [{ type: Input }]
|
2954
|
+
};
|
2955
|
+
/**
|
2956
|
+
* Scrollable content container of a dialog.
|
2957
|
+
*/
|
2958
|
+
class QMSDialogContent {
|
2959
|
+
}
|
2960
|
+
QMSDialogContent.decorators = [
|
2961
|
+
{ type: Directive, args: [{
|
2962
|
+
selector: `[qms-dialog-content], qms-dialog-content, [qmsDialogContent]`,
|
2963
|
+
host: { 'class': 'qms-dialog-content' },
|
2964
|
+
},] }
|
2965
|
+
];
|
2966
|
+
/**
|
2967
|
+
* Container for the bottom action buttons in a dialog.
|
2968
|
+
* Stays fixed to the bottom when scrolling.
|
2969
|
+
*/
|
2970
|
+
class QMSDialogFooter {
|
2971
|
+
constructor(el) {
|
2972
|
+
this.el = el;
|
2973
|
+
this.align = 'start';
|
2974
|
+
}
|
2975
|
+
ngOnInit() {
|
2976
|
+
if (this.height) {
|
2977
|
+
this.el.nativeElement.style[`height`] = `${this.height}`;
|
2978
|
+
}
|
2979
|
+
}
|
2980
|
+
}
|
2981
|
+
QMSDialogFooter.decorators = [
|
2982
|
+
{ type: Directive, args: [{
|
2983
|
+
selector: `[qms-dialog-footer], qms-dialog-footer, [qmsDialogFooter]`,
|
2984
|
+
host: {
|
2985
|
+
'class': 'qms-dialog-footer',
|
2986
|
+
'[class.qms-dialog-footer-align-center]': 'align === "center"',
|
2987
|
+
'[class.qms-dialog-footer-align-end]': 'align === "end"',
|
2988
|
+
},
|
2989
|
+
},] }
|
2990
|
+
];
|
2991
|
+
QMSDialogFooter.ctorParameters = () => [
|
2992
|
+
{ type: ElementRef }
|
2993
|
+
];
|
2994
|
+
QMSDialogFooter.propDecorators = {
|
2995
|
+
align: [{ type: Input }],
|
2996
|
+
height: [{ type: Input }]
|
2997
|
+
};
|
2998
|
+
|
2898
2999
|
const ɵ0$2 = { appearance: 'fill' }, ɵ1 = { color: 'none' };
|
2899
3000
|
class QmsAngularModule {
|
2900
3001
|
}
|
@@ -2946,7 +3047,11 @@ QmsAngularModule.decorators = [
|
|
2946
3047
|
ScrollToSelectedDirective,
|
2947
3048
|
QMSTooltipImageDirective,
|
2948
3049
|
SelectDialog,
|
2949
|
-
QMSAppBar
|
3050
|
+
QMSAppBar,
|
3051
|
+
QMSDialogContainer,
|
3052
|
+
QMSDialogHeader,
|
3053
|
+
QMSDialogContent,
|
3054
|
+
QMSDialogFooter
|
2950
3055
|
],
|
2951
3056
|
imports: [
|
2952
3057
|
CommonModule,
|
@@ -3000,7 +3105,11 @@ QmsAngularModule.decorators = [
|
|
3000
3105
|
QMSTableChildrenDirective,
|
3001
3106
|
QMSRowDetailDirective,
|
3002
3107
|
CdkDetailRowDirective,
|
3003
|
-
QMSCollapseGroupDirective
|
3108
|
+
QMSCollapseGroupDirective,
|
3109
|
+
QMSDialogContainer,
|
3110
|
+
QMSDialogHeader,
|
3111
|
+
QMSDialogContent,
|
3112
|
+
QMSDialogFooter
|
3004
3113
|
],
|
3005
3114
|
providers: [
|
3006
3115
|
{ provide: MAT_FORM_FIELD_DEFAULT_OPTIONS, useValue: ɵ0$2 },
|
@@ -4606,7 +4715,7 @@ class TreeComponent {
|
|
4606
4715
|
for (let i = 0; i < this.treeControl.dataNodes.length; i++) {
|
4607
4716
|
if (this.treeControl.dataNodes[i].id === node.id &&
|
4608
4717
|
this.treeControl.dataNodes[i].parentId === node.parentId &&
|
4609
|
-
!this.treeControl.dataNodes[i].disabled
|
4718
|
+
!this.treeControl.dataNodes[i].disabled) {
|
4610
4719
|
if (!this.checklistSelection.isSelected(this.treeControl.dataNodes[i]))
|
4611
4720
|
this.checklistSelection.toggle(this.treeControl.dataNodes[i]);
|
4612
4721
|
}
|
@@ -5387,43 +5496,31 @@ class RelatedPopupComponent {
|
|
5387
5496
|
removeCheckedNodeList(item) {
|
5388
5497
|
this.selectedData = [];
|
5389
5498
|
this.selectedData2 = [];
|
5390
|
-
this.checkedNodeList = this.checkedNodeList.filter(x => (x.id.toLowerCase() !== item.id.toLowerCase() || x.parentId.toLowerCase() !== item.parentId.toLowerCase()));
|
5391
|
-
const tempArr = [];
|
5392
|
-
const tempArrDocument = [];
|
5499
|
+
this.checkedNodeList = this.checkedNodeList.filter(x => { var _a, _b; return (x.id.toLowerCase() !== item.id.toLowerCase() || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) !== ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); });
|
5393
5500
|
const newSelectProcessList = [];
|
5394
5501
|
const newSelectDocumentList = [];
|
5395
|
-
this.commonCheckedList.
|
5396
|
-
this.checkedNodeList.forEach(x => {
|
5397
|
-
if (element.id.toLowerCase() === x.id.toLowerCase() && element.parentId.toLowerCase() === x.parentId.toLowerCase()) {
|
5398
|
-
tempArr.push(element);
|
5399
|
-
}
|
5400
|
-
});
|
5401
|
-
});
|
5502
|
+
this.commonCheckedList = this.commonCheckedList.filter(x => { var _a, _b; return (x.id.toLowerCase() !== item.id.toLowerCase() || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) !== ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); });
|
5402
5503
|
this.singleProcessList.forEach(element => {
|
5403
5504
|
this.checkedNodeList.forEach(x => {
|
5404
|
-
|
5505
|
+
var _a, _b;
|
5506
|
+
if (element.id.toLowerCase() === x.id.toLowerCase() && ((_a = element.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = x.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) {
|
5405
5507
|
newSelectProcessList.push(element);
|
5406
5508
|
}
|
5407
5509
|
});
|
5408
5510
|
});
|
5409
5511
|
this.singleProcessList = newSelectProcessList;
|
5410
|
-
this.selectedData =
|
5411
|
-
this.documentCheckedList.
|
5412
|
-
this.checkedNodeList.forEach(x => {
|
5413
|
-
if (element.id.toLowerCase() === x.id.toLowerCase() && element.parentId.toLowerCase() === x.parentId.toLowerCase()) {
|
5414
|
-
tempArrDocument.push(element);
|
5415
|
-
}
|
5416
|
-
});
|
5417
|
-
});
|
5512
|
+
this.selectedData = this.commonCheckedList;
|
5513
|
+
this.documentCheckedList = this.documentCheckedList.filter(x => { var _a, _b; return (x.id.toLowerCase() !== item.id.toLowerCase() || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) !== ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); });
|
5418
5514
|
this.singleDocumentList.forEach(element => {
|
5419
5515
|
this.checkedNodeList.forEach(x => {
|
5420
|
-
|
5516
|
+
var _a, _b;
|
5517
|
+
if (element.id.toLowerCase() === x.id.toLowerCase() && ((_a = element.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = x.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) {
|
5421
5518
|
newSelectDocumentList.push(element);
|
5422
5519
|
}
|
5423
5520
|
});
|
5424
5521
|
});
|
5425
5522
|
this.singleDocumentList = newSelectDocumentList;
|
5426
|
-
this.selectedData2 =
|
5523
|
+
this.selectedData2 = this.commonCheckedList;
|
5427
5524
|
// when remove check node list, related options need refresh disabled options
|
5428
5525
|
this.refreshRelatedOptions();
|
5429
5526
|
}
|
@@ -5492,7 +5589,8 @@ class RelatedPopupComponent {
|
|
5492
5589
|
this.selectedNode = [];
|
5493
5590
|
if (this.treeConfig1.showCheckBox) {
|
5494
5591
|
index = this.checkedNodeList.findIndex(x => {
|
5495
|
-
|
5592
|
+
var _a, _b;
|
5593
|
+
return x.id.toLowerCase() === item.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase());
|
5496
5594
|
});
|
5497
5595
|
}
|
5498
5596
|
if (index < 0) {
|
@@ -5503,13 +5601,15 @@ class RelatedPopupComponent {
|
|
5503
5601
|
case this.dataType.document:
|
5504
5602
|
// document
|
5505
5603
|
const isExistInDisabled = this.disabledList2.findIndex(x => {
|
5506
|
-
|
5604
|
+
var _a, _b;
|
5605
|
+
return x.id && x.id.toLowerCase() === item.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase());
|
5507
5606
|
});
|
5508
5607
|
if (isExistInDisabled >= 0) {
|
5509
5608
|
return;
|
5510
5609
|
}
|
5511
5610
|
position = this.treeData2.findIndex(x => {
|
5512
|
-
|
5611
|
+
var _a;
|
5612
|
+
return x.childId === item.id && x.rootId.toLowerCase() === ((_a = item.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase());
|
5513
5613
|
});
|
5514
5614
|
if (position >= 0) {
|
5515
5615
|
node = this.treeData2[position];
|
@@ -5622,7 +5722,8 @@ class RelatedPopupComponent {
|
|
5622
5722
|
break;
|
5623
5723
|
case this.dataType.area:
|
5624
5724
|
position = this.treeData1.findIndex(x => {
|
5625
|
-
|
5725
|
+
var _a, _b;
|
5726
|
+
return x.rootId.toLowerCase() === item.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase());
|
5626
5727
|
});
|
5627
5728
|
typeId = item.itemType;
|
5628
5729
|
if (position >= 0) {
|
@@ -5660,13 +5761,15 @@ class RelatedPopupComponent {
|
|
5660
5761
|
break;
|
5661
5762
|
case this.dataType.process:
|
5662
5763
|
const isExistInProcessDisabled = this.disabledList.findIndex(x => {
|
5663
|
-
|
5764
|
+
var _a, _b;
|
5765
|
+
return x.id && x.id.toLowerCase() === item.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase());
|
5664
5766
|
});
|
5665
5767
|
if (isExistInProcessDisabled >= 0) {
|
5666
5768
|
return;
|
5667
5769
|
}
|
5668
5770
|
position = this.treeData1.findIndex(x => {
|
5669
|
-
|
5771
|
+
var _a;
|
5772
|
+
return x.childId && x.childId.toLowerCase() === item.id.toLowerCase() && x.rootId.toLowerCase() === ((_a = item.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase());
|
5670
5773
|
});
|
5671
5774
|
if (position >= 0) {
|
5672
5775
|
node = this.treeData1[position];
|
@@ -5759,7 +5862,8 @@ class RelatedPopupComponent {
|
|
5759
5862
|
case this.dataType.checklistCategory:
|
5760
5863
|
case this.dataType.riskFolder:
|
5761
5864
|
position = this.treeData1.findIndex(x => {
|
5762
|
-
|
5865
|
+
var _a, _b;
|
5866
|
+
return x.rootId.toLowerCase() === item.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === (item.parentId ? (_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase() : '');
|
5763
5867
|
});
|
5764
5868
|
this.selectNodeRecursive(this.treeData1[position], item.itemType);
|
5765
5869
|
break;
|
@@ -5767,7 +5871,8 @@ class RelatedPopupComponent {
|
|
5767
5871
|
case this.dataType.checklist:
|
5768
5872
|
case this.dataType.risk:
|
5769
5873
|
position = this.treeData1.findIndex(x => {
|
5770
|
-
|
5874
|
+
var _a;
|
5875
|
+
return x.childId && x.childId.toLowerCase() === item.id.toLowerCase() && x.rootId.toLowerCase() === ((_a = item.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase());
|
5771
5876
|
});
|
5772
5877
|
if (position >= 0) {
|
5773
5878
|
node = this.treeData1[position];
|
@@ -5798,7 +5903,7 @@ class RelatedPopupComponent {
|
|
5798
5903
|
parentId: item.parentId
|
5799
5904
|
};
|
5800
5905
|
let nodeChildren = this.treeData1.
|
5801
|
-
filter(x => x.rootId === item.rootId).
|
5906
|
+
filter(x => x.rootId === item.rootId && x.childId).
|
5802
5907
|
map(x => {
|
5803
5908
|
return {
|
5804
5909
|
id: x.childId,
|
@@ -5848,8 +5953,8 @@ class RelatedPopupComponent {
|
|
5848
5953
|
}
|
5849
5954
|
getCommonCheckedNode(list) {
|
5850
5955
|
this.checkedNodeList = [];
|
5851
|
-
this.commonCheckedList = [];
|
5852
5956
|
this.singleProcessList = [];
|
5957
|
+
this.commonCheckedList = [];
|
5853
5958
|
this.checkedNodeList = [...this.singleDocumentList];
|
5854
5959
|
if (list.length) {
|
5855
5960
|
list.forEach(item => {
|
@@ -5914,23 +6019,12 @@ class RelatedPopupComponent {
|
|
5914
6019
|
this.checkedNodeList = this.checkedNodeList.slice(this.maxSelectItemCount * -1);
|
5915
6020
|
}
|
5916
6021
|
}
|
5917
|
-
this.selectedData = this.
|
5918
|
-
return {
|
5919
|
-
id: item.id,
|
5920
|
-
name: item.itemName,
|
5921
|
-
parentId: item.parentId,
|
5922
|
-
levelType: item.levelType,
|
5923
|
-
level: 0,
|
5924
|
-
expandable: true,
|
5925
|
-
hasChild: true,
|
5926
|
-
disabled: false
|
5927
|
-
};
|
5928
|
-
});
|
6022
|
+
this.selectedData = this.commonCheckedList;
|
5929
6023
|
}
|
5930
6024
|
getDocumentCheckedNode(list) {
|
5931
6025
|
this.checkedNodeList = [];
|
5932
|
-
this.documentCheckedList = [];
|
5933
6026
|
this.singleDocumentList = [];
|
6027
|
+
this.documentCheckedList = [];
|
5934
6028
|
this.checkedNodeList = [...this.singleProcessList];
|
5935
6029
|
if (list.length) {
|
5936
6030
|
list.forEach(item => {
|
@@ -5995,6 +6089,7 @@ class RelatedPopupComponent {
|
|
5995
6089
|
this.checkedNodeList = this.checkedNodeList.slice(this.maxSelectItemCount * -1);
|
5996
6090
|
}
|
5997
6091
|
}
|
6092
|
+
this.selectedData2 = this.documentCheckedList;
|
5998
6093
|
}
|
5999
6094
|
onCloseClick() {
|
6000
6095
|
this.selectedFolder = null;
|
@@ -6198,7 +6293,7 @@ class RelatedPopupComponent {
|
|
6198
6293
|
return null;
|
6199
6294
|
}
|
6200
6295
|
toggleSelectItem(node) {
|
6201
|
-
const selectedNode = this.checkedNodeList.find(x => (x.id.toLowerCase() === node.id.toLowerCase() && x.parentId.toLowerCase() === node.parentId.toLowerCase()));
|
6296
|
+
const selectedNode = this.checkedNodeList.find(x => { var _a, _b; return (x.id.toLowerCase() === node.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); });
|
6202
6297
|
if (selectedNode) {
|
6203
6298
|
this.removeCheckedNodeList({
|
6204
6299
|
id: selectedNode.id,
|
@@ -6215,7 +6310,7 @@ class RelatedPopupComponent {
|
|
6215
6310
|
}
|
6216
6311
|
}
|
6217
6312
|
isNodeSelected(node) {
|
6218
|
-
return this.checkedNodeList.filter(x => (x.id.toLowerCase() === node.id.toLowerCase() && x.parentId.toLowerCase() === node.parentId.toLowerCase())).length > 0;
|
6313
|
+
return this.checkedNodeList.filter(x => { var _a, _b; return (x.id.toLowerCase() === node.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); }).length > 0;
|
6219
6314
|
}
|
6220
6315
|
getChildrenOfFolder(node, type) {
|
6221
6316
|
if (this.splitView) {
|
@@ -6256,26 +6351,32 @@ class RelatedPopupComponent {
|
|
6256
6351
|
return this.getModuleFilteredOptions(moduleId).length > 0;
|
6257
6352
|
}
|
6258
6353
|
selectNodeTreeEvent(node) {
|
6259
|
-
const index = this.
|
6260
|
-
|
6354
|
+
const index = this.commonCheckedList.findIndex(x => {
|
6355
|
+
var _a, _b;
|
6356
|
+
return x.id.toLowerCase() === node.id.toLowerCase()
|
6357
|
+
&& (!node.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable === node.expandable;
|
6358
|
+
});
|
6261
6359
|
if (index >= 0) {
|
6262
|
-
this.
|
6360
|
+
this.commonCheckedList = this.commonCheckedList.filter((_, ind) => ind !== index);
|
6263
6361
|
}
|
6264
6362
|
else {
|
6265
|
-
this.selectedData = [...this.selectedData, node];
|
6266
6363
|
this.commonCheckedList = [...this.commonCheckedList, node];
|
6267
6364
|
}
|
6365
|
+
this.selectedData = this.commonCheckedList;
|
6268
6366
|
}
|
6269
6367
|
selectNodeTree2Event(node) {
|
6270
|
-
const index = this.
|
6271
|
-
|
6368
|
+
const index = this.documentCheckedList.findIndex(x => {
|
6369
|
+
var _a, _b;
|
6370
|
+
return x.id.toLowerCase() === node.id.toLowerCase()
|
6371
|
+
&& (!node.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable === node.expandable;
|
6372
|
+
});
|
6272
6373
|
if (index >= 0) {
|
6273
|
-
this.
|
6374
|
+
this.documentCheckedList = this.documentCheckedList.filter((_, ind) => ind !== index);
|
6274
6375
|
}
|
6275
6376
|
else {
|
6276
|
-
this.selectedData2 = [...this.selectedData2, node];
|
6277
6377
|
this.documentCheckedList = [...this.documentCheckedList, node];
|
6278
6378
|
}
|
6379
|
+
this.selectedData2 = this.documentCheckedList;
|
6279
6380
|
}
|
6280
6381
|
getChildNodeSelectOne(listChildren) {
|
6281
6382
|
this.listChildrenSelectOne = [];
|
@@ -6283,7 +6384,7 @@ class RelatedPopupComponent {
|
|
6283
6384
|
}
|
6284
6385
|
hasSelected(related) {
|
6285
6386
|
const arrDisabledList = this.disabledList.concat(this.disabledList2);
|
6286
|
-
return arrDisabledList.some(node => node.id.toUpperCase() === related.id.toUpperCase() && (!related.parentId || related.parentId.toLowerCase() === node.parentId.toLowerCase()));
|
6387
|
+
return arrDisabledList.some(node => { var _a, _b; return node.id.toUpperCase() === related.id.toUpperCase() && (!related.parentId || ((_a = related.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); });
|
6287
6388
|
}
|
6288
6389
|
toRelatedOptions(relateds) {
|
6289
6390
|
const results = [];
|
@@ -18556,7 +18657,8 @@ class SelectOneDialog {
|
|
18556
18657
|
itemType: typeId,
|
18557
18658
|
itemNumberId: item.itemNumberId,
|
18558
18659
|
levelType: item.levelType,
|
18559
|
-
parentId: node.rootId
|
18660
|
+
parentId: node.rootId,
|
18661
|
+
parentName: node.rootName
|
18560
18662
|
});
|
18561
18663
|
}
|
18562
18664
|
if (this.treeConfig.canHaveDupId) {
|
@@ -19965,21 +20067,23 @@ class SelectProcessDocumentPopupComponent {
|
|
19965
20067
|
removeCheckedNodeList(item) {
|
19966
20068
|
this.selectedData = [];
|
19967
20069
|
this.selectedData2 = [];
|
19968
|
-
this.checkedNodeList = this.checkedNodeList.filter(x => (x.id.toLowerCase() !== item.id.toLowerCase() || x.parentId.toLowerCase() !== item.parentId.toLowerCase()));
|
20070
|
+
this.checkedNodeList = this.checkedNodeList.filter(x => { var _a, _b; return (x.id.toLowerCase() !== item.id.toLowerCase() || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) !== ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); });
|
19969
20071
|
const tempArr = [];
|
19970
20072
|
const tempArrDocument = [];
|
19971
20073
|
const newSelectProcessList = [];
|
19972
20074
|
const newSelectDocumentList = [];
|
19973
20075
|
this.commonCheckedList.forEach(element => {
|
19974
20076
|
this.checkedNodeList.forEach(x => {
|
19975
|
-
|
20077
|
+
var _a, _b;
|
20078
|
+
if (element.id.toLowerCase() === x.id.toLowerCase() && ((_a = element.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = x.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) {
|
19976
20079
|
tempArr.push(element);
|
19977
20080
|
}
|
19978
20081
|
});
|
19979
20082
|
});
|
19980
20083
|
this.singleProcessList.forEach(element => {
|
19981
20084
|
this.checkedNodeList.forEach(x => {
|
19982
|
-
|
20085
|
+
var _a, _b;
|
20086
|
+
if (element.id.toLowerCase() === x.id.toLowerCase() && ((_a = element.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = x.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) {
|
19983
20087
|
newSelectProcessList.push(element);
|
19984
20088
|
}
|
19985
20089
|
});
|
@@ -19990,14 +20094,16 @@ class SelectProcessDocumentPopupComponent {
|
|
19990
20094
|
}
|
19991
20095
|
this.documentCheckedList.forEach(element => {
|
19992
20096
|
this.checkedNodeList.forEach(x => {
|
19993
|
-
|
20097
|
+
var _a, _b;
|
20098
|
+
if (element.id.toLowerCase() === x.id.toLowerCase() && ((_a = element.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = x.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) {
|
19994
20099
|
tempArrDocument.push(element);
|
19995
20100
|
}
|
19996
20101
|
});
|
19997
20102
|
});
|
19998
20103
|
this.singleDocumentList.forEach(element => {
|
19999
20104
|
this.checkedNodeList.forEach(x => {
|
20000
|
-
|
20105
|
+
var _a, _b;
|
20106
|
+
if (element.id.toLowerCase() === x.id.toLowerCase() && ((_a = element.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = x.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) {
|
20001
20107
|
newSelectDocumentList.push(element);
|
20002
20108
|
}
|
20003
20109
|
});
|
@@ -20067,15 +20173,16 @@ class SelectProcessDocumentPopupComponent {
|
|
20067
20173
|
this.selectedNode = [];
|
20068
20174
|
if (this.treeConfig1.showCheckBox) {
|
20069
20175
|
index = this.checkedNodeList.findIndex(x => {
|
20070
|
-
|
20176
|
+
var _a, _b;
|
20177
|
+
return x.id.toLowerCase() === item.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase()) && x.itemType === item.itemType;
|
20071
20178
|
});
|
20072
20179
|
}
|
20073
20180
|
if (index < 0) {
|
20074
20181
|
if (item.itemType === this.dataType.document || item.itemType === this.dataType.folder) {
|
20075
20182
|
// document
|
20076
20183
|
const isExistInDisabled = this.disabledList2.findIndex(x => {
|
20077
|
-
var _a;
|
20078
|
-
return ((_a = x.id) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === item.id.toLowerCase() && (!item.parentId || x.parentId.toLowerCase() === item.parentId.toLowerCase() && x.itemType === item.itemType);
|
20184
|
+
var _a, _b, _c;
|
20185
|
+
return ((_a = x.id) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === item.id.toLowerCase() && (!item.parentId || ((_b = x.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase()) === ((_c = item.parentId) === null || _c === void 0 ? void 0 : _c.toLowerCase()) && x.itemType === item.itemType);
|
20079
20186
|
}) >= 0;
|
20080
20187
|
if (isExistInDisabled) {
|
20081
20188
|
return;
|
@@ -20084,8 +20191,8 @@ class SelectProcessDocumentPopupComponent {
|
|
20084
20191
|
}
|
20085
20192
|
else if (item.itemType === this.dataType.area || item.itemType === this.dataType.process) {
|
20086
20193
|
const isExistInDisabled = this.disabledList.findIndex(x => {
|
20087
|
-
var _a;
|
20088
|
-
return ((_a = x.id) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === item.id.toLowerCase() && (!item.parentId || x.parentId.toLowerCase() === item.parentId.toLowerCase() && x.itemType === item.itemType);
|
20194
|
+
var _a, _b, _c;
|
20195
|
+
return ((_a = x.id) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === item.id.toLowerCase() && (!item.parentId || ((_b = x.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase()) === ((_c = item.parentId) === null || _c === void 0 ? void 0 : _c.toLowerCase()) && x.itemType === item.itemType);
|
20089
20196
|
}) >= 0;
|
20090
20197
|
if (isExistInDisabled) {
|
20091
20198
|
return;
|
@@ -20107,14 +20214,20 @@ class SelectProcessDocumentPopupComponent {
|
|
20107
20214
|
newNodeDocs.displayId = +item.itemNumberId;
|
20108
20215
|
newNodeDocs.expandable = item.itemType == DataType$1.folder || item.itemType == DataType$1.area ? true : false;
|
20109
20216
|
if (item.itemType == DataType$1.folder || item.itemType == DataType$1.document) {
|
20110
|
-
if (this.treeData2.findIndex(x =>
|
20111
|
-
|
20217
|
+
if (this.treeData2.findIndex(x => {
|
20218
|
+
var _a, _b;
|
20219
|
+
return x.id.toLowerCase() === newNodeDocs.id.toLowerCase() &&
|
20220
|
+
(!newNodeDocs.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = newNodeDocs.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable === newNodeDocs.expandable;
|
20221
|
+
}) >= 0) {
|
20112
20222
|
this.treeData2 = [...this.treeData2, newNodeDocs];
|
20113
20223
|
}
|
20114
20224
|
}
|
20115
20225
|
else {
|
20116
|
-
if (this.treeData1.findIndex(x =>
|
20117
|
-
|
20226
|
+
if (this.treeData1.findIndex(x => {
|
20227
|
+
var _a, _b;
|
20228
|
+
return x.id.toLowerCase() === newNodeDocs.id.toLowerCase() &&
|
20229
|
+
(!newNodeDocs.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = newNodeDocs.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable === newNodeDocs.expandable;
|
20230
|
+
}) >= 0) {
|
20118
20231
|
this.treeData1 = [...this.treeData1, newNodeDocs];
|
20119
20232
|
}
|
20120
20233
|
}
|
@@ -20133,11 +20246,14 @@ class SelectProcessDocumentPopupComponent {
|
|
20133
20246
|
this.documentCheckedList = [];
|
20134
20247
|
this.commonCheckedList = [];
|
20135
20248
|
}
|
20136
|
-
const index = this.checkedNodeList.findIndex(x =>
|
20137
|
-
|
20249
|
+
const index = this.checkedNodeList.findIndex(x => {
|
20250
|
+
var _a, _b;
|
20251
|
+
return x.id.toLowerCase() === newNodeDocs.id.toLowerCase() &&
|
20252
|
+
(!newNodeDocs.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = newNodeDocs.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable === newNodeDocs.expandable;
|
20253
|
+
});
|
20138
20254
|
if (index < 0) {
|
20139
20255
|
if (item.itemType == DataType$1.folder || item.itemType == DataType$1.document) {
|
20140
|
-
if (this.documentCheckedList.findIndex(x => x.id.toLowerCase() === newNodeDocs.id.toLowerCase() && x.parentId.toLowerCase() === newNodeDocs.parentId.toLowerCase()) < 0) {
|
20256
|
+
if (this.documentCheckedList.findIndex(x => { var _a, _b; return x.id.toLowerCase() === newNodeDocs.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = newNodeDocs.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase()); }) < 0) {
|
20141
20257
|
this.documentCheckedList.push({
|
20142
20258
|
id: newNodeDocs.id,
|
20143
20259
|
name: newNodeDocs.name,
|
@@ -20152,7 +20268,7 @@ class SelectProcessDocumentPopupComponent {
|
|
20152
20268
|
}
|
20153
20269
|
}
|
20154
20270
|
else {
|
20155
|
-
if (this.commonCheckedList.findIndex(x => x.id.toLowerCase() === newNodeDocs.id.toLowerCase() && x.parentId.toLowerCase() === newNodeDocs.parentId.toLowerCase()) < 0) {
|
20271
|
+
if (this.commonCheckedList.findIndex(x => { var _a, _b; return x.id.toLowerCase() === newNodeDocs.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = newNodeDocs.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase()); }) < 0) {
|
20156
20272
|
this.commonCheckedList.push({
|
20157
20273
|
id: newNodeDocs.id,
|
20158
20274
|
name: newNodeDocs.name,
|
@@ -20204,16 +20320,18 @@ class SelectProcessDocumentPopupComponent {
|
|
20204
20320
|
};
|
20205
20321
|
if (x.itemType === DataType$1.area || x.itemType === DataType$1.process) {
|
20206
20322
|
this.treeData1.forEach(item => {
|
20323
|
+
var _a, _b;
|
20207
20324
|
if (item.id && x.id.toLowerCase() === item.id.toLowerCase() &&
|
20208
|
-
(!x.parentId || x.parentId.toLowerCase() === item.parentId.toLowerCase())) {
|
20325
|
+
(!x.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase()))) {
|
20209
20326
|
selectProcess.push(node);
|
20210
20327
|
}
|
20211
20328
|
});
|
20212
20329
|
}
|
20213
20330
|
else {
|
20214
20331
|
this.treeData2.forEach(item => {
|
20332
|
+
var _a, _b;
|
20215
20333
|
if (item.id && x.id.toLowerCase() === item.id.toLowerCase() &&
|
20216
|
-
(!x.parentId || x.parentId.toLowerCase() === item.parentId.toLowerCase())) {
|
20334
|
+
(!x.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase()))) {
|
20217
20335
|
selectDocument.push(node);
|
20218
20336
|
}
|
20219
20337
|
});
|
@@ -20225,14 +20343,20 @@ class SelectProcessDocumentPopupComponent {
|
|
20225
20343
|
this.selectedData2 = [...this.selectedData2, ...selectDocument];
|
20226
20344
|
}
|
20227
20345
|
if (item.itemType === DataType$1.folder || item.itemType === DataType$1.document) {
|
20228
|
-
if (this.selectedData2.findIndex(x =>
|
20229
|
-
|
20346
|
+
if (this.selectedData2.findIndex(x => {
|
20347
|
+
var _a, _b;
|
20348
|
+
return x.id.toLowerCase() === item.id.toLowerCase() &&
|
20349
|
+
(!item.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable === item.expandable;
|
20350
|
+
}) < 0) {
|
20230
20351
|
this.selectedData2 = [...this.selectedData2, item];
|
20231
20352
|
}
|
20232
20353
|
}
|
20233
20354
|
else {
|
20234
|
-
if (this.selectedData.findIndex(x =>
|
20235
|
-
|
20355
|
+
if (this.selectedData.findIndex(x => {
|
20356
|
+
var _a, _b;
|
20357
|
+
return x.id.toLowerCase() === item.id.toLowerCase() &&
|
20358
|
+
(!item.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = item.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable === item.expandable;
|
20359
|
+
}) < 0) {
|
20236
20360
|
this.selectedData = [...this.selectedData, item];
|
20237
20361
|
}
|
20238
20362
|
}
|
@@ -20370,7 +20494,7 @@ class SelectProcessDocumentPopupComponent {
|
|
20370
20494
|
return null;
|
20371
20495
|
}
|
20372
20496
|
toggleSelectItem(node) {
|
20373
|
-
const selectedNode = this.checkedNodeList.find(x => (x.id.toLowerCase() === node.id.toLowerCase() && x.parentId.toLowerCase() === node.parentId.toLowerCase()));
|
20497
|
+
const selectedNode = this.checkedNodeList.find(x => { var _a, _b; return (x.id.toLowerCase() === node.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); });
|
20374
20498
|
if (selectedNode) {
|
20375
20499
|
this.removeCheckedNodeList({
|
20376
20500
|
id: selectedNode.id,
|
@@ -20390,7 +20514,7 @@ class SelectProcessDocumentPopupComponent {
|
|
20390
20514
|
}
|
20391
20515
|
}
|
20392
20516
|
isNodeSelected(node) {
|
20393
|
-
return this.checkedNodeList.filter(x => (x.id.toLowerCase() === node.id.toLowerCase() && x.parentId.toLowerCase() === node.parentId.toLowerCase())).length > 0;
|
20517
|
+
return this.checkedNodeList.filter(x => { var _a, _b; return (x.id.toLowerCase() === node.id.toLowerCase() && ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())); }).length > 0;
|
20394
20518
|
}
|
20395
20519
|
getChildrenOfFolder(node, type) {
|
20396
20520
|
let item = new QMSProcessDocumentItem();
|
@@ -20413,8 +20537,11 @@ class SelectProcessDocumentPopupComponent {
|
|
20413
20537
|
if (!node.itemType) {
|
20414
20538
|
return;
|
20415
20539
|
}
|
20416
|
-
const index = this.checkedNodeList.findIndex(x =>
|
20417
|
-
|
20540
|
+
const index = this.checkedNodeList.findIndex(x => {
|
20541
|
+
var _a, _b;
|
20542
|
+
return x.id.toLowerCase() === node.id.toLowerCase()
|
20543
|
+
&& (!node.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.itemType === node.itemType;
|
20544
|
+
});
|
20418
20545
|
if (index >= 0) {
|
20419
20546
|
this.removeCheckedNodeList({
|
20420
20547
|
id: node.id,
|
@@ -20432,12 +20559,18 @@ class SelectProcessDocumentPopupComponent {
|
|
20432
20559
|
let status = 0;
|
20433
20560
|
let statusName = '';
|
20434
20561
|
if (node.itemType == DataType$1.folder || node.itemType == DataType$1.document) {
|
20435
|
-
item = this.treeData2.find(x =>
|
20436
|
-
|
20562
|
+
item = this.treeData2.find(x => {
|
20563
|
+
var _a, _b;
|
20564
|
+
return x.id.toLowerCase() === node.id.toLowerCase()
|
20565
|
+
&& (!node.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable == node.expandable;
|
20566
|
+
});
|
20437
20567
|
}
|
20438
20568
|
else {
|
20439
|
-
item = this.treeData1.find(x =>
|
20440
|
-
|
20569
|
+
item = this.treeData1.find(x => {
|
20570
|
+
var _a, _b;
|
20571
|
+
return x.id.toLowerCase() === node.id.toLowerCase()
|
20572
|
+
&& (!node.parentId || ((_a = x.parentId) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === ((_b = node.parentId) === null || _b === void 0 ? void 0 : _b.toLowerCase())) && x.expandable == node.expandable;
|
20573
|
+
});
|
20441
20574
|
}
|
20442
20575
|
if (item) {
|
20443
20576
|
statusName = item.statusName;
|
@@ -20505,7 +20638,7 @@ class SelectProcessDocumentPopupComponent {
|
|
20505
20638
|
SelectProcessDocumentPopupComponent.decorators = [
|
20506
20639
|
{ type: Component, args: [{
|
20507
20640
|
selector: 'qms-select-process-document',
|
20508
|
-
template: "<div id=\"qmslib_related_popup\" class=\"qmslib__related__popup__container\">\r\n <div id=\"qmslib_related_popup_header\">\r\n <span mat-icon-button class=\"button__close\" (click)=\"onCloseClick()\">\r\n <mat-icon mat-icon>close</mat-icon>\r\n </span>\r\n <div id=\"qmslib_related_popup_header_001\" mat-dialog-content>\r\n <span>{{ moduleName | uppercase }}</span>\r\n </div>\r\n </div>\r\n\r\n <div id=\"qmslib_related_popup_search\" class=\"input__field\">\r\n <input\r\n type=\"text\"\r\n placeholder=\"{{ LANG.SEARCH }}\"\r\n matInput\r\n [formControl]=\"myControl\"\r\n [matAutocomplete]=\"auto\"\r\n />\r\n <mat-icon>search</mat-icon>\r\n </div>\r\n\r\n <div class=\"line__divider\"></div>\r\n\r\n <mat-autocomplete\r\n #auto=\"matAutocomplete\"\r\n class=\"mat-autocomplete_related-viewport\"\r\n (optionSelected)=\"selectRelated($event.option.value)\"\r\n [displayWith]=\"displayWhenSelectRelatedOption\"\r\n >\r\n <cdk-virtual-scroll-viewport\r\n qms-scrollbar\r\n itemSize=\"10\"\r\n [class.related-viewport]=\"isInputValue\"\r\n *ngIf=\"filteredOptions.length\"\r\n >\r\n <ng-container *ngFor=\"let type of searchOrder\">\r\n <div\r\n class=\"search__module-result\"\r\n *ngIf=\"canShowSearchOption(type.value)\"\r\n >\r\n <span class=\"search__module-title\">{{ getTitle(type.value) }}</span>\r\n <mat-option\r\n class=\"search__option\"\r\n *ngFor=\"let option of getModuleFilteredOptions(type.value)\"\r\n [value]=\"option\"\r\n [disabled]=\"option.disabled\"\r\n >\r\n <qms-list-item type=\"image-square\">\r\n <mat-icon\r\n leading-icon\r\n type=\"image-square\"\r\n [svgIcon]=\"getNodeIcon(option)\"\r\n ></mat-icon>\r\n <div qms-list-header>\r\n <div qms-line type=\"subtitle\" class=\"search__option-name\">\r\n {{ option.itemName }}\r\n </div>\r\n <div\r\n class=\"caption\"\r\n *ngIf=\"option.breadcumbs && option.breadcumbs.length\"\r\n >\r\n <qms-breadcrumb\r\n class=\"breadcrumb-containe\"\r\n type=\"table\"\r\n numDisplayItem=\"1\"\r\n [nodes]=\"option.breadcumbs\"\r\n >\r\n </qms-breadcrumb>\r\n </div>\r\n </div>\r\n <div qms-line color=\"default-subtitle\" *ngIf=\"getItemId(option)\">\r\n <span class=\"material-icons-outlined search__description-icon\">\r\n local_offer\r\n </span>\r\n {{ getItemId(option) }}\r\n </div>\r\n </qms-list-item>\r\n </mat-option>\r\n </div>\r\n </ng-container>\r\n </cdk-virtual-scroll-viewport>\r\n </mat-autocomplete>\r\n\r\n <div class=\"row\">\r\n <div\r\n class=\"qms-scrollbar qmslib_related_popup_content\"\r\n [ngClass]=\"{\r\n panel__content_item: checkedNodeList.length,\r\n panel__content: !checkedNodeList.length,\r\n 'col-6': splitView,\r\n 'col-12': !splitView\r\n }\"\r\n >\r\n <mat-expansion-panel\r\n hideToggle\r\n id=\"qmslib_related_popup_common_001\"\r\n [expanded]=\"isCommonExpanded\"\r\n (opened)=\"isCommonExpanded = true\"\r\n (closed)=\"isCommonExpanded = false\"\r\n class=\"panel-tree\"\r\n >\r\n <mat-expansion-panel-header class=\"padding-5\">\r\n <mat-panel-title *ngIf=\"moduleId === module.documentProcess\">\r\n {{ LANG.PROCESSES | uppercase }}\r\n </mat-panel-title>\r\n <button qms-btn-icon class=\"related_popup_toggle-btn\">\r\n <mat-icon>\r\n {{\r\n isCommonExpanded ? \"keyboard_arrow_up\" : \"keyboard_arrow_down\"\r\n }}\r\n </mat-icon>\r\n </button>\r\n </mat-expansion-panel-header>\r\n <div id=\"qmslib_related_popup_common_002\">\r\n <qms-tree-new\r\n [treeData]=\"treeData1\"\r\n [treeConfig]=\"treeConfig1\"\r\n [selectedData]=\"selectedData\"\r\n [selectedRiskData]=\"selectedRiskData\"\r\n [disabledList]=\"disabledList\"\r\n (nodeExpandEvent)=\"getChildrenOfFolder($event, dataType.area)\"\r\n (selectNodeEvent)=\"selectNodeTreeEvent($event)\"\r\n (getChildNodeSelectOne)=\"getChildNodeSelectOne($event)\"\r\n (selectFolderEvent)=\"getItemOfFolder($event, dataType.area)\"\r\n [expandOnTitleClick]=\"!splitView\"\r\n [parentNodeOnClick]=\"parentNodeSelected\"\r\n (treeControlNodes)=\"selectTreeControlNodeProcess($event)\"\r\n ></qms-tree-new>\r\n </div>\r\n </mat-expansion-panel>\r\n\r\n <div\r\n *ngIf=\"moduleId === module.documentProcess\"\r\n class=\"line__divider\"\r\n ></div>\r\n\r\n <mat-expansion-panel\r\n hideToggle\r\n *ngIf=\"moduleId === module.documentProcess\"\r\n id=\"qmslib_related_popup_document_001\"\r\n [expanded]=\"isDocumentExpanded\"\r\n (opened)=\"isDocumentExpanded = true\"\r\n (closed)=\"isDocumentExpanded = false\"\r\n class=\"panel-tree\"\r\n >\r\n <div class=\"splitview-header\" *ngIf=\"selectedFolder\">\r\n {{ splitViewTitle }}\r\n </div>\r\n <div class=\"expand-node\" *ngFor=\"let node of itemInSplitview\">\r\n <mat-checkbox\r\n qms-group-options\r\n [disabled]=\"node.disabled\"\r\n color=\"default\"\r\n [checked]=\"isNodeSelected(node)\"\r\n (change)=\"toggleSelectItem(node)\"\r\n *ngIf=\"!hideSplitviewCheckbox\"\r\n >\r\n </mat-checkbox>\r\n <button\r\n class=\"button-boder\"\r\n mat-icon-button\r\n [disableRipple]=\"true\"\r\n (click)=\"toggleSelectItem(node)\"\r\n *ngIf=\"node.itemName\"\r\n >\r\n <mat-icon\r\n class=\"mat-icon-rtl-mirror material-icons-outlined\"\r\n [svgIcon]=\"getNodeIcon(node)\"\r\n >\r\n </mat-icon>\r\n </button>\r\n <span\r\n class=\"text-node-item\"\r\n style=\"cursor: pointer\"\r\n (click)=\"toggleSelectItem(node)\"\r\n [class.bgSelected]=\"\r\n isSelectOne &&\r\n idCheckIconSplitView == idToCheckSelectOne(node.id, node.parentId)\r\n \"\r\n >\r\n <span\r\n class=\"text-node\"\r\n [class.select-one-checked]=\"\r\n isSelectOne &&\r\n idCheckIconSplitView ==\r\n idToCheckSelectOne(node.id, node.parentId)\r\n \"\r\n >{{ node.itemName }}</span\r\n >\r\n <mat-icon\r\n class=\"select-one-checked\"\r\n *ngIf=\"\r\n isSelectOne &&\r\n idCheckIconSplitView ==\r\n idToCheckSelectOne(node.id, node.parentId)\r\n \"\r\n >\r\n done\r\n </mat-icon>\r\n </span>\r\n </div>\r\n </mat-expansion-panel>\r\n </div>\r\n <div\r\n *ngIf=\"splitView\"\r\n class=\"qms-scrollbar qmslib-related-popup-splitview qmslib_related_popup_content col-6\"\r\n [ngClass]=\"{\r\n panel__content_item: checkedNodeList.length,\r\n panel__content: !checkedNodeList.length\r\n }\"\r\n >\r\n <div class=\"splitview-header\" *ngIf=\"selectedFolder\">\r\n {{ splitViewTitle }}\r\n </div>\r\n <div class=\"expand-node\" *ngFor=\"let node of itemInSplitview\">\r\n <mat-checkbox\r\n qms-group-options\r\n [disabled]=\"node.disabled\"\r\n color=\"default\"\r\n [checked]=\"isNodeSelected(node)\"\r\n (change)=\"toggleSelectItem(node)\"\r\n ></mat-checkbox>\r\n <mat-icon\r\n class=\"mat-icon-rtl-mirror material-icons-outlined\"\r\n [svgIcon]=\"getNodeIcon(node)\"\r\n ></mat-icon>\r\n <span class=\"text-node\">{{ node.itemName }}</span>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div *ngIf=\"checkedNodeList.length\" class=\"line__divider\"></div>\r\n\r\n <div class=\"row\">\r\n <div class=\"col-12 pr-0 pe-0\">\r\n <div *ngIf=\"checkedNodeList.length\" class=\"panel__item qms-scrollbar\">\r\n <div class=\"related__item__inline\" *ngFor=\"let item of checkedNodeList\">\r\n <button\r\n *ngIf=\"item.itemName\"\r\n mat-button\r\n class=\"related__item__content\"\r\n qms-tool-tip=\"{{\r\n isEllipsisActive(itemName) ? getItemChipName(item) : ''\r\n }}\"\r\n mode=\"dark\"\r\n >\r\n <span class=\"related__item__content_name\" #itemName>{{\r\n getItemChipName(item)\r\n }}</span>\r\n <mat-icon\r\n *ngIf=\"!(treeConfig1?.selectOne || treeConfig2?.selectOne)\"\r\n (click)=\"removeCheckedNodeList(item)\"\r\n >cancel</mat-icon\r\n >\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"line__divider\"></div>\r\n\r\n <div class=\"confirm__button__groups\">\r\n <button\r\n *ngIf=\"!checkedNodeList.length\"\r\n qms-btn\r\n style=\"margin-top: 7px\"\r\n (click)=\"onAddClick()\"\r\n >\r\n {{ LANG.ADD }}\r\n </button>\r\n <button\r\n *ngIf=\"checkedNodeList.length\"\r\n qms-btn\r\n style=\"margin-top: 0px\"\r\n (click)=\"onAddClick()\"\r\n >\r\n {{ LANG.ADD }} ({{ checkedNodeList.length }})\r\n </button>\r\n <button\r\n qms-btn-text\r\n [ngStyle]=\"{ 'margin-top': checkedNodeList.length ? '0px' : '7px' }\"\r\n (click)=\"onCloseClick()\"\r\n >\r\n {{ LANG.CANCEL }}\r\n </button>\r\n </div>\r\n</div>\r\n",
|
20641
|
+
template: "<div id=\"qmslib_related_popup\" class=\"qmslib__related__popup__container\">\r\n <div id=\"qmslib_related_popup_header\">\r\n <span mat-icon-button class=\"button__close\" (click)=\"onCloseClick()\">\r\n <mat-icon mat-icon>close</mat-icon>\r\n </span>\r\n <div id=\"qmslib_related_popup_header_001\" mat-dialog-content>\r\n <span>{{ moduleName | uppercase }}</span>\r\n </div>\r\n </div>\r\n\r\n <div id=\"qmslib_related_popup_search\" class=\"input__field\">\r\n <input\r\n type=\"text\"\r\n placeholder=\"{{ LANG.SEARCH }}\"\r\n matInput\r\n [formControl]=\"myControl\"\r\n [matAutocomplete]=\"auto\"\r\n />\r\n <mat-icon>search</mat-icon>\r\n </div>\r\n\r\n <div class=\"line__divider\"></div>\r\n\r\n <mat-autocomplete\r\n #auto=\"matAutocomplete\"\r\n class=\"mat-autocomplete_related-viewport\"\r\n (optionSelected)=\"selectRelated($event.option.value)\"\r\n [displayWith]=\"displayWhenSelectRelatedOption\"\r\n >\r\n <cdk-virtual-scroll-viewport\r\n qms-scrollbar\r\n itemSize=\"10\"\r\n [class.related-viewport]=\"isInputValue\"\r\n *ngIf=\"filteredOptions.length\"\r\n >\r\n <ng-container *ngFor=\"let type of searchOrder\">\r\n <div\r\n class=\"search__module-result\"\r\n *ngIf=\"canShowSearchOption(type.value)\"\r\n >\r\n <span class=\"search__module-title\">{{ getTitle(type.value) }}</span>\r\n <mat-option\r\n class=\"search__option\"\r\n *ngFor=\"let option of getModuleFilteredOptions(type.value)\"\r\n [value]=\"option\"\r\n [disabled]=\"option.disabled\"\r\n >\r\n <qms-list-item type=\"image-square\">\r\n <mat-icon\r\n leading-icon\r\n type=\"image-square\"\r\n [svgIcon]=\"getNodeIcon(option)\"\r\n ></mat-icon>\r\n <div qms-list-header>\r\n <div qms-line type=\"subtitle\" class=\"search__option-name\">\r\n {{ option.itemName }}\r\n </div>\r\n <div\r\n class=\"caption\"\r\n *ngIf=\"option.breadcumbs && option.breadcumbs.length\"\r\n >\r\n <qms-breadcrumb\r\n class=\"breadcrumb-containe\"\r\n type=\"table\"\r\n numDisplayItem=\"1\"\r\n [nodes]=\"option.breadcumbs\"\r\n >\r\n </qms-breadcrumb>\r\n </div>\r\n </div>\r\n <div qms-line color=\"default-subtitle\" *ngIf=\"getItemId(option)\">\r\n <span class=\"material-icons-outlined search__description-icon\">\r\n local_offer\r\n </span>\r\n {{ getItemId(option) }}\r\n </div>\r\n </qms-list-item>\r\n </mat-option>\r\n </div>\r\n </ng-container>\r\n </cdk-virtual-scroll-viewport>\r\n </mat-autocomplete>\r\n\r\n <div class=\"row\">\r\n <div\r\n class=\"qms-scrollbar qmslib_related_popup_content\"\r\n [ngClass]=\"{\r\n panel__content_item: checkedNodeList.length,\r\n panel__content: !checkedNodeList.length,\r\n 'col-6': splitView,\r\n 'col-12': !splitView\r\n }\"\r\n >\r\n <mat-expansion-panel\r\n hideToggle\r\n id=\"qmslib_related_popup_common_001\"\r\n [expanded]=\"isCommonExpanded\"\r\n (opened)=\"isCommonExpanded = true\"\r\n (closed)=\"isCommonExpanded = false\"\r\n class=\"panel-tree\"\r\n >\r\n <mat-expansion-panel-header class=\"padding-5\">\r\n <mat-panel-title *ngIf=\"moduleId === module.documentProcess\">\r\n {{ LANG.PROCESSES | uppercase }}\r\n </mat-panel-title>\r\n <button qms-btn-icon class=\"related_popup_toggle-btn\">\r\n <mat-icon>\r\n {{\r\n isCommonExpanded ? \"keyboard_arrow_up\" : \"keyboard_arrow_down\"\r\n }}\r\n </mat-icon>\r\n </button>\r\n </mat-expansion-panel-header>\r\n <div id=\"qmslib_related_popup_common_002\">\r\n <qms-tree-new\r\n [treeData]=\"treeData1\"\r\n [treeConfig]=\"treeConfig1\"\r\n [selectedData]=\"selectedData\"\r\n [selectedRiskData]=\"selectedRiskData\"\r\n [disabledList]=\"disabledList\"\r\n (nodeExpandEvent)=\"getChildrenOfFolder($event, dataType.area)\"\r\n (selectNodeEvent)=\"selectNodeTreeEvent($event)\"\r\n (getChildNodeSelectOne)=\"getChildNodeSelectOne($event)\"\r\n (selectFolderEvent)=\"getItemOfFolder($event, dataType.area)\"\r\n [expandOnTitleClick]=\"!splitView\"\r\n [parentNodeOnClick]=\"parentNodeSelected\"\r\n (treeControlNodes)=\"selectTreeControlNodeProcess($event)\"\r\n ></qms-tree-new>\r\n </div>\r\n </mat-expansion-panel>\r\n\r\n <div\r\n *ngIf=\"moduleId === module.documentProcess\"\r\n class=\"line__divider\"\r\n ></div>\r\n\r\n <mat-expansion-panel\r\n hideToggle\r\n *ngIf=\"moduleId === module.documentProcess\"\r\n id=\"qmslib_related_popup_document_001\"\r\n [expanded]=\"isDocumentExpanded\"\r\n (opened)=\"isDocumentExpanded = true\"\r\n (closed)=\"isDocumentExpanded = false\"\r\n class=\"panel-tree\"\r\n >\r\n <mat-expansion-panel-header class=\"padding-5\">\r\n <mat-panel-title> {{ LANG.DOCUMENTS | uppercase }} </mat-panel-title>\r\n <button qms-btn-icon class=\"related_popup_toggle-btn\">\r\n <mat-icon>\r\n {{\r\n isDocumentExpanded ? \"keyboard_arrow_up\" : \"keyboard_arrow_down\"\r\n }}\r\n </mat-icon>\r\n </button>\r\n </mat-expansion-panel-header>\r\n <div id=\"qmslib_related_popup_document_002\">\r\n <qms-tree-new\r\n [treeData]=\"treeData2\"\r\n [treeConfig]=\"treeConfig2\"\r\n [selectedData]=\"selectedData2\"\r\n [disabledList]=\"disabledList2\"\r\n (nodeExpandEvent)=\"getChildrenOfFolder($event, dataType.folder)\"\r\n (selectNodeEvent)=\"selectNodeTreeEvent($event)\"\r\n (getChildNodeSelectOne)=\"getChildNodeSelectOne($event)\"\r\n (selectFolderEvent)=\"getItemOfFolder($event, dataType.folder)\"\r\n [expandOnTitleClick]=\"!splitView\"\r\n [parentNodeOnClick]=\"parentNodeSelected\"\r\n (treeControlNodes)=\"selectTreeControlNodeDocument($event)\"\r\n ></qms-tree-new>\r\n </div>\r\n </mat-expansion-panel>\r\n </div>\r\n <div\r\n *ngIf=\"splitView\"\r\n class=\"qms-scrollbar qmslib-related-popup-splitview qmslib_related_popup_content col-6\"\r\n [ngClass]=\"{\r\n panel__content_item: checkedNodeList.length,\r\n panel__content: !checkedNodeList.length\r\n }\"\r\n >\r\n <div class=\"splitview-header\" *ngIf=\"selectedFolder\">\r\n {{ splitViewTitle }}\r\n </div>\r\n <div class=\"expand-node\" *ngFor=\"let node of itemInSplitview\">\r\n <mat-checkbox\r\n qms-group-options\r\n [disabled]=\"node.disabled\"\r\n color=\"default\"\r\n [checked]=\"isNodeSelected(node)\"\r\n (change)=\"toggleSelectItem(node)\"\r\n *ngIf=\"!hideSplitviewCheckbox\"\r\n >\r\n </mat-checkbox>\r\n <button\r\n class=\"button-boder\"\r\n mat-icon-button\r\n [disableRipple]=\"true\"\r\n (click)=\"toggleSelectItem(node)\"\r\n *ngIf=\"node.itemName\"\r\n >\r\n <mat-icon\r\n class=\"mat-icon-rtl-mirror material-icons-outlined\"\r\n [svgIcon]=\"getNodeIcon(node)\"\r\n >\r\n </mat-icon>\r\n </button>\r\n <span\r\n class=\"text-node-item\"\r\n style=\"cursor: pointer\"\r\n (click)=\"toggleSelectItem(node)\"\r\n [class.bgSelected]=\"\r\n isSelectOne &&\r\n idCheckIconSplitView == idToCheckSelectOne(node.id, node.parentId)\r\n \"\r\n >\r\n <span\r\n class=\"text-node\"\r\n [class.select-one-checked]=\"\r\n isSelectOne &&\r\n idCheckIconSplitView == idToCheckSelectOne(node.id, node.parentId)\r\n \"\r\n >{{ node.itemName }}</span\r\n >\r\n <mat-icon\r\n class=\"select-one-checked\"\r\n *ngIf=\"\r\n isSelectOne &&\r\n idCheckIconSplitView == idToCheckSelectOne(node.id, node.parentId)\r\n \"\r\n >\r\n done\r\n </mat-icon>\r\n </span>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div *ngIf=\"checkedNodeList.length\" class=\"line__divider\"></div>\r\n\r\n <div class=\"row\">\r\n <div class=\"col-12\">\r\n <div *ngIf=\"checkedNodeList.length\" class=\"panel__item qms-scrollbar\">\r\n <div class=\"related__item__inline\" *ngFor=\"let item of checkedNodeList\">\r\n <button\r\n *ngIf=\"item.itemName\"\r\n mat-button\r\n class=\"related__item__content\"\r\n qms-tool-tip=\"{{\r\n isEllipsisActive(itemName) ? getItemChipName(item) : ''\r\n }}\"\r\n mode=\"dark\"\r\n >\r\n <span class=\"related__item__content_name\" #itemName>{{\r\n getItemChipName(item)\r\n }}</span>\r\n <mat-icon\r\n *ngIf=\"!(treeConfig1?.selectOne || treeConfig2?.selectOne)\"\r\n (click)=\"removeCheckedNodeList(item)\"\r\n >cancel</mat-icon\r\n >\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <div class=\"line__divider\"></div>\r\n\r\n <div class=\"confirm__button__groups\">\r\n <button\r\n *ngIf=\"!checkedNodeList.length\"\r\n qms-btn\r\n style=\"margin-top: 7px\"\r\n (click)=\"onAddClick()\"\r\n >\r\n {{ LANG.ADD }}\r\n </button>\r\n <button\r\n *ngIf=\"checkedNodeList.length\"\r\n qms-btn\r\n style=\"margin-top: 0px\"\r\n (click)=\"onAddClick()\"\r\n >\r\n {{ LANG.ADD }} ({{ checkedNodeList.length }})\r\n </button>\r\n <button\r\n qms-btn-text\r\n [ngStyle]=\"{ 'margin-top': checkedNodeList.length ? '0px' : '7px' }\"\r\n (click)=\"onCloseClick()\"\r\n >\r\n {{ LANG.CANCEL }}\r\n </button>\r\n </div>\r\n</div>\r\n",
|
20509
20642
|
encapsulation: ViewEncapsulation.None,
|
20510
20643
|
styles: [".qms-scrollbar::-webkit-scrollbar{width:12px}.qms-scrollbar::-webkit-scrollbar-track{background:rgba(0,0,0,.12);background-clip:content-box}.qms-scrollbar::-webkit-scrollbar-thumb{background:rgba(0,0,0,.38);border-radius:20px;width:4px;border:4px solid transparent;background-clip:content-box}.qms-scrollbar::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.5);background-clip:content-box;border:4px solid transparent}.qms-scrollbar.none-scroll-bg::-webkit-scrollbar-track{background:transparent;background-clip:content-box}.qms__popup .button__close{float:right;top:-24px;right:-24px;cursor:pointer}.qms__danger button{border:none;color:#fff;padding:0;text-align:center;text-decoration:none;display:inline-block;cursor:pointer;height:20px;width:20px;font-family:Open Sans;font-size:12px;font-weight:600;font-style:normal;line-height:16px}.qms__danger .red{background-color:#9e360f;margin-left:10px}.qms__danger .yellow{background-color:#e4cf53;margin-left:10px;color:#323232}.qms__danger .green{background-color:#00804c;margin-left:10px}.confirm__button__groups{margin-top:11px}.confirm__button__groups button{min-height:36px;width:auto;font-family:Open Sans;font-weight:500;font-size:14px;letter-spacing:1px;line-height:16px;padding-left:15px;padding-right:15px;margin-right:5px;float:right}.confirm__button__groups .confirm{background:#f8f9f9}.confirm__button__groups .confirm:hover{background:#001983;color:#fff}.confirm__button__groups .confirm:disabled{cursor:not-allowed}.confirm__button__groups .cancel{background:#f8f9f9}.confirm__button__groups .cancel:hover{background:#001983;color:#fff}.qmslib__related__popup__container .input__field{display:flex;align-items:center}.qmslib__related__popup__container .input__field input{width:100%;padding:10px;outline:none;border:none;background:#eee}.qmslib__related__popup__container .input__field .mat-icon{margin-left:-30px;cursor:pointer;vertical-align:middle}.qmslib__related__popup__container .line__divider{border-bottom:1px solid #ccc;height:1px;margin-top:10px;min-width:300px;max-width:100%}.qmslib__related__popup__container .button__close{float:right;top:-24px;right:-24px;cursor:pointer}.qmslib__related__popup__container .panel__content{height:450px;overflow:auto;margin-top:12px}.qmslib__related__popup__container .panel__content_item{height:350px;overflow:auto;margin-top:12px}.qmslib__related__popup__container .panel-tree .mat-expansion-panel-body{padding:0 12px 12px}.qmslib__related__popup__container .mat-expansion-panel-header{height:30px;font-size:12px;letter-spacing:1px;font-family:Raleway;font-weight:600;padding:0}.qmslib__related__popup__container .mat-expansion-panel-header .mat-expansion-panel-header-title{align-items:center;margin-left:12px}.qmslib__related__popup__container .mat-expansion-panel-header .related_popup_toggle-btn{width:1.5rem;height:1.5rem;line-height:1.5rem}.qmslib__related__popup__container .mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:none}.qmslib__related__popup__container .panel__item{height:100px;margin-top:12px;overflow-x:hidden;overflow-y:auto;padding-right:5px;width:100%;max-width:100%;display:flex;flex-wrap:wrap;align-content:flex-start}.qmslib__related__popup__container .panel__item .related__item__inline{max-width:100%}.qmslib__related__popup__container .panel__item .related__item__content{height:32px;line-height:32px;background-color:#e5e5e5;max-width:100%;margin-bottom:5px;margin-left:2.5px;margin-right:2.5px}.qmslib__related__popup__container .panel__item .related__item__content .mat-icon{color:#8e8e8e;font-size:24px}.qmslib__related__popup__container .panel__item .related__item__content span.related__item__content_name{display:inline-block;min-width:calc(100% - 13px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:278px}.qmslib__related__popup__container .qmslib-related-popup-splitview{background-color:#fff;border-left:1px solid #ccc;height:450px;overflow-y:auto;margin-top:12px}.qmslib__related__popup__container .qmslib-related-popup-splitview.panel__content{height:450px;overflow:auto;margin-top:12px}.qmslib__related__popup__container .qmslib-related-popup-splitview.panel__content_item{height:350px;overflow:auto;margin-top:12px}.qmslib__related__popup__container .qmslib-related-popup-splitview .splitview-header{height:30px;font-size:12px;letter-spacing:1px;font-family:RALEWAY;font-weight:600;display:flex;align-items:center}.qmslib__related__popup__container .qmslib-related-popup-splitview .mat-checkbox.qms-group-options{padding:0}.qmslib__related__popup__container .qmslib-related-popup-splitview .mat-checkbox.qms-group-options .mat-checkbox-inner-container{margin-right:11px}.qmslib__related__popup__container .qmslib-related-popup-splitview .mat-checkbox.qms-group-options.mat-checkbox-checked{background:transparent!important}.qmslib__related__popup__container .qmslib-related-popup-splitview .expand-node{margin-left:8px;display:flex;align-items:center;min-height:40px}.qmslib__related__popup__container .qmslib-related-popup-splitview .expand-node .mat-icon{color:rgba(0,0,0,.6);margin-right:17px;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}.qmslib__related__popup__container .qmslib-related-popup-splitview .expand-node .mat-icon svg{display:block;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content}.qmslib__related__popup__container .qmslib-related-popup-splitview .expand-node .text-node-item{margin-left:8px;display:flex;align-items:center;min-height:32px;justify-content:space-between;width:100%}.qmslib__related__popup__container .qmslib-related-popup-splitview .expand-node .text-node-item .select-one-checked{color:#1954a9}cdk-virtual-scroll-viewport{overflow-x:hidden}cdk-virtual-scroll-viewport .search__module-result{margin:1.5rem;padding:0 0 .5rem}cdk-virtual-scroll-viewport .search__module-result .search__module-title{font-size:14px;font-weight:600}cdk-virtual-scroll-viewport .search__module-result .search__option{height:auto;line-height:normal;padding:8px 0;border-bottom:1px solid #e0e0e0}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item.mat-2-line.image-item{height:auto}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content{margin:0;border-bottom:none}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .wrap-image.image-square{width:2.5rem;height:100%;background:transparent;align-self:center;margin-right:0}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .wrap-image.image-square img{width:24px;height:24px}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .material-icons-outlined.leading-icon,cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content mat-icon.leading-icon{padding:4px 0 4px 4px}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .subtitle{font-weight:400}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .caption{overflow:hidden;line-height:normal;white-space:normal;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;padding:0;margin:0}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .caption span.search__result__parent-name{display:inline-block;width:auto;width:calc(100% - 13px);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .default-subtitle{color:rgba(0,0,0,.38)}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .search__description-icon{margin-right:0;width:12px;height:12px;font-size:12px}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .qms-list-text{border-bottom:none}cdk-virtual-scroll-viewport .search__module-result .search__option .qms-list-item-content .breadcrumb-containe .qms-breadcrumb-item .mat-icon{font-size:16px!important;padding-bottom:1px}cdk-virtual-scroll-viewport .search__module-result svg{display:block}#qmslib_related_popup_header_001{margin-bottom:20px;padding:0;font-weight:600;font-family:Raleway}.padding-5{padding:5px}.mat-autocomplete_related-viewport{height:100%;max-height:100%!important}.mat-autocomplete_related-viewport .cdk-virtual-scroll-content-wrapper{width:100%}.mat-autocomplete_related-viewport .related-viewport{min-height:300px}"]
|
20511
20644
|
},] }
|
@@ -20891,8 +21024,8 @@ class QMSNavigationDrawerComponent {
|
|
20891
21024
|
QMSNavigationDrawerComponent.decorators = [
|
20892
21025
|
{ type: Component, args: [{
|
20893
21026
|
selector: 'app-qms-navigation-drawer',
|
20894
|
-
template: "\r\n<mat-tree class=\"qms-navigation-drawer-container\" [dataSource]=\"dataSource\" [treeControl]=\"treeControl\" cdkDropList\r\n (cdkDropListDropped)=\"drop($event)\" [cdkDropListDisabled]=\"dragDropListDisabled\">\r\n <!-- This is the tree node template for leaf nodes -->\r\n <mat-tree-node [class.pr-34]=\"showAddIcon\" *matTreeNodeDef=\"let node\" (mouseover)=\"onOver(node)\" matTreeNodePadding matTreeNodePaddingIndent=\"34\"\r\n cdkDrag [cdkDragData]=\"node\" (mouseenter)=\"dragHover(node)\" (mouseleave)=\"dragHoverEnd()\"\r\n (cdkDragStarted)=\"dragStart()\" (cdkDragReleased)=\"dragEnd()\"\r\n [ngClass]=\"{'expand-node' : treeControl.isExpanded(node), 'collapse-node': !treeControl.isExpanded(node), 'active': activeNode == node.id}\">\r\n <div *cdkDragPreview class=\"node-preview-item\">{{ node.name }}</div>\r\n <div *ngIf=\"!node.isReadOnly\" (click)=\"onClickNode(node, true)\" class=\"tree-content\">\r\n <button tabindex=\"-1\" qms-btn-outlined disabled class=\"border-0 bg-transparent\">\r\n <img class=\"img-icon\" [src]=\"faIconPath\" alt=\"\" />\r\n </button>\r\n
|
20895
|
-
styles: ["::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node{min-width:272px!important;height:48px!important}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node{min-height:34px
|
21027
|
+
template: "\r\n<mat-tree class=\"qms-navigation-drawer-container\" [dataSource]=\"dataSource\" [treeControl]=\"treeControl\" cdkDropList\r\n (cdkDropListDropped)=\"drop($event)\" [cdkDropListDisabled]=\"dragDropListDisabled\">\r\n <!-- This is the tree node template for leaf nodes -->\r\n <mat-tree-node [class.pr-34]=\"showAddIcon\" *matTreeNodeDef=\"let node\" (mouseover)=\"onOver(node)\" matTreeNodePadding matTreeNodePaddingIndent=\"34\"\r\n cdkDrag [cdkDragData]=\"node\" (mouseenter)=\"dragHover(node)\" (mouseleave)=\"dragHoverEnd()\"\r\n (cdkDragStarted)=\"dragStart()\" (cdkDragReleased)=\"dragEnd()\"\r\n [ngClass]=\"{'expand-node' : treeControl.isExpanded(node), 'collapse-node': !treeControl.isExpanded(node), 'active': activeNode == node.id}\">\r\n <div *cdkDragPreview class=\"node-preview-item\">{{ node.name }}</div>\r\n <div *ngIf=\"!node.isReadOnly\" (click)=\"onClickNode(node, true)\" class=\"tree-content\">\r\n <button tabindex=\"-1\" qms-btn-outlined disabled class=\"border-0 bg-transparent\">\r\n <img class=\"img-icon\" [src]=\"faIconPath\" alt=\"\" />\r\n </button>\r\n <div class=\"span-text\">{{ node.name }}</div>\r\n <button tabindex=\"-1\" class=\"button-icon add-icon\"\r\n *ngIf=\"showFavoriteIcon && (node.id === hoverNode.id || node.favorite)\"\r\n (click)=\"addFavoriteNode(node.id, $event)\" (mouseenter)=\"setHoverFavorite(node.id)\"\r\n (mouseleave)=\"setHoverFavorite(null)\" [ngClass]=\"{'btn-favorite': (node.id === hoverNode.id && isHover)}\"\r\n qms-tool-tip=\"{{!node.favorite ? addFavoriteTooltip : deleteFavoriteTooltip}}\" mode=\"dark\" position=\"bottom\"\r\n qms-btn-icon>\r\n <mat-icon class=\"mat-icon-rtl-mirror blur-icon\" [class.favorite]=\"true\"\r\n [class.not-favorite]=\"!node.favorite && node.id === hoverNode.id && isHover\">\r\n {{node.favorite && node.id === hoverNode.id && isHover ? 'star_rate_outline' : ''}}\r\n {{!node.favorite && node.id === hoverNode.id && isHover ? 'star_border' : ''}}\r\n </mat-icon>\r\n </button>\r\n <button tabindex=\"-1\" class=\"button-icon add-icon\" *ngIf=\"node.id === hoverNode.id && showAddIcon && isHover\"\r\n qms-tool-tip=\"{{addNodeTooltip}}\" (click)=\"addNewNode(node.id, $event)\" mode=\"dark\" position=\"bottom\" qms-btn-icon>\r\n <mat-icon class=\"mat-icon-rtl-mirror\">\r\n add\r\n </mat-icon>\r\n </button>\r\n </div>\r\n </mat-tree-node>\r\n <!-- This is the tree node template for expandable nodes -->\r\n <mat-tree-node [class.pr-34]=\"showAddIcon\" *matTreeNodeDef=\"let node;when: hasChild\" (mouseover)=\"onOver(node)\" matTreeNodePadding\r\n matTreeNodePaddingIndent=\"34\" cdkDrag [cdkDragData]=\"node\" (mouseenter)=\"dragHover(node)\"\r\n (mouseleave)=\"dragHoverEnd()\" (cdkDragStarted)=\"dragStart()\" (cdkDragReleased)=\"dragEnd()\"\r\n [ngClass]=\"\r\n {'expand-node' : treeControl.isExpanded(node), 'collapse-node': !treeControl.isExpanded(node), 'active': activeNode == node.id}\">\r\n <div *cdkDragPreview class=\"node-preview-item\">{{ node.name }}</div>\r\n <div *ngIf=\"!node.isReadOnly\" class=\"tree-content\"\r\n (keydown)=\"onKeyDownNode($event, node)\">\r\n <button matTreeNodeToggle (click)=\"onClickNode(node, false)\" tabindex=\"-1\" class=\"button-icon collapse-expand-icon\" qms-btn-icon [attr.aria-label]=\"'toggle ' + node.name\">\r\n <mat-icon class=\"mat-icon-rtl-mirror arrow-icon left-icon\">\r\n {{treeControl.isExpanded(node) ? 'expand_less' : 'expand_more'}}\r\n </mat-icon>\r\n </button>\r\n <div class=\"span-text\" matTreeNodeToggle (click)=\"onClickNode(node, true)\">{{ node.name }}</div>\r\n <button tabindex=\"-1\" class=\"button-icon add-icon\"\r\n qms-tool-tip=\"{{!node.favorite ? addFavoriteTooltip : deleteFavoriteTooltip}}\"\r\n *ngIf=\"showFavoriteIcon && (node.id === hoverNode.id || node.favorite)\"\r\n (click)=\"addFavoriteNode(node.id, $event)\" [ngClass]=\"{'btn-favorite': (node.id === hoverNode.id && isHover)}\"\r\n (mouseenter)=\"setHoverFavorite(node.id)\" (mouseleave)=\"setHoverFavorite(null)\" mode=\"dark\" position=\"below\"\r\n qms-btn-icon>\r\n <mat-icon class=\"mat-icon-rtl-mirror blur-icon\" [class.favorite]=\"true\"\r\n [class.not-favorite]=\"!node.favorite && node.id === hoverNode.id && isHover\">\r\n {{node.favorite && node.id === hoverNode.id && isHover ? 'star_rate_outline' : ''}}\r\n {{!node.favorite && node.id === hoverNode.id && isHover ? 'star_border' : ''}}\r\n </mat-icon>\r\n </button>\r\n <button tabindex=\"-1\" class=\"button-icon add-icon\" *ngIf=\"node.id === hoverNode.id && showAddIcon && isHover\"\r\n qms-tool-tip=\"{{addNodeTooltip}}\" mode=\"dark\" position=\"bottom\" (click)=\"addNewNode(node.id, $event)\" qms-btn-icon>\r\n <mat-icon class=\"mat-icon-rtl-mirror\">\r\n add\r\n </mat-icon>\r\n </button>\r\n </div>\r\n </mat-tree-node>\r\n</mat-tree>\r\n",
|
21028
|
+
styles: ["::ng-deep mat-tree.qms-navigation-drawer-container{padding:.25rem!important}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node{min-width:272px!important;height:48px!important}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node{min-height:34px}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.active{background-color:#f2f7fd;color:#1954a9!important}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.active img{filter:opacity(.5) drop-shadow(0 0 0 #1954A9)}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.active:hover{background-color:#e5eefb!important}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content{width:100%;position:relative;align-items:center}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .arrow-icon{color:#00324e}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .collapse-expand-icon{color:#3e57b7}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .collapse-expand-icon:hover{background:rgba(0,0,0,.08)}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .add-icon:hover{background:rgba(0,0,0,.08)}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .left-icon{color:#919191}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.expand-node{padding-left:0;position:static;height:32px;left:calc(50% - 216px/2);top:0;font-family:Open Sans;font-style:normal;font-weight:400;font-size:14px;line-height:19px;display:flex;align-items:center;color:#1954a9;flex:none;order:0;align-self:stretch;flex-grow:1}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.expand-node ::ng-deep mat-icon{color:#1954a9}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.expand-node:hover{background-color:#e5eefb!important}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.collapse-node{position:static;height:32px;left:calc(50% - 176px/2);top:0;font-family:Open Sans;font-style:normal;font-weight:400;font-size:14px;line-height:19px;display:flex;align-items:center;color:#323232;flex:none;order:0;align-self:stretch;flex-grow:1}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content{display:flex}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .button-icon{width:40px;height:40px;line-height:30px!important;border-radius:50%}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .button-icon:hover{border-radius:50%}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .img-icon{max-height:25px;max-width:25px}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .add-icon{position:absolute;right:-34px}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .add-icon mat-icon{top:3px;right:3px;border-radius:50%;color:rgba(0,0,0,.6)}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .favorite{color:#b13514!important}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .not-favorite{color:rgba(0,0,0,.6)!important}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .btn-favorite{right:6px;color:unset}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .space-icon{position:absolute;top:-5px;left:0}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .span-text{position:relative;overflow:hidden;text-overflow:ellipsis;padding-left:7px;max-width:calc(100% - 56px);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;cursor:pointer}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node .tree-content .span-text:after{content:\"\";display:block;clear:both}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node:first-child{margin:0}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.collapse-node:hover{background:#00000014}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.collapse-node:active{background:#0000001f}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node.expand-node:active{background:#f2f7fd}::ng-deep mat-tree.qms-navigation-drawer-container .mat-tree-node:hover .span-text{max-width:calc(100% - 96px)}::ng-deep mat-tree.qms-navigation-drawer-container .pr-34{padding-right:34px}.node-preview-item{display:flex;background-color:#0000001f;min-width:272px!important;height:48px!important;margin:0 auto;align-items:center;padding:0 16px}"]
|
20896
21029
|
},] }
|
20897
21030
|
];
|
20898
21031
|
QMSNavigationDrawerComponent.ctorParameters = () => [];
|
@@ -20948,11 +21081,13 @@ var PaginationSize;
|
|
20948
21081
|
PaginationSize["mobile"] = "mobile";
|
20949
21082
|
})(PaginationSize || (PaginationSize = {}));
|
20950
21083
|
class QMSPaginatorComponent {
|
20951
|
-
constructor() {
|
21084
|
+
constructor(trans) {
|
21085
|
+
this.trans = trans;
|
20952
21086
|
this.sizeMedium = 'medium';
|
20953
21087
|
this.sizeSmall = 'small';
|
20954
21088
|
this.sizeLarge = 'large';
|
20955
21089
|
this.sizeMobile = 'mobile';
|
21090
|
+
this.numHidden = 10;
|
20956
21091
|
this.size = PaginationSize.large;
|
20957
21092
|
this._pageSizeOptions = [5, 10, 25, 100];
|
20958
21093
|
this._pageSize = 10;
|
@@ -20994,6 +21129,10 @@ class QMSPaginatorComponent {
|
|
20994
21129
|
this.getNumberOfPages();
|
20995
21130
|
}
|
20996
21131
|
ngOnInit() {
|
21132
|
+
const langDefault = 'en';
|
21133
|
+
this.trans.getLanguageSubject$.pipe().subscribe((res) => {
|
21134
|
+
this.LANG = this.trans.getObjectLang(res || langDefault);
|
21135
|
+
});
|
20997
21136
|
this.getNumberOfPages();
|
20998
21137
|
}
|
20999
21138
|
_updateDisplayedPageSizeOptions() {
|
@@ -21095,15 +21234,18 @@ class QMSPaginatorComponent {
|
|
21095
21234
|
QMSPaginatorComponent.decorators = [
|
21096
21235
|
{ type: Component, args: [{
|
21097
21236
|
selector: 'qms-paginator',
|
21098
|
-
template: "<div class=\"qms-paginator-outer-container\" [class.size-small]='size == sizeSmall'>\r\n <div class=\"mat-paginator-container\" *ngIf='size != sizeMobile'>\r\n <div class=\"qms-total-result\">\r\n <span>
|
21237
|
+
template: "<div class=\"qms-paginator-outer-container\" [class.size-small]='size == sizeSmall' [class.d-none]='numHidden > length'>\r\n <div class=\"mat-paginator-container\" *ngIf='size != sizeMobile'>\r\n <div class=\"qms-total-result\">\r\n <span>{{LANG.RESULTS}}: {{length}}</span>\r\n </div>\r\n <div class=\"qms-paginator-page-size\" *ngIf='size != sizeSmall'>\r\n <div class=\"qms-pagesize-label\">{{LANG.ROW_PER_PAGE}}:</div>\r\n <mat-form-field\r\n qms-form\r\n qms-select-input\r\n class=\"qms-form-page-size\"\r\n appearance=\"fill\">\r\n <mat-select\r\n panelClass=\"qms-select-panel\"\r\n [value]=\"pageSize\"\r\n (selectionChange)=\"_changePageSize($event.value)\"\r\n qms-select>\r\n <mat-option *ngFor=\"let item of pageSizeOptions\" [value]=\"item\">\r\n {{ item }}\r\n </mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n </div>\r\n <div class=\"qms-paginator-page-size\" *ngIf='size != sizeMedium && size != sizeSmall'>\r\n <div class=\"qms-pagesize-label \">{{LANG.JUM_TO_PAGE}}:</div>\r\n\r\n <mat-form-field\r\n qms-form\r\n qms-select-input\r\n class=\"qms-form-page-size qms-form-select-page-size\"\r\n appearance=\"fill\">\r\n <mat-select\r\n panelClass=\"qms-select-panel\"\r\n [value]=\"pageIndex\"\r\n (selectionChange)=\"_changePageNumber($event.value)\"\r\n qms-select>\r\n <mat-option *ngFor=\"let item of numberOfPages\" [value]=\"item\">\r\n {{ item }}\r\n </mat-option>\r\n </mat-select>\r\n </mat-form-field> \r\n </div>\r\n <div class=\"qms-paginator-range-actions\">\r\n <button qms-btn-icon color=\"light\" (click)='previousPage()' [disabled]='minPage == pageIndex'>\r\n <mat-icon>chevron_left</mat-icon>\r\n </button>\r\n <ng-container *ngFor='let item of displayNumberOfPages' >\r\n <span *ngIf='item == \"...\"' class=\"qms-3d\">{{item}}</span>\r\n <button *ngIf='item != \"...\"' qms-btn-icon color=\"light\" \r\n [class.selected]='pageIndex == item' [disabled]='pageIndex == item'\r\n (click)='changePage(item)'>\r\n {{item}}\r\n </button>\r\n </ng-container>\r\n \r\n <button qms-btn-icon color=\"light\" (click)='nextPage()' [disabled]='maxpage == pageIndex'>\r\n <mat-icon>chevron_right</mat-icon>\r\n </button>\r\n </div>\r\n </div>\r\n\r\n <div class=\"mat-paginator-container-mobile\" *ngIf='size == sizeMobile'>\r\n <div class=\"mat-paginator-container\" *ngIf='size == sizeMobile'>\r\n <div class=\"qms-paginator-range-actions\">\r\n <button qms-btn-icon color=\"light\" (click)='previousPage()' [disabled]='minPage == pageIndex'>\r\n <mat-icon>chevron_left</mat-icon>\r\n </button>\r\n <ng-container *ngFor='let item of displayNumberOfPages' >\r\n <span *ngIf='item == \"...\"' class=\"qms-3d\">{{item}}</span>\r\n <button *ngIf='item != \"...\"' qms-btn-icon color=\"light\" \r\n [class.selected]='pageIndex == item' [disabled]='pageIndex == item'\r\n (click)='changePage(item)'>\r\n {{item}}\r\n </button>\r\n </ng-container>\r\n \r\n <button qms-btn-icon color=\"light\" (click)='nextPage()' [disabled]='maxpage == pageIndex'>\r\n <mat-icon>chevron_right</mat-icon>\r\n </button>\r\n </div>\r\n </div>\r\n <div class=\"qms-total-result\">\r\n <span>{{LANG.RESULTS}}: {{length}}</span>\r\n </div>\r\n <div style=\"display: flex;\">\r\n <div class=\"qms-paginator-page-size\" *ngIf='size != sizeSmall'>\r\n <div class=\"qms-pagesize-label\">{{LANG.ROW_PER_PAGE}}:</div>\r\n <mat-form-field\r\n qms-form\r\n qms-select-input\r\n class=\"qms-form-page-size\"\r\n appearance=\"fill\">\r\n <mat-select\r\n panelClass=\"qms-select-panel\"\r\n [value]=\"pageSize\"\r\n (selectionChange)=\"_changePageSize($event.value)\"\r\n qms-select>\r\n <mat-option *ngFor=\"let item of pageSizeOptions\" [value]=\"item\">\r\n {{ item }}\r\n </mat-option>\r\n </mat-select>\r\n </mat-form-field>\r\n </div>\r\n <div class=\"qms-paginator-page-size\" *ngIf='size != sizeMedium && size != sizeSmall'>\r\n <div class=\"qms-pagesize-label \">{{LANG.JUM_TO_PAGE}}:</div>\r\n <mat-form-field\r\n qms-form\r\n qms-select-input\r\n class=\"qms-form-page-size qms-form-select-page-size\"\r\n appearance=\"fill\">\r\n <mat-select\r\n panelClass=\"qms-select-panel\"\r\n [value]=\"pageIndex\"\r\n (selectionChange)=\"_changePageNumber($event.value)\"\r\n qms-select>\r\n <mat-option *ngFor=\"let item of numberOfPages\" [value]=\"item\">\r\n {{ item }}\r\n </mat-option>\r\n </mat-select>\r\n </mat-form-field> \r\n </div>\r\n </div>\r\n \r\n </div>\r\n \r\n</div>",
|
21099
21238
|
host: {
|
21100
21239
|
'class': 'qms-paginator'
|
21101
21240
|
},
|
21102
21241
|
styles: ["::ng-deep .qms-paginator{display:block}::ng-deep .qms-paginator .qms-paginator-outer-container{display:flex}::ng-deep .qms-paginator .mat-paginator-container{display:flex;align-items:center;justify-content:flex-end;padding:0 8px;flex-wrap:wrap-reverse;width:100%}::ng-deep .qms-paginator .mat-paginator-container .qms-btn-icon{width:40px;height:40px;line-height:40px}::ng-deep .qms-paginator .mat-paginator-container .mat-select .mat-select-arrow{margin-top:20px}::ng-deep .qms-paginator .mat-paginator-container .qms-total-result{margin-right:24px;margin-bottom:20px}::ng-deep .qms-paginator .mat-paginator-container .qms-total-result span{font-family:Open Sans;font-weight:400;font-size:14px;line-height:22px;color:rgba(0,0,0,.6)}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-page-size{margin-right:24px;display:flex;align-items:baseline}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-page-size .qms-pagesize-label{font-weight:400;font-size:14px;line-height:22px;color:#323232;font-family:Open Sans;font-style:normal;margin-right:8px}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-page-size .qms-form-page-size .mat-form-field-flex{width:80px}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-page-size .qms-form-select-page-size .mat-form-field-flex{width:51px;padding-left:9px;padding-right:5px}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-page-size .jump-page .mat-form-field-wrapper .mat-form-field-flex{width:55px}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-page-size .mat-form-field-flex{height:40px}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-page-size .mat-form-field-flex .mat-form-field-infix{padding-top:4px;border-top:0;padding-bottom:0;height:25px}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-range-actions{display:flex;align-items:center;margin-bottom:15px}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-range-actions .selected{background-color:#e5eefb;color:#1954a9}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-range-actions .qms-3d{font-weight:600;font-size:14px;line-height:22px;color:#323232}::ng-deep .qms-paginator .mat-paginator-container .qms-paginator-range-actions button:not(.qms-btn-disabled) .qms-btn-icon-wrapper{color:#323232}::ng-deep .qms-paginator .mat-paginator-container-mobile .mat-select .mat-select-arrow{margin-top:20px}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-total-result{margin-bottom:16px}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-total-result span{font-family:Open Sans;font-style:normal;font-weight:400;font-size:12px;line-height:16px;color:rgba(0,0,0,.6)}::ng-deep .qms-paginator .mat-paginator-container-mobile .mat-paginator-container{justify-content:flex-start}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-paginator-page-size{margin-right:24px;display:flex;align-items:baseline}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-paginator-page-size .qms-pagesize-label{font-weight:400;font-size:12px;line-height:22px;color:#323232;font-family:Open Sans;font-style:normal;margin-right:8px}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-paginator-page-size .qms-form-page-size .mat-form-field-flex{width:80px}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-paginator-page-size .qms-form-select-page-size .mat-form-field-flex{width:51px;padding-left:9px;padding-right:5px}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-paginator-page-size .jump-page .mat-form-field-wrapper .mat-form-field-flex{width:55px}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-paginator-page-size .mat-form-field-flex{height:40px}::ng-deep .qms-paginator .mat-paginator-container-mobile .qms-paginator-page-size .mat-form-field-flex .mat-form-field-infix{padding-top:4px;border-top:0;padding-bottom:0;height:25px}::ng-deep .qms-paginator .size-small .mat-paginator-container{justify-content:flex-start}"]
|
21103
21242
|
},] }
|
21104
21243
|
];
|
21105
|
-
QMSPaginatorComponent.ctorParameters = () => [
|
21244
|
+
QMSPaginatorComponent.ctorParameters = () => [
|
21245
|
+
{ type: TranslateLibraryService }
|
21246
|
+
];
|
21106
21247
|
QMSPaginatorComponent.propDecorators = {
|
21248
|
+
numHidden: [{ type: Input }],
|
21107
21249
|
size: [{ type: Input }],
|
21108
21250
|
pageSizeOptions: [{ type: Input }],
|
21109
21251
|
pageSize: [{ type: Input }],
|
@@ -21144,5 +21286,5 @@ QmsPaginatorModule.decorators = [
|
|
21144
21286
|
* Generated bundle index. Do not edit.
|
21145
21287
|
*/
|
21146
21288
|
|
21147
|
-
export { AutocompleteOffDirective, BREADCRUMB_DROPDOWN_ICON, BUTTON_TOGGLE_DEFAULT_OPTIONS, BUTTON_TOGGLE_GROUP, BUTTON_TOGGLE_GROUP_VALUE_ACCESSOR, BannerType, BpmnService, BreadcrumbNode, ButtonToggleChange, CHECKLIST_ICON, CKEditorEventConst, CKEditorModule, CdkDetailRowDirective, ConfirmDialog, DEPARTMENT_FOLDER_ICON, DEPARTMENT_FOLDER_OUTLINED_ICON, DEVIATION_ICON, DOCUMENT_DEPARTMENT_ICON, DOCUMENT_ENTERPRISE_ICON, DOCUMENT_ICON, DOCUMENT_LOCAL_ICON, DOCUMENT_REGIONAL_ICON, DataType$1 as DataType, DateFormatPipe, DocumentNodeType$1 as DocumentNodeType, ENTERPRISE_FOLDER_ICON, ENTERPRISE_FOLDER_OUTLINED_ICON, FileErrorType, FlowChartConst, FlowchartViewMode, ISelectOneItem, InformationCoverItem, KEYBOARD_DOWN_ICON, KEYBOARD_UP_ICON, LOCAL_FOLDER_ICON, LOCAL_FOLDER_OUTLINED_ICON, LinkAnchor, LinkType, MarginDirective, ModuleType$1 as ModuleType, NORMAL_FOLDER_ICON, NORMAL_FOLDER_OUTLINED_ICON, NewTreeComponent, NewTreeModel, PROCESS_AREA_ICON, PROCESS_AREA_OUTLINED_ICON, PROCESS_ICON, PaginationSize, PopupData, ProtocolType, ProtocolTypeName, QMSAnchor, QMSAppBar, QMSAppIconModule, QMSAttachmentListDirective, QMSBreadcrumb, QMSBreadcrumbDirectionIconDirective, QMSBreadcrumbItemDirective, QMSBreadcrumbModule, QMSButton, QMSButtonIcon, QMSButtonModule, QMSButtonToggle, QMSButtonToggleGroup, QMSCKEditorBaseComponent, QMSCKEditorBaseService, QMSCKEditorBpmn, QMSCKEditorBpmnApiService, QMSCKEditorBpmnComponent, QMSCKEditorBpmnTemplate, QMSCKEditorComponent, QMSCKEditorConfirmComponent, QMSCKEditorData, QMSCKEditorDialogData, QMSCKEditorDocumentType, QMSCKEditorFlowchart, QMSCKEditorFlowchartService, QMSCKEditorFullscreenComponent, QMSCKEditorGlobalService, QMSCKEditorInjector, QMSCKEditorLinkAnchorDocument, QMSCKEditorLinkComponent, QMSCKEditorLinkService, QMSCKEditorLoadTemplateComponent, QMSCKEditorModule, QMSCKEditorPlugin, QMSCKEditorRelatedComponent, QMSCKEditorRelation, QMSCKEditorSaveAsTemplate, QMSCKEditorTemplate, QMSCKEditorTemplateService, QMSCKEditorToastService, QMSCKEditorTreeComponent, QMSCKEdtiorInputData, QMSChipBodyDirective, QMSChipInputChipListDirective, QMSChipInputDirective, QMSChipInputSelectDropWDownDirective, QMSChipInputSelectFieldDirective, QMSChipInputSelectTriggerDirective, QMSCollapseGroupDirective, QMSComment, QMSConfirmDialog, QMSDialogConfig, QMSDrawerContentDirective, QMSDrawerDirective, QMSDrawerHeaderActionDirective, QMSDrawerHeaderDirective, QMSDropdownMenuItem, QMSEditFileNameDialog, QMSEditFileNameDialogModule, QMSFileAttachment, QMSFileUploadDirective, QMSFileUploadDisplayDirective, QMSFileUploadMultipleDirective, QMSFileUploadMultipleDisplayDirective, QMSFileUploadMultipleSelectorDirective, QMSFileUploadSelectorDirective, QMSFormDialog, QMSFormFieldDatePickerDirective, QMSFormFieldDirective, QMSFormFieldTextareaDirective, QMSGroupOptionDirective, QMSIconRegistryService, QMSInputChipDirective, QMSInputClearDirective, QMSList, QMSListExpansion, QMSListExpansionHeader, QMSListHeader, QMSListItem, QMSListLeadingIcon, QMSListLine, QMSListModule, QMSNavigationDrawerComponent, QMSNavigationDrawerModule, QMSNewTreeModule, QMSPaginatorComponent, QMSProcessDocumentItem, QMSRangeSliderDirective, QMSRangeSliderLockUpDirective, QMSRangeSliderModule, QMSRelatedGlobalService, QMSRelatedModule, QMSRichText, QMSRichTextModule, QMSRowDetailDirective, QMSScrolableAttachmentListDirective, QMSScrollbarDirective, QMSSearchFieldDirective, QMSSelectGlobalService, QMSSelectIncludeChildrenModule, QMSSelectOneGlobalService, QMSSelectOneModule, QMSSelectProcessDocumentGlobalService, QMSSelectProcessDocumentModule, QMSSideSheetModule, QMSSnackbarConfig, QMSSuffixDirective, QMSSuffixFieldDirective, QMSTabGroupAdvancedDirective, QMSTabGroupDirective, QMSTabLabelDirective, QMSTabModule, QMSTableAction, QMSTableActionBlock, QMSTableChildrenDirective, QMSTableDirective, QMSTableModule, QMSTableRowDirective, QMSTextBlockDirective, QMSTextBlockLine, QMSToolTipComponent, QMSToolTipRendererDirective, QMSTooltipImageDirective, QMSTooltipModule, QMSTreeModule, QMSUploadFileErrorDialog, QMSUploadFileErrorDialogModule, QMSUploadingFileGuard, QmsAngularComponent, QmsAngularModule, QmsAngularService, QmsAppBarComponent, QmsAppBarModule, QmsBadgesComponent, QmsBadgesModule, QmsBannerComponent, QmsBannerConfirmButton, QmsBannerConfirmButtonClick, QmsBannerConfirmComponent, QmsBannerConfirmModule, QmsBannerContent, QmsBannerLoadingComponent, QmsBannerLoadingModule, QmsBannerModule, QmsPaginatorModule, QmsReportContentPortraitComponent, QmsReportCoverPortraitComponent, QmsReportModule, QmsStatusDropdownComponent, QmsStatusDropdownModule, QmsStatusDropdownOption, QmsStatusDropdownType, QmsStepperComponent, QmsStepperModule, REGIONAL_FOLDER_ICON, REGIONAL_FOLDER_OUTLINED_ICON, RISK_ICON, RelatedConst, RelatedContentComponent, RelatedItemType, RelatedListComponent, RelatedPopupComponent, Result, RiskAnalysis, RiskAnalysisComponent, RiskDanger, RiskListComponent, RiskResult, RiskResultComponent, SaveTemplateComponent, ScrollToSelectedDirective, SelectConst, SelectDialog, SelectIncludeChildrenPopUpComponent, SelectOneDialog, SelectOnePopupData, SelectOption, SelectOptionTypes, SelectPopupData, SelectProcessDocumentPopupComponent, SelectProcessDocumentPopupData, SelectedOption, SelectedProcessDocumentItem, SharedModule, ShowHideSearchResultConst, SideNav, SideNavItem, SidenavComponent, TargetType, TargetTypeName, TranslateLibraryService, TreeComponent, TreeConfig, TreeFlatNode, TreeModel, TreeNode$1 as TreeNode, UploadErrorData, en, mixinColor, no, notExceedSize, requiredFileType, ɵ1, SharedMaterialModule as ɵa, QMSCKEditorTreeService as ɵb, QMSCKEditorTemplateComponent as ɵc, LinkAttachmentComponent as ɵd, QMSCKEditorTooltipComponent as ɵe, QMSCKEditorTooltip as ɵf, QMSCKEditorImageMapComponent as ɵg, QMSCKEditorImageMap as ɵh, QMSCKEditorUploadService as ɵi, QMSCKEditorBpmnData as ɵj, QMSCKEditorAboutComponent as ɵk };
|
21289
|
+
export { AutocompleteOffDirective, BREADCRUMB_DROPDOWN_ICON, BUTTON_TOGGLE_DEFAULT_OPTIONS, BUTTON_TOGGLE_GROUP, BUTTON_TOGGLE_GROUP_VALUE_ACCESSOR, BannerType, BpmnService, BreadcrumbNode, ButtonToggleChange, CHECKLIST_ICON, CKEditorEventConst, CKEditorModule, CdkDetailRowDirective, ConfirmDialog, DEPARTMENT_FOLDER_ICON, DEPARTMENT_FOLDER_OUTLINED_ICON, DEVIATION_ICON, DOCUMENT_DEPARTMENT_ICON, DOCUMENT_ENTERPRISE_ICON, DOCUMENT_ICON, DOCUMENT_LOCAL_ICON, DOCUMENT_REGIONAL_ICON, DataType$1 as DataType, DateFormatPipe, DocumentNodeType$1 as DocumentNodeType, ENTERPRISE_FOLDER_ICON, ENTERPRISE_FOLDER_OUTLINED_ICON, FileErrorType, FlowChartConst, FlowchartViewMode, ISelectOneItem, InformationCoverItem, KEYBOARD_DOWN_ICON, KEYBOARD_UP_ICON, LOCAL_FOLDER_ICON, LOCAL_FOLDER_OUTLINED_ICON, LinkAnchor, LinkType, MarginDirective, ModuleType$1 as ModuleType, NORMAL_FOLDER_ICON, NORMAL_FOLDER_OUTLINED_ICON, NewTreeComponent, NewTreeModel, PROCESS_AREA_ICON, PROCESS_AREA_OUTLINED_ICON, PROCESS_ICON, PaginationSize, PopupData, ProtocolType, ProtocolTypeName, QMSAnchor, QMSAppBar, QMSAppIconModule, QMSAttachmentListDirective, QMSBreadcrumb, QMSBreadcrumbDirectionIconDirective, QMSBreadcrumbItemDirective, QMSBreadcrumbModule, QMSButton, QMSButtonIcon, QMSButtonModule, QMSButtonToggle, QMSButtonToggleGroup, QMSCKEditorBaseComponent, QMSCKEditorBaseService, QMSCKEditorBpmn, QMSCKEditorBpmnApiService, QMSCKEditorBpmnComponent, QMSCKEditorBpmnTemplate, QMSCKEditorComponent, QMSCKEditorConfirmComponent, QMSCKEditorData, QMSCKEditorDialogData, QMSCKEditorDocumentType, QMSCKEditorFlowchart, QMSCKEditorFlowchartService, QMSCKEditorFullscreenComponent, QMSCKEditorGlobalService, QMSCKEditorInjector, QMSCKEditorLinkAnchorDocument, QMSCKEditorLinkComponent, QMSCKEditorLinkService, QMSCKEditorLoadTemplateComponent, QMSCKEditorModule, QMSCKEditorPlugin, QMSCKEditorRelatedComponent, QMSCKEditorRelation, QMSCKEditorSaveAsTemplate, QMSCKEditorTemplate, QMSCKEditorTemplateService, QMSCKEditorToastService, QMSCKEditorTreeComponent, QMSCKEdtiorInputData, QMSChipBodyDirective, QMSChipInputChipListDirective, QMSChipInputDirective, QMSChipInputSelectDropWDownDirective, QMSChipInputSelectFieldDirective, QMSChipInputSelectTriggerDirective, QMSCollapseGroupDirective, QMSComment, QMSConfirmDialog, QMSDialogConfig, QMSDialogContainer, QMSDialogContent, QMSDialogFooter, QMSDialogHeader, QMSDrawerContentDirective, QMSDrawerDirective, QMSDrawerHeaderActionDirective, QMSDrawerHeaderDirective, QMSDropdownMenuItem, QMSEditFileNameDialog, QMSEditFileNameDialogModule, QMSFileAttachment, QMSFileUploadDirective, QMSFileUploadDisplayDirective, QMSFileUploadMultipleDirective, QMSFileUploadMultipleDisplayDirective, QMSFileUploadMultipleSelectorDirective, QMSFileUploadSelectorDirective, QMSFormDialog, QMSFormFieldDatePickerDirective, QMSFormFieldDirective, QMSFormFieldTextareaDirective, QMSGroupOptionDirective, QMSIconRegistryService, QMSInputChipDirective, QMSInputClearDirective, QMSList, QMSListExpansion, QMSListExpansionHeader, QMSListHeader, QMSListItem, QMSListLeadingIcon, QMSListLine, QMSListModule, QMSNavigationDrawerComponent, QMSNavigationDrawerModule, QMSNewTreeModule, QMSPaginatorComponent, QMSProcessDocumentItem, QMSRangeSliderDirective, QMSRangeSliderLockUpDirective, QMSRangeSliderModule, QMSRelatedGlobalService, QMSRelatedModule, QMSRichText, QMSRichTextModule, QMSRowDetailDirective, QMSScrolableAttachmentListDirective, QMSScrollbarDirective, QMSSearchFieldDirective, QMSSelectGlobalService, QMSSelectIncludeChildrenModule, QMSSelectOneGlobalService, QMSSelectOneModule, QMSSelectProcessDocumentGlobalService, QMSSelectProcessDocumentModule, QMSSideSheetModule, QMSSnackbarConfig, QMSSuffixDirective, QMSSuffixFieldDirective, QMSTabGroupAdvancedDirective, QMSTabGroupDirective, QMSTabLabelDirective, QMSTabModule, QMSTableAction, QMSTableActionBlock, QMSTableChildrenDirective, QMSTableDirective, QMSTableModule, QMSTableRowDirective, QMSTextBlockDirective, QMSTextBlockLine, QMSToolTipComponent, QMSToolTipRendererDirective, QMSTooltipImageDirective, QMSTooltipModule, QMSTreeModule, QMSUploadFileErrorDialog, QMSUploadFileErrorDialogModule, QMSUploadingFileGuard, QmsAngularComponent, QmsAngularModule, QmsAngularService, QmsAppBarComponent, QmsAppBarModule, QmsBadgesComponent, QmsBadgesModule, QmsBannerComponent, QmsBannerConfirmButton, QmsBannerConfirmButtonClick, QmsBannerConfirmComponent, QmsBannerConfirmModule, QmsBannerContent, QmsBannerLoadingComponent, QmsBannerLoadingModule, QmsBannerModule, QmsPaginatorModule, QmsReportContentPortraitComponent, QmsReportCoverPortraitComponent, QmsReportModule, QmsStatusDropdownComponent, QmsStatusDropdownModule, QmsStatusDropdownOption, QmsStatusDropdownType, QmsStepperComponent, QmsStepperModule, REGIONAL_FOLDER_ICON, REGIONAL_FOLDER_OUTLINED_ICON, RISK_ICON, RelatedConst, RelatedContentComponent, RelatedItemType, RelatedListComponent, RelatedPopupComponent, Result, RiskAnalysis, RiskAnalysisComponent, RiskDanger, RiskListComponent, RiskResult, RiskResultComponent, SaveTemplateComponent, ScrollToSelectedDirective, SelectConst, SelectDialog, SelectIncludeChildrenPopUpComponent, SelectOneDialog, SelectOnePopupData, SelectOption, SelectOptionTypes, SelectPopupData, SelectProcessDocumentPopupComponent, SelectProcessDocumentPopupData, SelectedOption, SelectedProcessDocumentItem, SharedModule, ShowHideSearchResultConst, SideNav, SideNavItem, SidenavComponent, TargetType, TargetTypeName, TranslateLibraryService, TreeComponent, TreeConfig, TreeFlatNode, TreeModel, TreeNode$1 as TreeNode, UploadErrorData, en, mixinColor, no, notExceedSize, requiredFileType, ɵ1, SharedMaterialModule as ɵa, QMSCKEditorTreeService as ɵb, QMSCKEditorTemplateComponent as ɵc, LinkAttachmentComponent as ɵd, QMSCKEditorTooltipComponent as ɵe, QMSCKEditorTooltip as ɵf, QMSCKEditorImageMapComponent as ɵg, QMSCKEditorImageMap as ɵh, QMSCKEditorUploadService as ɵi, QMSCKEditorBpmnData as ɵj, QMSCKEditorAboutComponent as ɵk };
|
21148
21290
|
//# sourceMappingURL=qms-angular.js.map
|