Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Label) add option to make label clickable #9284

Merged
merged 5 commits into from
Sep 21, 2023

Conversation

Dominik-Petrik
Copy link
Contributor

What: Closes #8665

I used onLabelClick instead of onClick as a prop name because of name conflict. I think maybe a better prop name could be used but I am not sure what it should be.

@Dominik-Petrik
Copy link
Contributor Author

One more thought that popped up is maybe we want to differentiate visually between clickable and link labels, so the user can expect what happens on clicking a label.

@mmenestr
Copy link
Collaborator

I don't know that we ever recommend using labels as links. Do you know of any product doing this?

@patternfly-build
Copy link
Contributor

patternfly-build commented Jun 21, 2023

Copy link
Contributor

@mcoker mcoker left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM! Just one nit about needing an explicit type="button" on the <button> element

@@ -254,7 +257,9 @@ export const Label: React.FunctionComponent<LabelProps> = ({
};

let labelComponentChild = (
<LabelComponentChildElement {...labelComponentChildProps}>{content}</LabelComponentChildElement>
<LabelComponentChildElement onClick={onLabelClick} {...labelComponentChildProps}>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is going to need type="button" if it's a <button>, since a button's default type is "submit", which will submit a form if it's placed in a form and you click on it.

@mcoker
Copy link
Contributor

mcoker commented Jun 21, 2023

@mmenestr from the original issue when the feature was added, the main use case was for labels as links. Some info in the issue - patternfly/patternfly#2656 (comment), and in the PR - patternfly/patternfly#2943 (comment)

cc @mcarrano

@Dominik-Petrik
Copy link
Contributor Author

I don't know that we ever recommend using labels as links. Do you know of any product doing this?

@mmenestr It seems like we kinda recommend using labels as links in our design guidelines here. I am not aware of any product that uses them right now.

@Dominik-Petrik Dominik-Petrik requested a review from mcoker June 21, 2023 08:47
Copy link
Member

@mcarrano mcarrano left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Dominik-Petrik @mmenestr Unfortunately I can't recall why we decided that labels could be used for links but not as buttons. It may have been that there was a use case to click on a label to reveal more information. But I case also see the case for clicking a label to apply a filter, for example. @maryshak1996 looks like you worked on this 3 years ago. Do you have any memory of this?

I do think that allowing for either a link or a button action makes sense, especially since the design guidelines seem to support that. Whether there needs to be a visual difference, I'm not sure. We could underline the text on hover for links but the distinction might not be important to users IMO. @andrew-ronaldson would also be interested to hear your thoughts.

@mmenestr
Copy link
Collaborator

Oh, you're right @Dominik-Petrik I guess I was thinking we shouldn't use labels for external links - I think that would be weird. But it's true that there are other types of links.

Idk that we need to differentiate between the two. We had done a study a while ago (though not on labels) about whether users care to have different styles for different actions/link types, and the conclusion was basically that it didn't really matter as long as it was clear that the thing was clickable. In other words, whether it's a blue link, or a underlined link or some other visual styling didn't matter to users, even if the actions differed.

@Dominik-Petrik
Copy link
Contributor Author

Cool, thanks for clarification!

Copy link
Contributor

@thatblindgeye thatblindgeye left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we also provide a console warning for if both isOverflowLabel and onLabelClick are passed? Doing so causes a button to render inside a button which isn't valid.

There might be other combinations of props that would be good to have a console warning for as well, but we can open a followup if necessary

<LabelComponentChildElement {...labelComponentChildProps}>{content}</LabelComponentChildElement>
<LabelComponentChildElement
type={LabelComponentChildElement === 'button' ? 'button' : undefined}
onClick={onLabelClick}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It could make sense to only pass on onLabelClick if the LabelComponentChildElement === 'button', as we probably don't want to allow a label to both trigger an action on click and redirect a user to another page. That would also mean updating prop descriptions to mention not using href if onLabelClick is passed and vice versa

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Also I think having this logic as part of the labelComponentChildProps definition would be a bit cleaner of an approach.

@@ -59,6 +59,8 @@ export interface LabelProps extends React.HTMLProps<HTMLSpanElement> {
href?: string;
/** Flag indicating if the label is an overflow label */
isOverflowLabel?: boolean;
/** On click callback. If present, label will be clickable. */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: "Callback for when the label is clicked." We could omit the "label will be clickable" portion I think,

Or per my above comment, "Callback for when the label is clicked. This should not be passed in if the href prop is also passed in." (the href prop could just have "This should not be passed in if the onLabelClick prop is also passed in."

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Copy link
Contributor

@wise-king-sullyman wise-king-sullyman Aug 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 from me as well. Also what name conflict forces us to not use onClick as the prop name? I think that's the prop name I would expect for this as a consumer.

Copy link
Contributor

@mcoker mcoker left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🚀

<LabelComponentChildElement {...labelComponentChildProps}>{content}</LabelComponentChildElement>
<LabelComponentChildElement
type={LabelComponentChildElement === 'button' ? 'button' : undefined}
onClick={onLabelClick}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Also I think having this logic as part of the labelComponentChildProps definition would be a bit cleaner of an approach.

@@ -109,4 +109,25 @@ describe('Label', () => {
expect(screen.queryByRole('button', { name: 'Something' })).toBeNull();
expect(asFragment()).toMatchSnapshot();
});

test('clickable label', () => {
Copy link
Contributor

@wise-king-sullyman wise-king-sullyman Aug 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you edit this test name to be a bit more descriptive? I.e. "a button is rendered when x is passed" or something along those lines.

Also I would like to see some "negative" tests here that assert things work as we expect in the opposite cases. For instance that your screen.getByRole(button) isn't visible (actually I think you would have to just assert that it's .not.toBeInTheDocument() IIRC) when onLabelClick isn't passed, and that the callback isn't called when it's passed but the label isn't clicked.

Copy link
Collaborator

@andrew-ronaldson andrew-ronaldson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

@wise-king-sullyman
Copy link
Contributor

I'll try to get this updated so that we can get it into this release.

Copy link
Contributor

@thatblindgeye thatblindgeye left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we're now passing the onClick prop in different places depending on if other props are passed, isOverflowLabel and onClick should now both be valid to pass in together, otherwise the LabelGroup code would technically be invalid since we're passing both props into an overflow label:

{numChildren > numLabels && (
<li className={css(styles.labelGroupListItem)}>
<Label
isOverflowLabel
onClick={this.toggleCollapse}
className={css(isCompact && labelStyles.modifiers.compact)}
>
{isOpen ? expandedText : collapsedTextResult}
</Label>
</li>
)}

href?: string;
/** Flag indicating if the label is an overflow label */
/** Flag indicating if the label is an overflow label. This should not be passed in if the onClick prop is also passed in. */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be reverted now

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great catch on these

isOverflowLabel?: boolean;
/** Callback for when the label is clicked. This should not be passed in if the href or isOverflowLabel props are also passed in. */
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/** Callback for when the label is clicked. This should not be passed in if the href or isOverflowLabel props are also passed in. */
/** Callback for when the label is clicked. This should not be passed in if the href prop is also passed in. */

Copy link
Contributor

@wise-king-sullyman wise-king-sullyman Sep 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should probably be changed to or isEditable prop right?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh yep, should be a swap instead of a removal

Comment on lines 125 to 130
if (onLabelClick && isOverflowLabel) {
// eslint-disable-next-line no-console
console.warn(
'Overflow labels cannot have onClick passed, this results in invalid HTML. Please remove either the isOverflowLabel or onClick prop.'
);
} else if (onLabelClick && href) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can remove the first if block/mentions of isOverflowLabel from this useEffect

Copy link
Contributor

@tlabaj tlabaj left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@gitdallas
Copy link
Contributor

There are ways to create mutually exclusive properties in types, although I'm not sure we'd want to go that way and how it might make the doc generation look.

@tlabaj tlabaj merged commit 0f8ac62 into patternfly:main Sep 21, 2023
10 checks passed
nicolethoen added a commit that referenced this pull request Sep 28, 2023
* refactor(SliderStep): use token instead for hardcoded value (#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (#9578)

* fix(misc): fixed broken CodeSandbox demos (#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (#9614)

* docs(tabs): Clean up React documentation content. (#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
tlabaj added a commit to tlabaj/patternfly-react that referenced this pull request Oct 3, 2023
* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
wise-king-sullyman added a commit that referenced this pull request Oct 6, 2023
* refactor(SliderStep): use token instead for hardcoded value (#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (#9578)

* fix(misc): fixed broken CodeSandbox demos (#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (#9614)

* docs(tabs): Clean up React documentation content. (#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* Revert "chore(deps): update dependency ts-patch to v3 (#9271)" (#9701)

This reverts commit 03985a2.

* chore(release): releasing packages [ci skip]

 - @patternfly/react-docs@6.1.1-prerelease.24

* fix: white space change to trigger new prereleases [skip-a11y]

* fix: whitespace changes to trigger prereleases (#9702)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.10
 - @patternfly/react-code-editor@5.1.1-prerelease.23
 - @patternfly/react-core@5.1.1-prerelease.23
 - @patternfly/react-docs@6.1.1-prerelease.25
 - @patternfly/react-icons@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.22
 - @patternfly/react-styles@5.1.1-prerelease.8
 - @patternfly/react-table@5.1.1-prerelease.23
 - @patternfly/react-tokens@5.1.1-prerelease.8

* fix: Release alphas from v6 and rebase from main (#9692)

* refactor(SliderStep): use token instead for hardcoded value (#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (#9578)

* fix(misc): fixed broken CodeSandbox demos (#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (#9614)

* docs(tabs): Clean up React documentation content. (#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>

* fix: whitespace change to try out dryrun

* fix: remove --no-private with dryrun [skip-a11y]

* fix: turn off dry run and release alphas [skip-a11y]

* chore(release): releasing packages [ci skip]

 - eslint-plugin-patternfly-react@6.0.0-alpha.1
 - @patternfly/react-charts@8.0.0-alpha.1
 - @patternfly/react-code-editor@6.0.0-alpha.1
 - @patternfly/react-core@6.0.0-alpha.1
 - @patternfly/react-docs@7.0.0-alpha.1
 - @patternfly/react-icons@6.0.0-alpha.1
 - @patternfly/react-integration@6.0.0-alpha.1
 - demo-app-ts@5.1.1-alpha.0
 - @patternfly/react-styles@6.0.0-alpha.1
 - @patternfly/react-table@6.0.0-alpha.1
 - @patternfly/react-tokens@6.0.0-alpha.1

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>
tlabaj added a commit to tlabaj/patternfly-react that referenced this pull request Oct 31, 2023
* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
tlabaj added a commit to tlabaj/patternfly-react that referenced this pull request Oct 31, 2023
* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* Revert "chore(deps): update dependency ts-patch to v3 (patternfly#9271)" (patternfly#9701)

This reverts commit 03985a2.

* chore(release): releasing packages [ci skip]

 - @patternfly/react-docs@6.1.1-prerelease.24

* fix: white space change to trigger new prereleases [skip-a11y]

* fix: whitespace changes to trigger prereleases (patternfly#9702)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.10
 - @patternfly/react-code-editor@5.1.1-prerelease.23
 - @patternfly/react-core@5.1.1-prerelease.23
 - @patternfly/react-docs@6.1.1-prerelease.25
 - @patternfly/react-icons@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.22
 - @patternfly/react-styles@5.1.1-prerelease.8
 - @patternfly/react-table@5.1.1-prerelease.23
 - @patternfly/react-tokens@5.1.1-prerelease.8

* fix: Release alphas from v6 and rebase from main (patternfly#9692)

* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>

* fix: whitespace change to try out dryrun

* fix: remove --no-private with dryrun [skip-a11y]

* fix: turn off dry run and release alphas [skip-a11y]

* chore(release): releasing packages [ci skip]

 - eslint-plugin-patternfly-react@6.0.0-alpha.1
 - @patternfly/react-charts@8.0.0-alpha.1
 - @patternfly/react-code-editor@6.0.0-alpha.1
 - @patternfly/react-core@6.0.0-alpha.1
 - @patternfly/react-docs@7.0.0-alpha.1
 - @patternfly/react-icons@6.0.0-alpha.1
 - @patternfly/react-integration@6.0.0-alpha.1
 - demo-app-ts@5.1.1-alpha.0
 - @patternfly/react-styles@6.0.0-alpha.1
 - @patternfly/react-table@6.0.0-alpha.1
 - @patternfly/react-tokens@6.0.0-alpha.1

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>
tlabaj added a commit to tlabaj/patternfly-react that referenced this pull request Oct 31, 2023
* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
tlabaj added a commit to tlabaj/patternfly-react that referenced this pull request Oct 31, 2023
* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* Revert "chore(deps): update dependency ts-patch to v3 (patternfly#9271)" (patternfly#9701)

This reverts commit 03985a2.

* chore(release): releasing packages [ci skip]

 - @patternfly/react-docs@6.1.1-prerelease.24

* fix: white space change to trigger new prereleases [skip-a11y]

* fix: whitespace changes to trigger prereleases (patternfly#9702)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.10
 - @patternfly/react-code-editor@5.1.1-prerelease.23
 - @patternfly/react-core@5.1.1-prerelease.23
 - @patternfly/react-docs@6.1.1-prerelease.25
 - @patternfly/react-icons@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.22
 - @patternfly/react-styles@5.1.1-prerelease.8
 - @patternfly/react-table@5.1.1-prerelease.23
 - @patternfly/react-tokens@5.1.1-prerelease.8

* fix: Release alphas from v6 and rebase from main (patternfly#9692)

* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>

* fix: whitespace change to try out dryrun

* fix: remove --no-private with dryrun [skip-a11y]

* fix: turn off dry run and release alphas [skip-a11y]

* chore(release): releasing packages [ci skip]

 - eslint-plugin-patternfly-react@6.0.0-alpha.1
 - @patternfly/react-charts@8.0.0-alpha.1
 - @patternfly/react-code-editor@6.0.0-alpha.1
 - @patternfly/react-core@6.0.0-alpha.1
 - @patternfly/react-docs@7.0.0-alpha.1
 - @patternfly/react-icons@6.0.0-alpha.1
 - @patternfly/react-integration@6.0.0-alpha.1
 - demo-app-ts@5.1.1-alpha.0
 - @patternfly/react-styles@6.0.0-alpha.1
 - @patternfly/react-table@6.0.0-alpha.1
 - @patternfly/react-tokens@6.0.0-alpha.1

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>
tlabaj added a commit to tlabaj/patternfly-react that referenced this pull request Nov 1, 2023
* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
tlabaj added a commit to tlabaj/patternfly-react that referenced this pull request Nov 1, 2023
* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* Revert "chore(deps): update dependency ts-patch to v3 (patternfly#9271)" (patternfly#9701)

This reverts commit 03985a2.

* chore(release): releasing packages [ci skip]

 - @patternfly/react-docs@6.1.1-prerelease.24

* fix: white space change to trigger new prereleases [skip-a11y]

* fix: whitespace changes to trigger prereleases (patternfly#9702)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.10
 - @patternfly/react-code-editor@5.1.1-prerelease.23
 - @patternfly/react-core@5.1.1-prerelease.23
 - @patternfly/react-docs@6.1.1-prerelease.25
 - @patternfly/react-icons@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.22
 - @patternfly/react-styles@5.1.1-prerelease.8
 - @patternfly/react-table@5.1.1-prerelease.23
 - @patternfly/react-tokens@5.1.1-prerelease.8

* fix: Release alphas from v6 and rebase from main (patternfly#9692)

* refactor(SliderStep): use token instead for hardcoded value (patternfly#9651)

* feat(Drawer): Added start and end to position props, updated resizing to work with RTL (patternfly#9627)

* feat(Drawer): Added start and end to position props, updaed resizing to work with RTL

* update logic for newsize

* fix(Modal): Prevent duplicate ids within Modal (patternfly#9555)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.14
 - @patternfly/react-core@5.1.1-prerelease.14
 - @patternfly/react-docs@6.1.1-prerelease.15
 - @patternfly/react-integration@5.1.1-prerelease.8
 - demo-app-ts@5.1.1-prerelease.13
 - @patternfly/react-table@5.1.1-prerelease.14

* chore(Brand): update tests (patternfly#9543)

* chore(Brand): update tests

* add more tests

* add width test

* test updates

* feat(Select) - add appendTo to SelectPopperProps (patternfly#9578)

* fix(misc): fixed broken CodeSandbox demos (patternfly#9519)

* update import paths

* fix(table): update data imports to absolute

* fix remaining codesandbox demos

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.15
 - @patternfly/react-core@5.1.1-prerelease.15
 - @patternfly/react-docs@6.1.1-prerelease.16
 - demo-app-ts@5.1.1-prerelease.14
 - @patternfly/react-table@5.1.1-prerelease.15

* chore: update breadcrumb dropdown item arrow to work in RTL (patternfly#9603)

* chore: update breadcrumb dropdown item arrow to work in RTL

* chore: use icon with shouldMirrorRTL instead

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.16
 - @patternfly/react-core@5.1.1-prerelease.16
 - @patternfly/react-docs@6.1.1-prerelease.17
 - demo-app-ts@5.1.1-prerelease.15
 - @patternfly/react-table@5.1.1-prerelease.16

* fix(Slider): Updated slider to work in RTL.  (patternfly#9655)

* fix(Slider): Updred slider to work in RTL. Deprecated rightActions and leftActions props, added endActions and startActions props.

* fixes from comments

* docs(Toolbar): remove test example (patternfly#9614)

* docs(tabs): Clean up React documentation content. (patternfly#9606)

* docs(tabs):clean up React documentation content.

* Update packages/react-core/src/components/Tabs/examples/Tabs.md

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.17
 - @patternfly/react-core@5.1.1-prerelease.17
 - @patternfly/react-docs@6.1.1-prerelease.18
 - demo-app-ts@5.1.1-prerelease.16
 - @patternfly/react-table@5.1.1-prerelease.17

* fix(popper): add start/end positioning with RTL support, update default (patternfly#9628)

* fix(popper): add start/end positioning with RTL support, update default

* ensure that getLanguageDirection only returns ltr or rtl

* fix(Popper): expanded types to include start/end; updated position value

* fix(Dropdown): Add appendTo to dropdownPopperProps interface (patternfly#9635)

* feat(Timestamp): allowed displayed datetime to be UTC (patternfly#9649)

* feat(Timestamp): allowed displayed datetime to be UTC

* Updated rendering of default UTC suffix

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.18
 - @patternfly/react-core@5.1.1-prerelease.18
 - @patternfly/react-docs@6.1.1-prerelease.19
 - demo-app-ts@5.1.1-prerelease.17
 - @patternfly/react-table@5.1.1-prerelease.18

* chore(deps): update dependency @patternfly/patternfly to v5.1.0-prerelease.32 (patternfly#9642)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* fix(Tabs): allow RTL scrolling (patternfly#9633)

* fix(Tabs): allow RTL scrolling

* add direction assignment to update

* update aria label descriptions

* add props and deprecate old, update internal state names

* update desc

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.8
 - @patternfly/react-code-editor@5.1.1-prerelease.19
 - @patternfly/react-core@5.1.1-prerelease.19
 - @patternfly/react-docs@6.1.1-prerelease.20
 - @patternfly/react-icons@5.1.1-prerelease.7
 - demo-app-ts@5.1.1-prerelease.18
 - @patternfly/react-styles@5.1.1-prerelease.7
 - @patternfly/react-table@5.1.1-prerelease.19
 - @patternfly/react-tokens@5.1.1-prerelease.7

* fix(Nav): allow RTL scrolling (patternfly#9637)

* fix(Nav): allow rtl scrolling

* add direction assignment to update

* update aria label descriptions

* add new props and deprecate old

* update desc

* update other test snaps

* chore(BackgroundImage): update tests (patternfly#9584)

* chore(BackgroundImage): update tests

* add spread prop test, update test

* use styles obj

* update test name to use styles

* feat(Label) add option to make label clickable (patternfly#9284)

* feat(Label) add option to make label clickable

* add type to label button

* chore(Label): Address misc PR feedback

* chore(Label): Remove mention of onClick being incompatible with overflow

* chore(Label): Remove prop from effect deps where it's no longer needed

---------

Co-authored-by: Austin Sullivan <ausulliv@redhat.com>

* feat(charts): add RTL legend support (patternfly#9570)

* feat(charts): add RTL legend support

* clone data/label components

* remove legend positions, add beta

* remove last position update

* update logic to account for text length

* update clones

* chore(release): releasing packages [ci skip]

 - @patternfly/react-charts@7.1.1-prerelease.9
 - @patternfly/react-code-editor@5.1.1-prerelease.20
 - @patternfly/react-core@5.1.1-prerelease.20
 - @patternfly/react-docs@6.1.1-prerelease.21
 - demo-app-ts@5.1.1-prerelease.19
 - @patternfly/react-table@5.1.1-prerelease.20

* fix(PrimaryDetail): remove primary detail card view require statement (patternfly#9661)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.21
 - @patternfly/react-core@5.1.1-prerelease.21
 - @patternfly/react-docs@6.1.1-prerelease.22
 - demo-app-ts@5.1.1-prerelease.20
 - @patternfly/react-table@5.1.1-prerelease.21

* fix(Draggable): dont disable droppable on false ondrag (patternfly#9646)

* chore(release): releasing packages [ci skip]

 - @patternfly/react-code-editor@5.1.1-prerelease.22
 - @patternfly/react-core@5.1.1-prerelease.22
 - @patternfly/react-docs@6.1.1-prerelease.23
 - demo-app-ts@5.1.1-prerelease.21
 - @patternfly/react-table@5.1.1-prerelease.22

* chore(screenshots): Updated screenshots (patternfly#9660)

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Titani Labaj <39532947+tlabaj@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>

* fix: whitespace change to try out dryrun

* fix: remove --no-private with dryrun [skip-a11y]

* fix: turn off dry run and release alphas [skip-a11y]

* chore(release): releasing packages [ci skip]

 - eslint-plugin-patternfly-react@6.0.0-alpha.1
 - @patternfly/react-charts@8.0.0-alpha.1
 - @patternfly/react-code-editor@6.0.0-alpha.1
 - @patternfly/react-core@6.0.0-alpha.1
 - @patternfly/react-docs@7.0.0-alpha.1
 - @patternfly/react-icons@6.0.0-alpha.1
 - @patternfly/react-integration@6.0.0-alpha.1
 - demo-app-ts@5.1.1-alpha.0
 - @patternfly/react-styles@6.0.0-alpha.1
 - @patternfly/react-table@6.0.0-alpha.1
 - @patternfly/react-tokens@6.0.0-alpha.1

---------

Co-authored-by: adamviktora <84135613+adamviktora@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: Maria <mariaaga@redhat.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Erin Donehoo <105813956+edonehoo@users.noreply.github.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Label - Make labels clickable