@vuu-ui/vuu-codemirror 0.8.8-debug → 0.8.9-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/cjs/index.js +13 -34
- package/cjs/index.js.map +3 -3
- package/esm/index.js +13 -34
- package/esm/index.js.map +3 -3
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -15388,40 +15388,6 @@ var Space = {
|
|
|
15388
15388
|
};
|
|
15389
15389
|
var LEADING_FILL = DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR;
|
|
15390
15390
|
|
|
15391
|
-
// ../vuu-utils/src/input-utils.ts
|
|
15392
|
-
var actionKeys = {
|
|
15393
|
-
Enter: "Enter",
|
|
15394
|
-
Delete: "Delete"
|
|
15395
|
-
};
|
|
15396
|
-
var navigationKeys = {
|
|
15397
|
-
Home: "Home",
|
|
15398
|
-
End: "End",
|
|
15399
|
-
ArrowRight: "ArrowRight",
|
|
15400
|
-
ArrowLeft: "ArrowLeft",
|
|
15401
|
-
ArrowDown: "ArrowDown",
|
|
15402
|
-
ArrowUp: "ArrowUp",
|
|
15403
|
-
Tab: "Tab"
|
|
15404
|
-
};
|
|
15405
|
-
var functionKeys = {
|
|
15406
|
-
F1: "F1",
|
|
15407
|
-
F2: "F2",
|
|
15408
|
-
F3: "F3",
|
|
15409
|
-
F4: "F4",
|
|
15410
|
-
F5: "F5",
|
|
15411
|
-
F6: "F6",
|
|
15412
|
-
F7: "F7",
|
|
15413
|
-
F8: "F8",
|
|
15414
|
-
F9: "F9",
|
|
15415
|
-
F10: "F10",
|
|
15416
|
-
F11: "F11",
|
|
15417
|
-
F12: "F12"
|
|
15418
|
-
};
|
|
15419
|
-
var specialKeys = {
|
|
15420
|
-
...actionKeys,
|
|
15421
|
-
...navigationKeys,
|
|
15422
|
-
...functionKeys
|
|
15423
|
-
};
|
|
15424
|
-
|
|
15425
15391
|
// ../vuu-utils/src/json-utils.ts
|
|
15426
15392
|
var { COUNT: COUNT2 } = metadataKeys;
|
|
15427
15393
|
|
|
@@ -15440,6 +15406,19 @@ var SINGLE_SELECTED_ROW = RowSelected.True + RowSelected.First + RowSelected.Las
|
|
|
15440
15406
|
var FIRST_SELECTED_ROW_OF_BLOCK = RowSelected.True + RowSelected.First;
|
|
15441
15407
|
var LAST_SELECTED_ROW_OF_BLOCK = RowSelected.True + RowSelected.Last;
|
|
15442
15408
|
|
|
15409
|
+
// ../../node_modules/html-to-image/es/util.js
|
|
15410
|
+
var uuid = (() => {
|
|
15411
|
+
let counter = 0;
|
|
15412
|
+
const random = () => (
|
|
15413
|
+
// eslint-disable-next-line no-bitwise
|
|
15414
|
+
`0000${(Math.random() * 36 ** 4 << 0).toString(36)}`.slice(-4)
|
|
15415
|
+
);
|
|
15416
|
+
return () => {
|
|
15417
|
+
counter += 1;
|
|
15418
|
+
return `u${random()}${counter}`;
|
|
15419
|
+
};
|
|
15420
|
+
})();
|
|
15421
|
+
|
|
15443
15422
|
// src/suggestion-utils.ts
|
|
15444
15423
|
var NO_OPTIONS = {};
|
|
15445
15424
|
var applyWithCursorMove = () => (view, completion, from) => {
|