@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
|
@@ -5590,20 +5590,7 @@ var TableFrozenPositionDirective = /** @class */ (function () {
|
|
|
5590
5590
|
this.table.styleClass = (this.table.styleClass || "") + " s-table-frozen-position";
|
|
5591
5591
|
this.setUpTableEvents();
|
|
5592
5592
|
window.addEventListener("resize", this.handleWindowResize.bind(this));
|
|
5593
|
-
var componentId = new Date().getTime();
|
|
5594
5593
|
var htmlHead = document.getElementsByTagName("head")[0];
|
|
5595
|
-
this.resetRowHeightClassName = "resetTableRowsHeight_" + componentId;
|
|
5596
|
-
var styleReset = document.createElement("style");
|
|
5597
|
-
styleReset.innerHTML = "." + this.resetRowHeightClassName + " tbody > tr, ." + this.resetRowHeightClassName + " thead > tr { height: auto; }";
|
|
5598
|
-
htmlHead.appendChild(styleReset);
|
|
5599
|
-
this.fixBodyRowClassName = "fixTableBodyRowsHeight_" + componentId;
|
|
5600
|
-
this.styleFixBodyRowHeight = document.createElement("style");
|
|
5601
|
-
this.styleFixBodyRowHeight.innerHTML = "." + this.fixBodyRowClassName + " tbody > tr { height: auto; }";
|
|
5602
|
-
htmlHead.appendChild(this.styleFixBodyRowHeight);
|
|
5603
|
-
this.fixHeadRowClassName = "fixTableHeadRowsHeight_" + componentId;
|
|
5604
|
-
this.styleFixHeadRowHeight = document.createElement("style");
|
|
5605
|
-
this.styleFixHeadRowHeight.innerHTML = "." + this.fixHeadRowClassName + " thead > tr { height: auto; }";
|
|
5606
|
-
htmlHead.appendChild(this.styleFixHeadRowHeight);
|
|
5607
5594
|
var expandFrozenStyle = document.createElement("style");
|
|
5608
5595
|
expandFrozenStyle.innerHTML = ".s-table-frozen-position .ui-table-frozen-view .sds-expanded-row > td { visibility: hidden; }";
|
|
5609
5596
|
htmlHead.appendChild(expandFrozenStyle);
|
|
@@ -5733,98 +5720,84 @@ var TableFrozenPositionDirective = /** @class */ (function () {
|
|
|
5733
5720
|
TableFrozenPositionDirective.prototype.synchronizeRowHeight = function () {
|
|
5734
5721
|
var tableBodyWrappers = this.el.nativeElement.getElementsByClassName("ui-table-scrollable-body");
|
|
5735
5722
|
var tableBodies = __spread(tableBodyWrappers).map(function (divWrapper) { return __spread(divWrapper.childNodes).find(function (p) { return p.tagName === "TABLE"; }); });
|
|
5736
|
-
this.
|
|
5737
|
-
this.
|
|
5723
|
+
this._resetRowHeight(tableBodies);
|
|
5724
|
+
this._applyMaxRowHeight(tableBodies);
|
|
5738
5725
|
var tableHeadWrappers = this.el.nativeElement.getElementsByClassName("ui-table-scrollable-header-box");
|
|
5739
5726
|
var tableHeads = __spread(tableHeadWrappers).map(function (divWrapper) { return __spread(divWrapper.childNodes).find(function (p) { return p.tagName === "TABLE"; }); });
|
|
5740
|
-
this.
|
|
5741
|
-
this.
|
|
5727
|
+
this._resetRowHeight(tableHeads);
|
|
5728
|
+
this._applyMaxRowHeight(tableHeads);
|
|
5742
5729
|
};
|
|
5743
|
-
TableFrozenPositionDirective.prototype.
|
|
5744
|
-
var e_1, _a;
|
|
5745
|
-
|
|
5746
|
-
|
|
5747
|
-
var table = tables_1_1.value;
|
|
5748
|
-
table.classList.remove(this.fixBodyRowClassName);
|
|
5749
|
-
table.classList.remove(this.fixHeadRowClassName);
|
|
5750
|
-
table.classList.add(this.resetRowHeightClassName);
|
|
5751
|
-
}
|
|
5730
|
+
TableFrozenPositionDirective.prototype._applyMaxRowHeight = function (tables) {
|
|
5731
|
+
var e_1, _a, e_2, _b;
|
|
5732
|
+
if (!tables || !tables.length) {
|
|
5733
|
+
return;
|
|
5752
5734
|
}
|
|
5753
|
-
|
|
5754
|
-
|
|
5735
|
+
var lengths = tables.map(function (table) { return table.rows.length; });
|
|
5736
|
+
var maxLength = lengths.reduce(function (accumulator, currentValue) { return Math.max(accumulator, currentValue); }, lengths[0]);
|
|
5737
|
+
var minLength = lengths.reduce(function (accumulator, currentValue) { return Math.min(accumulator, currentValue); }, lengths[0]);
|
|
5738
|
+
if (maxLength !== minLength) {
|
|
5739
|
+
throw new Error("The number of rows in both tables must be the same");
|
|
5740
|
+
}
|
|
5741
|
+
var table = tables[0];
|
|
5742
|
+
for (var i = 0; i < table.rows.length; i++) {
|
|
5743
|
+
var trs = [];
|
|
5755
5744
|
try {
|
|
5756
|
-
|
|
5745
|
+
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()) {
|
|
5746
|
+
var table_1 = tables_1_1.value;
|
|
5747
|
+
trs.push(table_1.rows[i]);
|
|
5748
|
+
}
|
|
5749
|
+
}
|
|
5750
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
5751
|
+
finally {
|
|
5752
|
+
try {
|
|
5753
|
+
if (tables_1_1 && !tables_1_1.done && (_a = tables_1.return)) _a.call(tables_1);
|
|
5754
|
+
}
|
|
5755
|
+
finally { if (e_1) throw e_1.error; }
|
|
5756
|
+
}
|
|
5757
|
+
var max = trs.reduce(function (accumulator, currentValue) {
|
|
5758
|
+
return Math.max(accumulator, currentValue.getBoundingClientRect().height);
|
|
5759
|
+
}, trs[0].getBoundingClientRect().height);
|
|
5760
|
+
try {
|
|
5761
|
+
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()) {
|
|
5762
|
+
var tr = trs_1_1.value;
|
|
5763
|
+
tr.style.height = max + "px";
|
|
5764
|
+
}
|
|
5765
|
+
}
|
|
5766
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
5767
|
+
finally {
|
|
5768
|
+
try {
|
|
5769
|
+
if (trs_1_1 && !trs_1_1.done && (_b = trs_1.return)) _b.call(trs_1);
|
|
5770
|
+
}
|
|
5771
|
+
finally { if (e_2) throw e_2.error; }
|
|
5757
5772
|
}
|
|
5758
|
-
finally { if (e_1) throw e_1.error; }
|
|
5759
5773
|
}
|
|
5760
5774
|
};
|
|
5761
|
-
TableFrozenPositionDirective.prototype.
|
|
5762
|
-
var
|
|
5763
|
-
if (isHead === void 0) { isHead = false; }
|
|
5764
|
-
var rowSizes = [];
|
|
5775
|
+
TableFrozenPositionDirective.prototype._resetRowHeight = function (tables) {
|
|
5776
|
+
var e_3, _a, e_4, _b;
|
|
5765
5777
|
try {
|
|
5766
5778
|
for (var tables_2 = __values(tables), tables_2_1 = tables_2.next(); !tables_2_1.done; tables_2_1 = tables_2.next()) {
|
|
5767
5779
|
var table = tables_2_1.value;
|
|
5768
5780
|
try {
|
|
5769
|
-
for (var
|
|
5770
|
-
var
|
|
5771
|
-
|
|
5772
|
-
continue;
|
|
5773
|
-
rowSizes.push(tr.getBoundingClientRect().height);
|
|
5781
|
+
for (var _c = (e_4 = void 0, __values(table.rows)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
5782
|
+
var row = _d.value;
|
|
5783
|
+
row.style.height = "unset";
|
|
5774
5784
|
}
|
|
5775
5785
|
}
|
|
5776
|
-
catch (
|
|
5786
|
+
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
5777
5787
|
finally {
|
|
5778
5788
|
try {
|
|
5779
|
-
if (
|
|
5789
|
+
if (_d && !_d.done && (_b = _c.return)) _b.call(_c);
|
|
5780
5790
|
}
|
|
5781
|
-
finally { if (
|
|
5791
|
+
finally { if (e_4) throw e_4.error; }
|
|
5782
5792
|
}
|
|
5783
5793
|
}
|
|
5784
5794
|
}
|
|
5785
|
-
catch (
|
|
5795
|
+
catch (e_3_1) { e_3 = { error: e_3_1 }; }
|
|
5786
5796
|
finally {
|
|
5787
5797
|
try {
|
|
5788
5798
|
if (tables_2_1 && !tables_2_1.done && (_a = tables_2.return)) _a.call(tables_2);
|
|
5789
5799
|
}
|
|
5790
|
-
finally { if (
|
|
5791
|
-
}
|
|
5792
|
-
if (!rowSizes.length)
|
|
5793
|
-
return;
|
|
5794
|
-
var maxHeight = Math.max.apply(Math, __spread(rowSizes));
|
|
5795
|
-
if (isHead) {
|
|
5796
|
-
this.styleFixHeadRowHeight.innerHTML = "." + this.fixHeadRowClassName + " thead > tr { height: " + maxHeight + "px; }";
|
|
5797
|
-
try {
|
|
5798
|
-
for (var tables_3 = __values(tables), tables_3_1 = tables_3.next(); !tables_3_1.done; tables_3_1 = tables_3.next()) {
|
|
5799
|
-
var table = tables_3_1.value;
|
|
5800
|
-
table.classList.remove(this.resetRowHeightClassName);
|
|
5801
|
-
table.classList.add(this.fixHeadRowClassName);
|
|
5802
|
-
}
|
|
5803
|
-
}
|
|
5804
|
-
catch (e_4_1) { e_4 = { error: e_4_1 }; }
|
|
5805
|
-
finally {
|
|
5806
|
-
try {
|
|
5807
|
-
if (tables_3_1 && !tables_3_1.done && (_c = tables_3.return)) _c.call(tables_3);
|
|
5808
|
-
}
|
|
5809
|
-
finally { if (e_4) throw e_4.error; }
|
|
5810
|
-
}
|
|
5811
|
-
}
|
|
5812
|
-
else {
|
|
5813
|
-
this.styleFixBodyRowHeight.innerHTML = "." + this.fixBodyRowClassName + " tbody > tr { height: " + maxHeight + "px; }";
|
|
5814
|
-
try {
|
|
5815
|
-
for (var tables_4 = __values(tables), tables_4_1 = tables_4.next(); !tables_4_1.done; tables_4_1 = tables_4.next()) {
|
|
5816
|
-
var table = tables_4_1.value;
|
|
5817
|
-
table.classList.remove(this.resetRowHeightClassName);
|
|
5818
|
-
table.classList.add(this.fixBodyRowClassName);
|
|
5819
|
-
}
|
|
5820
|
-
}
|
|
5821
|
-
catch (e_5_1) { e_5 = { error: e_5_1 }; }
|
|
5822
|
-
finally {
|
|
5823
|
-
try {
|
|
5824
|
-
if (tables_4_1 && !tables_4_1.done && (_d = tables_4.return)) _d.call(tables_4);
|
|
5825
|
-
}
|
|
5826
|
-
finally { if (e_5) throw e_5.error; }
|
|
5827
|
-
}
|
|
5800
|
+
finally { if (e_3) throw e_3.error; }
|
|
5828
5801
|
}
|
|
5829
5802
|
};
|
|
5830
5803
|
TableFrozenPositionDirective.ctorParameters = function () { return [
|
|
@@ -9546,26 +9519,26 @@ var SidebarModule = /** @class */ (function () {
|
|
|
9546
9519
|
}());
|
|
9547
9520
|
|
|
9548
9521
|
var SMALL_DEVICE_BREAKPOINT = 420;
|
|
9549
|
-
var
|
|
9550
|
-
function
|
|
9522
|
+
var SlidePanelComponent = /** @class */ (function () {
|
|
9523
|
+
function SlidePanelComponent() {
|
|
9551
9524
|
this.openIcon = "fas fa-chevron-right";
|
|
9552
9525
|
this.closeIcon = "fas fa-chevron-left";
|
|
9553
9526
|
this.cache = false;
|
|
9554
|
-
this.
|
|
9555
|
-
this.
|
|
9527
|
+
this.panelOpened = new EventEmitter();
|
|
9528
|
+
this.panelClosed = new EventEmitter();
|
|
9556
9529
|
this.slideHeight = 0;
|
|
9557
9530
|
this.isOpen = false;
|
|
9558
9531
|
this.isSlideOver = false;
|
|
9559
9532
|
this.isAnimating = false;
|
|
9560
9533
|
this.isContentAnimationDisabled = true;
|
|
9561
9534
|
}
|
|
9562
|
-
|
|
9535
|
+
SlidePanelComponent.prototype.onResize = function () {
|
|
9563
9536
|
this._checkOverBehavior();
|
|
9564
9537
|
};
|
|
9565
|
-
|
|
9538
|
+
SlidePanelComponent.prototype.ngOnInit = function () {
|
|
9566
9539
|
this._checkOverBehavior();
|
|
9567
9540
|
};
|
|
9568
|
-
|
|
9541
|
+
SlidePanelComponent.prototype.ngAfterViewChecked = function () {
|
|
9569
9542
|
var _this = this;
|
|
9570
9543
|
// to executed at a safe time prior to control returning to the browser's event loop
|
|
9571
9544
|
queueMicrotask(function () {
|
|
@@ -9573,58 +9546,58 @@ var SlideBarComponent = /** @class */ (function () {
|
|
|
9573
9546
|
_this.isContentAnimationDisabled = false;
|
|
9574
9547
|
});
|
|
9575
9548
|
};
|
|
9576
|
-
|
|
9549
|
+
SlidePanelComponent.prototype.onClickButton = function () {
|
|
9577
9550
|
if (this.isAnimating) {
|
|
9578
9551
|
return;
|
|
9579
9552
|
}
|
|
9580
9553
|
this.isOpen = !this.isOpen;
|
|
9581
9554
|
if (this.isOpen) {
|
|
9582
|
-
this.
|
|
9555
|
+
this.panelOpened.emit();
|
|
9583
9556
|
}
|
|
9584
9557
|
else {
|
|
9585
|
-
this.
|
|
9558
|
+
this.panelClosed.emit();
|
|
9586
9559
|
}
|
|
9587
9560
|
};
|
|
9588
|
-
|
|
9561
|
+
SlidePanelComponent.prototype.onContentAnimationStart = function () {
|
|
9589
9562
|
this.isAnimating = true;
|
|
9590
9563
|
};
|
|
9591
|
-
|
|
9564
|
+
SlidePanelComponent.prototype.onContentAnimationDone = function () {
|
|
9592
9565
|
this.isAnimating = false;
|
|
9593
9566
|
};
|
|
9594
|
-
|
|
9567
|
+
SlidePanelComponent.prototype._checkOverBehavior = function () {
|
|
9595
9568
|
this.isSlideOver = window.innerWidth <= SMALL_DEVICE_BREAKPOINT;
|
|
9596
9569
|
};
|
|
9597
|
-
|
|
9570
|
+
SlidePanelComponent.prototype._calculateSlideHeight = function () {
|
|
9598
9571
|
this.slideHeight = this.sideContent.nativeElement.clientHeight;
|
|
9599
9572
|
};
|
|
9600
9573
|
__decorate([
|
|
9601
9574
|
Input()
|
|
9602
|
-
],
|
|
9575
|
+
], SlidePanelComponent.prototype, "openIcon", void 0);
|
|
9603
9576
|
__decorate([
|
|
9604
9577
|
Input()
|
|
9605
|
-
],
|
|
9578
|
+
], SlidePanelComponent.prototype, "closeIcon", void 0);
|
|
9606
9579
|
__decorate([
|
|
9607
9580
|
Input()
|
|
9608
|
-
],
|
|
9581
|
+
], SlidePanelComponent.prototype, "cache", void 0);
|
|
9609
9582
|
__decorate([
|
|
9610
9583
|
Output()
|
|
9611
|
-
],
|
|
9584
|
+
], SlidePanelComponent.prototype, "panelOpened", void 0);
|
|
9612
9585
|
__decorate([
|
|
9613
9586
|
Output()
|
|
9614
|
-
],
|
|
9587
|
+
], SlidePanelComponent.prototype, "panelClosed", void 0);
|
|
9615
9588
|
__decorate([
|
|
9616
9589
|
ViewChild("mainContainer")
|
|
9617
|
-
],
|
|
9590
|
+
], SlidePanelComponent.prototype, "mainContainer", void 0);
|
|
9618
9591
|
__decorate([
|
|
9619
9592
|
ViewChild("sideContent")
|
|
9620
|
-
],
|
|
9593
|
+
], SlidePanelComponent.prototype, "sideContent", void 0);
|
|
9621
9594
|
__decorate([
|
|
9622
9595
|
HostListener("window:resize")
|
|
9623
|
-
],
|
|
9624
|
-
|
|
9596
|
+
], SlidePanelComponent.prototype, "onResize", null);
|
|
9597
|
+
SlidePanelComponent = __decorate([
|
|
9625
9598
|
Component({
|
|
9626
|
-
selector: "s-slide-
|
|
9627
|
-
template: "<div class=\"slide-
|
|
9599
|
+
selector: "s-slide-panel",
|
|
9600
|
+
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>",
|
|
9628
9601
|
animations: [
|
|
9629
9602
|
trigger("cachelessAnimation", [
|
|
9630
9603
|
transition(":enter", [
|
|
@@ -9642,26 +9615,26 @@ var SlideBarComponent = /** @class */ (function () {
|
|
|
9642
9615
|
transition("* => *", animate("200ms")),
|
|
9643
9616
|
]),
|
|
9644
9617
|
],
|
|
9645
|
-
styles: [".slide-
|
|
9618
|
+
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}"]
|
|
9646
9619
|
})
|
|
9647
|
-
],
|
|
9648
|
-
return
|
|
9620
|
+
], SlidePanelComponent);
|
|
9621
|
+
return SlidePanelComponent;
|
|
9649
9622
|
}());
|
|
9650
9623
|
|
|
9651
|
-
var
|
|
9652
|
-
function
|
|
9624
|
+
var SlidePanelModule = /** @class */ (function () {
|
|
9625
|
+
function SlidePanelModule() {
|
|
9653
9626
|
}
|
|
9654
|
-
|
|
9627
|
+
SlidePanelModule = __decorate([
|
|
9655
9628
|
NgModule({
|
|
9656
9629
|
imports: [
|
|
9657
9630
|
CommonModule,
|
|
9658
9631
|
BrowserAnimationsModule,
|
|
9659
9632
|
],
|
|
9660
|
-
declarations: [
|
|
9661
|
-
exports: [
|
|
9633
|
+
declarations: [SlidePanelComponent],
|
|
9634
|
+
exports: [SlidePanelComponent],
|
|
9662
9635
|
})
|
|
9663
|
-
],
|
|
9664
|
-
return
|
|
9636
|
+
], SlidePanelModule);
|
|
9637
|
+
return SlidePanelModule;
|
|
9665
9638
|
}());
|
|
9666
9639
|
|
|
9667
9640
|
var StatsCardComponent = /** @class */ (function () {
|
|
@@ -12769,5 +12742,5 @@ var fallback = {
|
|
|
12769
12742
|
* Generated bundle index. Do not edit.
|
|
12770
12743
|
*/
|
|
12771
12744
|
|
|
12772
|
-
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule,
|
|
12745
|
+
export { AccordionComponent, AccordionModule, AccordionPanelComponent, AngularComponentsModule, AutocompleteField, BadgeColors, BadgeComponent, BadgeModule, BaseFieldComponent, BignumberField, BignumberInputDirective, BignumberInputModule, BooleanField, BooleanOptionsLabel, BreadcrumbComponent, BreadcrumbModule, Breakpoints, ButtonComponent, ButtonModule, ButtonPriority, ButtonSize, CalendarField, CalendarLocaleOptions, CalendarMaskDirective, CalendarMaskModule, ChipsField, CodeEditorModule, CollapseLinkComponent, CollapseLinkModule, ControlErrorsComponent, ControlErrorsModule, CountryPhonePickerComponent, CountryPhonePickerModule, CurrencyField, CustomFieldsComponent, CustomFieldsModule, CustomFieldsService, DEFAULT_CALENDAR_LOCALE_OPTIONS, DEFAULT_LOCALE_OPTIONS, DEFAULT_NUMBER_LOCALE_OPTIONS, DebounceUtils, DoubleClickDirective, DynamicConfig, DynamicFormComponent, DynamicFormModule, DynamicType, EditableOverlayDirective, EditableOverlayModule, EmptyStateComponent, EmptyStateModule, EnumBadgeColors, EnumColumnFieldType, EnumSeverity, ExportUtils, Field, FieldType, Fieldset, FileUploadComponent, FileUploadModule, FileValidation, FormField, GlobalSearchComponent, GlobalSearchDropdownItemComponent, GlobalSearchModule, GlobalSearchSizeEnum, HostProjectConfigsInjectionToken, ImageCropperComponent, ImageCropperModule, ImageCropperService, InfoSignDirective, InfoSignModule, Languages, LoadingStateComponent, LoadingStateDirective, LoadingStateModule, LocaleModule, LocaleOptions, LocaleService, LocalizedCurrencyPipe, LocalizedCurrencyPipeOptions, LocalizedDateImpurePipe, LocalizedDatePipe, LocalizedNumberInputDirective, LocalizedNumberInputModule, LocalizedNumberPipe, LocalizedTimeImpurePipe, LocalizedTimePipe, LongPressDirective, LookupComponent, LookupField, MaskFormatterModule, MaskFormatterPipe, MouseEventsModule, NavigationDirective, NumberAlignmentOption, NumberField, NumberInputDirective, NumberInputModule, NumberLocaleOptions, ObjectCardComponent, ObjectCardFieldComponent, ObjectCardMainComponent, ObjectCardModule, Option, Ordination, PanelComponent, PanelModule, PasswordField, PasswordStrengthComponent, PasswordStrengthDirective, PasswordStrengthModule, PasswordStrengthPositions, PasswordStrengths, ProductHeaderComponent, ProductHeaderModule, ProfilePicturePickerComponent, ProfilePicturePickerModule, ProgressBarColors, ProgressBarComponent, ProgressBarModule, RadioButtonField, RationButtonOption, RowTogllerDirective, Section, SelectField, SelectOption, SidebarComponent, SidebarModule, SlidePanelComponent, SlidePanelModule, SplitButtonComponent, SplitButtonModule, SplitButtonType, StatsCardComponent, StatsCardModule, StepState, StepsComponent, StepsModule, Structure, TableFrozenPositionDirective, TableHeaderCheckboxComponent, TableHeaderCheckboxModule, TableModule, TaxCalculationLanguageConfigs, TextAreaField, TextField, Themes, ThumbnailComponent, ThumbnailModule, ThumbnailSize, TileComponent, TileModule, TimelineComponent, TimelineItem, TimelineItemSeverity, TimelineItemSize, TimelineModule, TokenListComponent, TokenListModule, TooltipModule, TooltipPosition, ValidateErrors, WorkspaceSwitchComponent, WorkspaceSwitchModule, countries, fallback, TooltipComponent as ɵa, TooltipDirective as ɵb, SelectFieldComponent as ɵba, TextAreaFieldComponent as ɵbb, TextFieldComponent as ɵbc, BooleanSwitchFieldComponent as ɵbd, PasswordFieldComponent as ɵbe, SliderFieldComponent as ɵbf, DecimalField as ɵbh, StructureModule as ɵbi, HeaderComponent as ɵbj, FooterComponent as ɵbk, NumberLocaleOptions as ɵbl, ThumbnailService as ɵbm, BorderButtonModule as ɵbn, BorderButtonComponent as ɵbo, TimelineItemModule as ɵbp, TimelineIconItemComponent as ɵbq, HorizontalTimelineModule as ɵbr, HorizontalTimelineComponent as ɵbs, VerticalTimelineModule as ɵbt, VerticalTimelineComponent as ɵbu, RangeLineComponent as ɵbv, CollapseOptionComponent as ɵbw, CollapsedItemsComponent as ɵbx, VerticalItemsComponent as ɵby, InfiniteScrollModule as ɵbz, CountryPhonePickerService as ɵc, InfiniteScrollDirective as ɵca, CustomTranslationsModule as ɵcb, CodeEditorComponent as ɵcc, CoreFacade as ɵcd, CodeMirror6Core as ɵce, LocalizedCurrencyImpurePipe as ɵd, LocalizedBignumberPipe as ɵe, LocalizedBignumberImpurePipe as ɵf, EmptyStateGoBackComponent as ɵg, FileUploadService as ɵh, InfoSignComponent as ɵi, TableColumnsComponent as ɵj, TablePagingComponent as ɵk, AutocompleteFieldComponent as ɵl, BooleanFieldComponent as ɵm, CalendarFieldComponent as ɵn, ChipsFieldComponent as ɵo, CurrencyFieldComponent as ɵp, DynamicFieldComponent as ɵq, DynamicFormDirective as ɵr, FieldsetComponent as ɵs, FileUploadComponent$1 as ɵt, LookupFieldComponent as ɵu, NumberFieldComponent as ɵv, BignumberFieldComponent as ɵw, RadioButtonComponent as ɵx, RowComponent as ɵy, SectionComponent as ɵz };
|
|
12773
12746
|
//# sourceMappingURL=seniorsistemas-angular-components.js.map
|