Skip to content

Commit 0ae319d

Browse files
g4rry420Udit TakkarPeerRichzomars
authored
a11y: Exit the lexical Editor and button a11y on tab index (#8139)
* a11y: Exit the lexical Editor and button a11y on tab index Signed-off-by: GurkiranSingh <gurkiransinghk@gmail.com> * chore: Updated lexical to v0.9.0 Signed-off-by: GurkiranSingh <gurkiransinghk@gmail.com> * chore: Added ErrorBoundary for Lexical RichTextPlugin Signed-off-by: GurkiranSingh <gurkiransinghk@gmail.com> * chore: yarn install changes Signed-off-by: GurkiranSingh <gurkiransinghk@gmail.com> * fix: merge conflicts Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> * Update yarn.lock --------- Signed-off-by: GurkiranSingh <gurkiransinghk@gmail.com> Signed-off-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> Co-authored-by: Udit Takkar <udit.07814802719@cse.mait.ac.in> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: zomars <zomars@me.com>
1 parent 749311b commit 0ae319d

File tree

4 files changed

+162
-157
lines changed

4 files changed

+162
-157
lines changed

packages/features/eventtypes/components/CreateEventTypeDialog.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,11 @@ export default function CreateEventTypeDialog({
290290
</div>
291291
)}
292292
</div>
293-
<div className="mt-8 flex flex-row-reverse gap-x-2">
293+
<div className="mt-8 flex justify-end gap-x-2">
294+
<DialogClose />
294295
<Button type="submit" loading={createMutation.isLoading}>
295296
{t("continue")}
296297
</Button>
297-
<DialogClose />
298298
</div>
299299
</Form>
300300
</DialogContent>

packages/features/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"@calcom/lib": "*",
1111
"@calcom/trpc": "*",
1212
"@calcom/ui": "*",
13-
"@lexical/react": "^0.5.0",
13+
"@lexical/react": "^0.9.0",
1414
"dompurify": "^2.4.1",
1515
"framer-motion": "^10.12.8",
16-
"lexical": "^0.5.0",
16+
"lexical": "^0.9.0",
1717
"react-select": "^5.7.0",
1818
"react-sticky-box": "^2.0.4",
1919
"zustand": "^4.3.2"

packages/ui/components/editor/Editor.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { ListItemNode, ListNode } from "@lexical/list";
44
import { TRANSFORMERS } from "@lexical/markdown";
55
import { LexicalComposer } from "@lexical/react/LexicalComposer";
66
import { ContentEditable } from "@lexical/react/LexicalContentEditable";
7+
import LexicalErrorBoundary from "@lexical/react/LexicalErrorBoundary";
78
import { HistoryPlugin } from "@lexical/react/LexicalHistoryPlugin";
89
import { LinkPlugin } from "@lexical/react/LexicalLinkPlugin";
910
import { ListPlugin } from "@lexical/react/LexicalListPlugin";
@@ -84,6 +85,7 @@ export const Editor = (props: TextEditorProps) => {
8485
<RichTextPlugin
8586
contentEditable={<ContentEditable style={{ height: props.height }} className="editor-input" />}
8687
placeholder={<div className="text-muted -mt-11 p-3 text-sm">{props.placeholder || ""}</div>}
88+
ErrorBoundary={LexicalErrorBoundary}
8789
/>
8890
<ListPlugin />
8991
<LinkPlugin />

0 commit comments

Comments
 (0)