@patternfly/patternfly 6.5.0-prerelease.91 → 6.5.0-prerelease.92

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.
@@ -1,5 +1,5 @@
1
- @use '../../sass-utilities/init' as *;
1
+ @use '../../sass-utilities/' as *;
2
2
 
3
3
  @mixin pf-v6-tokens {
4
- --pf-t--global--background--image--default: var(--pf-t--global--background--image--felt--glass--dark, url("./assets/images/Felt-Bkg-Generic-Dark.svg"));
4
+ --pf-t--global--background--image--default: var(--pf-t--global--background--image--felt--glass--dark, url("#{$pf-v6-global--image-path}/Felt-Bkg-Generic-Dark.svg"));
5
5
  }
@@ -1,5 +1,5 @@
1
- @use '../../sass-utilities/init' as *;
1
+ @use '../../sass-utilities/' as *;
2
2
 
3
3
  @mixin pf-v6-tokens {
4
- --pf-t--global--background--image--default: var(--pf-t--global--background--image--felt--glass, url("./assets/images/Felt-Bkg-Generic-Light.svg"));
4
+ --pf-t--global--background--image--default: var(--pf-t--global--background--image--felt--glass, url("#{$pf-v6-global--image-path}/Felt-Bkg-Generic-Light.svg"));
5
5
  }
@@ -1,5 +1,5 @@
1
- @use '../../sass-utilities/init' as *;
1
+ @use '../../sass-utilities/' as *;
2
2
 
3
3
  @mixin pf-v6-tokens {
4
- --pf-t--global--background--image--default: var(--pf-t--global--background--image--glass--dark, url("./assets/images/PF-Bkg-Generic-Dark.svg"));
4
+ --pf-t--global--background--image--default: var(--pf-t--global--background--image--glass--dark, url("#{$pf-v6-global--image-path}/PF-Bkg-Generic-Dark.svg"));
5
5
  }
@@ -1,6 +1,6 @@
1
- @use '../../sass-utilities/init' as *;
1
+ @use '../../sass-utilities/' as *;
2
2
 
3
3
  @mixin pf-v6-tokens {
4
- --pf-t--global--background--image--default: var(--pf-t--global--background--image--glass, url("./assets/images/PF-Bkg-Generic-Light.svg"));
4
+ --pf-t--global--background--image--default: var(--pf-t--global--background--image--glass, url("#{$pf-v6-global--image-path}/PF-Bkg-Generic-Light.svg"));
5
5
  --pf-t--global--box-shadow--glass--default: var(--pf-t--global--box-shadow--md);
6
6
  }
@@ -1,4 +1,4 @@
1
- @use '../../sass-utilities/init' as *;
1
+ @use '../../sass-utilities/' as *;
2
2
 
3
3
  // LOCAL TOKENS
4
4
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@patternfly/patternfly",
3
3
  "description": "Assets, source, tooling, and content for PatternFly 4",
4
- "version": "6.5.0-prerelease.91",
4
+ "version": "6.5.0-prerelease.92",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -25,6 +25,9 @@ $fa-font-path: "./assets/fonts/webfonts" !default;
25
25
  // FontIcon path
26
26
  $pf-v6-global--fonticon-path: "./assets/pficon" !default;
27
27
 
28
+ // Image path
29
+ $pf-v6-global--image-path: "./assets/images" !default;
30
+
28
31
  // Grid breakpoints
29
32
  // Note that these duplicate and should match breakpoint tokens
30
33
  $pf-v6-global--breakpoint--xs: 0 !default;