Skip to content

Commit 08b4d2e

Browse files
author
Eric Olkowski
committed
Bumped core versions
1 parent 41dfada commit 08b4d2e

File tree

9 files changed

+78
-11306
lines changed

9 files changed

+78
-11306
lines changed

packages/react-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"tslib": "^2.6.2"
5656
},
5757
"devDependencies": {
58-
"@patternfly/patternfly": "6.0.0-alpha.180",
58+
"@patternfly/patternfly": "6.0.0-alpha.187",
5959
"case-anything": "^2.1.13",
6060
"css": "^3.0.0",
6161
"fs-extra": "^11.2.0"

packages/react-core/src/components/Toolbar/ToolbarGroup.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,15 @@ class ToolbarGroupWithRef extends React.Component<ToolbarGroupProps> {
189189
<div
190190
className={css(
191191
styles.toolbarGroup,
192-
variant && styles.modifiers[toCamel(variant) as 'filterGroup' | 'iconButtonGroup'],
192+
variant &&
193+
styles.modifiers[
194+
toCamel(variant) as
195+
| 'filterGroup'
196+
| 'actionGroup'
197+
| 'actionGroupInline'
198+
| 'actionGroupPlain'
199+
| 'labelGroup'
200+
],
193201
formatBreakpointMods(visibility, styles, '', getBreakpoint(width)),
194202
formatBreakpointMods(align, styles, '', getBreakpoint(width)),
195203
formatBreakpointMods(gap, styles, '', getBreakpoint(width)),

packages/react-core/src/components/Toolbar/ToolbarLabelGroupContent.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class ToolbarLabelGroupContent extends React.Component<ToolbarLabelGroupContentP
7070

7171
const isHidden = numberOfFilters === 0 || isExpanded;
7272
const showNumberOfFilters = collapseListedFilters && numberOfFilters > 0 && !isExpanded;
73-
const showDefaultClearFilter = showClearFiltersButton && !isExpanded && !customChipGroupContent;
73+
const showDefaultClearFilter = showClearFiltersButton && !isExpanded && !customLabelGroupContent;
7474

7575
return (
7676
<div
@@ -84,17 +84,17 @@ class ToolbarLabelGroupContent extends React.Component<ToolbarLabelGroupContentP
8484
{...(collapseListedFilters && { hidden: true })}
8585
{...(collapseListedFilters && { 'aria-hidden': true })}
8686
/>
87-
{(showNumberOfFilters || showDefaultClearFilter || customChipGroupContent) && (
87+
{(showNumberOfFilters || showDefaultClearFilter || customLabelGroupContent) && (
8888
<ToolbarGroup variant="action-group-inline">
8989
{showNumberOfFilters && <ToolbarItem>{numberOfFiltersText(numberOfFilters)}</ToolbarItem>}
9090
{showDefaultClearFilter && (
9191
<ToolbarItem>
92-
<Button variant="link" onClick={clearChipGroups} isInline>
92+
<Button variant="link" onClick={clearLabelGroups} isInline>
9393
{clearFiltersButtonText}
9494
</Button>
9595
</ToolbarItem>
9696
)}
97-
{customChipGroupContent && customChipGroupContent}
97+
{customLabelGroupContent && customLabelGroupContent}
9898
</ToolbarGroup>
9999
)}
100100
</div>

packages/react-core/src/components/Toolbar/ToolbarToggleGroup.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,15 @@ class ToolbarToggleGroup extends React.Component<ToolbarToggleGroupProps> {
251251
className={css(
252252
styles.toolbarGroup,
253253
styles.modifiers.toggleGroup,
254-
variant && styles.modifiers[toCamel(variant) as 'filterGroup' | 'iconButtonGroup'],
254+
variant &&
255+
styles.modifiers[
256+
toCamel(variant) as
257+
| 'filterGroup'
258+
| 'actionGroup'
259+
| 'actionGroupInline'
260+
| 'actionGroupPlain'
261+
| 'labelGroup'
262+
],
255263
formatBreakpointMods(breakpointMod, styles, '', getBreakpoint(width)),
256264
formatBreakpointMods(visibility, styles, '', getBreakpoint(width)),
257265
formatBreakpointMods(gap, styles, '', getBreakpoint(width)),

packages/react-docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"test:a11y": "patternfly-a11y --config patternfly-a11y.config"
2424
},
2525
"dependencies": {
26-
"@patternfly/patternfly": "6.0.0-alpha.180",
26+
"@patternfly/patternfly": "6.0.0-alpha.187",
2727
"@patternfly/react-charts": "workspace:^",
2828
"@patternfly/react-code-editor": "workspace:^",
2929
"@patternfly/react-core": "workspace:^",

packages/react-icons/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@fortawesome/free-brands-svg-icons": "^5.15.4",
3434
"@fortawesome/free-regular-svg-icons": "^5.15.4",
3535
"@fortawesome/free-solid-svg-icons": "^5.15.4",
36-
"@patternfly/patternfly": "6.0.0-alpha.180",
36+
"@patternfly/patternfly": "6.0.0-alpha.187",
3737
"fs-extra": "^11.2.0",
3838
"tslib": "^2.6.2"
3939
},

packages/react-styles/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"clean": "rimraf dist css"
2020
},
2121
"devDependencies": {
22-
"@patternfly/patternfly": "6.0.0-alpha.180",
22+
"@patternfly/patternfly": "6.0.0-alpha.187",
2323
"change-case": "^5.4.4",
2424
"fs-extra": "^11.2.0"
2525
},

packages/react-tokens/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"clean": "rimraf dist"
3030
},
3131
"devDependencies": {
32-
"@patternfly/patternfly": "6.0.0-alpha.180",
32+
"@patternfly/patternfly": "6.0.0-alpha.187",
3333
"css": "^3.0.0",
3434
"fs-extra": "^11.2.0"
3535
}

0 commit comments

Comments
 (0)