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
|
@@ -1581,6 +1581,8 @@
|
|
|
1581
1581
|
*/
|
|
1582
1582
|
function () {
|
|
1583
1583
|
_this.opened = "no";
|
|
1584
|
+
_this.ref.markForCheck();
|
|
1585
|
+
_this.ref.detectChanges();
|
|
1584
1586
|
_this.openChange.emit(false);
|
|
1585
1587
|
}), 0);
|
|
1586
1588
|
};
|
|
@@ -2772,6 +2774,99 @@
|
|
|
2772
2774
|
TruncatedTextToggleComponent.prototype.showCollapseBtn;
|
|
2773
2775
|
}
|
|
2774
2776
|
|
|
2777
|
+
/**
|
|
2778
|
+
* @fileoverview added by tsickle
|
|
2779
|
+
* Generated from: lib/form/search-input/index.component.ts
|
|
2780
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
2781
|
+
*/
|
|
2782
|
+
var SearchInputComponent = /** @class */ (function () {
|
|
2783
|
+
function SearchInputComponent() {
|
|
2784
|
+
this.placeholder = "";
|
|
2785
|
+
this.hanleSearch = new core.EventEmitter();
|
|
2786
|
+
this.handleInput = new core.EventEmitter();
|
|
2787
|
+
this.searchValue = "";
|
|
2788
|
+
}
|
|
2789
|
+
/**
|
|
2790
|
+
* @return {?}
|
|
2791
|
+
*/
|
|
2792
|
+
SearchInputComponent.prototype.ngOnInit = /**
|
|
2793
|
+
* @return {?}
|
|
2794
|
+
*/
|
|
2795
|
+
function () {
|
|
2796
|
+
var _this = this;
|
|
2797
|
+
this.getInfo();
|
|
2798
|
+
this.debouncedInput = lodash.debounce((/**
|
|
2799
|
+
* @return {?}
|
|
2800
|
+
*/
|
|
2801
|
+
function () {
|
|
2802
|
+
_this.onSeach();
|
|
2803
|
+
}), 300);
|
|
2804
|
+
};
|
|
2805
|
+
/**
|
|
2806
|
+
* @return {?}
|
|
2807
|
+
*/
|
|
2808
|
+
SearchInputComponent.prototype.getInfo = /**
|
|
2809
|
+
* @return {?}
|
|
2810
|
+
*/
|
|
2811
|
+
function () {
|
|
2812
|
+
this.translation = JSON.parse(localStorage.getItem("translation"));
|
|
2813
|
+
this.placeholder = this.placeholder || this.translation.SEARCH;
|
|
2814
|
+
};
|
|
2815
|
+
/**
|
|
2816
|
+
* @param {?} e
|
|
2817
|
+
* @return {?}
|
|
2818
|
+
*/
|
|
2819
|
+
SearchInputComponent.prototype.onInput = /**
|
|
2820
|
+
* @param {?} e
|
|
2821
|
+
* @return {?}
|
|
2822
|
+
*/
|
|
2823
|
+
function (e) {
|
|
2824
|
+
this.handleInput.emit(e.value);
|
|
2825
|
+
this.debouncedInput();
|
|
2826
|
+
};
|
|
2827
|
+
/**
|
|
2828
|
+
* @return {?}
|
|
2829
|
+
*/
|
|
2830
|
+
SearchInputComponent.prototype.onSeach = /**
|
|
2831
|
+
* @return {?}
|
|
2832
|
+
*/
|
|
2833
|
+
function () {
|
|
2834
|
+
this.hanleSearch.emit(this.searchValue);
|
|
2835
|
+
};
|
|
2836
|
+
SearchInputComponent.decorators = [
|
|
2837
|
+
{ type: core.Component, args: [{
|
|
2838
|
+
selector: "rs-search-input",
|
|
2839
|
+
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",
|
|
2840
|
+
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}"]
|
|
2841
|
+
}] }
|
|
2842
|
+
];
|
|
2843
|
+
/** @nocollapse */
|
|
2844
|
+
SearchInputComponent.ctorParameters = function () { return []; };
|
|
2845
|
+
SearchInputComponent.propDecorators = {
|
|
2846
|
+
placeholder: [{ type: core.Input }],
|
|
2847
|
+
hanleSearch: [{ type: core.Output }],
|
|
2848
|
+
handleInput: [{ type: core.Output }]
|
|
2849
|
+
};
|
|
2850
|
+
return SearchInputComponent;
|
|
2851
|
+
}());
|
|
2852
|
+
if (false) {
|
|
2853
|
+
/** @type {?} */
|
|
2854
|
+
SearchInputComponent.prototype.placeholder;
|
|
2855
|
+
/** @type {?} */
|
|
2856
|
+
SearchInputComponent.prototype.hanleSearch;
|
|
2857
|
+
/** @type {?} */
|
|
2858
|
+
SearchInputComponent.prototype.handleInput;
|
|
2859
|
+
/**
|
|
2860
|
+
* @type {?}
|
|
2861
|
+
* @private
|
|
2862
|
+
*/
|
|
2863
|
+
SearchInputComponent.prototype.debouncedInput;
|
|
2864
|
+
/** @type {?} */
|
|
2865
|
+
SearchInputComponent.prototype.searchValue;
|
|
2866
|
+
/** @type {?} */
|
|
2867
|
+
SearchInputComponent.prototype.translation;
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2775
2870
|
/**
|
|
2776
2871
|
* @fileoverview added by tsickle
|
|
2777
2872
|
* Generated from: lib/layout/page-list/index.component.ts
|
|
@@ -2813,6 +2908,18 @@
|
|
|
2813
2908
|
// 检测是否传入了 wholeToolbarSlot
|
|
2814
2909
|
this.hasWholeToolbarSlot = !!this.wholeToolbarSlot;
|
|
2815
2910
|
};
|
|
2911
|
+
/**
|
|
2912
|
+
* @param {?} value
|
|
2913
|
+
* @return {?}
|
|
2914
|
+
*/
|
|
2915
|
+
RsPageListComponent.prototype.setSearchValue = /**
|
|
2916
|
+
* @param {?} value
|
|
2917
|
+
* @return {?}
|
|
2918
|
+
*/
|
|
2919
|
+
function (value) {
|
|
2920
|
+
this.searchInput.searchValue = value;
|
|
2921
|
+
this.onSeach(value);
|
|
2922
|
+
};
|
|
2816
2923
|
/**
|
|
2817
2924
|
* @param {?} value
|
|
2818
2925
|
* @return {?}
|
|
@@ -2838,7 +2945,7 @@
|
|
|
2838
2945
|
RsPageListComponent.decorators = [
|
|
2839
2946
|
{ type: core.Component, args: [{
|
|
2840
2947
|
selector: "rs-page-list",
|
|
2841
|
-
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",
|
|
2948
|
+
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",
|
|
2842
2949
|
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)}"]
|
|
2843
2950
|
}] }
|
|
2844
2951
|
];
|
|
@@ -2847,6 +2954,7 @@
|
|
|
2847
2954
|
orignGrid: [{ type: core.ContentChild, args: [ej2AngularGrids.GridComponent, { static: false },] }],
|
|
2848
2955
|
treeGrid: [{ type: core.ContentChild, args: [ej2AngularTreegrid.TreeGridComponent, { static: false },] }],
|
|
2849
2956
|
wholeToolbarSlot: [{ type: core.ContentChild, args: ["wholeToolbarSlot", { static: false },] }],
|
|
2957
|
+
searchInput: [{ type: core.ViewChild, args: ["searchInput", { static: false },] }],
|
|
2850
2958
|
pageTitle: [{ type: core.Input }],
|
|
2851
2959
|
customPageTitle: [{ type: core.Input }],
|
|
2852
2960
|
hideSearch: [{ type: core.Input }],
|
|
@@ -2865,6 +2973,8 @@
|
|
|
2865
2973
|
/** @type {?} */
|
|
2866
2974
|
RsPageListComponent.prototype.wholeToolbarSlot;
|
|
2867
2975
|
/** @type {?} */
|
|
2976
|
+
RsPageListComponent.prototype.searchInput;
|
|
2977
|
+
/** @type {?} */
|
|
2868
2978
|
RsPageListComponent.prototype.pageTitle;
|
|
2869
2979
|
/** @type {?} */
|
|
2870
2980
|
RsPageListComponent.prototype.customPageTitle;
|
|
@@ -3030,6 +3140,18 @@
|
|
|
3030
3140
|
// 检测是否传入了 wholeToolbarSlot
|
|
3031
3141
|
this.hasWholeToolbarSlot = !!this.wholeToolbarSlot;
|
|
3032
3142
|
};
|
|
3143
|
+
/**
|
|
3144
|
+
* @param {?} value
|
|
3145
|
+
* @return {?}
|
|
3146
|
+
*/
|
|
3147
|
+
GridBoxComponent.prototype.setSearchValue = /**
|
|
3148
|
+
* @param {?} value
|
|
3149
|
+
* @return {?}
|
|
3150
|
+
*/
|
|
3151
|
+
function (value) {
|
|
3152
|
+
this.searchInput.searchValue = value;
|
|
3153
|
+
this.onSeach(value);
|
|
3154
|
+
};
|
|
3033
3155
|
/**
|
|
3034
3156
|
* @param {?} value
|
|
3035
3157
|
* @return {?}
|
|
@@ -3055,7 +3177,7 @@
|
|
|
3055
3177
|
GridBoxComponent.decorators = [
|
|
3056
3178
|
{ type: core.Component, args: [{
|
|
3057
3179
|
selector: "rs-grid-box",
|
|
3058
|
-
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",
|
|
3180
|
+
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",
|
|
3059
3181
|
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}"]
|
|
3060
3182
|
}] }
|
|
3061
3183
|
];
|
|
@@ -3064,6 +3186,7 @@
|
|
|
3064
3186
|
orignGrid: [{ type: core.ContentChild, args: [ej2AngularGrids.GridComponent, { static: false },] }],
|
|
3065
3187
|
treeGrid: [{ type: core.ContentChild, args: [ej2AngularTreegrid.TreeGridComponent, { static: false },] }],
|
|
3066
3188
|
wholeToolbarSlot: [{ type: core.ContentChild, args: ["wholeToolbarSlot", { static: false },] }],
|
|
3189
|
+
searchInput: [{ type: core.ViewChild, args: ["searchInput", { static: false },] }],
|
|
3067
3190
|
hideSearch: [{ type: core.Input }],
|
|
3068
3191
|
isInner: [{ type: core.Input }],
|
|
3069
3192
|
onGridSearch: [{ type: core.Output }]
|
|
@@ -3080,6 +3203,8 @@
|
|
|
3080
3203
|
/** @type {?} */
|
|
3081
3204
|
GridBoxComponent.prototype.wholeToolbarSlot;
|
|
3082
3205
|
/** @type {?} */
|
|
3206
|
+
GridBoxComponent.prototype.searchInput;
|
|
3207
|
+
/** @type {?} */
|
|
3083
3208
|
GridBoxComponent.prototype.hideSearch;
|
|
3084
3209
|
/** @type {?} */
|
|
3085
3210
|
GridBoxComponent.prototype.isInner;
|
|
@@ -3256,6 +3381,19 @@
|
|
|
3256
3381
|
drawer && drawer.back();
|
|
3257
3382
|
}
|
|
3258
3383
|
};
|
|
3384
|
+
/**
|
|
3385
|
+
* @param {?} config
|
|
3386
|
+
* @return {?}
|
|
3387
|
+
*/
|
|
3388
|
+
DrawerService.prototype.setConfig = /**
|
|
3389
|
+
* @param {?} config
|
|
3390
|
+
* @return {?}
|
|
3391
|
+
*/
|
|
3392
|
+
function (config) {
|
|
3393
|
+
if (this.uniqueDrawerComponent) {
|
|
3394
|
+
this.uniqueDrawerComponent.setConfig(config);
|
|
3395
|
+
}
|
|
3396
|
+
};
|
|
3259
3397
|
/**
|
|
3260
3398
|
* @param {?} cacheKey
|
|
3261
3399
|
* @return {?}
|
|
@@ -4096,6 +4234,24 @@
|
|
|
4096
4234
|
this.drawer.nativeElement.insertBefore(this.header.nativeElement, this.drawer.nativeElement.firstChild);
|
|
4097
4235
|
this.header.nativeElement.append(this.toolbarSlot.nativeElement);
|
|
4098
4236
|
}
|
|
4237
|
+
this.config = cache.config;
|
|
4238
|
+
this.ref.markForCheck();
|
|
4239
|
+
};
|
|
4240
|
+
/**
|
|
4241
|
+
* @param {?} config
|
|
4242
|
+
* @return {?}
|
|
4243
|
+
*/
|
|
4244
|
+
DrawerComponent.prototype.setConfig = /**
|
|
4245
|
+
* @param {?} config
|
|
4246
|
+
* @return {?}
|
|
4247
|
+
*/
|
|
4248
|
+
function (config) {
|
|
4249
|
+
/** @type {?} */
|
|
4250
|
+
var cache = this.componentRefMap.get(this.service.cacheKey);
|
|
4251
|
+
if (cache) {
|
|
4252
|
+
cache.config = __assign({}, cache.config, config);
|
|
4253
|
+
this.setCache(cache);
|
|
4254
|
+
}
|
|
4099
4255
|
};
|
|
4100
4256
|
/**
|
|
4101
4257
|
* @template T
|
|
@@ -4133,7 +4289,6 @@
|
|
|
4133
4289
|
this.setComponentData(componentRef, data);
|
|
4134
4290
|
this.componentRefMap.set(this.service.cacheKey, cache);
|
|
4135
4291
|
this.setCache(cache);
|
|
4136
|
-
this.config = showConfig;
|
|
4137
4292
|
this.toggleOpenStatus(true, true);
|
|
4138
4293
|
return componentRef.instance;
|
|
4139
4294
|
};
|
|
@@ -4190,7 +4345,6 @@
|
|
|
4190
4345
|
var cache = this.componentRefMap.get(this.service.cacheKey);
|
|
4191
4346
|
if (cache) {
|
|
4192
4347
|
cache.ref.location.nativeElement.style.display = "";
|
|
4193
|
-
this.config = cache.config;
|
|
4194
4348
|
this.setCache(cache);
|
|
4195
4349
|
this.toggleOpenStatus(true);
|
|
4196
4350
|
}
|
|
@@ -21704,8 +21858,8 @@
|
|
|
21704
21858
|
RSAsideComponent.decorators = [
|
|
21705
21859
|
{ type: core.Component, args: [{
|
|
21706
21860
|
selector: "rs-aside",
|
|
21707
|
-
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",
|
|
21708
|
-
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}}"]
|
|
21861
|
+
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",
|
|
21862
|
+
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}}"]
|
|
21709
21863
|
}] }
|
|
21710
21864
|
];
|
|
21711
21865
|
/** @nocollapse */
|
|
@@ -22225,99 +22379,6 @@
|
|
|
22225
22379
|
EncryptedInputComponent.prototype.encrypted;
|
|
22226
22380
|
}
|
|
22227
22381
|
|
|
22228
|
-
/**
|
|
22229
|
-
* @fileoverview added by tsickle
|
|
22230
|
-
* Generated from: lib/form/search-input/index.component.ts
|
|
22231
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
22232
|
-
*/
|
|
22233
|
-
var SearchInputComponent = /** @class */ (function () {
|
|
22234
|
-
function SearchInputComponent() {
|
|
22235
|
-
this.placeholder = "";
|
|
22236
|
-
this.hanleSearch = new core.EventEmitter();
|
|
22237
|
-
this.handleInput = new core.EventEmitter();
|
|
22238
|
-
this.searchValue = "";
|
|
22239
|
-
}
|
|
22240
|
-
/**
|
|
22241
|
-
* @return {?}
|
|
22242
|
-
*/
|
|
22243
|
-
SearchInputComponent.prototype.ngOnInit = /**
|
|
22244
|
-
* @return {?}
|
|
22245
|
-
*/
|
|
22246
|
-
function () {
|
|
22247
|
-
var _this = this;
|
|
22248
|
-
this.getInfo();
|
|
22249
|
-
this.debouncedInput = lodash.debounce((/**
|
|
22250
|
-
* @return {?}
|
|
22251
|
-
*/
|
|
22252
|
-
function () {
|
|
22253
|
-
_this.onSeach();
|
|
22254
|
-
}), 300);
|
|
22255
|
-
};
|
|
22256
|
-
/**
|
|
22257
|
-
* @return {?}
|
|
22258
|
-
*/
|
|
22259
|
-
SearchInputComponent.prototype.getInfo = /**
|
|
22260
|
-
* @return {?}
|
|
22261
|
-
*/
|
|
22262
|
-
function () {
|
|
22263
|
-
this.translation = JSON.parse(localStorage.getItem("translation"));
|
|
22264
|
-
this.placeholder = this.placeholder || this.translation.SEARCH;
|
|
22265
|
-
};
|
|
22266
|
-
/**
|
|
22267
|
-
* @param {?} e
|
|
22268
|
-
* @return {?}
|
|
22269
|
-
*/
|
|
22270
|
-
SearchInputComponent.prototype.onInput = /**
|
|
22271
|
-
* @param {?} e
|
|
22272
|
-
* @return {?}
|
|
22273
|
-
*/
|
|
22274
|
-
function (e) {
|
|
22275
|
-
this.handleInput.emit(e.value);
|
|
22276
|
-
this.debouncedInput();
|
|
22277
|
-
};
|
|
22278
|
-
/**
|
|
22279
|
-
* @return {?}
|
|
22280
|
-
*/
|
|
22281
|
-
SearchInputComponent.prototype.onSeach = /**
|
|
22282
|
-
* @return {?}
|
|
22283
|
-
*/
|
|
22284
|
-
function () {
|
|
22285
|
-
this.hanleSearch.emit(this.searchValue);
|
|
22286
|
-
};
|
|
22287
|
-
SearchInputComponent.decorators = [
|
|
22288
|
-
{ type: core.Component, args: [{
|
|
22289
|
-
selector: "rs-search-input",
|
|
22290
|
-
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",
|
|
22291
|
-
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}"]
|
|
22292
|
-
}] }
|
|
22293
|
-
];
|
|
22294
|
-
/** @nocollapse */
|
|
22295
|
-
SearchInputComponent.ctorParameters = function () { return []; };
|
|
22296
|
-
SearchInputComponent.propDecorators = {
|
|
22297
|
-
placeholder: [{ type: core.Input }],
|
|
22298
|
-
hanleSearch: [{ type: core.Output }],
|
|
22299
|
-
handleInput: [{ type: core.Output }]
|
|
22300
|
-
};
|
|
22301
|
-
return SearchInputComponent;
|
|
22302
|
-
}());
|
|
22303
|
-
if (false) {
|
|
22304
|
-
/** @type {?} */
|
|
22305
|
-
SearchInputComponent.prototype.placeholder;
|
|
22306
|
-
/** @type {?} */
|
|
22307
|
-
SearchInputComponent.prototype.hanleSearch;
|
|
22308
|
-
/** @type {?} */
|
|
22309
|
-
SearchInputComponent.prototype.handleInput;
|
|
22310
|
-
/**
|
|
22311
|
-
* @type {?}
|
|
22312
|
-
* @private
|
|
22313
|
-
*/
|
|
22314
|
-
SearchInputComponent.prototype.debouncedInput;
|
|
22315
|
-
/** @type {?} */
|
|
22316
|
-
SearchInputComponent.prototype.searchValue;
|
|
22317
|
-
/** @type {?} */
|
|
22318
|
-
SearchInputComponent.prototype.translation;
|
|
22319
|
-
}
|
|
22320
|
-
|
|
22321
22382
|
/**
|
|
22322
22383
|
* @fileoverview added by tsickle
|
|
22323
22384
|
* Generated from: lib/form/drawer-form/constants.ts
|