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.
Files changed (32) hide show
  1. package/bundles/raise-common-lib.umd.js +252 -160
  2. package/bundles/raise-common-lib.umd.js.map +1 -1
  3. package/bundles/raise-common-lib.umd.min.js +1 -1
  4. package/bundles/raise-common-lib.umd.min.js.map +1 -1
  5. package/esm2015/lib/dialog/common-delete-dialog/index.component.js +30 -2
  6. package/esm2015/lib/dialog/common-dialog/index.component.js +47 -11
  7. package/esm2015/lib/layout/multi-tab/index.component.js +17 -3
  8. package/esm2015/lib/raise-common-lib.module.js +7 -3
  9. package/esm2015/lib/service/dialog.service.js +1 -1
  10. package/esm2015/public-api.js +2 -1
  11. package/esm2015/raise-common-lib.js +3 -4
  12. package/esm5/lib/dialog/common-delete-dialog/index.component.js +35 -2
  13. package/esm5/lib/dialog/common-dialog/index.component.js +51 -12
  14. package/esm5/lib/layout/multi-tab/index.component.js +21 -3
  15. package/esm5/lib/raise-common-lib.module.js +7 -3
  16. package/esm5/lib/service/dialog.service.js +1 -1
  17. package/esm5/public-api.js +2 -1
  18. package/esm5/raise-common-lib.js +3 -4
  19. package/fesm2015/raise-common-lib.js +220 -139
  20. package/fesm2015/raise-common-lib.js.map +1 -1
  21. package/fesm5/raise-common-lib.js +248 -155
  22. package/fesm5/raise-common-lib.js.map +1 -1
  23. package/lib/dialog/common-delete-dialog/index.component.d.ts +4 -0
  24. package/lib/dialog/common-dialog/index.component.d.ts +6 -1
  25. package/lib/layout/multi-tab/index.component.d.ts +2 -0
  26. package/lib/service/dialog.service.d.ts +2 -0
  27. package/package.json +1 -1
  28. package/public-api.d.ts +1 -0
  29. package/raise-common-lib.d.ts +1 -2
  30. package/raise-common-lib.metadata.json +1 -1
  31. package/src/assets/img/grow-icon.svg +6 -0
  32. 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';
@@ -1511,6 +1512,10 @@ if (false) {
1511
1512
  DialogConfig.prototype.hideSaveBtn;
1512
1513
  /** @type {?|undefined} */
1513
1514
  DialogConfig.prototype.hideCloseBtn;
1515
+ /** @type {?|undefined} */
1516
+ DialogConfig.prototype.showZoomBtn;
1517
+ /** @type {?|undefined} */
1518
+ DialogConfig.prototype.onCloseRequest;
1514
1519
  }
1515
1520
  class CommonDeleteComponent {
1516
1521
  /**
@@ -1525,6 +1530,7 @@ class CommonDeleteComponent {
1525
1530
  this.cancelBtnLabel = "";
1526
1531
  this.description = "";
1527
1532
  this.size = "small";
1533
+ this.showZoomBtn = false;
1528
1534
  }
1529
1535
  /**
1530
1536
  * @return {?}
@@ -1542,6 +1548,7 @@ class CommonDeleteComponent {
1542
1548
  this.translation.IF_YOU_DELETE_THIS_RECORD_WARNING ||
1543
1549
  ".If you delete this record, you won't be able to recover it. Do you want to delete it?";
1544
1550
  this.size = this.data.size || "small";
1551
+ this.showZoomBtn = this.data.showZoomBtn || false;
1545
1552
  }
1546
1553
  /**
1547
1554
  * @param {?} e
@@ -1550,11 +1557,31 @@ class CommonDeleteComponent {
1550
1557
  onSave(e) {
1551
1558
  this.dialogRef.close(e);
1552
1559
  }
1560
+ /**
1561
+ * @param {?} e
1562
+ * @return {?}
1563
+ */
1564
+ onClose(e) {
1565
+ if (this.data.onCloseRequest) {
1566
+ this.data.onCloseRequest(e).then((/**
1567
+ * @param {?} confirmed
1568
+ * @return {?}
1569
+ */
1570
+ (confirmed) => {
1571
+ if (confirmed) {
1572
+ this.dialogRef.close();
1573
+ }
1574
+ }));
1575
+ }
1576
+ else {
1577
+ this.dialogRef.close();
1578
+ }
1579
+ }
1553
1580
  }
1554
1581
  CommonDeleteComponent.decorators = [
1555
1582
  { type: Component, args: [{
1556
1583
  selector: "kt-common-delete-dialog",
1557
- 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",
1584
+ 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",
1558
1585
  styles: [".mapping-dialog{color:#44566c;font-family:Arial;font-size:12px;line-height:16px;white-space:pre-line}"]
1559
1586
  }] }
1560
1587
  ];
@@ -1577,6 +1604,8 @@ if (false) {
1577
1604
  /** @type {?} */
1578
1605
  CommonDeleteComponent.prototype.size;
1579
1606
  /** @type {?} */
1607
+ CommonDeleteComponent.prototype.showZoomBtn;
1608
+ /** @type {?} */
1580
1609
  CommonDeleteComponent.prototype.data;
1581
1610
  /** @type {?} */
1582
1611
  CommonDeleteComponent.prototype.dialogRef;
@@ -3054,6 +3083,19 @@ class MultiTabComponent {
3054
3083
  this.ref.markForCheck();
3055
3084
  }
3056
3085
  }
3086
+ /**
3087
+ * @param {?} event
3088
+ * @return {?}
3089
+ */
3090
+ onTabDrop(event) {
3091
+ const { previousIndex, currentIndex } = event;
3092
+ console.log("previousIndex", previousIndex, "currentIndex", currentIndex);
3093
+ if (previousIndex === 0 || currentIndex === 0) {
3094
+ return;
3095
+ }
3096
+ moveItemInArray(this.tabList, event.previousIndex, event.currentIndex);
3097
+ sessionStorage.setItem("TabCache", JSON.stringify(this.tabList));
3098
+ }
3057
3099
  /**
3058
3100
  * @return {?}
3059
3101
  */
@@ -3110,8 +3152,8 @@ class MultiTabComponent {
3110
3152
  MultiTabComponent.decorators = [
3111
3153
  { type: Component, args: [{
3112
3154
  selector: "rs-multi-tab",
3113
- template: "<div class=\"rs-multi-tab\" [ngClass]=\"{ 'b-line': tabList.length > 0 }\">\r\n\t<ul>\r\n\t\t<ng-container *ngFor=\"let tab of tabList; let i = index\">\r\n\t\t\t<li\r\n\t\t\t\t[ngClass]=\"selectedTab === i ? 'isSelect' : 'notSelect'\"\r\n\t\t\t\t(click)=\"changeTab(tab, i)\"\r\n\t\t\t>\r\n\t\t\t\t<ejs-tooltip\r\n\t\t\t\t\tid=\"notSelectTooltip\"\r\n\t\t\t\t\t[showTipPointer]=\"false\"\r\n\t\t\t\t\t[openDelay]=\"500\"\r\n\t\t\t\t\t*ngIf=\"tab.displayTitle !== tab.title; else originText\"\r\n\t\t\t\t\tstyle=\"height: 27px\"\r\n\t\t\t\t>\r\n\t\t\t\t\t<ng-template #content>\r\n\t\t\t\t\t\t<div class=\"tooltip-content\">\r\n\t\t\t\t\t\t\t{{ tab.title }}\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</ng-template>\r\n\t\t\t\t\t<span class=\"tabTitle\">{{ tab.displayTitle }}</span>\r\n\t\t\t\t</ejs-tooltip>\r\n\t\t\t\t<ng-template #originText>\r\n\t\t\t\t\t<span class=\"tabTitle\">\r\n\t\t\t\t\t\t{{ tab.displayTitle }}\r\n\t\t\t\t\t</span>\r\n\t\t\t\t</ng-template>\r\n\t\t\t\t<span\r\n\t\t\t\t\tclass=\"img-block\"\r\n\t\t\t\t\t*ngIf=\"selectedTab !== i && i !== 0\"\r\n\t\t\t\t></span>\r\n\t\t\t\t<img\r\n\t\t\t\t\t*ngIf=\"i !== 0\"\r\n\t\t\t\t\tsrc=\"../../../assets/img/close-url.svg\"\r\n\t\t\t\t\t(click)=\"closeTab(i)\"\r\n\t\t\t\t/>\r\n\t\t\t</li>\r\n\t\t</ng-container>\r\n\t</ul>\r\n\t<div class=\"refresh-tab\" (click)=\"refreshTab()\" *ngIf=\"tabList.length > 0\">\r\n\t\t<ejs-tooltip\r\n\t\t\tid=\"notSelectTooltip\"\r\n\t\t\tcssClass=\"notSelectTooltip\"\r\n\t\t\t[showTipPointer]=\"false\"\r\n\t\t\t[openDelay]=\"500\"\r\n\t\t\tstyle=\"height: 27px\"\r\n\t\t>\r\n\t\t\t<ng-template #content>\r\n\t\t\t\t<div class=\"tooltip-content\">Refresh Current Tab</div>\r\n\t\t\t</ng-template>\r\n\t\t\t<img\r\n\t\t\t\tid=\"loadingIcon\"\r\n\t\t\t\talt\r\n\t\t\t\tclass=\"refresh-btn\"\r\n\t\t\t\tsrc=\"../../../assets/img/desktop-refresh-btn.svg\"\r\n\t\t\t/>\r\n\t\t</ejs-tooltip>\r\n\t</div>\r\n</div>\r\n",
3114
- styles: [".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 li{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 li .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 li img{border-radius:4px;padding:4px;margin-left:6px;margin-top:1px;vertical-align:top;cursor:pointer}.rs-multi-tab ul li img:hover{background:#dce8f6}.rs-multi-tab ul li:not(:last-child){border-right:none}.rs-multi-tab ul li:first-of-type{border-top-left-radius:8px}.rs-multi-tab ul li:last-child{border-top-right-radius:8px}.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)}@-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 li 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 li{padding:0 8px}.rs-multi-tab ul .notSelect .img-block{width:0!important}}"]
3155
+ 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",
3156
+ 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}}"]
3115
3157
  }] }
3116
3158
  ];
3117
3159
  /** @nocollapse */
@@ -21764,6 +21806,175 @@ if (false) {
21764
21806
  ToolbarItemComponent.prototype.ImageType;
21765
21807
  }
21766
21808
 
21809
+ /**
21810
+ * @fileoverview added by tsickle
21811
+ * Generated from: lib/dialog/common-dialog/index.component.ts
21812
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
21813
+ */
21814
+ class CommonDialogComponent {
21815
+ /**
21816
+ * @param {?} dialogRef
21817
+ */
21818
+ constructor(dialogRef) {
21819
+ this.dialogRef = dialogRef;
21820
+ // 隐藏元素相关属性
21821
+ this.hideHeader = false;
21822
+ this.hideCloseIcon = false;
21823
+ this.hideCloseBtn = false;
21824
+ this.hideSaveBtn = false;
21825
+ this.saveBtnLabel = "";
21826
+ this.cancelBtnLabel = "";
21827
+ this.showErrorIcon = false;
21828
+ this.showZoomBtn = false;
21829
+ // 显示相关属性
21830
+ this.dialogStyle = {};
21831
+ this.size = "";
21832
+ this.title = "Dialog";
21833
+ this.loading = false;
21834
+ this.saveEmit = new EventEmitter();
21835
+ this.closeEmit = new EventEmitter();
21836
+ this.defaultSize = "";
21837
+ this.customFooter = false;
21838
+ }
21839
+ /**
21840
+ * @return {?}
21841
+ */
21842
+ ngAfterContentInit() {
21843
+ this.customFooter = !!this.footerContent;
21844
+ }
21845
+ /**
21846
+ * @return {?}
21847
+ */
21848
+ ngOnInit() {
21849
+ this.getInfo();
21850
+ }
21851
+ /**
21852
+ * @return {?}
21853
+ */
21854
+ onClose() {
21855
+ if (this.onCloseRequest) {
21856
+ this.onCloseRequest().then((/**
21857
+ * @param {?} confirmed
21858
+ * @return {?}
21859
+ */
21860
+ (confirmed) => {
21861
+ if (confirmed) {
21862
+ this.dialogRef.close();
21863
+ }
21864
+ }));
21865
+ }
21866
+ else {
21867
+ this.dialogRef.close();
21868
+ }
21869
+ }
21870
+ /**
21871
+ * @return {?}
21872
+ */
21873
+ onZoom() {
21874
+ if (this.size === "largest") {
21875
+ this.size = this.defaultSize; // 恢复到原始大小
21876
+ }
21877
+ else {
21878
+ this.size = "largest"; // 设置为最大化
21879
+ }
21880
+ }
21881
+ /**
21882
+ * @return {?}
21883
+ */
21884
+ onSave() {
21885
+ // 这里把关闭事件emit上去,但是必须使用箭头函数保存this对象
21886
+ this.saveEmit.emit((/**
21887
+ * @param {?} res
21888
+ * @return {?}
21889
+ */
21890
+ (res) => {
21891
+ this.dialogRef.close(res);
21892
+ }));
21893
+ }
21894
+ /**
21895
+ * @private
21896
+ * @return {?}
21897
+ */
21898
+ getInfo() {
21899
+ this.translation = JSON.parse(localStorage.getItem("translation")) || {};
21900
+ this.saveBtnLabel = this.saveBtnLabel || this.translation.SAVE || ".SAVE";
21901
+ this.cancelBtnLabel =
21902
+ this.cancelBtnLabel || this.translation.CANCEL || ".CANCEL";
21903
+ this.defaultSize = this.size;
21904
+ }
21905
+ }
21906
+ CommonDialogComponent.decorators = [
21907
+ { type: Component, args: [{
21908
+ selector: "rs-common-dialog",
21909
+ 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",
21910
+ 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%)}"]
21911
+ }] }
21912
+ ];
21913
+ /** @nocollapse */
21914
+ CommonDialogComponent.ctorParameters = () => [
21915
+ { type: MatDialogRef }
21916
+ ];
21917
+ CommonDialogComponent.propDecorators = {
21918
+ hideHeader: [{ type: Input }],
21919
+ hideCloseIcon: [{ type: Input }],
21920
+ hideCloseBtn: [{ type: Input }],
21921
+ hideSaveBtn: [{ type: Input }],
21922
+ saveBtnLabel: [{ type: Input }],
21923
+ cancelBtnLabel: [{ type: Input }],
21924
+ showErrorIcon: [{ type: Input }],
21925
+ showZoomBtn: [{ type: Input }],
21926
+ onCloseRequest: [{ type: Input }],
21927
+ dialogStyle: [{ type: Input }],
21928
+ size: [{ type: Input }],
21929
+ title: [{ type: Input }],
21930
+ loading: [{ type: Input }],
21931
+ saveEmit: [{ type: Output }],
21932
+ closeEmit: [{ type: Output }],
21933
+ footerContent: [{ type: ContentChild, args: ["footerSlot", { static: false },] }]
21934
+ };
21935
+ if (false) {
21936
+ /** @type {?} */
21937
+ CommonDialogComponent.prototype.translation;
21938
+ /** @type {?} */
21939
+ CommonDialogComponent.prototype.hideHeader;
21940
+ /** @type {?} */
21941
+ CommonDialogComponent.prototype.hideCloseIcon;
21942
+ /** @type {?} */
21943
+ CommonDialogComponent.prototype.hideCloseBtn;
21944
+ /** @type {?} */
21945
+ CommonDialogComponent.prototype.hideSaveBtn;
21946
+ /** @type {?} */
21947
+ CommonDialogComponent.prototype.saveBtnLabel;
21948
+ /** @type {?} */
21949
+ CommonDialogComponent.prototype.cancelBtnLabel;
21950
+ /** @type {?} */
21951
+ CommonDialogComponent.prototype.showErrorIcon;
21952
+ /** @type {?} */
21953
+ CommonDialogComponent.prototype.showZoomBtn;
21954
+ /** @type {?} */
21955
+ CommonDialogComponent.prototype.onCloseRequest;
21956
+ /** @type {?} */
21957
+ CommonDialogComponent.prototype.dialogStyle;
21958
+ /** @type {?} */
21959
+ CommonDialogComponent.prototype.size;
21960
+ /** @type {?} */
21961
+ CommonDialogComponent.prototype.title;
21962
+ /** @type {?} */
21963
+ CommonDialogComponent.prototype.loading;
21964
+ /** @type {?} */
21965
+ CommonDialogComponent.prototype.saveEmit;
21966
+ /** @type {?} */
21967
+ CommonDialogComponent.prototype.closeEmit;
21968
+ /** @type {?} */
21969
+ CommonDialogComponent.prototype.defaultSize;
21970
+ /** @type {?} */
21971
+ CommonDialogComponent.prototype.footerContent;
21972
+ /** @type {?} */
21973
+ CommonDialogComponent.prototype.customFooter;
21974
+ /** @type {?} */
21975
+ CommonDialogComponent.prototype.dialogRef;
21976
+ }
21977
+
21767
21978
  /**
21768
21979
  * @fileoverview added by tsickle
21769
21980
  * Generated from: lib/service/icon-loader.service.ts
@@ -21948,139 +22159,6 @@ KeepAliveService.decorators = [
21948
22159
  ];
21949
22160
  /** @nocollapse */ KeepAliveService.ngInjectableDef = ɵɵdefineInjectable({ factory: function KeepAliveService_Factory() { return new KeepAliveService(); }, token: KeepAliveService, providedIn: "root" });
21950
22161
 
21951
- /**
21952
- * @fileoverview added by tsickle
21953
- * Generated from: lib/dialog/common-dialog/index.component.ts
21954
- * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
21955
- */
21956
- class CommonDialogComponent {
21957
- /**
21958
- * @param {?} dialogRef
21959
- */
21960
- constructor(dialogRef) {
21961
- this.dialogRef = dialogRef;
21962
- // 隐藏元素相关属性
21963
- this.hideHeader = false;
21964
- this.hideCloseIcon = false;
21965
- this.hideCloseBtn = false;
21966
- this.hideSaveBtn = false;
21967
- this.saveBtnLabel = "";
21968
- this.cancelBtnLabel = "";
21969
- this.showErrorIcon = false;
21970
- // 显示相关属性
21971
- this.size = "";
21972
- this.title = "Dialog";
21973
- this.loading = false;
21974
- this.saveEmit = new EventEmitter();
21975
- this.closeEmit = new EventEmitter();
21976
- this.customFooter = false;
21977
- }
21978
- /**
21979
- * @return {?}
21980
- */
21981
- ngAfterContentInit() {
21982
- this.customFooter = !!this.footerContent;
21983
- }
21984
- /**
21985
- * @return {?}
21986
- */
21987
- ngOnInit() {
21988
- this.getInfo();
21989
- }
21990
- /**
21991
- * @param {?=} res
21992
- * @return {?}
21993
- */
21994
- onClose(res) {
21995
- this.dialogRef.close(res);
21996
- this.closeEmit.emit(res);
21997
- }
21998
- /**
21999
- * @return {?}
22000
- */
22001
- onSave() {
22002
- // 这里把关闭事件emit上去,但是必须使用箭头函数保存this对象
22003
- this.saveEmit.emit((/**
22004
- * @param {?} res
22005
- * @return {?}
22006
- */
22007
- (res) => {
22008
- this.onClose(res);
22009
- }));
22010
- }
22011
- /**
22012
- * @private
22013
- * @return {?}
22014
- */
22015
- getInfo() {
22016
- this.translation = JSON.parse(localStorage.getItem("translation")) || {};
22017
- this.saveBtnLabel =
22018
- this.saveBtnLabel || this.translation.SAVE || ".SAVE";
22019
- this.cancelBtnLabel =
22020
- this.cancelBtnLabel || this.translation.CANCEL || ".CANCEL";
22021
- }
22022
- }
22023
- CommonDialogComponent.decorators = [
22024
- { type: Component, args: [{
22025
- selector: "kt-common-dialog",
22026
- 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",
22027
- 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%)}"]
22028
- }] }
22029
- ];
22030
- /** @nocollapse */
22031
- CommonDialogComponent.ctorParameters = () => [
22032
- { type: MatDialogRef }
22033
- ];
22034
- CommonDialogComponent.propDecorators = {
22035
- hideHeader: [{ type: Input }],
22036
- hideCloseIcon: [{ type: Input }],
22037
- hideCloseBtn: [{ type: Input }],
22038
- hideSaveBtn: [{ type: Input }],
22039
- saveBtnLabel: [{ type: Input }],
22040
- cancelBtnLabel: [{ type: Input }],
22041
- showErrorIcon: [{ type: Input }],
22042
- size: [{ type: Input }],
22043
- title: [{ type: Input }],
22044
- loading: [{ type: Input }],
22045
- saveEmit: [{ type: Output }],
22046
- closeEmit: [{ type: Output }],
22047
- footerContent: [{ type: ContentChild, args: ["footerSlot", { static: false },] }]
22048
- };
22049
- if (false) {
22050
- /** @type {?} */
22051
- CommonDialogComponent.prototype.translation;
22052
- /** @type {?} */
22053
- CommonDialogComponent.prototype.hideHeader;
22054
- /** @type {?} */
22055
- CommonDialogComponent.prototype.hideCloseIcon;
22056
- /** @type {?} */
22057
- CommonDialogComponent.prototype.hideCloseBtn;
22058
- /** @type {?} */
22059
- CommonDialogComponent.prototype.hideSaveBtn;
22060
- /** @type {?} */
22061
- CommonDialogComponent.prototype.saveBtnLabel;
22062
- /** @type {?} */
22063
- CommonDialogComponent.prototype.cancelBtnLabel;
22064
- /** @type {?} */
22065
- CommonDialogComponent.prototype.showErrorIcon;
22066
- /** @type {?} */
22067
- CommonDialogComponent.prototype.size;
22068
- /** @type {?} */
22069
- CommonDialogComponent.prototype.title;
22070
- /** @type {?} */
22071
- CommonDialogComponent.prototype.loading;
22072
- /** @type {?} */
22073
- CommonDialogComponent.prototype.saveEmit;
22074
- /** @type {?} */
22075
- CommonDialogComponent.prototype.closeEmit;
22076
- /** @type {?} */
22077
- CommonDialogComponent.prototype.footerContent;
22078
- /** @type {?} */
22079
- CommonDialogComponent.prototype.customFooter;
22080
- /** @type {?} */
22081
- CommonDialogComponent.prototype.dialogRef;
22082
- }
22083
-
22084
22162
  /**
22085
22163
  * @fileoverview added by tsickle
22086
22164
  * Generated from: lib/raise-common-lib.module.ts
@@ -22117,13 +22195,14 @@ RaiseCommonLibModule.decorators = [
22117
22195
  RsCommentaryComponent,
22118
22196
  RSNavCardGroupComponent,
22119
22197
  RSToolbarComponent,
22120
- TruncatedTextToggleComponent
22198
+ TruncatedTextToggleComponent,
22121
22199
  ],
22122
22200
  imports: [
22123
22201
  CommonModule,
22124
22202
  HttpClientModule,
22125
22203
  ReactiveFormsModule,
22126
22204
  FormsModule,
22205
+ DragDropModule,
22127
22206
  MatSnackBarModule,
22128
22207
  MatMenuModule,
22129
22208
  MatTooltipModule,
@@ -22208,6 +22287,7 @@ RaiseCommonLibModule.decorators = [
22208
22287
  HttpClientModule,
22209
22288
  ReactiveFormsModule,
22210
22289
  FormsModule,
22290
+ DragDropModule,
22211
22291
  MatSnackBarModule,
22212
22292
  MatMenuModule,
22213
22293
  MatTooltipModule,
@@ -22272,7 +22352,8 @@ RaiseCommonLibModule.decorators = [
22272
22352
  RsCommentaryComponent,
22273
22353
  RSNavCardGroupComponent,
22274
22354
  RSToolbarComponent,
22275
- TruncatedTextToggleComponent
22355
+ TruncatedTextToggleComponent,
22356
+ CommonDialogComponent,
22276
22357
  ],
22277
22358
  entryComponents: [
22278
22359
  NewActionNotificationComponent,
@@ -22295,5 +22376,5 @@ RaiseCommonLibModule.decorators = [
22295
22376
  * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
22296
22377
  */
22297
22378
 
22298
- 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, CommonDialogComponent as ɵc, CommonDeleteComponent as ɵd };
22379
+ 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 };
22299
22380
  //# sourceMappingURL=raise-common-lib.js.map