Skip to content

Commit

Permalink
Lexical Scribe editor integration.
Browse files Browse the repository at this point in the history
fix for usfm error handling

fix scroll issue, disabled non available books.
  • Loading branch information
samueljd committed Oct 10, 2024
1 parent 7be25c1 commit 7344d27
Show file tree
Hide file tree
Showing 35 changed files with 3,953 additions and 1,454 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Autogrpha-DB/
/app/**/*.map
/.next
.next
.yalc
yalc.lock

# testing
/coverage
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
"@babel/eslint-parser": "^7.5.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.17.12",
"@capacitor/cli": "5.4.2",
"@mui/icons-material": "^5.8.4",
"@netlify/plugin-nextjs": "^4.8.0",
"@playwright/test": "^1.36.2",
Expand Down Expand Up @@ -127,6 +128,8 @@
"@mui/icons-material": "^5.x"
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@biblionexus-foundation/scribe-editor": "0.1.2-scribe-v1",
"@capacitor/app": "5.0.6",
"@capacitor/core": "5.4.2",
"@capacitor/haptics": "5.0.6",
Expand Down Expand Up @@ -222,6 +225,7 @@
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"sj-usfm-grammar": "^3.0.3",
"styled-components": "^5.3.6",
"tc-ui-toolkit": "5.3.3",
"terser-webpack-plugin": "^5.3.10",
Expand All @@ -230,9 +234,9 @@
"typescript": "^4.9.5",
"use-deep-compare": "^1.1.0",
"usfm-editor": "0.8.7",
"usfm-grammar": "^2.3.0",
"usfm-grammar": "^2.3.1",
"uuid": "^9.0.1",
"wavesurfer.js": "^6.6.2",
"wavesurfer.js": "^6.6.4",
"webpack-node-externals": "^3.0.0",
"winston": "^3.7.2",
"word-aligner": "1.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default function SelectBook({
selectedBooks,
setSelectedBooks,
scope,
setBook,
existingScope = [],
disableScope = {},
call = '',
Expand All @@ -37,6 +38,7 @@ export default function SelectBook({
function bookSelect(e, bookId) {
e.preventDefault();
onChangeBook(bookId, selectedBooks[0]);
setBook(bookId);
if (multiSelectBook === false) { selectBook(); }
}

Expand Down
251 changes: 0 additions & 251 deletions renderer/src/components/EditorPage/TextEditor/BibleNavigationX.jsx

This file was deleted.

Loading

0 comments on commit 7344d27

Please sign in to comment.