@patternfly/patternfly 6.0.0-alpha.106 → 6.0.0-alpha.107

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 (40) hide show
  1. package/components/Divider/divider.css +42 -42
  2. package/components/Masthead/masthead.css +70 -70
  3. package/components/Pagination/pagination.css +30 -30
  4. package/components/Tabs/tabs.css +90 -90
  5. package/components/Toolbar/toolbar.css +288 -288
  6. package/docs/layouts/Bullseye/examples/Bullseye.css +4 -4
  7. package/docs/layouts/Flex/examples/Flex.css +4 -4
  8. package/docs/layouts/Flex/examples/Flex.md +50 -50
  9. package/docs/layouts/Gallery/examples/Gallery.css +4 -4
  10. package/docs/layouts/Gallery/examples/Gallery.md +6 -6
  11. package/docs/layouts/Grid/examples/Grid.css +3 -3
  12. package/docs/layouts/Grid/examples/Grid.md +33 -33
  13. package/docs/layouts/Level/examples/Level.css +5 -5
  14. package/docs/layouts/Split/examples/Split.css +4 -4
  15. package/docs/layouts/Stack/examples/Stack.css +5 -5
  16. package/layouts/Bullseye/bullseye.css +5 -1
  17. package/layouts/Bullseye/bullseye.scss +4 -1
  18. package/layouts/Flex/flex.css +207 -203
  19. package/layouts/Flex/flex.scss +34 -31
  20. package/layouts/Gallery/gallery.css +6 -2
  21. package/layouts/Gallery/gallery.scss +8 -5
  22. package/layouts/Grid/grid.css +6 -2
  23. package/layouts/Grid/grid.scss +7 -4
  24. package/layouts/Level/level.css +5 -1
  25. package/layouts/Level/level.scss +5 -2
  26. package/layouts/Split/split.css +5 -1
  27. package/layouts/Split/split.scss +5 -2
  28. package/layouts/Stack/stack.css +5 -1
  29. package/layouts/Stack/stack.scss +5 -2
  30. package/package.json +1 -1
  31. package/patternfly-addons.css +672 -672
  32. package/patternfly-no-globals.css +759 -731
  33. package/patternfly-theme-dark-unversioned.css +759 -731
  34. package/patternfly.css +759 -731
  35. package/patternfly.min.css +1 -1
  36. package/patternfly.min.css.map +1 -1
  37. package/sass-utilities/functions.scss +3 -3
  38. package/sass-utilities/scss-variables.scss +9 -9
  39. package/utilities/Spacing/spacing.css +672 -672
  40. package/utilities/Spacing/spacing.scss +1 -1
@@ -83,13 +83,13 @@
83
83
 
84
84
 
85
85
  // Build spacer map
86
- // Based on $pf-v5-global--spacer-map
86
+ // Based on $pf-v6-global--spacer-map
87
87
  @function build-spacer-map($map-items...) {
88
88
  $map: ();
89
89
 
90
90
  @if length($map-items) == 0 {
91
91
  $map: ("none": 0);
92
- $map: map-merge($map, $pf-v5-global--spacer-map);
92
+ $map: map-merge($map, $pf-v6-global--spacer-map);
93
93
  $map: map-remove($map, "auto", "0");
94
94
  }
95
95
 
@@ -97,7 +97,7 @@
97
97
  @if $spacer == "none" {
98
98
  $map: map-merge($map, ($spacer: 0));
99
99
  } @else {
100
- $map: map-merge($map, ($spacer: map-get($pf-v5-global--spacer-map, #{$spacer})));
100
+ $map: map-merge($map, ($spacer: map-get($pf-v6-global--spacer-map, #{$spacer})));
101
101
  }
102
102
  }
103
103
 
@@ -310,15 +310,15 @@ $pf-v5-global--spacer-properties-map: (
310
310
  );
311
311
 
312
312
  // Spacer values
313
- $pf-v5-global--spacer-map: (
313
+ $pf-v6-global--spacer-map: (
314
314
  "auto": "auto",
315
315
  "0": 0,
316
- "xs": "var(--#{$pf-global}--spacer--xs)",
317
- "sm": "var(--#{$pf-global}--spacer--sm)",
318
- "md": "var(--#{$pf-global}--spacer--md)",
319
- "lg": "var(--#{$pf-global}--spacer--lg)",
320
- "xl": "var(--#{$pf-global}--spacer--xl)",
321
- "2xl": "var(--#{$pf-global}--spacer--2xl)",
322
- "3xl": "var(--#{$pf-global}--spacer--3xl)",
323
- "4xl": "var(--#{$pf-global}--spacer--4xl)"
316
+ "xs": "var(--pf-t--global--spacer--xs)",
317
+ "sm": "var(--pf-t--global--spacer--sm)",
318
+ "md": "var(--pf-t--global--spacer--md)",
319
+ "lg": "var(--pf-t--global--spacer--lg)",
320
+ "xl": "var(--pf-t--global--spacer--xl)",
321
+ "2xl": "var(--pf-t--global--spacer--2xl)",
322
+ "3xl": "var(--pf-t--global--spacer--3xl)",
323
+ "4xl": "var(--pf-t--global--spacer--4xl)"
324
324
  );