@vuu-ui/vuu-codemirror 0.7.6-debug → 0.8.0-debug

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/esm/index.js CHANGED
@@ -15028,8 +15028,8 @@ var defaultKeymap = /* @__PURE__ */ [
15028
15028
  ].concat(standardKeymap);
15029
15029
 
15030
15030
  // src/index.ts
15031
+ import { SyntaxNode, Tree as Tree2 } from "@lezer/common";
15031
15032
  import { styleTags as styleTags2, tags as tags2 } from "@lezer/highlight";
15032
- import { LRParser } from "@lezer/lr";
15033
15033
 
15034
15034
  // src/codemirror-basic-setup.ts
15035
15035
  var keyBindings = [
@@ -15110,9 +15110,7 @@ var metadataKeys = {
15110
15110
  FILTER_COUNT: "filter_count",
15111
15111
  NEXT_FILTER_IDX: "next_filter_idx"
15112
15112
  };
15113
-
15114
- // ../vuu-utils/src/DataWindow.ts
15115
- var { KEY } = metadataKeys;
15113
+ var { DEPTH, IS_LEAF } = metadataKeys;
15116
15114
 
15117
15115
  // ../vuu-utils/src/cookie-utils.ts
15118
15116
  var getCookieValue = (name) => {
@@ -15122,6 +15120,9 @@ var getCookieValue = (name) => {
15122
15120
  }
15123
15121
  };
15124
15122
 
15123
+ // ../vuu-utils/src/DataWindow.ts
15124
+ var { KEY } = metadataKeys;
15125
+
15125
15126
  // ../vuu-utils/src/logging-utils.ts
15126
15127
  var logLevels = ["error", "warn", "info", "debug"];
15127
15128
  var isValidLogLevel = (value) => typeof value === "string" && logLevels.includes(value);
@@ -15329,6 +15330,18 @@ var { COUNT: COUNT2 } = metadataKeys;
15329
15330
  // ../vuu-utils/src/row-utils.ts
15330
15331
  var { IDX } = metadataKeys;
15331
15332
 
15333
+ // ../vuu-utils/src/selection-utils.ts
15334
+ var { SELECTED } = metadataKeys;
15335
+ var RowSelected = {
15336
+ False: 0,
15337
+ True: 1,
15338
+ First: 2,
15339
+ Last: 4
15340
+ };
15341
+ var SINGLE_SELECTED_ROW = RowSelected.True + RowSelected.First + RowSelected.Last;
15342
+ var FIRST_SELECTED_ROW_OF_BLOCK = RowSelected.True + RowSelected.First;
15343
+ var LAST_SELECTED_ROW_OF_BLOCK = RowSelected.True + RowSelected.Last;
15344
+
15332
15345
  // src/suggestion-utils.ts
15333
15346
  var NO_OPTIONS = {};
15334
15347
  var applyWithCursorMove = () => (view, completion, from) => {
@@ -15397,8 +15410,9 @@ export {
15397
15410
  EditorView,
15398
15411
  HighlightStyle,
15399
15412
  LRLanguage,
15400
- LRParser,
15401
15413
  LanguageSupport,
15414
+ SyntaxNode,
15415
+ Tree2 as Tree,
15402
15416
  asNameSuggestion,
15403
15417
  autocompletion,
15404
15418
  booleanJoinSuggestions,