@indice/ng-components 0.2.77 → 0.2.81

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/_styles.css CHANGED
@@ -727,7 +727,7 @@
727
727
  }
728
728
 
729
729
  .pager-pages-container {
730
- @apply relative z-0 inline-flex rounded-sm;
730
+ @apply relative z-50 inline-flex rounded-sm;
731
731
  }
732
732
 
733
733
  .pager-button {
@@ -735,11 +735,11 @@
735
735
  }
736
736
 
737
737
  .pager-arrow-button-left {
738
- @apply inline-flex relative ml-2 inline-flex items-center px-2 py-2 rounded-l-sm border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50;
738
+ @apply hidden sm:inline-flex relative ml-2 items-center px-2 py-2 rounded-l-sm border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50;
739
739
  }
740
740
 
741
741
  .pager-arrow-button-right {
742
- @apply inline-flex relative mr-2 inline-flex items-center px-2 py-2 rounded-l-sm border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50;
742
+ @apply hidden sm:inline-flex relative mr-2 items-center px-2 py-2 rounded-l-sm border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50;
743
743
  }
744
744
  }
745
745
 
@@ -1844,6 +1844,10 @@
1844
1844
  }
1845
1845
  this.activeConfig = config;
1846
1846
  }
1847
+ ShellLayoutComponent.prototype.ngAfterViewChecked = function () {
1848
+ var _this = this;
1849
+ setTimeout(function () { _this.loaded = true; }, 200);
1850
+ };
1847
1851
  ShellLayoutComponent.prototype.ngOnInit = function () {
1848
1852
  var _this = this;
1849
1853
  this.routerSub$ = this.router.events.pipe(operators.filter(function (event) { return event instanceof router.ActivationStart; })).subscribe(function (e) {
@@ -1872,7 +1876,6 @@
1872
1876
  };
1873
1877
  ShellLayoutComponent.prototype.ngAfterViewInit = function () {
1874
1878
  this.initCustomComponents();
1875
- this.loaded = true;
1876
1879
  };
1877
1880
  ShellLayoutComponent.prototype.initCustomComponents = function () {
1878
1881
  if (this.dynamicComponentHosts && this.dynamicComponentHosts.length > 0) {