desktopr 1.3.1 → 2.0.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/dist-sdk/_companion_context.js +10 -5
- package/dist-sdk/_helpers.js +1 -1
- package/dist-sdk/desktopr/_helpers.js +1 -1
- package/dist-sdk/desktopr/_types.d.ts +2 -2
- package/dist-sdk/modules/rs/app/_types.d.ts +1 -1
- package/dist-sdk/modules/rs/badge/_types.d.ts +1 -1
- package/dist-sdk/modules/rs/contextMenu/_helpers.js +1 -1
- package/dist-sdk/modules/rs/diagnostics/_helpers.js +1 -1
- package/dist-sdk/modules/rs/diagnostics/_types.d.ts +1 -1
- package/dist-sdk/modules/rs/files/_types.d.ts +1 -1
- package/dist-sdk/modules/rs/fs/_main.js +44 -1
- package/dist-sdk/modules/rs/fs/_types.d.ts +7 -1
- package/dist-sdk/modules/rs/menu/_helpers.js +1 -1
- package/dist-sdk/modules/rs/network/_types.d.ts +1 -1
- package/dist-sdk/modules/rs/plugins/_helpers.d.ts +1 -0
- package/dist-sdk/modules/rs/plugins/_helpers.js +9 -0
- package/dist-sdk/modules/rs/plugins/_main.d.ts +5 -0
- package/dist-sdk/modules/rs/plugins/_main.js +15 -0
- package/dist-sdk/modules/rs/plugins/_types.d.ts +38 -0
- package/dist-sdk/modules/rs/plugins/_types.js +2 -0
- package/dist-sdk/modules/rs/window/_helpers.js +1 -1
- package/dist-sdk/modules/rs/window/_main.js +0 -5
- package/dist-sdk/modules/rs/window/_types.d.ts +0 -5
- package/dist-sdk/modules/rs/worker/_main.d.ts +1 -1
- package/dist-sdk/modules/rs/worker/_types.d.ts +1 -1
- package/dist-sdk/utils/crypto/_crypto.d.ts +31 -0
- package/dist-sdk/utils/crypto/_crypto.js +116 -0
- package/dist-sdk/utils/crypto/index.d.ts +1 -0
- package/dist-sdk/utils/crypto/index.js +17 -0
- package/dist-sdk/utils/index.d.ts +2 -0
- package/dist-sdk/utils/index.js +18 -0
- package/dist-sdk/utils/shared/_types.d.ts +64 -0
- package/dist-sdk/utils/shared/_types.js +2 -0
- package/dist-sdk/utils/utils/_browserStorage.d.ts +22 -0
- package/dist-sdk/utils/utils/_browserStorage.js +149 -0
- package/dist-sdk/utils/utils/_integerUtils.d.ts +50 -0
- package/dist-sdk/utils/utils/_integerUtils.js +74 -0
- package/dist-sdk/utils/utils/_jitter.d.ts +4 -0
- package/dist-sdk/utils/utils/_jitter.js +25 -0
- package/dist-sdk/utils/utils/_json.d.ts +63 -0
- package/dist-sdk/utils/utils/_json.js +510 -0
- package/dist-sdk/utils/utils/_logger.d.ts +16 -0
- package/dist-sdk/utils/utils/_logger.js +43 -0
- package/dist-sdk/utils/utils/_pageStore.d.ts +37 -0
- package/dist-sdk/utils/utils/_pageStore.js +61 -0
- package/dist-sdk/utils/utils/_regexPatterns.d.ts +113 -0
- package/dist-sdk/utils/utils/_regexPatterns.js +150 -0
- package/dist-sdk/utils/utils/_typesValidation.d.ts +50 -0
- package/dist-sdk/utils/utils/_typesValidation.js +125 -0
- package/dist-sdk/utils/utils/_utils.d.ts +201 -0
- package/dist-sdk/utils/utils/_utils.js +1200 -0
- package/dist-sdk/utils/utils/index.d.ts +9 -0
- package/dist-sdk/utils/utils/index.js +25 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./_utils";
|
|
2
|
+
export * from "./_logger";
|
|
3
|
+
export * from "./_typesValidation";
|
|
4
|
+
export * from "./_browserStorage";
|
|
5
|
+
export * from "./_pageStore";
|
|
6
|
+
export * from "./_jitter";
|
|
7
|
+
export * from "./_regexPatterns";
|
|
8
|
+
export * from "./_integerUtils";
|
|
9
|
+
export * from "./_json";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./_utils"), exports);
|
|
18
|
+
__exportStar(require("./_logger"), exports);
|
|
19
|
+
__exportStar(require("./_typesValidation"), exports);
|
|
20
|
+
__exportStar(require("./_browserStorage"), exports);
|
|
21
|
+
__exportStar(require("./_pageStore"), exports);
|
|
22
|
+
__exportStar(require("./_jitter"), exports);
|
|
23
|
+
__exportStar(require("./_regexPatterns"), exports);
|
|
24
|
+
__exportStar(require("./_integerUtils"), exports);
|
|
25
|
+
__exportStar(require("./_json"), exports);
|