raise-common-lib 0.0.27 → 0.0.29
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/raise-common-lib.umd.js +54 -8
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/layout/grid-box/index.component.js +21 -7
- package/esm2015/lib/layout/multi-tab/index.component.js +12 -2
- package/esm2015/lib/layout/page-list/index.component.js +20 -7
- package/esm5/lib/layout/grid-box/index.component.js +24 -7
- package/esm5/lib/layout/multi-tab/index.component.js +16 -2
- package/esm5/lib/layout/page-list/index.component.js +23 -7
- package/fesm2015/raise-common-lib.js +45 -9
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +55 -9
- package/fesm5/raise-common-lib.js.map +1 -1
- package/lib/layout/grid-box/index.component.d.ts +5 -2
- package/lib/layout/multi-tab/index.component.d.ts +1 -0
- package/lib/layout/page-list/index.component.d.ts +5 -2
- package/package.json +1 -1
- package/raise-common-lib.metadata.json +1 -1
- package/src/assets/style/reset/grid.scss +4 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, Component, ChangeDetectorRef, ViewChild, Input, Output, ContentChild,
|
|
1
|
+
import { EventEmitter, Component, ChangeDetectorRef, ViewChild, Input, Output, ContentChild, Injectable, ɵɵdefineInjectable, ɵɵinject, HostListener, ComponentFactoryResolver, ViewContainerRef, ViewChildren, Inject, NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
2
2
|
import { GridModule, PagerModule, GridAllModule, PageService, SortService, FilterService, ExcelExportService, EditService, ResizeService, ToolbarService, ColumnChooserService, AggregateService, ColumnMenuService, DetailRowService, SelectionService, GroupService } from '@syncfusion/ej2-angular-grids';
|
|
3
3
|
import { debounce } from 'lodash';
|
|
4
4
|
import { NavigationEnd, Router, ActivatedRoute } from '@angular/router';
|
|
@@ -1043,6 +1043,7 @@ class RsPageListComponent {
|
|
|
1043
1043
|
constructor() {
|
|
1044
1044
|
this.customPageTitle = false;
|
|
1045
1045
|
this.isInner = false;
|
|
1046
|
+
this.hasWholeToolbarSlot = false;
|
|
1046
1047
|
}
|
|
1047
1048
|
/**
|
|
1048
1049
|
* @return {?}
|
|
@@ -1055,6 +1056,13 @@ class RsPageListComponent {
|
|
|
1055
1056
|
this.onSeach();
|
|
1056
1057
|
}), 300);
|
|
1057
1058
|
}
|
|
1059
|
+
/**
|
|
1060
|
+
* @return {?}
|
|
1061
|
+
*/
|
|
1062
|
+
ngAfterContentInit() {
|
|
1063
|
+
// 检测是否传入了 wholeToolbarSlot
|
|
1064
|
+
this.hasWholeToolbarSlot = !!this.wholeToolbarSlot;
|
|
1065
|
+
}
|
|
1058
1066
|
/**
|
|
1059
1067
|
* @return {?}
|
|
1060
1068
|
*/
|
|
@@ -1070,13 +1078,14 @@ class RsPageListComponent {
|
|
|
1070
1078
|
}
|
|
1071
1079
|
RsPageListComponent.decorators = [
|
|
1072
1080
|
{ type: Component, args: [{
|
|
1073
|
-
selector:
|
|
1074
|
-
template: "<div class=\"rs-page-list-wrap\" [ngClass]=\"{ 'is-not-inner': !isInner }\">\r\n <ng-container *ngIf=\"customPageTitle; else defaultTitle\">\r\n <ng-content select=\"[titleSlot]\"></ng-content>\r\n </ng-container>\r\n <ng-template #defaultTitle>\r\n <div class=\"rs-page-title\" *ngIf=\"pageTitle\">{{ pageTitle }}</div>\r\n </ng-template>\r\n <div class=\"rs-content-wrap\">\r\n <div class=\"rs-toolbar-wrap\">\r\n <div class=\"rs-left-col\">\r\n <ng-content select=\"[leftToolbarBtnSlot]\"></ng-content>\r\n </div>\r\n <div class=\"rs-right-col\">\r\n <ng-content select=\"[rightToolbarBtnSlot]\"></ng-content>\r\n <div class=\"rs-search-input\">\r\n <ejs-textbox\r\n type=\"text\"\r\n class=\"e-input\"\r\n [(ngModel)]=\"searchValue\"\r\n (input)=\"onInput()\"\r\n placeholder=\"Search all fields\"\r\n [showClearButton]=\"true\"\r\n autocomplete=\"off\"\r\n ></ejs-textbox>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"rs-grid-wrap\">\r\n <ng-content select=\"[gridSlot]\"></ng-content>\r\n </div>\r\n </div>\r\n</div>\r\n",
|
|
1075
|
-
styles: [".rs-page-list-wrap{height:100%;display:flex;flex-direction:column;position:relative;margin:0 auto;max-width:1885px}.rs-page-list-wrap .rs-page-title{font-family:var(--rs-font-family);font-size:var(--rs-page-title-font-size);font-weight:700;text-align:left;color:var(--rs-page-title-color);display:flex;align-items:center;padding:16px 8px 12px 20px}.rs-page-list-wrap .rs-content-wrap{display:flex;flex-direction:column;flex:1;height:0}.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap{display:flex;justify-content:space-between;align-items:center;margin-bottom:4px}.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-left-col,.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-right-col{display:flex;gap:12px}.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-left-col ::ng-deep .e-btn,.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-right-col ::ng-deep .e-btn{height:28px}.rs-page-list-wrap .rs-content-wrap .rs-grid-wrap{flex:1;height:0}.rs-page-list-wrap.is-not-inner .rs-content-wrap{border-radius:15px;padding:12px 20px;background:#fff;border:1px solid var(--rs-border-color);box-shadow:0 0 4px 0 rgba(0,0,0,.1)}.rs-page-list-wrap .rs-search-input{width:240px}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group{border-radius:14px!important}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group.e-input-focus,.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group:hover{box-shadow:0 0 3px 0 rgba(31,123,255,.4)!important;border-color:var(--rs-input-hover-border-color)!important}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group.e-input-focus input.e-input,.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group:hover input.e-input{box-shadow:none!important}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group input.e-input{width:calc(100% - 50px);height:26px}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group input.e-input:hover{box-shadow:none!important}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group::before{content:\"\"!important;margin:6px 0 0 8px;display:block;width:16px;height:16px;background-image:url(/assets/img/search.svg);background-size:cover;background-position:center}"]
|
|
1081
|
+
selector: "rs-page-list",
|
|
1082
|
+
template: "<div class=\"rs-page-list-wrap\" [ngClass]=\"{ 'is-not-inner': !isInner }\">\r\n <ng-container *ngIf=\"customPageTitle; else defaultTitle\">\r\n <ng-content select=\"[titleSlot]\"></ng-content>\r\n </ng-container>\r\n <ng-template #defaultTitle>\r\n <div class=\"rs-page-title\" *ngIf=\"pageTitle\">{{ pageTitle }}</div>\r\n </ng-template>\r\n <div class=\"rs-content-wrap\">\r\n <div class=\"rs-toolbar-wrap\">\r\n <div class=\"rs-whole-bar\" *ngIf=\"hasWholeToolbarSlot\">\r\n <ng-content select=\"[wholeToolbarSlot]\"></ng-content>\r\n </div>\r\n <div class=\"rs-left-col\" *ngIf=\"!hasWholeToolbarSlot\">\r\n <ng-content select=\"[leftToolbarBtnSlot]\"></ng-content>\r\n </div>\r\n <div class=\"rs-right-col\" *ngIf=\"!hasWholeToolbarSlot\">\r\n <ng-content select=\"[rightToolbarBtnSlot]\"></ng-content>\r\n <div class=\"rs-search-input\">\r\n <ejs-textbox\r\n type=\"text\"\r\n class=\"e-input\"\r\n [(ngModel)]=\"searchValue\"\r\n (input)=\"onInput()\"\r\n placeholder=\"Search all fields\"\r\n [showClearButton]=\"true\"\r\n autocomplete=\"off\"\r\n ></ejs-textbox>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"rs-grid-wrap\">\r\n <ng-content select=\"[gridSlot]\"></ng-content>\r\n </div>\r\n </div>\r\n</div>\r\n",
|
|
1083
|
+
styles: [".rs-page-list-wrap{height:100%;display:flex;flex-direction:column;position:relative;margin:0 auto;max-width:1885px}.rs-page-list-wrap .rs-page-title{font-family:var(--rs-font-family);font-size:var(--rs-page-title-font-size);font-weight:700;text-align:left;color:var(--rs-page-title-color);display:flex;align-items:center;padding:16px 8px 12px 20px}.rs-page-list-wrap .rs-content-wrap{display:flex;flex-direction:column;flex:1;height:0}.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap{display:flex;justify-content:space-between;align-items:center;margin-bottom:4px}.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-whole-bar{width:100%}.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-left-col,.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-right-col{display:flex;gap:12px}.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-left-col ::ng-deep .e-btn,.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-right-col ::ng-deep .e-btn{height:28px}.rs-page-list-wrap .rs-content-wrap .rs-grid-wrap{flex:1;height:0}.rs-page-list-wrap.is-not-inner .rs-content-wrap{border-radius:15px;padding:12px 20px;background:#fff;border:1px solid var(--rs-border-color);box-shadow:0 0 4px 0 rgba(0,0,0,.1)}.rs-page-list-wrap .rs-search-input{width:240px}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group{border-radius:14px!important}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group.e-input-focus,.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group:hover{box-shadow:0 0 3px 0 rgba(31,123,255,.4)!important;border-color:var(--rs-input-hover-border-color)!important}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group.e-input-focus input.e-input,.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group:hover input.e-input{box-shadow:none!important}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group input.e-input{width:calc(100% - 50px);height:26px}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group input.e-input:hover{box-shadow:none!important}.rs-page-list-wrap .rs-search-input ::ng-deep .e-input-group::before{content:\"\"!important;margin:6px 0 0 8px;display:block;width:16px;height:16px;background-image:url(/assets/img/search.svg);background-size:cover;background-position:center}"]
|
|
1076
1084
|
}] }
|
|
1077
1085
|
];
|
|
1078
1086
|
RsPageListComponent.propDecorators = {
|
|
1079
1087
|
gridContent: [{ type: ContentChild, args: [CommonGridComponent, { static: true },] }],
|
|
1088
|
+
wholeToolbarSlot: [{ type: ContentChild, args: ["wholeToolbarSlot", { static: true },] }],
|
|
1080
1089
|
pageTitle: [{ type: Input }],
|
|
1081
1090
|
customPageTitle: [{ type: Input }],
|
|
1082
1091
|
isInner: [{ type: Input }]
|
|
@@ -1085,6 +1094,8 @@ if (false) {
|
|
|
1085
1094
|
/** @type {?} */
|
|
1086
1095
|
RsPageListComponent.prototype.gridContent;
|
|
1087
1096
|
/** @type {?} */
|
|
1097
|
+
RsPageListComponent.prototype.wholeToolbarSlot;
|
|
1098
|
+
/** @type {?} */
|
|
1088
1099
|
RsPageListComponent.prototype.pageTitle;
|
|
1089
1100
|
/** @type {?} */
|
|
1090
1101
|
RsPageListComponent.prototype.customPageTitle;
|
|
@@ -1096,6 +1107,8 @@ if (false) {
|
|
|
1096
1107
|
*/
|
|
1097
1108
|
RsPageListComponent.prototype.debouncedInput;
|
|
1098
1109
|
/** @type {?} */
|
|
1110
|
+
RsPageListComponent.prototype.hasWholeToolbarSlot;
|
|
1111
|
+
/** @type {?} */
|
|
1099
1112
|
RsPageListComponent.prototype.searchValue;
|
|
1100
1113
|
}
|
|
1101
1114
|
|
|
@@ -1164,6 +1177,7 @@ class GridBoxComponent {
|
|
|
1164
1177
|
constructor() {
|
|
1165
1178
|
this.customPageTitle = false;
|
|
1166
1179
|
this.isInner = false;
|
|
1180
|
+
this.hasWholeToolbarSlot = false;
|
|
1167
1181
|
}
|
|
1168
1182
|
/**
|
|
1169
1183
|
* @return {?}
|
|
@@ -1176,6 +1190,13 @@ class GridBoxComponent {
|
|
|
1176
1190
|
this.onSeach();
|
|
1177
1191
|
}), 300);
|
|
1178
1192
|
}
|
|
1193
|
+
/**
|
|
1194
|
+
* @return {?}
|
|
1195
|
+
*/
|
|
1196
|
+
ngAfterContentInit() {
|
|
1197
|
+
// 检测是否传入了 wholeToolbarSlot
|
|
1198
|
+
this.hasWholeToolbarSlot = !!this.wholeToolbarSlot;
|
|
1199
|
+
}
|
|
1179
1200
|
/**
|
|
1180
1201
|
* @return {?}
|
|
1181
1202
|
*/
|
|
@@ -1191,13 +1212,14 @@ class GridBoxComponent {
|
|
|
1191
1212
|
}
|
|
1192
1213
|
GridBoxComponent.decorators = [
|
|
1193
1214
|
{ type: Component, args: [{
|
|
1194
|
-
selector:
|
|
1195
|
-
template: "<div class=\"rs-grid-box\" [ngClass]=\"{ 'is-not-inner': !isInner }\">\r\n <div class=\"rs-toolbar-wrap\">\r\n <div class=\"rs-left-col\">\r\n <ng-content select=\"[leftToolbarBtnSlot]\"></ng-content>\r\n </div>\r\n <div class=\"rs-right-col\">\r\n <ng-content select=\"[rightToolbarBtnSlot]\"></ng-content>\r\n <div class=\"rs-search-input\">\r\n <ejs-textbox\r\n type=\"text\"\r\n class=\"e-input\"\r\n [(ngModel)]=\"searchValue\"\r\n (input)=\"onInput()\"\r\n placeholder=\"Search all fields\"\r\n [showClearButton]=\"true\"\r\n autocomplete=\"off\"\r\n ></ejs-textbox>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"rs-grid-wrap\">\r\n <ng-content select=\"[gridSlot]\"></ng-content>\r\n </div>\r\n</div>\r\n",
|
|
1196
|
-
styles: [":host{height:100%}.rs-grid-box{display:flex;flex-direction:column;height:100%}.rs-grid-box.is-not-inner{border-radius:15px;padding:12px 20px;background:#fff;border:1px solid var(--rs-border-color);box-shadow:0 0 4px 0 rgba(0,0,0,.1)}.rs-grid-box .rs-toolbar-wrap{display:flex;justify-content:space-between;align-items:center;margin-bottom:4px}.rs-grid-box .rs-toolbar-wrap .rs-left-col,.rs-grid-box .rs-toolbar-wrap .rs-right-col{display:flex;gap:12px}.rs-grid-box .rs-toolbar-wrap .rs-left-col ::ng-deep .e-btn,.rs-grid-box .rs-toolbar-wrap .rs-right-col ::ng-deep .e-btn{height:28px}.rs-grid-box .rs-grid-wrap{flex:1;height:0}.rs-grid-box .rs-search-input{width:240px}.rs-grid-box .rs-search-input ::ng-deep .e-input-group{border-radius:14px!important}.rs-grid-box .rs-search-input ::ng-deep .e-input-group.e-input-focus,.rs-grid-box .rs-search-input ::ng-deep .e-input-group:hover{box-shadow:0 0 3px 0 rgba(31,123,255,.4)!important;border-color:var(--rs-input-hover-border-color)!important}.rs-grid-box .rs-search-input ::ng-deep .e-input-group.e-input-focus input.e-input,.rs-grid-box .rs-search-input ::ng-deep .e-input-group:hover input.e-input{box-shadow:none!important}.rs-grid-box .rs-search-input ::ng-deep .e-input-group input.e-input{width:calc(100% - 50px);height:26px}.rs-grid-box .rs-search-input ::ng-deep .e-input-group input.e-input:hover{box-shadow:none!important}.rs-grid-box .rs-search-input ::ng-deep .e-input-group::before{content:\"\"!important;margin:6px 0 0 8px;display:block;width:16px;height:16px;background-image:url(/assets/img/search.svg);background-size:cover;background-position:center}"]
|
|
1215
|
+
selector: "rs-grid-box",
|
|
1216
|
+
template: "<div class=\"rs-grid-box\" [ngClass]=\"{ 'is-not-inner': !isInner }\">\r\n <div class=\"rs-toolbar-wrap\">\r\n <div class=\"rs-whole-bar\" *ngIf=\"hasWholeToolbarSlot\">\r\n <ng-content select=\"[wholeToolbarSlot]\"></ng-content>\r\n </div>\r\n <div class=\"rs-left-col\" *ngIf=\"!hasWholeToolbarSlot\">\r\n <ng-content select=\"[leftToolbarBtnSlot]\"></ng-content>\r\n </div>\r\n <div class=\"rs-right-col\" *ngIf=\"!hasWholeToolbarSlot\">\r\n <ng-content select=\"[rightToolbarBtnSlot]\"></ng-content>\r\n <div class=\"rs-search-input\">\r\n <ejs-textbox\r\n type=\"text\"\r\n class=\"e-input\"\r\n [(ngModel)]=\"searchValue\"\r\n (input)=\"onInput()\"\r\n placeholder=\"Search all fields\"\r\n [showClearButton]=\"true\"\r\n autocomplete=\"off\"\r\n ></ejs-textbox>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"rs-grid-wrap\">\r\n <ng-content select=\"[gridSlot]\"></ng-content>\r\n </div>\r\n</div>\r\n",
|
|
1217
|
+
styles: [":host{height:100%}.rs-grid-box{display:flex;flex-direction:column;height:100%}.rs-grid-box.is-not-inner{border-radius:15px;padding:12px 20px;background:#fff;border:1px solid var(--rs-border-color);box-shadow:0 0 4px 0 rgba(0,0,0,.1)}.rs-grid-box .rs-toolbar-wrap{display:flex;justify-content:space-between;align-items:center;margin-bottom:4px}.rs-grid-box .rs-toolbar-wrap .rs-whole-bar{width:100%}.rs-grid-box .rs-toolbar-wrap .rs-left-col,.rs-grid-box .rs-toolbar-wrap .rs-right-col{display:flex;gap:12px}.rs-grid-box .rs-toolbar-wrap .rs-left-col ::ng-deep .e-btn,.rs-grid-box .rs-toolbar-wrap .rs-right-col ::ng-deep .e-btn{height:28px}.rs-grid-box .rs-grid-wrap{flex:1;height:0}.rs-grid-box .rs-search-input{width:240px}.rs-grid-box .rs-search-input ::ng-deep .e-input-group{border-radius:14px!important}.rs-grid-box .rs-search-input ::ng-deep .e-input-group.e-input-focus,.rs-grid-box .rs-search-input ::ng-deep .e-input-group:hover{box-shadow:0 0 3px 0 rgba(31,123,255,.4)!important;border-color:var(--rs-input-hover-border-color)!important}.rs-grid-box .rs-search-input ::ng-deep .e-input-group.e-input-focus input.e-input,.rs-grid-box .rs-search-input ::ng-deep .e-input-group:hover input.e-input{box-shadow:none!important}.rs-grid-box .rs-search-input ::ng-deep .e-input-group input.e-input{width:calc(100% - 50px);height:26px}.rs-grid-box .rs-search-input ::ng-deep .e-input-group input.e-input:hover{box-shadow:none!important}.rs-grid-box .rs-search-input ::ng-deep .e-input-group::before{content:\"\"!important;margin:6px 0 0 8px;display:block;width:16px;height:16px;background-image:url(/assets/img/search.svg);background-size:cover;background-position:center}"]
|
|
1197
1218
|
}] }
|
|
1198
1219
|
];
|
|
1199
1220
|
GridBoxComponent.propDecorators = {
|
|
1200
|
-
gridContent: [{ type: ContentChild, args: [
|
|
1221
|
+
gridContent: [{ type: ContentChild, args: [CommonGridComponent, { static: true },] }],
|
|
1222
|
+
wholeToolbarSlot: [{ type: ContentChild, args: ["wholeToolbarSlot", { static: true },] }],
|
|
1201
1223
|
pageTitle: [{ type: Input }],
|
|
1202
1224
|
customPageTitle: [{ type: Input }],
|
|
1203
1225
|
isInner: [{ type: Input }]
|
|
@@ -1206,6 +1228,8 @@ if (false) {
|
|
|
1206
1228
|
/** @type {?} */
|
|
1207
1229
|
GridBoxComponent.prototype.gridContent;
|
|
1208
1230
|
/** @type {?} */
|
|
1231
|
+
GridBoxComponent.prototype.wholeToolbarSlot;
|
|
1232
|
+
/** @type {?} */
|
|
1209
1233
|
GridBoxComponent.prototype.pageTitle;
|
|
1210
1234
|
/** @type {?} */
|
|
1211
1235
|
GridBoxComponent.prototype.customPageTitle;
|
|
@@ -1217,6 +1241,8 @@ if (false) {
|
|
|
1217
1241
|
*/
|
|
1218
1242
|
GridBoxComponent.prototype.debouncedInput;
|
|
1219
1243
|
/** @type {?} */
|
|
1244
|
+
GridBoxComponent.prototype.hasWholeToolbarSlot;
|
|
1245
|
+
/** @type {?} */
|
|
1220
1246
|
GridBoxComponent.prototype.searchValue;
|
|
1221
1247
|
}
|
|
1222
1248
|
|
|
@@ -1705,7 +1731,17 @@ class MultiTabComponent {
|
|
|
1705
1731
|
}
|
|
1706
1732
|
}
|
|
1707
1733
|
}));
|
|
1708
|
-
|
|
1734
|
+
}
|
|
1735
|
+
/**
|
|
1736
|
+
* @return {?}
|
|
1737
|
+
*/
|
|
1738
|
+
ngAfterViewInit() {
|
|
1739
|
+
setTimeout((/**
|
|
1740
|
+
* @return {?}
|
|
1741
|
+
*/
|
|
1742
|
+
() => {
|
|
1743
|
+
this.setEllipsisTitle();
|
|
1744
|
+
}), 50);
|
|
1709
1745
|
}
|
|
1710
1746
|
/**
|
|
1711
1747
|
* @param {?=} title
|