Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

feat(Banner): add support for status icons #8195

Merged
merged 5 commits into from
Oct 24, 2022

Conversation

thatblindgeye
Copy link
Contributor

@thatblindgeye thatblindgeye commented Oct 10, 2022

What: Closes #8113

Banner examples

An alternative approach that I ultimately didn't go with involved having the variant prop be used solely as a prop to render a status icon + screen reader text (instead of using it to determine banner color as it does now), and adding a new color prop that would instead handle the banner color separate from status. That would've also involved using the pf-m-red etc classes instead of pf-m-danger etc ones. That sort of approach could possibly work better for the breaking change/v5 release.

Additional issues:

@patternfly-build
Copy link
Contributor

patternfly-build commented Oct 10, 2022

Copy link
Member

@mcarrano mcarrano left a comment

Choose a reason for hiding this comment

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

Looks good. Thanks @thatblindgeye !

Copy link
Contributor

@mcoker mcoker left a comment

Choose a reason for hiding this comment

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

nice! left some comments, lemme know what you think!

Comment on lines 52 to 62
{hasStatusIcon ? (
<Flex spaceItems={{ default: 'spaceItemsSm' }}>
<FlexItem>
<span className="pf-u-screen-reader">{screenReaderText || `${variant} banner`}</span>
{customIcon || <StatusIcon />}
</FlexItem>
<FlexItem>
<div className="pf-l-flex__item">{children}</div>
</FlexItem>
</Flex>
) : (
Copy link
Contributor

Choose a reason for hiding this comment

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

I should have made a note about this, but we currently don't manage the layout of the banner contents at all. All of our status examples should really be demos, since we're adding a flex layout to space the text and icon. In practice, it's up to the user to manage the layout and spacing and everything. For example, they may want to have a banner like this:

-----------------------------------------------------------
| Some text          [icon] Alert text          More text |
-----------------------------------------------------------

You can see some examples in the design docs - https://www.patternfly.org/v4/components/banner/design-guidelines#when-to-use

So they'll need to be able to choose the layout and spacing and everything. I think if we have some examples, that should be good. cc @mcarrano does that all sound right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

That's a good point. In that case, we may not even want to have a prop that determines whether an icon gets rendered, but rather just show an example of banners to convey status? In that case the example would just have the icon and banner text passed in as children of Banner.

Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Contributor

Choose a reason for hiding this comment

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

So, should this not be in the demo section rather than an example.

<div
className={css(
styles.banner,
styles.modifiers[variant as 'success' | 'danger' | 'warning' | 'info'],
Copy link
Contributor

Choose a reason for hiding this comment

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

FWIW we changed the "status" variant names to color variants since the color banner used doesn't always convey status. AFAIK we plan on removing the status variants in favor of the color names in the major release.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

That's something I was considering when working on this and ended up opting to keep this as-is for PF4. If it would make sense to update the class that gets applied to the pf-m-[color] classes I can do that, though, since we should be able to allow consumers to pass in danger etc as the variant and have that just apply pf-m-red etc.

Copy link
Contributor

Choose a reason for hiding this comment

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

@thatblindgeye gotcha, yeah we wouldn't want to lose the prop values, or even change the class ideally, since that could be breaking. We could add the new variant names now and remove the old ones later (like we did in core) but it probably makes sense just to do it at the same time with a breaking change

Created these issues:
core - patternfly/patternfly#5162
react - #8204

{hasStatusIcon ? (
<Flex spaceItems={{ default: 'spaceItemsSm' }}>
<FlexItem>
<span className="pf-u-screen-reader">{screenReaderText || `${variant} banner`}</span>
Copy link
Contributor

Choose a reason for hiding this comment

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

I think this is breaking since it works currently without hasStatusIcon.

Also is it just me or is the existing placement odd with the sr text coming after children? I think in other places, we put the sr text before the banner contents, assuming it provides context about the banner contents.

>
{children}
<span className="pf-u-screen-reader">{screenReaderText || `${variant} banner`}</span>
</div>

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Re: the placement: yeah I noticed that as well and figured that was something worth updating in this PR.

Regarding the conditional rendering of the SR text: that might be iffy? With the way the SR text is currently used it's to convey the banner variant, though custom text can be passed into the screenReaderText prop to convey something other than status (like simply having SR text that says "Banner:").

Since we are moving away from using status variants to determine the banner color and such, it may come down to whether it would be considered fixing a bug (a banner that doesn't convey status shouldn't have hidden text that conveys status to SR's) or if it should be kept as-is.

Copy link
Contributor

Choose a reason for hiding this comment

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

@thatblindgeye good points! I'm mostly interested in not breaking anyone using it currently, or these examples

<Banner screenReaderText="This is a default Banner">Default banner</Banner>
<br />
<Banner variant="info" screenReaderText="This is an info Banner">
Info banner
</Banner>

If we're going to rely on color variants alone, and it's up to the dev to handle the status or whatever the banner is, it seems like we would want to always expose this prop, and/or show how to add screen reader text to the banner wherever it's appropriate to use. ie <Banner>banner text blah <span class="pf-screen-reader">sr text</span> apples and oranges</Banner>

Just an aside, but do you think it makes sense to have screen reader text as a component of some sort? Currently that's part of the PF global CSS - https://github.com/patternfly/patternfly/blob/e362c95792e234592911881cb3c818177c023fd5/src/patternfly/base/_common.scss#L25-L36

Copy link
Contributor Author

Choose a reason for hiding this comment

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

If we're going to rely on color variants alone, and it's up to the dev to handle the status or whatever the banner is, it seems like we would want to always expose this prop, and/or show how to add screen reader text to the banner wherever it's appropriate to use. ie banner text blah sr text apples and oranges

If it would be breaking, we could possibly open an issue as part of the breaking change or v5 release. I could revert it so that the SR text always renders, but maybe just update the examples to either provide alternative, non-statusy sounding text ("This is a blue banner...") or making it so that you can have the SR text omitted (either passing in null or an empty string?). Wdyt?

Just an aside, but do you think it makes sense to have screen reader text as a component of some sort? Currently that's part of the PF global CSS

That's an interesting idea... I might be on the fence about it? 😆 On the one hand, it could be relatively handy to just have a component you can pass in somewhere with its own props for things like full-width or absolute styling (or even as a variant of our existing Text component).

On the other hand, I guess I'm not entirely sure whether its usage or benefit would be significant, and I might be wary about it being something exposed for public use without some good a11y docs. I did come across this, though: Screen reader only component so it's definitely something others have thought of.

Copy link
Contributor

Choose a reason for hiding this comment

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

If it would be breaking, we could possibly open an issue as part of the breaking change or v5 release. I could revert it so that the SR text always renders, but maybe just update the examples to either provide alternative, non-statusy sounding text ("This is a blue banner...") or making it so that you can have the SR text omitted (either passing in null or an empty string?). Wdyt?

Ah! I didn't notice that the sr text always renders - I thought it only rendered if you passed a value to the prop. Yeah, sounds good to me, especially since we are leaving the status variants in the component, and updating for v5.

It does beg the question of whether we should retain status variants alongside colors for uses like this, as opposed to replacing status with color. As in, have red/green/blue/etc and /danger/success/info, which would potentially allow for automatic injection of SR text (and other things we determine are useful) and potentially a separation of color global vars for blue/red/green and status global vars for info/danger/success.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It does beg the question of whether we should retain status variants alongside colors for uses like this, as opposed to replacing status with color.

I think the fact that anything could be passed into the Banner, including an icon, does make things a little more gray. The variants could still have some usefulness, but could arguably be replaced by a more fitting, existing prop (screenReaderText could just be passed in to render "Danger banner:" rather than needing to pass variant="danger", but having that text auto-render could be useful and "variant" might be more easily understandable without a prop description)

@thatblindgeye
Copy link
Contributor Author

@mcoker made updates to this PR based on the convos above. @mcarrano i re-requested review from you just because there was significant update from when you approved, though the end result is technically similar.

export const BannerStatus: React.FunctionComponent = () => (
<>
<Banner>
<BellIcon /> Default banner
Copy link
Contributor

Choose a reason for hiding this comment

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

This looks fine, but in the core examples we added a <Flex> layout to handle the icon/text spacing. The whitespace character makes the space a little tight.

Is that OK to add here, or do you think it's confusing, since users might think the flex layout is needed when we're just providing an example to show the ideal spacing?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I think it could be fine. I could also add in some verbiage about the example using Flex components/layout to achieve the desired spacing if that would help make it clearer about what's going on in the example. Maybe something like:

"In the following example, a flex layout is used inside the banner content to show one possible way to create spacing between the icons and banner text."?

Copy link
Member

@mcarrano mcarrano left a comment

Choose a reason for hiding this comment

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

This still looks good from a UX perspective. Thanks @thatblindgeye !

Copy link
Contributor

@wise-king-sullyman wise-king-sullyman left a comment

Choose a reason for hiding this comment

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

🔥

Copy link
Contributor

@mcoker mcoker left a comment

Choose a reason for hiding this comment

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

Nice! Looks great 👍

Copy link
Contributor

@mcoker mcoker left a comment

Choose a reason for hiding this comment

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

🏆

*
* Pass in null to omit this text from the banner when the banner does not convey status/severity.
*/
screenReaderText?: string | null;
Copy link
Contributor

Choose a reason for hiding this comment

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

I am not really a fan of using null here. Can we instead check the variant value at line 39. If it is default, don't show the text.

Copy link
Contributor Author

@thatblindgeye thatblindgeye Oct 24, 2022

Choose a reason for hiding this comment

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

We could, though it would still render status/severity text for a banner that may only be using a "success" variant for the green color rather than for status for example. The null check was essentially just a way to allow selecting a variant for the color only, similar to how the Core banner examples are now setup.

Michael did open issues for replacing the status variant with color (#8204), though that's for the breaking change. If we'd want to wait for that to fix that up I could implement this suggestion of only rendering the SR text for non-default variants, otherwise we could perhaps introduce a new prop (color as mentioned in the original comment, or maybe a hasStatus to determine whether sr text gets rendered).

Copy link
Contributor

Choose a reason for hiding this comment

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

In that case I don't think we should default the value of the screen reader text at all, but leave it up to the consumer to set. Once we change the variant names to use the colours, they API will not make sense.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

That makes sense. So rather than on line 39 having screenReaderText || ${variant} banner``, instead we'd just want screenReaderText, and only render that `pf-u-screen-reader` element if the prop is passed in. If that's the case I'll update the logic + examples

Copy link
Contributor

Choose a reason for hiding this comment

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

Copy link
Contributor

@tlabaj tlabaj left a comment

Choose a reason for hiding this comment

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

LGTM

@tlabaj tlabaj merged commit 6bd6c88 into patternfly:main Oct 24, 2022
@patternfly-build
Copy link
Contributor

Your changes have been released in:

  • @patternfly/react-catalog-view-extension@4.92.50
  • @patternfly/react-code-editor@4.82.50
  • @patternfly/react-console@4.92.50
  • @patternfly/react-core@4.257.0
  • @patternfly/react-docs@5.102.57
  • @patternfly/react-inline-edit-extension@4.86.51
  • demo-app-ts@4.204.5
  • @patternfly/react-log-viewer@4.87.45
  • @patternfly/react-table@4.111.28
  • @patternfly/react-topology@4.90.5
  • @patternfly/react-virtualized-extension@4.88.50

Thanks for your contribution! 🎉

gitdallas added a commit that referenced this pull request Nov 3, 2022
* fix(Menu): fixed height issue with drilldown examples (#8033)

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

 - @patternfly/react-catalog-view-extension@4.92.27
 - @patternfly/react-code-editor@4.82.27
 - @patternfly/react-console@4.92.27
 - @patternfly/react-core@4.250.2
 - @patternfly/react-docs@5.102.32
 - @patternfly/react-inline-edit-extension@4.86.28
 - demo-app-ts@4.202.8
 - @patternfly/react-log-viewer@4.87.22
 - @patternfly/react-table@4.111.5
 - @patternfly/react-topology@4.88.27
 - @patternfly/react-virtualized-extension@4.88.27

* chore(docs): Release notes 2022.13 (#8168)

* chore(docs): Release notes 2022.13

* release note updates

* add screnshots and versions

* update note

* updates from comments

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.33

* chore(docs): Updated release notes (#8202)

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.34

* chore(Sidebar): converted examples to typescript (#8062)

* chore(Banner): update tests to new react testing library standards (#8160)

* chore(Banner): update tests to new react testing library standards

* add additional test to test screenReaderText

* replace toHaveTextContent with toBeInTheDocument matcher

* add test to check for pf-u-screen-reader class

* specify est timezone for jest to run with (#8151)

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

 - @patternfly/react-catalog-view-extension@4.92.28
 - @patternfly/react-code-editor@4.82.28
 - @patternfly/react-console@4.92.28
 - @patternfly/react-core@4.250.3
 - @patternfly/react-docs@5.102.35
 - @patternfly/react-inline-edit-extension@4.86.29
 - demo-app-ts@4.202.9
 - @patternfly/react-log-viewer@4.87.23
 - @patternfly/react-table@4.111.6
 - @patternfly/react-topology@4.88.28
 - @patternfly/react-virtualized-extension@4.88.28

* feature(Select): flag to put create option at top of typeahead (#8165)

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

 - @patternfly/react-catalog-view-extension@4.92.29
 - @patternfly/react-code-editor@4.82.29
 - @patternfly/react-console@4.92.29
 - @patternfly/react-core@4.250.4
 - @patternfly/react-docs@5.102.36
 - @patternfly/react-inline-edit-extension@4.86.30
 - demo-app-ts@4.202.10
 - @patternfly/react-log-viewer@4.87.24
 - @patternfly/react-table@4.111.7
 - @patternfly/react-topology@4.88.29
 - @patternfly/react-virtualized-extension@4.88.29

* fix(Dropdown next): Add support for forward ref and updated docs. (#8142)

* fix(Dropdown next): Add support for forward ref and updated docs.

* hide inner ref prop

* hide innerRef

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.30
 - @patternfly/react-code-editor@4.82.30
 - @patternfly/react-console@4.92.30
 - @patternfly/react-core@4.250.5
 - @patternfly/react-docs@5.102.37
 - @patternfly/react-inline-edit-extension@4.86.31
 - demo-app-ts@4.202.11
 - @patternfly/react-log-viewer@4.87.25
 - @patternfly/react-table@4.111.8
 - @patternfly/react-topology@4.88.30
 - @patternfly/react-virtualized-extension@4.88.30

* chore(Title): update tests to new RTL standards (#8156)

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

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

 - @patternfly/react-catalog-view-extension@4.92.31
 - @patternfly/react-code-editor@4.82.31
 - @patternfly/react-console@4.92.31
 - @patternfly/react-core@4.250.6
 - @patternfly/react-docs@5.102.38
 - @patternfly/react-inline-edit-extension@4.86.32
 - demo-app-ts@4.202.12
 - @patternfly/react-log-viewer@4.87.26
 - @patternfly/react-table@4.111.9
 - @patternfly/react-topology@4.88.31
 - @patternfly/react-virtualized-extension@4.88.31

* docs(Empty state): Added EmptyStatePrimary to documentation (#8161)

* docs(Empty state): Added EmptyStatePrimary to documentation

* fix typo

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.32
 - @patternfly/react-code-editor@4.82.32
 - @patternfly/react-console@4.92.32
 - @patternfly/react-core@4.250.7
 - @patternfly/react-docs@5.102.39
 - @patternfly/react-inline-edit-extension@4.86.33
 - demo-app-ts@4.202.13
 - @patternfly/react-log-viewer@4.87.27
 - @patternfly/react-table@4.111.10
 - @patternfly/react-topology@4.88.32
 - @patternfly/react-virtualized-extension@4.88.32

* fix(Slider): correct tab order when input is above thumb (#8190)

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.43 (#8129)

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

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

 - @patternfly/react-catalog-view-extension@4.92.33
 - @patternfly/react-code-editor@4.82.33
 - @patternfly/react-console@4.92.33
 - @patternfly/react-core@4.250.8
 - @patternfly/react-docs@5.102.40
 - @patternfly/react-inline-edit-extension@4.86.34
 - demo-app-ts@4.202.14
 - @patternfly/react-log-viewer@4.87.28
 - @patternfly/react-table@4.111.11
 - @patternfly/react-topology@4.88.33
 - @patternfly/react-virtualized-extension@4.88.33

* feat(label+labelGroup): update aria-labels to include label text (#8192)

* feat(label+labelGroup): update aria-labels to include editable label text

* PR feedback from Eric

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

 - @patternfly/react-catalog-view-extension@4.92.34
 - @patternfly/react-code-editor@4.82.34
 - @patternfly/react-console@4.92.34
 - @patternfly/react-core@4.251.0
 - @patternfly/react-docs@5.102.41
 - @patternfly/react-inline-edit-extension@4.86.35
 - demo-app-ts@4.202.15
 - @patternfly/react-log-viewer@4.87.29
 - @patternfly/react-table@4.111.12
 - @patternfly/react-topology@4.88.34
 - @patternfly/react-virtualized-extension@4.88.34

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.44 (#8225)

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

* chore(SkipToContent): converted examples to typescript (#8138)

* chore(SkipToContent): converted examples to typescript

* fix(SkipToContent): added trailing newline for linter

* chore(TextInput): converted examples to typescript (#8137)

* chore(TextInput): converted examples to typescript

* fix(TextInput): removed problematic file

* fix(TextInput): added file back with correct name

* fix(TextInput): fixed requested changes

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

 - @patternfly/react-catalog-view-extension@4.92.35
 - @patternfly/react-code-editor@4.82.35
 - @patternfly/react-console@4.92.35
 - @patternfly/react-core@4.251.1
 - @patternfly/react-docs@5.102.42
 - @patternfly/react-inline-edit-extension@4.86.36
 - demo-app-ts@4.202.16
 - @patternfly/react-log-viewer@4.87.30
 - @patternfly/react-table@4.111.13
 - @patternfly/react-topology@4.88.35
 - @patternfly/react-virtualized-extension@4.88.35

* fix(JumpLinks): clean up demo in a drawer (#8182)

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

 - @patternfly/react-catalog-view-extension@4.92.36
 - @patternfly/react-code-editor@4.82.36
 - @patternfly/react-console@4.92.36
 - @patternfly/react-core@4.251.2
 - @patternfly/react-docs@5.102.43
 - @patternfly/react-inline-edit-extension@4.86.37
 - demo-app-ts@4.202.17
 - @patternfly/react-log-viewer@4.87.31
 - @patternfly/react-table@4.111.14
 - @patternfly/react-topology@4.88.36
 - @patternfly/react-virtualized-extension@4.88.36

* TextArea test revamp (#8150)

* Text area test revamp

* Edit ref test

* remove unnecessary tests

* add tests for default behavior

* add default validity test

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

 - @patternfly/react-catalog-view-extension@4.92.37
 - @patternfly/react-code-editor@4.82.37
 - @patternfly/react-console@4.92.37
 - @patternfly/react-core@4.251.3
 - @patternfly/react-docs@5.102.44
 - @patternfly/react-inline-edit-extension@4.86.38
 - demo-app-ts@4.202.18
 - @patternfly/react-log-viewer@4.87.32
 - @patternfly/react-table@4.111.15
 - @patternfly/react-topology@4.88.37
 - @patternfly/react-virtualized-extension@4.88.37

* chore(deps): update dependency @patternfly/patternfly to v4.218.0 (#8234)

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

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

 - @patternfly/react-catalog-view-extension@4.92.38
 - @patternfly/react-charts@6.94.8
 - @patternfly/react-code-editor@4.82.38
 - @patternfly/react-console@4.92.38
 - @patternfly/react-core@4.251.4
 - @patternfly/react-docs@5.102.45
 - @patternfly/react-icons@4.92.7
 - @patternfly/react-inline-edit-extension@4.86.39
 - demo-app-ts@4.202.19
 - @patternfly/react-log-viewer@4.87.33
 - @patternfly/react-styles@4.91.7
 - @patternfly/react-table@4.111.16
 - @patternfly/react-tokens@4.93.7
 - @patternfly/react-topology@4.88.38
 - @patternfly/react-virtualized-extension@4.88.38

* chore(deps): update dependency @patternfly/patternfly to v4.219.0 (#8239)

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

* feat(DataList): pass button props to toggle (#8222)

* feat(DataList): pass button props to toggle

* fix duplicate id

* missed an id

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

 - @patternfly/react-catalog-view-extension@4.92.39
 - @patternfly/react-charts@6.94.9
 - @patternfly/react-code-editor@4.82.39
 - @patternfly/react-console@4.92.39
 - @patternfly/react-core@4.252.0
 - @patternfly/react-docs@5.102.46
 - @patternfly/react-icons@4.92.8
 - @patternfly/react-inline-edit-extension@4.86.40
 - demo-app-ts@4.202.20
 - @patternfly/react-log-viewer@4.87.34
 - @patternfly/react-styles@4.91.8
 - @patternfly/react-table@4.111.17
 - @patternfly/react-tokens@4.93.8
 - @patternfly/react-topology@4.88.39
 - @patternfly/react-virtualized-extension@4.88.39

* chore(SimpleList):convert to typescript (#8176)

* chore(SimpleList):convert to typescript

* updated types to match onSelect handler

* updated types to match onSelect handler and various name changes

Co-authored-by: Jan Wright <jawright@redhat.com>

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

 - @patternfly/react-catalog-view-extension@4.92.40
 - @patternfly/react-code-editor@4.82.40
 - @patternfly/react-console@4.92.40
 - @patternfly/react-core@4.252.1
 - @patternfly/react-docs@5.102.47
 - @patternfly/react-inline-edit-extension@4.86.41
 - demo-app-ts@4.202.21
 - @patternfly/react-log-viewer@4.87.35
 - @patternfly/react-table@4.111.18
 - @patternfly/react-topology@4.88.40
 - @patternfly/react-virtualized-extension@4.88.40

* fix(Dropdown): enabled right aligned dropdown with isFlipEnabled (#8224)

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

 - @patternfly/react-catalog-view-extension@4.92.41
 - @patternfly/react-code-editor@4.82.41
 - @patternfly/react-console@4.92.41
 - @patternfly/react-core@4.252.2
 - @patternfly/react-docs@5.102.48
 - @patternfly/react-inline-edit-extension@4.86.42
 - demo-app-ts@4.202.22
 - @patternfly/react-log-viewer@4.87.36
 - @patternfly/react-table@4.111.19
 - @patternfly/react-topology@4.88.41
 - @patternfly/react-virtualized-extension@4.88.41

* feat(Wizard,ClipboardCopy): add OUIA props to WizardNav, WizardNavItem, ClipboardCopy (#8193)

* feat(Wizard,ClipboardCopy): add OUIA props to WizardNav, WizardNavItem, ClipboardCopy

* add missing props

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

 - @patternfly/react-catalog-view-extension@4.92.42
 - @patternfly/react-code-editor@4.82.42
 - @patternfly/react-console@4.92.42
 - @patternfly/react-core@4.253.0
 - @patternfly/react-docs@5.102.49
 - @patternfly/react-inline-edit-extension@4.86.43
 - demo-app-ts@4.202.23
 - @patternfly/react-log-viewer@4.87.37
 - @patternfly/react-table@4.111.20
 - @patternfly/react-topology@4.88.42
 - @patternfly/react-virtualized-extension@4.88.42

* chore(Slider): revert taborder update (#8273)

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

 - @patternfly/react-catalog-view-extension@4.92.43
 - @patternfly/react-code-editor@4.82.43
 - @patternfly/react-console@4.92.43
 - @patternfly/react-core@4.253.1
 - @patternfly/react-docs@5.102.50
 - @patternfly/react-inline-edit-extension@4.86.44
 - demo-app-ts@4.202.24
 - @patternfly/react-log-viewer@4.87.38
 - @patternfly/react-table@4.111.21
 - @patternfly/react-topology@4.88.43
 - @patternfly/react-virtualized-extension@4.88.43

* feat(Topology): Add option to fit layout to screen upon layout completion (#8210)

* fix(CodeEditor): use codeEditorControls and clean up overall (#7931)

* fix(CodeEditor): use codeEditorControls and clean up overall

* fix lint errors

* use better variable names

* clean up per PR comments

* add back useCallback

* clean up

* clean up

* fix lint errors

* add console warnings when using deprecated props

* fix lint errors

* update warning messages

* fix lint again

* feat(menu): add optional danger state for menu items (#8131)

* feat(menu): add optional danger state for menu items

* docs(menu): add demo for danger state

* chore: move example to match html

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.46 (#8241)

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

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

 - @patternfly/react-catalog-view-extension@4.92.44
 - @patternfly/react-code-editor@4.82.44
 - @patternfly/react-console@4.92.44
 - @patternfly/react-core@4.254.0
 - @patternfly/react-docs@5.102.51
 - @patternfly/react-inline-edit-extension@4.86.45
 - demo-app-ts@4.203.0
 - @patternfly/react-integration@4.206.0
 - @patternfly/react-log-viewer@4.87.39
 - @patternfly/react-table@4.111.22
 - @patternfly/react-topology@4.89.0
 - @patternfly/react-virtualized-extension@4.88.44

* fix(DualListSelector): Add/remove button didn't work if search is used (#8269)

* feat(topology): Allow tooltip usage on pipeline task node badges (#8208)

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

 - @patternfly/react-catalog-view-extension@4.92.45
 - @patternfly/react-code-editor@4.82.45
 - @patternfly/react-console@4.92.45
 - @patternfly/react-core@4.254.1
 - @patternfly/react-docs@5.102.52
 - @patternfly/react-inline-edit-extension@4.86.46
 - demo-app-ts@4.204.0
 - @patternfly/react-integration@4.207.0
 - @patternfly/react-log-viewer@4.87.40
 - @patternfly/react-table@4.111.23
 - @patternfly/react-topology@4.90.0
 - @patternfly/react-virtualized-extension@4.88.45

* feat: add ouia support to dropdown next (#8135)

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

 - @patternfly/react-catalog-view-extension@4.92.46
 - @patternfly/react-code-editor@4.82.46
 - @patternfly/react-console@4.92.46
 - @patternfly/react-core@4.255.0
 - @patternfly/react-docs@5.102.53
 - @patternfly/react-inline-edit-extension@4.86.47
 - demo-app-ts@4.204.1
 - @patternfly/react-log-viewer@4.87.41
 - @patternfly/react-table@4.111.24
 - @patternfly/react-topology@4.90.1
 - @patternfly/react-virtualized-extension@4.88.46

* chore(button): added inline progress variant to progress demos (#8172)

* fix(Alert): prevent error being thrown when using invalid variant (#8229)

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

 - @patternfly/react-catalog-view-extension@4.92.47
 - @patternfly/react-code-editor@4.82.47
 - @patternfly/react-console@4.92.47
 - @patternfly/react-core@4.255.1
 - @patternfly/react-docs@5.102.54
 - @patternfly/react-inline-edit-extension@4.86.48
 - demo-app-ts@4.204.2
 - @patternfly/react-log-viewer@4.87.42
 - @patternfly/react-table@4.111.25
 - @patternfly/react-topology@4.90.2
 - @patternfly/react-virtualized-extension@4.88.47

* next(Wizard): Allow for WizardStep to better control state from props entry-point, include index (#8218)

* next(Wizard): Allow for WizardStep to better control state from props entrypoint, include index

* address feedback

* fix a couple existing wizard demos, update naming of combined steps in 'next' wizard context

* disable Back/Cancel for async Next step in Kitchen sink example

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

 - @patternfly/react-catalog-view-extension@4.92.48
 - @patternfly/react-code-editor@4.82.48
 - @patternfly/react-console@4.92.48
 - @patternfly/react-core@4.255.2
 - @patternfly/react-docs@5.102.55
 - @patternfly/react-inline-edit-extension@4.86.49
 - demo-app-ts@4.204.3
 - @patternfly/react-log-viewer@4.87.43
 - @patternfly/react-table@4.111.26
 - @patternfly/react-topology@4.90.3
 - @patternfly/react-virtualized-extension@4.88.48

* chore(beta-components): promote candidates 2022.14 (#8246)

* chore(beta-components): promote candidates 2022.14

* remove more beta flags

* feat(MultipleFileUpload): add aria live region to internal Progress (#8242)

* feat(MultipleFileUpload): add aria live region to internal Progress

* add floor/cap load percentage

* update description

* update and add tests

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

 - @patternfly/react-catalog-view-extension@4.92.49
 - @patternfly/react-code-editor@4.82.49
 - @patternfly/react-console@4.92.49
 - @patternfly/react-core@4.256.0
 - @patternfly/react-docs@5.102.56
 - @patternfly/react-inline-edit-extension@4.86.50
 - demo-app-ts@4.204.4
 - @patternfly/react-log-viewer@4.87.44
 - @patternfly/react-table@4.111.27
 - @patternfly/react-topology@4.90.4
 - @patternfly/react-virtualized-extension@4.88.49

* feat(Banner): add support for status icons (#8195)

* feat(Banner): add support for status icons

* Made icon support an example instead of new props

* Added flex layout to status example

* Updated snapshot after rebase

* Updated logic for rendering sr text

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

 - @patternfly/react-catalog-view-extension@4.92.50
 - @patternfly/react-code-editor@4.82.50
 - @patternfly/react-console@4.92.50
 - @patternfly/react-core@4.257.0
 - @patternfly/react-docs@5.102.57
 - @patternfly/react-inline-edit-extension@4.86.51
 - demo-app-ts@4.204.5
 - @patternfly/react-log-viewer@4.87.45
 - @patternfly/react-table@4.111.28
 - @patternfly/react-topology@4.90.5
 - @patternfly/react-virtualized-extension@4.88.50

* Create workflow for extensions issues (#8281)

* Create workflow for extensions issues

Whenever a patternfly-react issue is tagged with the 'extensions' label, it will automatically get added to the 'PatternFly Extensions' project board

* change label name

* fix(Timestamp): updated logic for rendering datetime attribute (#8205)

* fix(Timestamp): updated logic for rendering datetime attribute

* Updated spread props to prevent duplicate datetime attribute

* Made updates per PR feedback

* Added new utils file to helpers index

* Removed timezone from dates in tests

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

 - @patternfly/react-catalog-view-extension@4.92.51
 - @patternfly/react-code-editor@4.82.51
 - @patternfly/react-console@4.92.51
 - @patternfly/react-core@4.257.1
 - @patternfly/react-docs@5.102.58
 - @patternfly/react-inline-edit-extension@4.86.52
 - demo-app-ts@4.204.6
 - @patternfly/react-log-viewer@4.87.46
 - @patternfly/react-table@4.111.29
 - @patternfly/react-topology@4.90.6
 - @patternfly/react-virtualized-extension@4.88.51

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.48 (#8282)

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

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

 - @patternfly/react-docs@5.102.59

* feat(Popover): update default flip behavior and width (#8191)

* feat(Popover): update default flip behavior and width

* fix flip positions for diagonals

* revert default for autoWidth for now

* remove old comment

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

 - @patternfly/react-catalog-view-extension@4.92.52
 - @patternfly/react-code-editor@4.82.52
 - @patternfly/react-console@4.92.52
 - @patternfly/react-core@4.258.0
 - @patternfly/react-docs@5.102.60
 - @patternfly/react-inline-edit-extension@4.86.53
 - demo-app-ts@4.204.7
 - @patternfly/react-log-viewer@4.87.47
 - @patternfly/react-table@4.111.30
 - @patternfly/react-topology@4.90.7
 - @patternfly/react-virtualized-extension@4.88.52

* chore(deps): update dependency @patternfly/patternfly to v4.219.1 (#8288)

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

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

 - @patternfly/react-catalog-view-extension@4.92.53
 - @patternfly/react-charts@6.94.10
 - @patternfly/react-code-editor@4.82.53
 - @patternfly/react-console@4.92.53
 - @patternfly/react-core@4.258.1
 - @patternfly/react-docs@5.102.61
 - @patternfly/react-icons@4.92.9
 - @patternfly/react-inline-edit-extension@4.86.54
 - demo-app-ts@4.204.8
 - @patternfly/react-log-viewer@4.87.48
 - @patternfly/react-styles@4.91.9
 - @patternfly/react-table@4.111.31
 - @patternfly/react-tokens@4.93.9
 - @patternfly/react-topology@4.90.8
 - @patternfly/react-virtualized-extension@4.88.53

* fix(Pagination): prevented regenerating random id on each render (#8175)

* fix(Pagination): prevented regenerating random id on each render

* fix duplicate ids in existing demos

* fix(Pagination): update column management table demo pagination

* add unit test

* Add pipeline groups (#8278)

* Add pipeline groups

* Breakout topology package options for readability

* chore(dropdown-like components): updated isFlipEnabled to true by def… (#8215)

* chore(dropdown-like components): updated isFlipEnabled to true by default

* Updated snapshots

* Updated failing integration test

* Updated conditional for adding static class

* Updated static logic based on Core updates

* Updated ContextSelector

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

 - @patternfly/react-catalog-view-extension@4.92.54
 - @patternfly/react-code-editor@4.82.54
 - @patternfly/react-console@4.92.54
 - @patternfly/react-core@4.258.2
 - @patternfly/react-docs@5.102.62
 - @patternfly/react-inline-edit-extension@4.86.55
 - demo-app-ts@4.204.9
 - @patternfly/react-integration@4.207.1
 - @patternfly/react-log-viewer@4.87.49
 - @patternfly/react-table@4.111.32
 - @patternfly/react-topology@4.90.9
 - @patternfly/react-virtualized-extension@4.88.54

* chore: bump @patternfly/patternfly to 4.219.2 (#8296)

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

 - @patternfly/react-catalog-view-extension@4.92.55
 - @patternfly/react-charts@6.94.11
 - @patternfly/react-code-editor@4.82.55
 - @patternfly/react-console@4.92.55
 - @patternfly/react-core@4.258.3
 - @patternfly/react-docs@5.102.63
 - @patternfly/react-icons@4.92.10
 - @patternfly/react-inline-edit-extension@4.86.56
 - demo-app-ts@4.204.10
 - @patternfly/react-log-viewer@4.87.50
 - @patternfly/react-styles@4.91.10
 - @patternfly/react-table@4.111.33
 - @patternfly/react-tokens@4.93.10
 - @patternfly/react-topology@4.90.10
 - @patternfly/react-virtualized-extension@4.88.55

* Fix group labels, revert breaking change (#8299)

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

 - @patternfly/react-docs@5.102.64
 - demo-app-ts@4.204.11
 - @patternfly/react-integration@4.207.2
 - @patternfly/react-topology@4.90.11

* Update extensions.yml

* Update add-new-issues-to-project.yml

* chore(docs): Added release notes 2022.14 (#8301)

* chore(docs): Added rleases notes 2022.14

* updated topology version

* fixes from reviews

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.56
 - @patternfly/react-code-editor@4.82.56
 - @patternfly/react-console@4.92.56
 - @patternfly/react-core@4.258.4
 - @patternfly/react-docs@5.102.65
 - @patternfly/react-inline-edit-extension@4.86.57
 - demo-app-ts@4.204.12
 - @patternfly/react-log-viewer@4.87.51
 - @patternfly/react-table@4.111.34
 - @patternfly/react-topology@4.90.12
 - @patternfly/react-virtualized-extension@4.88.56

* chore(rebase) v5

Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: Titani <tlabaj@redaht.com>
Co-authored-by: Andy Vo <58367784+andyyvo@users.noreply.github.com>
Co-authored-by: Samuel Atefah <68087918+samuelatefah@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
Co-authored-by: drewamunat2 <78369347+drewamunat2@users.noreply.github.com>
Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>
Co-authored-by: Tomas Psota <72520867+tompsota@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: kev-kim <71181430+kev-kim@users.noreply.github.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: janwright73 <40367673+janwright73@users.noreply.github.com>
Co-authored-by: Jan Wright <jawright@redhat.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: Jeff Phillips <jephilli@redhat.com>
Co-authored-by: Gustavo Santos <53129852+gefgu@users.noreply.github.com>
Co-authored-by: Christoph Jerolimov <jerolimov+github@redhat.com>
Co-authored-by: Jeff Puzzo <96431149+jeffpuzzo@users.noreply.github.com>
nicolethoen added a commit that referenced this pull request Dec 19, 2022
* fix(Menu): fixed height issue with drilldown examples (#8033)

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

 - @patternfly/react-catalog-view-extension@4.92.27
 - @patternfly/react-code-editor@4.82.27
 - @patternfly/react-console@4.92.27
 - @patternfly/react-core@4.250.2
 - @patternfly/react-docs@5.102.32
 - @patternfly/react-inline-edit-extension@4.86.28
 - demo-app-ts@4.202.8
 - @patternfly/react-log-viewer@4.87.22
 - @patternfly/react-table@4.111.5
 - @patternfly/react-topology@4.88.27
 - @patternfly/react-virtualized-extension@4.88.27

* chore(docs): Release notes 2022.13 (#8168)

* chore(docs): Release notes 2022.13

* release note updates

* add screnshots and versions

* update note

* updates from comments

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.33

* chore(docs): Updated release notes (#8202)

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.34

* chore(Sidebar): converted examples to typescript (#8062)

* chore(Banner): update tests to new react testing library standards (#8160)

* chore(Banner): update tests to new react testing library standards

* add additional test to test screenReaderText

* replace toHaveTextContent with toBeInTheDocument matcher

* add test to check for pf-u-screen-reader class

* specify est timezone for jest to run with (#8151)

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

 - @patternfly/react-catalog-view-extension@4.92.28
 - @patternfly/react-code-editor@4.82.28
 - @patternfly/react-console@4.92.28
 - @patternfly/react-core@4.250.3
 - @patternfly/react-docs@5.102.35
 - @patternfly/react-inline-edit-extension@4.86.29
 - demo-app-ts@4.202.9
 - @patternfly/react-log-viewer@4.87.23
 - @patternfly/react-table@4.111.6
 - @patternfly/react-topology@4.88.28
 - @patternfly/react-virtualized-extension@4.88.28

* feature(Select): flag to put create option at top of typeahead (#8165)

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

 - @patternfly/react-catalog-view-extension@4.92.29
 - @patternfly/react-code-editor@4.82.29
 - @patternfly/react-console@4.92.29
 - @patternfly/react-core@4.250.4
 - @patternfly/react-docs@5.102.36
 - @patternfly/react-inline-edit-extension@4.86.30
 - demo-app-ts@4.202.10
 - @patternfly/react-log-viewer@4.87.24
 - @patternfly/react-table@4.111.7
 - @patternfly/react-topology@4.88.29
 - @patternfly/react-virtualized-extension@4.88.29

* fix(Dropdown next): Add support for forward ref and updated docs. (#8142)

* fix(Dropdown next): Add support for forward ref and updated docs.

* hide inner ref prop

* hide innerRef

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.30
 - @patternfly/react-code-editor@4.82.30
 - @patternfly/react-console@4.92.30
 - @patternfly/react-core@4.250.5
 - @patternfly/react-docs@5.102.37
 - @patternfly/react-inline-edit-extension@4.86.31
 - demo-app-ts@4.202.11
 - @patternfly/react-log-viewer@4.87.25
 - @patternfly/react-table@4.111.8
 - @patternfly/react-topology@4.88.30
 - @patternfly/react-virtualized-extension@4.88.30

* chore(Title): update tests to new RTL standards (#8156)

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

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

 - @patternfly/react-catalog-view-extension@4.92.31
 - @patternfly/react-code-editor@4.82.31
 - @patternfly/react-console@4.92.31
 - @patternfly/react-core@4.250.6
 - @patternfly/react-docs@5.102.38
 - @patternfly/react-inline-edit-extension@4.86.32
 - demo-app-ts@4.202.12
 - @patternfly/react-log-viewer@4.87.26
 - @patternfly/react-table@4.111.9
 - @patternfly/react-topology@4.88.31
 - @patternfly/react-virtualized-extension@4.88.31

* docs(Empty state): Added EmptyStatePrimary to documentation (#8161)

* docs(Empty state): Added EmptyStatePrimary to documentation

* fix typo

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.32
 - @patternfly/react-code-editor@4.82.32
 - @patternfly/react-console@4.92.32
 - @patternfly/react-core@4.250.7
 - @patternfly/react-docs@5.102.39
 - @patternfly/react-inline-edit-extension@4.86.33
 - demo-app-ts@4.202.13
 - @patternfly/react-log-viewer@4.87.27
 - @patternfly/react-table@4.111.10
 - @patternfly/react-topology@4.88.32
 - @patternfly/react-virtualized-extension@4.88.32

* fix(Slider): correct tab order when input is above thumb (#8190)

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.43 (#8129)

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

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

 - @patternfly/react-catalog-view-extension@4.92.33
 - @patternfly/react-code-editor@4.82.33
 - @patternfly/react-console@4.92.33
 - @patternfly/react-core@4.250.8
 - @patternfly/react-docs@5.102.40
 - @patternfly/react-inline-edit-extension@4.86.34
 - demo-app-ts@4.202.14
 - @patternfly/react-log-viewer@4.87.28
 - @patternfly/react-table@4.111.11
 - @patternfly/react-topology@4.88.33
 - @patternfly/react-virtualized-extension@4.88.33

* feat(label+labelGroup): update aria-labels to include label text (#8192)

* feat(label+labelGroup): update aria-labels to include editable label text

* PR feedback from Eric

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

 - @patternfly/react-catalog-view-extension@4.92.34
 - @patternfly/react-code-editor@4.82.34
 - @patternfly/react-console@4.92.34
 - @patternfly/react-core@4.251.0
 - @patternfly/react-docs@5.102.41
 - @patternfly/react-inline-edit-extension@4.86.35
 - demo-app-ts@4.202.15
 - @patternfly/react-log-viewer@4.87.29
 - @patternfly/react-table@4.111.12
 - @patternfly/react-topology@4.88.34
 - @patternfly/react-virtualized-extension@4.88.34

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.44 (#8225)

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

* chore(SkipToContent): converted examples to typescript (#8138)

* chore(SkipToContent): converted examples to typescript

* fix(SkipToContent): added trailing newline for linter

* chore(TextInput): converted examples to typescript (#8137)

* chore(TextInput): converted examples to typescript

* fix(TextInput): removed problematic file

* fix(TextInput): added file back with correct name

* fix(TextInput): fixed requested changes

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

 - @patternfly/react-catalog-view-extension@4.92.35
 - @patternfly/react-code-editor@4.82.35
 - @patternfly/react-console@4.92.35
 - @patternfly/react-core@4.251.1
 - @patternfly/react-docs@5.102.42
 - @patternfly/react-inline-edit-extension@4.86.36
 - demo-app-ts@4.202.16
 - @patternfly/react-log-viewer@4.87.30
 - @patternfly/react-table@4.111.13
 - @patternfly/react-topology@4.88.35
 - @patternfly/react-virtualized-extension@4.88.35

* fix(JumpLinks): clean up demo in a drawer (#8182)

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

 - @patternfly/react-catalog-view-extension@4.92.36
 - @patternfly/react-code-editor@4.82.36
 - @patternfly/react-console@4.92.36
 - @patternfly/react-core@4.251.2
 - @patternfly/react-docs@5.102.43
 - @patternfly/react-inline-edit-extension@4.86.37
 - demo-app-ts@4.202.17
 - @patternfly/react-log-viewer@4.87.31
 - @patternfly/react-table@4.111.14
 - @patternfly/react-topology@4.88.36
 - @patternfly/react-virtualized-extension@4.88.36

* TextArea test revamp (#8150)

* Text area test revamp

* Edit ref test

* remove unnecessary tests

* add tests for default behavior

* add default validity test

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

 - @patternfly/react-catalog-view-extension@4.92.37
 - @patternfly/react-code-editor@4.82.37
 - @patternfly/react-console@4.92.37
 - @patternfly/react-core@4.251.3
 - @patternfly/react-docs@5.102.44
 - @patternfly/react-inline-edit-extension@4.86.38
 - demo-app-ts@4.202.18
 - @patternfly/react-log-viewer@4.87.32
 - @patternfly/react-table@4.111.15
 - @patternfly/react-topology@4.88.37
 - @patternfly/react-virtualized-extension@4.88.37

* chore(deps): update dependency @patternfly/patternfly to v4.218.0 (#8234)

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

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

 - @patternfly/react-catalog-view-extension@4.92.38
 - @patternfly/react-charts@6.94.8
 - @patternfly/react-code-editor@4.82.38
 - @patternfly/react-console@4.92.38
 - @patternfly/react-core@4.251.4
 - @patternfly/react-docs@5.102.45
 - @patternfly/react-icons@4.92.7
 - @patternfly/react-inline-edit-extension@4.86.39
 - demo-app-ts@4.202.19
 - @patternfly/react-log-viewer@4.87.33
 - @patternfly/react-styles@4.91.7
 - @patternfly/react-table@4.111.16
 - @patternfly/react-tokens@4.93.7
 - @patternfly/react-topology@4.88.38
 - @patternfly/react-virtualized-extension@4.88.38

* chore(deps): update dependency @patternfly/patternfly to v4.219.0 (#8239)

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

* feat(DataList): pass button props to toggle (#8222)

* feat(DataList): pass button props to toggle

* fix duplicate id

* missed an id

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

 - @patternfly/react-catalog-view-extension@4.92.39
 - @patternfly/react-charts@6.94.9
 - @patternfly/react-code-editor@4.82.39
 - @patternfly/react-console@4.92.39
 - @patternfly/react-core@4.252.0
 - @patternfly/react-docs@5.102.46
 - @patternfly/react-icons@4.92.8
 - @patternfly/react-inline-edit-extension@4.86.40
 - demo-app-ts@4.202.20
 - @patternfly/react-log-viewer@4.87.34
 - @patternfly/react-styles@4.91.8
 - @patternfly/react-table@4.111.17
 - @patternfly/react-tokens@4.93.8
 - @patternfly/react-topology@4.88.39
 - @patternfly/react-virtualized-extension@4.88.39

* chore(SimpleList):convert to typescript (#8176)

* chore(SimpleList):convert to typescript

* updated types to match onSelect handler

* updated types to match onSelect handler and various name changes

Co-authored-by: Jan Wright <jawright@redhat.com>

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

 - @patternfly/react-catalog-view-extension@4.92.40
 - @patternfly/react-code-editor@4.82.40
 - @patternfly/react-console@4.92.40
 - @patternfly/react-core@4.252.1
 - @patternfly/react-docs@5.102.47
 - @patternfly/react-inline-edit-extension@4.86.41
 - demo-app-ts@4.202.21
 - @patternfly/react-log-viewer@4.87.35
 - @patternfly/react-table@4.111.18
 - @patternfly/react-topology@4.88.40
 - @patternfly/react-virtualized-extension@4.88.40

* fix(Dropdown): enabled right aligned dropdown with isFlipEnabled (#8224)

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

 - @patternfly/react-catalog-view-extension@4.92.41
 - @patternfly/react-code-editor@4.82.41
 - @patternfly/react-console@4.92.41
 - @patternfly/react-core@4.252.2
 - @patternfly/react-docs@5.102.48
 - @patternfly/react-inline-edit-extension@4.86.42
 - demo-app-ts@4.202.22
 - @patternfly/react-log-viewer@4.87.36
 - @patternfly/react-table@4.111.19
 - @patternfly/react-topology@4.88.41
 - @patternfly/react-virtualized-extension@4.88.41

* feat(Wizard,ClipboardCopy): add OUIA props to WizardNav, WizardNavItem, ClipboardCopy (#8193)

* feat(Wizard,ClipboardCopy): add OUIA props to WizardNav, WizardNavItem, ClipboardCopy

* add missing props

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

 - @patternfly/react-catalog-view-extension@4.92.42
 - @patternfly/react-code-editor@4.82.42
 - @patternfly/react-console@4.92.42
 - @patternfly/react-core@4.253.0
 - @patternfly/react-docs@5.102.49
 - @patternfly/react-inline-edit-extension@4.86.43
 - demo-app-ts@4.202.23
 - @patternfly/react-log-viewer@4.87.37
 - @patternfly/react-table@4.111.20
 - @patternfly/react-topology@4.88.42
 - @patternfly/react-virtualized-extension@4.88.42

* chore(Slider): revert taborder update (#8273)

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

 - @patternfly/react-catalog-view-extension@4.92.43
 - @patternfly/react-code-editor@4.82.43
 - @patternfly/react-console@4.92.43
 - @patternfly/react-core@4.253.1
 - @patternfly/react-docs@5.102.50
 - @patternfly/react-inline-edit-extension@4.86.44
 - demo-app-ts@4.202.24
 - @patternfly/react-log-viewer@4.87.38
 - @patternfly/react-table@4.111.21
 - @patternfly/react-topology@4.88.43
 - @patternfly/react-virtualized-extension@4.88.43

* feat(Topology): Add option to fit layout to screen upon layout completion (#8210)

* fix(CodeEditor): use codeEditorControls and clean up overall (#7931)

* fix(CodeEditor): use codeEditorControls and clean up overall

* fix lint errors

* use better variable names

* clean up per PR comments

* add back useCallback

* clean up

* clean up

* fix lint errors

* add console warnings when using deprecated props

* fix lint errors

* update warning messages

* fix lint again

* feat(menu): add optional danger state for menu items (#8131)

* feat(menu): add optional danger state for menu items

* docs(menu): add demo for danger state

* chore: move example to match html

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.46 (#8241)

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

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

 - @patternfly/react-catalog-view-extension@4.92.44
 - @patternfly/react-code-editor@4.82.44
 - @patternfly/react-console@4.92.44
 - @patternfly/react-core@4.254.0
 - @patternfly/react-docs@5.102.51
 - @patternfly/react-inline-edit-extension@4.86.45
 - demo-app-ts@4.203.0
 - @patternfly/react-integration@4.206.0
 - @patternfly/react-log-viewer@4.87.39
 - @patternfly/react-table@4.111.22
 - @patternfly/react-topology@4.89.0
 - @patternfly/react-virtualized-extension@4.88.44

* fix(DualListSelector): Add/remove button didn't work if search is used (#8269)

* feat(topology): Allow tooltip usage on pipeline task node badges (#8208)

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

 - @patternfly/react-catalog-view-extension@4.92.45
 - @patternfly/react-code-editor@4.82.45
 - @patternfly/react-console@4.92.45
 - @patternfly/react-core@4.254.1
 - @patternfly/react-docs@5.102.52
 - @patternfly/react-inline-edit-extension@4.86.46
 - demo-app-ts@4.204.0
 - @patternfly/react-integration@4.207.0
 - @patternfly/react-log-viewer@4.87.40
 - @patternfly/react-table@4.111.23
 - @patternfly/react-topology@4.90.0
 - @patternfly/react-virtualized-extension@4.88.45

* feat: add ouia support to dropdown next (#8135)

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

 - @patternfly/react-catalog-view-extension@4.92.46
 - @patternfly/react-code-editor@4.82.46
 - @patternfly/react-console@4.92.46
 - @patternfly/react-core@4.255.0
 - @patternfly/react-docs@5.102.53
 - @patternfly/react-inline-edit-extension@4.86.47
 - demo-app-ts@4.204.1
 - @patternfly/react-log-viewer@4.87.41
 - @patternfly/react-table@4.111.24
 - @patternfly/react-topology@4.90.1
 - @patternfly/react-virtualized-extension@4.88.46

* chore(button): added inline progress variant to progress demos (#8172)

* fix(Alert): prevent error being thrown when using invalid variant (#8229)

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

 - @patternfly/react-catalog-view-extension@4.92.47
 - @patternfly/react-code-editor@4.82.47
 - @patternfly/react-console@4.92.47
 - @patternfly/react-core@4.255.1
 - @patternfly/react-docs@5.102.54
 - @patternfly/react-inline-edit-extension@4.86.48
 - demo-app-ts@4.204.2
 - @patternfly/react-log-viewer@4.87.42
 - @patternfly/react-table@4.111.25
 - @patternfly/react-topology@4.90.2
 - @patternfly/react-virtualized-extension@4.88.47

* next(Wizard): Allow for WizardStep to better control state from props entry-point, include index (#8218)

* next(Wizard): Allow for WizardStep to better control state from props entrypoint, include index

* address feedback

* fix a couple existing wizard demos, update naming of combined steps in 'next' wizard context

* disable Back/Cancel for async Next step in Kitchen sink example

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

 - @patternfly/react-catalog-view-extension@4.92.48
 - @patternfly/react-code-editor@4.82.48
 - @patternfly/react-console@4.92.48
 - @patternfly/react-core@4.255.2
 - @patternfly/react-docs@5.102.55
 - @patternfly/react-inline-edit-extension@4.86.49
 - demo-app-ts@4.204.3
 - @patternfly/react-log-viewer@4.87.43
 - @patternfly/react-table@4.111.26
 - @patternfly/react-topology@4.90.3
 - @patternfly/react-virtualized-extension@4.88.48

* chore(beta-components): promote candidates 2022.14 (#8246)

* chore(beta-components): promote candidates 2022.14

* remove more beta flags

* feat(MultipleFileUpload): add aria live region to internal Progress (#8242)

* feat(MultipleFileUpload): add aria live region to internal Progress

* add floor/cap load percentage

* update description

* update and add tests

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

 - @patternfly/react-catalog-view-extension@4.92.49
 - @patternfly/react-code-editor@4.82.49
 - @patternfly/react-console@4.92.49
 - @patternfly/react-core@4.256.0
 - @patternfly/react-docs@5.102.56
 - @patternfly/react-inline-edit-extension@4.86.50
 - demo-app-ts@4.204.4
 - @patternfly/react-log-viewer@4.87.44
 - @patternfly/react-table@4.111.27
 - @patternfly/react-topology@4.90.4
 - @patternfly/react-virtualized-extension@4.88.49

* feat(Banner): add support for status icons (#8195)

* feat(Banner): add support for status icons

* Made icon support an example instead of new props

* Added flex layout to status example

* Updated snapshot after rebase

* Updated logic for rendering sr text

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

 - @patternfly/react-catalog-view-extension@4.92.50
 - @patternfly/react-code-editor@4.82.50
 - @patternfly/react-console@4.92.50
 - @patternfly/react-core@4.257.0
 - @patternfly/react-docs@5.102.57
 - @patternfly/react-inline-edit-extension@4.86.51
 - demo-app-ts@4.204.5
 - @patternfly/react-log-viewer@4.87.45
 - @patternfly/react-table@4.111.28
 - @patternfly/react-topology@4.90.5
 - @patternfly/react-virtualized-extension@4.88.50

* Create workflow for extensions issues (#8281)

* Create workflow for extensions issues

Whenever a patternfly-react issue is tagged with the 'extensions' label, it will automatically get added to the 'PatternFly Extensions' project board

* change label name

* fix(Timestamp): updated logic for rendering datetime attribute (#8205)

* fix(Timestamp): updated logic for rendering datetime attribute

* Updated spread props to prevent duplicate datetime attribute

* Made updates per PR feedback

* Added new utils file to helpers index

* Removed timezone from dates in tests

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

 - @patternfly/react-catalog-view-extension@4.92.51
 - @patternfly/react-code-editor@4.82.51
 - @patternfly/react-console@4.92.51
 - @patternfly/react-core@4.257.1
 - @patternfly/react-docs@5.102.58
 - @patternfly/react-inline-edit-extension@4.86.52
 - demo-app-ts@4.204.6
 - @patternfly/react-log-viewer@4.87.46
 - @patternfly/react-table@4.111.29
 - @patternfly/react-topology@4.90.6
 - @patternfly/react-virtualized-extension@4.88.51

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.48 (#8282)

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

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

 - @patternfly/react-docs@5.102.59

* feat(Popover): update default flip behavior and width (#8191)

* feat(Popover): update default flip behavior and width

* fix flip positions for diagonals

* revert default for autoWidth for now

* remove old comment

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

 - @patternfly/react-catalog-view-extension@4.92.52
 - @patternfly/react-code-editor@4.82.52
 - @patternfly/react-console@4.92.52
 - @patternfly/react-core@4.258.0
 - @patternfly/react-docs@5.102.60
 - @patternfly/react-inline-edit-extension@4.86.53
 - demo-app-ts@4.204.7
 - @patternfly/react-log-viewer@4.87.47
 - @patternfly/react-table@4.111.30
 - @patternfly/react-topology@4.90.7
 - @patternfly/react-virtualized-extension@4.88.52

* chore(deps): update dependency @patternfly/patternfly to v4.219.1 (#8288)

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

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

 - @patternfly/react-catalog-view-extension@4.92.53
 - @patternfly/react-charts@6.94.10
 - @patternfly/react-code-editor@4.82.53
 - @patternfly/react-console@4.92.53
 - @patternfly/react-core@4.258.1
 - @patternfly/react-docs@5.102.61
 - @patternfly/react-icons@4.92.9
 - @patternfly/react-inline-edit-extension@4.86.54
 - demo-app-ts@4.204.8
 - @patternfly/react-log-viewer@4.87.48
 - @patternfly/react-styles@4.91.9
 - @patternfly/react-table@4.111.31
 - @patternfly/react-tokens@4.93.9
 - @patternfly/react-topology@4.90.8
 - @patternfly/react-virtualized-extension@4.88.53

* fix(Pagination): prevented regenerating random id on each render (#8175)

* fix(Pagination): prevented regenerating random id on each render

* fix duplicate ids in existing demos

* fix(Pagination): update column management table demo pagination

* add unit test

* Add pipeline groups (#8278)

* Add pipeline groups

* Breakout topology package options for readability

* chore(dropdown-like components): updated isFlipEnabled to true by def… (#8215)

* chore(dropdown-like components): updated isFlipEnabled to true by default

* Updated snapshots

* Updated failing integration test

* Updated conditional for adding static class

* Updated static logic based on Core updates

* Updated ContextSelector

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

 - @patternfly/react-catalog-view-extension@4.92.54
 - @patternfly/react-code-editor@4.82.54
 - @patternfly/react-console@4.92.54
 - @patternfly/react-core@4.258.2
 - @patternfly/react-docs@5.102.62
 - @patternfly/react-inline-edit-extension@4.86.55
 - demo-app-ts@4.204.9
 - @patternfly/react-integration@4.207.1
 - @patternfly/react-log-viewer@4.87.49
 - @patternfly/react-table@4.111.32
 - @patternfly/react-topology@4.90.9
 - @patternfly/react-virtualized-extension@4.88.54

* chore: bump @patternfly/patternfly to 4.219.2 (#8296)

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

 - @patternfly/react-catalog-view-extension@4.92.55
 - @patternfly/react-charts@6.94.11
 - @patternfly/react-code-editor@4.82.55
 - @patternfly/react-console@4.92.55
 - @patternfly/react-core@4.258.3
 - @patternfly/react-docs@5.102.63
 - @patternfly/react-icons@4.92.10
 - @patternfly/react-inline-edit-extension@4.86.56
 - demo-app-ts@4.204.10
 - @patternfly/react-log-viewer@4.87.50
 - @patternfly/react-styles@4.91.10
 - @patternfly/react-table@4.111.33
 - @patternfly/react-tokens@4.93.10
 - @patternfly/react-topology@4.90.10
 - @patternfly/react-virtualized-extension@4.88.55

* Fix group labels, revert breaking change (#8299)

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

 - @patternfly/react-docs@5.102.64
 - demo-app-ts@4.204.11
 - @patternfly/react-integration@4.207.2
 - @patternfly/react-topology@4.90.11

* Update extensions.yml

* Update add-new-issues-to-project.yml

* chore(docs): Added release notes 2022.14 (#8301)

* chore(docs): Added rleases notes 2022.14

* updated topology version

* fixes from reviews

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.56
 - @patternfly/react-code-editor@4.82.56
 - @patternfly/react-console@4.92.56
 - @patternfly/react-core@4.258.4
 - @patternfly/react-docs@5.102.65
 - @patternfly/react-inline-edit-extension@4.86.57
 - demo-app-ts@4.204.12
 - @patternfly/react-log-viewer@4.87.51
 - @patternfly/react-table@4.111.34
 - @patternfly/react-topology@4.90.12
 - @patternfly/react-virtualized-extension@4.88.56

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.61 (#8290)

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

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

 - @patternfly/react-docs@5.102.66

* Set status decorators to be opaque. (#8335)

* chore(tests): created shareable button mock (#8244)

* chore(Backdrop): update component unit tests to meet new standards with RTL (#8232)

Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

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

 - @patternfly/react-catalog-view-extension@4.92.57
 - @patternfly/react-code-editor@4.82.57
 - @patternfly/react-console@4.92.57
 - @patternfly/react-core@4.258.5
 - @patternfly/react-docs@5.102.67
 - @patternfly/react-inline-edit-extension@4.86.58
 - demo-app-ts@4.204.13
 - @patternfly/react-log-viewer@4.87.52
 - @patternfly/react-table@4.111.35
 - @patternfly/react-topology@4.90.13
 - @patternfly/react-virtualized-extension@4.88.57

* Bug Fix #8311 (#8312)

Bug - Label - hrefs in compact example have wrong anchor tag #8311

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

 - @patternfly/react-catalog-view-extension@4.92.58
 - @patternfly/react-code-editor@4.82.58
 - @patternfly/react-console@4.92.58
 - @patternfly/react-core@4.258.6
 - @patternfly/react-docs@5.102.68
 - @patternfly/react-inline-edit-extension@4.86.59
 - demo-app-ts@4.204.14
 - @patternfly/react-log-viewer@4.87.53
 - @patternfly/react-table@4.111.36
 - @patternfly/react-topology@4.90.14
 - @patternfly/react-virtualized-extension@4.88.58

* fix(TimePicker): fixed bugs when updating time/minTime/maxTime props (#8267)

* fix(TimePicker): fixed bugs when updating time/minTime/maxTime props

* Added logic to update minTime and maxTime states

* Updated unit tests

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

 - @patternfly/react-catalog-view-extension@4.92.59
 - @patternfly/react-code-editor@4.82.59
 - @patternfly/react-console@4.92.59
 - @patternfly/react-core@4.258.7
 - @patternfly/react-docs@5.102.69
 - @patternfly/react-inline-edit-extension@4.86.60
 - demo-app-ts@4.204.15
 - @patternfly/react-log-viewer@4.87.54
 - @patternfly/react-table@4.111.37
 - @patternfly/react-topology@4.90.15
 - @patternfly/react-virtualized-extension@4.88.59

* chore(TextArea): converted examples to typescript (#8186)

* fix(TextArea): redo

* fix(TextArea): made requested changes

* fix(TextArea): typed functions and changed labels

* fix(bulk-select): fixed toggle spacing (#8326)

* fix(bulk-select): fixed toggle spacing

* chore(bulkselect): pr feedback

* chore(ToggleGroup): converted examples to typescript (#8266)

* chore(ToggleGroup): converted examples to typescript

* fix(ToggleGroup): refactored states and typed function arguments

* fix(ToggleGroup): removed unnecessary text

* fix(ToggleGroup): fixed requested changes

* fix(ToggleGroup): fixed requested changes

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

 - @patternfly/react-catalog-view-extension@4.92.60
 - @patternfly/react-code-editor@4.82.60
 - @patternfly/react-console@4.92.60
 - @patternfly/react-core@4.258.8
 - @patternfly/react-docs@5.102.70
 - @patternfly/react-inline-edit-extension@4.86.61
 - demo-app-ts@4.204.16
 - @patternfly/react-log-viewer@4.87.55
 - @patternfly/react-table@4.111.38
 - @patternfly/react-topology@4.90.16
 - @patternfly/react-virtualized-extension@4.88.60

* feat(Popper, misc): allow components to customize popper z-index (#8310)

* feat(Popper, misc): allow components to customize popper z-index

* update some prop descriptions

* update desc

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

 - @patternfly/react-catalog-view-extension@4.92.61
 - @patternfly/react-code-editor@4.82.61
 - @patternfly/react-console@4.92.61
 - @patternfly/react-core@4.259.0
 - @patternfly/react-docs@5.102.71
 - @patternfly/react-inline-edit-extension@4.86.62
 - demo-app-ts@4.204.17
 - @patternfly/react-log-viewer@4.87.56
 - @patternfly/react-table@4.111.39
 - @patternfly/react-topology@4.90.17
 - @patternfly/react-virtualized-extension@4.88.61

* feat(Progress): added helper text (#8307)

* feat(Progress): added helper text

* enabled custom components to be passed as children of ProgressHelperText

* spread props in ProgressHelperText

* improved prop description

* removed default isLiveRegion

* marked helper text prop as beta

* marked example as beta

* added custom component example

* refactored to make ProgressHelperText a basic wrapper component

* added locally defined capitalize function

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

 - @patternfly/react-catalog-view-extension@4.92.62
 - @patternfly/react-code-editor@4.82.62
 - @patternfly/react-console@4.92.62
 - @patternfly/react-core@4.260.0
 - @patternfly/react-docs@5.102.72
 - @patternfly/react-inline-edit-extension@4.86.63
 - demo-app-ts@4.204.18
 - @patternfly/react-log-viewer@4.87.57
 - @patternfly/react-table@4.111.40
 - @patternfly/react-topology@4.90.18
 - @patternfly/react-virtualized-extension@4.88.62

* Update README with create-react-app and YAML help (#8188)

I ran into some trouble using the code editor in my project. The main problems were that I had to do extra work that the docs didn't cover because I bootstrapped my project with `create-react-app` and I needed YAML highlighting support which required an extra plugin. This doc update should make it easier for anyone who's in the same boat :)

* chore(Text): update tests to new react testing library standards (#8280)

* chore(Text): update tests to new react testing library standards

* removed data-pf-content attribute and tests

* added tests to check for no class names

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

 - @patternfly/react-catalog-view-extension@4.92.63
 - @patternfly/react-code-editor@4.82.63
 - @patternfly/react-console@4.92.63
 - @patternfly/react-core@4.260.1
 - @patternfly/react-docs@5.102.73
 - @patternfly/react-inline-edit-extension@4.86.64
 - demo-app-ts@4.204.19
 - @patternfly/react-log-viewer@4.87.58
 - @patternfly/react-table@4.111.41
 - @patternfly/react-topology@4.90.19
 - @patternfly/react-virtualized-extension@4.88.63

* feat(MultipleFileUpload): added support for helper text (#8344)

* feat(MultipleFileUpload): added support for helper text

* adjusted verbiage

* added example description

* adjusted prop name

* adjusted forced error checkbox label

* refactored to make helper text component fully consumer managed

* Updated example comment

Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>

Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>

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

 - @patternfly/react-catalog-view-extension@4.92.64
 - @patternfly/react-code-editor@4.82.64
 - @patternfly/react-console@4.92.64
 - @patternfly/react-core@4.261.0
 - @patternfly/react-docs@5.102.74
 - @patternfly/react-inline-edit-extension@4.86.65
 - demo-app-ts@4.204.20
 - @patternfly/react-log-viewer@4.87.59
 - @patternfly/react-table@4.111.42
 - @patternfly/react-topology@4.90.20
 - @patternfly/react-virtualized-extension@4.88.64

* feat(MenuInput): use SearchInput instead of TextInput (#8329)

* feat(MenuInput): use SearchInput instead of TextInput

* fix cypress test

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

 - @patternfly/react-catalog-view-extension@4.92.65
 - @patternfly/react-code-editor@4.82.65
 - @patternfly/react-console@4.92.65
 - @patternfly/react-core@4.262.0
 - @patternfly/react-docs@5.102.75
 - @patternfly/react-inline-edit-extension@4.86.66
 - demo-app-ts@4.205.0
 - @patternfly/react-integration@4.208.0
 - @patternfly/react-log-viewer@4.87.60
 - @patternfly/react-table@4.111.43
 - @patternfly/react-topology@4.90.21
 - @patternfly/react-virtualized-extension@4.88.65

* fix(NumberInput): allow user to back out number to type input (#8304)

* fix(NumberInput): allow user to back out number to type input

* fix test

* fix plus logic for undefined

* pr feedback

* add example desc

* update example desc

* update examples for empty input

* add integration test, update integration test name

* feat(spinner): added isInline, updated link button (#8328)

* feat(spinner): added isInline, updated link button

* chore(button): update snaps

* chore(spinner/button): PR feedback

* fix(Popper): add display contents to wrapping divs (#8317)

* fix(Popper): add display contents to wrapping divs

* update snap

* restore old popper update for content changes

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

 - @patternfly/react-catalog-view-extension@4.92.66
 - @patternfly/react-code-editor@4.82.66
 - @patternfly/react-console@4.92.66
 - @patternfly/react-core@4.263.0
 - @patternfly/react-docs@5.102.76
 - @patternfly/react-inline-edit-extension@4.86.67
 - demo-app-ts@4.205.1
 - @patternfly/react-integration@4.208.1
 - @patternfly/react-log-viewer@4.87.61
 - @patternfly/react-table@4.111.44
 - @patternfly/react-topology@4.90.22
 - @patternfly/react-virtualized-extension@4.88.66

* chore(tabs): reworked tabs demos based on design/core updates (#8286)

* chore(tabs): reworked demos for consistency with core updates

* revert dashwrapper changes

* chore(tabs): add bottom border to secondary variants

* remove downloads.html

* PR feedback

* fix title sizes

* fixed status card title size

* fix remaining cards

* remove comment

* remove comment

* feat(Tabs): add TabAction, update core ver (#8348)

* feat(Tabs): add TabAction, update core ver

* desc updates, prop update

* adjust actions default order, add missing flag

* update description, add classname to span

* chore(deps): update dependency @patternfly/patternfly to v4.221.2 (#8358)

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

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

 - @patternfly/react-catalog-view-extension@4.93.0
 - @patternfly/react-charts@6.94.12
 - @patternfly/react-code-editor@4.82.67
 - @patternfly/react-console@4.93.0
 - @patternfly/react-core@4.264.0
 - @patternfly/react-docs@5.103.0
 - @patternfly/react-icons@4.93.0
 - @patternfly/react-inline-edit-extension@4.86.68
 - demo-app-ts@4.205.2
 - @patternfly/react-log-viewer@4.87.62
 - @patternfly/react-styles@4.92.0
 - @patternfly/react-table@4.111.45
 - @patternfly/react-tokens@4.94.0
 - @patternfly/react-topology@4.90.23
 - @patternfly/react-virtualized-extension@4.88.67

* chore:(docs): rel notes 2022 (#8376)

* chore:(docs): rel notes 2022

* added screenshots

* fix typos

* Fix typo so i can merge

Co-authored-by: Titani <tlabaj@redaht.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>

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

 - @patternfly/react-docs@5.103.1

* chore: fix release notes typos (#8379)

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

 - @patternfly/react-docs@5.103.2

* fix(build): stopped shipping mock files (#8396)

* fix: react-core subpaths for next/deprecated modules (#8341)

* chore(Tooltip): converted examples to typescript (#8052)

* chore(Tooltip): converted examples to typescript

* chore(Tooltip): fixed selection variable typing issue

* chore(Tooltip): shortened updatedTrigger code

* chore(Tooltip): changed span to Button in basic example

* remove unnecessary tabindex

Co-authored-by: nicolethoen <nthoen@redhat.com>

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

 - @patternfly/react-catalog-view-extension@4.93.1
 - @patternfly/react-code-editor@4.82.68
 - @patternfly/react-console@4.93.1
 - @patternfly/react-core@4.264.1
 - @patternfly/react-docs@5.103.3
 - @patternfly/react-inline-edit-extension@4.86.69
 - demo-app-ts@4.205.3
 - @patternfly/react-log-viewer@4.87.63
 - @patternfly/react-table@4.111.46
 - @patternfly/react-topology@4.90.24
 - @patternfly/react-virtualized-extension@4.88.68

* chore(ComposableTable): Update custom row wrapper example (#8365)

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

 - @patternfly/react-docs@5.103.4
 - @patternfly/react-inline-edit-extension@4.86.70
 - @patternfly/react-table@4.111.47

* fix(Dropdown next): Added itemId to DropdownItem props (#8356)

Co-authored-by: Titani <tlabaj@redaht.com>

* feat: add pf-screen-reader for screen reader text to Badge (#8361)

* feat: add pf-screen-reader for screen reader text to Badge

#8354

* test: update snapshots according to new classname for badge reader

* fix: badge screen reader prop, delete static class

* update screen reader classname

Signed-off-by: erkanercan <erkanercandev@gmail.com>

* fix: move screen reader span below children, update unread examples

Signed-off-by: erkanercan <erkanercandev@gmail.com>

* fix: correct example typo

Signed-off-by: erkanercan <erkanercandev@gmail.com>

Signed-off-by: erkanercan <erkanercandev@gmail.com>

* fix(Menu): updated breadcrumb drilldown example (#8385)

* Create "deprecated" subpaths in react-table  (#8381)

* change base to main

* revert index.ts change

* Update patternfly-docs.source.js

* fix(TimePicker): removed redundant onBlur (#8366)

* chore(deps): update dependency @patternfly/patternfly to v4.221.3 (#8382)

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

* feature(Wizard/next): Allow for async functions when navigating between steps, and add isCollapsible prop control to WizardStep (#8332)

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.68 (#8367)

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

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

 - @patternfly/react-catalog-view-extension@4.93.2
 - @patternfly/react-charts@6.94.13
 - @patternfly/react-code-editor@4.82.69
 - @patternfly/react-console@4.93.2
 - @patternfly/react-core@4.265.0
 - @patternfly/react-docs@5.103.5
 - @patternfly/react-icons@4.93.1
 - @patternfly/react-inline-edit-extension@4.86.71
 - demo-app-ts@4.205.4
 - @patternfly/react-log-viewer@4.87.64
 - @patternfly/react-styles@4.92.1
 - @patternfly/react-table@4.111.48
 - @patternfly/react-tokens@4.94.1
 - @patternfly/react-topology@4.90.25
 - @patternfly/react-virtualized-extension@4.88.69

* chore(Tabs): converted examples to TypeScript (#8337)

* chore(Tabs): converted examples to TypeScript

* fix(Tabs): fixed file name

* fix(Tabs): typed function arguments

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

 - @patternfly/react-catalog-view-extension@4.93.3
 - @patternfly/react-code-editor@4.82.70
 - @patternfly/react-console@4.93.3
 - @patternfly/react-core@4.265.1
 - @patternfly/react-docs@5.103.6
 - @patternfly/react-inline-edit-extension@4.86.72
 - demo-app-ts@4.205.5
 - @patternfly/react-log-viewer@4.87.65
 - @patternfly/react-table@4.111.49
 - @patternfly/react-topology@4.90.26
 - @patternfly/react-virtualized-extension@4.88.70

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.69 (#8411)

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

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

 - @patternfly/react-docs@5.103.7

* fix(AdvancedSearchMenu): allow spaces in search form field values (#8372)

When the user uses a space in a form field value this will get wrapped
in quotes within the Search input.

Closes #8369

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

 - @patternfly/react-catalog-view-extension@4.93.4
 - @patternfly/react-code-editor@4.82.71
 - @patternfly/react-console@4.93.4
 - @patternfly/react-core@4.265.2
 - @patternfly/react-docs@5.103.8
 - @patternfly/react-inline-edit-extension@4.86.73
 - demo-app-ts@4.205.6
 - @patternfly/react-log-viewer@4.87.66
 - @patternfly/react-table@4.111.50
 - @patternfly/react-topology@4.90.27
 - @patternfly/react-virtualized-extension@4.88.71

* feat(ClipboardCopy, Truncate): add removeFindDomNode (#8371)

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

 - @patternfly/react-catalog-view-extension@4.93.5
 - @patternfly/react-code-editor@4.82.72
 - @patternfly/react-console@4.93.5
 - @patternfly/react-core@4.266.0
 - @patternfly/react-docs@5.103.9
 - @patternfly/react-inline-edit-extension@4.86.74
 - demo-app-ts@4.205.7
 - @patternfly/react-log-viewer@4.87.67
 - @patternfly/react-table@4.111.51
 - @patternfly/react-topology@4.90.28
 - @patternfly/react-virtualized-extension@4.88.72

* chore(Panel): update component unit tests to meet new RTL standards (#8346)

* chore(Panel): update component unit tests to meet new standards with RTL #7594

* few small changes to Test Titles for consistency

Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

* chore(Sidebar): update tests to new react testing library standards (#8342)

* chore(Sidebar): update tests to new react testing library standards

* Refactored test to check for class names that exist by default

* Changed query to include parentElement

* Added test general existence of class name test

* Refactored the test for checking different width types

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

 - @patternfly/react-catalog-view-extension@4.93.6
 - @patternfly/react-code-editor@4.82.73
 - @patternfly/react-console@4.93.6
 - @patternfly/react-core@4.266.1
 - @patternfly/react-docs@5.103.10
 - @patternfly/react-inline-edit-extension@4.86.75
 - demo-app-ts@4.205.8
 - @patternfly/react-log-viewer@4.87.68
 - @patternfly/react-table@4.111.52
 - @patternfly/react-topology@4.90.29
 - @patternfly/react-virtualized-extension@4.88.73

* chore(pagination): fixed filter not applying in sticky example (#8133)

* chore(pagination): fixed filter not applying in sticy example

* feat: add page and pagesection to example

* Removed Page components

Co-authored-by: Eric Olkowski <thatblindgeye@gmail.com>

* fix(Pagination): Added support for insets (#8412)

* fix(Pagination): Added support for insets

* remove 3xl inset

* update widget id in example

* add usePageInsets prop

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.93.7
 - @patternfly/react-code-editor@4.82.74
 - @patternfly/react-console@4.93.7
 - @patternfly/react-core@4.266.2
 - @patternfly/react-docs@5.103.11
 - @patternfly/react-inline-edit-extension@4.86.76
 - demo-app-ts@4.205.9
 - @patternfly/react-log-viewer@4.87.69
 - @patternfly/react-table@4.111.53
 - @patternfly/react-topology@4.90.30
 - @patternfly/react-virtualized-extension@4.88.74

* Core bump 4 222 3 (#8420)

* chore(deps): update dependency @patternfly/patternfly to v4.222.3

* remove wait

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.93.8
 - @patternfly/react-charts@6.94.14
 - @patternfly/react-code-editor@4.82.75
 - @patternfly/react-console@4.93.8
 - @patternfly/react-core@4.266.3
 - @patternfly/react-docs@5.103.12
 - @patternfly/react-icons@4.93.2
 - @patternfly/react-inline-edit-extension@4.86.77
 - demo-app-ts@4.205.10
 - @patternfly/react-integration@4.208.2
 - @patternfly/react-log-viewer@4.87.70
 - @patternfly/react-styles@4.92.2
 - @patternfly/react-table@4.111.54
 - @patternfly/react-tokens@4.94.2
 - @patternfly/react-topology@4.90.31
 - @patternfly/react-virtualized-extension@4.88.75

* feat(Menu): add drilldown filter demo, add flag to support demo & fix some keyboard interaction (#8405)

* feat(Menu): add drilldown filter demo, add flag to support demo & fix some keyboard interaction

* alternate method

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

 - @patternfly/react-catalog-view-extension@4.93.9
 - @patternfly/react-code-editor@4.82.76
 - @patternfly/react-console@4.93.9
 - @patternfly/react-core@4.267.0
 - @patternfly/react-docs@5.103.13
 - @patternfly/react-inline-edit-extension@4.86.78
 - demo-app-ts@4.205.11
 - @patternfly/react-log-viewer@4.87.71
 - @patternfly/react-table@4.111.55
 - @patternfly/react-topology@4.90.32
 - @patternfly/react-virtualized-extension@4.88.76

* feat(Table): add sticky modifiers to Td (#8391)

* feat(Table): allow sticky Td

* update description

* update disabled type, update desc

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

 - @patternfly/react-docs@5.103.14
 - @patternfly/react-inline-edit-extension@4.86.79
 - @patternfly/react-table@4.112.0

* chore(deps): update dependency @patternfly/patternfly to v4.222.4 (#8421)

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

* fix(VncConsole): prevent running initialization code more than once (#8373) (#8374)

The functions that were on the dependency list of the useEffect hook
got redefined each time the component got updated, resulting
in the component's initialization code, from within the useEffect hook,
to be running more than once.
That was unwanted behavior and the useCallback wrappers should prevent
it.

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

 - @patternfly/react-catalog-view-extension@4.93.10
 - @patternfly/react-charts@6.94.15
 - @patternfly/react-code-editor@4.82.77
 - @patternfly/react-console@4.93.10
 - @patternfly/react-core@4.267.1
 - @patternfly/react-docs@5.103.15
 - @patternfly/react-icons@4.93.3
 - @patternfly/react-inline-edit-extension@4.86.80
 - demo-app-ts@4.205.12
 - @patternfly/react-log-viewer@4.87.72
 - @patternfly/react-styles@4.92.3
 - @patternfly/react-table@4.112.1
 - @patternfly/react-tokens@4.94.3
 - @patternfly/react-topology@4.90.33
 - @patternfly/react-virtualized-extension@4.88.77

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.70 (#8427)

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

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

 - @patternfly/react-docs@5.103.16

* fix(Menu): removed li wrapper from breadcrumb example (#8433)

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

 - @patternfly/react-catalog-view-extension@4.93.11
 - @patternfly/react-code-editor@4.82.78
 - @patternfly/react-console@4.93.11
 - @patternfly/react-core@4.267.2
 - @patternfly/react-docs@5.103.17
 - @patternfly/react-inline-edit-extension@4.86.81
 - demo-app-ts@4.205.13
 - @patternfly/react-log-viewer@4.87.73
 - @patternfly/react-table@4.112.2
 - @patternfly/react-topology@4.90.34
 - @patternfly/react-virtualized-extension@4.88.78

* Fix Nav Flyout Accessibility (#8279)

* fix(NavItem): disallow flyout and link props to both be defined on NavItem

* docs(Navigation): remove links from NavItems with flyouts

* fix(NavItem): remove aria-expanded prop

* fix(NavItem): use a button for Component if there is a flyout

* fix(NavItem): allow flyout to be opened on pressing Enter

* fix(MenuItem): disallow flyoutMenu and link props to both be defined

* docs(Navigation): remove links from MenuItems with flyouts

* fix(SelectOption): make props conditional to align with MenuItemProps

* fix(DropdownItem): make props conditional to align with MenuItemProps

* fix(NavItem): revert conditional prop changes

* fix(NavItem): fix opening nested MenuItem-based flyouts with keyboard

* fix(NavItem): add a console.err message if to and flyout are used together

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

 - @patternfly/react-catalog-view-extension@4.93.12
 - @patternfly/react-code-editor@4.82.79
 - @patternfly/react-console@4.93.12
 - @patternfly/react-core@4.267.3
 - @patternfly/react-docs@5.103.18
 - @patternfly/react-inline-edit-extension@4.86.82
 - demo-app-ts@4.205.14
 - @patternfly/react-integration@4.208.3
 - @patternfly/react-log-viewer@4.87.74
 - @patternfly/react-table@4.112.3
 - @patternfly/react-topology@4.90.35
 - @patternfly/react-virtualized-extension@4.88.79

* chore(CalendarMonth): provided explicit guidance for labeling an inline calendar month (#8375)

* chore(CalendarMonth): provided explicit guidance for labeling an inline calendar month

* update per PR comments

* move inline accommodations into an inlineProps prop

* fix typo and address PR comments

* fix test failures

* fix tests and snapshots

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

 - @patternfly/react-catalog-view-extension@4.93.13
 - @patternfly/react-code-editor@4.82.80
 - @patternfly/react-console@4.93.13
 - @patternfly/react-core@4.267.4
 - @patternfly/react-docs@5.103.19
 - @patternfly/react-inline-edit-extension@4.86.83
 - demo-app-ts@4.205.15
 - @patternfly/react-log-viewer@4.87.75
 - @patternfly/react-table@4.112.4
 - @patternfly/react-topology@4.90.36
 - @patternfly/react-virtualized-extension@4.88.80

* chore(Wizard): Convert examples to typescript (#8287)

* chore(Wizard): Convert examples to typescript

* Fix import statements

* Requested changes for cleanup

* Integrate FinishedStep and SampleForm into examples directly

* Remove unused onExpand function

* Fix useEffect not defined

* Import CogsIcon

* a11y fixes for FinishedStep and SampleForm conversions

* a11y fixes

* Bug Fixes

* Fixed incorrect Radio button state setting

* Revert Progressive Steps example change

* Fix Validate on Button Press for Wizard

* Fix import in example

* Remove unnecessary step state

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

 - @patternfly/react-catalog-view-extension@4.93.14
 - @patternfly/react-code-editor@4.82.81
 - @patternfly/react-console@4.93.14
 - @patternfly/react-core@4.267.5
 - @patternfly/react-docs@5.103.20
 - @patternfly/react-inline-edit-extension@4.86.84
 - demo-app-ts@4.205.16
 - @patternfly/react-log-viewer@4.87.76
 - @patternfly/react-table@4.112.5
 - @patternfly/react-topology@4.90.37
 - @patternfly/react-virtualized-extension@4.88.81

* fix: Remove package exports and replace subpaths script (#8438)

* fix: Remove package exports and replace subpaths script

* adding more subpaths in the event 'next' or 'deprecated' have relative paths

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

 - @patternfly/react-catalog-view-extension@4.93.15
 - @patternfly/react-code-editor@4.82.82
 - @patternfly/react-console@4.93.15
 - @patternfly/react-core@4.267.6
 - @patternfly/react-docs@5.103.21
 - @patternfly/react-inline-edit-extension@4.86.85
 - demo-app-ts@4.205.17
 - @patternfly/react-log-viewer@4.87.77
 - @patternfly/react-table@4.112.6
 - @patternfly/react-topology@4.90.38
 - @patternfly/react-virtualized-extension@4.88.82

* fix tests

* fix merge errrors

Signed-off-by: erkanercan <erkanercandev@gmail.com>
Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: Titani <tlabaj@redaht.com>
Co-authored-by: Andy Vo <58367784+andyyvo@users.noreply.github.com>
Co-authored-by: Samuel Atefah <68087918+samuelatefah@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
Co-authored-by: drewamunat2 <78369347+drewamunat2@users.noreply.github.com>
Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>
Co-authored-by: Tomas Psota <72520867+tompsota@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: kev-kim <71181430+kev-kim@users.noreply.github.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: janwright73 <40367673+janwright73@users.noreply.github.com>
Co-authored-by: Jan Wright <jawright@redhat.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: Jeff Phillips <jephilli@redhat.com>
Co-authored-by: Gustavo Santos <53129852+gefgu@users.noreply.github.com>
Co-authored-by: Christoph Jerolimov <jerolimov+github@redhat.com>
Co-authored-by: Jeff Puzzo <96431149+jeffpuzzo@users.noreply.github.com>
Co-authored-by: kialam <digitalanime@gmail.com>
Co-authored-by: ishaanparlikar <43013132+ishaanparlikar@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>
Co-authored-by: Adam Drew <adamrdrew@live.com>
Co-authored-by: Erkan Ercan <erkanercandev@gmail.com>
Co-authored-by: Katerina Koukiou <kkoukiou@redhat.com>
Co-authored-by: Eric Olkowski <thatblindgeye@gmail.com>
Co-authored-by: Brian Rui <57109640+RuiBrian@users.noreply.github.com>
Co-authored-by: Xiangyu Shen <xshen2006@yahoo.com>
dlabrecq added a commit that referenced this pull request Jan 25, 2023
* feat(simple list): removed deprecated prop (#8132)

* chore: remove keycodes definition (#8174)

* chore(FileUpload): remove deprecated onChange prop (#8155)

* chore(Spinner): updated isSVG prop default value (#8183)

* chore(Spinner): updated isSVG prop default value

* updated prop in example to meet a11y requirements

* updated react-console snapshots

* chore(pagination): rename `ToggleTemplateProps` to `PaginationToggleTemplateProps` in pagination component (#8134)

* feat(button): combine isSmall and isLarge into customSize (#8144)

* button - combine isSmall and isLarge into customSize

* use enum

* use size for button prop name

* fixing import

* use default vs md

* reorder enum

* reorder prop values, new verbiage for prop description

* fix(Page): updated onPageResize prop to undefined default (#8203)

* chore(Divider): remove isVertical prop (#8199)

* chore(Card): removed isHoverable prop (#8196)

* chore(card): remove isHoverable

* update card snapshot

* chore(Page) remove deprecated props (#8220)

* chore(Page) remove deprecated props

* update tests

* update docs and integration tests

* fix snapshots, remove isManagedSidebar prop

* feat(Toolbar): remove depricated visiblity (#8212)

* chore(Dropdown): remove deprecated props (#8179)

* chore(Dropdown): remove deprecated props

* chore(Dropdown): cleaning up lint comment

* fix(ClipboardCopy): remove popoverposition (#8226)

* fix(ClipboardCopy): remove popoverposition

* edit doc comment

* remove popover type from clipboardcopybutton

* Chore: Rebase v5 (#8227)

* fix(Menu): fixed height issue with drilldown examples (#8033)

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

 - @patternfly/react-catalog-view-extension@4.92.27
 - @patternfly/react-code-editor@4.82.27
 - @patternfly/react-console@4.92.27
 - @patternfly/react-core@4.250.2
 - @patternfly/react-docs@5.102.32
 - @patternfly/react-inline-edit-extension@4.86.28
 - demo-app-ts@4.202.8
 - @patternfly/react-log-viewer@4.87.22
 - @patternfly/react-table@4.111.5
 - @patternfly/react-topology@4.88.27
 - @patternfly/react-virtualized-extension@4.88.27

* chore(docs): Release notes 2022.13 (#8168)

* chore(docs): Release notes 2022.13

* release note updates

* add screnshots and versions

* update note

* updates from comments

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.33

* chore(docs): Updated release notes (#8202)

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.34

* chore(Sidebar): converted examples to typescript (#8062)

* chore(Banner): update tests to new react testing library standards (#8160)

* chore(Banner): update tests to new react testing library standards

* add additional test to test screenReaderText

* replace toHaveTextContent with toBeInTheDocument matcher

* add test to check for pf-u-screen-reader class

* specify est timezone for jest to run with (#8151)

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

 - @patternfly/react-catalog-view-extension@4.92.28
 - @patternfly/react-code-editor@4.82.28
 - @patternfly/react-console@4.92.28
 - @patternfly/react-core@4.250.3
 - @patternfly/react-docs@5.102.35
 - @patternfly/react-inline-edit-extension@4.86.29
 - demo-app-ts@4.202.9
 - @patternfly/react-log-viewer@4.87.23
 - @patternfly/react-table@4.111.6
 - @patternfly/react-topology@4.88.28
 - @patternfly/react-virtualized-extension@4.88.28

* feature(Select): flag to put create option at top of typeahead (#8165)

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

 - @patternfly/react-catalog-view-extension@4.92.29
 - @patternfly/react-code-editor@4.82.29
 - @patternfly/react-console@4.92.29
 - @patternfly/react-core@4.250.4
 - @patternfly/react-docs@5.102.36
 - @patternfly/react-inline-edit-extension@4.86.30
 - demo-app-ts@4.202.10
 - @patternfly/react-log-viewer@4.87.24
 - @patternfly/react-table@4.111.7
 - @patternfly/react-topology@4.88.29
 - @patternfly/react-virtualized-extension@4.88.29

* fix(Dropdown next): Add support for forward ref and updated docs. (#8142)

* fix(Dropdown next): Add support for forward ref and updated docs.

* hide inner ref prop

* hide innerRef

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.30
 - @patternfly/react-code-editor@4.82.30
 - @patternfly/react-console@4.92.30
 - @patternfly/react-core@4.250.5
 - @patternfly/react-docs@5.102.37
 - @patternfly/react-inline-edit-extension@4.86.31
 - demo-app-ts@4.202.11
 - @patternfly/react-log-viewer@4.87.25
 - @patternfly/react-table@4.111.8
 - @patternfly/react-topology@4.88.30
 - @patternfly/react-virtualized-extension@4.88.30

* chore(Title): update tests to new RTL standards (#8156)

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

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

 - @patternfly/react-catalog-view-extension@4.92.31
 - @patternfly/react-code-editor@4.82.31
 - @patternfly/react-console@4.92.31
 - @patternfly/react-core@4.250.6
 - @patternfly/react-docs@5.102.38
 - @patternfly/react-inline-edit-extension@4.86.32
 - demo-app-ts@4.202.12
 - @patternfly/react-log-viewer@4.87.26
 - @patternfly/react-table@4.111.9
 - @patternfly/react-topology@4.88.31
 - @patternfly/react-virtualized-extension@4.88.31

* docs(Empty state): Added EmptyStatePrimary to documentation (#8161)

* docs(Empty state): Added EmptyStatePrimary to documentation

* fix typo

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.32
 - @patternfly/react-code-editor@4.82.32
 - @patternfly/react-console@4.92.32
 - @patternfly/react-core@4.250.7
 - @patternfly/react-docs@5.102.39
 - @patternfly/react-inline-edit-extension@4.86.33
 - demo-app-ts@4.202.13
 - @patternfly/react-log-viewer@4.87.27
 - @patternfly/react-table@4.111.10
 - @patternfly/react-topology@4.88.32
 - @patternfly/react-virtualized-extension@4.88.32

* fix(Slider): correct tab order when input is above thumb (#8190)

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.43 (#8129)

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

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

 - @patternfly/react-catalog-view-extension@4.92.33
 - @patternfly/react-code-editor@4.82.33
 - @patternfly/react-console@4.92.33
 - @patternfly/react-core@4.250.8
 - @patternfly/react-docs@5.102.40
 - @patternfly/react-inline-edit-extension@4.86.34
 - demo-app-ts@4.202.14
 - @patternfly/react-log-viewer@4.87.28
 - @patternfly/react-table@4.111.11
 - @patternfly/react-topology@4.88.33
 - @patternfly/react-virtualized-extension@4.88.33

* feat(label+labelGroup): update aria-labels to include label text (#8192)

* feat(label+labelGroup): update aria-labels to include editable label text

* PR feedback from Eric

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

 - @patternfly/react-catalog-view-extension@4.92.34
 - @patternfly/react-code-editor@4.82.34
 - @patternfly/react-console@4.92.34
 - @patternfly/react-core@4.251.0
 - @patternfly/react-docs@5.102.41
 - @patternfly/react-inline-edit-extension@4.86.35
 - demo-app-ts@4.202.15
 - @patternfly/react-log-viewer@4.87.29
 - @patternfly/react-table@4.111.12
 - @patternfly/react-topology@4.88.34
 - @patternfly/react-virtualized-extension@4.88.34

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.44 (#8225)

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

* chore(SkipToContent): converted examples to typescript (#8138)

* chore(SkipToContent): converted examples to typescript

* fix(SkipToContent): added trailing newline for linter

* chore(TextInput): converted examples to typescript (#8137)

* chore(TextInput): converted examples to typescript

* fix(TextInput): removed problematic file

* fix(TextInput): added file back with correct name

* fix(TextInput): fixed requested changes

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

 - @patternfly/react-catalog-view-extension@4.92.35
 - @patternfly/react-code-editor@4.82.35
 - @patternfly/react-console@4.92.35
 - @patternfly/react-core@4.251.1
 - @patternfly/react-docs@5.102.42
 - @patternfly/react-inline-edit-extension@4.86.36
 - demo-app-ts@4.202.16
 - @patternfly/react-log-viewer@4.87.30
 - @patternfly/react-table@4.111.13
 - @patternfly/react-topology@4.88.35
 - @patternfly/react-virtualized-extension@4.88.35

* feat(simple list): removed deprecated prop (#8132)

* chore: remove keycodes definition (#8174)

* chore(FileUpload): remove deprecated onChange prop (#8155)

* chore(Spinner): updated isSVG prop default value (#8183)

* chore(Spinner): updated isSVG prop default value

* updated prop in example to meet a11y requirements

* updated react-console snapshots

* chore(pagination): rename `ToggleTemplateProps` to `PaginationToggleTemplateProps` in pagination component (#8134)

* feat(button): combine isSmall and isLarge into customSize (#8144)

* button - combine isSmall and isLarge into customSize

* use enum

* use size for button prop name

* fixing import

* use default vs md

* reorder enum

* reorder prop values, new verbiage for prop description

* fix(Page): updated onPageResize prop to undefined default (#8203)

* chore(Divider): remove isVertical prop (#8199)

* chore(Card): removed isHoverable prop (#8196)

* chore(card): remove isHoverable

* update card snapshot

* chore(Page) remove deprecated props (#8220)

* chore(Page) remove deprecated props

* update tests

* update docs and integration tests

* fix snapshots, remove isManagedSidebar prop

* feat(Toolbar): remove depricated visiblity (#8212)

* chore(Dropdown): remove deprecated props (#8179)

* chore(Dropdown): remove deprecated props

* chore(Dropdown): cleaning up lint comment

* fix(ClipboardCopy): remove popoverposition (#8226)

* fix(ClipboardCopy): remove popoverposition

* edit doc comment

* remove popover type from clipboardcopybutton

Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: Titani <tlabaj@redaht.com>
Co-authored-by: Andy Vo <58367784+andyyvo@users.noreply.github.com>
Co-authored-by: Samuel Atefah <68087918+samuelatefah@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
Co-authored-by: drewamunat2 <78369347+drewamunat2@users.noreply.github.com>
Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>
Co-authored-by: Tomas Psota <72520867+tompsota@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: kev-kim <71181430+kev-kim@users.noreply.github.com>
Co-authored-by: Gustavo Santos <53129852+gefgu@users.noreply.github.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: Shakirul Hasan <shakirulhkhan@gmail.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>

* Upgrade 'react-dropzone' to latest version (#7926)

* fix(Nav): horizontalsubnav aria label default to Local (#8213)

* fix(Nav): make aria label for horizontalsubnav default to Local

* update test snap

* update example custom aria labels as per pr comments

* removed ToggleMenuBaseProps (#8235)

* feat(Tabs): enforce restricted type for children (#8217)

* chore(Popover): remove deprecated props (#8201)

* chore(Popover): remove deprecated props

* remove TippyInstance props

* chore(Tooltip) remove deprecated props (#8231)

* chore(Tooltip) remove deprecated props

* fix demo

* remove deprecated test from demo

* chore(Accordion, ExpandableSection, DescriptionList): update displaySize prop values (#8206)

* updated displaySize prop to match new recommendations

* update test description

* fix expandable integration demo

* fix displaySize in remaining md files

* address PR feedback for descriptionList example

* chore: V5 rebase (#8323)

* fix(Menu): fixed height issue with drilldown examples (#8033)

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

 - @patternfly/react-catalog-view-extension@4.92.27
 - @patternfly/react-code-editor@4.82.27
 - @patternfly/react-console@4.92.27
 - @patternfly/react-core@4.250.2
 - @patternfly/react-docs@5.102.32
 - @patternfly/react-inline-edit-extension@4.86.28
 - demo-app-ts@4.202.8
 - @patternfly/react-log-viewer@4.87.22
 - @patternfly/react-table@4.111.5
 - @patternfly/react-topology@4.88.27
 - @patternfly/react-virtualized-extension@4.88.27

* chore(docs): Release notes 2022.13 (#8168)

* chore(docs): Release notes 2022.13

* release note updates

* add screnshots and versions

* update note

* updates from comments

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.33

* chore(docs): Updated release notes (#8202)

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.34

* chore(Sidebar): converted examples to typescript (#8062)

* chore(Banner): update tests to new react testing library standards (#8160)

* chore(Banner): update tests to new react testing library standards

* add additional test to test screenReaderText

* replace toHaveTextContent with toBeInTheDocument matcher

* add test to check for pf-u-screen-reader class

* specify est timezone for jest to run with (#8151)

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

 - @patternfly/react-catalog-view-extension@4.92.28
 - @patternfly/react-code-editor@4.82.28
 - @patternfly/react-console@4.92.28
 - @patternfly/react-core@4.250.3
 - @patternfly/react-docs@5.102.35
 - @patternfly/react-inline-edit-extension@4.86.29
 - demo-app-ts@4.202.9
 - @patternfly/react-log-viewer@4.87.23
 - @patternfly/react-table@4.111.6
 - @patternfly/react-topology@4.88.28
 - @patternfly/react-virtualized-extension@4.88.28

* feature(Select): flag to put create option at top of typeahead (#8165)

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

 - @patternfly/react-catalog-view-extension@4.92.29
 - @patternfly/react-code-editor@4.82.29
 - @patternfly/react-console@4.92.29
 - @patternfly/react-core@4.250.4
 - @patternfly/react-docs@5.102.36
 - @patternfly/react-inline-edit-extension@4.86.30
 - demo-app-ts@4.202.10
 - @patternfly/react-log-viewer@4.87.24
 - @patternfly/react-table@4.111.7
 - @patternfly/react-topology@4.88.29
 - @patternfly/react-virtualized-extension@4.88.29

* fix(Dropdown next): Add support for forward ref and updated docs. (#8142)

* fix(Dropdown next): Add support for forward ref and updated docs.

* hide inner ref prop

* hide innerRef

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.30
 - @patternfly/react-code-editor@4.82.30
 - @patternfly/react-console@4.92.30
 - @patternfly/react-core@4.250.5
 - @patternfly/react-docs@5.102.37
 - @patternfly/react-inline-edit-extension@4.86.31
 - demo-app-ts@4.202.11
 - @patternfly/react-log-viewer@4.87.25
 - @patternfly/react-table@4.111.8
 - @patternfly/react-topology@4.88.30
 - @patternfly/react-virtualized-extension@4.88.30

* chore(Title): update tests to new RTL standards (#8156)

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

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

 - @patternfly/react-catalog-view-extension@4.92.31
 - @patternfly/react-code-editor@4.82.31
 - @patternfly/react-console@4.92.31
 - @patternfly/react-core@4.250.6
 - @patternfly/react-docs@5.102.38
 - @patternfly/react-inline-edit-extension@4.86.32
 - demo-app-ts@4.202.12
 - @patternfly/react-log-viewer@4.87.26
 - @patternfly/react-table@4.111.9
 - @patternfly/react-topology@4.88.31
 - @patternfly/react-virtualized-extension@4.88.31

* docs(Empty state): Added EmptyStatePrimary to documentation (#8161)

* docs(Empty state): Added EmptyStatePrimary to documentation

* fix typo

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.32
 - @patternfly/react-code-editor@4.82.32
 - @patternfly/react-console@4.92.32
 - @patternfly/react-core@4.250.7
 - @patternfly/react-docs@5.102.39
 - @patternfly/react-inline-edit-extension@4.86.33
 - demo-app-ts@4.202.13
 - @patternfly/react-log-viewer@4.87.27
 - @patternfly/react-table@4.111.10
 - @patternfly/react-topology@4.88.32
 - @patternfly/react-virtualized-extension@4.88.32

* fix(Slider): correct tab order when input is above thumb (#8190)

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.43 (#8129)

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

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

 - @patternfly/react-catalog-view-extension@4.92.33
 - @patternfly/react-code-editor@4.82.33
 - @patternfly/react-console@4.92.33
 - @patternfly/react-core@4.250.8
 - @patternfly/react-docs@5.102.40
 - @patternfly/react-inline-edit-extension@4.86.34
 - demo-app-ts@4.202.14
 - @patternfly/react-log-viewer@4.87.28
 - @patternfly/react-table@4.111.11
 - @patternfly/react-topology@4.88.33
 - @patternfly/react-virtualized-extension@4.88.33

* feat(label+labelGroup): update aria-labels to include label text (#8192)

* feat(label+labelGroup): update aria-labels to include editable label text

* PR feedback from Eric

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

 - @patternfly/react-catalog-view-extension@4.92.34
 - @patternfly/react-code-editor@4.82.34
 - @patternfly/react-console@4.92.34
 - @patternfly/react-core@4.251.0
 - @patternfly/react-docs@5.102.41
 - @patternfly/react-inline-edit-extension@4.86.35
 - demo-app-ts@4.202.15
 - @patternfly/react-log-viewer@4.87.29
 - @patternfly/react-table@4.111.12
 - @patternfly/react-topology@4.88.34
 - @patternfly/react-virtualized-extension@4.88.34

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.44 (#8225)

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

* chore(SkipToContent): converted examples to typescript (#8138)

* chore(SkipToContent): converted examples to typescript

* fix(SkipToContent): added trailing newline for linter

* chore(TextInput): converted examples to typescript (#8137)

* chore(TextInput): converted examples to typescript

* fix(TextInput): removed problematic file

* fix(TextInput): added file back with correct name

* fix(TextInput): fixed requested changes

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

 - @patternfly/react-catalog-view-extension@4.92.35
 - @patternfly/react-code-editor@4.82.35
 - @patternfly/react-console@4.92.35
 - @patternfly/react-core@4.251.1
 - @patternfly/react-docs@5.102.42
 - @patternfly/react-inline-edit-extension@4.86.36
 - demo-app-ts@4.202.16
 - @patternfly/react-log-viewer@4.87.30
 - @patternfly/react-table@4.111.13
 - @patternfly/react-topology@4.88.35
 - @patternfly/react-virtualized-extension@4.88.35

* fix(JumpLinks): clean up demo in a drawer (#8182)

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

 - @patternfly/react-catalog-view-extension@4.92.36
 - @patternfly/react-code-editor@4.82.36
 - @patternfly/react-console@4.92.36
 - @patternfly/react-core@4.251.2
 - @patternfly/react-docs@5.102.43
 - @patternfly/react-inline-edit-extension@4.86.37
 - demo-app-ts@4.202.17
 - @patternfly/react-log-viewer@4.87.31
 - @patternfly/react-table@4.111.14
 - @patternfly/react-topology@4.88.36
 - @patternfly/react-virtualized-extension@4.88.36

* TextArea test revamp (#8150)

* Text area test revamp

* Edit ref test

* remove unnecessary tests

* add tests for default behavior

* add default validity test

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

 - @patternfly/react-catalog-view-extension@4.92.37
 - @patternfly/react-code-editor@4.82.37
 - @patternfly/react-console@4.92.37
 - @patternfly/react-core@4.251.3
 - @patternfly/react-docs@5.102.44
 - @patternfly/react-inline-edit-extension@4.86.38
 - demo-app-ts@4.202.18
 - @patternfly/react-log-viewer@4.87.32
 - @patternfly/react-table@4.111.15
 - @patternfly/react-topology@4.88.37
 - @patternfly/react-virtualized-extension@4.88.37

* chore(deps): update dependency @patternfly/patternfly to v4.218.0 (#8234)

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

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

 - @patternfly/react-catalog-view-extension@4.92.38
 - @patternfly/react-charts@6.94.8
 - @patternfly/react-code-editor@4.82.38
 - @patternfly/react-console@4.92.38
 - @patternfly/react-core@4.251.4
 - @patternfly/react-docs@5.102.45
 - @patternfly/react-icons@4.92.7
 - @patternfly/react-inline-edit-extension@4.86.39
 - demo-app-ts@4.202.19
 - @patternfly/react-log-viewer@4.87.33
 - @patternfly/react-styles@4.91.7
 - @patternfly/react-table@4.111.16
 - @patternfly/react-tokens@4.93.7
 - @patternfly/react-topology@4.88.38
 - @patternfly/react-virtualized-extension@4.88.38

* chore(deps): update dependency @patternfly/patternfly to v4.219.0 (#8239)

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

* feat(DataList): pass button props to toggle (#8222)

* feat(DataList): pass button props to toggle

* fix duplicate id

* missed an id

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

 - @patternfly/react-catalog-view-extension@4.92.39
 - @patternfly/react-charts@6.94.9
 - @patternfly/react-code-editor@4.82.39
 - @patternfly/react-console@4.92.39
 - @patternfly/react-core@4.252.0
 - @patternfly/react-docs@5.102.46
 - @patternfly/react-icons@4.92.8
 - @patternfly/react-inline-edit-extension@4.86.40
 - demo-app-ts@4.202.20
 - @patternfly/react-log-viewer@4.87.34
 - @patternfly/react-styles@4.91.8
 - @patternfly/react-table@4.111.17
 - @patternfly/react-tokens@4.93.8
 - @patternfly/react-topology@4.88.39
 - @patternfly/react-virtualized-extension@4.88.39

* chore(SimpleList):convert to typescript (#8176)

* chore(SimpleList):convert to typescript

* updated types to match onSelect handler

* updated types to match onSelect handler and various name changes

Co-authored-by: Jan Wright <jawright@redhat.com>

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

 - @patternfly/react-catalog-view-extension@4.92.40
 - @patternfly/react-code-editor@4.82.40
 - @patternfly/react-console@4.92.40
 - @patternfly/react-core@4.252.1
 - @patternfly/react-docs@5.102.47
 - @patternfly/react-inline-edit-extension@4.86.41
 - demo-app-ts@4.202.21
 - @patternfly/react-log-viewer@4.87.35
 - @patternfly/react-table@4.111.18
 - @patternfly/react-topology@4.88.40
 - @patternfly/react-virtualized-extension@4.88.40

* fix(Dropdown): enabled right aligned dropdown with isFlipEnabled (#8224)

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

 - @patternfly/react-catalog-view-extension@4.92.41
 - @patternfly/react-code-editor@4.82.41
 - @patternfly/react-console@4.92.41
 - @patternfly/react-core@4.252.2
 - @patternfly/react-docs@5.102.48
 - @patternfly/react-inline-edit-extension@4.86.42
 - demo-app-ts@4.202.22
 - @patternfly/react-log-viewer@4.87.36
 - @patternfly/react-table@4.111.19
 - @patternfly/react-topology@4.88.41
 - @patternfly/react-virtualized-extension@4.88.41

* feat(Wizard,ClipboardCopy): add OUIA props to WizardNav, WizardNavItem, ClipboardCopy (#8193)

* feat(Wizard,ClipboardCopy): add OUIA props to WizardNav, WizardNavItem, ClipboardCopy

* add missing props

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

 - @patternfly/react-catalog-view-extension@4.92.42
 - @patternfly/react-code-editor@4.82.42
 - @patternfly/react-console@4.92.42
 - @patternfly/react-core@4.253.0
 - @patternfly/react-docs@5.102.49
 - @patternfly/react-inline-edit-extension@4.86.43
 - demo-app-ts@4.202.23
 - @patternfly/react-log-viewer@4.87.37
 - @patternfly/react-table@4.111.20
 - @patternfly/react-topology@4.88.42
 - @patternfly/react-virtualized-extension@4.88.42

* chore(Slider): revert taborder update (#8273)

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

 - @patternfly/react-catalog-view-extension@4.92.43
 - @patternfly/react-code-editor@4.82.43
 - @patternfly/react-console@4.92.43
 - @patternfly/react-core@4.253.1
 - @patternfly/react-docs@5.102.50
 - @patternfly/react-inline-edit-extension@4.86.44
 - demo-app-ts@4.202.24
 - @patternfly/react-log-viewer@4.87.38
 - @patternfly/react-table@4.111.21
 - @patternfly/react-topology@4.88.43
 - @patternfly/react-virtualized-extension@4.88.43

* feat(Topology): Add option to fit layout to screen upon layout completion (#8210)

* fix(CodeEditor): use codeEditorControls and clean up overall (#7931)

* fix(CodeEditor): use codeEditorControls and clean up overall

* fix lint errors

* use better variable names

* clean up per PR comments

* add back useCallback

* clean up

* clean up

* fix lint errors

* add console warnings when using deprecated props

* fix lint errors

* update warning messages

* fix lint again

* feat(menu): add optional danger state for menu items (#8131)

* feat(menu): add optional danger state for menu items

* docs(menu): add demo for danger state

* chore: move example to match html

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.46 (#8241)

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

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

 - @patternfly/react-catalog-view-extension@4.92.44
 - @patternfly/react-code-editor@4.82.44
 - @patternfly/react-console@4.92.44
 - @patternfly/react-core@4.254.0
 - @patternfly/react-docs@5.102.51
 - @patternfly/react-inline-edit-extension@4.86.45
 - demo-app-ts@4.203.0
 - @patternfly/react-integration@4.206.0
 - @patternfly/react-log-viewer@4.87.39
 - @patternfly/react-table@4.111.22
 - @patternfly/react-topology@4.89.0
 - @patternfly/react-virtualized-extension@4.88.44

* fix(DualListSelector): Add/remove button didn't work if search is used (#8269)

* feat(topology): Allow tooltip usage on pipeline task node badges (#8208)

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

 - @patternfly/react-catalog-view-extension@4.92.45
 - @patternfly/react-code-editor@4.82.45
 - @patternfly/react-console@4.92.45
 - @patternfly/react-core@4.254.1
 - @patternfly/react-docs@5.102.52
 - @patternfly/react-inline-edit-extension@4.86.46
 - demo-app-ts@4.204.0
 - @patternfly/react-integration@4.207.0
 - @patternfly/react-log-viewer@4.87.40
 - @patternfly/react-table@4.111.23
 - @patternfly/react-topology@4.90.0
 - @patternfly/react-virtualized-extension@4.88.45

* feat: add ouia support to dropdown next (#8135)

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

 - @patternfly/react-catalog-view-extension@4.92.46
 - @patternfly/react-code-editor@4.82.46
 - @patternfly/react-console@4.92.46
 - @patternfly/react-core@4.255.0
 - @patternfly/react-docs@5.102.53
 - @patternfly/react-inline-edit-extension@4.86.47
 - demo-app-ts@4.204.1
 - @patternfly/react-log-viewer@4.87.41
 - @patternfly/react-table@4.111.24
 - @patternfly/react-topology@4.90.1
 - @patternfly/react-virtualized-extension@4.88.46

* chore(button): added inline progress variant to progress demos (#8172)

* fix(Alert): prevent error being thrown when using invalid variant (#8229)

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

 - @patternfly/react-catalog-view-extension@4.92.47
 - @patternfly/react-code-editor@4.82.47
 - @patternfly/react-console@4.92.47
 - @patternfly/react-core@4.255.1
 - @patternfly/react-docs@5.102.54
 - @patternfly/react-inline-edit-extension@4.86.48
 - demo-app-ts@4.204.2
 - @patternfly/react-log-viewer@4.87.42
 - @patternfly/react-table@4.111.25
 - @patternfly/react-topology@4.90.2
 - @patternfly/react-virtualized-extension@4.88.47

* next(Wizard): Allow for WizardStep to better control state from props entry-point, include index (#8218)

* next(Wizard): Allow for WizardStep to better control state from props entrypoint, include index

* address feedback

* fix a couple existing wizard demos, update naming of combined steps in 'next' wizard context

* disable Back/Cancel for async Next step in Kitchen sink example

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

 - @patternfly/react-catalog-view-extension@4.92.48
 - @patternfly/react-code-editor@4.82.48
 - @patternfly/react-console@4.92.48
 - @patternfly/react-core@4.255.2
 - @patternfly/react-docs@5.102.55
 - @patternfly/react-inline-edit-extension@4.86.49
 - demo-app-ts@4.204.3
 - @patternfly/react-log-viewer@4.87.43
 - @patternfly/react-table@4.111.26
 - @patternfly/react-topology@4.90.3
 - @patternfly/react-virtualized-extension@4.88.48

* chore(beta-components): promote candidates 2022.14 (#8246)

* chore(beta-components): promote candidates 2022.14

* remove more beta flags

* feat(MultipleFileUpload): add aria live region to internal Progress (#8242)

* feat(MultipleFileUpload): add aria live region to internal Progress

* add floor/cap load percentage

* update description

* update and add tests

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

 - @patternfly/react-catalog-view-extension@4.92.49
 - @patternfly/react-code-editor@4.82.49
 - @patternfly/react-console@4.92.49
 - @patternfly/react-core@4.256.0
 - @patternfly/react-docs@5.102.56
 - @patternfly/react-inline-edit-extension@4.86.50
 - demo-app-ts@4.204.4
 - @patternfly/react-log-viewer@4.87.44
 - @patternfly/react-table@4.111.27
 - @patternfly/react-topology@4.90.4
 - @patternfly/react-virtualized-extension@4.88.49

* feat(Banner): add support for status icons (#8195)

* feat(Banner): add support for status icons

* Made icon support an example instead of new props

* Added flex layout to status example

* Updated snapshot after rebase

* Updated logic for rendering sr text

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

 - @patternfly/react-catalog-view-extension@4.92.50
 - @patternfly/react-code-editor@4.82.50
 - @patternfly/react-console@4.92.50
 - @patternfly/react-core@4.257.0
 - @patternfly/react-docs@5.102.57
 - @patternfly/react-inline-edit-extension@4.86.51
 - demo-app-ts@4.204.5
 - @patternfly/react-log-viewer@4.87.45
 - @patternfly/react-table@4.111.28
 - @patternfly/react-topology@4.90.5
 - @patternfly/react-virtualized-extension@4.88.50

* Create workflow for extensions issues (#8281)

* Create workflow for extensions issues

Whenever a patternfly-react issue is tagged with the 'extensions' label, it will automatically get added to the 'PatternFly Extensions' project board

* change label name

* fix(Timestamp): updated logic for rendering datetime attribute (#8205)

* fix(Timestamp): updated logic for rendering datetime attribute

* Updated spread props to prevent duplicate datetime attribute

* Made updates per PR feedback

* Added new utils file to helpers index

* Removed timezone from dates in tests

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

 - @patternfly/react-catalog-view-extension@4.92.51
 - @patternfly/react-code-editor@4.82.51
 - @patternfly/react-console@4.92.51
 - @patternfly/react-core@4.257.1
 - @patternfly/react-docs@5.102.58
 - @patternfly/react-inline-edit-extension@4.86.52
 - demo-app-ts@4.204.6
 - @patternfly/react-log-viewer@4.87.46
 - @patternfly/react-table@4.111.29
 - @patternfly/react-topology@4.90.6
 - @patternfly/react-virtualized-extension@4.88.51

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.48 (#8282)

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

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

 - @patternfly/react-docs@5.102.59

* feat(Popover): update default flip behavior and width (#8191)

* feat(Popover): update default flip behavior and width

* fix flip positions for diagonals

* revert default for autoWidth for now

* remove old comment

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

 - @patternfly/react-catalog-view-extension@4.92.52
 - @patternfly/react-code-editor@4.82.52
 - @patternfly/react-console@4.92.52
 - @patternfly/react-core@4.258.0
 - @patternfly/react-docs@5.102.60
 - @patternfly/react-inline-edit-extension@4.86.53
 - demo-app-ts@4.204.7
 - @patternfly/react-log-viewer@4.87.47
 - @patternfly/react-table@4.111.30
 - @patternfly/react-topology@4.90.7
 - @patternfly/react-virtualized-extension@4.88.52

* chore(deps): update dependency @patternfly/patternfly to v4.219.1 (#8288)

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

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

 - @patternfly/react-catalog-view-extension@4.92.53
 - @patternfly/react-charts@6.94.10
 - @patternfly/react-code-editor@4.82.53
 - @patternfly/react-console@4.92.53
 - @patternfly/react-core@4.258.1
 - @patternfly/react-docs@5.102.61
 - @patternfly/react-icons@4.92.9
 - @patternfly/react-inline-edit-extension@4.86.54
 - demo-app-ts@4.204.8
 - @patternfly/react-log-viewer@4.87.48
 - @patternfly/react-styles@4.91.9
 - @patternfly/react-table@4.111.31
 - @patternfly/react-tokens@4.93.9
 - @patternfly/react-topology@4.90.8
 - @patternfly/react-virtualized-extension@4.88.53

* fix(Pagination): prevented regenerating random id on each render (#8175)

* fix(Pagination): prevented regenerating random id on each render

* fix duplicate ids in existing demos

* fix(Pagination): update column management table demo pagination

* add unit test

* Add pipeline groups (#8278)

* Add pipeline groups

* Breakout topology package options for readability

* chore(dropdown-like components): updated isFlipEnabled to true by def… (#8215)

* chore(dropdown-like components): updated isFlipEnabled to true by default

* Updated snapshots

* Updated failing integration test

* Updated conditional for adding static class

* Updated static logic based on Core updates

* Updated ContextSelector

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

 - @patternfly/react-catalog-view-extension@4.92.54
 - @patternfly/react-code-editor@4.82.54
 - @patternfly/react-console@4.92.54
 - @patternfly/react-core@4.258.2
 - @patternfly/react-docs@5.102.62
 - @patternfly/react-inline-edit-extension@4.86.55
 - demo-app-ts@4.204.9
 - @patternfly/react-integration@4.207.1
 - @patternfly/react-log-viewer@4.87.49
 - @patternfly/react-table@4.111.32
 - @patternfly/react-topology@4.90.9
 - @patternfly/react-virtualized-extension@4.88.54

* chore: bump @patternfly/patternfly to 4.219.2 (#8296)

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

 - @patternfly/react-catalog-view-extension@4.92.55
 - @patternfly/react-charts@6.94.11
 - @patternfly/react-code-editor@4.82.55
 - @patternfly/react-console@4.92.55
 - @patternfly/react-core@4.258.3
 - @patternfly/react-docs@5.102.63
 - @patternfly/react-icons@4.92.10
 - @patternfly/react-inline-edit-extension@4.86.56
 - demo-app-ts@4.204.10
 - @patternfly/react-log-viewer@4.87.50
 - @patternfly/react-styles@4.91.10
 - @patternfly/react-table@4.111.33
 - @patternfly/react-tokens@4.93.10
 - @patternfly/react-topology@4.90.10
 - @patternfly/react-virtualized-extension@4.88.55

* Fix group labels, revert breaking change (#8299)

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

 - @patternfly/react-docs@5.102.64
 - demo-app-ts@4.204.11
 - @patternfly/react-integration@4.207.2
 - @patternfly/react-topology@4.90.11

* Update extensions.yml

* Update add-new-issues-to-project.yml

* chore(docs): Added release notes 2022.14 (#8301)

* chore(docs): Added rleases notes 2022.14

* updated topology version

* fixes from reviews

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.56
 - @patternfly/react-code-editor@4.82.56
 - @patternfly/react-console@4.92.56
 - @patternfly/react-core@4.258.4
 - @patternfly/react-docs@5.102.65
 - @patternfly/react-inline-edit-extension@4.86.57
 - demo-app-ts@4.204.12
 - @patternfly/react-log-viewer@4.87.51
 - @patternfly/react-table@4.111.34
 - @patternfly/react-topology@4.90.12
 - @patternfly/react-virtualized-extension@4.88.56

* chore(rebase) v5

Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: patternfly-build <patternfly-build@redhat.com>
Co-authored-by: Titani <tlabaj@redaht.com>
Co-authored-by: Andy Vo <58367784+andyyvo@users.noreply.github.com>
Co-authored-by: Samuel Atefah <68087918+samuelatefah@users.noreply.github.com>
Co-authored-by: Dallas <dallas.nicol@gmail.com>
Co-authored-by: drewamunat2 <78369347+drewamunat2@users.noreply.github.com>
Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>
Co-authored-by: Tomas Psota <72520867+tompsota@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: kev-kim <71181430+kev-kim@users.noreply.github.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>
Co-authored-by: Dominik Petřík <77832970+Dominik-Petrik@users.noreply.github.com>
Co-authored-by: kmcfaul <45077788+kmcfaul@users.noreply.github.com>
Co-authored-by: janwright73 <40367673+janwright73@users.noreply.github.com>
Co-authored-by: Jan Wright <jawright@redhat.com>
Co-authored-by: Austin Sullivan <ausulliv@redhat.com>
Co-authored-by: Jeff Phillips <jephilli@redhat.com>
Co-authored-by: Gustavo Santos <53129852+gefgu@users.noreply.github.com>
Co-authored-by: Christoph Jerolimov <jerolimov+github@redhat.com>
Co-authored-by: Jeff Puzzo <96431149+jeffpuzzo@users.noreply.github.com>

* chore(Skeleton): update examples to typescript (#8251)

* chore(Skeleton): update examples to typescript

* update example name, update sreenreader text

* chore(resizeObserver): refactored use of useRequestAnimationFrame (#8324)

* chore(resizeObserver): refactored use of useRequestAnimationFrame

* Updated param description

* feat(applauncher): replaced favorites input with search input (#8293)

* feat(applauncher): replace input with search input

* fix bug in onToggle

* remove search button for consistency

* feat(TableComposable): remove hasSelectableRowCaption prop (#8352)

* feat(Popper, misc): remove removeFindDomNode flag and set to default (#8316)

* feat(Popper, misc): remove removeFindDomNode, wrap divs by default

* update tests

* update overflowTab snap

* update popper when content changed

* chore(wizard): updated button order (#8409)

* chore(wizard): update button order

* PR feedback from Eric and Matt

* PR feedback from Michael

* chore(DataList): removed deprecated props and logic (#8388)

* chore(DataList): removed deprecated props and logic

* Removed deprecated props/logic from remaining components

* Skipped draggable test

* Updated demo to remove deprecated props

* feat(Pagination): refactored to use menu/menu toggle (#8319)

* feat(Pagination): refactored to use menu/menu toggle

* Updated examples and demos

* Refactored as functional components

* Updated aria label props

* Removed OptionsToggle subcomponent

* Renamed defaultToFullPage prop

* Updated props in tests/demos

* feat(context selector): replaced input group with search input (#8045)

* feat(context selector): replaced input group with search input

* chore(context selector): update snapshots

* chore: update label

Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>

* Updated per comments

* Updated snapshots

Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: Eric Olkowski <thatblindgeye@gmail.com>

* V5 rebase (#8460)

* fix(Menu): fixed height issue with drilldown examples (#8033)

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

 - @patternfly/react-catalog-view-extension@4.92.27
 - @patternfly/react-code-editor@4.82.27
 - @patternfly/react-console@4.92.27
 - @patternfly/react-core@4.250.2
 - @patternfly/react-docs@5.102.32
 - @patternfly/react-inline-edit-extension@4.86.28
 - demo-app-ts@4.202.8
 - @patternfly/react-log-viewer@4.87.22
 - @patternfly/react-table@4.111.5
 - @patternfly/react-topology@4.88.27
 - @patternfly/react-virtualized-extension@4.88.27

* chore(docs): Release notes 2022.13 (#8168)

* chore(docs): Release notes 2022.13

* release note updates

* add screnshots and versions

* update note

* updates from comments

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.33

* chore(docs): Updated release notes (#8202)

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-docs@5.102.34

* chore(Sidebar): converted examples to typescript (#8062)

* chore(Banner): update tests to new react testing library standards (#8160)

* chore(Banner): update tests to new react testing library standards

* add additional test to test screenReaderText

* replace toHaveTextContent with toBeInTheDocument matcher

* add test to check for pf-u-screen-reader class

* specify est timezone for jest to run with (#8151)

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

 - @patternfly/react-catalog-view-extension@4.92.28
 - @patternfly/react-code-editor@4.82.28
 - @patternfly/react-console@4.92.28
 - @patternfly/react-core@4.250.3
 - @patternfly/react-docs@5.102.35
 - @patternfly/react-inline-edit-extension@4.86.29
 - demo-app-ts@4.202.9
 - @patternfly/react-log-viewer@4.87.23
 - @patternfly/react-table@4.111.6
 - @patternfly/react-topology@4.88.28
 - @patternfly/react-virtualized-extension@4.88.28

* feature(Select): flag to put create option at top of typeahead (#8165)

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

 - @patternfly/react-catalog-view-extension@4.92.29
 - @patternfly/react-code-editor@4.82.29
 - @patternfly/react-console@4.92.29
 - @patternfly/react-core@4.250.4
 - @patternfly/react-docs@5.102.36
 - @patternfly/react-inline-edit-extension@4.86.30
 - demo-app-ts@4.202.10
 - @patternfly/react-log-viewer@4.87.24
 - @patternfly/react-table@4.111.7
 - @patternfly/react-topology@4.88.29
 - @patternfly/react-virtualized-extension@4.88.29

* fix(Dropdown next): Add support for forward ref and updated docs. (#8142)

* fix(Dropdown next): Add support for forward ref and updated docs.

* hide inner ref prop

* hide innerRef

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.30
 - @patternfly/react-code-editor@4.82.30
 - @patternfly/react-console@4.92.30
 - @patternfly/react-core@4.250.5
 - @patternfly/react-docs@5.102.37
 - @patternfly/react-inline-edit-extension@4.86.31
 - demo-app-ts@4.202.11
 - @patternfly/react-log-viewer@4.87.25
 - @patternfly/react-table@4.111.8
 - @patternfly/react-topology@4.88.30
 - @patternfly/react-virtualized-extension@4.88.30

* chore(Title): update tests to new RTL standards (#8156)

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

* chore(Title): update tests to new RTL standards

Co-authored-by: Drew Amunategui II <drewamunateguiii@drews-mbp.acasmart.jh.edu>
Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

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

 - @patternfly/react-catalog-view-extension@4.92.31
 - @patternfly/react-code-editor@4.82.31
 - @patternfly/react-console@4.92.31
 - @patternfly/react-core@4.250.6
 - @patternfly/react-docs@5.102.38
 - @patternfly/react-inline-edit-extension@4.86.32
 - demo-app-ts@4.202.12
 - @patternfly/react-log-viewer@4.87.26
 - @patternfly/react-table@4.111.9
 - @patternfly/react-topology@4.88.31
 - @patternfly/react-virtualized-extension@4.88.31

* docs(Empty state): Added EmptyStatePrimary to documentation (#8161)

* docs(Empty state): Added EmptyStatePrimary to documentation

* fix typo

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.32
 - @patternfly/react-code-editor@4.82.32
 - @patternfly/react-console@4.92.32
 - @patternfly/react-core@4.250.7
 - @patternfly/react-docs@5.102.39
 - @patternfly/react-inline-edit-extension@4.86.33
 - demo-app-ts@4.202.13
 - @patternfly/react-log-viewer@4.87.27
 - @patternfly/react-table@4.111.10
 - @patternfly/react-topology@4.88.32
 - @patternfly/react-virtualized-extension@4.88.32

* fix(Slider): correct tab order when input is above thumb (#8190)

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.43 (#8129)

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

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

 - @patternfly/react-catalog-view-extension@4.92.33
 - @patternfly/react-code-editor@4.82.33
 - @patternfly/react-console@4.92.33
 - @patternfly/react-core@4.250.8
 - @patternfly/react-docs@5.102.40
 - @patternfly/react-inline-edit-extension@4.86.34
 - demo-app-ts@4.202.14
 - @patternfly/react-log-viewer@4.87.28
 - @patternfly/react-table@4.111.11
 - @patternfly/react-topology@4.88.33
 - @patternfly/react-virtualized-extension@4.88.33

* feat(label+labelGroup): update aria-labels to include label text (#8192)

* feat(label+labelGroup): update aria-labels to include editable label text

* PR feedback from Eric

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

 - @patternfly/react-catalog-view-extension@4.92.34
 - @patternfly/react-code-editor@4.82.34
 - @patternfly/react-console@4.92.34
 - @patternfly/react-core@4.251.0
 - @patternfly/react-docs@5.102.41
 - @patternfly/react-inline-edit-extension@4.86.35
 - demo-app-ts@4.202.15
 - @patternfly/react-log-viewer@4.87.29
 - @patternfly/react-table@4.111.12
 - @patternfly/react-topology@4.88.34
 - @patternfly/react-virtualized-extension@4.88.34

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.44 (#8225)

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

* chore(SkipToContent): converted examples to typescript (#8138)

* chore(SkipToContent): converted examples to typescript

* fix(SkipToContent): added trailing newline for linter

* chore(TextInput): converted examples to typescript (#8137)

* chore(TextInput): converted examples to typescript

* fix(TextInput): removed problematic file

* fix(TextInput): added file back with correct name

* fix(TextInput): fixed requested changes

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

 - @patternfly/react-catalog-view-extension@4.92.35
 - @patternfly/react-code-editor@4.82.35
 - @patternfly/react-console@4.92.35
 - @patternfly/react-core@4.251.1
 - @patternfly/react-docs@5.102.42
 - @patternfly/react-inline-edit-extension@4.86.36
 - demo-app-ts@4.202.16
 - @patternfly/react-log-viewer@4.87.30
 - @patternfly/react-table@4.111.13
 - @patternfly/react-topology@4.88.35
 - @patternfly/react-virtualized-extension@4.88.35

* fix(JumpLinks): clean up demo in a drawer (#8182)

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

 - @patternfly/react-catalog-view-extension@4.92.36
 - @patternfly/react-code-editor@4.82.36
 - @patternfly/react-console@4.92.36
 - @patternfly/react-core@4.251.2
 - @patternfly/react-docs@5.102.43
 - @patternfly/react-inline-edit-extension@4.86.37
 - demo-app-ts@4.202.17
 - @patternfly/react-log-viewer@4.87.31
 - @patternfly/react-table@4.111.14
 - @patternfly/react-topology@4.88.36
 - @patternfly/react-virtualized-extension@4.88.36

* TextArea test revamp (#8150)

* Text area test revamp

* Edit ref test

* remove unnecessary tests

* add tests for default behavior

* add default validity test

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

 - @patternfly/react-catalog-view-extension@4.92.37
 - @patternfly/react-code-editor@4.82.37
 - @patternfly/react-console@4.92.37
 - @patternfly/react-core@4.251.3
 - @patternfly/react-docs@5.102.44
 - @patternfly/react-inline-edit-extension@4.86.38
 - demo-app-ts@4.202.18
 - @patternfly/react-log-viewer@4.87.32
 - @patternfly/react-table@4.111.15
 - @patternfly/react-topology@4.88.37
 - @patternfly/react-virtualized-extension@4.88.37

* chore(deps): update dependency @patternfly/patternfly to v4.218.0 (#8234)

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

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

 - @patternfly/react-catalog-view-extension@4.92.38
 - @patternfly/react-charts@6.94.8
 - @patternfly/react-code-editor@4.82.38
 - @patternfly/react-console@4.92.38
 - @patternfly/react-core@4.251.4
 - @patternfly/react-docs@5.102.45
 - @patternfly/react-icons@4.92.7
 - @patternfly/react-inline-edit-extension@4.86.39
 - demo-app-ts@4.202.19
 - @patternfly/react-log-viewer@4.87.33
 - @patternfly/react-styles@4.91.7
 - @patternfly/react-table@4.111.16
 - @patternfly/react-tokens@4.93.7
 - @patternfly/react-topology@4.88.38
 - @patternfly/react-virtualized-extension@4.88.38

* chore(deps): update dependency @patternfly/patternfly to v4.219.0 (#8239)

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

* feat(DataList): pass button props to toggle (#8222)

* feat(DataList): pass button props to toggle

* fix duplicate id

* missed an id

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

 - @patternfly/react-catalog-view-extension@4.92.39
 - @patternfly/react-charts@6.94.9
 - @patternfly/react-code-editor@4.82.39
 - @patternfly/react-console@4.92.39
 - @patternfly/react-core@4.252.0
 - @patternfly/react-docs@5.102.46
 - @patternfly/react-icons@4.92.8
 - @patternfly/react-inline-edit-extension@4.86.40
 - demo-app-ts@4.202.20
 - @patternfly/react-log-viewer@4.87.34
 - @patternfly/react-styles@4.91.8
 - @patternfly/react-table@4.111.17
 - @patternfly/react-tokens@4.93.8
 - @patternfly/react-topology@4.88.39
 - @patternfly/react-virtualized-extension@4.88.39

* chore(SimpleList):convert to typescript (#8176)

* chore(SimpleList):convert to typescript

* updated types to match onSelect handler

* updated types to match onSelect handler and various name changes

Co-authored-by: Jan Wright <jawright@redhat.com>

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

 - @patternfly/react-catalog-view-extension@4.92.40
 - @patternfly/react-code-editor@4.82.40
 - @patternfly/react-console@4.92.40
 - @patternfly/react-core@4.252.1
 - @patternfly/react-docs@5.102.47
 - @patternfly/react-inline-edit-extension@4.86.41
 - demo-app-ts@4.202.21
 - @patternfly/react-log-viewer@4.87.35
 - @patternfly/react-table@4.111.18
 - @patternfly/react-topology@4.88.40
 - @patternfly/react-virtualized-extension@4.88.40

* fix(Dropdown): enabled right aligned dropdown with isFlipEnabled (#8224)

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

 - @patternfly/react-catalog-view-extension@4.92.41
 - @patternfly/react-code-editor@4.82.41
 - @patternfly/react-console@4.92.41
 - @patternfly/react-core@4.252.2
 - @patternfly/react-docs@5.102.48
 - @patternfly/react-inline-edit-extension@4.86.42
 - demo-app-ts@4.202.22
 - @patternfly/react-log-viewer@4.87.36
 - @patternfly/react-table@4.111.19
 - @patternfly/react-topology@4.88.41
 - @patternfly/react-virtualized-extension@4.88.41

* feat(Wizard,ClipboardCopy): add OUIA props to WizardNav, WizardNavItem, ClipboardCopy (#8193)

* feat(Wizard,ClipboardCopy): add OUIA props to WizardNav, WizardNavItem, ClipboardCopy

* add missing props

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

 - @patternfly/react-catalog-view-extension@4.92.42
 - @patternfly/react-code-editor@4.82.42
 - @patternfly/react-console@4.92.42
 - @patternfly/react-core@4.253.0
 - @patternfly/react-docs@5.102.49
 - @patternfly/react-inline-edit-extension@4.86.43
 - demo-app-ts@4.202.23
 - @patternfly/react-log-viewer@4.87.37
 - @patternfly/react-table@4.111.20
 - @patternfly/react-topology@4.88.42
 - @patternfly/react-virtualized-extension@4.88.42

* chore(Slider): revert taborder update (#8273)

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

 - @patternfly/react-catalog-view-extension@4.92.43
 - @patternfly/react-code-editor@4.82.43
 - @patternfly/react-console@4.92.43
 - @patternfly/react-core@4.253.1
 - @patternfly/react-docs@5.102.50
 - @patternfly/react-inline-edit-extension@4.86.44
 - demo-app-ts@4.202.24
 - @patternfly/react-log-viewer@4.87.38
 - @patternfly/react-table@4.111.21
 - @patternfly/react-topology@4.88.43
 - @patternfly/react-virtualized-extension@4.88.43

* feat(Topology): Add option to fit layout to screen upon layout completion (#8210)

* fix(CodeEditor): use codeEditorControls and clean up overall (#7931)

* fix(CodeEditor): use codeEditorControls and clean up overall

* fix lint errors

* use better variable names

* clean up per PR comments

* add back useCallback

* clean up

* clean up

* fix lint errors

* add console warnings when using deprecated props

* fix lint errors

* update warning messages

* fix lint again

* feat(menu): add optional danger state for menu items (#8131)

* feat(menu): add optional danger state for menu items

* docs(menu): add demo for danger state

* chore: move example to match html

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.46 (#8241)

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

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

 - @patternfly/react-catalog-view-extension@4.92.44
 - @patternfly/react-code-editor@4.82.44
 - @patternfly/react-console@4.92.44
 - @patternfly/react-core@4.254.0
 - @patternfly/react-docs@5.102.51
 - @patternfly/react-inline-edit-extension@4.86.45
 - demo-app-ts@4.203.0
 - @patternfly/react-integration@4.206.0
 - @patternfly/react-log-viewer@4.87.39
 - @patternfly/react-table@4.111.22
 - @patternfly/react-topology@4.89.0
 - @patternfly/react-virtualized-extension@4.88.44

* fix(DualListSelector): Add/remove button didn't work if search is used (#8269)

* feat(topology): Allow tooltip usage on pipeline task node badges (#8208)

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

 - @patternfly/react-catalog-view-extension@4.92.45
 - @patternfly/react-code-editor@4.82.45
 - @patternfly/react-console@4.92.45
 - @patternfly/react-core@4.254.1
 - @patternfly/react-docs@5.102.52
 - @patternfly/react-inline-edit-extension@4.86.46
 - demo-app-ts@4.204.0
 - @patternfly/react-integration@4.207.0
 - @patternfly/react-log-viewer@4.87.40
 - @patternfly/react-table@4.111.23
 - @patternfly/react-topology@4.90.0
 - @patternfly/react-virtualized-extension@4.88.45

* feat: add ouia support to dropdown next (#8135)

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

 - @patternfly/react-catalog-view-extension@4.92.46
 - @patternfly/react-code-editor@4.82.46
 - @patternfly/react-console@4.92.46
 - @patternfly/react-core@4.255.0
 - @patternfly/react-docs@5.102.53
 - @patternfly/react-inline-edit-extension@4.86.47
 - demo-app-ts@4.204.1
 - @patternfly/react-log-viewer@4.87.41
 - @patternfly/react-table@4.111.24
 - @patternfly/react-topology@4.90.1
 - @patternfly/react-virtualized-extension@4.88.46

* chore(button): added inline progress variant to progress demos (#8172)

* fix(Alert): prevent error being thrown when using invalid variant (#8229)

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

 - @patternfly/react-catalog-view-extension@4.92.47
 - @patternfly/react-code-editor@4.82.47
 - @patternfly/react-console@4.92.47
 - @patternfly/react-core@4.255.1
 - @patternfly/react-docs@5.102.54
 - @patternfly/react-inline-edit-extension@4.86.48
 - demo-app-ts@4.204.2
 - @patternfly/react-log-viewer@4.87.42
 - @patternfly/react-table@4.111.25
 - @patternfly/react-topology@4.90.2
 - @patternfly/react-virtualized-extension@4.88.47

* next(Wizard): Allow for WizardStep to better control state from props entry-point, include index (#8218)

* next(Wizard): Allow for WizardStep to better control state from props entrypoint, include index

* address feedback

* fix a couple existing wizard demos, update naming of combined steps in 'next' wizard context

* disable Back/Cancel for async Next step in Kitchen sink example

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

 - @patternfly/react-catalog-view-extension@4.92.48
 - @patternfly/react-code-editor@4.82.48
 - @patternfly/react-console@4.92.48
 - @patternfly/react-core@4.255.2
 - @patternfly/react-docs@5.102.55
 - @patternfly/react-inline-edit-extension@4.86.49
 - demo-app-ts@4.204.3
 - @patternfly/react-log-viewer@4.87.43
 - @patternfly/react-table@4.111.26
 - @patternfly/react-topology@4.90.3
 - @patternfly/react-virtualized-extension@4.88.48

* chore(beta-components): promote candidates 2022.14 (#8246)

* chore(beta-components): promote candidates 2022.14

* remove more beta flags

* feat(MultipleFileUpload): add aria live region to internal Progress (#8242)

* feat(MultipleFileUpload): add aria live region to internal Progress

* add floor/cap load percentage

* update description

* update and add tests

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

 - @patternfly/react-catalog-view-extension@4.92.49
 - @patternfly/react-code-editor@4.82.49
 - @patternfly/react-console@4.92.49
 - @patternfly/react-core@4.256.0
 - @patternfly/react-docs@5.102.56
 - @patternfly/react-inline-edit-extension@4.86.50
 - demo-app-ts@4.204.4
 - @patternfly/react-log-viewer@4.87.44
 - @patternfly/react-table@4.111.27
 - @patternfly/react-topology@4.90.4
 - @patternfly/react-virtualized-extension@4.88.49

* feat(Banner): add support for status icons (#8195)

* feat(Banner): add support for status icons

* Made icon support an example instead of new props

* Added flex layout to status example

* Updated snapshot after rebase

* Updated logic for rendering sr text

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

 - @patternfly/react-catalog-view-extension@4.92.50
 - @patternfly/react-code-editor@4.82.50
 - @patternfly/react-console@4.92.50
 - @patternfly/react-core@4.257.0
 - @patternfly/react-docs@5.102.57
 - @patternfly/react-inline-edit-extension@4.86.51
 - demo-app-ts@4.204.5
 - @patternfly/react-log-viewer@4.87.45
 - @patternfly/react-table@4.111.28
 - @patternfly/react-topology@4.90.5
 - @patternfly/react-virtualized-extension@4.88.50

* Create workflow for extensions issues (#8281)

* Create workflow for extensions issues

Whenever a patternfly-react issue is tagged with the 'extensions' label, it will automatically get added to the 'PatternFly Extensions' project board

* change label name

* fix(Timestamp): updated logic for rendering datetime attribute (#8205)

* fix(Timestamp): updated logic for rendering datetime attribute

* Updated spread props to prevent duplicate datetime attribute

* Made updates per PR feedback

* Added new utils file to helpers index

* Removed timezone from dates in tests

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

 - @patternfly/react-catalog-view-extension@4.92.51
 - @patternfly/react-code-editor@4.82.51
 - @patternfly/react-console@4.92.51
 - @patternfly/react-core@4.257.1
 - @patternfly/react-docs@5.102.58
 - @patternfly/react-inline-edit-extension@4.86.52
 - demo-app-ts@4.204.6
 - @patternfly/react-log-viewer@4.87.46
 - @patternfly/react-table@4.111.29
 - @patternfly/react-topology@4.90.6
 - @patternfly/react-virtualized-extension@4.88.51

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.48 (#8282)

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

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

 - @patternfly/react-docs@5.102.59

* feat(Popover): update default flip behavior and width (#8191)

* feat(Popover): update default flip behavior and width

* fix flip positions for diagonals

* revert default for autoWidth for now

* remove old comment

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

 - @patternfly/react-catalog-view-extension@4.92.52
 - @patternfly/react-code-editor@4.82.52
 - @patternfly/react-console@4.92.52
 - @patternfly/react-core@4.258.0
 - @patternfly/react-docs@5.102.60
 - @patternfly/react-inline-edit-extension@4.86.53
 - demo-app-ts@4.204.7
 - @patternfly/react-log-viewer@4.87.47
 - @patternfly/react-table@4.111.30
 - @patternfly/react-topology@4.90.7
 - @patternfly/react-virtualized-extension@4.88.52

* chore(deps): update dependency @patternfly/patternfly to v4.219.1 (#8288)

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

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

 - @patternfly/react-catalog-view-extension@4.92.53
 - @patternfly/react-charts@6.94.10
 - @patternfly/react-code-editor@4.82.53
 - @patternfly/react-console@4.92.53
 - @patternfly/react-core@4.258.1
 - @patternfly/react-docs@5.102.61
 - @patternfly/react-icons@4.92.9
 - @patternfly/react-inline-edit-extension@4.86.54
 - demo-app-ts@4.204.8
 - @patternfly/react-log-viewer@4.87.48
 - @patternfly/react-styles@4.91.9
 - @patternfly/react-table@4.111.31
 - @patternfly/react-tokens@4.93.9
 - @patternfly/react-topology@4.90.8
 - @patternfly/react-virtualized-extension@4.88.53

* fix(Pagination): prevented regenerating random id on each render (#8175)

* fix(Pagination): prevented regenerating random id on each render

* fix duplicate ids in existing demos

* fix(Pagination): update column management table demo pagination

* add unit test

* Add pipeline groups (#8278)

* Add pipeline groups

* Breakout topology package options for readability

* chore(dropdown-like components): updated isFlipEnabled to true by def… (#8215)

* chore(dropdown-like components): updated isFlipEnabled to true by default

* Updated snapshots

* Updated failing integration test

* Updated conditional for adding static class

* Updated static logic based on Core updates

* Updated ContextSelector

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

 - @patternfly/react-catalog-view-extension@4.92.54
 - @patternfly/react-code-editor@4.82.54
 - @patternfly/react-console@4.92.54
 - @patternfly/react-core@4.258.2
 - @patternfly/react-docs@5.102.62
 - @patternfly/react-inline-edit-extension@4.86.55
 - demo-app-ts@4.204.9
 - @patternfly/react-integration@4.207.1
 - @patternfly/react-log-viewer@4.87.49
 - @patternfly/react-table@4.111.32
 - @patternfly/react-topology@4.90.9
 - @patternfly/react-virtualized-extension@4.88.54

* chore: bump @patternfly/patternfly to 4.219.2 (#8296)

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

 - @patternfly/react-catalog-view-extension@4.92.55
 - @patternfly/react-charts@6.94.11
 - @patternfly/react-code-editor@4.82.55
 - @patternfly/react-console@4.92.55
 - @patternfly/react-core@4.258.3
 - @patternfly/react-docs@5.102.63
 - @patternfly/react-icons@4.92.10
 - @patternfly/react-inline-edit-extension@4.86.56
 - demo-app-ts@4.204.10
 - @patternfly/react-log-viewer@4.87.50
 - @patternfly/react-styles@4.91.10
 - @patternfly/react-table@4.111.33
 - @patternfly/react-tokens@4.93.10
 - @patternfly/react-topology@4.90.10
 - @patternfly/react-virtualized-extension@4.88.55

* Fix group labels, revert breaking change (#8299)

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

 - @patte…
nicolethoen added a commit that referenced this pull request Feb 7, 2023
* fix(DualListSelector): Add/remove button didn't work if search is used (#8269)

* feat(topology): Allow tooltip usage on pipeline task node badges (#8208)

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

 - @patternfly/react-catalog-view-extension@4.92.45
 - @patternfly/react-code-editor@4.82.45
 - @patternfly/react-console@4.92.45
 - @patternfly/react-core@4.254.1
 - @patternfly/react-docs@5.102.52
 - @patternfly/react-inline-edit-extension@4.86.46
 - demo-app-ts@4.204.0
 - @patternfly/react-integration@4.207.0
 - @patternfly/react-log-viewer@4.87.40
 - @patternfly/react-table@4.111.23
 - @patternfly/react-topology@4.90.0
 - @patternfly/react-virtualized-extension@4.88.45

* feat: add ouia support to dropdown next (#8135)

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

 - @patternfly/react-catalog-view-extension@4.92.46
 - @patternfly/react-code-editor@4.82.46
 - @patternfly/react-console@4.92.46
 - @patternfly/react-core@4.255.0
 - @patternfly/react-docs@5.102.53
 - @patternfly/react-inline-edit-extension@4.86.47
 - demo-app-ts@4.204.1
 - @patternfly/react-log-viewer@4.87.41
 - @patternfly/react-table@4.111.24
 - @patternfly/react-topology@4.90.1
 - @patternfly/react-virtualized-extension@4.88.46

* chore(button): added inline progress variant to progress demos (#8172)

* fix(Alert): prevent error being thrown when using invalid variant (#8229)

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

 - @patternfly/react-catalog-view-extension@4.92.47
 - @patternfly/react-code-editor@4.82.47
 - @patternfly/react-console@4.92.47
 - @patternfly/react-core@4.255.1
 - @patternfly/react-docs@5.102.54
 - @patternfly/react-inline-edit-extension@4.86.48
 - demo-app-ts@4.204.2
 - @patternfly/react-log-viewer@4.87.42
 - @patternfly/react-table@4.111.25
 - @patternfly/react-topology@4.90.2
 - @patternfly/react-virtualized-extension@4.88.47

* next(Wizard): Allow for WizardStep to better control state from props entry-point, include index (#8218)

* next(Wizard): Allow for WizardStep to better control state from props entrypoint, include index

* address feedback

* fix a couple existing wizard demos, update naming of combined steps in 'next' wizard context

* disable Back/Cancel for async Next step in Kitchen sink example

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

 - @patternfly/react-catalog-view-extension@4.92.48
 - @patternfly/react-code-editor@4.82.48
 - @patternfly/react-console@4.92.48
 - @patternfly/react-core@4.255.2
 - @patternfly/react-docs@5.102.55
 - @patternfly/react-inline-edit-extension@4.86.49
 - demo-app-ts@4.204.3
 - @patternfly/react-log-viewer@4.87.43
 - @patternfly/react-table@4.111.26
 - @patternfly/react-topology@4.90.3
 - @patternfly/react-virtualized-extension@4.88.48

* chore(beta-components): promote candidates 2022.14 (#8246)

* chore(beta-components): promote candidates 2022.14

* remove more beta flags

* feat(MultipleFileUpload): add aria live region to internal Progress (#8242)

* feat(MultipleFileUpload): add aria live region to internal Progress

* add floor/cap load percentage

* update description

* update and add tests

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

 - @patternfly/react-catalog-view-extension@4.92.49
 - @patternfly/react-code-editor@4.82.49
 - @patternfly/react-console@4.92.49
 - @patternfly/react-core@4.256.0
 - @patternfly/react-docs@5.102.56
 - @patternfly/react-inline-edit-extension@4.86.50
 - demo-app-ts@4.204.4
 - @patternfly/react-log-viewer@4.87.44
 - @patternfly/react-table@4.111.27
 - @patternfly/react-topology@4.90.4
 - @patternfly/react-virtualized-extension@4.88.49

* feat(Banner): add support for status icons (#8195)

* feat(Banner): add support for status icons

* Made icon support an example instead of new props

* Added flex layout to status example

* Updated snapshot after rebase

* Updated logic for rendering sr text

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

 - @patternfly/react-catalog-view-extension@4.92.50
 - @patternfly/react-code-editor@4.82.50
 - @patternfly/react-console@4.92.50
 - @patternfly/react-core@4.257.0
 - @patternfly/react-docs@5.102.57
 - @patternfly/react-inline-edit-extension@4.86.51
 - demo-app-ts@4.204.5
 - @patternfly/react-log-viewer@4.87.45
 - @patternfly/react-table@4.111.28
 - @patternfly/react-topology@4.90.5
 - @patternfly/react-virtualized-extension@4.88.50

* Create workflow for extensions issues (#8281)

* Create workflow for extensions issues

Whenever a patternfly-react issue is tagged with the 'extensions' label, it will automatically get added to the 'PatternFly Extensions' project board

* change label name

* fix(Timestamp): updated logic for rendering datetime attribute (#8205)

* fix(Timestamp): updated logic for rendering datetime attribute

* Updated spread props to prevent duplicate datetime attribute

* Made updates per PR feedback

* Added new utils file to helpers index

* Removed timezone from dates in tests

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

 - @patternfly/react-catalog-view-extension@4.92.51
 - @patternfly/react-code-editor@4.82.51
 - @patternfly/react-console@4.92.51
 - @patternfly/react-core@4.257.1
 - @patternfly/react-docs@5.102.58
 - @patternfly/react-inline-edit-extension@4.86.52
 - demo-app-ts@4.204.6
 - @patternfly/react-log-viewer@4.87.46
 - @patternfly/react-table@4.111.29
 - @patternfly/react-topology@4.90.6
 - @patternfly/react-virtualized-extension@4.88.51

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.48 (#8282)

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

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

 - @patternfly/react-docs@5.102.59

* feat(Popover): update default flip behavior and width (#8191)

* feat(Popover): update default flip behavior and width

* fix flip positions for diagonals

* revert default for autoWidth for now

* remove old comment

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

 - @patternfly/react-catalog-view-extension@4.92.52
 - @patternfly/react-code-editor@4.82.52
 - @patternfly/react-console@4.92.52
 - @patternfly/react-core@4.258.0
 - @patternfly/react-docs@5.102.60
 - @patternfly/react-inline-edit-extension@4.86.53
 - demo-app-ts@4.204.7
 - @patternfly/react-log-viewer@4.87.47
 - @patternfly/react-table@4.111.30
 - @patternfly/react-topology@4.90.7
 - @patternfly/react-virtualized-extension@4.88.52

* chore(deps): update dependency @patternfly/patternfly to v4.219.1 (#8288)

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

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

 - @patternfly/react-catalog-view-extension@4.92.53
 - @patternfly/react-charts@6.94.10
 - @patternfly/react-code-editor@4.82.53
 - @patternfly/react-console@4.92.53
 - @patternfly/react-core@4.258.1
 - @patternfly/react-docs@5.102.61
 - @patternfly/react-icons@4.92.9
 - @patternfly/react-inline-edit-extension@4.86.54
 - demo-app-ts@4.204.8
 - @patternfly/react-log-viewer@4.87.48
 - @patternfly/react-styles@4.91.9
 - @patternfly/react-table@4.111.31
 - @patternfly/react-tokens@4.93.9
 - @patternfly/react-topology@4.90.8
 - @patternfly/react-virtualized-extension@4.88.53

* fix(Pagination): prevented regenerating random id on each render (#8175)

* fix(Pagination): prevented regenerating random id on each render

* fix duplicate ids in existing demos

* fix(Pagination): update column management table demo pagination

* add unit test

* Add pipeline groups (#8278)

* Add pipeline groups

* Breakout topology package options for readability

* chore(dropdown-like components): updated isFlipEnabled to true by def… (#8215)

* chore(dropdown-like components): updated isFlipEnabled to true by default

* Updated snapshots

* Updated failing integration test

* Updated conditional for adding static class

* Updated static logic based on Core updates

* Updated ContextSelector

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

 - @patternfly/react-catalog-view-extension@4.92.54
 - @patternfly/react-code-editor@4.82.54
 - @patternfly/react-console@4.92.54
 - @patternfly/react-core@4.258.2
 - @patternfly/react-docs@5.102.62
 - @patternfly/react-inline-edit-extension@4.86.55
 - demo-app-ts@4.204.9
 - @patternfly/react-integration@4.207.1
 - @patternfly/react-log-viewer@4.87.49
 - @patternfly/react-table@4.111.32
 - @patternfly/react-topology@4.90.9
 - @patternfly/react-virtualized-extension@4.88.54

* chore: bump @patternfly/patternfly to 4.219.2 (#8296)

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

 - @patternfly/react-catalog-view-extension@4.92.55
 - @patternfly/react-charts@6.94.11
 - @patternfly/react-code-editor@4.82.55
 - @patternfly/react-console@4.92.55
 - @patternfly/react-core@4.258.3
 - @patternfly/react-docs@5.102.63
 - @patternfly/react-icons@4.92.10
 - @patternfly/react-inline-edit-extension@4.86.56
 - demo-app-ts@4.204.10
 - @patternfly/react-log-viewer@4.87.50
 - @patternfly/react-styles@4.91.10
 - @patternfly/react-table@4.111.33
 - @patternfly/react-tokens@4.93.10
 - @patternfly/react-topology@4.90.10
 - @patternfly/react-virtualized-extension@4.88.55

* Fix group labels, revert breaking change (#8299)

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

 - @patternfly/react-docs@5.102.64
 - demo-app-ts@4.204.11
 - @patternfly/react-integration@4.207.2
 - @patternfly/react-topology@4.90.11

* Update extensions.yml

* Update add-new-issues-to-project.yml

* chore(docs): Added release notes 2022.14 (#8301)

* chore(docs): Added rleases notes 2022.14

* updated topology version

* fixes from reviews

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.92.56
 - @patternfly/react-code-editor@4.82.56
 - @patternfly/react-console@4.92.56
 - @patternfly/react-core@4.258.4
 - @patternfly/react-docs@5.102.65
 - @patternfly/react-inline-edit-extension@4.86.57
 - demo-app-ts@4.204.12
 - @patternfly/react-log-viewer@4.87.51
 - @patternfly/react-table@4.111.34
 - @patternfly/react-topology@4.90.12
 - @patternfly/react-virtualized-extension@4.88.56

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.61 (#8290)

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

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

 - @patternfly/react-docs@5.102.66

* Set status decorators to be opaque. (#8335)

* chore(tests): created shareable button mock (#8244)

* chore(Backdrop): update component unit tests to meet new standards with RTL (#8232)

Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

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

 - @patternfly/react-catalog-view-extension@4.92.57
 - @patternfly/react-code-editor@4.82.57
 - @patternfly/react-console@4.92.57
 - @patternfly/react-core@4.258.5
 - @patternfly/react-docs@5.102.67
 - @patternfly/react-inline-edit-extension@4.86.58
 - demo-app-ts@4.204.13
 - @patternfly/react-log-viewer@4.87.52
 - @patternfly/react-table@4.111.35
 - @patternfly/react-topology@4.90.13
 - @patternfly/react-virtualized-extension@4.88.57

* Bug Fix #8311 (#8312)

Bug - Label - hrefs in compact example have wrong anchor tag #8311

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

 - @patternfly/react-catalog-view-extension@4.92.58
 - @patternfly/react-code-editor@4.82.58
 - @patternfly/react-console@4.92.58
 - @patternfly/react-core@4.258.6
 - @patternfly/react-docs@5.102.68
 - @patternfly/react-inline-edit-extension@4.86.59
 - demo-app-ts@4.204.14
 - @patternfly/react-log-viewer@4.87.53
 - @patternfly/react-table@4.111.36
 - @patternfly/react-topology@4.90.14
 - @patternfly/react-virtualized-extension@4.88.58

* fix(TimePicker): fixed bugs when updating time/minTime/maxTime props (#8267)

* fix(TimePicker): fixed bugs when updating time/minTime/maxTime props

* Added logic to update minTime and maxTime states

* Updated unit tests

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

 - @patternfly/react-catalog-view-extension@4.92.59
 - @patternfly/react-code-editor@4.82.59
 - @patternfly/react-console@4.92.59
 - @patternfly/react-core@4.258.7
 - @patternfly/react-docs@5.102.69
 - @patternfly/react-inline-edit-extension@4.86.60
 - demo-app-ts@4.204.15
 - @patternfly/react-log-viewer@4.87.54
 - @patternfly/react-table@4.111.37
 - @patternfly/react-topology@4.90.15
 - @patternfly/react-virtualized-extension@4.88.59

* chore(TextArea): converted examples to typescript (#8186)

* fix(TextArea): redo

* fix(TextArea): made requested changes

* fix(TextArea): typed functions and changed labels

* fix(bulk-select): fixed toggle spacing (#8326)

* fix(bulk-select): fixed toggle spacing

* chore(bulkselect): pr feedback

* chore(ToggleGroup): converted examples to typescript (#8266)

* chore(ToggleGroup): converted examples to typescript

* fix(ToggleGroup): refactored states and typed function arguments

* fix(ToggleGroup): removed unnecessary text

* fix(ToggleGroup): fixed requested changes

* fix(ToggleGroup): fixed requested changes

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

 - @patternfly/react-catalog-view-extension@4.92.60
 - @patternfly/react-code-editor@4.82.60
 - @patternfly/react-console@4.92.60
 - @patternfly/react-core@4.258.8
 - @patternfly/react-docs@5.102.70
 - @patternfly/react-inline-edit-extension@4.86.61
 - demo-app-ts@4.204.16
 - @patternfly/react-log-viewer@4.87.55
 - @patternfly/react-table@4.111.38
 - @patternfly/react-topology@4.90.16
 - @patternfly/react-virtualized-extension@4.88.60

* feat(Popper, misc): allow components to customize popper z-index (#8310)

* feat(Popper, misc): allow components to customize popper z-index

* update some prop descriptions

* update desc

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

 - @patternfly/react-catalog-view-extension@4.92.61
 - @patternfly/react-code-editor@4.82.61
 - @patternfly/react-console@4.92.61
 - @patternfly/react-core@4.259.0
 - @patternfly/react-docs@5.102.71
 - @patternfly/react-inline-edit-extension@4.86.62
 - demo-app-ts@4.204.17
 - @patternfly/react-log-viewer@4.87.56
 - @patternfly/react-table@4.111.39
 - @patternfly/react-topology@4.90.17
 - @patternfly/react-virtualized-extension@4.88.61

* feat(Progress): added helper text (#8307)

* feat(Progress): added helper text

* enabled custom components to be passed as children of ProgressHelperText

* spread props in ProgressHelperText

* improved prop description

* removed default isLiveRegion

* marked helper text prop as beta

* marked example as beta

* added custom component example

* refactored to make ProgressHelperText a basic wrapper component

* added locally defined capitalize function

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

 - @patternfly/react-catalog-view-extension@4.92.62
 - @patternfly/react-code-editor@4.82.62
 - @patternfly/react-console@4.92.62
 - @patternfly/react-core@4.260.0
 - @patternfly/react-docs@5.102.72
 - @patternfly/react-inline-edit-extension@4.86.63
 - demo-app-ts@4.204.18
 - @patternfly/react-log-viewer@4.87.57
 - @patternfly/react-table@4.111.40
 - @patternfly/react-topology@4.90.18
 - @patternfly/react-virtualized-extension@4.88.62

* Update README with create-react-app and YAML help (#8188)

I ran into some trouble using the code editor in my project. The main problems were that I had to do extra work that the docs didn't cover because I bootstrapped my project with `create-react-app` and I needed YAML highlighting support which required an extra plugin. This doc update should make it easier for anyone who's in the same boat :)

* chore(Text): update tests to new react testing library standards (#8280)

* chore(Text): update tests to new react testing library standards

* removed data-pf-content attribute and tests

* added tests to check for no class names

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

 - @patternfly/react-catalog-view-extension@4.92.63
 - @patternfly/react-code-editor@4.82.63
 - @patternfly/react-console@4.92.63
 - @patternfly/react-core@4.260.1
 - @patternfly/react-docs@5.102.73
 - @patternfly/react-inline-edit-extension@4.86.64
 - demo-app-ts@4.204.19
 - @patternfly/react-log-viewer@4.87.58
 - @patternfly/react-table@4.111.41
 - @patternfly/react-topology@4.90.19
 - @patternfly/react-virtualized-extension@4.88.63

* feat(MultipleFileUpload): added support for helper text (#8344)

* feat(MultipleFileUpload): added support for helper text

* adjusted verbiage

* added example description

* adjusted prop name

* adjusted forced error checkbox label

* refactored to make helper text component fully consumer managed

* Updated example comment

Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>

Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com>
Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>

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

 - @patternfly/react-catalog-view-extension@4.92.64
 - @patternfly/react-code-editor@4.82.64
 - @patternfly/react-console@4.92.64
 - @patternfly/react-core@4.261.0
 - @patternfly/react-docs@5.102.74
 - @patternfly/react-inline-edit-extension@4.86.65
 - demo-app-ts@4.204.20
 - @patternfly/react-log-viewer@4.87.59
 - @patternfly/react-table@4.111.42
 - @patternfly/react-topology@4.90.20
 - @patternfly/react-virtualized-extension@4.88.64

* feat(MenuInput): use SearchInput instead of TextInput (#8329)

* feat(MenuInput): use SearchInput instead of TextInput

* fix cypress test

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

 - @patternfly/react-catalog-view-extension@4.92.65
 - @patternfly/react-code-editor@4.82.65
 - @patternfly/react-console@4.92.65
 - @patternfly/react-core@4.262.0
 - @patternfly/react-docs@5.102.75
 - @patternfly/react-inline-edit-extension@4.86.66
 - demo-app-ts@4.205.0
 - @patternfly/react-integration@4.208.0
 - @patternfly/react-log-viewer@4.87.60
 - @patternfly/react-table@4.111.43
 - @patternfly/react-topology@4.90.21
 - @patternfly/react-virtualized-extension@4.88.65

* fix(NumberInput): allow user to back out number to type input (#8304)

* fix(NumberInput): allow user to back out number to type input

* fix test

* fix plus logic for undefined

* pr feedback

* add example desc

* update example desc

* update examples for empty input

* add integration test, update integration test name

* feat(spinner): added isInline, updated link button (#8328)

* feat(spinner): added isInline, updated link button

* chore(button): update snaps

* chore(spinner/button): PR feedback

* fix(Popper): add display contents to wrapping divs (#8317)

* fix(Popper): add display contents to wrapping divs

* update snap

* restore old popper update for content changes

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

 - @patternfly/react-catalog-view-extension@4.92.66
 - @patternfly/react-code-editor@4.82.66
 - @patternfly/react-console@4.92.66
 - @patternfly/react-core@4.263.0
 - @patternfly/react-docs@5.102.76
 - @patternfly/react-inline-edit-extension@4.86.67
 - demo-app-ts@4.205.1
 - @patternfly/react-integration@4.208.1
 - @patternfly/react-log-viewer@4.87.61
 - @patternfly/react-table@4.111.44
 - @patternfly/react-topology@4.90.22
 - @patternfly/react-virtualized-extension@4.88.66

* chore(tabs): reworked tabs demos based on design/core updates (#8286)

* chore(tabs): reworked demos for consistency with core updates

* revert dashwrapper changes

* chore(tabs): add bottom border to secondary variants

* remove downloads.html

* PR feedback

* fix title sizes

* fixed status card title size

* fix remaining cards

* remove comment

* remove comment

* feat(Tabs): add TabAction, update core ver (#8348)

* feat(Tabs): add TabAction, update core ver

* desc updates, prop update

* adjust actions default order, add missing flag

* update description, add classname to span

* chore(deps): update dependency @patternfly/patternfly to v4.221.2 (#8358)

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

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

 - @patternfly/react-catalog-view-extension@4.93.0
 - @patternfly/react-charts@6.94.12
 - @patternfly/react-code-editor@4.82.67
 - @patternfly/react-console@4.93.0
 - @patternfly/react-core@4.264.0
 - @patternfly/react-docs@5.103.0
 - @patternfly/react-icons@4.93.0
 - @patternfly/react-inline-edit-extension@4.86.68
 - demo-app-ts@4.205.2
 - @patternfly/react-log-viewer@4.87.62
 - @patternfly/react-styles@4.92.0
 - @patternfly/react-table@4.111.45
 - @patternfly/react-tokens@4.94.0
 - @patternfly/react-topology@4.90.23
 - @patternfly/react-virtualized-extension@4.88.67

* chore:(docs): rel notes 2022 (#8376)

* chore:(docs): rel notes 2022

* added screenshots

* fix typos

* Fix typo so i can merge

Co-authored-by: Titani <tlabaj@redaht.com>
Co-authored-by: Nicole Thoen <nthoen@redhat.com>

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

 - @patternfly/react-docs@5.103.1

* chore: fix release notes typos (#8379)

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

 - @patternfly/react-docs@5.103.2

* fix(build): stopped shipping mock files (#8396)

* fix: react-core subpaths for next/deprecated modules (#8341)

* chore(Tooltip): converted examples to typescript (#8052)

* chore(Tooltip): converted examples to typescript

* chore(Tooltip): fixed selection variable typing issue

* chore(Tooltip): shortened updatedTrigger code

* chore(Tooltip): changed span to Button in basic example

* remove unnecessary tabindex

Co-authored-by: nicolethoen <nthoen@redhat.com>

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

 - @patternfly/react-catalog-view-extension@4.93.1
 - @patternfly/react-code-editor@4.82.68
 - @patternfly/react-console@4.93.1
 - @patternfly/react-core@4.264.1
 - @patternfly/react-docs@5.103.3
 - @patternfly/react-inline-edit-extension@4.86.69
 - demo-app-ts@4.205.3
 - @patternfly/react-log-viewer@4.87.63
 - @patternfly/react-table@4.111.46
 - @patternfly/react-topology@4.90.24
 - @patternfly/react-virtualized-extension@4.88.68

* chore(ComposableTable): Update custom row wrapper example (#8365)

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

 - @patternfly/react-docs@5.103.4
 - @patternfly/react-inline-edit-extension@4.86.70
 - @patternfly/react-table@4.111.47

* fix(Dropdown next): Added itemId to DropdownItem props (#8356)

Co-authored-by: Titani <tlabaj@redaht.com>

* feat: add pf-screen-reader for screen reader text to Badge (#8361)

* feat: add pf-screen-reader for screen reader text to Badge

#8354

* test: update snapshots according to new classname for badge reader

* fix: badge screen reader prop, delete static class

* update screen reader classname

Signed-off-by: erkanercan <erkanercandev@gmail.com>

* fix: move screen reader span below children, update unread examples

Signed-off-by: erkanercan <erkanercandev@gmail.com>

* fix: correct example typo

Signed-off-by: erkanercan <erkanercandev@gmail.com>

Signed-off-by: erkanercan <erkanercandev@gmail.com>

* fix(Menu): updated breadcrumb drilldown example (#8385)

* Create "deprecated" subpaths in react-table  (#8381)

* change base to main

* revert index.ts change

* Update patternfly-docs.source.js

* fix(TimePicker): removed redundant onBlur (#8366)

* chore(deps): update dependency @patternfly/patternfly to v4.221.3 (#8382)

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

* feature(Wizard/next): Allow for async functions when navigating between steps, and add isCollapsible prop control to WizardStep (#8332)

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.68 (#8367)

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

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

 - @patternfly/react-catalog-view-extension@4.93.2
 - @patternfly/react-charts@6.94.13
 - @patternfly/react-code-editor@4.82.69
 - @patternfly/react-console@4.93.2
 - @patternfly/react-core@4.265.0
 - @patternfly/react-docs@5.103.5
 - @patternfly/react-icons@4.93.1
 - @patternfly/react-inline-edit-extension@4.86.71
 - demo-app-ts@4.205.4
 - @patternfly/react-log-viewer@4.87.64
 - @patternfly/react-styles@4.92.1
 - @patternfly/react-table@4.111.48
 - @patternfly/react-tokens@4.94.1
 - @patternfly/react-topology@4.90.25
 - @patternfly/react-virtualized-extension@4.88.69

* chore(Tabs): converted examples to TypeScript (#8337)

* chore(Tabs): converted examples to TypeScript

* fix(Tabs): fixed file name

* fix(Tabs): typed function arguments

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

 - @patternfly/react-catalog-view-extension@4.93.3
 - @patternfly/react-code-editor@4.82.70
 - @patternfly/react-console@4.93.3
 - @patternfly/react-core@4.265.1
 - @patternfly/react-docs@5.103.6
 - @patternfly/react-inline-edit-extension@4.86.72
 - demo-app-ts@4.205.5
 - @patternfly/react-log-viewer@4.87.65
 - @patternfly/react-table@4.111.49
 - @patternfly/react-topology@4.90.26
 - @patternfly/react-virtualized-extension@4.88.70

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.69 (#8411)

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

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

 - @patternfly/react-docs@5.103.7

* fix(AdvancedSearchMenu): allow spaces in search form field values (#8372)

When the user uses a space in a form field value this will get wrapped
in quotes within the Search input.

Closes #8369

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

 - @patternfly/react-catalog-view-extension@4.93.4
 - @patternfly/react-code-editor@4.82.71
 - @patternfly/react-console@4.93.4
 - @patternfly/react-core@4.265.2
 - @patternfly/react-docs@5.103.8
 - @patternfly/react-inline-edit-extension@4.86.73
 - demo-app-ts@4.205.6
 - @patternfly/react-log-viewer@4.87.66
 - @patternfly/react-table@4.111.50
 - @patternfly/react-topology@4.90.27
 - @patternfly/react-virtualized-extension@4.88.71

* feat(ClipboardCopy, Truncate): add removeFindDomNode (#8371)

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

 - @patternfly/react-catalog-view-extension@4.93.5
 - @patternfly/react-code-editor@4.82.72
 - @patternfly/react-console@4.93.5
 - @patternfly/react-core@4.266.0
 - @patternfly/react-docs@5.103.9
 - @patternfly/react-inline-edit-extension@4.86.74
 - demo-app-ts@4.205.7
 - @patternfly/react-log-viewer@4.87.67
 - @patternfly/react-table@4.111.51
 - @patternfly/react-topology@4.90.28
 - @patternfly/react-virtualized-extension@4.88.72

* chore(Panel): update component unit tests to meet new RTL standards (#8346)

* chore(Panel): update component unit tests to meet new standards with RTL #7594

* few small changes to Test Titles for consistency

Co-authored-by: Drew Amunategui II <drewamunateguiii@Drews-MacBook-Pro.local>

* chore(Sidebar): update tests to new react testing library standards (#8342)

* chore(Sidebar): update tests to new react testing library standards

* Refactored test to check for class names that exist by default

* Changed query to include parentElement

* Added test general existence of class name test

* Refactored the test for checking different width types

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

 - @patternfly/react-catalog-view-extension@4.93.6
 - @patternfly/react-code-editor@4.82.73
 - @patternfly/react-console@4.93.6
 - @patternfly/react-core@4.266.1
 - @patternfly/react-docs@5.103.10
 - @patternfly/react-inline-edit-extension@4.86.75
 - demo-app-ts@4.205.8
 - @patternfly/react-log-viewer@4.87.68
 - @patternfly/react-table@4.111.52
 - @patternfly/react-topology@4.90.29
 - @patternfly/react-virtualized-extension@4.88.73

* chore(pagination): fixed filter not applying in sticky example (#8133)

* chore(pagination): fixed filter not applying in sticy example

* feat: add page and pagesection to example

* Removed Page components

Co-authored-by: Eric Olkowski <thatblindgeye@gmail.com>

* fix(Pagination): Added support for insets (#8412)

* fix(Pagination): Added support for insets

* remove 3xl inset

* update widget id in example

* add usePageInsets prop

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.93.7
 - @patternfly/react-code-editor@4.82.74
 - @patternfly/react-console@4.93.7
 - @patternfly/react-core@4.266.2
 - @patternfly/react-docs@5.103.11
 - @patternfly/react-inline-edit-extension@4.86.76
 - demo-app-ts@4.205.9
 - @patternfly/react-log-viewer@4.87.69
 - @patternfly/react-table@4.111.53
 - @patternfly/react-topology@4.90.30
 - @patternfly/react-virtualized-extension@4.88.74

* Core bump 4 222 3 (#8420)

* chore(deps): update dependency @patternfly/patternfly to v4.222.3

* remove wait

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-catalog-view-extension@4.93.8
 - @patternfly/react-charts@6.94.14
 - @patternfly/react-code-editor@4.82.75
 - @patternfly/react-console@4.93.8
 - @patternfly/react-core@4.266.3
 - @patternfly/react-docs@5.103.12
 - @patternfly/react-icons@4.93.2
 - @patternfly/react-inline-edit-extension@4.86.77
 - demo-app-ts@4.205.10
 - @patternfly/react-integration@4.208.2
 - @patternfly/react-log-viewer@4.87.70
 - @patternfly/react-styles@4.92.2
 - @patternfly/react-table@4.111.54
 - @patternfly/react-tokens@4.94.2
 - @patternfly/react-topology@4.90.31
 - @patternfly/react-virtualized-extension@4.88.75

* feat(Menu): add drilldown filter demo, add flag to support demo & fix some keyboard interaction (#8405)

* feat(Menu): add drilldown filter demo, add flag to support demo & fix some keyboard interaction

* alternate method

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

 - @patternfly/react-catalog-view-extension@4.93.9
 - @patternfly/react-code-editor@4.82.76
 - @patternfly/react-console@4.93.9
 - @patternfly/react-core@4.267.0
 - @patternfly/react-docs@5.103.13
 - @patternfly/react-inline-edit-extension@4.86.78
 - demo-app-ts@4.205.11
 - @patternfly/react-log-viewer@4.87.71
 - @patternfly/react-table@4.111.55
 - @patternfly/react-topology@4.90.32
 - @patternfly/react-virtualized-extension@4.88.76

* feat(Table): add sticky modifiers to Td (#8391)

* feat(Table): allow sticky Td

* update description

* update disabled type, update desc

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

 - @patternfly/react-docs@5.103.14
 - @patternfly/react-inline-edit-extension@4.86.79
 - @patternfly/react-table@4.112.0

* chore(deps): update dependency @patternfly/patternfly to v4.222.4 (#8421)

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

* fix(VncConsole): prevent running initialization code more than once (#8373) (#8374)

The functions that were on the dependency list of the useEffect hook
got redefined each time the component got updated, resulting
in the component's initialization code, from within the useEffect hook,
to be running more than once.
That was unwanted behavior and the useCallback wrappers should prevent
it.

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

 - @patternfly/react-catalog-view-extension@4.93.10
 - @patternfly/react-charts@6.94.15
 - @patternfly/react-code-editor@4.82.77
 - @patternfly/react-console@4.93.10
 - @patternfly/react-core@4.267.1
 - @patternfly/react-docs@5.103.15
 - @patternfly/react-icons@4.93.3
 - @patternfly/react-inline-edit-extension@4.86.80
 - demo-app-ts@4.205.12
 - @patternfly/react-log-viewer@4.87.72
 - @patternfly/react-styles@4.92.3
 - @patternfly/react-table@4.112.1
 - @patternfly/react-tokens@4.94.3
 - @patternfly/react-topology@4.90.33
 - @patternfly/react-virtualized-extension@4.88.77

* chore(deps): update dependency @patternfly/documentation-framework to v1.2.70 (#8427)

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

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

 - @patternfly/react-docs@5.103.16

* fix(Menu): removed li wrapper from breadcrumb example (#8433)

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

 - @patternfly/react-catalog-view-extension@4.93.11
 - @patternfly/react-code-editor@4.82.78
 - @patternfly/react-console@4.93.11
 - @patternfly/react-core@4.267.2
 - @patternfly/react-docs@5.103.17
 - @patternfly/react-inline-edit-extension@4.86.81
 - demo-app-ts@4.205.13
 - @patternfly/react-log-viewer@4.87.73
 - @patternfly/react-table@4.112.2
 - @patternfly/react-topology@4.90.34
 - @patternfly/react-virtualized-extension@4.88.78

* Fix Nav Flyout Accessibility (#8279)

* fix(NavItem): disallow flyout and link props to both be defined on NavItem

* docs(Navigation): remove links from NavItems with flyouts

* fix(NavItem): remove aria-expanded prop

* fix(NavItem): use a button for Component if there is a flyout

* fix(NavItem): allow flyout to be opened on pressing Enter

* fix(MenuItem): disallow flyoutMenu and link props to both be defined

* docs(Navigation): remove links from MenuItems with flyouts

* fix(SelectOption): make props conditional to align with MenuItemProps

* fix(DropdownItem): make props conditional to align with MenuItemProps

* fix(NavItem): revert conditional prop changes

* fix(NavItem): fix opening nested MenuItem-based flyouts with keyboard

* fix(NavItem): add a console.err message if to and flyout are used together

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

 - @patternfly/react-catalog-view-extension@4.93.12
 - @patternfly/react-code-editor@4.82.79
 - @patternfly/react-console@4.93.12
 - @patternfly/react-core@4.267.3
 - @patternfly/react-docs@5.103.18
 - @patternfly/react-inline-edit-extension@4.86.82
 - demo-app-ts@4.205.14
 - @patternfly/react-integration@4.208.3
 - @patternfly/react-log-viewer@4.87.74
 - @patternfly/react-table@4.112.3
 - @patternfly/react-topology@4.90.35
 - @patternfly/react-virtualized-extension@4.88.79

* chore(CalendarMonth): provided explicit guidance for labeling an inline calendar month (#8375)

* chore(CalendarMonth): provided explicit guidance for labeling an inline calendar month

* update per PR comments

* move inline accommodations into an inlineProps prop

* fix typo and address PR comments

* fix test failures

* fix tests and snapshots

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

 - @patternfly/react-catalog-view-extension@4.93.13
 - @patternfly/react-code-editor@4.82.80
 - @patternfly/react-console@4.93.13
 - @patternfly/react-core@4.267.4
 - @patternfly/react-docs@5.103.19
 - @patternfly/react-inline-edit-extension@4.86.83
 - demo-app-ts@4.205.15
 - @patternfly/react-log-viewer@4.87.75
 - @patternfly/react-table@4.112.4
 - @patternfly/react-topology@4.90.36
 - @patternfly/react-virtualized-extension@4.88.80

* chore(Wizard): Convert examples to typescript (#8287)

* chore(Wizard): Convert examples to typescript

* Fix import statements

* Requested changes for cleanup

* Integrate FinishedStep and SampleForm into examples directly

* Remove unused onExpand function

* Fix useEffect not defined

* Import CogsIcon

* a11y fixes for FinishedStep and SampleForm conversions

* a11y fixes

* Bug Fixes

* Fixed incorrect Radio button state setting

* Revert Progressive Steps example change

* Fix Validate on Button Press for Wizard

* Fix import in example

* Remove unnecessary step state

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

 - @patternfly/react-catalog-view-extension@4.93.14
 - @patternfly/react-code-editor@4.82.81
 - @patternfly/react-console@4.93.14
 - @patternfly/react-core@4.267.5
 - @patternfly/react-docs@5.103.20
 - @patternfly/react-inline-edit-extension@4.86.84
 - demo-app-ts@4.205.16
 - @patternfly/react-log-viewer@4.87.76
 - @patternfly/react-table@4.112.5
 - @patternfly/react-topology@4.90.37
 - @patternfly/react-virtualized-extension@4.88.81

* fix: Remove package exports and replace subpaths script (#8438)

* fix: Remove package exports and replace subpaths script

* adding more subpaths in the event 'next' or 'deprecated' have relative paths

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

 - @patternfly/react-catalog-view-extension@4.93.15
 - @patternfly/react-code-editor@4.82.82
 - @patternfly/react-console@4.93.15
 - @patternfly/react-core@4.267.6
 - @patternfly/react-docs@5.103.21
 - @patternfly/react-inline-edit-extension@4.86.85
 - demo-app-ts@4.205.17
 - @patternfly/react-log-viewer@4.87.77
 - @patternfly/react-table@4.112.6
 - @patternfly/react-topology@4.90.38
 - @patternfly/react-virtualized-extension@4.88.82

* Chore(docs): Added release notes for 2022.16 (#8441)

* Chore(docs): Added release notes for 2022.16

* update screenshots

* updated title and remove issue number from notes

* Update packages/react-docs/RELEASE-NOTES.md

Co-authored-by: Evan <evan.wilkinson@redhat.com>

Co-authored-by: Titani <tlabaj@redaht.com>
Co-authored-by: Evan <evan.wilkinson@redhat.com>

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

 - @patternfly/react-docs@5.103.22

* chore(Toolbar): converted examples to typescript (#8404)

* chore(Toolbar): converted examples to typescript

* fix(Toolbar): removed problematic array declaration

* fix(Toolbar): fixed requested changes

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

 - @patternfly/react-catalog-view-extension@4.93.16
 - @patternfly/react-code-editor@4.82.83
 - @patternfly/react-console@4.93.16
 - @patternfly/react-core@4.267.7
 - @patternfly/react-docs@5.103.23
 - @patternfly/react-inline-edit-extension@4.86.86
 - demo-app-ts@4.205.18
 - @patternfly/react-log-viewer@4.87.78
 - @patternfly/react-table@4.112.7
 - @patternfly/react-topology@4.90.39
 - @patternfly/react-virtualized-extension@4.88.83

* chore(deps): update dependency @patternfly/documentation-framework to v1.3.4 (#8435)

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

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

 - @patternfly/react-docs@5.103.24

* chore(page): removed redundant padding value in example (#8485)

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

 - @patternfly/react-catalog-view-extension@4.93.17
 - @patternfly/react-code-editor@4.82.84
 - @patternfly/react-console@4.93.17
 - @patternfly/react-core@4.267.8
 - @patternfly/react-docs@5.103.25
 - @patternfly/react-inline-edit-extension@4.86.87
 - demo-app-ts@4.205.19
 - @patternfly/react-log-viewer@4.87.79
 - @patternfly/react-table@4.112.8
 - @patternfly/react-topology@4.90.40
 - @patternfly/react-virtualized-extension@4.88.84

* fix(Slider): updated input text styling (#8392)

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

 - @patternfly/react-catalog-view-extension@4.93.18
 - @patternfly/react-code-editor@4.82.85
 - @patternfly/react-console@4.93.18
 - @patternfly/react-core@4.267.9
 - @patternfly/react-docs@5.103.26
 - @patternfly/react-inline-edit-extension@4.86.88
 - demo-app-ts@4.205.20
 - @patternfly/react-log-viewer@4.87.80
 - @patternfly/react-table@4.112.9
 - @patternfly/react-topology@4.90.41
 - @patternfly/react-virtualized-extension@4.88.85

* Update dist.yml to avoid cache hit when subpaths change (#8443)

* fix(TextContent): test file name extension (#8491)

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

 - @patternfly/react-catalog-view-extension@4.93.19
 - @patternfly/react-code-editor@4.82.86
 - @patternfly/react-console@4.93.19
 - @patternfly/react-core@4.267.10
 - @patternfly/react-docs@5.103.27
 - @patternfly/react-inline-edit-extension@4.86.89
 - demo-app-ts@4.205.21
 - @patternfly/react-log-viewer@4.87.81
 - @patternfly/react-table@4.112.10
 - @patternfly/react-topology@4.90.42
 - @patternfly/react-virtualized-extension@4.88.86

* chore(ProgressStepper): update tests to new react testing library sta… (#8437)

* chore(ProgressStepper): update tests to new react testing library standards

* Removed unneeded Cypress tests

* Removed duplicate test

* Replaced toHaveAttribute with toHaveAccessibleName

* Revert back due to failing test

* Isolated pending, default, and undefined variant tests

* Refactored test name for testing for accessible name

* chore(deps): update dependency @patternfly/documentation-framework to v1.3.6 (#8468)

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

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

 - @patternfly/react-catalog-view-extension@4.93.20
 - @patternfly/react-code-editor@4.82.87
 - @patternfly/react-console@4.93.20
 - @patternfly/react-core@4.267.11
 - @patternfly/react-docs@5.103.28
 - @patternfly/react-inline-edit-extension@4.86.90
 - demo-app-ts@4.205.22
 - @patternfly/react-integration@4.208.4
 - @patternfly/react-log-viewer@4.87.82
 - @patternfly/react-table@4.112.11
 - @patternfly/react-topology@4.90.43
 - @patternfly/react-virtualized-extension@4.88.87

* FileUpload: Partial dropzoneProps (#8407)

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

 - @patternfly/react-catalog-view-extension@4.93.21
 - @patternfly/react-code-editor@4.82.88
 - @patternfly/react-console@4.93.21
 - @patternfly/react-core@4.267.12
 - @patternfly/react-docs@5.103.29
 - @patternfly/react-inline-edit-extension@4.86.91
 - demo-app-ts@4.205.23
 - @patternfly/react-log-viewer@4.87.83
 - @patternfly/react-table@4.112.12
 - @patternfly/react-topology@4.90.44
 - @patternfly/react-virtualized-extension@4.88.88

* feat(Topology): Counter scale labels (#8477)

* Topology - Counter scale labels

Signed-off-by: John Swanke <jswanke@redhat.com>

* tweak

Signed-off-by: John Swanke <jswanke@redhat.com>

Signed-off-by: John Swanke <jswanke@redhat.com>

* VncConsole: Introduce RFB clipViewport and dragViewport options (#8470)

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

 - @patternfly/react-console@4.93.22
 - @patternfly/react-docs@5.103.30
 - demo-app-ts@4.206.0
 - @patternfly/react-integration@4.209.0
 - @patternfly/react-topology@4.91.0

* fix(TableComposable): Fixed parent checkbox behavior (#8490)

* fix(TableComposable): Fixed parent checkbox behavior

* fix linting

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

 - @patternfly/react-docs@5.103.31
 - @patternfly/react-inline-edit-extension@4.86.92
 - @patternfly/react-table@4.112.13

* fix(MenuGroup): Add option to use React component and Node in groupMenu (#8219)

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

 - @patternfly/react-catalog-view-extension@4.93.22
 - @patternfly/react-code-editor@4.82.89
 - @patternfly/react-console@4.93.23
 - @patternfly/react-core@4.267.13
 - @patternfly/react-docs@5.103.32
 - @patternfly/react-inline-edit-extension@4.86.93
 - demo-app-ts@4.206.1
 - @patternfly/react-integration@4.209.1
 - @patternfly/react-log-viewer@4.87.84
 - @patternfly/react-table@4.112.14
 - @patternfly/react-topology@4.91.1
 - @patternfly/react-virtualized-extension@4.88.89

* Adds content to page component react examples. (#8198)

* Adds content to page component react examples.

* Content updates.

* Updates content based on feedback.

* Further content edits.

* chore(page): use numeral in example description

* chore(page): use numeral in example description

Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>

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

 - @patternfly/react-catalog-view-extension@4.93.23
 - @patternfly/react-code-editor@4.82.90
 - @patternfly/react-console@4.93.24
 - @patternfly/react-core@4.267.14
 - @patternfly/react-docs@5.103.33
 - @patternfly/react-inline-edit-extension@4.86.94
 - demo-app-ts@4.206.2
 - @patternfly/react-log-viewer@4.87.85
 - @patternfly/react-table@4.112.15
 - @patternfly/react-topology@4.91.2
 - @patternfly/react-virtualized-extension@4.88.90

* chore(deps): update dependency @patternfly/documentation-framework to v1.3.7 (#8501)

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

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

 - @patternfly/react-docs@5.103.34

* feat(Dropdown): support inProgress variation (#8436)

* wip progress state

* feat(Dropdown): support inProgress variation

* PR feedback from Eric

* fix a11y id issue

* add logic to timeout and show checkbox again

remove comments

* PR feedback from mcarrano

* add ariavalue-text, mark prop beta

* update verbiage

* PR feedback from Eric

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

 - @patternfly/react-catalog-view-extension@4.93.24
 - @patternfly/react-code-editor@4.82.91
 - @patternfly/react-console@4.93.25
 - @patternfly/react-core@4.268.0
 - @patternfly/react-docs@5.103.35
 - @patternfly/react-inline-edit-extension@4.86.95
 - demo-app-ts@4.206.3
 - @patternfly/react-log-viewer@4.87.86
 - @patternfly/react-table@4.112.16
 - @patternfly/react-topology@4.91.3
 - @patternfly/react-virtualized-extension@4.88.91

* chore(Catalog view): remove catalog view extension (#8474)

* chore(Catalog view): remove catalog view extension

* chore(promotion): re-add catalog view to promotion script

* fix: aria label added to ungrouped simple list (#8507)

* fix: aria label added to ungrouped simple list

* refactor: added aria label to props list, also described it

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

 - @patternfly/react-code-editor@4.82.92
 - @patternfly/react-console@4.93.26
 - @patternfly/react-core@4.268.1
 - @patternfly/react-docs@5.103.36
 - @patternfly/react-inline-edit-extension@4.86.96
 - demo-app-ts@4.206.4
 - @patternfly/react-log-viewer@4.87.87
 - @patternfly/react-table@4.112.17
 - @patternfly/react-topology@4.91.4
 - @patternfly/react-virtualized-extension@4.88.92

* react-console: bump no vnc dependency (#8522)

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

 - @patternfly/react-console@4.93.27

* chore(deps): update dependency @patternfly/documentation-framework to v1.3.8 (#8520)

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

* chore(SearchInput): edited ExpandableInput and SearchAttribute (#8527)

* fix(LabelGroup): show the correct count of overflow labels (#8505)

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

 - @patternfly/react-code-editor@4.82.93
 - @patternfly/react-console@4.93.28
 - @patternfly/react-core@4.268.2
 - @patternfly/react-docs@5.103.37
 - @patternfly/react-inline-edit-extension@4.86.97
 - demo-app-ts@4.206.5
 - @patternfly/react-log-viewer@4.87.88
 - @patternfly/react-table@4.112.18
 - @patternfly/react-topology@4.91.5
 - @patternfly/react-virtualized-extension@4.88.93

* fix(NumberInput): make allowEmptyInput an opt-in prop (#8502)

* fix(NumberInput): make allowEmptyInput an opt-in prop

* update another example that uses numberinput

* feat(Tabs): added event to onAdd callback (#8492)

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

 - @patternfly/react-code-editor@4.82.94
 - @patternfly/react-console@4.93.29
 - @patternfly/react-core@4.269.0
 - @patternfly/react-docs@5.103.38
 - @patternfly/react-inline-edit-extension@4.86.98
 - demo-app-ts@4.206.6
 - @patternfly/react-integration@4.209.2
 - @patternfly/react-log-viewer@4.87.89
 - @patternfly/react-table@4.112.19
 - @patternfly/react-topology@4.91.6
 - @patternfly/react-virtualized-extension@4.88.94

* feat(Datepicker): add event to callbacks (#8529)

* feat(Datepicker): add event to callbacks

* update examples

* update demoapp

* update event param name

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

 - @patternfly/react-code-editor@4.82.95
 - @patternfly/react-console@4.93.30
 - @patternfly/react-core@4.270.0
 - @patternfly/react-docs@5.103.39
 - @patternfly/react-inline-edit-extension@4.86.99
 - demo-app-ts@4.207.0
 - @patternfly/react-integration@4.210.0
 - @patternfly/react-log-viewer@4.87.90
 - @patternfly/react-table@4.112.20
 - @patternfly/react-topology@4.91.7
 - @patternfly/react-virtualized-extension@4.88.95

* feat(TextInputGroup): reordered onChange parameters (#8494)

* feat(TextInputGroup): reordered onChange parameters

* Updated onChange arguments in components/examples

* Updated onChange arg order in last demo

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

 - @patternfly/react-code-editor@4.82.96
 - @patternfly/react-console@4.93.31
 - @patternfly/react-core@4.271.0
 - @patternfly/react-docs@5.103.40
 - @patternfly/react-inline-edit-extension@4.86.100
 - demo-app-ts@4.207.1
 - @patternfly/react-log-viewer@4.87.91
 - @patternfly/react-table@4.112.21
 - @patternfly/react-topology@4.91.8
 - @patternfly/react-virtualized-extension@4.88.96

* fix(DualListSelector): added empty state to composable examples (#8480)

* fix(DualListSelector): added empty state to composable examples

* remove unused imports

* update per PR comments

* attempt to fix linting errors

* wrap clear button in EmptyStatePrimary

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

 - @patternfly/react-code-editor@4.82.97
 - @patternfly/react-console@4.93.32
 - @patternfly/react-core@4.271.1
 - @patternfly/react-docs@5.103.41
 - @patternfly/react-inline-edit-extension@4.86.101
 - demo-app-ts@4.207.2
 - @patternfly/react-log-viewer@4.87.92
 - @patternfly/react-table@4.112.22
 - @patternfly/react-topology@4.91.9
 - @patternfly/react-virtualized-extension@4.88.97

* chore(beta): clean up beta tags for v4 (#8545)

* Topology documentation: add baseline and custom demo + docs (#8508)

* add docs and demo for baseline topology

add type

preliminary updates based on Jeff feedback

Jeff's implementation for baseline demo

update README with Jeff's implementation

add topology paths to patternfly-docs.source.js; update Topology.md to include new docs for now, WIP on the examples

styles; WIP status decorators

Add custom node demo

add type

add docs and demo for baseline topology

add type

preliminary updates based on Jeff feedback

Jeff's implementation for baseline demo

update README with Jeff's implementation

add topology paths to patternfly-docs.source.js; update Topology.md to include new docs for now, WIP on the examples

styles; WIP status decorators

Add custom node demo

add type

preliminary updates based on Jeff feedback

Jeff's implementation for baseline demo

update README with Jeff's implementation

add topology paths to patternfly-docs.source.js; update Topology.md to include new docs for now, WIP on the examples

styles; WIP status decorators

Add topology baseline demo

update dagre to working version, move/display custom demo in react-topology md

move text into baseline demo, add custom node docs

remove examples from demo app

revert TopologyDemo.tsx to main version

remove consumer-facing TODO

* PR feedback from Jeff

* update step 4, delete step 5

* fix aria-label a11y

* fix(SearchInput) - add a name prop to the input (#8554)

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

 - @patternfly/react-code-editor@4.82.98
 - @patternfly/react-console@4.93.33
 - @patternfly/react-core@4.271.2
 - @patternfly/react-docs@5.103.42
 - @patternfly/react-inline-edit-extension@4.86.102
 - demo-app-ts@4.207.3
 - @patternfly/react-log-viewer@4.87.93
 - @patternfly/react-table@4.112.23
 - @patternfly/react-topology@4.91.10
 - @patternfly/react-virtualized-extension@4.88.98

* feat(TimePicker): added event to onChange callback (#8493)

* feat(TimePicker): added event to onChange callback

* Updated onChange in example and demo

* fix(Wizard): put focus in drawer when opened in wizard (#8540)

* chore(Wizard): move focus into the wizard's drawer when expanded

* fix(Wizard): put focus in drawer when opened in wizard

* fix linting

* fix linting

* update demo behavior

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

 - @patternfly/react-code-editor@4.82.99
 - @patternfly/react-console@4.93.34
 - @patternfly/react-core@4.272.0
 - @patternfly/react-docs@5.103.43
 - @patternfly/react-inline-edit-extension@4.86.103
 - demo-app-ts@4.207.4
 - @patternfly/react-log-viewer@4.87.94
 - @patternfly/react-table@4.112.24
 - @patternfly/react-topology@4.91.11
 - @patternfly/react-virtualized-extension@4.88.99

* chore(deps): update dependency @patternfly/documentation-framework to v1.3.12 (#8538)

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

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

 - @patternfly/react-docs@5.103.44

* chore(Slider): converted examples to typescript (#8164)

* chore(Slider): converted examples to typescript

* chore(Slider): convert examples to typescript

* update per PR comments

* fix lint/build errors

Co-authored-by: nicolethoen <nthoen@redhat.com>

* fix patternfly for function subtyping (#8497)

* fix patternfly for function subtyping

Signed-off-by: John Swanke <jswanke@redhat.com>

* remove comment

Signed-off-by: John Swanke <jswanke@redhat.com>

Signed-off-by: John Swanke <jswanke@redhat.com>

* feat(Label): add event parameter (#8544)

* feat(Label): add event parameter

* update demo

* update labelgroup

* update other demo

* chore(DemoApp): hot replacement support for demo app (#8471)

* hot replacement support for demo app

Signed-off-by: John Swanke <jswanke@redhat.com>

* fix build

Signed-off-by: John Swanke <jswanke@redhat.com>

* fix build

Signed-off-by: John Swanke <jswanke@redhat.com>

* allow type checking with hot replacement

Signed-off-by: John Swanke <jswanke@redhat.com>

* semantic and lint checks

Signed-off-by: John Swanke <jswanke@redhat.com>

* fix popper

Signed-off-by: John Swanke <jswanke@redhat.com>

* fix popper

Signed-off-by: John Swanke <jswanke@redhat.com>

* fix typescript

Signed-off-by: John Swanke <jswanke@redhat.com>

* fix yarn.lock

Signed-off-by: John Swanke <jswanke@redhat.com>

* ts and lint check only if running :hot

Signed-off-by: John Swanke <jswanke@redhat.com>

* ts and lint check only if running :hot

Signed-off-by: John Swanke <jswanke@redhat.com>

* fix conflict

Signed-off-by: John Swanke <jswanke@redhat.com>

Signed-off-by: John Swanke <jswanke@redhat.com>

* fix(Table): fixed draggable column management demo (#8553)

* fix(Table): fixed draggable column management demo

* add back rows

* reorder rows

* chore(SearchInput): reordered props in onChange and onSearch (#8516)

* chore(SearchInput): reordered props in onChange and onSearch

* fix(docs): added _event argument to example added during rebase

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

 - @patternfly/react-code-editor@4.82.100
 - @patternfly/react-console@4.93.35
 - @patternfly/react-core@4.273.0
 - @patternfly/react-docs@5.103.45
 - @patternfly/react-inline-edit-extension@4.86.104
 - demo-app-ts@4.208.0
 - @patternfly/react-integration@4.211.0
 - @patternfly/react-log-viewer@4.87.95
 - @patternfly/react-table@4.112.25
 - @patternfly/react-topology@4.91.12
 - @patternfly/react-virtualized-extension@4.88.100

* fix(Tabs): Removed isHelpAction prop from TabsAction (#8560)

* fix(Tabs): Removed isHelpAction prop from TabsAction

* Add TabAction to docs

* update to core 4.224.0

* resolve conflicts

Co-authored-by: Titani <tlabaj@redaht.com>

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

 - @patternfly/react-charts@6.94.16
 - @patternfly/react-code-editor@4.82.101
 - @patternfly/react-console@4.93.36
 - @patternfly/react-core@4.273.1
 - @patternfly/react-docs@5.103.46
 - @patternfly/react-icons@4.93.4
 - @patternfly/react-inline-edit-extension@4.86.105
 - demo-app-ts@4.208.1
 - @patternfly/react-log-viewer@4.87.96
 - @patternfly/react-styles@4.92.4
 - @patternfly/react-table@4.112.26
 - @patternfly/react-tokens@4.94.4
 - @patternfly/react-topology@4.91.13
 - @patternfly/react-virtualized-extension@4.88.101

* chore(react-log-viewer): Removed react log viewer as it's now own repo https://github.com/patternfly/react-log-viewer (#8571)

Updated with review comments.

Removed log viewer from react-docs

* chore(deps): update dependency @patternfly/documentation-framework to v1.4.1 (#8568)

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

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

 - @patternfly/react-docs@5.103.47

* Adds content to dropdown next component examples. (#8378)

* Adds content to dropdown next component examples.

* Revising.

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

 - @patternfly/react-code-editor@4.82.102
 - @patternfly/react-console@4.93.37
 - @patternfly/react-core@4.273.2
 - @patternfly/react-docs@5.103.48
 - @patternfly/react-inline-edit-extension@4.86.106
 - demo-app-ts@4.208.2
 - @patternfly/react-table@4.112.27
 - @patternfly/react-topology@4.91.14
 - @patternfly/react-virtualized-extension@4.88.102

* chore(deps): update dependency @patternfly/patternfly to v4.224.1 (#8573)

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

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

 - @patternfly/react-charts@6.94.17
 - @patternfly/react-code-editor@4.82.103
 - @patternfly/react-console@4.93.38
 - @patternfly/react-core@4.273.3
 - @patternfly/react-docs@5.103.49
 - @patternfly/react-icons@4.93.5
 - @patternfly/react-inline-edit-extension@4.86.107
 - demo-app-ts@4.208.3
 - @patternfly/react-styles@4.92.5
 - @patternfly/react-table@4.112.28
 - @patternfly/react-tokens@4.94.5
 - @patternfly/react-topology@4.91.15
 - @patternfly/react-virtualized-extension@4.88.103

* docs(topology): add edges demo (#8558)

* add docs and demo for edges topology

add type

preliminary updates based on Jeff feedback

Jeff's implementation for baseline demo

update README with Jeff's implementation

add topology paths to patternfly-docs.source.js; update Topology.md to include new docs for now, WIP on the examples

styles; WIP status decorators

Add topology baseline demo

update dagre to working version, move/display custom demo in react-topology md

move text into baseline demo, add custom node docs

wip add edge demo

add edge demo with all static edge styles

remove placeholder text for now, docs content TBD

add edge docs

delete demo files

sync files

remove comments

remove comment

* add missing imports

* edge demo updates

Co-authored-by: Jeffrey Phillips <jephilli@redhat.com>

* feat(TextList): added isPlain prop (#8562)

* feat(TextList): added isPlain prop

* chore(TextList): test/example updates

* chore(TextList): removed nested list in example

* fix: forward given role to chip component (#8383)

* fix: forward given role to chip component

#8353

* fix: spread props to all chips

https://github.com/patternfly/patternfly-react/pull/8383#issuecomment-1329742421

* fix: class overrides

* refactor: props spread at the end

* fix: props spreaded in a different way

* Move react console (#8575)

* chore(extension): Move react-console package to a separate repository

See https://github.com/patternfly/react-console/pull/1

* chore(docs): remove console from react-docs

Co-authored-by: Katerina Koukiou <kkoukiou@redhat.com>

* Adds content to modal react examples. (#8117)

* Documents modal react examples.

* Apply suggestions from code review

Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>

* Content updates.

* Documents modal react examples.

* Apply suggestions from code review

Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>

* Content updates.

* Content edits.

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

Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>

* Edit size descriptions.

Co-authored-by: Jenny <32821331+jenny-s51@users.noreply.github.com>
Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com>

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

 - @patternfly/react-code-editor@4.82.104
 - @patternfly/react-core@4.274.0
 - @patternfly/react-docs@5.103.50
 - @patternfly/react-inline-edit-extension@4.86.108
 - demo-app-ts@4.208.4
 - @patternfly/react-integration@4.211.1
 - @patternfly/react-table@4.112.29
 - @patternfly/react-topology@4.91.16
 - @patternfly/react-virtualized-extension@4.88.104

* docs(Wizard/next): Recreate all legacy wizard examples (#8422)

* docs(Wizard/next): Recreate all legacy wizard examples

* add event params to wizard component callback props, add focus logic to drawer example, replace lodash findLastIndex in Wizard

* fix demo app build issue with MenuDemo props

* address feedback

* updating v2 'validate on button press' example

* rename isCollapsible to isExpandable

* change default value of WizardStep's isExpandable prop to false, remove another lodash usage

* docs(topology): Add pan/zoom demo (#8557)

* add docs and demo for pan/zoom topology

* Update Topology.md

* chore(react-code-editor): upgrade `react-monaco-editor` to latest version (#8577)

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

 - @patternfly/react-code-editor@4.82.105
 - @patternfly/react-core@4.274.1
 - @patternfly/react-docs@5.103.51
 - @patternfly/react-inline-edit-extension@4.86.109
 - demo-app-ts@4.208.5
 - @patternfly/react-integration@4.211.2
 - @patternfly/react-table@4.112.30
 - @patternfly/react-topology@4.91.17
 - @patternfly/react-virtualized-extension@4.88.105

* chore(Table): added menuAppendTo props to actions tables (#8521)

* chore(Table): added menuAppendTo props to actions tables

* fix linting

* clean up docs around actions columns

* clean up docs around actions columns

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

 - @patternfly/react-docs@5.103.52
 - @patternfly/react-inline-edit-extension@4.86.110
 - @patternfly/react-table@4.112.31

* add selection demo (#8512)

add select docs

remove unused files

update docs based on Jeff feedback

update yarn.lock

style updates

move class and attributes

rearrange styles

add selectable edges to edge demo

Update packages/react-topology/src/components/TopologyView/examples/Topology.md

Co-authored-by: Jeff Phillips <jephilli@redhat.com>

revert edges

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

 - @patternfly/react-docs@5.103.53
 - @patternfly/react-topology@4.91.18

* chore(deps): update dependency @patternfly/documentation-framework to v1.4.3 (#8576)

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

* fix(Table): fix verbiage in example documentation (#8565)

* feat(Select): add toggle ref (#8528)

* feat(Select): add toggle ref

* add integration test

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

 - @patternfly/react-code-editor@4.82.106
 - @patternfly/react-core@4.275.0
 - @patternfly/react-docs@5.103.54
 - @patternfly/react-inline-edit-extension@4.86.111
 - demo-app-ts@4.209.0
 - @patternfly/react-integration@4.212.0
 - @patternfly/react-table@4.112.32
 - @patternfly/react-topology@4.91.19
 - @patternfly/react-virtualized-extension@4.88.106

* feat(Accordion): made scrollable content focusable (#8515)

* feat(Accordion): made scrollable content focusable

* Added aria-labelledby prop, updated example

* Addressed pr feedback

* Added test for arialabelledby

* Added cypress test

* feat(Menu): added event param to onDrillIn and onDrillOut callbacks (#8514)

* feat(Menu): added event param to onDrillIn and onDrillOut callbacks

* fix(Menu): narrow event type

* fix(Menu): remove unneeded any typing

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

 - @patternfly/react-code-editor@4.82.107
 - @patternfly/react-core@4.276.0
 - @patternfly/react-docs@5.103.55
 - @patternfly/react-inline-edit-extension@4.86.112
 - demo-app-ts@4.210.0
 - @patternfly/react-integration@4.213.0
 - @patternfly/react-table@4.112.33
 - @patternfly/react-topology@4.91.20
 - @patternfly/react-virtualized-extension@4.88.107

* Adds content to menu react examples (#8018)

* Starts menu content edits.

* Content updates and …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Banner- add support for status icons
6 participants