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

chore(Brand): update tests #9543

Merged
merged 4 commits into from
Sep 21, 2023
Merged

Conversation

kmcfaul
Copy link
Contributor

@kmcfaul kmcfaul commented Aug 28, 2023

What: Closes #9526

Removed the describe and removed the snapshot test, instead testing the existence of the alt text. LMK if that is sufficient or if the snapshot would still be useful.

@patternfly-build
Copy link
Contributor

patternfly-build commented Aug 28, 2023

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.

Can we add test for the responsive behavior similar to what is done in SidebarPanel

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.

Can we also add tests for:

  • passing a custom className works
  • passing the src prop works

Comment on lines 11 to 32
test('passing children creates picture brand', () => {
render(
<Brand alt="brand">
<div>test</div>
</Brand>
);
expect(screen.getByText('test')).toBeInTheDocument();
});
Copy link
Contributor

Choose a reason for hiding this comment

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

This particular test should instead be testing "Renders children" instead of "passing children creates picture brand". We can also add another test that checks the img element is rendered when children are passed (could just do the same getByAltText as the first test)

From there, it'd probably make sense to also add a couple more tests to check that the proper tag is being rendered based on whether children are passed or not (either the img or picture tags). Not sure if this would make more sense as basic snapshot tests or checking for the tagName property. What do you think?

@kmcfaul
Copy link
Contributor Author

kmcfaul commented Sep 11, 2023

Added additional tests based on feedback.

Can we add test for the responsive behavior similar to what is done in SidebarPanel

Brand doesn't implement the widths property the same way as SidebarPanel - it doesn't apply modifier classes but sets a CSS variable in the style object which I'm having trouble checking with jest. @thatblindgeye Is there another method to checking custom CSS variables in the style object? toHaveStyle is returning Compared values have no visual difference. as a failed test.

@thatblindgeye
Copy link
Contributor

Is there another method to checking custom CSS variables in the style object? toHaveStyle is returning Compared values have no visual difference. as a failed test.

I ran into the same thing with one of my test PRs. I ended up just checking that toHaveAttribute('style', 'expected value')

@kmcfaul
Copy link
Contributor Author

kmcfaul commented Sep 14, 2023

That worked hank you! Updated to have the widths test.

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.

Just had a couple more comments below, otherwise this is looking good!

Comment on lines +11 to +14
test('Renders with custom class name when className prop is provided', () => {
render(<Brand alt="brand" className="custom-class" />);
expect(screen.getByAltText('brand')).toHaveClass('custom-class');
});
Copy link
Contributor

Choose a reason for hiding this comment

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

Similar to above, just testing the className is passed correctly when Brand has children

@tlabaj tlabaj merged commit 255563b into patternfly:main Sep 21, 2023
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]

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

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>

* 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]

 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
Co-authored-by: Nicole Thoen <[email protected]>
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>

* 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]

 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
Co-authored-by: Nicole Thoen <[email protected]>
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>

* 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]

 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
Co-authored-by: Nicole Thoen <[email protected]>
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

* 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 <[email protected]>

* 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/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

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

 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]

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

* chore(screenshots): Updated screenshots

* rebase and update

* fix: dry run publishing v6 alphas

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Titani Labaj <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>

* 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]

 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - [email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]
 - @patternfly/[email protected]

---------

Co-authored-by: adamviktora <[email protected]>
Co-authored-by: Austin Sullivan <[email protected]>
Co-authored-by: patternfly-build <[email protected]>
Co-authored-by: kmcfaul <[email protected]>
Co-authored-by: Maria <[email protected]>
Co-authored-by: Jenny <[email protected]>
Co-authored-by: Michael Coker <[email protected]>
Co-authored-by: Erin Donehoo <[email protected]>
Co-authored-by: Eric Olkowski <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Dominik Petřík <[email protected]>
Co-authored-by: Dallas <[email protected]>
Co-authored-by: Nicole Thoen <[email protected]>
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.

Brand
4 participants