raise-common-lib 0.0.149 → 0.0.151
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 +252 -160
- 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/dialog/common-delete-dialog/index.component.js +30 -2
- package/esm2015/lib/dialog/common-dialog/index.component.js +47 -11
- package/esm2015/lib/layout/multi-tab/index.component.js +17 -3
- package/esm2015/lib/raise-common-lib.module.js +7 -3
- package/esm2015/lib/service/dialog.service.js +1 -1
- package/esm2015/public-api.js +2 -1
- package/esm2015/raise-common-lib.js +3 -4
- package/esm5/lib/dialog/common-delete-dialog/index.component.js +35 -2
- package/esm5/lib/dialog/common-dialog/index.component.js +51 -12
- package/esm5/lib/layout/multi-tab/index.component.js +21 -3
- package/esm5/lib/raise-common-lib.module.js +7 -3
- package/esm5/lib/service/dialog.service.js +1 -1
- package/esm5/public-api.js +2 -1
- package/esm5/raise-common-lib.js +3 -4
- package/fesm2015/raise-common-lib.js +220 -139
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +248 -155
- package/fesm5/raise-common-lib.js.map +1 -1
- package/lib/dialog/common-delete-dialog/index.component.d.ts +4 -0
- package/lib/dialog/common-dialog/index.component.d.ts +6 -1
- package/lib/layout/multi-tab/index.component.d.ts +2 -0
- package/lib/service/dialog.service.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/raise-common-lib.d.ts +1 -2
- package/raise-common-lib.metadata.json +1 -1
- package/src/assets/img/grow-icon.svg +6 -0
- package/src/assets/img/shrink-icon.svg +6 -0
|
@@ -9,6 +9,7 @@ import { TreeGridComponent } from '@syncfusion/ej2-angular-treegrid';
|
|
|
9
9
|
import { CarouselAllModule, ToolbarModule, TabModule, TreeViewModule } from '@syncfusion/ej2-angular-navigations';
|
|
10
10
|
import { NavigationEnd, Router, ActivatedRoute, RouteReuseStrategy } from '@angular/router';
|
|
11
11
|
import { filter } from 'rxjs/operators';
|
|
12
|
+
import { moveItemInArray, DragDropModule } from '@angular/cdk/drag-drop';
|
|
12
13
|
import { HttpClient, HttpClientModule } from '@angular/common/http';
|
|
13
14
|
import { setCulture, L10n } from '@syncfusion/ej2-base';
|
|
14
15
|
import ResizeObserver from 'resize-observer-polyfill';
|
|
@@ -1766,6 +1767,10 @@ if (false) {
|
|
|
1766
1767
|
DialogConfig.prototype.hideSaveBtn;
|
|
1767
1768
|
/** @type {?|undefined} */
|
|
1768
1769
|
DialogConfig.prototype.hideCloseBtn;
|
|
1770
|
+
/** @type {?|undefined} */
|
|
1771
|
+
DialogConfig.prototype.showZoomBtn;
|
|
1772
|
+
/** @type {?|undefined} */
|
|
1773
|
+
DialogConfig.prototype.onCloseRequest;
|
|
1769
1774
|
}
|
|
1770
1775
|
var CommonDeleteComponent = /** @class */ (function () {
|
|
1771
1776
|
function CommonDeleteComponent(data, dialogRef) {
|
|
@@ -1776,6 +1781,7 @@ var CommonDeleteComponent = /** @class */ (function () {
|
|
|
1776
1781
|
this.cancelBtnLabel = "";
|
|
1777
1782
|
this.description = "";
|
|
1778
1783
|
this.size = "small";
|
|
1784
|
+
this.showZoomBtn = false;
|
|
1779
1785
|
}
|
|
1780
1786
|
/**
|
|
1781
1787
|
* @return {?}
|
|
@@ -1796,6 +1802,7 @@ var CommonDeleteComponent = /** @class */ (function () {
|
|
|
1796
1802
|
this.translation.IF_YOU_DELETE_THIS_RECORD_WARNING ||
|
|
1797
1803
|
".If you delete this record, you won't be able to recover it. Do you want to delete it?";
|
|
1798
1804
|
this.size = this.data.size || "small";
|
|
1805
|
+
this.showZoomBtn = this.data.showZoomBtn || false;
|
|
1799
1806
|
};
|
|
1800
1807
|
/**
|
|
1801
1808
|
* @param {?} e
|
|
@@ -1808,10 +1815,35 @@ var CommonDeleteComponent = /** @class */ (function () {
|
|
|
1808
1815
|
function (e) {
|
|
1809
1816
|
this.dialogRef.close(e);
|
|
1810
1817
|
};
|
|
1818
|
+
/**
|
|
1819
|
+
* @param {?} e
|
|
1820
|
+
* @return {?}
|
|
1821
|
+
*/
|
|
1822
|
+
CommonDeleteComponent.prototype.onClose = /**
|
|
1823
|
+
* @param {?} e
|
|
1824
|
+
* @return {?}
|
|
1825
|
+
*/
|
|
1826
|
+
function (e) {
|
|
1827
|
+
var _this = this;
|
|
1828
|
+
if (this.data.onCloseRequest) {
|
|
1829
|
+
this.data.onCloseRequest(e).then((/**
|
|
1830
|
+
* @param {?} confirmed
|
|
1831
|
+
* @return {?}
|
|
1832
|
+
*/
|
|
1833
|
+
function (confirmed) {
|
|
1834
|
+
if (confirmed) {
|
|
1835
|
+
_this.dialogRef.close();
|
|
1836
|
+
}
|
|
1837
|
+
}));
|
|
1838
|
+
}
|
|
1839
|
+
else {
|
|
1840
|
+
this.dialogRef.close();
|
|
1841
|
+
}
|
|
1842
|
+
};
|
|
1811
1843
|
CommonDeleteComponent.decorators = [
|
|
1812
1844
|
{ type: Component, args: [{
|
|
1813
1845
|
selector: "kt-common-delete-dialog",
|
|
1814
|
-
template: "<kt-common-dialog\r\n\t[size]=\"size\"\r\n\t[title]=\"title\"\r\n\t[hideHeader]=\"false\"\r\n\t[hideCloseBtn]=\"data.hideCloseBtn === undefined ? false : data.hideCloseBtn\"\r\n\t[hideSaveBtn]=\"data.hideSaveBtn === undefined ? false : data.hideSaveBtn\"\r\n\t[saveBtnLabel]=\"saveBtnLabel\"\r\n\t[cancelBtnLabel]=\"cancelBtnLabel\"\r\n\t[showErrorIcon]=\"\r\n\t\tdata.showErrorIcon === undefined ? false : data.showErrorIcon\r\n\t\"\r\n\t[hideCloseIcon]=\"\r\n\t\tdata.hideCloseIcon === undefined ? false : data.hideCloseIcon\r\n\t\"\r\n\t(saveEmit)=\"onSave($event)\"\r\n>\r\n\t<div class=\"mapping-dialog\">\r\n\t\t{{ description }}\r\n\t</div>\r\n</kt-common-dialog>\r\n",
|
|
1846
|
+
template: "<kt-common-dialog\r\n\t[size]=\"size\"\r\n\t[title]=\"title\"\r\n\t[hideHeader]=\"false\"\r\n\t[hideCloseBtn]=\"data.hideCloseBtn === undefined ? false : data.hideCloseBtn\"\r\n\t[hideSaveBtn]=\"data.hideSaveBtn === undefined ? false : data.hideSaveBtn\"\r\n\t[saveBtnLabel]=\"saveBtnLabel\"\r\n\t[cancelBtnLabel]=\"cancelBtnLabel\"\r\n\t[showZoomBtn]=\"showZoomBtn\"\r\n\t[showErrorIcon]=\"\r\n\t\tdata.showErrorIcon === undefined ? false : data.showErrorIcon\r\n\t\"\r\n\t[hideCloseIcon]=\"\r\n\t\tdata.hideCloseIcon === undefined ? false : data.hideCloseIcon\r\n\t\"\r\n\t(saveEmit)=\"onSave($event)\"\r\n>\r\n\t<div class=\"mapping-dialog\">\r\n\t\t{{ description }}\r\n\t</div>\r\n</kt-common-dialog>\r\n",
|
|
1815
1847
|
styles: [".mapping-dialog{color:#44566c;font-family:Arial;font-size:12px;line-height:16px;white-space:pre-line}"]
|
|
1816
1848
|
}] }
|
|
1817
1849
|
];
|
|
@@ -1836,6 +1868,8 @@ if (false) {
|
|
|
1836
1868
|
/** @type {?} */
|
|
1837
1869
|
CommonDeleteComponent.prototype.size;
|
|
1838
1870
|
/** @type {?} */
|
|
1871
|
+
CommonDeleteComponent.prototype.showZoomBtn;
|
|
1872
|
+
/** @type {?} */
|
|
1839
1873
|
CommonDeleteComponent.prototype.data;
|
|
1840
1874
|
/** @type {?} */
|
|
1841
1875
|
CommonDeleteComponent.prototype.dialogRef;
|
|
@@ -3570,6 +3604,23 @@ var MultiTabComponent = /** @class */ (function () {
|
|
|
3570
3604
|
this.ref.markForCheck();
|
|
3571
3605
|
}
|
|
3572
3606
|
};
|
|
3607
|
+
/**
|
|
3608
|
+
* @param {?} event
|
|
3609
|
+
* @return {?}
|
|
3610
|
+
*/
|
|
3611
|
+
MultiTabComponent.prototype.onTabDrop = /**
|
|
3612
|
+
* @param {?} event
|
|
3613
|
+
* @return {?}
|
|
3614
|
+
*/
|
|
3615
|
+
function (event) {
|
|
3616
|
+
var previousIndex = event.previousIndex, currentIndex = event.currentIndex;
|
|
3617
|
+
console.log("previousIndex", previousIndex, "currentIndex", currentIndex);
|
|
3618
|
+
if (previousIndex === 0 || currentIndex === 0) {
|
|
3619
|
+
return;
|
|
3620
|
+
}
|
|
3621
|
+
moveItemInArray(this.tabList, event.previousIndex, event.currentIndex);
|
|
3622
|
+
sessionStorage.setItem("TabCache", JSON.stringify(this.tabList));
|
|
3623
|
+
};
|
|
3573
3624
|
/**
|
|
3574
3625
|
* @return {?}
|
|
3575
3626
|
*/
|
|
@@ -3641,8 +3692,8 @@ var MultiTabComponent = /** @class */ (function () {
|
|
|
3641
3692
|
MultiTabComponent.decorators = [
|
|
3642
3693
|
{ type: Component, args: [{
|
|
3643
3694
|
selector: "rs-multi-tab",
|
|
3644
|
-
template: "<div class=\"rs-multi-tab\" [ngClass]=\"{ 'b-line': tabList.length > 0 }\">\r\n
|
|
3645
|
-
styles: ["
|
|
3695
|
+
template: "<div class=\"rs-multi-tab\" [ngClass]=\"{ 'b-line': tabList.length > 0 }\">\r\n <ul\r\n cdkDropList\r\n cdkDropListOrientation=\"horizontal\"\r\n (cdkDropListDropped)=\"onTabDrop($event)\"\r\n >\r\n <li\r\n class=\"tab-item\"\r\n *ngFor=\"let tab of tabList; let i = index\"\r\n [ngClass]=\"selectedTab === i ? 'isSelect' : 'notSelect'\"\r\n [cdkDragDisabled]=\"i === 0\"\r\n cdkDrag\r\n (click)=\"changeTab(tab, i)\"\r\n >\r\n <ng-template cdkDragPlaceholder let-item>\r\n <div class=\"placeholder\">\r\n\t\t</div>\r\n </ng-template>\r\n\t \r\n <ejs-tooltip\r\n id=\"notSelectTooltip\"\r\n [showTipPointer]=\"false\"\r\n [openDelay]=\"500\"\r\n *ngIf=\"tab.displayTitle !== tab.title; else originText\"\r\n style=\"height: 27px\"\r\n >\r\n <ng-template #content>\r\n <div class=\"tooltip-content\">\r\n {{ tab.title }}\r\n </div>\r\n </ng-template>\r\n <span class=\"tabTitle\">{{ tab.displayTitle }}</span>\r\n </ejs-tooltip>\r\n <ng-template #originText>\r\n <span class=\"tabTitle\">\r\n {{ tab.displayTitle }}\r\n </span>\r\n </ng-template>\r\n <span class=\"img-block\" *ngIf=\"selectedTab !== i && i !== 0\"></span>\r\n <img\r\n *ngIf=\"i !== 0\"\r\n src=\"../../../assets/img/close-url.svg\"\r\n (click)=\"closeTab(i)\"\r\n />\r\n </li>\r\n </ul>\r\n <div class=\"refresh-tab\" (click)=\"refreshTab()\" *ngIf=\"tabList.length > 0\">\r\n <ejs-tooltip\r\n id=\"notSelectTooltip\"\r\n cssClass=\"notSelectTooltip\"\r\n [showTipPointer]=\"false\"\r\n [openDelay]=\"500\"\r\n style=\"height: 27px\"\r\n >\r\n <ng-template #content>\r\n <div class=\"tooltip-content\">Refresh Current Tab</div>\r\n </ng-template>\r\n <img\r\n id=\"loadingIcon\"\r\n alt\r\n class=\"refresh-btn\"\r\n src=\"../../../assets/img/desktop-refresh-btn.svg\"\r\n />\r\n </ejs-tooltip>\r\n </div>\r\n</div>\r\n",
|
|
3696
|
+
styles: ["@charset \"UTF-8\";.rs-multi-tab{width:100%;display:flex;justify-content:space-between;margin:0 auto;max-width:1886px}.rs-multi-tab.b-line{border-bottom:1px solid #e5eaef}.rs-multi-tab ul{display:flex;margin:0 8px;padding:0;overflow:hidden;height:100%}.rs-multi-tab ul .tab-item{max-width:164px;padding:0 12px;display:flex;align-items:center;flex:auto;border:1px solid #e5eaef;border-bottom:none;color:#5f6f81;font-family:Arial;font-size:11px;font-style:normal;font-weight:400;line-height:28px;height:28px;background:#f8fafb;vertical-align:top;position:relative;cursor:default}.rs-multi-tab ul .tab-item .tabTitle{display:inline-block;white-space:nowrap;font-size:11px;font-family:Arial;font-style:normal;font-weight:400;line-height:16px;transition:width .3s}.rs-multi-tab ul .tab-item img{border-radius:4px;padding:4px;margin-left:6px;margin-top:1px;vertical-align:top;cursor:pointer}.rs-multi-tab ul .tab-item img:hover{background:#dce8f6}.rs-multi-tab ul .tab-item:not(:last-child){border-right:none}.rs-multi-tab ul .tab-item:first-of-type{border-top-left-radius:8px}.rs-multi-tab ul .tab-item:last-child{border-top-right-radius:8px}.rs-multi-tab ul.cdk-drop-list-dragging .tab-item.cdk-drag-disabled:hover{background:#f8fafb!important;cursor:no-drop}.rs-multi-tab ul .isSelect{color:#1f3f5c;background:#fff}.rs-multi-tab ul .notSelect img{display:none}.rs-multi-tab ul .notSelect .img-block{display:inline-block;width:22px}.rs-multi-tab ul .notSelect:hover{color:#1f3f5c;background-color:rgba(31,123,255,.04)}.rs-multi-tab ul .notSelect:hover .img-block{display:none}.rs-multi-tab ul .notSelect:hover img{display:inline-block}.rs-multi-tab .refresh-tab{cursor:pointer;text-align:right;color:#6c7c90;font-family:Arial;font-size:11px;font-style:normal;font-weight:400;line-height:28px;padding-right:12px}.rs-multi-tab .refresh-tab img{vertical-align:middle;margin-right:4px}.refresh-tab-loading{-webkit-animation:1s linear infinite spin;animation:1s linear infinite spin}.notSelectTooltip{transform:translateX(-12px)}.tab-item.cdk-drag{max-width:164px;padding:0 12px;display:flex;align-items:center;flex:auto;border:1px solid #e5eaef;border-bottom:none;color:#5f6f81;font-family:Arial;font-size:11px;font-style:normal;font-weight:400;line-height:28px;height:28px;background:#f8fafb;vertical-align:top;position:relative;cursor:default}.tab-item.cdk-drag .tabTitle{display:inline-block;white-space:nowrap;font-size:11px;font-family:Arial;font-style:normal;font-weight:400;line-height:16px;transition:width .3s}.tab-item.cdk-drag img{border-radius:4px;padding:4px;margin-left:6px;margin-top:1px;vertical-align:top;cursor:pointer}.tab-item.cdk-drag img:hover{background:#dce8f6}@-webkit-keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.tooltip-content{padding:4px;color:#f8fafb;font-family:Arial;font-size:11px;font-style:normal;font-weight:400;line-height:14px}@media (max-width:1400px){.refresh-tab{padding-right:0!important}.refresh-tab span{display:none!important}}@media (max-width:1100px){.rs-multi-tab ul .tab-item img{position:absolute;right:3px;background-color:#fff}.notSelect:hover img{position:absolute;right:3px;background-color:#eff5fb}.img-block{display:none!important}.isSelect:not(:first-child){padding-right:20px!important}}@media (max-width:600px){.rs-multi-tab ul .tab-item{padding:0 8px}.rs-multi-tab ul .notSelect .img-block{width:0!important}}"]
|
|
3646
3697
|
}] }
|
|
3647
3698
|
];
|
|
3648
3699
|
/** @nocollapse */
|
|
@@ -22633,6 +22684,194 @@ if (false) {
|
|
|
22633
22684
|
ToolbarItemComponent.prototype.ImageType;
|
|
22634
22685
|
}
|
|
22635
22686
|
|
|
22687
|
+
/**
|
|
22688
|
+
* @fileoverview added by tsickle
|
|
22689
|
+
* Generated from: lib/dialog/common-dialog/index.component.ts
|
|
22690
|
+
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
22691
|
+
*/
|
|
22692
|
+
var CommonDialogComponent = /** @class */ (function () {
|
|
22693
|
+
function CommonDialogComponent(dialogRef) {
|
|
22694
|
+
this.dialogRef = dialogRef;
|
|
22695
|
+
// 隐藏元素相关属性
|
|
22696
|
+
this.hideHeader = false;
|
|
22697
|
+
this.hideCloseIcon = false;
|
|
22698
|
+
this.hideCloseBtn = false;
|
|
22699
|
+
this.hideSaveBtn = false;
|
|
22700
|
+
this.saveBtnLabel = "";
|
|
22701
|
+
this.cancelBtnLabel = "";
|
|
22702
|
+
this.showErrorIcon = false;
|
|
22703
|
+
this.showZoomBtn = false;
|
|
22704
|
+
// 显示相关属性
|
|
22705
|
+
this.dialogStyle = {};
|
|
22706
|
+
this.size = "";
|
|
22707
|
+
this.title = "Dialog";
|
|
22708
|
+
this.loading = false;
|
|
22709
|
+
this.saveEmit = new EventEmitter();
|
|
22710
|
+
this.closeEmit = new EventEmitter();
|
|
22711
|
+
this.defaultSize = "";
|
|
22712
|
+
this.customFooter = false;
|
|
22713
|
+
}
|
|
22714
|
+
/**
|
|
22715
|
+
* @return {?}
|
|
22716
|
+
*/
|
|
22717
|
+
CommonDialogComponent.prototype.ngAfterContentInit = /**
|
|
22718
|
+
* @return {?}
|
|
22719
|
+
*/
|
|
22720
|
+
function () {
|
|
22721
|
+
this.customFooter = !!this.footerContent;
|
|
22722
|
+
};
|
|
22723
|
+
/**
|
|
22724
|
+
* @return {?}
|
|
22725
|
+
*/
|
|
22726
|
+
CommonDialogComponent.prototype.ngOnInit = /**
|
|
22727
|
+
* @return {?}
|
|
22728
|
+
*/
|
|
22729
|
+
function () {
|
|
22730
|
+
this.getInfo();
|
|
22731
|
+
};
|
|
22732
|
+
/**
|
|
22733
|
+
* @return {?}
|
|
22734
|
+
*/
|
|
22735
|
+
CommonDialogComponent.prototype.onClose = /**
|
|
22736
|
+
* @return {?}
|
|
22737
|
+
*/
|
|
22738
|
+
function () {
|
|
22739
|
+
var _this = this;
|
|
22740
|
+
if (this.onCloseRequest) {
|
|
22741
|
+
this.onCloseRequest().then((/**
|
|
22742
|
+
* @param {?} confirmed
|
|
22743
|
+
* @return {?}
|
|
22744
|
+
*/
|
|
22745
|
+
function (confirmed) {
|
|
22746
|
+
if (confirmed) {
|
|
22747
|
+
_this.dialogRef.close();
|
|
22748
|
+
}
|
|
22749
|
+
}));
|
|
22750
|
+
}
|
|
22751
|
+
else {
|
|
22752
|
+
this.dialogRef.close();
|
|
22753
|
+
}
|
|
22754
|
+
};
|
|
22755
|
+
/**
|
|
22756
|
+
* @return {?}
|
|
22757
|
+
*/
|
|
22758
|
+
CommonDialogComponent.prototype.onZoom = /**
|
|
22759
|
+
* @return {?}
|
|
22760
|
+
*/
|
|
22761
|
+
function () {
|
|
22762
|
+
if (this.size === "largest") {
|
|
22763
|
+
this.size = this.defaultSize; // 恢复到原始大小
|
|
22764
|
+
}
|
|
22765
|
+
else {
|
|
22766
|
+
this.size = "largest"; // 设置为最大化
|
|
22767
|
+
}
|
|
22768
|
+
};
|
|
22769
|
+
/**
|
|
22770
|
+
* @return {?}
|
|
22771
|
+
*/
|
|
22772
|
+
CommonDialogComponent.prototype.onSave = /**
|
|
22773
|
+
* @return {?}
|
|
22774
|
+
*/
|
|
22775
|
+
function () {
|
|
22776
|
+
var _this = this;
|
|
22777
|
+
// 这里把关闭事件emit上去,但是必须使用箭头函数保存this对象
|
|
22778
|
+
this.saveEmit.emit((/**
|
|
22779
|
+
* @param {?} res
|
|
22780
|
+
* @return {?}
|
|
22781
|
+
*/
|
|
22782
|
+
function (res) {
|
|
22783
|
+
_this.dialogRef.close(res);
|
|
22784
|
+
}));
|
|
22785
|
+
};
|
|
22786
|
+
/**
|
|
22787
|
+
* @private
|
|
22788
|
+
* @return {?}
|
|
22789
|
+
*/
|
|
22790
|
+
CommonDialogComponent.prototype.getInfo = /**
|
|
22791
|
+
* @private
|
|
22792
|
+
* @return {?}
|
|
22793
|
+
*/
|
|
22794
|
+
function () {
|
|
22795
|
+
this.translation = JSON.parse(localStorage.getItem("translation")) || {};
|
|
22796
|
+
this.saveBtnLabel = this.saveBtnLabel || this.translation.SAVE || ".SAVE";
|
|
22797
|
+
this.cancelBtnLabel =
|
|
22798
|
+
this.cancelBtnLabel || this.translation.CANCEL || ".CANCEL";
|
|
22799
|
+
this.defaultSize = this.size;
|
|
22800
|
+
};
|
|
22801
|
+
CommonDialogComponent.decorators = [
|
|
22802
|
+
{ type: Component, args: [{
|
|
22803
|
+
selector: "rs-common-dialog",
|
|
22804
|
+
template: "<div class=\"dialog\" [ngClass]=\"size\" [ngStyle]=\"dialogStyle\">\r\n <!-- \u5934\u90E8 -->\r\n <div *ngIf=\"!hideHeader\" mat-dialog-title class=\"dialog__header\">\r\n <div class=\"header__title\">\r\n <img\r\n src=\"../../../assets/img/notification-status-warning.svg\"\r\n alt=\"\"\r\n *ngIf=\"showErrorIcon\"\r\n />\r\n {{ title }}\r\n </div>\r\n <div class=\"header__actions\">\r\n <div *ngIf=\"showZoomBtn\" class=\"header__close-btn\" (click)=\"onZoom()\">\r\n <img\r\n class=\"header__close-icon\"\r\n *ngIf=\"size === 'largest'\"\r\n src=\"../../../assets/img/shrink-icon.svg\"\r\n />\r\n <img\r\n class=\"header__close-icon\"\r\n *ngIf=\"size !== 'largest'\"\r\n src=\"../../../assets/img/grow-icon.svg\"\r\n />\r\n </div>\r\n <div *ngIf=\"!hideCloseIcon\" class=\"header__close-btn\" (click)=\"onClose()\">\r\n <img class=\"header__close-icon\" src=\"../../../assets/img/close.svg\" />\r\n </div>\r\n </div>\r\n </div>\r\n <!-- \u5185\u5BB9 -->\r\n <div class=\"dialog__content\" mat-dialog-content>\r\n <ng-content></ng-content>\r\n </div>\r\n <!-- \u5E95\u90E8\u6309\u94AE -->\r\n <div mat-dialog-actions class=\"dialog__footer\">\r\n <ng-content select=\"[footerSlot]\"></ng-content>\r\n <!-- \u9ED8\u8BA4\u5C55\u793A\u4FDD\u5B58/\u5173\u95ED\u6309\u94AE -->\r\n <ng-container *ngIf=\"!customFooter\">\r\n <ng-template [ngTemplateOutlet]=\"defaultTemplate\"></ng-template>\r\n </ng-container>\r\n <ng-template #defaultTemplate>\r\n <button\r\n *ngIf=\"!hideCloseBtn\"\r\n class=\"e-btn\"\r\n (click)=\"onClose()\"\r\n >\r\n {{ cancelBtnLabel }}\r\n </button>\r\n <button\r\n *ngIf=\"!hideSaveBtn\"\r\n class=\"e-btn e-primary\"\r\n (click)=\"onSave()\"\r\n >\r\n {{ saveBtnLabel }}\r\n </button>\r\n </ng-template>\r\n </div>\r\n <!-- loading -->\r\n <div class=\"dialog__loading\" [hidden]=\"!loading\">\r\n <img src=\"../../../assets/img/raise_loading.gif\" alt=\"\" />\r\n </div>\r\n</div>\r\n",
|
|
22805
|
+
styles: [":host::ng-deep .dialog{position:relative;max-height:90vh;font-weight:400;padding:20px;overflow:hidden;display:flex;flex-direction:column}:host::ng-deep .dialog.largest{width:80vw!important;max-width:1885px;padding:20px}:host::ng-deep .dialog.medium{width:500px;padding:20px}:host::ng-deep .dialog.small{width:350px;padding:20px 16px}:host::ng-deep .dialog.small .dialog__header{color:#002c4f;margin-bottom:16px}:host::ng-deep .dialog.small .dialog__header .header__title{font-size:13px;line-height:16px}:host::ng-deep .dialog.small .dialog__content{font-size:12px;line-height:16px}:host::ng-deep .dialog.small .dialog__footer{min-height:42px;padding:16px 0 0;font-size:12px;line-height:14px}:host::ng-deep .dialog.small .dialog__footer button{padding:6px 12px;min-width:60px}:host::ng-deep .dialog.large{width:800px;padding:20px}:host::ng-deep .dialog .dialog__header{width:100%;display:flex;justify-content:space-between;align-items:center;padding:0}:host::ng-deep .dialog .dialog__header::before{display:none}:host::ng-deep .dialog .dialog__header .header__title{color:#002c4f;font-family:Arial;font-size:15px;font-weight:700;line-height:18px;flex:1;overflow:hidden;display:flex;align-items:center;gap:8px}:host::ng-deep .dialog .dialog__header .header__actions{display:flex;align-items:center;gap:20px}:host::ng-deep .dialog .dialog__header .header__close-icon{display:block;width:100%;height:100%}:host::ng-deep .dialog .dialog__header .header__close-btn{cursor:pointer;flex:0 0 20px;padding:4px;width:20px;height:20px;display:flex;justify-content:center;align-items:center}:host::ng-deep .dialog .dialog__content{width:100%;min-height:38px;position:relative;overflow-y:auto;overflow-x:hidden;margin:0;padding:0;font-size:13px;line-height:19px;flex:1;height:0}:host::ng-deep .dialog .dialog__footer{position:relative;display:flex;align-items:center;justify-content:flex-end;padding:20px 0 0;font-size:13px;line-height:16px;margin-bottom:0}:host::ng-deep .dialog .dialog__footer button{border-radius:4px;padding:6px 16px;border:none;min-width:70px}:host::ng-deep .dialog .dialog__footer button+button{margin-left:12px}:host::ng-deep .dialog .dialog__footer .save-btn{background:#1364b3;border:1px solid #1364b3;font-weight:700;color:#fff}:host::ng-deep .dialog .dialog__footer .cancel-btn{border:1px solid #adb5bd;background:#fff}:host::ng-deep .dialog .dialog__loading{height:100%;background:0 0;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999}:host::ng-deep .dialog .dialog__loading img{position:absolute;left:50%;top:50%;width:40px;height:40px;transform:translate(-50%,-50%)}"]
|
|
22806
|
+
}] }
|
|
22807
|
+
];
|
|
22808
|
+
/** @nocollapse */
|
|
22809
|
+
CommonDialogComponent.ctorParameters = function () { return [
|
|
22810
|
+
{ type: MatDialogRef }
|
|
22811
|
+
]; };
|
|
22812
|
+
CommonDialogComponent.propDecorators = {
|
|
22813
|
+
hideHeader: [{ type: Input }],
|
|
22814
|
+
hideCloseIcon: [{ type: Input }],
|
|
22815
|
+
hideCloseBtn: [{ type: Input }],
|
|
22816
|
+
hideSaveBtn: [{ type: Input }],
|
|
22817
|
+
saveBtnLabel: [{ type: Input }],
|
|
22818
|
+
cancelBtnLabel: [{ type: Input }],
|
|
22819
|
+
showErrorIcon: [{ type: Input }],
|
|
22820
|
+
showZoomBtn: [{ type: Input }],
|
|
22821
|
+
onCloseRequest: [{ type: Input }],
|
|
22822
|
+
dialogStyle: [{ type: Input }],
|
|
22823
|
+
size: [{ type: Input }],
|
|
22824
|
+
title: [{ type: Input }],
|
|
22825
|
+
loading: [{ type: Input }],
|
|
22826
|
+
saveEmit: [{ type: Output }],
|
|
22827
|
+
closeEmit: [{ type: Output }],
|
|
22828
|
+
footerContent: [{ type: ContentChild, args: ["footerSlot", { static: false },] }]
|
|
22829
|
+
};
|
|
22830
|
+
return CommonDialogComponent;
|
|
22831
|
+
}());
|
|
22832
|
+
if (false) {
|
|
22833
|
+
/** @type {?} */
|
|
22834
|
+
CommonDialogComponent.prototype.translation;
|
|
22835
|
+
/** @type {?} */
|
|
22836
|
+
CommonDialogComponent.prototype.hideHeader;
|
|
22837
|
+
/** @type {?} */
|
|
22838
|
+
CommonDialogComponent.prototype.hideCloseIcon;
|
|
22839
|
+
/** @type {?} */
|
|
22840
|
+
CommonDialogComponent.prototype.hideCloseBtn;
|
|
22841
|
+
/** @type {?} */
|
|
22842
|
+
CommonDialogComponent.prototype.hideSaveBtn;
|
|
22843
|
+
/** @type {?} */
|
|
22844
|
+
CommonDialogComponent.prototype.saveBtnLabel;
|
|
22845
|
+
/** @type {?} */
|
|
22846
|
+
CommonDialogComponent.prototype.cancelBtnLabel;
|
|
22847
|
+
/** @type {?} */
|
|
22848
|
+
CommonDialogComponent.prototype.showErrorIcon;
|
|
22849
|
+
/** @type {?} */
|
|
22850
|
+
CommonDialogComponent.prototype.showZoomBtn;
|
|
22851
|
+
/** @type {?} */
|
|
22852
|
+
CommonDialogComponent.prototype.onCloseRequest;
|
|
22853
|
+
/** @type {?} */
|
|
22854
|
+
CommonDialogComponent.prototype.dialogStyle;
|
|
22855
|
+
/** @type {?} */
|
|
22856
|
+
CommonDialogComponent.prototype.size;
|
|
22857
|
+
/** @type {?} */
|
|
22858
|
+
CommonDialogComponent.prototype.title;
|
|
22859
|
+
/** @type {?} */
|
|
22860
|
+
CommonDialogComponent.prototype.loading;
|
|
22861
|
+
/** @type {?} */
|
|
22862
|
+
CommonDialogComponent.prototype.saveEmit;
|
|
22863
|
+
/** @type {?} */
|
|
22864
|
+
CommonDialogComponent.prototype.closeEmit;
|
|
22865
|
+
/** @type {?} */
|
|
22866
|
+
CommonDialogComponent.prototype.defaultSize;
|
|
22867
|
+
/** @type {?} */
|
|
22868
|
+
CommonDialogComponent.prototype.footerContent;
|
|
22869
|
+
/** @type {?} */
|
|
22870
|
+
CommonDialogComponent.prototype.customFooter;
|
|
22871
|
+
/** @type {?} */
|
|
22872
|
+
CommonDialogComponent.prototype.dialogRef;
|
|
22873
|
+
}
|
|
22874
|
+
|
|
22636
22875
|
/**
|
|
22637
22876
|
* @fileoverview added by tsickle
|
|
22638
22877
|
* Generated from: lib/service/icon-loader.service.ts
|
|
@@ -22860,155 +23099,6 @@ var KeepAliveService = /** @class */ (function () {
|
|
|
22860
23099
|
return KeepAliveService;
|
|
22861
23100
|
}());
|
|
22862
23101
|
|
|
22863
|
-
/**
|
|
22864
|
-
* @fileoverview added by tsickle
|
|
22865
|
-
* Generated from: lib/dialog/common-dialog/index.component.ts
|
|
22866
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
22867
|
-
*/
|
|
22868
|
-
var CommonDialogComponent = /** @class */ (function () {
|
|
22869
|
-
function CommonDialogComponent(dialogRef) {
|
|
22870
|
-
this.dialogRef = dialogRef;
|
|
22871
|
-
// 隐藏元素相关属性
|
|
22872
|
-
this.hideHeader = false;
|
|
22873
|
-
this.hideCloseIcon = false;
|
|
22874
|
-
this.hideCloseBtn = false;
|
|
22875
|
-
this.hideSaveBtn = false;
|
|
22876
|
-
this.saveBtnLabel = "";
|
|
22877
|
-
this.cancelBtnLabel = "";
|
|
22878
|
-
this.showErrorIcon = false;
|
|
22879
|
-
// 显示相关属性
|
|
22880
|
-
this.size = "";
|
|
22881
|
-
this.title = "Dialog";
|
|
22882
|
-
this.loading = false;
|
|
22883
|
-
this.saveEmit = new EventEmitter();
|
|
22884
|
-
this.closeEmit = new EventEmitter();
|
|
22885
|
-
this.customFooter = false;
|
|
22886
|
-
}
|
|
22887
|
-
/**
|
|
22888
|
-
* @return {?}
|
|
22889
|
-
*/
|
|
22890
|
-
CommonDialogComponent.prototype.ngAfterContentInit = /**
|
|
22891
|
-
* @return {?}
|
|
22892
|
-
*/
|
|
22893
|
-
function () {
|
|
22894
|
-
this.customFooter = !!this.footerContent;
|
|
22895
|
-
};
|
|
22896
|
-
/**
|
|
22897
|
-
* @return {?}
|
|
22898
|
-
*/
|
|
22899
|
-
CommonDialogComponent.prototype.ngOnInit = /**
|
|
22900
|
-
* @return {?}
|
|
22901
|
-
*/
|
|
22902
|
-
function () {
|
|
22903
|
-
this.getInfo();
|
|
22904
|
-
};
|
|
22905
|
-
/**
|
|
22906
|
-
* @param {?=} res
|
|
22907
|
-
* @return {?}
|
|
22908
|
-
*/
|
|
22909
|
-
CommonDialogComponent.prototype.onClose = /**
|
|
22910
|
-
* @param {?=} res
|
|
22911
|
-
* @return {?}
|
|
22912
|
-
*/
|
|
22913
|
-
function (res) {
|
|
22914
|
-
this.dialogRef.close(res);
|
|
22915
|
-
this.closeEmit.emit(res);
|
|
22916
|
-
};
|
|
22917
|
-
/**
|
|
22918
|
-
* @return {?}
|
|
22919
|
-
*/
|
|
22920
|
-
CommonDialogComponent.prototype.onSave = /**
|
|
22921
|
-
* @return {?}
|
|
22922
|
-
*/
|
|
22923
|
-
function () {
|
|
22924
|
-
var _this = this;
|
|
22925
|
-
// 这里把关闭事件emit上去,但是必须使用箭头函数保存this对象
|
|
22926
|
-
this.saveEmit.emit((/**
|
|
22927
|
-
* @param {?} res
|
|
22928
|
-
* @return {?}
|
|
22929
|
-
*/
|
|
22930
|
-
function (res) {
|
|
22931
|
-
_this.onClose(res);
|
|
22932
|
-
}));
|
|
22933
|
-
};
|
|
22934
|
-
/**
|
|
22935
|
-
* @private
|
|
22936
|
-
* @return {?}
|
|
22937
|
-
*/
|
|
22938
|
-
CommonDialogComponent.prototype.getInfo = /**
|
|
22939
|
-
* @private
|
|
22940
|
-
* @return {?}
|
|
22941
|
-
*/
|
|
22942
|
-
function () {
|
|
22943
|
-
this.translation = JSON.parse(localStorage.getItem("translation")) || {};
|
|
22944
|
-
this.saveBtnLabel =
|
|
22945
|
-
this.saveBtnLabel || this.translation.SAVE || ".SAVE";
|
|
22946
|
-
this.cancelBtnLabel =
|
|
22947
|
-
this.cancelBtnLabel || this.translation.CANCEL || ".CANCEL";
|
|
22948
|
-
};
|
|
22949
|
-
CommonDialogComponent.decorators = [
|
|
22950
|
-
{ type: Component, args: [{
|
|
22951
|
-
selector: "kt-common-dialog",
|
|
22952
|
-
template: "<div class=\"dialog\" [ngClass]=\"size\">\r\n\t<!-- \u5934\u90E8 -->\r\n\t<div *ngIf=\"!hideHeader\" mat-dialog-title class=\"dialog__header\">\r\n\t\t<div class=\"header__title\">\r\n\t\t\t<img\r\n\t\t\t\tsrc=\"../../../assets/img/notification-status-warning.svg\"\r\n\t\t\t\talt=\"\"\r\n\t\t\t\t*ngIf=\"showErrorIcon\"\r\n\t\t\t/>\r\n\t\t\t{{ title }}\r\n\t\t</div>\r\n\t\t<div\r\n\t\t\t*ngIf=\"!hideCloseIcon\"\r\n\t\t\tclass=\"header__close-btn\"\r\n\t\t\t(click)=\"onClose()\"\r\n\t\t>\r\n\t\t\t<img\r\n\t\t\t\tclass=\"header__close-icon\"\r\n\t\t\t\tsrc=\"../../../assets/img/close.svg\"\r\n\t\t\t/>\r\n\t\t</div>\r\n\t</div>\r\n\t<!-- \u5185\u5BB9 -->\r\n\t<div class=\"dialog__content\" mat-dialog-content>\r\n\t\t<ng-content></ng-content>\r\n\t</div>\r\n\t<!-- \u5E95\u90E8\u6309\u94AE -->\r\n\t<div mat-dialog-actions class=\"dialog__footer\">\r\n\t\t<ng-content select=\"[footerSlot]\"></ng-content>\r\n\t\t<!-- \u9ED8\u8BA4\u5C55\u793A\u4FDD\u5B58/\u5173\u95ED\u6309\u94AE -->\r\n\t\t<ng-container *ngIf=\"!customFooter\">\r\n\t\t\t<ng-template [ngTemplateOutlet]=\"defaultTemplate\"></ng-template>\r\n\t\t</ng-container>\r\n\t\t<ng-template #defaultTemplate>\r\n\t\t\t<button *ngIf=\"!hideCloseBtn\" class=\"e-btn\" [ngClass]=\"size\" mat-dialog-close>\r\n\t\t\t\t{{ cancelBtnLabel }}\r\n\t\t\t</button>\r\n\t\t\t<button *ngIf=\"!hideSaveBtn\" class=\"e-btn e-primary\" [ngClass]=\"size\" (click)=\"onSave()\">\r\n\t\t\t\t{{ saveBtnLabel }}\r\n\t\t\t</button>\r\n\t\t</ng-template>\r\n\t</div>\r\n\t<!-- loading -->\r\n\t<div class=\"dialog__loading\" [hidden]=\"!loading\">\r\n\t\t<img src=\"../../../assets/img/raise_loading.gif\" alt=\"\" />\r\n\t</div>\r\n</div>\r\n",
|
|
22953
|
-
styles: [":host::ng-deep .dialog{position:relative;max-height:90vh;font-weight:400;overflow:hidden}:host::ng-deep .dialog.medium{width:500px;padding:20px}:host::ng-deep .dialog.small{width:350px;padding:20px 16px}:host::ng-deep .dialog.small .dialog__header{color:#002c4f;margin-bottom:16px}:host::ng-deep .dialog.small .dialog__header .header__title{font-size:13px;line-height:16px}:host::ng-deep .dialog.small .dialog__content{font-size:12px;line-height:16px}:host::ng-deep .dialog.small .dialog__footer{min-height:42px;padding:16px 0 0;font-size:12px;line-height:14px}:host::ng-deep .dialog.small .dialog__footer button{padding:6px 12px;min-width:60px}:host::ng-deep .dialog.large{width:800px;padding:20px}:host::ng-deep .dialog .dialog__header{width:100%;display:flex;justify-content:space-between;align-items:center;padding:0}:host::ng-deep .dialog .dialog__header::before{display:none}:host::ng-deep .dialog .dialog__header .header__title{color:#002c4f;font-family:Arial;font-size:15px;font-weight:700;line-height:18px;flex:1;overflow:hidden;display:flex;align-items:center;gap:8px}:host::ng-deep .dialog .dialog__header .header__close-icon{display:block;width:100%;height:100%}:host::ng-deep .dialog .dialog__header .header__close-btn{cursor:pointer;flex:0 0 20px;padding:4px;width:20px;height:20px;display:flex;justify-content:center;align-items:center}:host::ng-deep .dialog .dialog__content{width:100%;min-height:38px;position:relative;overflow-y:auto;overflow-x:hidden;margin:0;padding:0;font-size:13px;line-height:19px}:host::ng-deep .dialog .dialog__footer{position:relative;display:flex;align-items:center;justify-content:flex-end;padding:20px 0 0;font-size:13px;line-height:16px;margin-bottom:0}:host::ng-deep .dialog .dialog__footer button{border-radius:4px;padding:6px 16px;border:none;min-width:70px}:host::ng-deep .dialog .dialog__footer button+button{margin-left:12px}:host::ng-deep .dialog .dialog__footer .save-btn{background:#1364b3;border:1px solid #1364b3;font-weight:700;color:#fff}:host::ng-deep .dialog .dialog__footer .cancel-btn{border:1px solid #adb5bd;background:#fff}:host::ng-deep .dialog .dialog__loading{height:100%;background:0 0;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999}:host::ng-deep .dialog .dialog__loading img{position:absolute;left:50%;top:50%;width:40px;height:40px;transform:translate(-50%,-50%)}"]
|
|
22954
|
-
}] }
|
|
22955
|
-
];
|
|
22956
|
-
/** @nocollapse */
|
|
22957
|
-
CommonDialogComponent.ctorParameters = function () { return [
|
|
22958
|
-
{ type: MatDialogRef }
|
|
22959
|
-
]; };
|
|
22960
|
-
CommonDialogComponent.propDecorators = {
|
|
22961
|
-
hideHeader: [{ type: Input }],
|
|
22962
|
-
hideCloseIcon: [{ type: Input }],
|
|
22963
|
-
hideCloseBtn: [{ type: Input }],
|
|
22964
|
-
hideSaveBtn: [{ type: Input }],
|
|
22965
|
-
saveBtnLabel: [{ type: Input }],
|
|
22966
|
-
cancelBtnLabel: [{ type: Input }],
|
|
22967
|
-
showErrorIcon: [{ type: Input }],
|
|
22968
|
-
size: [{ type: Input }],
|
|
22969
|
-
title: [{ type: Input }],
|
|
22970
|
-
loading: [{ type: Input }],
|
|
22971
|
-
saveEmit: [{ type: Output }],
|
|
22972
|
-
closeEmit: [{ type: Output }],
|
|
22973
|
-
footerContent: [{ type: ContentChild, args: ["footerSlot", { static: false },] }]
|
|
22974
|
-
};
|
|
22975
|
-
return CommonDialogComponent;
|
|
22976
|
-
}());
|
|
22977
|
-
if (false) {
|
|
22978
|
-
/** @type {?} */
|
|
22979
|
-
CommonDialogComponent.prototype.translation;
|
|
22980
|
-
/** @type {?} */
|
|
22981
|
-
CommonDialogComponent.prototype.hideHeader;
|
|
22982
|
-
/** @type {?} */
|
|
22983
|
-
CommonDialogComponent.prototype.hideCloseIcon;
|
|
22984
|
-
/** @type {?} */
|
|
22985
|
-
CommonDialogComponent.prototype.hideCloseBtn;
|
|
22986
|
-
/** @type {?} */
|
|
22987
|
-
CommonDialogComponent.prototype.hideSaveBtn;
|
|
22988
|
-
/** @type {?} */
|
|
22989
|
-
CommonDialogComponent.prototype.saveBtnLabel;
|
|
22990
|
-
/** @type {?} */
|
|
22991
|
-
CommonDialogComponent.prototype.cancelBtnLabel;
|
|
22992
|
-
/** @type {?} */
|
|
22993
|
-
CommonDialogComponent.prototype.showErrorIcon;
|
|
22994
|
-
/** @type {?} */
|
|
22995
|
-
CommonDialogComponent.prototype.size;
|
|
22996
|
-
/** @type {?} */
|
|
22997
|
-
CommonDialogComponent.prototype.title;
|
|
22998
|
-
/** @type {?} */
|
|
22999
|
-
CommonDialogComponent.prototype.loading;
|
|
23000
|
-
/** @type {?} */
|
|
23001
|
-
CommonDialogComponent.prototype.saveEmit;
|
|
23002
|
-
/** @type {?} */
|
|
23003
|
-
CommonDialogComponent.prototype.closeEmit;
|
|
23004
|
-
/** @type {?} */
|
|
23005
|
-
CommonDialogComponent.prototype.footerContent;
|
|
23006
|
-
/** @type {?} */
|
|
23007
|
-
CommonDialogComponent.prototype.customFooter;
|
|
23008
|
-
/** @type {?} */
|
|
23009
|
-
CommonDialogComponent.prototype.dialogRef;
|
|
23010
|
-
}
|
|
23011
|
-
|
|
23012
23102
|
/**
|
|
23013
23103
|
* @fileoverview added by tsickle
|
|
23014
23104
|
* Generated from: lib/raise-common-lib.module.ts
|
|
@@ -23046,13 +23136,14 @@ var RaiseCommonLibModule = /** @class */ (function () {
|
|
|
23046
23136
|
RsCommentaryComponent,
|
|
23047
23137
|
RSNavCardGroupComponent,
|
|
23048
23138
|
RSToolbarComponent,
|
|
23049
|
-
TruncatedTextToggleComponent
|
|
23139
|
+
TruncatedTextToggleComponent,
|
|
23050
23140
|
],
|
|
23051
23141
|
imports: [
|
|
23052
23142
|
CommonModule,
|
|
23053
23143
|
HttpClientModule,
|
|
23054
23144
|
ReactiveFormsModule,
|
|
23055
23145
|
FormsModule,
|
|
23146
|
+
DragDropModule,
|
|
23056
23147
|
MatSnackBarModule,
|
|
23057
23148
|
MatMenuModule,
|
|
23058
23149
|
MatTooltipModule,
|
|
@@ -23137,6 +23228,7 @@ var RaiseCommonLibModule = /** @class */ (function () {
|
|
|
23137
23228
|
HttpClientModule,
|
|
23138
23229
|
ReactiveFormsModule,
|
|
23139
23230
|
FormsModule,
|
|
23231
|
+
DragDropModule,
|
|
23140
23232
|
MatSnackBarModule,
|
|
23141
23233
|
MatMenuModule,
|
|
23142
23234
|
MatTooltipModule,
|
|
@@ -23201,7 +23293,8 @@ var RaiseCommonLibModule = /** @class */ (function () {
|
|
|
23201
23293
|
RsCommentaryComponent,
|
|
23202
23294
|
RSNavCardGroupComponent,
|
|
23203
23295
|
RSToolbarComponent,
|
|
23204
|
-
TruncatedTextToggleComponent
|
|
23296
|
+
TruncatedTextToggleComponent,
|
|
23297
|
+
CommonDialogComponent,
|
|
23205
23298
|
],
|
|
23206
23299
|
entryComponents: [
|
|
23207
23300
|
NewActionNotificationComponent,
|
|
@@ -23226,5 +23319,5 @@ var RaiseCommonLibModule = /** @class */ (function () {
|
|
|
23226
23319
|
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
23227
23320
|
*/
|
|
23228
23321
|
|
|
23229
|
-
export { CheckboxGroupComponent, CommonFunctionService, CommonGridComponent, DefaultDrawerConfig, DialogService, DrawerComponent, DrawerFormComponent, DrawerService, EmailPattern, EncryptedInputComponent, FloatBoxComponent, GridActionComponent, GridActionItemComponent, GridBoxComponent, IconLoaderService, KeepAliveService, MainContainerComponent, MessageType, MultiTabComponent, RSAsideComponent, RSFooterComponent, RSHeaderComponent, RSNavCardGroupComponent, RSToolbarComponent, RadioGroupComponent, RaiseCommonLibModule, RsCommentaryComponent, RsPageListComponent, RsPageTabComponent, SwitchInputComponent, TagInputComponent, ToolbarItemComponent, TranslationService, TruncatedTextToggleComponent, filterShowSection, Debounce as ɵa, NewActionNotificationComponent as ɵb,
|
|
23322
|
+
export { CheckboxGroupComponent, CommonDialogComponent, CommonFunctionService, CommonGridComponent, DefaultDrawerConfig, DialogService, DrawerComponent, DrawerFormComponent, DrawerService, EmailPattern, EncryptedInputComponent, FloatBoxComponent, GridActionComponent, GridActionItemComponent, GridBoxComponent, IconLoaderService, KeepAliveService, MainContainerComponent, MessageType, MultiTabComponent, RSAsideComponent, RSFooterComponent, RSHeaderComponent, RSNavCardGroupComponent, RSToolbarComponent, RadioGroupComponent, RaiseCommonLibModule, RsCommentaryComponent, RsPageListComponent, RsPageTabComponent, SwitchInputComponent, TagInputComponent, ToolbarItemComponent, TranslationService, TruncatedTextToggleComponent, filterShowSection, Debounce as ɵa, NewActionNotificationComponent as ɵb, CommonDeleteComponent as ɵc };
|
|
23230
23323
|
//# sourceMappingURL=raise-common-lib.js.map
|