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 @edx/paragon to v21 #649

Merged
merged 1 commit into from
Nov 15, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 4, 2023

Mend Renovate logo banner

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@edx/paragon ^20.44.0 -> ^21.0.0 age adoption passing confidence

Release Notes

openedx/paragon (@​edx/paragon)

v21.5.6

Compare Source

Bug Fixes
  • Update docs for a final publish before we move this package. (22dd0c4)

v21.5.5

Compare Source

Bug Fixes

v21.5.4

Compare Source

Bug Fixes
  • Update imports to the new brand package. (6719baa)

v21.5.3

Compare Source

Bug Fixes
  • avoid duplicate onChange calls in FormRadioSet and FormCheckboxSet (#​2705) (a395042)

v21.5.2

Compare Source

Bug Fixes

v21.5.1

Compare Source

Bug Fixes
  • run leave control logic when tabbing out of autosuggest (#​2663) (5521493)

v21.5.0

Compare Source

Features

v21.4.0

Compare Source

Features

v21.3.1

Compare Source

Bug Fixes

v21.3.0

Compare Source

Features
  • added new icon in es5 and jsx (5ef216f)

v21.2.0

Compare Source

Features

v21.1.10

Compare Source

Bug Fixes

v21.1.9

Compare Source

Bug Fixes
  • add ability to truncate text without spaces in Truncate component (#​2584) (3db63e7)

v21.1.8

Compare Source

Bug Fixes
  • update Card's border-radius and color in focused state (#​2607) (5eb4c8e)

v21.1.7

Compare Source

Bug Fixes

v21.1.6

Compare Source

Bug Fixes

v21.1.5

Compare Source

Bug Fixes

v21.1.4

Compare Source

Bug Fixes
  • use Form.Checkbox instead of default checkboxes in DataTable filters (#​2555) (d07827d)

v21.1.3

Compare Source

Bug Fixes
  • disable browser autocomplete and edit dropdown items elements (93bf239)

v21.1.2

Compare Source

Reverts

v21.1.1

Compare Source

Bug Fixes

v21.1.0

Compare Source

Bug Fixes
  • filtered dropdown items by display value instead of event target (#​2547) (cac6984)
Features

v21.0.1

Compare Source

Bug Fixes

v21.0.0

Compare Source

BREAKING CHANGES
  • aria-label is required when not using aria-labelledby
    in the SelectableBoxSet component. An associated label for the component is a WCAG requirement.
For Consumers

In order to associate a label with the SelectableBoxSet component, developers can use the aria-labelledby attribute. The value of this attribute should match the id of the element that is to be referenced as a label, whether visible or not. If no visible or invisible label is provided in the markup, developers can either make an invisible one (e.g. <h3 className="sr-only">Hello, World</h3>) that only assistive technologies would pick up on, or they can opt to use an aria-label instead.

See the doc site page for SelectableBox to view a live example of using aria-labelledby.

Examples

Using aria-labelledby with the SelectableBoxSet component:

<div className="bg-light-200 p-3">
  {/** `id` provided to the `h3` is the same value as the `aria-labelledby` in `SelectableBox.Set` **/}
  <h3 id="cheese selection" className="mb-4">
    Select your favorite cheese
  </h3>
  <SelectableBox.Set
    value={checkedCheeses}
    type={type}
    onChange={handleChange}
    name="cheeses"
    columns={isExtraSmall ? 1 : 3}
    ariaLabelledby="cheese selection"
  >
    <SelectableBox value="swiss" inputHidden={false} type={type} aria-label="swiss checkbox">
      <h3>
        Swiss
      </h3>
    </SelectableBox>
    <SelectableBox value="cheddar" inputHidden={false} type={type} aria-label="cheddar checkbox">
      <h3>
        Cheddar
      </h3>
    </SelectableBox>
    <SelectableBox value="pepperjack" inputHidden={false} type={type} aria-label="pepperjack checkbox">
      <h3>
        Pepperjack
      </h3>
    </SelectableBox>
  </SelectableBox.Set>
</div>

If not using aria-labelledby, developers must provide an aria-label to the component:

<SelectableBox.Set
  value={checkedCheeses}
  type={type}
  onChange={handleChange}
  name="cheeses"
  columns={isExtraSmall ? 1 : 3}
  ariaLabel="cheese selection"
>
  <SelectableBox value="swiss" inputHidden={false} type={type} aria-label="swiss checkbox">
    <h3>
      Swiss
    </h3>
  </SelectableBox>
  <SelectableBox value="cheddar" inputHidden={false} type={type} aria-label="cheddar checkbox">
    <h3>
      Cheddar
    </h3>
  </SelectableBox>
  <SelectableBox value="pepperjack" inputHidden={false} type={type} aria-label="pepperjack checkbox">
    <h3>
      Pepperjack
    </h3>
  </SelectableBox>
</SelectableBox.Set>

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 3 times, most recently from 24efae3 to e0a2958 Compare September 18, 2023 00:06
@codecov
Copy link

codecov bot commented Sep 18, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (5705267) 0.00% compared to head (6357952) 0.00%.

❗ Current head 6357952 differs from pull request most recent head 37ee0e3. Consider uploading reports for the commit 37ee0e3 to get more accurate results

Additional details and impacted files
@@          Coverage Diff           @@
##           master    #649   +/-   ##
======================================
  Coverage    0.00%   0.00%           
======================================
  Files           2       2           
  Lines           7       7           
======================================
  Misses          7       7           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 5 times, most recently from 49c54bc to 347bfc1 Compare September 25, 2023 00:05
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 3 times, most recently from 06bf001 to eaa24c7 Compare October 2, 2023 07:17
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 5 times, most recently from bd51a57 to a0f2f1f Compare October 16, 2023 00:05
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 4 times, most recently from 0a3e6f6 to e892327 Compare October 23, 2023 00:05
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 3 times, most recently from cc827bc to 0c865c8 Compare October 30, 2023 07:29
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch 5 times, most recently from 7b6f6c4 to 6357952 Compare November 6, 2023 11:09
@renovate renovate bot force-pushed the renovate/edx-paragon-21.x branch from 6357952 to 37ee0e3 Compare November 13, 2023 10:49
@arbrandes arbrandes merged commit f01d2b8 into master Nov 15, 2023
5 checks passed
@arbrandes arbrandes deleted the renovate/edx-paragon-21.x branch November 15, 2023 15:55
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.

1 participant