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

fix(deps): update dependency @openedx/paragon to v22 #556

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 26, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@openedx/paragon ^21.11.0 -> ^22.0.0 age adoption passing confidence

Release Notes

openedx/paragon (@​openedx/paragon)

v22.7.0

Compare Source

Features

v22.6.1

Compare Source

Bug Fixes

v22.6.0

Compare Source

Features

v22.5.1

Compare Source

Bug Fixes

v22.5.0

Compare Source

Features

v22.4.0

Compare Source

Features

v22.3.2

Compare Source

Bug Fixes

v22.3.1

Compare Source

Bug Fixes

v22.3.0

Compare Source

Features

v22.2.2

Compare Source

Bug Fixes
  • ensure esc key does not close modals that are blocking (#​3033) (a381182)

v22.2.1

Compare Source

Bug Fixes

v22.2.0

Compare Source

Features
  • working typings for Paragon, better types for component (#​3016) (0983219)

v22.1.1

Compare Source

Bug Fixes

v22.1.0

Compare Source

Features
  • allow consumers to configure ModalDialog to allow overflow (#​2939) (2801667)

v22.0.0

Compare Source

This release contains breaking changes to the following 4 components:

  • Chip
  • Pagination
  • SearchField
  • Form.Autosuggest

Breaking Changes

Chip

This updates the Chip component to reflect the design spec as intended.

BREAKING CHANGE: Many of the SCSS variables (i.e., tokens) surrounding Chip were removed. Consumers should verify no longer using any of the removed SCSS variables in custom Paragon brands/themes.

Pagination

This updates the Pagination component to rely on the proper button variants, rather than having all pagination buttons be of the primary variant (even when unselected) with custom styles overriding the default button variant style (e.g., background color).

It also refactors the component to be more maintainable moving forward.

BREAKING CHANGE: Many of the SCSS variables (i.e., tokens) surrounding Pagination were removed. Consumers should verify no longer using any of the removed SCSS variables in custom Paragon brands/themes.

BREAKING CHANGE: icons prop now accepts the icon src instead of an Icon component.

Before

<Pagination
  ...
  icons={{
    leftIcon: <Icon src={ChevronLeft} />,
    rightIcon: <Icon src={ChevronRight} />,
  }}
/>

After

<Pagination
  ...
  icons={{
    leftIcon: ChevronLeft,
    rightIcon: ChevronRight,
  }}
/>
SearchField

This updates the SearchField component to rely on IconButton components for its actions (e.g., reset, submit). It also ensures the external submit button in the dark variant has appropriate hover styles.

BREAKING CHANGE: icons prop now accepts the icon src instead of an Icon component.

Before

<SearchField
  ...
  icons={{
    submit: <Icon src={Search} />,
    clear: <Icon src={Close} />,
  }}
/>

After

<SearchField
  ...
  icons={{
    submit: Search,
    clear: Close,
  }}
/>
Form.Autosuggest

This updates the Autosuggest component to provide the consumer with:

  • The value entered in the textbox by the user
  • The selected value (as it is displayed in the dropdown)
  • The id of the selected option

This also allows the consumer to determine if the component should be in an error state when:

  • No text has been entered
  • Text has been entered, but not selection has been made
  • An external validation check has failed - "customError"

The consumer will provide error messages for the appropriate error states.

BREAKING CHANGE: value prop of Form.Autosuggest is now an object instead of a string

BREAKING CHANGE: Form.Autosuggest now uses onChange instead of onSelected

BREAKING CHANGE: Form.Autosuggest now takes in different error messages for value/selection required, and custom errors

v21.13.1

Compare Source

Bug Fixes

v21.13.0

Compare Source

Features

v21.12.3

Compare Source

Bug Fixes

v21.12.2

Compare Source

Bug Fixes

v21.12.1

Compare Source

Bug Fixes
  • correctly translate strings in Checkpoint component (#​2886) (bfe4b8d)
  • observe container resizing in useIndexOfLastVisibleChild hook instead of window resize (#​2962) (dc38d63)

v21.12.0

Compare Source

Bug Fixes
  • correctly display filtered items count in Select all button in the DataTable component (#​2929) (16a006b)
Features

Configuration

📅 Schedule: Branch creation - "before 4am on Monday" in timezone America/New_York, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch from 2adc68a to 638b67d Compare February 27, 2024 11:20
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 2 times, most recently from 1ddd670 to 7b186c3 Compare March 20, 2024 06:39
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 2 times, most recently from 4719fe0 to 04c25e7 Compare March 26, 2024 20:02
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 2 times, most recently from 86c7403 to a712a78 Compare April 5, 2024 14:07
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 4 times, most recently from c4b6760 to a99c6f7 Compare April 17, 2024 22:44
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 5 times, most recently from bfa4dea to 519d660 Compare April 26, 2024 14:33
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch from 519d660 to dd4ee50 Compare April 30, 2024 07:49
@renovate renovate bot changed the title chore(deps): update dependency @openedx/paragon to v22 fix(deps): update dependency @openedx/paragon to v22 Apr 30, 2024
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 4 times, most recently from f0d526e to b56fc29 Compare May 13, 2024 06:32
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch from b56fc29 to 8deb399 Compare May 13, 2024 10:21
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 3 times, most recently from 5b46943 to d8f02cf Compare June 3, 2024 07:16
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 2 times, most recently from 980b899 to d7740cf Compare June 10, 2024 10:29
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch from d7740cf to 5fe9e57 Compare June 17, 2024 06:18
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch from 5fe9e57 to 81f1279 Compare July 23, 2024 07:37
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch 3 times, most recently from 92f2465 to 7a872c2 Compare July 23, 2024 07:51
@renovate renovate bot force-pushed the renovate/openedx-paragon-22.x branch from 7a872c2 to 4034254 Compare July 23, 2024 09:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants