@sumaris-net/ngx-components 2.12.8 → 2.12.9

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/doc/changelog.md CHANGED
@@ -851,4 +851,7 @@ enh: Environment: add useHash property to configure Angular router to use hash U
851
851
  - fix: addShortcut handler use `KeyboardEvent` instead of a simple 'EVent'
852
852
 
853
853
  # 2.12.8
854
- - function `toNumber()` will now return the default value, when input is `NaN`
854
+ - enh: function `toNumber()` will now return the default value, when input is `NaN`
855
+
856
+ # 2.12.9
857
+ - fix(paginator): Fix paginator style on mobile screen (align to the left, and hide page size, like before the Angular 17 migration)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "2.12.8",
4
+ "version": "2.12.9",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -2,7 +2,7 @@
2
2
  "name": "ngx-sumaris-components",
3
3
  "short_name": "ngx-sumaris-components",
4
4
  "manifest_version": 1,
5
- "version": "2.12.8",
5
+ "version": "2.12.9",
6
6
  "default_locale": "fr",
7
7
  "description": "Angular components for building beautiful and responsive Apps",
8
8
  "icons": [{
@@ -576,21 +576,16 @@ app-properties-table {
576
576
  }
577
577
 
578
578
  html.plt-mobile {
579
- // fixme: class mat-paginator-footer not used anymore, use .mat-mdc-paginator
580
- .mat-paginator-footer {
581
- .mat-paginator-outer-container {
582
- .mat-paginator-container {
583
- // Move paginator to the left,
584
- // because floating button are on the right
585
- margin-top: 0 !important;
586
- justify-content: flex-start;
587
-
588
- // Hide page size (not need on small screens)
589
- .mat-paginator-page-size {
590
- visibility: hidden;
591
- display: none;
592
- }
593
- }
579
+ .mat-paginator-footer .mat-mdc-paginator-outer-container .mat-mdc-paginator-container {
580
+ // Move paginator to the left,
581
+ // because floating button are on the right
582
+ margin-top: 0 !important;
583
+ justify-content: flex-start;
584
+
585
+ // Hide page size (not need on small screens)
586
+ .mat-mdc-paginator-page-size {
587
+ visibility: hidden;
588
+ display: none;
594
589
  }
595
590
  }
596
591
  }