@esfaenza/es-table 11.2.22-beta1 → 11.2.22-beta2
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/esfaenza-es-table.umd.js +2 -1
- package/bundles/esfaenza-es-table.umd.js.map +1 -1
- package/bundles/esfaenza-es-table.umd.min.js +1 -1
- package/bundles/esfaenza-es-table.umd.min.js.map +1 -1
- package/esfaenza-es-table.metadata.json +1 -1
- package/esm2015/lib/pager/table_pager.component.js +3 -2
- package/fesm2015/esfaenza-es-table.js +2 -1
- package/fesm2015/esfaenza-es-table.js.map +1 -1
- package/lib/pager/table_pager.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -4725,7 +4725,7 @@
|
|
|
4725
4725
|
{ type: core.Component, args: [{
|
|
4726
4726
|
selector: "app-paging",
|
|
4727
4727
|
viewProviders: [{ provide: localizations.LocalizationService, useClass: TablePagerLoc }],
|
|
4728
|
-
template: "
|
|
4728
|
+
template: "<ng-container *ngIf=\"!Hidden\">\r\n <span class=\"est-fs-14\"> {{(GroupMode ? 'Shown Groups' : 'Shown Elements') | localize : lc}}: </span>\r\n <mat-form-field [appearance]=\"'legacy'\" class=\"mat-paginator-page-size-select est-fs-14 est-ipp-bold\" *ngIf=\"Model\">\r\n <select matNativeControl [ngModel]=\"Model\" name=\"input\" (ngModelChange)=\"choice($event)\">\r\n <ng-container *ngFor=\"let pOpt of PagingOptions\">\r\n <option *ngIf=\"pOpt == DefaultAll || PagerCount > pOpt\" [value]=\"pOpt\">{{ pOpt == DefaultAll ? ('All' | localize : lc) : pOpt.toString()}}</option>\r\n </ng-container>\r\n </select>\r\n </mat-form-field>\r\n <span class=\"est-fs-14 est-ipp-bold\" *ngIf=\"ShowCount\"> / {{PagerCount | number : '0.0-0' : locale}}\r\n </span>\r\n</ng-container>",
|
|
4729
4729
|
encapsulation: core.ViewEncapsulation.None,
|
|
4730
4730
|
changeDetection: core.ChangeDetectionStrategy.OnPush,
|
|
4731
4731
|
styles: [".est-ipp-sel,.est-ipp-sel-all,.est-rg-ipp-sel,.est-rg-ipp-sel-all{color:#0275d8!important;cursor:pointer;text-decoration:none;display:block;display:inline}.est-ipp-bold{font-weight:700}.mat-paginator-page-size-select{margin:6px 4px 0;width:50px}.mat-paginator-page-size-select .mat-form-field-wrapper{height:52px!important;margin-top:-15px!important;padding:0!important}.mat-form-field-type-mat-native-select .mat-form-field-infix:after{margin-top:-5.5px!important}"]
|
|
@@ -4747,6 +4747,7 @@
|
|
|
4747
4747
|
GroupCount: [{ type: core.Input }],
|
|
4748
4748
|
ShowCount: [{ type: core.Input }],
|
|
4749
4749
|
PagerCount: [{ type: core.Input }],
|
|
4750
|
+
Hidden: [{ type: core.Input }],
|
|
4750
4751
|
pagingSelected: [{ type: core.Output }]
|
|
4751
4752
|
};
|
|
4752
4753
|
|