@seniorsistemas/angular-components 16.12.1 → 16.12.3
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/seniorsistemas-angular-components.umd.js +91 -118
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/slide-panel/index.d.ts +2 -0
- package/components/{slide-bar/slide-bar.component.d.ts → slide-panel/slide-panel.component.d.ts} +3 -3
- package/components/slide-panel/slide-panel.module.d.ts +2 -0
- package/components/table/frozen-position/frozen-position.directive.d.ts +2 -6
- package/esm2015/components/slide-panel/index.js +3 -0
- package/esm2015/components/slide-panel/slide-panel.component.js +105 -0
- package/esm2015/components/slide-panel/slide-panel.module.js +19 -0
- package/esm2015/components/table/frozen-position/frozen-position.directive.js +26 -44
- package/esm2015/public-api.js +2 -2
- package/esm5/components/slide-panel/index.js +3 -0
- package/esm5/components/slide-panel/slide-panel.component.js +107 -0
- package/esm5/components/slide-panel/slide-panel.module.js +22 -0
- package/esm5/components/table/frozen-position/frozen-position.directive.js +55 -82
- package/esm5/public-api.js +2 -2
- package/fesm2015/seniorsistemas-angular-components.js +49 -67
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +90 -117
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/seniorsistemas-angular-components.metadata.json +1 -1
- package/components/slide-bar/index.d.ts +0 -2
- package/components/slide-bar/slide-bar.module.d.ts +0 -2
- package/esm2015/components/slide-bar/index.js +0 -3
- package/esm2015/components/slide-bar/slide-bar.component.js +0 -105
- package/esm2015/components/slide-bar/slide-bar.module.js +0 -19
- package/esm5/components/slide-bar/index.js +0 -3
- package/esm5/components/slide-bar/slide-bar.component.js +0 -107
- package/esm5/components/slide-bar/slide-bar.module.js +0 -22
|
@@ -5736,20 +5736,7 @@
|
|
|
5736
5736
|
this.table.styleClass = (this.table.styleClass || "") + " s-table-frozen-position";
|
|
5737
5737
|
this.setUpTableEvents();
|
|
5738
5738
|
window.addEventListener("resize", this.handleWindowResize.bind(this));
|
|
5739
|
-
var componentId = new Date().getTime();
|
|
5740
5739
|
var htmlHead = document.getElementsByTagName("head")[0];
|
|
5741
|
-
this.resetRowHeightClassName = "resetTableRowsHeight_" + componentId;
|
|
5742
|
-
var styleReset = document.createElement("style");
|
|
5743
|
-
styleReset.innerHTML = "." + this.resetRowHeightClassName + " tbody > tr, ." + this.resetRowHeightClassName + " thead > tr { height: auto; }";
|
|
5744
|
-
htmlHead.appendChild(styleReset);
|
|
5745
|
-
this.fixBodyRowClassName = "fixTableBodyRowsHeight_" + componentId;
|
|
5746
|
-
this.styleFixBodyRowHeight = document.createElement("style");
|
|
5747
|
-
this.styleFixBodyRowHeight.innerHTML = "." + this.fixBodyRowClassName + " tbody > tr { height: auto; }";
|
|
5748
|
-
htmlHead.appendChild(this.styleFixBodyRowHeight);
|
|
5749
|
-
this.fixHeadRowClassName = "fixTableHeadRowsHeight_" + componentId;
|
|
5750
|
-
this.styleFixHeadRowHeight = document.createElement("style");
|
|
5751
|
-
this.styleFixHeadRowHeight.innerHTML = "." + this.fixHeadRowClassName + " thead > tr { height: auto; }";
|
|
5752
|
-
htmlHead.appendChild(this.styleFixHeadRowHeight);
|
|
5753
5740
|
var expandFrozenStyle = document.createElement("style");
|
|
5754
5741
|
expandFrozenStyle.innerHTML = ".s-table-frozen-position .ui-table-frozen-view .sds-expanded-row > td { visibility: hidden; }";
|
|
5755
5742
|
htmlHead.appendChild(expandFrozenStyle);
|
|
@@ -5879,98 +5866,84 @@
|
|
|
5879
5866
|
TableFrozenPositionDirective.prototype.synchronizeRowHeight = function () {
|
|
5880
5867
|
var tableBodyWrappers = this.el.nativeElement.getElementsByClassName("ui-table-scrollable-body");
|
|
5881
5868
|
var tableBodies = __spread(tableBodyWrappers).map(function (divWrapper) { return __spread(divWrapper.childNodes).find(function (p) { return p.tagName === "TABLE"; }); });
|
|
5882
|
-
this.
|
|
5883
|
-
this.
|
|
5869
|
+
this._resetRowHeight(tableBodies);
|
|
5870
|
+
this._applyMaxRowHeight(tableBodies);
|
|
5884
5871
|
var tableHeadWrappers = this.el.nativeElement.getElementsByClassName("ui-table-scrollable-header-box");
|
|
5885
5872
|
var tableHeads = __spread(tableHeadWrappers).map(function (divWrapper) { return __spread(divWrapper.childNodes).find(function (p) { return p.tagName === "TABLE"; }); });
|
|
5886
|
-
this.
|
|
5887
|
-
this.
|
|
5873
|
+
this._resetRowHeight(tableHeads);
|
|
5874
|
+
this._applyMaxRowHeight(tableHeads);
|
|
5888
5875
|
};
|
|
5889
|
-
TableFrozenPositionDirective.prototype.
|
|
5890
|
-
var e_1, _a;
|
|
5891
|
-
|
|
5892
|
-
|
|
5893
|
-
var table = tables_1_1.value;
|
|
5894
|
-
table.classList.remove(this.fixBodyRowClassName);
|
|
5895
|
-
table.classList.remove(this.fixHeadRowClassName);
|
|
5896
|
-
table.classList.add(this.resetRowHeightClassName);
|
|
5897
|
-
}
|
|
5876
|
+
TableFrozenPositionDirective.prototype._applyMaxRowHeight = function (tables) {
|
|
5877
|
+
var e_1, _a, e_2, _b;
|
|
5878
|
+
if (!tables || !tables.length) {
|
|
5879
|
+
return;
|
|
5898
5880
|
}
|
|
5899
|
-
|
|
5900
|
-
|
|
5881
|
+
var lengths = tables.map(function (table) { return table.rows.length; });
|
|
5882
|
+
var maxLength = lengths.reduce(function (accumulator, currentValue) { return Math.max(accumulator, currentValue); }, lengths[0]);
|
|
5883
|
+
var minLength = lengths.reduce(function (accumulator, currentValue) { return Math.min(accumulator, currentValue); }, lengths[0]);
|
|
5884
|
+
if (maxLength !== minLength) {
|
|
5885
|
+
throw new Error("The number of rows in both tables must be the same");
|
|
5886
|
+
}
|
|
5887
|
+
var table = tables[0];
|
|
5888
|
+
for (var i = 0; i < table.rows.length; i++) {
|
|
5889
|
+
var trs = [];
|
|
5901
5890
|
try {
|
|
5902
|
-
|
|
5891
|
+
for (var tables_1 = (e_1 = void 0, __values(tables)), tables_1_1 = tables_1.next(); !tables_1_1.done; tables_1_1 = tables_1.next()) {
|
|
5892
|
+
var table_1 = tables_1_1.value;
|
|
5893
|
+
trs.push(table_1.rows[i]);
|
|
5894
|
+
}
|
|
5895
|
+
}
|
|
5896
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
5897
|
+
finally {
|
|
5898
|
+
try {
|
|
5899
|
+
if (tables_1_1 && !tables_1_1.done && (_a = tables_1.return)) _a.call(tables_1);
|
|
5900
|
+
}
|
|
5901
|
+
finally { if (e_1) throw e_1.error; }
|
|
5902
|
+
}
|
|
5903
|
+
var max = trs.reduce(function (accumulator, currentValue) {
|
|
5904
|
+
return Math.max(accumulator, currentValue.getBoundingClientRect().height);
|
|
5905
|
+
}, trs[0].getBoundingClientRect().height);
|
|
5906
|
+
try {
|
|
5907
|
+
for (var trs_1 = (e_2 = void 0, __values(trs)), trs_1_1 = trs_1.next(); !trs_1_1.done; trs_1_1 = trs_1.next()) {
|
|
5908
|
+
var tr = trs_1_1.value;
|
|
5909
|
+
tr.style.height = max + "px";
|
|
5910
|
+
}
|
|
5911
|
+
}
|
|
5912
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
5913
|
+
finally {
|
|
5914
|
+
try {
|
|
5915
|
+
if (trs_1_1 && !trs_1_1.done && (_b = trs_1.return)) _b.call(trs_1);
|
|
5916
|
+
}
|
|
5917
|
+
finally { if (e_2) throw e_2.error; }
|
|
5903
5918
|
}
|
|
5904
|
-
finally { if (e_1) throw e_1.error; }
|
|
5905
5919
|
}
|
|
5906
5920
|
};
|
|
5907
|
-
TableFrozenPositionDirective.prototype.
|
|
5908
|
-
var
|
|
5909
|
-
if (isHead === void 0) { isHead = false; }
|
|
5910
|
-
var rowSizes = [];
|
|
5921
|
+
TableFrozenPositionDirective.prototype._resetRowHeight = function (tables) {
|
|
5922
|
+
var e_3, _a, e_4, _b;
|
|
5911
5923
|
try {
|
|
5912
5924
|
for (var tables_2 = __values(tables), tables_2_1 = tables_2.next(); !tables_2_1.done; tables_2_1 = tables_2.next()) {
|
|
5913
5925
|
var table = tables_2_1.value;
|
|
5914
5926
|
try {
|
|
5915
|
-
for (var
|
|
5916
|
-
var
|
|
5917
|
-
|
|
5918
|
-
continue;
|
|
5919
|
-
rowSizes.push(tr.getBoundingClientRect().height);
|
|
5927
|
+
for (var _c = (e_4 = void 0, __values(table.rows)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
5928
|
+
var row = _d.value;
|
|
5929
|
+
row.style.height = "unset";
|
|
5920
5930
|
}
|
|
5921
5931
|
}
|
|
5922
|
-
catch (
|
|
5932
|
+
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
5923
5933
|
finally {
|
|
5924
5934
|
try {
|
|
5925
|
-
if (
|
|
5935
|
+
if (_d && !_d.done && (_b = _c.return)) _b.call(_c);
|
|
5926
5936
|
}
|
|
5927
|
-
finally { if (
|
|
5937
|
+
finally { if (e_4) throw e_4.error; }
|
|
5928
5938
|
}
|
|
5929
5939
|
}
|
|
5930
5940
|
}
|
|
5931
|
-
catch (
|
|
5941
|
+
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
5932
5942
|
finally {
|
|
5933
5943
|
try {
|
|
5934
5944
|
if (tables_2_1 && !tables_2_1.done && (_a = tables_2.return)) _a.call(tables_2);
|
|
5935
5945
|
}
|
|
5936
|
-
finally { if (
|
|
5937
|
-
}
|
|
5938
|
-
if (!rowSizes.length)
|
|
5939
|
-
return;
|
|
5940
|
-
var maxHeight = Math.max.apply(Math, __spread(rowSizes));
|
|
5941
|
-
if (isHead) {
|
|
5942
|
-
this.styleFixHeadRowHeight.innerHTML = "." + this.fixHeadRowClassName + " thead > tr { height: " + maxHeight + "px; }";
|
|
5943
|
-
try {
|
|
5944
|
-
for (var tables_3 = __values(tables), tables_3_1 = tables_3.next(); !tables_3_1.done; tables_3_1 = tables_3.next()) {
|
|
5945
|
-
var table = tables_3_1.value;
|
|
5946
|
-
table.classList.remove(this.resetRowHeightClassName);
|
|
5947
|
-
table.classList.add(this.fixHeadRowClassName);
|
|
5948
|
-
}
|
|
5949
|
-
}
|
|
5950
|
-
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
5951
|
-
finally {
|
|
5952
|
-
try {
|
|
5953
|
-
if (tables_3_1 && !tables_3_1.done && (_c = tables_3.return)) _c.call(tables_3);
|
|
5954
|
-
}
|
|
5955
|
-
finally { if (e_4) throw e_4.error; }
|
|
5956
|
-
}
|
|
5957
|
-
}
|
|
5958
|
-
else {
|
|
5959
|
-
this.styleFixBodyRowHeight.innerHTML = "." + this.fixBodyRowClassName + " tbody > tr { height: " + maxHeight + "px; }";
|
|
5960
|
-
try {
|
|
5961
|
-
for (var tables_4 = __values(tables), tables_4_1 = tables_4.next(); !tables_4_1.done; tables_4_1 = tables_4.next()) {
|
|
5962
|
-
var table = tables_4_1.value;
|
|
5963
|
-
table.classList.remove(this.resetRowHeightClassName);
|
|
5964
|
-
table.classList.add(this.fixBodyRowClassName);
|
|
5965
|
-
}
|
|
5966
|
-
}
|
|
5967
|
-
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
5968
|
-
finally {
|
|
5969
|
-
try {
|
|
5970
|
-
if (tables_4_1 && !tables_4_1.done && (_d = tables_4.return)) _d.call(tables_4);
|
|
5971
|
-
}
|
|
5972
|
-
finally { if (e_5) throw e_5.error; }
|
|
5973
|
-
}
|
|
5946
|
+
finally { if (e_3) throw e_3.error; }
|
|
5974
5947
|
}
|
|
5975
5948
|
};
|
|
5976
5949
|
TableFrozenPositionDirective.ctorParameters = function () { return [
|
|
@@ -9692,26 +9665,26 @@
|
|
|
9692
9665
|
}());
|
|
9693
9666
|
|
|
9694
9667
|
var SMALL_DEVICE_BREAKPOINT = 420;
|
|
9695
|
-
var
|
|
9696
|
-
function
|
|
9668
|
+
var SlidePanelComponent = /** @class */ (function () {
|
|
9669
|
+
function SlidePanelComponent() {
|
|
9697
9670
|
this.openIcon = "fas fa-chevron-right";
|
|
9698
9671
|
this.closeIcon = "fas fa-chevron-left";
|
|
9699
9672
|
this.cache = false;
|
|
9700
|
-
this.
|
|
9701
|
-
this.
|
|
9673
|
+
this.panelOpened = new core.EventEmitter();
|
|
9674
|
+
this.panelClosed = new core.EventEmitter();
|
|
9702
9675
|
this.slideHeight = 0;
|
|
9703
9676
|
this.isOpen = false;
|
|
9704
9677
|
this.isSlideOver = false;
|
|
9705
9678
|
this.isAnimating = false;
|
|
9706
9679
|
this.isContentAnimationDisabled = true;
|
|
9707
9680
|
}
|
|
9708
|
-
|
|
9681
|
+
SlidePanelComponent.prototype.onResize = function () {
|
|
9709
9682
|
this._checkOverBehavior();
|
|
9710
9683
|
};
|
|
9711
|
-
|
|
9684
|
+
SlidePanelComponent.prototype.ngOnInit = function () {
|
|
9712
9685
|
this._checkOverBehavior();
|
|
9713
9686
|
};
|
|
9714
|
-
|
|
9687
|
+
SlidePanelComponent.prototype.ngAfterViewChecked = function () {
|
|
9715
9688
|
var _this = this;
|
|
9716
9689
|
// to executed at a safe time prior to control returning to the browser's event loop
|
|
9717
9690
|
queueMicrotask(function () {
|
|
@@ -9719,58 +9692,58 @@
|
|
|
9719
9692
|
_this.isContentAnimationDisabled = false;
|
|
9720
9693
|
});
|
|
9721
9694
|
};
|
|
9722
|
-
|
|
9695
|
+
SlidePanelComponent.prototype.onClickButton = function () {
|
|
9723
9696
|
if (this.isAnimating) {
|
|
9724
9697
|
return;
|
|
9725
9698
|
}
|
|
9726
9699
|
this.isOpen = !this.isOpen;
|
|
9727
9700
|
if (this.isOpen) {
|
|
9728
|
-
this.
|
|
9701
|
+
this.panelOpened.emit();
|
|
9729
9702
|
}
|
|
9730
9703
|
else {
|
|
9731
|
-
this.
|
|
9704
|
+
this.panelClosed.emit();
|
|
9732
9705
|
}
|
|
9733
9706
|
};
|
|
9734
|
-
|
|
9707
|
+
SlidePanelComponent.prototype.onContentAnimationStart = function () {
|
|
9735
9708
|
this.isAnimating = true;
|
|
9736
9709
|
};
|
|
9737
|
-
|
|
9710
|
+
SlidePanelComponent.prototype.onContentAnimationDone = function () {
|
|
9738
9711
|
this.isAnimating = false;
|
|
9739
9712
|
};
|
|
9740
|
-
|
|
9713
|
+
SlidePanelComponent.prototype._checkOverBehavior = function () {
|
|
9741
9714
|
this.isSlideOver = window.innerWidth <= SMALL_DEVICE_BREAKPOINT;
|
|
9742
9715
|
};
|
|
9743
|
-
|
|
9716
|
+
SlidePanelComponent.prototype._calculateSlideHeight = function () {
|
|
9744
9717
|
this.slideHeight = this.sideContent.nativeElement.clientHeight;
|
|
9745
9718
|
};
|
|
9746
9719
|
__decorate([
|
|
9747
9720
|
core.Input()
|
|
9748
|
-
],
|
|
9721
|
+
], SlidePanelComponent.prototype, "openIcon", void 0);
|
|
9749
9722
|
__decorate([
|
|
9750
9723
|
core.Input()
|
|
9751
|
-
],
|
|
9724
|
+
], SlidePanelComponent.prototype, "closeIcon", void 0);
|
|
9752
9725
|
__decorate([
|
|
9753
9726
|
core.Input()
|
|
9754
|
-
],
|
|
9727
|
+
], SlidePanelComponent.prototype, "cache", void 0);
|
|
9755
9728
|
__decorate([
|
|
9756
9729
|
core.Output()
|
|
9757
|
-
],
|
|
9730
|
+
], SlidePanelComponent.prototype, "panelOpened", void 0);
|
|
9758
9731
|
__decorate([
|
|
9759
9732
|
core.Output()
|
|
9760
|
-
],
|
|
9733
|
+
], SlidePanelComponent.prototype, "panelClosed", void 0);
|
|
9761
9734
|
__decorate([
|
|
9762
9735
|
core.ViewChild("mainContainer")
|
|
9763
|
-
],
|
|
9736
|
+
], SlidePanelComponent.prototype, "mainContainer", void 0);
|
|
9764
9737
|
__decorate([
|
|
9765
9738
|
core.ViewChild("sideContent")
|
|
9766
|
-
],
|
|
9739
|
+
], SlidePanelComponent.prototype, "sideContent", void 0);
|
|
9767
9740
|
__decorate([
|
|
9768
9741
|
core.HostListener("window:resize")
|
|
9769
|
-
],
|
|
9770
|
-
|
|
9742
|
+
], SlidePanelComponent.prototype, "onResize", null);
|
|
9743
|
+
SlidePanelComponent = __decorate([
|
|
9771
9744
|
core.Component({
|
|
9772
|
-
selector: "s-slide-
|
|
9773
|
-
template: "<div class=\"slide-
|
|
9745
|
+
selector: "s-slide-panel",
|
|
9746
|
+
template: "<div class=\"slide-panel\">\n <div\n class=\"slide-content\"\n [ngClass]=\"{\n 'slide-content--closed': !isOpen,\n 'slide-content--over': isSlideOver\n }\">\n <div\n #mainContainer\n class=\"main-container\"\n [style.maxHeight]=\"slideHeight + 'px'\">\n <ng-container *ngIf=\"cache; then cacheTemplate else cachelessTemplate\"></ng-container>\n </div>\n <button\n class=\"button\"\n [ngClass]=\"isOpen ? closeIcon : openIcon\"\n (click)=\"onClickButton()\">\n </button>\n </div>\n <div #sideContent class=\"side-content\">\n <ng-content select=\"[side-content]\"></ng-content>\n </div>\n</div>\n\n<ng-template #cacheTemplate>\n <div\n class=\"content-container\"\n [@cacheAnimation]=\"isOpen\"\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cacheAnimation.start)=\"onContentAnimationStart()\"\n (@cacheAnimation.done)=\"onContentAnimationDone()\">\n <ng-container [ngTemplateOutlet]=\"slideContent\"></ng-container>\n </div>\n</ng-template>\n\n<ng-template #cachelessTemplate>\n <div\n *ngIf=\"isOpen\"\n class=\"content-container\"\n @cachelessAnimation\n [@.disabled]=\"isContentAnimationDisabled\"\n (@cachelessAnimation.start)=\"onContentAnimationStart()\"\n (@cachelessAnimation.done)=\"onContentAnimationDone()\">\n <ng-container [ngTemplateOutlet]=\"slideContent\"></ng-container>\n </div>\n</ng-template>\n\n<ng-template #slideContent>\n <ng-content select=\"[slide-content]\"></ng-content>\n</ng-template>",
|
|
9774
9747
|
animations: [
|
|
9775
9748
|
animations.trigger("cachelessAnimation", [
|
|
9776
9749
|
animations.transition(":enter", [
|
|
@@ -9788,26 +9761,26 @@
|
|
|
9788
9761
|
animations.transition("* => *", animations.animate("200ms")),
|
|
9789
9762
|
]),
|
|
9790
9763
|
],
|
|
9791
|
-
styles: [".slide-
|
|
9764
|
+
styles: [".slide-panel{display:-ms-flexbox;display:flex}.slide-panel .slide-content{display:-ms-flexbox;display:flex;position:relative}.slide-panel .slide-content .main-container{background-color:#eeebf2;display:-ms-flexbox;display:flex;border:1px solid #ccc;overflow:hidden;position:relative}.slide-panel .slide-content .main-container .content-container{overflow-y:auto;overflow-x:hidden;padding:16px}.slide-panel .slide-content .button{-ms-flex-align:center;align-items:center;background-color:#eeebf2;border:1px solid #ccc;border-left:none;border-radius:0 4px 4px 0;cursor:pointer;display:-ms-flexbox;display:flex;font-size:16px;height:32px;-ms-flex-pack:center;justify-content:center;position:absolute;right:-32px;top:16px;width:32px}.slide-panel .slide-content--closed .main-container{border:none}.slide-panel .slide-content--over{position:absolute}.slide-panel .side-content{display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;height:-webkit-max-content;height:max-content}"]
|
|
9792
9765
|
})
|
|
9793
|
-
],
|
|
9794
|
-
return
|
|
9766
|
+
], SlidePanelComponent);
|
|
9767
|
+
return SlidePanelComponent;
|
|
9795
9768
|
}());
|
|
9796
9769
|
|
|
9797
|
-
var
|
|
9798
|
-
function
|
|
9770
|
+
var SlidePanelModule = /** @class */ (function () {
|
|
9771
|
+
function SlidePanelModule() {
|
|
9799
9772
|
}
|
|
9800
|
-
|
|
9773
|
+
SlidePanelModule = __decorate([
|
|
9801
9774
|
core.NgModule({
|
|
9802
9775
|
imports: [
|
|
9803
9776
|
common.CommonModule,
|
|
9804
9777
|
animations$1.BrowserAnimationsModule,
|
|
9805
9778
|
],
|
|
9806
|
-
declarations: [
|
|
9807
|
-
exports: [
|
|
9779
|
+
declarations: [SlidePanelComponent],
|
|
9780
|
+
exports: [SlidePanelComponent],
|
|
9808
9781
|
})
|
|
9809
|
-
],
|
|
9810
|
-
return
|
|
9782
|
+
], SlidePanelModule);
|
|
9783
|
+
return SlidePanelModule;
|
|
9811
9784
|
}());
|
|
9812
9785
|
|
|
9813
9786
|
var StatsCardComponent = /** @class */ (function () {
|
|
@@ -13023,8 +12996,8 @@
|
|
|
13023
12996
|
exports.SelectOption = SelectOption;
|
|
13024
12997
|
exports.SidebarComponent = SidebarComponent;
|
|
13025
12998
|
exports.SidebarModule = SidebarModule;
|
|
13026
|
-
exports.
|
|
13027
|
-
exports.
|
|
12999
|
+
exports.SlidePanelComponent = SlidePanelComponent;
|
|
13000
|
+
exports.SlidePanelModule = SlidePanelModule;
|
|
13028
13001
|
exports.SplitButtonComponent = SplitButtonComponent;
|
|
13029
13002
|
exports.SplitButtonModule = SplitButtonModule;
|
|
13030
13003
|
exports.StatsCardComponent = StatsCardComponent;
|