raise-common-lib 0.0.186 → 0.0.188
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 +160 -99
- 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/float-box/index.component.js +3 -1
- package/esm2015/lib/layout/drawer/index.component.js +15 -3
- package/esm2015/lib/layout/grid-box/index.component.js +15 -3
- package/esm2015/lib/layout/page-list/index.component.js +15 -3
- package/esm2015/lib/layout/rs-aside/index.component.js +3 -3
- package/esm2015/lib/service/drawer.service.js +10 -1
- package/esm5/lib/float-box/index.component.js +3 -1
- package/esm5/lib/layout/drawer/index.component.js +19 -3
- package/esm5/lib/layout/grid-box/index.component.js +19 -3
- package/esm5/lib/layout/page-list/index.component.js +19 -3
- package/esm5/lib/layout/rs-aside/index.component.js +3 -3
- package/esm5/lib/service/drawer.service.js +14 -1
- package/fesm2015/raise-common-lib.js +129 -84
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +160 -99
- package/fesm5/raise-common-lib.js.map +1 -1
- package/lib/layout/drawer/index.component.d.ts +1 -0
- package/lib/layout/grid-box/index.component.d.ts +3 -0
- package/lib/layout/page-list/index.component.d.ts +3 -0
- package/lib/service/drawer.service.d.ts +1 -0
- package/package.json +1 -1
- package/raise-common-lib.metadata.json +1 -1
- package/src/assets/img/grid-action-preview.svg +6 -6
|
@@ -1177,6 +1177,8 @@ class FloatBoxComponent {
|
|
|
1177
1177
|
*/
|
|
1178
1178
|
() => {
|
|
1179
1179
|
this.opened = "no";
|
|
1180
|
+
this.ref.markForCheck();
|
|
1181
|
+
this.ref.detectChanges();
|
|
1180
1182
|
this.openChange.emit(false);
|
|
1181
1183
|
}), 0);
|
|
1182
1184
|
}
|
|
@@ -2212,6 +2214,84 @@ if (false) {
|
|
|
2212
2214
|
TruncatedTextToggleComponent.prototype.showCollapseBtn;
|
|
2213
2215
|
}
|
|
2214
2216
|
|
|
2217
|
+
/**
|
|
2218
|
+
* @fileoverview added by tsickle
|
|
2219
|
+
* Generated from: lib/form/search-input/index.component.ts
|
|
2220
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
2221
|
+
*/
|
|
2222
|
+
class SearchInputComponent {
|
|
2223
|
+
constructor() {
|
|
2224
|
+
this.placeholder = "";
|
|
2225
|
+
this.hanleSearch = new EventEmitter();
|
|
2226
|
+
this.handleInput = new EventEmitter();
|
|
2227
|
+
this.searchValue = "";
|
|
2228
|
+
}
|
|
2229
|
+
/**
|
|
2230
|
+
* @return {?}
|
|
2231
|
+
*/
|
|
2232
|
+
ngOnInit() {
|
|
2233
|
+
this.getInfo();
|
|
2234
|
+
this.debouncedInput = debounce((/**
|
|
2235
|
+
* @return {?}
|
|
2236
|
+
*/
|
|
2237
|
+
() => {
|
|
2238
|
+
this.onSeach();
|
|
2239
|
+
}), 300);
|
|
2240
|
+
}
|
|
2241
|
+
/**
|
|
2242
|
+
* @return {?}
|
|
2243
|
+
*/
|
|
2244
|
+
getInfo() {
|
|
2245
|
+
this.translation = JSON.parse(localStorage.getItem("translation"));
|
|
2246
|
+
this.placeholder = this.placeholder || this.translation.SEARCH;
|
|
2247
|
+
}
|
|
2248
|
+
/**
|
|
2249
|
+
* @param {?} e
|
|
2250
|
+
* @return {?}
|
|
2251
|
+
*/
|
|
2252
|
+
onInput(e) {
|
|
2253
|
+
this.handleInput.emit(e.value);
|
|
2254
|
+
this.debouncedInput();
|
|
2255
|
+
}
|
|
2256
|
+
/**
|
|
2257
|
+
* @return {?}
|
|
2258
|
+
*/
|
|
2259
|
+
onSeach() {
|
|
2260
|
+
this.hanleSearch.emit(this.searchValue);
|
|
2261
|
+
}
|
|
2262
|
+
}
|
|
2263
|
+
SearchInputComponent.decorators = [
|
|
2264
|
+
{ type: Component, args: [{
|
|
2265
|
+
selector: "rs-search-input",
|
|
2266
|
+
template: "<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($event)\"\r\n [placeholder]=\"placeholder\"\r\n [showClearButton]=\"true\"\r\n autocomplete=\"off\"\r\n ></ejs-textbox>\r\n</div>\r\n",
|
|
2267
|
+
styles: [".rs-search-input{width:240px}.rs-search-input .e-textbox{display:block;box-shadow:none!important}.rs-search-input ::ng-deep .e-input-group{border-radius:14px!important}.rs-search-input ::ng-deep .e-input-group.e-input-focus,.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-search-input ::ng-deep .e-input-group.e-input-focus input.e-input,.rs-search-input ::ng-deep .e-input-group:hover input.e-input{box-shadow:none!important}.rs-search-input ::ng-deep .e-input-group input.e-input{width:calc(100% - 50px);height:24px!important;line-height:22px!important}.rs-search-input ::ng-deep .e-input-group input.e-input:hover{box-shadow:none!important}.rs-search-input ::ng-deep .e-input-group::before{content:\"\"!important;margin:5px 0 0 8px;display:block;width:16px;height:16px;background-image:url(/assets/img/search.svg);background-size:cover;background-position:center}"]
|
|
2268
|
+
}] }
|
|
2269
|
+
];
|
|
2270
|
+
/** @nocollapse */
|
|
2271
|
+
SearchInputComponent.ctorParameters = () => [];
|
|
2272
|
+
SearchInputComponent.propDecorators = {
|
|
2273
|
+
placeholder: [{ type: Input }],
|
|
2274
|
+
hanleSearch: [{ type: Output }],
|
|
2275
|
+
handleInput: [{ type: Output }]
|
|
2276
|
+
};
|
|
2277
|
+
if (false) {
|
|
2278
|
+
/** @type {?} */
|
|
2279
|
+
SearchInputComponent.prototype.placeholder;
|
|
2280
|
+
/** @type {?} */
|
|
2281
|
+
SearchInputComponent.prototype.hanleSearch;
|
|
2282
|
+
/** @type {?} */
|
|
2283
|
+
SearchInputComponent.prototype.handleInput;
|
|
2284
|
+
/**
|
|
2285
|
+
* @type {?}
|
|
2286
|
+
* @private
|
|
2287
|
+
*/
|
|
2288
|
+
SearchInputComponent.prototype.debouncedInput;
|
|
2289
|
+
/** @type {?} */
|
|
2290
|
+
SearchInputComponent.prototype.searchValue;
|
|
2291
|
+
/** @type {?} */
|
|
2292
|
+
SearchInputComponent.prototype.translation;
|
|
2293
|
+
}
|
|
2294
|
+
|
|
2215
2295
|
/**
|
|
2216
2296
|
* @fileoverview added by tsickle
|
|
2217
2297
|
* Generated from: lib/layout/page-list/index.component.ts
|
|
@@ -2244,6 +2324,14 @@ class RsPageListComponent {
|
|
|
2244
2324
|
// 检测是否传入了 wholeToolbarSlot
|
|
2245
2325
|
this.hasWholeToolbarSlot = !!this.wholeToolbarSlot;
|
|
2246
2326
|
}
|
|
2327
|
+
/**
|
|
2328
|
+
* @param {?} value
|
|
2329
|
+
* @return {?}
|
|
2330
|
+
*/
|
|
2331
|
+
setSearchValue(value) {
|
|
2332
|
+
this.searchInput.searchValue = value;
|
|
2333
|
+
this.onSeach(value);
|
|
2334
|
+
}
|
|
2247
2335
|
/**
|
|
2248
2336
|
* @param {?} value
|
|
2249
2337
|
* @return {?}
|
|
@@ -2266,7 +2354,7 @@ class RsPageListComponent {
|
|
|
2266
2354
|
RsPageListComponent.decorators = [
|
|
2267
2355
|
{ type: Component, args: [{
|
|
2268
2356
|
selector: "rs-page-list",
|
|
2269
|
-
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 <h1 class=\"rs-page-title\" *ngIf=\"pageTitle\">{{ pageTitle }}</h1>\r\n </ng-template>\r\n <div class=\"rs-sub-section\">\r\n <ng-content select=\"[subSectionSlot]\"></ng-content>\r\n </div>\r\n <div class=\"rs-content-wrap\">\r\n <div class=\"rs-content-tab\">\r\n <ng-content select=\"[contentTabSlot]\"></ng-content>\r\n </div>\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 <rs-search-input\r\n *ngIf=\"!hideSearch\"\r\n [placeholder]=\"translation.SEARCH_ALL_FIELD\"\r\n (hanleSearch)=\"onSeach($event)\"\r\n ></rs-search-input>\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",
|
|
2357
|
+
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 <h1 class=\"rs-page-title\" *ngIf=\"pageTitle\">{{ pageTitle }}</h1>\r\n </ng-template>\r\n <div class=\"rs-sub-section\">\r\n <ng-content select=\"[subSectionSlot]\"></ng-content>\r\n </div>\r\n <div class=\"rs-content-wrap\">\r\n <div class=\"rs-content-tab\">\r\n <ng-content select=\"[contentTabSlot]\"></ng-content>\r\n </div>\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 <rs-search-input\r\n #searchInput\r\n *ngIf=\"!hideSearch\"\r\n [placeholder]=\"translation.SEARCH_ALL_FIELD\"\r\n (hanleSearch)=\"onSeach($event)\"\r\n ></rs-search-input>\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",
|
|
2270
2358
|
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-sub-section{width:100%}.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;padding-bottom:4px;border-bottom:1px solid #eaedf0}.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;align-items:center}.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:24px!important;min-width:auto!important}.rs-page-list-wrap .rs-content-wrap .rs-toolbar-wrap .rs-right-col{gap:12px}.rs-page-list-wrap .rs-content-wrap .rs-left-col{flex:1;width:0;gap:4px}.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)}"]
|
|
2271
2359
|
}] }
|
|
2272
2360
|
];
|
|
@@ -2275,6 +2363,7 @@ RsPageListComponent.propDecorators = {
|
|
|
2275
2363
|
orignGrid: [{ type: ContentChild, args: [GridComponent, { static: false },] }],
|
|
2276
2364
|
treeGrid: [{ type: ContentChild, args: [TreeGridComponent, { static: false },] }],
|
|
2277
2365
|
wholeToolbarSlot: [{ type: ContentChild, args: ["wholeToolbarSlot", { static: false },] }],
|
|
2366
|
+
searchInput: [{ type: ViewChild, args: ["searchInput", { static: false },] }],
|
|
2278
2367
|
pageTitle: [{ type: Input }],
|
|
2279
2368
|
customPageTitle: [{ type: Input }],
|
|
2280
2369
|
hideSearch: [{ type: Input }],
|
|
@@ -2291,6 +2380,8 @@ if (false) {
|
|
|
2291
2380
|
/** @type {?} */
|
|
2292
2381
|
RsPageListComponent.prototype.wholeToolbarSlot;
|
|
2293
2382
|
/** @type {?} */
|
|
2383
|
+
RsPageListComponent.prototype.searchInput;
|
|
2384
|
+
/** @type {?} */
|
|
2294
2385
|
RsPageListComponent.prototype.pageTitle;
|
|
2295
2386
|
/** @type {?} */
|
|
2296
2387
|
RsPageListComponent.prototype.customPageTitle;
|
|
@@ -2428,6 +2519,14 @@ class GridBoxComponent {
|
|
|
2428
2519
|
// 检测是否传入了 wholeToolbarSlot
|
|
2429
2520
|
this.hasWholeToolbarSlot = !!this.wholeToolbarSlot;
|
|
2430
2521
|
}
|
|
2522
|
+
/**
|
|
2523
|
+
* @param {?} value
|
|
2524
|
+
* @return {?}
|
|
2525
|
+
*/
|
|
2526
|
+
setSearchValue(value) {
|
|
2527
|
+
this.searchInput.searchValue = value;
|
|
2528
|
+
this.onSeach(value);
|
|
2529
|
+
}
|
|
2431
2530
|
/**
|
|
2432
2531
|
* @param {?} value
|
|
2433
2532
|
* @return {?}
|
|
@@ -2450,7 +2549,7 @@ class GridBoxComponent {
|
|
|
2450
2549
|
GridBoxComponent.decorators = [
|
|
2451
2550
|
{ type: Component, args: [{
|
|
2452
2551
|
selector: "rs-grid-box",
|
|
2453
|
-
template: "<div class=\"rs-grid-box\" [ngClass]=\"{ 'is-not-inner': !isInner }\">\r\n <div class=\"rs-content-tab\">\r\n <ng-content select=\"[contentTabSlot]\"></ng-content>\r\n </div>\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 <rs-search-input\r\n *ngIf=\"!hideSearch\"\r\n [placeholder]=\"translation.SEARCH_ALL_FIELD\"\r\n (hanleSearch)=\"onSeach($event)\"\r\n ></rs-search-input>\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",
|
|
2552
|
+
template: "<div class=\"rs-grid-box\" [ngClass]=\"{ 'is-not-inner': !isInner }\">\r\n <div class=\"rs-content-tab\">\r\n <ng-content select=\"[contentTabSlot]\"></ng-content>\r\n </div>\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 <rs-search-input\r\n #searchInput\r\n *ngIf=\"!hideSearch\"\r\n [placeholder]=\"translation.SEARCH_ALL_FIELD\"\r\n (hanleSearch)=\"onSeach($event)\"\r\n ></rs-search-input>\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",
|
|
2454
2553
|
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;padding-bottom:4px;border-bottom:1px solid #eaedf0}.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;align-items:center}.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:24px!important;min-width:auto!important}.rs-grid-box .rs-toolbar-wrap .rs-left-col{flex:1;width:0;gap:4px}.rs-grid-box .rs-toolbar-wrap .rs-right-col{gap:12px}.rs-grid-box .rs-grid-wrap{flex:1;height:0}"]
|
|
2455
2554
|
}] }
|
|
2456
2555
|
];
|
|
@@ -2459,6 +2558,7 @@ GridBoxComponent.propDecorators = {
|
|
|
2459
2558
|
orignGrid: [{ type: ContentChild, args: [GridComponent, { static: false },] }],
|
|
2460
2559
|
treeGrid: [{ type: ContentChild, args: [TreeGridComponent, { static: false },] }],
|
|
2461
2560
|
wholeToolbarSlot: [{ type: ContentChild, args: ["wholeToolbarSlot", { static: false },] }],
|
|
2561
|
+
searchInput: [{ type: ViewChild, args: ["searchInput", { static: false },] }],
|
|
2462
2562
|
hideSearch: [{ type: Input }],
|
|
2463
2563
|
isInner: [{ type: Input }],
|
|
2464
2564
|
onGridSearch: [{ type: Output }]
|
|
@@ -2473,6 +2573,8 @@ if (false) {
|
|
|
2473
2573
|
/** @type {?} */
|
|
2474
2574
|
GridBoxComponent.prototype.wholeToolbarSlot;
|
|
2475
2575
|
/** @type {?} */
|
|
2576
|
+
GridBoxComponent.prototype.searchInput;
|
|
2577
|
+
/** @type {?} */
|
|
2476
2578
|
GridBoxComponent.prototype.hideSearch;
|
|
2477
2579
|
/** @type {?} */
|
|
2478
2580
|
GridBoxComponent.prototype.isInner;
|
|
@@ -2618,6 +2720,15 @@ class DrawerService {
|
|
|
2618
2720
|
drawer && drawer.back();
|
|
2619
2721
|
}
|
|
2620
2722
|
}
|
|
2723
|
+
/**
|
|
2724
|
+
* @param {?} config
|
|
2725
|
+
* @return {?}
|
|
2726
|
+
*/
|
|
2727
|
+
setConfig(config) {
|
|
2728
|
+
if (this.uniqueDrawerComponent) {
|
|
2729
|
+
this.uniqueDrawerComponent.setConfig(config);
|
|
2730
|
+
}
|
|
2731
|
+
}
|
|
2621
2732
|
/**
|
|
2622
2733
|
* @param {?} cacheKey
|
|
2623
2734
|
* @return {?}
|
|
@@ -3347,6 +3458,20 @@ class DrawerComponent {
|
|
|
3347
3458
|
this.drawer.nativeElement.insertBefore(this.header.nativeElement, this.drawer.nativeElement.firstChild);
|
|
3348
3459
|
this.header.nativeElement.append(this.toolbarSlot.nativeElement);
|
|
3349
3460
|
}
|
|
3461
|
+
this.config = cache.config;
|
|
3462
|
+
this.ref.markForCheck();
|
|
3463
|
+
}
|
|
3464
|
+
/**
|
|
3465
|
+
* @param {?} config
|
|
3466
|
+
* @return {?}
|
|
3467
|
+
*/
|
|
3468
|
+
setConfig(config) {
|
|
3469
|
+
/** @type {?} */
|
|
3470
|
+
const cache = this.componentRefMap.get(this.service.cacheKey);
|
|
3471
|
+
if (cache) {
|
|
3472
|
+
cache.config = Object.assign({}, cache.config, config);
|
|
3473
|
+
this.setCache(cache);
|
|
3474
|
+
}
|
|
3350
3475
|
}
|
|
3351
3476
|
/**
|
|
3352
3477
|
* @template T
|
|
@@ -3377,7 +3502,6 @@ class DrawerComponent {
|
|
|
3377
3502
|
this.setComponentData(componentRef, data);
|
|
3378
3503
|
this.componentRefMap.set(this.service.cacheKey, cache);
|
|
3379
3504
|
this.setCache(cache);
|
|
3380
|
-
this.config = showConfig;
|
|
3381
3505
|
this.toggleOpenStatus(true, true);
|
|
3382
3506
|
return componentRef.instance;
|
|
3383
3507
|
}
|
|
@@ -3421,7 +3545,6 @@ class DrawerComponent {
|
|
|
3421
3545
|
const cache = this.componentRefMap.get(this.service.cacheKey);
|
|
3422
3546
|
if (cache) {
|
|
3423
3547
|
cache.ref.location.nativeElement.style.display = "";
|
|
3424
|
-
this.config = cache.config;
|
|
3425
3548
|
this.setCache(cache);
|
|
3426
3549
|
this.toggleOpenStatus(true);
|
|
3427
3550
|
}
|
|
@@ -20835,8 +20958,8 @@ class RSAsideComponent {
|
|
|
20835
20958
|
RSAsideComponent.decorators = [
|
|
20836
20959
|
{ type: Component, args: [{
|
|
20837
20960
|
selector: "rs-aside",
|
|
20838
|
-
template: "<div class=\"rs-aside\" [ngClass]=\"{ isCollapsed: isCollapsed }\">\r\n <div class=\"nav-list\">\r\n <div\r\n class=\"nav-group\"\r\n [ngClass]=\"group.class\"\r\n *ngFor=\"let group of navList\"\r\n >\r\n <div\r\n class=\"nav-item\"\r\n [ngClass]=\"{ isCurrent: currentNav === nav.url }\"\r\n *ngFor=\"let nav of group.navItems\"\r\n (click)=\"onNavClick(nav)\"\r\n >\r\n <div class=\"nav-item-inner\" *ngIf=\"nav.menuType === 'MENU'\">\r\n <ejs-tooltip\r\n [showTipPointer]=\"false\"\r\n *ngIf=\"isCollapsed; else originIcon\"\r\n >\r\n <ng-template #content>\r\n <div class=\"tooltip-content\">\r\n {{ nav.label }}\r\n </div>\r\n </ng-template>\r\n <mat-icon class=\"menu-icon\" [svgIcon]=\"nav.iconCode\"></mat-icon>\r\n </ejs-tooltip>\r\n <ng-template #originIcon>\r\n <mat-icon class=\"menu-icon\" [svgIcon]=\"nav.iconCode\"></mat-icon>\r\n </ng-template>\r\n <!-- <mat-icon class=\"menu-icon\" [svgIcon]=\"nav.iconCode\"></mat-icon> -->\r\n <ejs-tooltip\r\n [showTipPointer]=\"false\"\r\n *ngIf=\"nav.displayLabel !== nav.label; else originText\"\r\n >\r\n <ng-template #content>\r\n <div class=\"tooltip-content\">\r\n {{ nav.label }}\r\n </div>\r\n </ng-template>\r\n <span class=\"nav-text\" [ngClass]=\"{ isCollapsed: isCollapsed }\">{{\r\n nav.displayLabel\r\n }}</span>\r\n </ejs-tooltip>\r\n <ng-template #originText>\r\n <span class=\"nav-text\" [ngClass]=\"{ isCollapsed: isCollapsed }\">{{\r\n nav.label\r\n }}</span>\r\n </ng-template>\r\n </div>\r\n <div class=\"dividing-line\" *ngIf=\"nav.menuType === 'LABEL'\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"bottom-iconbox\" [ngClass]=\"{ isCollapsed: isCollapsed }\">\r\n <ng-content select=\"[bottomIconBox]\"></ng-content>\r\n </div>\r\n</div>\r\n",
|
|
20839
|
-
styles: [".rs-aside{display:flex;flex-direction:column;height:100%;width:240px;will-change:width;transition:width .3s;padding-right:20px}.rs-aside.isCollapsed{width:64px;padding-right:0}.rs-aside.isCollapsed .nav-list .nav-item .nav-item-inner{margin-right:12px}.rs-aside.isCollapsed .nav-list .nav-item .dividing-line{margin:8px 20px 8px 10px}.rs-aside .nav-list{padding-top:12px;flex:1;overflow:auto;height:0}.rs-aside .nav-list .nav-item{cursor:pointer;padding-left:11px}.rs-aside .nav-list .nav-item .nav-item-inner{height:32px;display:flex;align-items:center;padding:8px 8px 8px 12px}.rs-aside .nav-list .nav-item .nav-item-inner ::ng-deep .menu-icon{width:33px;height:16px;display:flex;align-items:center}.rs-aside .nav-list .nav-item .nav-item-inner ::ng-deep .menu-icon svg{width:16px;height:16px}.rs-aside .nav-list .nav-item .dividing-line{margin:8px 0 8px 10px;height:1px;background-color:rgba(219,225,231,.5)}.rs-aside .nav-list .nav-item:hover .nav-item-inner{border-radius:6px;background:rgba(31,123,255,.04)}.rs-aside .nav-list .nav-item .nav-text{color:#5f6f81;font-family:Arial;font-size:12px;font-weight:400;line-height:16px;transition:.3s;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;position:relative;top:1px;flex:1}@media (min-width:993px){.rs-aside .nav-list .nav-item .nav-text.isCollapsed{opacity:0;width:0}}.rs-aside .nav-list .nav-item.isCurrent{position:relative}.rs-aside .nav-list .nav-item.isCurrent .nav-text{color:#44566c;font-weight:700}.rs-aside .nav-list .nav-item.isCurrent::before{content:\"\";position:absolute;left:4px;top:8px;width:3px;height:16px;background-color:#1364b3;border-radius:2px}.rs-aside .bottom-iconbox{padding:12px 20px;height:48px;display:flex;gap:12px}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon{width:24px;height:24px;display:flex;justify-content:center;align-items:center;border:1px solid #eaedf0;border-radius:24px;cursor:pointer}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon svg{width:16px;height:16px;color:#6c7c90;stroke:#6c7c90}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon.disabled{cursor:default;opacity:.5}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon:not(.disabled):hover{background-color:#fff}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon:not(.disabled):hover svg{color:#1f7bff;stroke:#1f7bff}@media (min-width:993px){.rs-aside .bottom-iconbox.isCollapsed{flex-direction:column;height:auto}}@media (max-width:992px){.rs-aside{width:0;position:absolute;height:calc(100% - 50px);z-index:10;background-color:var(--rs-container-bg);padding-right:0}.rs-aside .bottom-iconbox{display:none}.rs-aside.isCollapsed{width:240px;padding-right:16px}.rs-aside.isCollapsed .bottom-iconbox{display:flex}}"]
|
|
20961
|
+
template: "<div class=\"rs-aside\" [ngClass]=\"{ isCollapsed: isCollapsed }\">\r\n <div class=\"nav-list\">\r\n <div\r\n class=\"nav-group\"\r\n [ngClass]=\"group.class\"\r\n *ngFor=\"let group of navList\"\r\n >\r\n <div\r\n class=\"nav-item\"\r\n [ngClass]=\"{ isCurrent: currentNav === nav.url }\"\r\n *ngFor=\"let nav of group.navItems\"\r\n (click)=\"onNavClick(nav)\"\r\n >\r\n <div class=\"nav-item-inner\" *ngIf=\"nav.menuType === 'MENU'\">\r\n <ejs-tooltip\r\n [showTipPointer]=\"false\"\r\n *ngIf=\"isCollapsed; else originIcon\"\r\n position='RightCenter'\r\n >\r\n <ng-template #content>\r\n <div class=\"tooltip-content\">\r\n {{ nav.label }}\r\n </div>\r\n </ng-template>\r\n <mat-icon class=\"menu-icon\" [svgIcon]=\"nav.iconCode\"></mat-icon>\r\n </ejs-tooltip>\r\n <ng-template #originIcon>\r\n <mat-icon class=\"menu-icon\" [svgIcon]=\"nav.iconCode\"></mat-icon>\r\n </ng-template>\r\n <!-- <mat-icon class=\"menu-icon\" [svgIcon]=\"nav.iconCode\"></mat-icon> -->\r\n <ejs-tooltip\r\n [showTipPointer]=\"false\"\r\n *ngIf=\"nav.displayLabel !== nav.label; else originText\"\r\n position='RightCenter'\r\n class=\"nav-tooltip-text\"\r\n >\r\n <ng-template #content>\r\n <div class=\"tooltip-content\">\r\n {{ nav.label }}\r\n </div>\r\n </ng-template>\r\n <span class=\"nav-text\" [ngClass]=\"{ isCollapsed: isCollapsed }\">{{\r\n nav.displayLabel\r\n }}</span>\r\n </ejs-tooltip>\r\n <ng-template #originText>\r\n <span class=\"nav-text\" [ngClass]=\"{ isCollapsed: isCollapsed }\">{{\r\n nav.label\r\n }}</span>\r\n </ng-template>\r\n </div>\r\n <div class=\"dividing-line\" *ngIf=\"nav.menuType === 'LABEL'\"></div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"bottom-iconbox\" [ngClass]=\"{ isCollapsed: isCollapsed }\">\r\n <ng-content select=\"[bottomIconBox]\"></ng-content>\r\n </div>\r\n</div>\r\n",
|
|
20962
|
+
styles: [".rs-aside{display:flex;flex-direction:column;height:100%;width:240px;will-change:width;transition:width .3s;padding-right:20px}.rs-aside.isCollapsed{width:64px;padding-right:0}.rs-aside.isCollapsed .nav-list .nav-item .nav-item-inner{margin-right:12px}.rs-aside.isCollapsed .nav-list .nav-item .dividing-line{margin:8px 20px 8px 10px}.rs-aside .nav-list{padding-top:12px;flex:1;overflow:auto;height:0}.rs-aside .nav-list .nav-item{cursor:pointer;padding-left:11px}.rs-aside .nav-list .nav-item .nav-item-inner{height:32px;display:flex;align-items:center;padding:8px 8px 8px 12px}.rs-aside .nav-list .nav-item .nav-item-inner ::ng-deep .menu-icon{width:33px;height:16px;display:flex;align-items:center}.rs-aside .nav-list .nav-item .nav-item-inner ::ng-deep .menu-icon svg{width:16px;height:16px}.rs-aside .nav-list .nav-item .dividing-line{margin:8px 0 8px 10px;height:1px;background-color:rgba(219,225,231,.5)}.rs-aside .nav-list .nav-item:hover .nav-item-inner{border-radius:6px;background:rgba(31,123,255,.04)}.rs-aside .nav-list .nav-item .nav-text{display:inline-block;color:#5f6f81;font-family:Arial;font-size:12px;font-weight:400;line-height:16px;transition:.3s;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;position:relative;top:1px;flex:1}@media (min-width:993px){.rs-aside .nav-list .nav-item .nav-text.isCollapsed{opacity:0;width:0}}.rs-aside .nav-list .nav-item .nav-tooltip-text{flex:1;width:0}.rs-aside .nav-list .nav-item.isCurrent{position:relative}.rs-aside .nav-list .nav-item.isCurrent .nav-text{color:#44566c;font-weight:700}.rs-aside .nav-list .nav-item.isCurrent::before{content:\"\";position:absolute;left:4px;top:8px;width:3px;height:16px;background-color:#1364b3;border-radius:2px}.rs-aside .bottom-iconbox{padding:12px 20px;height:48px;display:flex;gap:12px}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon{width:24px;height:24px;display:flex;justify-content:center;align-items:center;border:1px solid #eaedf0;border-radius:24px;cursor:pointer}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon svg{width:16px;height:16px;color:#6c7c90;stroke:#6c7c90}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon.disabled{cursor:default;opacity:.5}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon:not(.disabled):hover{background-color:#fff}.rs-aside .bottom-iconbox ::ng-deep .menu-bottom-icon:not(.disabled):hover svg{color:#1f7bff;stroke:#1f7bff}@media (min-width:993px){.rs-aside .bottom-iconbox.isCollapsed{flex-direction:column;height:auto}}@media (max-width:992px){.rs-aside{width:0;position:absolute;height:calc(100% - 50px);z-index:10;background-color:var(--rs-container-bg);padding-right:0}.rs-aside .bottom-iconbox{display:none}.rs-aside.isCollapsed{width:240px;padding-right:16px}.rs-aside.isCollapsed .bottom-iconbox{display:flex}}"]
|
|
20840
20963
|
}] }
|
|
20841
20964
|
];
|
|
20842
20965
|
/** @nocollapse */
|
|
@@ -21286,84 +21409,6 @@ if (false) {
|
|
|
21286
21409
|
EncryptedInputComponent.prototype.encrypted;
|
|
21287
21410
|
}
|
|
21288
21411
|
|
|
21289
|
-
/**
|
|
21290
|
-
* @fileoverview added by tsickle
|
|
21291
|
-
* Generated from: lib/form/search-input/index.component.ts
|
|
21292
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
21293
|
-
*/
|
|
21294
|
-
class SearchInputComponent {
|
|
21295
|
-
constructor() {
|
|
21296
|
-
this.placeholder = "";
|
|
21297
|
-
this.hanleSearch = new EventEmitter();
|
|
21298
|
-
this.handleInput = new EventEmitter();
|
|
21299
|
-
this.searchValue = "";
|
|
21300
|
-
}
|
|
21301
|
-
/**
|
|
21302
|
-
* @return {?}
|
|
21303
|
-
*/
|
|
21304
|
-
ngOnInit() {
|
|
21305
|
-
this.getInfo();
|
|
21306
|
-
this.debouncedInput = debounce((/**
|
|
21307
|
-
* @return {?}
|
|
21308
|
-
*/
|
|
21309
|
-
() => {
|
|
21310
|
-
this.onSeach();
|
|
21311
|
-
}), 300);
|
|
21312
|
-
}
|
|
21313
|
-
/**
|
|
21314
|
-
* @return {?}
|
|
21315
|
-
*/
|
|
21316
|
-
getInfo() {
|
|
21317
|
-
this.translation = JSON.parse(localStorage.getItem("translation"));
|
|
21318
|
-
this.placeholder = this.placeholder || this.translation.SEARCH;
|
|
21319
|
-
}
|
|
21320
|
-
/**
|
|
21321
|
-
* @param {?} e
|
|
21322
|
-
* @return {?}
|
|
21323
|
-
*/
|
|
21324
|
-
onInput(e) {
|
|
21325
|
-
this.handleInput.emit(e.value);
|
|
21326
|
-
this.debouncedInput();
|
|
21327
|
-
}
|
|
21328
|
-
/**
|
|
21329
|
-
* @return {?}
|
|
21330
|
-
*/
|
|
21331
|
-
onSeach() {
|
|
21332
|
-
this.hanleSearch.emit(this.searchValue);
|
|
21333
|
-
}
|
|
21334
|
-
}
|
|
21335
|
-
SearchInputComponent.decorators = [
|
|
21336
|
-
{ type: Component, args: [{
|
|
21337
|
-
selector: "rs-search-input",
|
|
21338
|
-
template: "<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($event)\"\r\n [placeholder]=\"placeholder\"\r\n [showClearButton]=\"true\"\r\n autocomplete=\"off\"\r\n ></ejs-textbox>\r\n</div>\r\n",
|
|
21339
|
-
styles: [".rs-search-input{width:240px}.rs-search-input .e-textbox{display:block;box-shadow:none!important}.rs-search-input ::ng-deep .e-input-group{border-radius:14px!important}.rs-search-input ::ng-deep .e-input-group.e-input-focus,.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-search-input ::ng-deep .e-input-group.e-input-focus input.e-input,.rs-search-input ::ng-deep .e-input-group:hover input.e-input{box-shadow:none!important}.rs-search-input ::ng-deep .e-input-group input.e-input{width:calc(100% - 50px);height:24px!important;line-height:22px!important}.rs-search-input ::ng-deep .e-input-group input.e-input:hover{box-shadow:none!important}.rs-search-input ::ng-deep .e-input-group::before{content:\"\"!important;margin:5px 0 0 8px;display:block;width:16px;height:16px;background-image:url(/assets/img/search.svg);background-size:cover;background-position:center}"]
|
|
21340
|
-
}] }
|
|
21341
|
-
];
|
|
21342
|
-
/** @nocollapse */
|
|
21343
|
-
SearchInputComponent.ctorParameters = () => [];
|
|
21344
|
-
SearchInputComponent.propDecorators = {
|
|
21345
|
-
placeholder: [{ type: Input }],
|
|
21346
|
-
hanleSearch: [{ type: Output }],
|
|
21347
|
-
handleInput: [{ type: Output }]
|
|
21348
|
-
};
|
|
21349
|
-
if (false) {
|
|
21350
|
-
/** @type {?} */
|
|
21351
|
-
SearchInputComponent.prototype.placeholder;
|
|
21352
|
-
/** @type {?} */
|
|
21353
|
-
SearchInputComponent.prototype.hanleSearch;
|
|
21354
|
-
/** @type {?} */
|
|
21355
|
-
SearchInputComponent.prototype.handleInput;
|
|
21356
|
-
/**
|
|
21357
|
-
* @type {?}
|
|
21358
|
-
* @private
|
|
21359
|
-
*/
|
|
21360
|
-
SearchInputComponent.prototype.debouncedInput;
|
|
21361
|
-
/** @type {?} */
|
|
21362
|
-
SearchInputComponent.prototype.searchValue;
|
|
21363
|
-
/** @type {?} */
|
|
21364
|
-
SearchInputComponent.prototype.translation;
|
|
21365
|
-
}
|
|
21366
|
-
|
|
21367
21412
|
/**
|
|
21368
21413
|
* @fileoverview added by tsickle
|
|
21369
21414
|
* Generated from: lib/form/drawer-form/constants.ts
|