From d39b8a7d598bffffd386c177dd981bef75fe3757 Mon Sep 17 00:00:00 2001 From: Stuart Sy Date: Mon, 16 Mar 2026 13:35:35 -0700 Subject: [PATCH 1/5] Add share header icon --- .changeset/calm-geckos-glow.md | 4 ++++ packages/chatkit/types/index.d.ts | 1 + 2 files changed, 5 insertions(+) create mode 100644 .changeset/calm-geckos-glow.md diff --git a/.changeset/calm-geckos-glow.md b/.changeset/calm-geckos-glow.md new file mode 100644 index 0000000..dc4e375 --- /dev/null +++ b/.changeset/calm-geckos-glow.md @@ -0,0 +1,4 @@ +'@openai/chatkit': minor +--- + +Add the `share` icon to the `HeaderIcon` union so ChatKit consumers can type header actions that use the share glyph. diff --git a/packages/chatkit/types/index.d.ts b/packages/chatkit/types/index.d.ts index 0b56e3e..36add8a 100644 --- a/packages/chatkit/types/index.d.ts +++ b/packages/chatkit/types/index.d.ts @@ -491,6 +491,7 @@ export type HeaderIcon = | 'history' | 'book-open' | 'compose' + | 'share' | 'light-mode' | 'dark-mode' | 'close'; From 3608db6c489d9632b5a50fb52d483ca364a4058d Mon Sep 17 00:00:00 2001 From: Stuart Sy Date: Mon, 16 Mar 2026 13:37:57 -0700 Subject: [PATCH 2/5] Add share-chat and bug header icons --- .changeset/calm-geckos-glow.md | 2 +- packages/chatkit/types/index.d.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.changeset/calm-geckos-glow.md b/.changeset/calm-geckos-glow.md index dc4e375..290900c 100644 --- a/.changeset/calm-geckos-glow.md +++ b/.changeset/calm-geckos-glow.md @@ -1,4 +1,4 @@ '@openai/chatkit': minor --- -Add the `share` icon to the `HeaderIcon` union so ChatKit consumers can type header actions that use the share glyph. +Add the `share`, `share-chat`, and `bug` icons to the `HeaderIcon` union so ChatKit consumers can type header actions that use those glyphs. diff --git a/packages/chatkit/types/index.d.ts b/packages/chatkit/types/index.d.ts index 36add8a..6806aa9 100644 --- a/packages/chatkit/types/index.d.ts +++ b/packages/chatkit/types/index.d.ts @@ -478,6 +478,7 @@ export type HeaderIcon = | 'collapse-small' | 'star' | 'star-filled' + | 'bug' | 'chat-temporary' | 'settings-cog' | 'grid' @@ -492,6 +493,7 @@ export type HeaderIcon = | 'book-open' | 'compose' | 'share' + | 'share-chat' | 'light-mode' | 'dark-mode' | 'close'; From 291a96faef393f6edcb7c9f846fe91588562680d Mon Sep 17 00:00:00 2001 From: Stuart Sy Date: Mon, 16 Mar 2026 14:04:35 -0700 Subject: [PATCH 3/5] Format changeset note --- .changeset/calm-geckos-glow.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.changeset/calm-geckos-glow.md b/.changeset/calm-geckos-glow.md index 290900c..108d94c 100644 --- a/.changeset/calm-geckos-glow.md +++ b/.changeset/calm-geckos-glow.md @@ -1,4 +1,5 @@ '@openai/chatkit': minor --- -Add the `share`, `share-chat`, and `bug` icons to the `HeaderIcon` union so ChatKit consumers can type header actions that use those glyphs. +Add the `share`, `share-chat`, and `bug` icons to the `HeaderIcon` union so +ChatKit consumers can type header actions that use those glyphs. From 79e27358e1c331a61cd6111663c2aa2e806e5922 Mon Sep 17 00:00:00 2001 From: Stuart Sy Date: Mon, 16 Mar 2026 14:06:52 -0700 Subject: [PATCH 4/5] Remove share-chat header icon --- .changeset/calm-geckos-glow.md | 2 +- packages/chatkit/types/index.d.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.changeset/calm-geckos-glow.md b/.changeset/calm-geckos-glow.md index 108d94c..b3b4d06 100644 --- a/.changeset/calm-geckos-glow.md +++ b/.changeset/calm-geckos-glow.md @@ -1,5 +1,5 @@ '@openai/chatkit': minor --- -Add the `share`, `share-chat`, and `bug` icons to the `HeaderIcon` union so +Add the `share` and `bug` icons to the `HeaderIcon` union so ChatKit consumers can type header actions that use those glyphs. diff --git a/packages/chatkit/types/index.d.ts b/packages/chatkit/types/index.d.ts index 6806aa9..5d11bdd 100644 --- a/packages/chatkit/types/index.d.ts +++ b/packages/chatkit/types/index.d.ts @@ -493,7 +493,6 @@ export type HeaderIcon = | 'book-open' | 'compose' | 'share' - | 'share-chat' | 'light-mode' | 'dark-mode' | 'close'; From c00859f9d82b2d3565ca00f9d4480a5716698087 Mon Sep 17 00:00:00 2001 From: Stuart Sy Date: Mon, 16 Mar 2026 14:10:48 -0700 Subject: [PATCH 5/5] prettier --- .changeset/calm-geckos-glow.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.changeset/calm-geckos-glow.md b/.changeset/calm-geckos-glow.md index b3b4d06..ce0189a 100644 --- a/.changeset/calm-geckos-glow.md +++ b/.changeset/calm-geckos-glow.md @@ -1,5 +1,4 @@ -'@openai/chatkit': minor ---- +## '@openai/chatkit': minor Add the `share` and `bug` icons to the `HeaderIcon` union so ChatKit consumers can type header actions that use those glyphs.