@patternfly/patternfly 6.0.0-prerelease.2 → 6.0.0-prerelease.4

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.
Files changed (34) hide show
  1. package/assets/fontawesome/_animated.scss +1 -1
  2. package/assets/fontawesome/_bordered-pulled.scss +1 -1
  3. package/assets/fontawesome/_fixed-width.scss +4 -2
  4. package/assets/fontawesome/_icons.scss +1332 -1330
  5. package/assets/fontawesome/_index.scss +0 -1
  6. package/assets/fontawesome/_larger.scss +1 -1
  7. package/assets/fontawesome/_list.scss +1 -1
  8. package/assets/fontawesome/_rotated-flipped.scss +2 -2
  9. package/assets/fontawesome/_screen-reader.scss +1 -1
  10. package/assets/fontawesome/_stacked.scss +1 -1
  11. package/assets/fontawesome/_variables.scss +1 -2
  12. package/base/patternfly-common.scss +2 -1
  13. package/base/patternfly-fa-icons.css +2786 -1419
  14. package/base/patternfly-fa-icons.scss +25 -7
  15. package/base/patternfly-pf-icons.scss +1 -1
  16. package/components/Button/button.css +2 -2
  17. package/components/Button/button.scss +2 -3
  18. package/components/ClipboardCopy/clipboard-copy.css +0 -3
  19. package/components/ClipboardCopy/clipboard-copy.scss +0 -4
  20. package/components/_index.css +2 -5
  21. package/package.json +5 -5
  22. package/patternfly-base-no-globals.css +2786 -1419
  23. package/patternfly-base.css +2786 -1419
  24. package/patternfly-no-globals.css +2788 -1424
  25. package/patternfly.css +2788 -1424
  26. package/patternfly.min.css +1 -1
  27. package/patternfly.min.css.map +1 -1
  28. package/patternfly.scss +3 -0
  29. package/sass-utilities/functions.scss +2 -2
  30. package/sass-utilities/mixins.scss +3 -3
  31. package/sass-utilities/namespaces-components.scss +2 -2
  32. package/sass-utilities/namespaces-layouts.scss +2 -2
  33. package/sass-utilities/scss-variables.scss +0 -1
  34. package/assets/fontawesome/_core.scss +0 -22
@@ -1,6 +1,5 @@
1
1
  @forward 'variables';
2
2
  @forward 'mixins';
3
- @forward 'core';
4
3
  @forward 'larger';
5
4
  @forward 'fixed-width';
6
5
  @forward 'list';
@@ -1,6 +1,6 @@
1
1
  // Icon sizes
2
2
  // -------------------------
3
- @use './variables.scss' as *;
3
+ @use './variables' as *;
4
4
  @use 'sass:math';
5
5
 
6
6
  // makes the font 33% larger relative to the icon container
@@ -1,6 +1,6 @@
1
1
  // List icons
2
2
  // -------------------------
3
- @use './variables.scss' as *;
3
+ @use './variables' as *;
4
4
  @use 'sass:math';
5
5
 
6
6
  .#{$fa-css-prefix}-ul {
@@ -1,7 +1,7 @@
1
1
  // Rotated & flipped icons
2
2
  // -------------------------
3
- @use './variables.scss' as *;
4
- @use './mixins.scss' as *;
3
+ @use './variables' as *;
4
+ @use './mixins' as *;
5
5
 
6
6
  .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
7
7
  .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
@@ -1,6 +1,6 @@
1
1
  // Screen readers
2
2
  // -------------------------
3
- @use './mixins.scss' as *;
3
+ @use './mixins' as *;
4
4
 
5
5
  .sr-only { @include sr-only; }
6
6
  .sr-only-focusable { @include sr-only-focusable; }
@@ -1,6 +1,6 @@
1
1
  // Stacked icons
2
2
  // -------------------------
3
- @use './variables.scss' as *;
3
+ @use './variables' as *;
4
4
  @use 'sass:math';
5
5
 
6
6
  .#{$fa-css-prefix}-stack {
@@ -2,7 +2,6 @@
2
2
  // --------------------------
3
3
  @use 'sass:math';
4
4
 
5
- $fa-font-path: "../webfonts" !default;
6
5
  $fa-font-size-base: 16px !default;
7
6
  $fa-css-prefix: 'fa' !default;
8
7
  $fa-version: "5.6.3" !default;
@@ -10,7 +9,7 @@ $fa-border-color: #eee !default;
10
9
  $fa-inverse: #fff !default;
11
10
  $fa-li-width: 2em !default;
12
11
  $fa-fw-width: math.div(20em, 16);
13
-
12
+ $pf-v6-global--disable-fontawesome: false !default;
14
13
  // Convenience function used to set content property
15
14
  @function fa-content($fa-var) {
16
15
  @return unquote("\"#{ $fa-var }\"");
@@ -1,4 +1,5 @@
1
1
  @use '../sass-utilities' as *;
2
+ @use '../assets/fontawesome/variables' as *;
2
3
 
3
4
  .#{$pf-prefix}screen-reader {
4
5
  @include pf-v6-u-screen-reader; // for use with assistive technologies
@@ -63,6 +64,6 @@
63
64
  --pf-t--global--duration--200: 0ms !important;
64
65
  --pf-t--global--duration--100: 0ms !important;
65
66
  --pf-t--global--duration--50: 0ms !important;
66
-
67
+
67
68
  // stylelink-enable declaration-no-important
68
69
  }