@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.
- package/components/Divider/divider.css +42 -42
- package/components/Label/label.css +14 -0
- package/components/Label/label.scss +19 -0
- package/components/Masthead/masthead.css +70 -70
- package/components/Pagination/pagination.css +30 -30
- package/components/Tabs/tabs.css +90 -90
- package/components/Toolbar/toolbar.css +288 -288
- package/docs/components/Label/examples/Label.md +1781 -56
- package/docs/layouts/Bullseye/examples/Bullseye.css +4 -4
- package/docs/layouts/Flex/examples/Flex.css +4 -4
- package/docs/layouts/Flex/examples/Flex.md +50 -50
- package/docs/layouts/Gallery/examples/Gallery.css +4 -4
- package/docs/layouts/Gallery/examples/Gallery.md +6 -6
- package/docs/layouts/Grid/examples/Grid.css +3 -3
- package/docs/layouts/Grid/examples/Grid.md +33 -33
- package/docs/layouts/Level/examples/Level.css +5 -5
- package/docs/layouts/Split/examples/Split.css +4 -4
- package/docs/layouts/Stack/examples/Stack.css +5 -5
- package/layouts/Bullseye/bullseye.css +5 -1
- package/layouts/Bullseye/bullseye.scss +4 -1
- package/layouts/Flex/flex.css +207 -203
- package/layouts/Flex/flex.scss +34 -31
- package/layouts/Gallery/gallery.css +6 -2
- package/layouts/Gallery/gallery.scss +8 -5
- package/layouts/Grid/grid.css +6 -2
- package/layouts/Grid/grid.scss +7 -4
- package/layouts/Level/level.css +5 -1
- package/layouts/Level/level.scss +5 -2
- package/layouts/Split/split.css +5 -1
- package/layouts/Split/split.scss +5 -2
- package/layouts/Stack/stack.css +5 -1
- package/layouts/Stack/stack.scss +5 -2
- package/package.json +1 -1
- package/patternfly-addons.css +672 -672
- package/patternfly-no-globals.css +773 -731
- package/patternfly-theme-dark-unversioned.css +773 -731
- package/patternfly.css +773 -731
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/functions.scss +3 -3
- package/sass-utilities/scss-variables.scss +9 -9
- package/utilities/Spacing/spacing.css +672 -672
- package/utilities/Spacing/spacing.scss +1 -1
|
@@ -83,13 +83,13 @@
|
|
|
83
83
|
|
|
84
84
|
|
|
85
85
|
// Build spacer map
|
|
86
|
-
// Based on $pf-
|
|
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-
|
|
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-
|
|
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-
|
|
313
|
+
$pf-v6-global--spacer-map: (
|
|
314
314
|
"auto": "auto",
|
|
315
315
|
"0": 0,
|
|
316
|
-
"xs": "var(
|
|
317
|
-
"sm": "var(
|
|
318
|
-
"md": "var(
|
|
319
|
-
"lg": "var(
|
|
320
|
-
"xl": "var(
|
|
321
|
-
"2xl": "var(
|
|
322
|
-
"3xl": "var(
|
|
323
|
-
"4xl": "var(
|
|
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
|
);
|