qms-angular 1.1.19 → 1.1.20
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 +23 -92
- package/bundles/qms-angular.umd.js.map +1 -1
- package/esm2015/lib/components/select-one/select-one.component.js +7 -16
- package/esm2015/lib/components/tree/model/tree-flat-node.model.js +1 -1
- package/esm2015/lib/components/tree/model/tree-node.model.js +1 -1
- package/esm2015/lib/components/tree/tree.component.js +18 -79
- package/esm2015/lib/components/tree/tree.function.js +2 -1
- package/fesm2015/qms-angular.js +23 -91
- package/fesm2015/qms-angular.js.map +1 -1
- package/lib/components/select-one/select-one.component.d.ts +0 -1
- package/lib/components/tree/model/tree-flat-node.model.d.ts +1 -0
- package/lib/components/tree/model/tree-node.model.d.ts +1 -0
- package/lib/components/tree/tree.component.d.ts +4 -1
- package/package.json +1 -1
- package/qms-angular.metadata.json +1 -1
- package/src/lib/components/select-one/select-one.component.scss +77 -80
@@ -5469,6 +5469,7 @@
|
|
5469
5469
|
node.name = keyObj["name"];
|
5470
5470
|
node.parentId = keyObj["parentId"];
|
5471
5471
|
node.levelType = keyObj["levelType"];
|
5472
|
+
node.markedGetChildren = keyObj["markedGetChildren"];
|
5472
5473
|
if (value != null) {
|
5473
5474
|
if (typeof value === 'object') {
|
5474
5475
|
node.children = _this.buildArrayTree(value, level + 1);
|
@@ -5607,7 +5608,7 @@
|
|
5607
5608
|
this.idCheckIcon = '';
|
5608
5609
|
this.listChildNode = [];
|
5609
5610
|
this.dataType = DataType$1;
|
5610
|
-
this.
|
5611
|
+
this._transformer = function (node, level) {
|
5611
5612
|
var _a;
|
5612
5613
|
var checkHasChild = true;
|
5613
5614
|
if (!node.children) {
|
@@ -5635,10 +5636,11 @@
|
|
5635
5636
|
hasChild: checkHasChild,
|
5636
5637
|
parentId: node.parentId,
|
5637
5638
|
disabled: false,
|
5638
|
-
levelType: node.levelType
|
5639
|
+
levelType: node.levelType,
|
5640
|
+
markedGetChildren: node.markedGetChildren || false
|
5639
5641
|
};
|
5640
5642
|
};
|
5641
|
-
this.treeFlattener = new tree$1.MatTreeFlattener(this.
|
5643
|
+
this.treeFlattener = new tree$1.MatTreeFlattener(this._transformer, function (node) {
|
5642
5644
|
return node.level;
|
5643
5645
|
}, function (node) {
|
5644
5646
|
return node.expandable;
|
@@ -5848,7 +5850,7 @@
|
|
5848
5850
|
this_3.disabledList.forEach(function (el) {
|
5849
5851
|
var _a;
|
5850
5852
|
if (((_a = _this.treeControl.dataNodes[i].id) === null || _a === void 0 ? void 0 : _a.toLowerCase()) === (el === null || el === void 0 ? void 0 : el.toLowerCase())) {
|
5851
|
-
|
5853
|
+
// this.treeControl.expand(this.treeControl.dataNodes[i]);
|
5852
5854
|
}
|
5853
5855
|
});
|
5854
5856
|
};
|
@@ -6102,85 +6104,22 @@
|
|
6102
6104
|
this.selectFolderEvent.emit(node);
|
6103
6105
|
};
|
6104
6106
|
TreeComponent.prototype.onExpandNode = function (node, isExpandNode) {
|
6105
|
-
|
6106
|
-
|
6107
|
-
|
6108
|
-
|
6109
|
-
|
6110
|
-
|
6111
|
-
|
6112
|
-
node.itemType = this.checkDataTypeSelectNode(node);
|
6113
|
-
this.selectNodeEvent.emit(node);
|
6114
|
-
}
|
6115
|
-
return;
|
6116
|
-
}
|
6117
|
-
if (window[RelatedConst$1.IS_DISPLAY_SEARCH_RESULT]) {
|
6118
|
-
window.postMessage(RelatedConst$1.HIDE_SEARCH_RESULT, '*');
|
6119
|
-
}
|
6120
|
-
// set useExpandFeature = true to improve performance of tree loading
|
6121
|
-
if (!isExpandNode || !this.useExpandFeature) {
|
6122
|
-
for (var i = 0; i < this.arrIndex.length; i++) {
|
6123
|
-
if (this.arrIndex[i] === node.id) {
|
6124
|
-
this.arrIndex.splice(i, 1);
|
6125
|
-
}
|
6126
|
-
}
|
6127
|
-
if (isExpandNode && !this.expandOnTitleClick) {
|
6107
|
+
if (isExpandNode && !this.expandOnTitleClick) {
|
6108
|
+
if (!node.markedGetChildren && !this.treeControl.isExpanded(node)) {
|
6109
|
+
this.treeControl.dataNodes.forEach(function (x) {
|
6110
|
+
if (x.parentId === node.parentId && x.id === node.id) {
|
6111
|
+
x.markedGetChildren = true;
|
6112
|
+
}
|
6113
|
+
});
|
6128
6114
|
this.nodeExpandEvent.emit(node);
|
6129
6115
|
}
|
6130
|
-
return;
|
6131
|
-
}
|
6132
|
-
// get array index to expand node after refresh datasource
|
6133
|
-
var index = 0;
|
6134
|
-
var isChange = false;
|
6135
|
-
var isRemove = false;
|
6136
|
-
this.arrIndex.push(node.id);
|
6137
|
-
var childArray = this.treeData.filter(function (x) {
|
6138
|
-
return x.parentId === node.id;
|
6139
|
-
});
|
6140
|
-
var rootId = '0';
|
6141
|
-
var parentElement;
|
6142
|
-
var childrenList;
|
6143
|
-
if (childArray.length === 0) {
|
6144
|
-
return;
|
6145
6116
|
}
|
6146
|
-
|
6147
|
-
|
6148
|
-
|
6149
|
-
|
6150
|
-
// get child node from original datasource
|
6151
|
-
var child = _this.getChildNode(item.rootId, childArray);
|
6152
|
-
rootId = item.rootId;
|
6153
|
-
index = _this.getNodeIndex(child.id, undefined, _this.dataSource['_treeControl'].dataNodes);
|
6154
|
-
if (index > -1) {
|
6155
|
-
return;
|
6156
|
-
}
|
6157
|
-
// add child node to expand node
|
6158
|
-
parentElement = _this.findChildNode(node.id, _this.dataSource.data);
|
6159
|
-
if (parentElement) {
|
6160
|
-
// temporary remove all node without children => purpose to add node folder first
|
6161
|
-
if (!isRemove) {
|
6162
|
-
childrenList = __spreadArray([], __read(parentElement.children));
|
6163
|
-
_this.removeChildren(parentElement);
|
6164
|
-
isRemove = true;
|
6165
|
-
}
|
6166
|
-
// add node folder first
|
6167
|
-
parentElement.children.push(child);
|
6168
|
-
isChange = true;
|
6169
|
-
}
|
6170
|
-
});
|
6171
|
-
// add node without children again
|
6172
|
-
if (isRemove) {
|
6173
|
-
this.addChildren(parentElement, childrenList);
|
6174
|
-
}
|
6175
|
-
// refresh data and expand tree node from root node
|
6176
|
-
if (isChange) {
|
6177
|
-
this.refreshTreeData();
|
6178
|
-
this.arrIndex.forEach(function (item) {
|
6179
|
-
index = _this.getNodeIndex(item, undefined, _this.dataSource['_treeControl'].dataNodes);
|
6180
|
-
_this.treeControl.expand(_this.treeControl.dataNodes[index]);
|
6181
|
-
});
|
6182
|
-
isChange = false;
|
6117
|
+
else {
|
6118
|
+
this.idCheckIcon = this.idToCheckSelectOne(node.id, node.parentId);
|
6119
|
+
node.itemType = this.checkDataTypeSelectNode(node);
|
6120
|
+
this.selectNodeEvent.emit(node);
|
6183
6121
|
}
|
6122
|
+
return;
|
6184
6123
|
};
|
6185
6124
|
TreeComponent.prototype.removeChildren = function (parentElement) {
|
6186
6125
|
if (parentElement.children) {
|
@@ -27075,13 +27014,6 @@
|
|
27075
27014
|
};
|
27076
27015
|
SelectOneDialog.prototype.ngAfterViewChecked = function () {
|
27077
27016
|
this.cdRef.detectChanges();
|
27078
|
-
if (this.filteredOptions && this.filteredOptions.length) {
|
27079
|
-
this.autoComplete.openPanel();
|
27080
|
-
this.setResultHeight();
|
27081
|
-
}
|
27082
|
-
else if (this.autoComplete) {
|
27083
|
-
this.autoComplete.closePanel();
|
27084
|
-
}
|
27085
27017
|
};
|
27086
27018
|
SelectOneDialog.prototype.getDataTypeId = function (moduleId) {
|
27087
27019
|
var itemType;
|
@@ -27148,9 +27080,6 @@
|
|
27148
27080
|
}
|
27149
27081
|
return this.filteredOptions;
|
27150
27082
|
};
|
27151
|
-
SelectOneDialog.prototype.showSearchResult = function () {
|
27152
|
-
this.autoComplete.openPanel();
|
27153
|
-
};
|
27154
27083
|
SelectOneDialog.prototype.displayRelated = function (related) {
|
27155
27084
|
return related ? related.itemName : undefined;
|
27156
27085
|
};
|
@@ -27358,6 +27287,9 @@
|
|
27358
27287
|
};
|
27359
27288
|
SelectOneDialog.prototype.selectNodeTreeEvent = function (node) {
|
27360
27289
|
var _a, _b;
|
27290
|
+
if (node.disabled) {
|
27291
|
+
return;
|
27292
|
+
}
|
27361
27293
|
var position = -1;
|
27362
27294
|
var parentName = '';
|
27363
27295
|
var itemNumberId = '';
|
@@ -27405,9 +27337,9 @@
|
|
27405
27337
|
SelectOneDialog.decorators = [
|
27406
27338
|
{ type: i0.Component, args: [{
|
27407
27339
|
selector: 'qms-select-one',
|
27408
|
-
template: "<div
|
27340
|
+
template: "<div class=\"qmslib__related__popup__container\">\r\n <div>\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 class=\"module-name\" mat-dialog-content>\r\n <span>{{ moduleName }}</span>\r\n </div>\r\n </div>\r\n\r\n <div class=\"input__field\">\r\n <input type=\"text\" placeholder=\"{{ LANG.SEARCH }}\" matInput [formControl]=\"myControl\" [matAutocomplete]=\"auto\" />\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 mat-autocomplete autoActiveFirstOption #auto=\"matAutocomplete\">\r\n\r\n <div class=\"search__module-result\" *ngIf=\"filteredOptions.length\">\r\n <mat-option class=\"search__option\" *ngFor=\"let option of getModuleFilteredOptions()\" [value]=\"option\"\r\n (click)=\"selectItemSearched(option)\">\r\n <qms-list-item class=\"item-suggestion\" type=\"image-square\">\r\n <mat-icon leading-icon type=\"image-square\" [svgIcon]=\"getNodeIcon(option)\"></mat-icon>\r\n <div qms-list-header>\r\n <div qms-line type=\"caption\" qms-tool-tip=\"{{\r\n isEllipsisActive(searchItemResult) ? option.parentName : ''\r\n }}\" mode=\"dark\" *ngIf=\"getParentName(option)\">\r\n <span #searchItemResult class=\"search__result__parent-name\">\r\n {{ option.parentName }}\r\n </span>\r\n </div>\r\n <div qms-line type=\"subtitle\" class=\"search__option-name\">\r\n {{ option.itemName }}\r\n </div>\r\n <div class=\"caption\" *ngIf=\"option.breadcumbs && option.breadcumbs.length\">\r\n <qms-breadcrumb class=\"breadcrumb-container\" type=\"table\" numDisplayItem=\"1\" [nodes]=\"option.breadcumbs\">\r\n </qms-breadcrumb>\r\n </div>\r\n </div>\r\n <div qms-line color=\"default-subtitle\" *ngIf=\"getItemId(option)\">\r\n <span>\r\n <mat-icon class=\"material-icons-outlined search__description-icon\">\r\n local_offer\r\n </mat-icon>\r\n </span>\r\n {{ getItemId(option) }}\r\n </div>\r\n </qms-list-item>\r\n </mat-option>\r\n </div>\r\n </mat-autocomplete>\r\n\r\n <div class=\"row\">\r\n <div class=\"qms-scrollbar col-12 qmslib_related_popup_content panel__content_item\">\r\n <mat-expansion-panel hideToggle id=\"qmslib_related_popup_common_001\" [expanded]=\"isCommonExpanded\"\r\n (opened)=\"isCommonExpanded = true\" (closed)=\"isCommonExpanded = false\" class=\"panel-tree\">\r\n <div id=\"qmslib_related_popup_common_002\">\r\n <qms-tree [treeData]=\"treeData\" [treeConfig]=\"treeConfig\" [selectedData]=\"selectedData\"\r\n [selectedRiskData]=\"selectedRiskData\" [disabledList]=\"disabledList\"\r\n (selectNodeEvent)=\"selectNodeTreeEvent($event)\" (nodeExpandEvent)=\"nodeExpandEvent($event)\"\r\n [expandOnTitleClick]=\"false\" [expandToChildNode]=\"expandToChildNode\"></qms-tree>\r\n </div>\r\n </mat-expansion-panel>\r\n </div>\r\n </div>\r\n\r\n <!-- <div *ngIf=\"checkedNodeList.length\" class=\"line__divider\"></div>\r\n\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 (click)=\"removeCheckedNodeList()\">cancel</mat-icon>\r\n </button>\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 *ngIf=\"!checkedNodeList.length\" qms-btn style=\"margin-top: 7px\" (click)=\"onAddClick()\">\r\n {{ LANG.ADD }}\r\n </button>\r\n <button *ngIf=\"checkedNodeList.length\" qms-btn style=\"margin-top: 0px\" (click)=\"onAddClick()\">\r\n {{ LANG.ADD }} ({{ checkedNodeList.length }})\r\n </button>\r\n <button qms-btn-text [ngStyle]=\"{ 'margin-top': checkedNodeList.length ? '0px' : '7px' }\" (click)=\"onCloseClick()\">\r\n {{ LANG.CANCEL }}\r\n </button>\r\n </div>\r\n</div>",
|
27409
27341
|
encapsulation: i0.ViewEncapsulation.None,
|
27410
|
-
styles: ["::-webkit-scrollbar{width:12px}::-webkit-scrollbar-track{background:rgba(0,0,0,.12);background-clip:content-box}::-webkit-scrollbar-thumb{background:rgba(0,0,0,.38);border-radius:20px;width:4px;border:4px solid transparent;background-clip:content-box}::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.5);background-clip:content-box;border:4px solid transparent}.qms__popup .button__close{float:right;top:-24px;right:-24px;cursor:pointer}.qms__danger button{border:none;color:var(--text-white);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:var(--button-red-background);margin-left:10px}.qms__danger .yellow{background-color:var(--button-yellow-background);margin-left:10px;color:var(--popup-title-color)}.qms__danger .green{background-color:var(--button-green-background);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:var(--button-background)}.confirm__button__groups .confirm:hover{background:var(--primary-button-background-color);color:var(--primary-button-text-color)}.confirm__button__groups .confirm:disabled{cursor:not-allowed}.confirm__button__groups .cancel{background:var(--button-background)}.confirm__button__groups .cancel:hover{background:var(--primary-button-background-color);color:var(--primary-button-text-color)}.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:var(--background-input-text)}.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:var(--related-item-background);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:var(--related-mat-icon-color);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:320px}
|
27342
|
+
styles: ["::-webkit-scrollbar{width:12px}::-webkit-scrollbar-track{background:rgba(0,0,0,.12);background-clip:content-box}::-webkit-scrollbar-thumb{background:rgba(0,0,0,.38);border-radius:20px;width:4px;border:4px solid transparent;background-clip:content-box}::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.5);background-clip:content-box;border:4px solid transparent}.qms__popup .button__close{float:right;top:-24px;right:-24px;cursor:pointer}.qms__danger button{border:none;color:var(--text-white);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:var(--button-red-background);margin-left:10px}.qms__danger .yellow{background-color:var(--button-yellow-background);margin-left:10px;color:var(--popup-title-color)}.qms__danger .green{background-color:var(--button-green-background);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:var(--button-background)}.confirm__button__groups .confirm:hover{background:var(--primary-button-background-color);color:var(--primary-button-text-color)}.confirm__button__groups .confirm:disabled{cursor:not-allowed}.confirm__button__groups .cancel{background:var(--button-background)}.confirm__button__groups .cancel:hover{background:var(--primary-button-background-color);color:var(--primary-button-text-color)}.qms-list-item.item-suggestion .image-square.wrap-image{width:2.5rem!important;height:100%!important;background:transparent;align-self:center;margin-right:0}.mat-option:focus:not(.mat-option-disabled),::ng-deep .mat-option:hover:not(.mat-option-disabled){background:transparent!important}.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:var(--background-input-text)}.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:var(--related-item-background);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:var(--related-mat-icon-color);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:320px}.search__module-result{margin:1.5rem;padding:0 0 .5rem}.search__module-result .search__module-title{font-size:14px;font-weight:600}.search__module-result .search__option{height:auto;line-height:normal;padding:0;border-bottom:1px solid #e0e0e0}.search__module-result .search__option .qms-list-item.mat-2-line.image-item{height:auto}.search__module-result .search__option .qms-list-item-content{margin:0;border-bottom:none}.search__module-result .search__option .qms-list-item-content .material-icons-outlined.leading-icon,.search__module-result .search__option .qms-list-item-content mat-icon.leading-icon{padding:4px 0 4px 4px}.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}.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}.search__module-result .search__option .qms-list-item-content .default-subtitle{color:rgba(0,0,0,.38)}.search__module-result .search__option .qms-list-item-content .search__description-icon{margin-right:0;width:12px;height:12px;font-size:12px}.search__module-result .search__option .qms-list-item-content .qms-list-text{border-bottom:none;height:auto}.search__module-result .search__option .qms-list-item-content .breadcrumb-container .qms-breadcrumb-item .mat-icon{font-size:16px!important;padding-bottom:1px}.search__module-result .search__option .mat-option:focus:not(.mat-option-disabled),.search__module-result .search__option.mat-option:hover:not(.mat-option-disabled){background:transparent!important}.search__module-result svg{display:block}.module-name{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:10.25rem}"]
|
27411
27343
|
},] }
|
27412
27344
|
];
|
27413
27345
|
SelectOneDialog.ctorParameters = function () { return [
|
@@ -27422,7 +27354,6 @@
|
|
27422
27354
|
]; };
|
27423
27355
|
SelectOneDialog.propDecorators = {
|
27424
27356
|
dataTrees: [{ type: i0.ViewChildren, args: [TreeComponent, {},] }],
|
27425
|
-
autoComplete: [{ type: i0.ViewChild, args: ['autoCompleteInputSearch', { read: autocomplete.MatAutocompleteTrigger, static: true },] }],
|
27426
27357
|
onMessage: [{ type: i0.HostListener, args: ['window:message', ['$event'],] }]
|
27427
27358
|
};
|
27428
27359
|
|