@tylertech/forge 2.3.0 → 2.4.0
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 +1 -1
- package/styles/theme/_theme.scss +2 -1
package/package.json
CHANGED
package/styles/theme/_theme.scss
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
@use '@material/theme/theme-color' as mdc-theme-color;
|
|
10
10
|
@use '@material/theme/replace';
|
|
11
11
|
@use '@material/theme/keys' as mdc-keys;
|
|
12
|
+
@use '@material/elevation/elevation-theme' as elevation-theme;
|
|
12
13
|
@use './custom-properties';
|
|
13
14
|
@use './keys';
|
|
14
15
|
@use './theme-values';
|
|
@@ -256,7 +257,7 @@
|
|
|
256
257
|
@return #{$umbra-z-value} #{$umbra-color}, #{$penumbra-z-value} #{$penumbra-color}, #{$ambient-z-value} #{$ambient-color};
|
|
257
258
|
}
|
|
258
259
|
|
|
259
|
-
@mixin shadow($z-value, $color:
|
|
260
|
+
@mixin shadow($z-value, $color: elevation-theme.$baseline-color, $opacity-boost: 0) {
|
|
260
261
|
box-shadow: elevation($z-value, $color, $opacity-boost);
|
|
261
262
|
}
|
|
262
263
|
|