Skip to content
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

wip: feat: comments #1376

Draft
wants to merge 32 commits into
base: feature/liveblocks-v2
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 10 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1b44296
wip
YousefED Jan 10, 2025
23275a0
wip
YousefED Jan 13, 2025
99a6905
fix: Code block language parsing (#1362)
areknawo Jan 13, 2025
bf15c04
Enhance translation in french in fr.ts (#1359)
virgile-dev Jan 13, 2025
82e068c
fix: Multi-editor drag & drop (#1341)
matthewlipski Jan 14, 2025
1c34ed6
fix: Cache & reuse Shiki highlighter & parser for improved performanc…
areknawo Jan 14, 2025
0341242
fix: Rollup config for `xl` and `server-util` packages (#1365)
matthewlipski Jan 14, 2025
721a4e9
wip
YousefED Jan 14, 2025
e824c42
wip
YousefED Jan 15, 2025
f2d4bb8
misc
YousefED Jan 16, 2025
434eafa
add threadstore tests
YousefED Jan 16, 2025
9d35f72
document recommended auth rules
YousefED Jan 16, 2025
58ed7c0
resolve
YousefED Jan 16, 2025
b761e1e
basic userstore impl
YousefED Jan 16, 2025
5f52147
user auth
YousefED Jan 16, 2025
81cb3ce
feat: stop suggestion menu event propagation (#1346)
mfanselmo Jan 17, 2025
c0bc5d0
Add Italian Translations (#1345)
caioricciuti Jan 17, 2025
9a8f957
feat: Code block support in PDF & DOCX exporters (#1367)
areknawo Jan 17, 2025
8461552
feat: Improved collaboration cursor UX (#1374)
matthewlipski Jan 17, 2025
800a1f0
feat: Page break (#1372)
areknawo Jan 20, 2025
f4e7732
fix: Minor collaboration cursor & docs changes (#1381)
matthewlipski Jan 20, 2025
99385e0
fix: Adjust page break styles (#1383)
matthewlipski Jan 21, 2025
7ce125a
v0.23.0
matthewlipski Jan 21, 2025
060708d
Big comments UX WIP
matthewlipski Jan 24, 2025
61b934e
docs: Updated sponsors section (#1392)
matthewlipski Jan 27, 2025
844de93
feat: add factory function for extensions (#1390)
YousefED Jan 27, 2025
4d2fe51
fix: Side menu scrolling (#1394)
matthewlipski Jan 27, 2025
eefb4a1
v0.23.1
matthewlipski Jan 27, 2025
5c6f45b
Merge branch 'main' into feature/comments
matthewlipski Jan 28, 2025
b4b3cd7
docs: Default blocks example fix (#1397)
matthewlipski Jan 28, 2025
16c6a7a
Merge branch 'main' into feature/comments
matthewlipski Jan 28, 2025
a5e07c0
Updated reactions UX
matthewlipski Jan 28, 2025
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
2 changes: 1 addition & 1 deletion examples/01-basic/01-minimal/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useCreateBlockNote } from "@blocknote/react";

export default function App() {
// Creates a new editor instance.
const editor = useCreateBlockNote();
const editor = useCreateBlockNote({});

// Renders the editor instance using a React component.
return <BlockNoteView editor={editor} />;
Expand Down
14 changes: 4 additions & 10 deletions examples/07-collaboration/02-liveblocks/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
Expand All @@ -22,15 +18,13 @@
"jsx": "react-jsx",
"composite": true
},
"include": [
"."
],
"__ADD_FOR_LOCAL_DEV_references": [
"include": ["."],
"references": [
{
"path": "../../../packages/core/"
},
{
"path": "../../../packages/react/"
}
]
}
}
Loading
Loading