@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.
@@ -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,