@patternfly/patternfly 6.0.0-alpha.105 → 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 (43) hide show
  1. package/components/Divider/divider.css +42 -42
  2. package/components/Label/label.css +14 -0
  3. package/components/Label/label.scss +19 -0
  4. package/components/Masthead/masthead.css +70 -70
  5. package/components/Pagination/pagination.css +30 -30
  6. package/components/Tabs/tabs.css +90 -90
  7. package/components/Toolbar/toolbar.css +288 -288
  8. package/docs/components/Label/examples/Label.md +1781 -56
  9. package/docs/layouts/Bullseye/examples/Bullseye.css +4 -4
  10. package/docs/layouts/Flex/examples/Flex.css +4 -4
  11. package/docs/layouts/Flex/examples/Flex.md +50 -50
  12. package/docs/layouts/Gallery/examples/Gallery.css +4 -4
  13. package/docs/layouts/Gallery/examples/Gallery.md +6 -6
  14. package/docs/layouts/Grid/examples/Grid.css +3 -3
  15. package/docs/layouts/Grid/examples/Grid.md +33 -33
  16. package/docs/layouts/Level/examples/Level.css +5 -5
  17. package/docs/layouts/Split/examples/Split.css +4 -4
  18. package/docs/layouts/Stack/examples/Stack.css +5 -5
  19. package/layouts/Bullseye/bullseye.css +5 -1
  20. package/layouts/Bullseye/bullseye.scss +4 -1
  21. package/layouts/Flex/flex.css +207 -203
  22. package/layouts/Flex/flex.scss +34 -31
  23. package/layouts/Gallery/gallery.css +6 -2
  24. package/layouts/Gallery/gallery.scss +8 -5
  25. package/layouts/Grid/grid.css +6 -2
  26. package/layouts/Grid/grid.scss +7 -4
  27. package/layouts/Level/level.css +5 -1
  28. package/layouts/Level/level.scss +5 -2
  29. package/layouts/Split/split.css +5 -1
  30. package/layouts/Split/split.scss +5 -2
  31. package/layouts/Stack/stack.css +5 -1
  32. package/layouts/Stack/stack.scss +5 -2
  33. package/package.json +1 -1
  34. package/patternfly-addons.css +672 -672
  35. package/patternfly-no-globals.css +773 -731
  36. package/patternfly-theme-dark-unversioned.css +773 -731
  37. package/patternfly.css +773 -731
  38. package/patternfly.min.css +1 -1
  39. package/patternfly.min.css.map +1 -1
  40. package/sass-utilities/functions.scss +3 -3
  41. package/sass-utilities/scss-variables.scss +9 -9
  42. package/utilities/Spacing/spacing.css +672 -672
  43. 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
  );