@codemirror/state 6.7.4 → 6.7.5
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/CHANGELOG.md +6 -0
- package/dist/index.cjs +3 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -3867,8 +3867,10 @@ function compare(a, startA, b, startB, length, comparator) {
|
|
|
3867
3867
|
boundChange = false;
|
|
3868
3868
|
}
|
|
3869
3869
|
else {
|
|
3870
|
-
if (boundChange)
|
|
3870
|
+
if (boundChange) {
|
|
3871
3871
|
comparator.boundChange(pos);
|
|
3872
|
+
boundChange = false;
|
|
3873
|
+
}
|
|
3872
3874
|
if (clipEnd > pos && !sameValues(a.active, b.active))
|
|
3873
3875
|
comparator.compareRange(pos, clipEnd, a.active, b.active);
|
|
3874
3876
|
if (bounds && clipEnd < endB && (dEnd || a.openEnd(end) != b.openEnd(end)))
|
package/dist/index.js
CHANGED
|
@@ -3863,8 +3863,10 @@ function compare(a, startA, b, startB, length, comparator) {
|
|
|
3863
3863
|
boundChange = false;
|
|
3864
3864
|
}
|
|
3865
3865
|
else {
|
|
3866
|
-
if (boundChange)
|
|
3866
|
+
if (boundChange) {
|
|
3867
3867
|
comparator.boundChange(pos);
|
|
3868
|
+
boundChange = false;
|
|
3869
|
+
}
|
|
3868
3870
|
if (clipEnd > pos && !sameValues(a.active, b.active))
|
|
3869
3871
|
comparator.compareRange(pos, clipEnd, a.active, b.active);
|
|
3870
3872
|
if (bounds && clipEnd < endB && (dEnd || a.openEnd(end) != b.openEnd(end)))
|