@elderbyte/ngx-starter 19.1.7 → 19.1.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "19.1.7",
3
+ "version": "19.1.8",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^18.0.0 || ^19.0.0",
6
6
  "@angular/common": "^18.0.0 || ^19.0.0",
@@ -12,6 +12,14 @@
12
12
  --md-sys-color-background: var(--md-sys-color-surface-container);
13
13
  --mat-app-background-color: var(--md-sys-color-background);
14
14
 
15
+ // elder sizes
16
+ --elder-size-xs: #{map.get(config.$sizes, xs)};
17
+ --elder-size-sm: #{map.get(config.$sizes, sm)};
18
+ --elder-size-md: #{map.get(config.$sizes, md)};
19
+ --elder-size-lg: #{map.get(config.$sizes, lg)};
20
+ --elder-size-xl: #{map.get(config.$sizes, xl)};
21
+ --elder-size-xxl: #{map.get(config.$sizes, xxl)};
22
+
15
23
  // mat variables
16
24
  --mat-sidenav-container-width: auto; // is set to around 300px by default in MAT 3 (MAT 2 was auto by default)
17
25
  --mat-badge-small-size-text-size: 9px; // this is the mat2 setting, mat3 somehow sets this to 0, which hides the font, unclear why.
@@ -354,13 +354,6 @@
354
354
  --mdc-outlined-text-field-caret-color: var(--md-sys-color-inverse-on-surface) !important;
355
355
  }
356
356
  }
357
-
358
- /***************************************************************************
359
- Fixes mysterious rare formfield bug where beginning of placeholder text is partially cut off
360
- **************************************************************************/
361
- .mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper {
362
- --mat-mdc-form-field-label-offset-x: -14px;
363
- }
364
357
  }
365
358
 
366
359
  @function calc-side-paddings($density) {