From f946a3ee3a4a1c2bdf9508b11a71fcb0a419d571 Mon Sep 17 00:00:00 2001 From: Piotr Tomiak Date: Wed, 15 Nov 2023 17:53:55 +0100 Subject: [PATCH 01/12] feat(doc): add Web Types (#1301) --- package.json | 3 +- scripts/build.ts | 27 +++++++++++ src/ionicons.web-types.json | 95 +++++++++++++++++++++++++++++++++++++ 3 files changed, 124 insertions(+), 1 deletion(-) create mode 100644 src/ionicons.web-types.json diff --git a/package.json b/package.json index 2d7121f69..bb2cccf15 100755 --- a/package.json +++ b/package.json @@ -74,5 +74,6 @@ "license": "MIT", "sideEffects": [ "icons/imports/" - ] + ], + "web-types": "dist/ionic.web-types.json" } diff --git a/scripts/build.ts b/scripts/build.ts index 7e8b686ea..8ff4e4a8e 100644 --- a/scripts/build.ts +++ b/scripts/build.ts @@ -31,6 +31,8 @@ async function build(rootDir: string) { await createCheatsheet(version, rootDir, distDir, svgSymbolsContent, srcSvgData); + await createWebTypes(version, rootDir, distDir, srcSvgData); + await copyToTesting(rootDir, distDir, srcSvgData); } catch (e) { console.error(e); @@ -269,6 +271,31 @@ async function createCheatsheet( await fs.writeFile(distCheatsheetFilePath, html); } +async function createWebTypes( + version: string, + rootDir: string, + distDir: any, + srcSvgData: SvgData[] +) { + const srcWebTypeFilePath = join(rootDir, 'src/ionicons.web-types.json'); + const distWebTypesFilePath = join(distDir, 'ionicons.web-types.json'); + + const webTypes = JSON.parse(await fs.readFile(srcWebTypeFilePath, 'utf8')) + + webTypes.version = version + + const icons = webTypes.contributions.html.ionicons + for (let data of srcSvgData) { + icons.push({ + name: data.iconName, + icon: "dist/svg/" + data.fileName + }) + } + + const jsonStr = JSON.stringify(webTypes, null, 2) + '\n'; + await fs.writeFile(distWebTypesFilePath, jsonStr); +} + async function getSvgs(srcSvgDir: string, distSvgDir: string, distIoniconsDir: string): Promise { const optimizedSvgDir = join(distIoniconsDir, 'svg'); await fs.emptyDir(optimizedSvgDir); diff --git a/src/ionicons.web-types.json b/src/ionicons.web-types.json new file mode 100644 index 000000000..d2112ff16 --- /dev/null +++ b/src/ionicons.web-types.json @@ -0,0 +1,95 @@ +{ + "$schema": "http://json.schemastore.org/web-types", + "name": "ionicons", + "version": "0.0.0", + "description-markup": "markdown", + "contributions": { + "html": { + "elements": [ + { + "name": "ion-icon", + "description": "The Ionicons Web Component is an easy and performant way to use Ionicons in your app. The component will dynamically load an SVG for each icon, so your app is only requesting the icons that you need.", + "doc-url": "https://ionic.io/ionicons/usage", + "attributes": [ + { + "name": "name", + "description": "The name of the built-in icon from the Ionicons package.", + "priority": "high", + "doc-url": "https://ionic.io/ionicons/usage#basic-usage", + "value": { + "type": "symbol" + }, + "values": [ + { + "name": "The ion-icon", + "pattern": { + "items": "ionicons" + } + } + ] + }, + { + "name": "src", + "priority": "high", + "description": "Provide url of a custom SVG icon. The `src` attribute works the same as `` in that the url must be accessible from the webpage that's making a request for the image. Additionally, the external file can only be a valid `svg` and does not allow scripts or events within the `svg` element.", + "doc-url": "https://ionic.io/ionicons/usage#basic-usage" + }, + { + "name": "md", + "description": "Provide icon variant specific to MD platform", + "priority": "high", + "doc-url": "https://ionic.io/ionicons/usage#basic-usage", + "value": { + "type": "symbol" + }, + "values": [ + { + "name": "The ion-icon", + "pattern": { + "items": "ionicons" + } + } + ] + }, + { + "name": "ios", + "description": "Provide icon variant specific to iOS platform", + "priority": "high", + "doc-url": "https://ionic.io/ionicons/usage#basic-usage", + "value": { + "type": "symbol" + }, + "values": [ + { + "name": "The ion-icon", + "pattern": { + "items": "ionicons" + } + } + ] + }, + { + "name": "size", + "description": "Specify the icon size using one of the pre-defined font sizes.\n\nAlternatively you can set a specific size by applying the `font-size` CSS property on the `ion-icon` component. It's recommended to use pixel sizes that are a multiple of 8 (8, 16, 32, 64, etc.)", + "doc-url": "https://ionic.io/ionicons/usage#basic-usage", + "priority": "high", + "value": { + "type": "enum" + }, + "values": [ + { + "name": "small" + }, + { + "name": "large" + } + ] + } + ] + } + ], + "ionicons": [ + ] + } + } +} From 302481846e48428a354bc36220506001ac4c645e Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 13 Mar 2024 18:45:28 -0400 Subject: [PATCH 02/12] feat: add binoculars icons (#1258) --- src/data.json | 26 +++++++++++++++++++++++--- src/svg/binoculars-outline.svg | 8 ++++++++ src/svg/binoculars-sharp.svg | 3 +++ src/svg/binoculars.svg | 3 +++ 4 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 src/svg/binoculars-outline.svg create mode 100644 src/svg/binoculars-sharp.svg create mode 100644 src/svg/binoculars.svg diff --git a/src/data.json b/src/data.json index 96195ebfb..69aa7fbed 100644 --- a/src/data.json +++ b/src/data.json @@ -1294,6 +1294,26 @@ "sharp" ] }, + { + "name": "binoculars", + "tags": [ + "binoculars" + ] + }, + { + "name": "binoculars-outline", + "tags": [ + "binoculars", + "outline" + ] + }, + { + "name": "binoculars-sharp", + "tags": [ + "binoculars", + "sharp" + ] + }, { "name": "bluetooth", "tags": [ @@ -7445,10 +7465,10 @@ { "name": "open", "tags": [ - "open", - "external", "anchor", - "link" + "external", + "link", + "open" ] }, { diff --git a/src/svg/binoculars-outline.svg b/src/svg/binoculars-outline.svg new file mode 100644 index 000000000..062e4fd83 --- /dev/null +++ b/src/svg/binoculars-outline.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/svg/binoculars-sharp.svg b/src/svg/binoculars-sharp.svg new file mode 100644 index 000000000..9a1d8eddb --- /dev/null +++ b/src/svg/binoculars-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/binoculars.svg b/src/svg/binoculars.svg new file mode 100644 index 000000000..5857753cb --- /dev/null +++ b/src/svg/binoculars.svg @@ -0,0 +1,3 @@ + + + From 3b85413a059b2c91f10105d576cc717fd687a491 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 13 Mar 2024 19:08:02 -0400 Subject: [PATCH 03/12] feat: add trapeze icon (#1260) --- src/data.json | 7 +++++++ src/svg/logo-trapeze.svg | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 src/svg/logo-trapeze.svg diff --git a/src/data.json b/src/data.json index 69aa7fbed..7896d706e 100644 --- a/src/data.json +++ b/src/data.json @@ -6514,6 +6514,13 @@ "tiktok" ] }, + { + "name": "logo-trapeze", + "tags": [ + "logo", + "trapeze" + ] + }, { "name": "logo-tumblr", "tags": [ diff --git a/src/svg/logo-trapeze.svg b/src/svg/logo-trapeze.svg new file mode 100644 index 000000000..c0c4a1a8c --- /dev/null +++ b/src/svg/logo-trapeze.svg @@ -0,0 +1,3 @@ + + + From fa5e7659fc1622908c4e55b01d0573017a36af6a Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 13 Mar 2024 19:12:29 -0400 Subject: [PATCH 04/12] feat: add appflow icon (#1262) --- src/data.json | 7 +++++++ src/svg/logo-appflow.svg | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 src/svg/logo-appflow.svg diff --git a/src/data.json b/src/data.json index 7896d706e..997d4e0f1 100644 --- a/src/data.json +++ b/src/data.json @@ -6054,6 +6054,13 @@ "logo" ] }, + { + "name": "logo-appflow", + "tags": [ + "appflow", + "logo" + ] + }, { "name": "logo-apple", "tags": [ diff --git a/src/svg/logo-appflow.svg b/src/svg/logo-appflow.svg new file mode 100644 index 000000000..4d3b6a259 --- /dev/null +++ b/src/svg/logo-appflow.svg @@ -0,0 +1,4 @@ + + + + From 50fe570566d4c28de7fb10694543cd6dc72f3935 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 13 Mar 2024 19:14:53 -0400 Subject: [PATCH 05/12] feat: update ionic logo (#1263) --- src/svg/logo-ionic.svg | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/svg/logo-ionic.svg b/src/svg/logo-ionic.svg index 70cb1b0b7..e4c7501a4 100644 --- a/src/svg/logo-ionic.svg +++ b/src/svg/logo-ionic.svg @@ -1 +1,6 @@ - \ No newline at end of file + + + + + + From 26aac36334cc09e5887523bc99c3d746586ebb63 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 13 Mar 2024 19:37:45 -0400 Subject: [PATCH 06/12] feat: add updated wifi logos (#1264) resolves #323 --- src/svg/wifi-outline.svg | 6 +++++- src/svg/wifi-sharp.svg | 6 +++++- src/svg/wifi.svg | 6 +++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/src/svg/wifi-outline.svg b/src/svg/wifi-outline.svg index def19fdc1..560f2a669 100644 --- a/src/svg/wifi-outline.svg +++ b/src/svg/wifi-outline.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/src/svg/wifi-sharp.svg b/src/svg/wifi-sharp.svg index fe5e4892c..c4d57d9f6 100644 --- a/src/svg/wifi-sharp.svg +++ b/src/svg/wifi-sharp.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + diff --git a/src/svg/wifi.svg b/src/svg/wifi.svg index c15b523c8..1e767cadf 100644 --- a/src/svg/wifi.svg +++ b/src/svg/wifi.svg @@ -1 +1,5 @@ - \ No newline at end of file + + + + + From d5a55f8541b208ab46dd41e53528aab48a90ed10 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 13 Mar 2024 19:44:14 -0400 Subject: [PATCH 07/12] feat: add arrow box icons (#1265) --- src/data.json | 116 +++++++++++++++++++++++ src/svg/arrow-down-left-box-outline.svg | 5 + src/svg/arrow-down-left-box-sharp.svg | 3 + src/svg/arrow-down-left-box.svg | 3 + src/svg/arrow-down-right-box-outline.svg | 5 + src/svg/arrow-down-right-box-sharp.svg | 3 + src/svg/arrow-down-right-box.svg | 3 + src/svg/arrow-up-left-box-outline.svg | 5 + src/svg/arrow-up-left-box-sharp.svg | 3 + src/svg/arrow-up-left-box.svg | 3 + src/svg/arrow-up-right-box-outline.svg | 5 + src/svg/arrow-up-right-box-sharp.svg | 3 + src/svg/arrow-up-right-box.svg | 3 + 13 files changed, 160 insertions(+) create mode 100644 src/svg/arrow-down-left-box-outline.svg create mode 100644 src/svg/arrow-down-left-box-sharp.svg create mode 100644 src/svg/arrow-down-left-box.svg create mode 100644 src/svg/arrow-down-right-box-outline.svg create mode 100644 src/svg/arrow-down-right-box-sharp.svg create mode 100644 src/svg/arrow-down-right-box.svg create mode 100644 src/svg/arrow-up-left-box-outline.svg create mode 100644 src/svg/arrow-up-left-box-sharp.svg create mode 100644 src/svg/arrow-up-left-box.svg create mode 100644 src/svg/arrow-up-right-box-outline.svg create mode 100644 src/svg/arrow-up-right-box-sharp.svg create mode 100644 src/svg/arrow-up-right-box.svg diff --git a/src/data.json b/src/data.json index 997d4e0f1..f472d61ae 100644 --- a/src/data.json +++ b/src/data.json @@ -460,6 +460,35 @@ "sharp" ] }, + { + "name": "arrow-down-left-box", + "tags": [ + "arrow", + "box", + "down", + "left" + ] + }, + { + "name": "arrow-down-left-box-outline", + "tags": [ + "arrow", + "box", + "down", + "left", + "outline" + ] + }, + { + "name": "arrow-down-left-box-sharp", + "tags": [ + "arrow", + "box", + "down", + "left", + "sharp" + ] + }, { "name": "arrow-down-outline", "tags": [ @@ -468,6 +497,35 @@ "outline" ] }, + { + "name": "arrow-down-right-box", + "tags": [ + "arrow", + "box", + "down", + "right" + ] + }, + { + "name": "arrow-down-right-box-outline", + "tags": [ + "arrow", + "box", + "down", + "outline", + "right" + ] + }, + { + "name": "arrow-down-right-box-sharp", + "tags": [ + "arrow", + "box", + "down", + "right", + "sharp" + ] + }, { "name": "arrow-down-sharp", "tags": [ @@ -677,6 +735,35 @@ "up" ] }, + { + "name": "arrow-up-left-box", + "tags": [ + "arrow", + "box", + "left", + "up" + ] + }, + { + "name": "arrow-up-left-box-outline", + "tags": [ + "arrow", + "box", + "left", + "outline", + "up" + ] + }, + { + "name": "arrow-up-left-box-sharp", + "tags": [ + "arrow", + "box", + "left", + "sharp", + "up" + ] + }, { "name": "arrow-up-outline", "tags": [ @@ -685,6 +772,35 @@ "up" ] }, + { + "name": "arrow-up-right-box", + "tags": [ + "arrow", + "box", + "right", + "up" + ] + }, + { + "name": "arrow-up-right-box-outline", + "tags": [ + "arrow", + "box", + "outline", + "right", + "up" + ] + }, + { + "name": "arrow-up-right-box-sharp", + "tags": [ + "arrow", + "box", + "right", + "sharp", + "up" + ] + }, { "name": "arrow-up-sharp", "tags": [ diff --git a/src/svg/arrow-down-left-box-outline.svg b/src/svg/arrow-down-left-box-outline.svg new file mode 100644 index 000000000..b1bb7df55 --- /dev/null +++ b/src/svg/arrow-down-left-box-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/arrow-down-left-box-sharp.svg b/src/svg/arrow-down-left-box-sharp.svg new file mode 100644 index 000000000..eb275ddf1 --- /dev/null +++ b/src/svg/arrow-down-left-box-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-down-left-box.svg b/src/svg/arrow-down-left-box.svg new file mode 100644 index 000000000..93d8b37b9 --- /dev/null +++ b/src/svg/arrow-down-left-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-down-right-box-outline.svg b/src/svg/arrow-down-right-box-outline.svg new file mode 100644 index 000000000..6cb453524 --- /dev/null +++ b/src/svg/arrow-down-right-box-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/arrow-down-right-box-sharp.svg b/src/svg/arrow-down-right-box-sharp.svg new file mode 100644 index 000000000..16f974137 --- /dev/null +++ b/src/svg/arrow-down-right-box-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-down-right-box.svg b/src/svg/arrow-down-right-box.svg new file mode 100644 index 000000000..75edd04e2 --- /dev/null +++ b/src/svg/arrow-down-right-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-up-left-box-outline.svg b/src/svg/arrow-up-left-box-outline.svg new file mode 100644 index 000000000..e3d35a797 --- /dev/null +++ b/src/svg/arrow-up-left-box-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/arrow-up-left-box-sharp.svg b/src/svg/arrow-up-left-box-sharp.svg new file mode 100644 index 000000000..e0efc33ae --- /dev/null +++ b/src/svg/arrow-up-left-box-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-up-left-box.svg b/src/svg/arrow-up-left-box.svg new file mode 100644 index 000000000..7a24655c4 --- /dev/null +++ b/src/svg/arrow-up-left-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-up-right-box-outline.svg b/src/svg/arrow-up-right-box-outline.svg new file mode 100644 index 000000000..6d0c01d1b --- /dev/null +++ b/src/svg/arrow-up-right-box-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/arrow-up-right-box-sharp.svg b/src/svg/arrow-up-right-box-sharp.svg new file mode 100644 index 000000000..cd6152d63 --- /dev/null +++ b/src/svg/arrow-up-right-box-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-up-right-box.svg b/src/svg/arrow-up-right-box.svg new file mode 100644 index 000000000..cd82aac03 --- /dev/null +++ b/src/svg/arrow-up-right-box.svg @@ -0,0 +1,3 @@ + + + From c6ed6b629e45465b49e8e35db3830083ca9520ef Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 13 Mar 2024 19:47:10 -0400 Subject: [PATCH 08/12] feat: add updated yahoo icon (#1266) --- src/svg/logo-yahoo.svg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/svg/logo-yahoo.svg b/src/svg/logo-yahoo.svg index d6e0e0bd2..a42e0a638 100644 --- a/src/svg/logo-yahoo.svg +++ b/src/svg/logo-yahoo.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + From 2586fb26b2a493fcb4b5b0156dd00d6b5eab1ab0 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 13 Mar 2024 19:50:06 -0400 Subject: [PATCH 09/12] feat: update gitlab logo (#1261) resolves #613 --------- Co-authored-by: christophdubach --- src/svg/logo-gitlab.svg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/svg/logo-gitlab.svg b/src/svg/logo-gitlab.svg index 05753b0c0..c50282a75 100644 --- a/src/svg/logo-gitlab.svg +++ b/src/svg/logo-gitlab.svg @@ -1 +1,3 @@ - \ No newline at end of file + + + From 5688365fb3ffd9b53681b7cdef04fa8c31bbecbd Mon Sep 17 00:00:00 2001 From: ionitron Date: Wed, 20 Mar 2024 13:37:40 +0000 Subject: [PATCH 10/12] v7.3.0 --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ lerna.json | 2 +- package-lock.json | 16 ++++++++++------ package.json | 2 +- 4 files changed, 50 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c49ebd0d1..bdf9279e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.3.0](https://github.com/ionic-team/ionicons/compare/v7.2.3...v7.3.0) (2024-03-20) + + +### Features + +* add appflow icon ([#1262](https://github.com/ionic-team/ionicons/issues/1262)) ([fa5e765](https://github.com/ionic-team/ionicons/commit/fa5e7659fc1622908c4e55b01d0573017a36af6a)) +* add arrow box icons ([#1265](https://github.com/ionic-team/ionicons/issues/1265)) ([d5a55f8](https://github.com/ionic-team/ionicons/commit/d5a55f8541b208ab46dd41e53528aab48a90ed10)) +* add binoculars icons ([#1258](https://github.com/ionic-team/ionicons/issues/1258)) ([3024818](https://github.com/ionic-team/ionicons/commit/302481846e48428a354bc36220506001ac4c645e)) +* add trapeze icon ([#1260](https://github.com/ionic-team/ionicons/issues/1260)) ([3b85413](https://github.com/ionic-team/ionicons/commit/3b85413a059b2c91f10105d576cc717fd687a491)) +* add updated wifi logos ([#1264](https://github.com/ionic-team/ionicons/issues/1264)) ([26aac36](https://github.com/ionic-team/ionicons/commit/26aac36334cc09e5887523bc99c3d746586ebb63)), closes [#323](https://github.com/ionic-team/ionicons/issues/323) +* add updated yahoo icon ([#1266](https://github.com/ionic-team/ionicons/issues/1266)) ([c6ed6b6](https://github.com/ionic-team/ionicons/commit/c6ed6b629e45465b49e8e35db3830083ca9520ef)) +* **doc:** add Web Types ([#1301](https://github.com/ionic-team/ionicons/issues/1301)) ([f946a3e](https://github.com/ionic-team/ionicons/commit/f946a3ee3a4a1c2bdf9508b11a71fcb0a419d571)) +* update gitlab logo ([#1261](https://github.com/ionic-team/ionicons/issues/1261)) ([2586fb2](https://github.com/ionic-team/ionicons/commit/2586fb26b2a493fcb4b5b0156dd00d6b5eab1ab0)), closes [#613](https://github.com/ionic-team/ionicons/issues/613) +* update ionic logo ([#1263](https://github.com/ionic-team/ionicons/issues/1263)) ([50fe570](https://github.com/ionic-team/ionicons/commit/50fe570566d4c28de7fb10694543cd6dc72f3935)) + + + + + +# [7.3.0](https://github.com/ionic-team/ionicons/compare/v7.2.3...v7.3.0) (2024-03-20) + + +### Features + +* add appflow icon ([#1262](https://github.com/ionic-team/ionicons/issues/1262)) ([fa5e765](https://github.com/ionic-team/ionicons/commit/fa5e7659fc1622908c4e55b01d0573017a36af6a)) +* add arrow box icons ([#1265](https://github.com/ionic-team/ionicons/issues/1265)) ([d5a55f8](https://github.com/ionic-team/ionicons/commit/d5a55f8541b208ab46dd41e53528aab48a90ed10)) +* add binoculars icons ([#1258](https://github.com/ionic-team/ionicons/issues/1258)) ([3024818](https://github.com/ionic-team/ionicons/commit/302481846e48428a354bc36220506001ac4c645e)) +* add trapeze icon ([#1260](https://github.com/ionic-team/ionicons/issues/1260)) ([3b85413](https://github.com/ionic-team/ionicons/commit/3b85413a059b2c91f10105d576cc717fd687a491)) +* add updated wifi logos ([#1264](https://github.com/ionic-team/ionicons/issues/1264)) ([26aac36](https://github.com/ionic-team/ionicons/commit/26aac36334cc09e5887523bc99c3d746586ebb63)), closes [#323](https://github.com/ionic-team/ionicons/issues/323) +* add updated yahoo icon ([#1266](https://github.com/ionic-team/ionicons/issues/1266)) ([c6ed6b6](https://github.com/ionic-team/ionicons/commit/c6ed6b629e45465b49e8e35db3830083ca9520ef)) +* **doc:** add Web Types ([#1301](https://github.com/ionic-team/ionicons/issues/1301)) ([f946a3e](https://github.com/ionic-team/ionicons/commit/f946a3ee3a4a1c2bdf9508b11a71fcb0a419d571)) +* update gitlab logo ([#1261](https://github.com/ionic-team/ionicons/issues/1261)) ([2586fb2](https://github.com/ionic-team/ionicons/commit/2586fb26b2a493fcb4b5b0156dd00d6b5eab1ab0)), closes [#613](https://github.com/ionic-team/ionicons/issues/613) +* update ionic logo ([#1263](https://github.com/ionic-team/ionicons/issues/1263)) ([50fe570](https://github.com/ionic-team/ionicons/commit/50fe570566d4c28de7fb10694543cd6dc72f3935)) + + + + + ## [7.2.3](https://github.com/ionic-team/ionicons/compare/v7.2.2...v7.2.3) (2024-03-20) diff --git a/lerna.json b/lerna.json index 92d947f02..a4864469b 100644 --- a/lerna.json +++ b/lerna.json @@ -2,5 +2,5 @@ "packages": [ "./" ], - "version": "7.2.3" + "version": "7.3.0" } diff --git a/package-lock.json b/package-lock.json index 436dd2789..ac61fb220 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ionicons", - "version": "7.2.3", + "version": "7.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ionicons", - "version": "7.2.3", + "version": "7.3.0", "license": "MIT", "dependencies": { "@stencil/core": "^4.0.3" @@ -18283,7 +18283,8 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", - "dev": true + "dev": true, + "requires": {} }, "@octokit/plugin-rest-endpoint-methods": { "version": "6.8.1", @@ -22726,7 +22727,8 @@ "version": "1.2.3", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true + "dev": true, + "requires": {} }, "jest-regex-util": { "version": "27.5.1", @@ -23411,7 +23413,8 @@ "version": "7.5.9", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "dev": true + "dev": true, + "requires": {} } } }, @@ -28186,7 +28189,8 @@ "version": "8.13.0", "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", - "dev": true + "dev": true, + "requires": {} }, "xml-name-validator": { "version": "3.0.0", diff --git a/package.json b/package.json index b410b7917..92f71396f 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ionicons", - "version": "7.2.3", + "version": "7.3.0", "description": "Premium icons for Ionic.", "files": [ "components/", From 707325863dbb8c4d4c2b478f2c6926ed96c13c3f Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 20 Mar 2024 09:40:19 -0400 Subject: [PATCH 11/12] chore(): update package lock files --- package-lock.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index ac61fb220..927963acb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18283,8 +18283,7 @@ "version": "1.0.4", "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz", "integrity": "sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==", - "dev": true, - "requires": {} + "dev": true }, "@octokit/plugin-rest-endpoint-methods": { "version": "6.8.1", @@ -22727,8 +22726,7 @@ "version": "1.2.3", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "requires": {} + "dev": true }, "jest-regex-util": { "version": "27.5.1", @@ -23413,8 +23411,7 @@ "version": "7.5.9", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "dev": true, - "requires": {} + "dev": true } } }, @@ -28189,8 +28186,7 @@ "version": "8.13.0", "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", - "dev": true, - "requires": {} + "dev": true }, "xml-name-validator": { "version": "3.0.0", From 30f23ae9f5861872aec66cdca5548f745af15676 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 20 Mar 2024 09:41:51 -0400 Subject: [PATCH 12/12] chore(ci): pass env token --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 061a33d2a..468b91adf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -91,4 +91,6 @@ jobs: git add . git commit -m "chore(): update package lock files" git push + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} shell: bash