@patternfly/patternfly 6.0.0 → 6.1.0-prerelease.2
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/CodeEditor/code-editor.css +15 -0
- package/components/CodeEditor/code-editor.scss +16 -1
- package/components/Page/page.css +5 -0
- package/components/Page/page.scss +6 -0
- package/components/Table/table-grid.css +12 -12
- package/components/Table/table-grid.scss +4 -4
- package/components/Table/table-tree-view.css +4 -4
- package/components/Table/table-tree-view.scss +4 -4
- package/components/_index.css +36 -16
- package/docs/components/CodeEditor/examples/CodeEditor.css +3 -0
- package/docs/components/CodeEditor/examples/CodeEditor.md +158 -7
- package/docs/components/InlineEdit/examples/InlineEdit.md +3 -18
- package/docs/components/MenuToggle/examples/MenuToggle.md +1193 -536
- package/docs/components/Table/examples/Table.md +466 -2524
- package/docs/components/Tile/{examples → deprecated}/Tile.md +1 -0
- package/docs/demos/Card/examples/Card.css +4 -0
- package/docs/demos/Card/examples/Card.md +13 -21
- package/docs/demos/DataList/examples/DataList.md +5 -30
- package/docs/demos/DescriptionList/examples/DescriptionList.md +5 -30
- package/docs/demos/Table/examples/Table.md +161 -924
- package/docs/demos/Tabs/examples/Tabs.md +6 -36
- package/docs/demos/Toolbar/examples/Toolbar.md +12 -72
- package/package.json +6 -6
- package/patternfly-no-globals.css +36 -16
- package/patternfly.css +36 -16
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/functions.scss +6 -0
- /package/docs/components/Tile/{examples → deprecated}/Tile.css +0 -0
|
@@ -21,6 +21,12 @@
|
|
|
21
21
|
@return math.div(pf-strip-unit($pxval), $base) * 1rem;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
|
+
// Return breakpoint for max-width
|
|
25
|
+
// Used in combination with min-width avoids 1px overlap
|
|
26
|
+
@function pf-v6-max-width-bp($breakpoint) {
|
|
27
|
+
@return calc($breakpoint - 1px);
|
|
28
|
+
}
|
|
29
|
+
|
|
24
30
|
// Return (width) breakpoint value if it exists
|
|
25
31
|
@function pf-breakpoint-value($breakpoint, $breakpoint-map: $pf-v6-global--breakpoint-name-map) {
|
|
26
32
|
$breakpoint-value: if(map-has-key($breakpoint-map, #{$breakpoint}), map-get($breakpoint-map, #{$breakpoint}), false);
|
|
File without changes
|