Skip to content

Commit 99bb8f6

Browse files
authored
merge release-7.1.0
v7.1.0
2 parents e358a4f + 3691e75 commit 99bb8f6

12 files changed

+68
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [7.1.0](https://github.com/ionic-team/ionicons/compare/v7.0.0...v7.1.0) (2023-03-23)
7+
8+
9+
### Features
10+
11+
* chevron-expand and chevron-collapse icons ([#1198](https://github.com/ionic-team/ionicons/issues/1198)) ([cdb0d80](https://github.com/ionic-team/ionicons/commit/cdb0d80cde1dc5dd90fb2a1c3b4fa31d68294821))
12+
13+
14+
15+
16+
617
# [7.0.0](https://github.com/ionic-team/ionicons/compare/v6.1.3...v7.0.0) (2023-03-07)
718

819
**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.

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"./"
44
],
5-
"version": "7.0.0"
5+
"version": "7.1.0"
66
}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ionicons",
3-
"version": "7.0.0",
3+
"version": "7.1.0",
44
"description": "Premium icons for Ionic.",
55
"files": [
66
"components/",

scripts/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ async function optimizeSvgs(srcSvgData: SvgData[]) {
9494
if (item.isElem()) {
9595
item.eachAttr((attr) => {
9696
if (attr.name === 'stroke' || attr.name === 'fill') {
97-
if (attr.value === '#000') {
97+
if (attr.value === '#000' || attr.value === 'currentColor') {
9898
item.addAttr({
9999
name: attr.name,
100100
value: 'currentColor',

src/data.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2545,6 +2545,29 @@
25452545
"sharp"
25462546
]
25472547
},
2548+
{
2549+
"name": "chevron-collapse",
2550+
"tags": [
2551+
"chevron",
2552+
"collapse"
2553+
]
2554+
},
2555+
{
2556+
"name": "chevron-collapse-outline",
2557+
"tags": [
2558+
"chevron",
2559+
"collapse",
2560+
"outline"
2561+
]
2562+
},
2563+
{
2564+
"name": "chevron-collapse-sharp",
2565+
"tags": [
2566+
"chevron",
2567+
"collapse",
2568+
"sharp"
2569+
]
2570+
},
25482571
{
25492572
"name": "chevron-down",
25502573
"tags": [
@@ -2600,6 +2623,29 @@
26002623
"sharp"
26012624
]
26022625
},
2626+
{
2627+
"name": "chevron-expand",
2628+
"tags": [
2629+
"chevron",
2630+
"expand"
2631+
]
2632+
},
2633+
{
2634+
"name": "chevron-expand-outline",
2635+
"tags": [
2636+
"chevron",
2637+
"expand",
2638+
"outline"
2639+
]
2640+
},
2641+
{
2642+
"name": "chevron-expand-sharp",
2643+
"tags": [
2644+
"chevron",
2645+
"expand",
2646+
"sharp"
2647+
]
2648+
},
26032649
{
26042650
"name": "chevron-forward",
26052651
"tags": [
Lines changed: 1 addition & 0 deletions
Loading

src/svg/chevron-collapse-sharp.svg

Lines changed: 1 addition & 0 deletions
Loading

src/svg/chevron-collapse.svg

Lines changed: 1 addition & 0 deletions
Loading

src/svg/chevron-expand-outline.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)