@colijnit/corecomponents_v12 12.0.45 → 12.0.48

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/colijnit-corecomponents_v12.umd.js +406 -5
  2. package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
  3. package/colijnit-corecomponents_v12.d.ts +2 -0
  4. package/colijnit-corecomponents_v12.metadata.json +1 -1
  5. package/esm2015/colijnit-corecomponents_v12.js +3 -1
  6. package/esm2015/lib/components/base/base-input.component.js +1 -2
  7. package/esm2015/lib/components/drop-down-list/drop-down-list.component.js +8 -1
  8. package/esm2015/lib/components/pagination/paginate.pipe.js +106 -0
  9. package/esm2015/lib/components/pagination/pagination-instance.js +2 -0
  10. package/esm2015/lib/components/pagination/pagination.component.js +194 -0
  11. package/esm2015/lib/components/pagination/pagination.module.js +26 -0
  12. package/esm2015/lib/components/pagination/pagination.service.js +88 -0
  13. package/esm2015/lib/components/simple-grid/simple-grid-cell.component.js +1 -4
  14. package/esm2015/lib/core/interface/filter-item-viewmodel.js +1 -1
  15. package/esm2015/public-api.js +3 -1
  16. package/fesm2015/colijnit-corecomponents_v12.js +410 -5
  17. package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
  18. package/lib/components/co-dialog/style/_material-definition.scss +1 -1
  19. package/lib/components/drop-down-list/drop-down-list.component.d.ts +3 -0
  20. package/lib/components/pagination/paginate.pipe.d.ts +18 -0
  21. package/lib/components/pagination/pagination-instance.d.ts +14 -0
  22. package/lib/components/pagination/pagination.component.d.ts +46 -0
  23. package/lib/components/pagination/pagination.module.d.ts +2 -0
  24. package/lib/components/pagination/pagination.service.d.ts +24 -0
  25. package/lib/components/pagination/style/_layout.scss +87 -0
  26. package/lib/components/pagination/style/_material-definition.scss +6 -0
  27. package/lib/components/pagination/style/_theme.scss +5 -0
  28. package/lib/components/pagination/style/material.scss +5 -0
  29. package/lib/components/simple-grid/simple-grid-cell.component.d.ts +2 -3
  30. package/lib/core/interface/filter-item-viewmodel.d.ts +1 -0
  31. package/package.json +1 -1
  32. package/public-api.d.ts +2 -0
@@ -4929,7 +4929,6 @@
4929
4929
  return [4 /*yield*/, this.commitClick()];
4930
4930
  case 2:
4931
4931
  _b.sent();
4932
- this.enter.emit();
4933
4932
  return [2 /*return*/, false];
4934
4933
  case 3:
4935
4934
  nextSiblingToFocus = event.shiftKey ? event.currentTarget.previousSibling : event.currentTarget.nextSibling;
@@ -5395,6 +5394,7 @@
5395
5394
  * Where 'text' is showing in the dropdown and 'id' used for the model binding
5396
5395
  */
5397
5396
  _this.fields = {};
5397
+ _this.allowFiltering = false;
5398
5398
  _super.prototype._markAsOnPush.call(_this);
5399
5399
  return _this;
5400
5400
  }
@@ -5411,7 +5411,7 @@
5411
5411
  DropDownListComponent.decorators = [
5412
5412
  { type: core.Component, args: [{
5413
5413
  selector: "co-drop-down-list",
5414
- template: "\n <ejs-dropdownlist\n [dataSource]=\"collection\"\n [value]=\"model\"\n [fields]=\"fields\"\n [placeholder]=\"placeholder\"\n [readonly]=\"readonly\"\n [itemTemplate]=\"itemTemplate\"\n [headerTemplate]=\"headerTemplate\"\n [valueTemplate]=\"valueTemplate\"\n [disabled]=\"disabled\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"handleValueChanged($event)\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-dropdownlist>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
5414
+ template: "\n <ejs-dropdownlist\n [dataSource]=\"collection\"\n [allowFiltering]=\"allowFiltering\"\n [value]=\"model\"\n [fields]=\"fields\"\n [filterBarPlaceholder]=\"filterBarPlaceholder\"\n [filterType]=\"filterType\"\n [placeholder]=\"placeholder\"\n [readonly]=\"readonly\"\n [itemTemplate]=\"itemTemplate\"\n [headerTemplate]=\"headerTemplate\"\n [valueTemplate]=\"valueTemplate\"\n [disabled]=\"disabled\"\n [ngModel]=\"model\"\n (ngModelChange)=\"modelChange.emit($event)\"\n (valueChange)=\"handleValueChanged($event)\"\n showClearButton=\"true\"\n floatLabelType=\"Auto\"\n >\n </ejs-dropdownlist>\n <div class=\"required-indicator\"></div>\n <ng-template #validationError></ng-template>\n ",
5415
5415
  providers: [
5416
5416
  ej2AngularDropdowns.CheckBoxSelectionService,
5417
5417
  {
@@ -5437,6 +5437,9 @@
5437
5437
  collection: [{ type: core.Input }],
5438
5438
  fields: [{ type: core.Input }],
5439
5439
  placeholder: [{ type: core.Input }],
5440
+ allowFiltering: [{ type: core.Input }],
5441
+ filterBarPlaceholder: [{ type: core.Input }],
5442
+ filterType: [{ type: core.Input }],
5440
5443
  itemTemplate: [{ type: core.Input }],
5441
5444
  headerTemplate: [{ type: core.Input }],
5442
5445
  valueTemplate: [{ type: core.Input }],
@@ -9849,9 +9852,6 @@
9849
9852
  this.cellClick.next();
9850
9853
  }
9851
9854
  };
9852
- SimpleGridCellComponent.prototype.ngOnChanges = function (changes) {
9853
- console.log(changes);
9854
- };
9855
9855
  SimpleGridCellComponent.prototype._setFocusComponent = function () {
9856
9856
  if (this.editMode && this.fieldEditMode) {
9857
9857
  var element = this._getElement();
@@ -10519,6 +10519,403 @@
10519
10519
  },] }
10520
10520
  ];
10521
10521
 
10522
+ var PaginationService = /** @class */ (function () {
10523
+ function PaginationService() {
10524
+ this.change = new rxjs.Subject();
10525
+ this.instances = {};
10526
+ }
10527
+ Object.defineProperty(PaginationService.prototype, "DEFAULT_ID", {
10528
+ get: function () {
10529
+ return PaginationService.DEFAULT_ID;
10530
+ },
10531
+ enumerable: false,
10532
+ configurable: true
10533
+ });
10534
+ PaginationService.prototype.register = function (instance) {
10535
+ if (!instance.id) {
10536
+ instance.id = PaginationService.DEFAULT_ID;
10537
+ }
10538
+ if (!this.instances[instance.id]) {
10539
+ this.instances[instance.id] = instance;
10540
+ this.change.next(instance.id);
10541
+ }
10542
+ else {
10543
+ var changed = this.updateInstance(instance);
10544
+ if (changed) {
10545
+ this.change.next(instance.id);
10546
+ }
10547
+ }
10548
+ };
10549
+ // Returns the current page number.
10550
+ PaginationService.prototype.getCurrentPage = function (id) {
10551
+ if (this.instances[id]) {
10552
+ return this.instances[id].currentPage;
10553
+ }
10554
+ };
10555
+ // Sets the current page number.
10556
+ PaginationService.prototype.setCurrentPage = function (id, page) {
10557
+ if (this.instances[id]) {
10558
+ var instance = this.instances[id];
10559
+ var maxPage = Math.ceil(instance.totalItems / instance.itemsPerPage);
10560
+ if (page <= maxPage && 1 <= page) {
10561
+ this.instances[id].currentPage = page;
10562
+ this.change.next(id);
10563
+ }
10564
+ }
10565
+ };
10566
+ // Sets the value of instance.totalItems
10567
+ PaginationService.prototype.setTotalItems = function (id, totalItems) {
10568
+ if (this.instances[id] && 0 <= totalItems) {
10569
+ this.instances[id].totalItems = totalItems;
10570
+ this.change.next(id);
10571
+ }
10572
+ };
10573
+ // Sets the value of instance.itemsPerPage.
10574
+ PaginationService.prototype.setItemsPerPage = function (id, itemsPerPage) {
10575
+ if (this.instances[id]) {
10576
+ this.instances[id].itemsPerPage = itemsPerPage;
10577
+ this.change.next(id);
10578
+ }
10579
+ };
10580
+ /**
10581
+ * Returns a clone of the pagination instance object matching the id. If no
10582
+ * id specified, returns the instance corresponding to the default id.
10583
+ */
10584
+ PaginationService.prototype.getInstance = function (id) {
10585
+ if (id === void 0) { id = PaginationService.DEFAULT_ID; }
10586
+ if (this.instances[id]) {
10587
+ return ObjectUtils.GetShallowClone(this.instances[id]);
10588
+ }
10589
+ return {};
10590
+ };
10591
+ /**
10592
+ * Check each property of the instance and update any that have changed. Return
10593
+ * true if any changes were made, else return false.
10594
+ */
10595
+ PaginationService.prototype.updateInstance = function (instance) {
10596
+ var changed = false;
10597
+ for (var prop in this.instances[instance.id]) {
10598
+ if (instance[prop] !== this.instances[instance.id][prop]) {
10599
+ this.instances[instance.id][prop] = instance[prop];
10600
+ changed = true;
10601
+ }
10602
+ }
10603
+ return changed;
10604
+ };
10605
+ return PaginationService;
10606
+ }());
10607
+ PaginationService.DEFAULT_ID = "DEFAULT_PAGINATION_ID";
10608
+ PaginationService.decorators = [
10609
+ { type: core.Injectable }
10610
+ ];
10611
+ PaginationService.ctorParameters = function () { return []; };
10612
+
10613
+ var PaginationComponent = /** @class */ (function () {
10614
+ function PaginationComponent(_paginationService) {
10615
+ var _this = this;
10616
+ this._paginationService = _paginationService;
10617
+ this.maxSize = 7;
10618
+ this.directionLinks = true;
10619
+ this.previousLabel = 'Vorige pagina';
10620
+ this.nextLabel = 'Volgende pagina';
10621
+ this.autoHide = false;
10622
+ // Emits the new page number.
10623
+ this.pageChange = new core.EventEmitter();
10624
+ this.showClass = true;
10625
+ this.pages = [];
10626
+ this.changeSub = this._paginationService.change.subscribe(function (id) {
10627
+ if (_this.id === id) {
10628
+ _this._updatePageLinks();
10629
+ }
10630
+ });
10631
+ }
10632
+ PaginationComponent.prototype.ngOnInit = function () {
10633
+ if (!this.id) {
10634
+ this.id = this._paginationService.DEFAULT_ID;
10635
+ }
10636
+ this._updatePageLinks();
10637
+ };
10638
+ PaginationComponent.prototype.ngOnChanges = function () {
10639
+ this._updatePageLinks();
10640
+ };
10641
+ PaginationComponent.prototype.ngOnDestroy = function () {
10642
+ this.changeSub.unsubscribe();
10643
+ };
10644
+ PaginationComponent.prototype.goToFirstPage = function () {
10645
+ if (!this.isOnFirstPage()) {
10646
+ this.setCurrentPage(1);
10647
+ }
10648
+ };
10649
+ PaginationComponent.prototype.goToPreviousPage = function () {
10650
+ if (!this.isOnFirstPage()) {
10651
+ this.setCurrentPage(this.getCurrentPage() - 1);
10652
+ }
10653
+ };
10654
+ PaginationComponent.prototype.goToNextPage = function () {
10655
+ if (!this.isOnLastPage()) {
10656
+ this.setCurrentPage(this.getCurrentPage() + 1);
10657
+ }
10658
+ };
10659
+ PaginationComponent.prototype.setCurrentPage = function (page) {
10660
+ this.pageChange.emit(page);
10661
+ };
10662
+ PaginationComponent.prototype.isOnFirstPage = function () {
10663
+ return this.getCurrentPage() === 1;
10664
+ };
10665
+ PaginationComponent.prototype.isOnLastPage = function () {
10666
+ return this.getLastPage() === this.getCurrentPage();
10667
+ };
10668
+ PaginationComponent.prototype.shouldBeHidden = function () {
10669
+ if (!this.autoHide) {
10670
+ return false;
10671
+ }
10672
+ else {
10673
+ var instance = this._paginationService.getInstance();
10674
+ return (instance.totalItems <= instance.itemsPerPage);
10675
+ }
10676
+ };
10677
+ /**
10678
+ * Updates the page links and checks that the current page is valid. Should run whenever the
10679
+ * PaginationService.change stream emits a value matching the current ID, or when any of the
10680
+ * input values changes.
10681
+ */
10682
+ PaginationComponent.prototype._updatePageLinks = function () {
10683
+ var paginationInstance = this._paginationService.getInstance(this.id);
10684
+ this.pages = this.createPageArray(paginationInstance.currentPage, paginationInstance.itemsPerPage, paginationInstance.totalItems, this.maxSize);
10685
+ var correctedCurrentPage = this.outOfBoundCorrection(paginationInstance);
10686
+ if (correctedCurrentPage !== paginationInstance.currentPage) {
10687
+ this.setCurrentPage(correctedCurrentPage);
10688
+ }
10689
+ };
10690
+ PaginationComponent.prototype.getCurrentPage = function () {
10691
+ return this._paginationService.getCurrentPage(this.id);
10692
+ };
10693
+ PaginationComponent.prototype.getLastPage = function () {
10694
+ var instance = this._paginationService.getInstance(this.id);
10695
+ return Math.ceil(instance.totalItems / instance.itemsPerPage);
10696
+ };
10697
+ /**
10698
+ * Checks that the instance.currentPage property is within bounds for the current page range.
10699
+ * If not, return a correct value for currentPage, or the current value if OK.
10700
+ */
10701
+ PaginationComponent.prototype.outOfBoundCorrection = function (instance) {
10702
+ var totalPages = Math.ceil(instance.totalItems / instance.itemsPerPage);
10703
+ if (totalPages < instance.currentPage && 0 < totalPages) {
10704
+ return totalPages;
10705
+ }
10706
+ else if (instance.currentPage < 1) {
10707
+ return 1;
10708
+ }
10709
+ return instance.currentPage;
10710
+ };
10711
+ // Returns an array of IPage objects to use in the pagination controls.
10712
+ PaginationComponent.prototype.createPageArray = function (currentPage, itemsPerPage, totalItems, paginationRange) {
10713
+ // paginationRange could be a string if passed from attribute, so cast to number.
10714
+ paginationRange = +paginationRange;
10715
+ var pages = [];
10716
+ var totalPages = Math.ceil(totalItems / itemsPerPage);
10717
+ var halfWay = Math.ceil(paginationRange / 2);
10718
+ var isStart = currentPage <= halfWay;
10719
+ var isEnd = totalPages - halfWay < currentPage;
10720
+ var isMiddle = !isStart && !isEnd;
10721
+ var ellipsesNeeded = paginationRange < totalPages;
10722
+ var i = 1;
10723
+ while (i <= totalPages && i <= paginationRange) {
10724
+ var label = void 0;
10725
+ var pageNumber = this.calculatePageNumber(i, currentPage, paginationRange, totalPages);
10726
+ var openingEllipsesNeeded = (i === 2 && (isMiddle || isEnd));
10727
+ var closingEllipsesNeeded = (i === paginationRange - 1 && (isMiddle || isStart));
10728
+ if (ellipsesNeeded && (openingEllipsesNeeded || closingEllipsesNeeded)) {
10729
+ label = '...';
10730
+ }
10731
+ else {
10732
+ label = '' + pageNumber;
10733
+ }
10734
+ pages.push({
10735
+ label: label,
10736
+ value: pageNumber
10737
+ });
10738
+ i++;
10739
+ }
10740
+ return pages;
10741
+ };
10742
+ // Given the position in the sequence of pagination links [i], figure out what page number corresponds to that position.
10743
+ PaginationComponent.prototype.calculatePageNumber = function (i, currentPage, paginationRange, totalPages) {
10744
+ var halfWay = Math.ceil(paginationRange / 2);
10745
+ if (i === paginationRange) {
10746
+ return totalPages;
10747
+ }
10748
+ else if (i === 1) {
10749
+ return i;
10750
+ }
10751
+ else if (paginationRange < totalPages) {
10752
+ if (totalPages - halfWay < currentPage) {
10753
+ return totalPages - paginationRange + i;
10754
+ }
10755
+ else if (halfWay < currentPage) {
10756
+ return currentPage - halfWay + i;
10757
+ }
10758
+ else {
10759
+ return i;
10760
+ }
10761
+ }
10762
+ else {
10763
+ return i;
10764
+ }
10765
+ };
10766
+ return PaginationComponent;
10767
+ }());
10768
+ PaginationComponent.decorators = [
10769
+ { type: core.Component, args: [{
10770
+ selector: 'co-pagination',
10771
+ template: "\n <div class=\"pagination-component-main-wrapper\" *ngIf=\"!shouldBeHidden()\">\n <div>\n <ng-content></ng-content>\n </div>\n <ul class=\"pagination\">\n <li *ngIf=\"directionLinks\" class=\"pagination-previous\">\n <a (click)=\"goToPreviousPage()\" [class.disabled]=\"isOnFirstPage()\">{{ previousLabel }}</a>\n </li>\n <li *ngFor=\"let page of pages\" [class.current]=\"getCurrentPage() === page.value\" (click)=\"setCurrentPage(page.value)\">\n <span>{{page.label}}</span>\n </li>\n <li *ngIf=\"directionLinks\" class=\"pagination-next\">\n <a (click)=\"goToNextPage()\" [class.disabled]=\"isOnLastPage()\">{{ nextLabel }}</a>\n </li>\n </ul>\n </div>\n ",
10772
+ encapsulation: core.ViewEncapsulation.None
10773
+ },] }
10774
+ ];
10775
+ PaginationComponent.ctorParameters = function () { return [
10776
+ { type: PaginationService }
10777
+ ]; };
10778
+ PaginationComponent.propDecorators = {
10779
+ template: [{ type: core.ViewChild, args: ['template',] }],
10780
+ id: [{ type: core.Input }],
10781
+ maxSize: [{ type: core.Input }],
10782
+ directionLinks: [{ type: core.Input }],
10783
+ previousLabel: [{ type: core.Input }],
10784
+ nextLabel: [{ type: core.Input }],
10785
+ autoHide: [{ type: core.Input }],
10786
+ pageChange: [{ type: core.Output }],
10787
+ showClass: [{ type: core.HostBinding, args: ['class.co-pagination',] }]
10788
+ };
10789
+
10790
+ var LARGE_NUMBER = 999999999;
10791
+ var PaginatePipe = /** @class */ (function () {
10792
+ function PaginatePipe(paginateService) {
10793
+ this.paginateService = paginateService;
10794
+ // store the values from the last time the pipe
10795
+ this.state = {};
10796
+ }
10797
+ PaginatePipe.prototype.transform = function (collection, args) {
10798
+ // When an observable is passed through the AsyncPipe, it will output
10799
+ // `null` until the subscription resolves. In this case, we want to
10800
+ // use the cached data from the `state` object to prevent the NgFor
10801
+ // from flashing empty until the real values arrive.
10802
+ if (!(collection instanceof Array)) {
10803
+ var _id = args.id || this.paginateService.DEFAULT_ID;
10804
+ if (this.state[_id]) {
10805
+ return this.state[_id].slice;
10806
+ }
10807
+ else {
10808
+ return collection;
10809
+ }
10810
+ }
10811
+ var serverSideMode = args.totalItems !== undefined;
10812
+ var instance = this._createInstance(collection, args);
10813
+ var id = instance.id;
10814
+ var start;
10815
+ var end;
10816
+ var perPage = instance.itemsPerPage;
10817
+ this.paginateService.register(instance);
10818
+ if (!serverSideMode && collection instanceof Array) {
10819
+ perPage = perPage || LARGE_NUMBER;
10820
+ start = (instance.currentPage - 1) * perPage;
10821
+ end = start + perPage;
10822
+ var isIdentical = this._stateIsIdentical(id, collection, start, end);
10823
+ if (isIdentical) {
10824
+ return this.state[id].slice;
10825
+ }
10826
+ else {
10827
+ var slice = collection.slice(start, end);
10828
+ this._saveState(id, collection, slice, start, end);
10829
+ this.paginateService.change.next(id);
10830
+ return slice;
10831
+ }
10832
+ }
10833
+ // save the state for server-side collection to avoid null
10834
+ // flash as new data loads.
10835
+ this._saveState(id, collection, collection, start, end);
10836
+ return collection;
10837
+ };
10838
+ // Create an IPaginationInstance object, using defaults for any optional properties not supplied.
10839
+ PaginatePipe.prototype._createInstance = function (collection, args) {
10840
+ var config = args;
10841
+ this._checkConfig(config);
10842
+ return {
10843
+ id: config.id || this.paginateService.DEFAULT_ID,
10844
+ itemsPerPage: config.itemsPerPage || 0,
10845
+ currentPage: config.currentPage || 1,
10846
+ totalItems: config.totalItems || collection.length
10847
+ };
10848
+ };
10849
+ // Ensure the argument passed to the filter contains the required properties.
10850
+ PaginatePipe.prototype._checkConfig = function (config) {
10851
+ var required = ["itemsPerPage", "currentPage"];
10852
+ var missing = required.filter(function (prop) { return !config.hasOwnProperty(prop); });
10853
+ if (0 < missing.length) {
10854
+ throw new Error("PaginatePipe: Argument is missing the following required properties: " + missing.join(", "));
10855
+ }
10856
+ };
10857
+ /**
10858
+ * To avoid returning a brand new array each time the pipe is run, we store the state of the sliced
10859
+ * array for a given id. This means that the next time the pipe is run on this collection & id, we just
10860
+ * need to check that the collection, start and end points are all identical, and if so, return the
10861
+ * last sliced array.
10862
+ */
10863
+ PaginatePipe.prototype._saveState = function (id, collection, slice, start, end) {
10864
+ this.state[id] = {
10865
+ collection: collection,
10866
+ size: collection.length,
10867
+ slice: slice,
10868
+ start: start,
10869
+ end: end
10870
+ };
10871
+ };
10872
+ // For a given id, returns true if the collection, size, start and end values are identical.
10873
+ PaginatePipe.prototype._stateIsIdentical = function (id, collection, start, end) {
10874
+ var state = this.state[id];
10875
+ if (!state) {
10876
+ return false;
10877
+ }
10878
+ return state.collection === collection &&
10879
+ state.size === collection.length &&
10880
+ state.start === start &&
10881
+ state.end === end;
10882
+ };
10883
+ return PaginatePipe;
10884
+ }());
10885
+ PaginatePipe.decorators = [
10886
+ { type: core.Pipe, args: [{
10887
+ name: 'paginate',
10888
+ pure: false
10889
+ },] }
10890
+ ];
10891
+ PaginatePipe.ctorParameters = function () { return [
10892
+ { type: PaginationService }
10893
+ ]; };
10894
+
10895
+ var PaginationModule = /** @class */ (function () {
10896
+ function PaginationModule() {
10897
+ }
10898
+ return PaginationModule;
10899
+ }());
10900
+ PaginationModule.decorators = [
10901
+ { type: core.NgModule, args: [{
10902
+ imports: [
10903
+ common.CommonModule
10904
+ ],
10905
+ providers: [
10906
+ PaginationService
10907
+ ],
10908
+ declarations: [
10909
+ PaginationComponent,
10910
+ PaginatePipe
10911
+ ],
10912
+ exports: [
10913
+ PaginationComponent,
10914
+ PaginatePipe
10915
+ ]
10916
+ },] }
10917
+ ];
10918
+
10522
10919
  /*
10523
10920
  * Public API Surface of corecomponents
10524
10921
  */
@@ -10604,6 +11001,8 @@
10604
11001
  exports.MultiSelectListComponent = MultiSelectListComponent;
10605
11002
  exports.MultiSelectListModule = MultiSelectListModule;
10606
11003
  exports.ObserveVisibilityModule = ObserveVisibilityModule;
11004
+ exports.PaginationComponent = PaginationComponent;
11005
+ exports.PaginationModule = PaginationModule;
10607
11006
  exports.PopupButtonsComponent = PopupButtonsComponent;
10608
11007
  exports.PopupMessageDisplayComponent = PopupMessageDisplayComponent;
10609
11008
  exports.PopupModule = PopupModule;
@@ -10624,6 +11023,8 @@
10624
11023
  exports["ɵbc"] = PrependPipe;
10625
11024
  exports["ɵbd"] = ClickOutsideDirective;
10626
11025
  exports["ɵbe"] = ClickOutsideMasterService;
11026
+ exports["ɵbf"] = PaginationService;
11027
+ exports["ɵbg"] = PaginatePipe;
10627
11028
  exports["ɵc"] = CoRippleDirective;
10628
11029
  exports["ɵd"] = CoViewportRulerService;
10629
11030
  exports["ɵe"] = CoScrollDispatcherService;