@yuuvis/material 2.1.27 → 2.1.29

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": "@yuuvis/material",
3
- "version": "2.1.27",
3
+ "version": "2.1.29",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.1",
6
6
  "@angular/core": "^19.2.1",
@@ -0,0 +1,8 @@
1
+ fieldset {
2
+ all:unset;
3
+ display: block;
4
+ }
5
+
6
+ legend {
7
+ all:unset;
8
+ }
@@ -2,6 +2,7 @@
2
2
  @forward 'body';
3
3
  @forward 'bidirectonal-layout';
4
4
  @forward 'text';
5
+ @forward 'fieldset';
5
6
  @forward 'focus';
6
7
  @forward 'text-selection';
7
8
  @forward 'scrollbar';
@@ -168,4 +168,15 @@
168
168
  container-color: light-dark(rgb(from var(--mat-sys-inverse-surface) r g b / 0.9), rgb(from var(--mat-sys-inverse-surface) r g b / 0.95))
169
169
  )
170
170
  );
171
+
172
+ /*Tables*/
173
+ @include mat.table-overrides((
174
+ 'row-item-outline-color': t.use-token(outline-variant),
175
+ 'header-headline-font': t.use-token(font-title-smallest-font),
176
+ 'header-headline-size': t.use-token(font-title-smallest-size),
177
+ 'header-headline-tracking': t.use-token(font-title-smallest-tracking),
178
+ 'header-headline-weight': t.use-token(font-title-smallest-weight),
179
+ 'header-container-height': t.use-token(sizing-3xl),
180
+ 'row-item-container-height': t.use-token(sizing-3xl)
181
+ ));
171
182
  }