这是indexloc提供的服务,不要输入任何密码
Skip to content

Issue/374 add bubble menu tiptap editor #390

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
476996c
remove unused extension
muzanella11 Jul 9, 2024
0e5b7b9
fix tiptap bubble menu not showing
muzanella11 Jul 9, 2024
5c93b24
fix styling bubble menu
muzanella11 Jul 9, 2024
273ebc0
fix styling
muzanella11 Jul 10, 2024
3e6acff
add strike text style
muzanella11 Jul 10, 2024
9c22f11
add underline
muzanella11 Jul 10, 2024
c8d2825
add codeblock
muzanella11 Jul 10, 2024
286fa4c
add syntax highlight codeblock
muzanella11 Jul 10, 2024
482caa3
add separator
muzanella11 Jul 15, 2024
5601050
still finding out away to make a dropdown inside tiptap editor
muzanella11 Jul 15, 2024
2641c4e
dropdown with tailwind
muzanella11 Jul 16, 2024
1596ae8
remove unused
muzanella11 Jul 16, 2024
fc817c3
add paragraph functionality
muzanella11 Jul 16, 2024
9c87532
add heading functionality
muzanella11 Jul 16, 2024
db49d1e
fix lint error
muzanella11 Jul 17, 2024
b07e4f4
add bullet list
muzanella11 Jul 17, 2024
7c31ec8
add numbered list
muzanella11 Jul 17, 2024
06721f6
fix error lint
muzanella11 Jul 17, 2024
cb5d454
fix not found module
muzanella11 Jul 23, 2024
8b7712f
add set link
muzanella11 Jul 23, 2024
1ee6dc4
revamp bubble menu
muzanella11 Jul 23, 2024
c7ec6fb
revamp design bubble menu
muzanella11 Jul 23, 2024
e36213f
remove unused
muzanella11 Jul 23, 2024
ff16d31
getting error after update floating menu
muzanella11 Jul 23, 2024
af05e4a
fix lint error
muzanella11 Jul 24, 2024
4d3bb3a
remove unused
muzanella11 Jul 24, 2024
3448f85
remove unused
muzanella11 Jul 24, 2024
a1ab1e4
put back code
muzanella11 Jul 24, 2024
cb78228
remove unused
muzanella11 Jul 24, 2024
be7b905
still cant load svg properly
muzanella11 Jul 25, 2024
0321ab5
put back code without separating svg to assets folder
muzanella11 Jul 26, 2024
99f12e6
fix lint error
muzanella11 Jul 26, 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
9 changes: 6 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports": "always"
"source.organizeImports": "always",
},
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
Expand All @@ -15,7 +15,7 @@
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2
"editor.tabSize": 2,
},
"[jsonc]": {
"editor.tabSize": 2
Expand All @@ -27,6 +27,9 @@
"editor.tabSize": 2
},
"[typescript]": {
"editor.tabSize": 2
"editor.tabSize": 2,
},
"[javascript]": {
"editor.tabSize": 2,
}
}
1 change: 1 addition & 0 deletions hosting/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ module.exports = {
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
"plugin:@next/next/recommended",
"prettier",
"google",
],

Expand Down
Loading