Skip to content

Releases: ionic-team/ionicons

v7.0.0

07 Mar 13:49
Compare
Choose a tag to compare

7.0.0 (2023-03-07)

Migration Note: Developers should ensure that their <ion-icon> usages have either aria-label or aria-hidden to avoid accessibility issues. See https://ionic.io/ionicons/usage for more information.

Bug Fixes

v6.1.3

09 Feb 17:34
Compare
Choose a tag to compare

6.1.3 (2023-02-09)

Bug Fixes

v6.1.2

08 Feb 14:05
Compare
Choose a tag to compare

6.1.2 (2023-02-08)

Bug Fixes

v6.1.1

18 Jan 13:41
Compare
Choose a tag to compare

6.1.1 (2023-01-18)

Bug Fixes

v6.1.0

17 Jan 19:28
Compare
Choose a tag to compare

6.1.0 (2023-01-17)

Bug Fixes

v6.0.4

08 Nov 19:36
cafe8e6
Compare
Choose a tag to compare
  • fix(icon): icons will load when content security policies are enabled (#1141) 6685892
  • fix(icon): flip-rtl works if dir="rtl" is set on icon directly (#1142) c37b691

v6.0.3...v6.0.4

v6.0.3

26 Aug 13:14
8d898d7
Compare
Choose a tag to compare
  • fix(icon): sanitizer checks attribute name instead of value (#1087) 8d898d7

v6.0.2...v6.0.3

v6.0.2

31 May 21:17
Compare
Choose a tag to compare

v6.0.1...v6.0.2

v6.0.1

19 Jan 19:58
3ec9271
Compare
Choose a tag to compare
  • fix(icon): using icon in ssr environment no longer errors on HTMLElement (#1035) 3ec9271

v6.0.0...v6.0.1

v6.0.0

08 Nov 21:32
1038a7f
Compare
Choose a tag to compare
  • fix(icon): avoid type collisions with ariaLabel and ariaHidden (#1014) 1038a7f

v5.5.4...v6.0.0

BREAKING CHANGE:

The ariaLabel and ariaHidden properties have been removed in favor of using the aria-label and aria-hidden attributes. For most developers there will be no change in behavior. Please review the migration steps below to see if you need to update your application:

  1. Using Ionicons via JavaScript:
// Before
iconEl.ariaHidden = "true";

// After
iconEl.setAttribute('aria-hidden', 'true');
  1. Using Ionicons via JSX in React
{/* Before */}
<IonIcon ariaHidden="true" />

{/* After */}
<IonIcon aria-hidden="true" />

This change is more aligned with what React expects: https://reactjs.org/docs/accessibility.html#wai-aria