@dontdrinkandroot/ngx-material-extensions 0.7.0 → 0.7.2
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/assets/_theme.scss +4 -1
- package/assets/fonts.scss +8 -13
- package/fesm2022/dontdrinkandroot-ngx-material-extensions.mjs +259 -368
- package/fesm2022/dontdrinkandroot-ngx-material-extensions.mjs.map +1 -1
- package/package.json +2 -1
- package/src/button/fab-fixed.directive.d.ts +3 -3
- package/src/ddr-material-extensions.module.d.ts +2 -22
- package/src/filter/filter.component.d.ts +6 -15
- package/src/gridlist/grid-tile-lazy-image-container.directive.d.ts +5 -5
- package/src/gridlist/grid-tile-lazy-img.directive.d.ts +3 -3
- package/src/sidenav/sidenav-container.component.d.ts +6 -11
- package/src/sidenav/sidenav-toggle.component.d.ts +5 -5
- package/src/sidenav/sidenav.service.d.ts +4 -5
- package/src/theme/theme-config.d.ts +2 -2
- package/src/theme/theme-scroll.service.d.ts +5 -5
- package/src/toolbar/toolbar-fixed-top.directive.d.ts +3 -3
package/assets/_theme.scss
CHANGED
|
@@ -10,6 +10,9 @@ $ddr-light-theme: mat.define-theme((
|
|
|
10
10
|
primary: $ddr-mat-primary,
|
|
11
11
|
tertiary: $ddr-mat-tertiary,
|
|
12
12
|
),
|
|
13
|
+
typography: (
|
|
14
|
+
plain-family: 'Roboto Flex Variable'
|
|
15
|
+
)
|
|
13
16
|
)) !default;
|
|
14
17
|
|
|
15
18
|
$ddr-dark-theme: mat.define-theme((
|
|
@@ -127,5 +130,5 @@ html, body {
|
|
|
127
130
|
|
|
128
131
|
body {
|
|
129
132
|
margin: 0;
|
|
130
|
-
font-family: Roboto,
|
|
133
|
+
font-family: 'Roboto Flex Variable', 'Helvetica Neue', sans-serif;
|
|
131
134
|
}
|
package/assets/fonts.scss
CHANGED
|
@@ -1,21 +1,16 @@
|
|
|
1
|
-
@import
|
|
2
|
-
@import "@fontsource/
|
|
3
|
-
@import "@fontsource/roboto/500.css";
|
|
4
|
-
@import "@fontsource/roboto/700.css";
|
|
5
|
-
@import "@fontsource/material-icons";
|
|
1
|
+
@import '@fontsource-variable/roboto-flex/full';
|
|
2
|
+
@import "@fontsource/material-symbols-rounded/400.css";
|
|
6
3
|
|
|
7
|
-
.material-
|
|
8
|
-
font-family:
|
|
4
|
+
.material-symbols-rounded {
|
|
5
|
+
font-family: "Material Symbols Rounded";
|
|
9
6
|
font-weight: normal;
|
|
10
7
|
font-style: normal;
|
|
11
|
-
font-size: 24px;
|
|
8
|
+
font-size: 24px; /* Preferred icon size */
|
|
9
|
+
display: inline-block;
|
|
12
10
|
line-height: 1;
|
|
13
|
-
letter-spacing: normal;
|
|
14
11
|
text-transform: none;
|
|
15
|
-
|
|
16
|
-
white-space: nowrap;
|
|
12
|
+
letter-spacing: normal;
|
|
17
13
|
word-wrap: normal;
|
|
14
|
+
white-space: nowrap;
|
|
18
15
|
direction: ltr;
|
|
19
|
-
-moz-font-feature-settings: 'liga';
|
|
20
|
-
-moz-osx-font-smoothing: grayscale;
|
|
21
16
|
}
|