@parhelia/core 0.1.12676 → 0.1.12694
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editor/client/EditorShell.js +3 -0
- package/dist/editor/client/EditorShell.js.map +1 -1
- package/dist/editor/client/editContext.d.ts +2 -0
- package/dist/editor/client/editContext.js.map +1 -1
- package/dist/editor/menubar/toolbar-sections/ViewportControls.js +7 -2
- package/dist/editor/menubar/toolbar-sections/ViewportControls.js.map +1 -1
- package/dist/editor/page-editor-chrome/PageEditorChrome.js +2 -1
- package/dist/editor/page-editor-chrome/PageEditorChrome.js.map +1 -1
- package/dist/editor/page-editor-chrome/VersionDiffHighlightings.d.ts +8 -0
- package/dist/editor/page-editor-chrome/VersionDiffHighlightings.js +456 -0
- package/dist/editor/page-editor-chrome/VersionDiffHighlightings.js.map +1 -0
- package/dist/editor/services/contentService.d.ts +10 -0
- package/dist/editor/services/contentService.js +6 -0
- package/dist/editor/services/contentService.js.map +1 -1
- package/dist/revision.d.ts +2 -2
- package/dist/revision.js +2 -2
- package/package.json +1 -1
|
@@ -426,6 +426,7 @@ export function EditorShell({ configuration, className, item: loadItemDescriptor
|
|
|
426
426
|
const [suggestedEdits, setSuggestedEdits] = useState([]);
|
|
427
427
|
const [showSuggestedEdits, setShowSuggestedEdits] = useState(false);
|
|
428
428
|
const [showSuggestedEditsDiff, setShowSuggestedEditsDiff] = useState(false);
|
|
429
|
+
const [showVersionDiffHighlighting, setShowVersionDiffHighlighting] = useState(false);
|
|
429
430
|
const [availableCommentTags, setAvailableCommentTags] = useState([]);
|
|
430
431
|
const [showComments, setShowComments] = useState(() => {
|
|
431
432
|
return localStorageService.getOrSetItem("editor.showComments", true);
|
|
@@ -4375,6 +4376,8 @@ export function EditorShell({ configuration, className, item: loadItemDescriptor
|
|
|
4375
4376
|
setShowSuggestedEdits,
|
|
4376
4377
|
showSuggestedEditsDiff,
|
|
4377
4378
|
setShowSuggestedEditsDiff,
|
|
4379
|
+
showVersionDiffHighlighting,
|
|
4380
|
+
setShowVersionDiffHighlighting,
|
|
4378
4381
|
enableCompletions,
|
|
4379
4382
|
setEnableCompletions,
|
|
4380
4383
|
showComponentNavigator,
|