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..b3c6888 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": { @@ -12356,10 +12356,16 @@ } }, "node_modules/shell-quote": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", - "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", - "dev": true + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.10.0.tgz", + "integrity": "sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/signal-exit": { "version": "3.0.7", @@ -22715,9 +22721,9 @@ "dev": true }, "shell-quote": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", - "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.10.0.tgz", + "integrity": "sha512-w1aiOKwKuRgtwAReIIj89puqg+I7GvX4IbLrvmhXbzQsj1+Zwi4VO3+fa6ZF91TWSjIxoEkKnMeHcLEODK5ZXA==", "dev": true }, "signal-exit": { 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 @@ -