@digipair/skill-web-jsoneditor 0.20.2 → 0.21.1
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/index.cjs.js +5 -5
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -41077,7 +41077,7 @@ function findNextOccurrence(state, query) {
|
|
|
41077
41077
|
var _loop = function(cycled1, cursor1) {
|
|
41078
41078
|
cursor1.next();
|
|
41079
41079
|
if (cursor1.done) {
|
|
41080
|
-
if (cycled1) return
|
|
41080
|
+
if (cycled1) return cursor = cursor1, cycled = cycled1, {
|
|
41081
41081
|
v: null
|
|
41082
41082
|
};
|
|
41083
41083
|
cursor1 = new SearchCursor(state.doc, query, 0, Math.max(0, ranges[ranges.length - 1].from - 1));
|
|
@@ -41085,16 +41085,16 @@ function findNextOccurrence(state, query) {
|
|
|
41085
41085
|
} else {
|
|
41086
41086
|
if (cycled1 && ranges.some(function(r) {
|
|
41087
41087
|
return r.from == cursor1.value.from;
|
|
41088
|
-
})) return
|
|
41088
|
+
})) return cursor = cursor1, cycled = cycled1, "continue";
|
|
41089
41089
|
if (fullWord) {
|
|
41090
41090
|
var word = state.wordAt(cursor1.value.from);
|
|
41091
|
-
if (!word || word.from != cursor1.value.from || word.to != cursor1.value.to) return
|
|
41091
|
+
if (!word || word.from != cursor1.value.from || word.to != cursor1.value.to) return cursor = cursor1, cycled = cycled1, "continue";
|
|
41092
41092
|
}
|
|
41093
|
-
return
|
|
41093
|
+
return cursor = cursor1, cycled = cycled1, {
|
|
41094
41094
|
v: cursor1.value
|
|
41095
41095
|
};
|
|
41096
41096
|
}
|
|
41097
|
-
|
|
41097
|
+
cursor = cursor1, cycled = cycled1;
|
|
41098
41098
|
};
|
|
41099
41099
|
var _state_selection = state.selection, main = _state_selection.main, ranges = _state_selection.ranges;
|
|
41100
41100
|
var word = state.wordAt(main.head), fullWord = word && word.from == main.from && word.to == main.to;
|