Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
0f3f49c
packages, config change migrate v3.0
Nov 21, 2024
faed762
Preferences Components Migrate to v3.0
Nov 21, 2024
337b167
Chakra 3.0 components
Nov 21, 2024
2329ac7
Use Provider Compose for ThmeProvider and ChakraProvider
Nov 21, 2024
5aeee75
Using new Chakrav3.0 Components
Nov 21, 2024
93cfa00
Migrate Chakra -> 3.0 Header Component
Nov 21, 2024
0a9a829
Migrate Chakra -> 3.0 Image Component
Nov 21, 2024
e933421
Migrate Chakra -> 3.0 Markdown Component
Nov 21, 2024
1b730dc
Migrate Chakra -> 3.0 Menu Components
Nov 21, 2024
b286e00
Migrate Chakra -> 3.0 Message Components
Nov 21, 2024
5d9d75f
Migrate Chakra 3.0 - AppError Component
Nov 21, 2024
58c42d1
Migrate Chakra3.0 -> src/Chat
Nov 21, 2024
fd0eb13
Migrate Chakra3.0 -> src/components/Menu
Nov 21, 2024
74f7991
Migrate Chakra3.0 -> src/components/Message
Nov 21, 2024
351539f
Adjust theme.ts to newversion, breakpoint fix
Nov 21, 2024
2840bd9
Migrate Chakra3.0 -> src/components/Preferences
Nov 21, 2024
49c4604
Migrate 3.0 to Sidebar
Nov 21, 2024
25f3218
Migrate 3.0 -> src/component/PromptForm
Nov 21, 2024
3bc9e6d
Chakra 3.0 Components
Nov 21, 2024
e6631c7
Migrate components to use Chakra3.0
Nov 21, 2024
95f68fe
ChatBase Working With Chakra v3.0
Nov 22, 2024
e75e45c
Chatcraft -> Migration Chakra UI 3.0 (Theme & Styling In Progress)
Nov 22, 2024
e31b554
Fixing | SidebarContent | PromptSendButton Menu | Modal Preferences
Nov 22, 2024
b62c8e9
add clipboard to ModelSetting Preference, and Tooltip
Nov 22, 2024
e772406
bump openai version
Nov 22, 2024
bc4304f
Change from Custom Menu to Use Chakra Menu 3.0
Nov 22, 2024
d88da8a
Fix Reponsiveness of GridItem DesktopPromptForm
Nov 22, 2024
7ea2bce
Fixing Chatbase Mobile / Desktop
Nov 23, 2024
b7755cb
Refractoring | CustomMenu Button Prompt | Reuse Both Mobile / Desktop
Nov 23, 2024
6c43975
Adjust Responsive Alert for mobile / desktop
Nov 23, 2024
99147a3
Theme | Icons | Alignment on Mobile Sidebar
Nov 23, 2024
d77fe0f
Theme fix | Alignment | PromptForm Mobile view Alignment | CustomMenu…
Nov 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
},
"dependencies": {
"@antonz/runno": "^0.6.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/react": "^3.2.0",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-yaml": "^6.1.1",
"@emotion/react": "^11.13.3",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.0",
"@eslint/compat": "^1.2.3",
"@szhsin/react-menu": "^4.2.2",
Expand All @@ -44,8 +44,9 @@
"mammoth": "^1.8.0",
"mermaid": "^11.4.0",
"nanoid": "^5.0.8",
"next-themes": "^0.4.3",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are you introducing this?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chakra 3.0 is removed 'useColorMode' function so we have to use this one instead as they suggested in the documents.

ref https://www.chakra-ui.com/docs/get-started/migration#removed-features

"nomnoml": "^1.6.2",
"openai": "^4.47.1",
"openai": "^4.73.0",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is unrelated to this change, please don't touch unrelated code.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let me go back and check why I think might relate tothat we change mode to Bundler instead of Node

"p-limit": "^6.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand Down Expand Up @@ -97,6 +98,7 @@
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-pwa": "^0.21.0",
"vite-plugin-wasm": "^3.3.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5",
"vitest-environment-miniflare": "^2.14.4",
"workbox-build": "7.3.0",
Expand Down
Loading