Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
663e5674
Commit
663e5674
authored
Jun 01, 2025
by
Johnny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: replace switch kit
parent
ff0f2754
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
13 deletions
+14
-13
package.json
web/package.json
+1
-1
pnpm-lock.yaml
web/pnpm-lock.yaml
+5
-5
TagsSection.tsx
web/src/components/HomeSidebar/TagsSection.tsx
+2
-1
MemoRelatedSettings.tsx
web/src/components/Settings/MemoRelatedSettings.tsx
+2
-2
StorageSection.tsx
web/src/components/Settings/StorageSection.tsx
+2
-2
WorkspaceSection.tsx
web/src/components/Settings/WorkspaceSection.tsx
+2
-2
No files found.
web/package.json
View file @
663e5674
...
...
@@ -17,7 +17,7 @@
"@matejmazur/react-katex"
:
"^3.1.3"
,
"@mui/joy"
:
"5.0.0-beta.51"
,
"@radix-ui/react-popover"
:
"^1.1.14"
,
"@usememos/mui"
:
"0.1.0-20250
515140125
"
,
"@usememos/mui"
:
"0.1.0-20250
601165716
"
,
"clsx"
:
"^2.1.1"
,
"copy-to-clipboard"
:
"^3.3.3"
,
"dayjs"
:
"^1.11.13"
,
...
...
web/pnpm-lock.yaml
View file @
663e5674
...
...
@@ -36,8 +36,8 @@ importers:
specifier
:
^1.1.14
version
:
1.1.14(@types/react-dom@18.3.7(@types/react@18.3.23))(@types/react@18.3.23)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'
@usememos/mui'
:
specifier
:
0.1.0-20250
515140125
version
:
0.1.0-20250
515140125
(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
specifier
:
0.1.0-20250
601165716
version
:
0.1.0-20250
601165716
(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
clsx
:
specifier
:
^2.1.1
version
:
2.1.1
...
...
@@ -1767,8 +1767,8 @@ packages:
resolution
:
{
integrity
:
sha512-7RW7CMYoskiz5OOGAWjJFxgb7c5UNjTG292gYhWeOAcFmYCtVCSqjqSBj5zMhxbXo2JOW95YYrUWJfU0zrpaGQ==
}
engines
:
{
node
:
^18.18.0 || ^20.9.0 || >=21.1.0
}
'
@usememos/mui@0.1.0-20250
515140125
'
:
resolution
:
{
integrity
:
sha512-
GY74G3lCIIeQhGOJkPV3ittQzHVIKpf6VxTfNjnw/IKVMLiqB8OjkjpTRg8MrEyW5h5lxTgS52rUN6zkHT+LTA
==
}
'
@usememos/mui@0.1.0-20250
601165716
'
:
resolution
:
{
integrity
:
sha512-
VfHJZ8W1fxdc5spgv0zsVP8MAcRnyDKv152RHGmQEhgGVPcc/eBtAdrG9PBy9SXJQhrpMHmq21zzmEuMdzHFVw
==
}
peerDependencies
:
react
:
'
>=18.0.0'
react-dom
:
'
>=18.0.0'
...
...
@@ -5649,7 +5649,7 @@ snapshots:
'
@typescript-eslint/types'
:
8.33.0
eslint-visitor-keys
:
4.2.0
'
@usememos/mui@0.1.0-20250
515140125
(react-dom@18.3.1(react@18.3.1))(react@18.3.1)'
:
'
@usememos/mui@0.1.0-20250
601165716
(react-dom@18.3.1(react@18.3.1))(react@18.3.1)'
:
dependencies
:
react
:
18.3.1
react-dom
:
18.3.1(react@18.3.1)
...
...
web/src/components/HomeSidebar/TagsSection.tsx
View file @
663e5674
import
{
Dropdown
,
Menu
,
MenuButton
,
MenuItem
,
Switch
}
from
"@mui/joy"
;
import
{
Dropdown
,
Menu
,
MenuButton
,
MenuItem
}
from
"@mui/joy"
;
import
{
Switch
}
from
"@usememos/mui"
;
import
{
Edit3Icon
,
HashIcon
,
MoreVerticalIcon
,
TagsIcon
,
TrashIcon
}
from
"lucide-react"
;
import
{
observer
}
from
"mobx-react-lite"
;
import
toast
from
"react-hot-toast"
;
...
...
web/src/components/Settings/MemoRelatedSettings.tsx
View file @
663e5674
import
{
Switch
,
Chip
,
ChipDelete
}
from
"@mui/joy"
;
import
{
Button
,
Input
}
from
"@usememos/mui"
;
import
{
Chip
,
ChipDelete
}
from
"@mui/joy"
;
import
{
Button
,
Input
,
Switch
}
from
"@usememos/mui"
;
import
{
isEqual
,
uniq
}
from
"lodash-es"
;
import
{
CheckIcon
}
from
"lucide-react"
;
import
{
observer
}
from
"mobx-react-lite"
;
...
...
web/src/components/Settings/StorageSection.tsx
View file @
663e5674
import
{
Divider
,
List
,
ListItem
,
Radio
,
RadioGroup
,
Tooltip
,
Switch
}
from
"@mui/joy"
;
import
{
Button
,
Input
}
from
"@usememos/mui"
;
import
{
Divider
,
List
,
ListItem
,
Radio
,
RadioGroup
,
Tooltip
}
from
"@mui/joy"
;
import
{
Button
,
Input
,
Switch
}
from
"@usememos/mui"
;
import
{
isEqual
}
from
"lodash-es"
;
import
{
HelpCircleIcon
}
from
"lucide-react"
;
import
{
observer
}
from
"mobx-react-lite"
;
...
...
web/src/components/Settings/WorkspaceSection.tsx
View file @
663e5674
import
{
Select
,
Option
,
Divider
,
Switch
}
from
"@mui/joy"
;
import
{
Button
,
Textarea
}
from
"@usememos/mui"
;
import
{
Select
,
Option
,
Divider
}
from
"@mui/joy"
;
import
{
Button
,
Textarea
,
Switch
}
from
"@usememos/mui"
;
import
{
isEqual
}
from
"lodash-es"
;
import
{
ExternalLinkIcon
}
from
"lucide-react"
;
import
{
observer
}
from
"mobx-react-lite"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment