diff --git a/CHANGELOG.md b/CHANGELOG.md index 113b2b2..12a8c2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Semantic Release Automated Changelog +# [5.24.0](https://github.com/AlaskaAirlines/Icons/compare/v5.23.0...v5.24.0) (2026-07-13) + + +### Bug Fixes + +* remove unnecessary rectangle from tail-TN.svg AB[#1587656](https://github.com/AlaskaAirlines/Icons/issues/1587656) ([bf8490e](https://github.com/AlaskaAirlines/Icons/commit/bf8490e04b1f335b1832b5c61c2415ed60bf778b)) + + +### Features + +* **hazmat:** add filled and outline icons for portable power banks AB[#1596233](https://github.com/AlaskaAirlines/Icons/issues/1596233) ([37a1d7c](https://github.com/AlaskaAirlines/Icons/commit/37a1d7c052d1c25272f1da15b1db193fee179e0c)) +* **tail:** add Jetstar Japan, Jetstar Australia, Breeze tail icons AB[#1552872](https://github.com/AlaskaAirlines/Icons/issues/1552872) ([d8aa492](https://github.com/AlaskaAirlines/Icons/commit/d8aa49225406984528a587e95dab28f8f664197d)) + # [5.23.0](https://github.com/AlaskaAirlines/Icons/compare/v5.22.0...v5.23.0) (2026-04-15) diff --git a/package-lock.json b/package-lock.json index 2c50a4d..b6e2efb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@alaskaairux/icons", - "version": "5.14.0", + "version": "5.24.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@alaskaairux/icons", - "version": "5.14.0", + "version": "5.24.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { @@ -13772,9 +13772,9 @@ } }, "node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.11", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.11.tgz", + "integrity": "sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==", "dev": true, "engines": { "node": ">=8.3.0" @@ -23721,9 +23721,9 @@ } }, "ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "7.5.11", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.11.tgz", + "integrity": "sha512-zS54Oen9bITtp7kp2XM3AydrCIq1D+HwJOuH+c+e4LfpL/lotP5osijd+UoMnxwAam1GN8R4KtLAyIrIcBNpiA==", "dev": true, "requires": {} }, diff --git a/package.json b/package.json index 0dac84a..cbf20d0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@alaskaairux/icons", "description": "Alaska Air and Auro Design System Icons", - "version": "5.23.0", + "version": "5.24.0", "main": "dist/index.js", "author": "Alaska Design and Research", "license": "Apache-2.0", diff --git a/src/data/icons.json b/src/data/icons.json index 6550f01..bbbd395 100644 --- a/src/data/icons.json +++ b/src/data/icons.json @@ -1815,6 +1815,16 @@ "desc": "Outline icon representing compressed oxygen tanks, cylinders, or medical oxygen supplies", "category": "hazmat" }, + { + "name": "hazmat-power-bank-filled", + "desc": "Filled icon representing portable power banks and external battery chargers", + "category": "hazmat" + }, + { + "name": "hazmat-power-bank-stroke", + "desc": "Outline icon representing portable power banks and external battery chargers", + "category": "hazmat" + }, { "name": "hazmat-small-engine-filled", "desc": "Filled icon representing small engines containing fuel or oil", diff --git a/src/data/logoIcons.json b/src/data/logoIcons.json index 7250de6..65f984f 100644 --- a/src/data/logoIcons.json +++ b/src/data/logoIcons.json @@ -477,6 +477,21 @@ "name": "tail-AZ", "title": "Airplane tail image for ITA Airways", "viewBox": "0 0 144 140" + }, + { + "name": "tail-GK", + "title": "Airplane tail representing Jetstar Japan", + "viewBox": "0 0 141 138" + }, + { + "name": "tail-JQ", + "title": "Airplane tail representing Jetstar Australia", + "viewBox": "0 0 141 138" + }, + { + "name": "tail-MX", + "title": "Airplane tail representing Breeze Airways", + "viewBox": "0 0 141 138" } ] } diff --git a/src/icons/hazmat-power-bank-filled.svg b/src/icons/hazmat-power-bank-filled.svg new file mode 100644 index 0000000..29231fb --- /dev/null +++ b/src/icons/hazmat-power-bank-filled.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/icons/hazmat-power-bank-stroke.svg b/src/icons/hazmat-power-bank-stroke.svg new file mode 100644 index 0000000..cced404 --- /dev/null +++ b/src/icons/hazmat-power-bank-stroke.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/icons/logos/tail-GK.svg b/src/icons/logos/tail-GK.svg new file mode 100644 index 0000000..64ea74d --- /dev/null +++ b/src/icons/logos/tail-GK.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/icons/logos/tail-JQ.svg b/src/icons/logos/tail-JQ.svg new file mode 100644 index 0000000..64ea74d --- /dev/null +++ b/src/icons/logos/tail-JQ.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/icons/logos/tail-MX.svg b/src/icons/logos/tail-MX.svg new file mode 100644 index 0000000..683514c --- /dev/null +++ b/src/icons/logos/tail-MX.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/icons/logos/tail-TN.svg b/src/icons/logos/tail-TN.svg index 74b5004..dc51db3 100644 --- a/src/icons/logos/tail-TN.svg +++ b/src/icons/logos/tail-TN.svg @@ -1,6 +1,5 @@ -