@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/esm/index.js
CHANGED
|
@@ -15328,40 +15328,6 @@ var Space = {
|
|
|
15328
15328
|
};
|
|
15329
15329
|
var LEADING_FILL = DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR + DIGIT_STR;
|
|
15330
15330
|
|
|
15331
|
-
// ../vuu-utils/src/input-utils.ts
|
|
15332
|
-
var actionKeys = {
|
|
15333
|
-
Enter: "Enter",
|
|
15334
|
-
Delete: "Delete"
|
|
15335
|
-
};
|
|
15336
|
-
var navigationKeys = {
|
|
15337
|
-
Home: "Home",
|
|
15338
|
-
End: "End",
|
|
15339
|
-
ArrowRight: "ArrowRight",
|
|
15340
|
-
ArrowLeft: "ArrowLeft",
|
|
15341
|
-
ArrowDown: "ArrowDown",
|
|
15342
|
-
ArrowUp: "ArrowUp",
|
|
15343
|
-
Tab: "Tab"
|
|
15344
|
-
};
|
|
15345
|
-
var functionKeys = {
|
|
15346
|
-
F1: "F1",
|
|
15347
|
-
F2: "F2",
|
|
15348
|
-
F3: "F3",
|
|
15349
|
-
F4: "F4",
|
|
15350
|
-
F5: "F5",
|
|
15351
|
-
F6: "F6",
|
|
15352
|
-
F7: "F7",
|
|
15353
|
-
F8: "F8",
|
|
15354
|
-
F9: "F9",
|
|
15355
|
-
F10: "F10",
|
|
15356
|
-
F11: "F11",
|
|
15357
|
-
F12: "F12"
|
|
15358
|
-
};
|
|
15359
|
-
var specialKeys = {
|
|
15360
|
-
...actionKeys,
|
|
15361
|
-
...navigationKeys,
|
|
15362
|
-
...functionKeys
|
|
15363
|
-
};
|
|
15364
|
-
|
|
15365
15331
|
// ../vuu-utils/src/json-utils.ts
|
|
15366
15332
|
var { COUNT: COUNT2 } = metadataKeys;
|
|
15367
15333
|
|
|
@@ -15380,6 +15346,19 @@ var SINGLE_SELECTED_ROW = RowSelected.True + RowSelected.First + RowSelected.Las
|
|
|
15380
15346
|
var FIRST_SELECTED_ROW_OF_BLOCK = RowSelected.True + RowSelected.First;
|
|
15381
15347
|
var LAST_SELECTED_ROW_OF_BLOCK = RowSelected.True + RowSelected.Last;
|
|
15382
15348
|
|
|
15349
|
+
// ../../node_modules/html-to-image/es/util.js
|
|
15350
|
+
var uuid = (() => {
|
|
15351
|
+
let counter = 0;
|
|
15352
|
+
const random = () => (
|
|
15353
|
+
// eslint-disable-next-line no-bitwise
|
|
15354
|
+
`0000${(Math.random() * 36 ** 4 << 0).toString(36)}`.slice(-4)
|
|
15355
|
+
);
|
|
15356
|
+
return () => {
|
|
15357
|
+
counter += 1;
|
|
15358
|
+
return `u${random()}${counter}`;
|
|
15359
|
+
};
|
|
15360
|
+
})();
|
|
15361
|
+
|
|
15383
15362
|
// src/suggestion-utils.ts
|
|
15384
15363
|
var NO_OPTIONS = {};
|
|
15385
15364
|
var applyWithCursorMove = () => (view, completion, from) => {
|