Ionicons Versions Save

Premium hand-crafted icons built by Ionic, for Ionic apps and web apps everywhere 🌎

v7.0.0

1 year ago

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

1 year ago

6.1.3 (2023-02-09)

Bug Fixes

v6.1.2

1 year ago

6.1.2 (2023-02-08)

Bug Fixes

v6.1.1

1 year ago

6.1.1 (2023-01-18)

Bug Fixes

v6.1.0

1 year ago

6.1.0 (2023-01-17)

Bug Fixes

v6.0.4

1 year ago
  • 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

https://github.com/ionic-team/ionicons/compare/v6.0.3...v6.0.4

v6.0.3

1 year ago
  • fix(icon): sanitizer checks attribute name instead of value (#1087) 8d898d7

https://github.com/ionic-team/ionicons/compare/v6.0.2...v6.0.3

v6.0.2

1 year ago
  • fix(): improve compatibility with vite (#1066) 28d0338

https://github.com/ionic-team/ionicons/compare/v6.0.1...v6.0.2

v6.0.1

2 years ago
  • fix(icon): using icon in ssr environment no longer errors on HTMLElement (#1035) 3ec9271

https://github.com/ionic-team/ionicons/compare/v6.0.0...v6.0.1

v6.0.0

2 years ago
  • fix(icon): avoid type collisions with ariaLabel and ariaHidden (#1014) 1038a7f

https://github.com/ionic-team/ionicons/compare/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