dev-classes 1.3.7 → 1.3.8
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/_types/index.d.ts +8 -0
- package/dist/classes/Color/index.es.js +4 -0
- package/dist/classes/DateProcessing/{DateProcessing.js → DateProcessing.es.js} +1 -1
- package/dist/classes/DateProcessing/index.es.js +4 -0
- package/dist/classes/DelaysPromise/index.es.js +4 -0
- package/dist/classes/File/index.es.js +4 -0
- package/dist/classes/HTTPSApi/{HTTPSApi.js → HTTPSApi.es.js} +5 -5
- package/dist/classes/HTTPSApi/deps/apiRequest/{apiRequest.js → apiRequest.es.js} +3 -3
- package/dist/classes/HTTPSApi/index.d.ts +1 -1
- package/dist/classes/HTTPSApi/index.es.js +4 -0
- package/dist/classes/Numbers/index.es.js +4 -0
- package/dist/classes/SocketApi/{SocketApi.js → SocketApi.es.js} +6 -6
- package/dist/classes/SocketApi/deps/WsApi/{WsApi.js → WsApi.es.js} +1 -1
- package/dist/classes/SocketApi/deps/WsApi/index.es.js +4 -0
- package/dist/classes/SocketApi/index.es.js +4 -0
- package/dist/classes/Utils/EventSubscribers/index.es.js +4 -0
- package/dist/classes/Utils/NetworkInformation/classes/{NetworkInformationCordova.js → NetworkInformationCordova.es.js} +1 -1
- package/dist/classes/Utils/NetworkInformation/classes/{NetworkInformationPC.js → NetworkInformationPC.es.js} +2 -2
- package/dist/classes/Utils/NetworkInformation/classes/{index.js → index.es.js} +2 -2
- package/dist/classes/Utils/NetworkInformation/{index.js → index.es.js} +4 -4
- package/dist/{index.js → index.es.js} +13 -13
- package/package.json +7 -4
- package/dist/classes/Color/index.js +0 -4
- package/dist/classes/DateProcessing/index.js +0 -4
- package/dist/classes/DelaysPromise/index.js +0 -4
- package/dist/classes/File/index.js +0 -4
- package/dist/classes/HTTPSApi/index.js +0 -4
- package/dist/classes/Numbers/index.js +0 -4
- package/dist/classes/SocketApi/deps/WsApi/index.js +0 -4
- package/dist/classes/SocketApi/index.js +0 -4
- package/dist/classes/Utils/EventSubscribers/index.js +0 -4
- /package/dist/_types/{index.d.js → index.d.es.js} +0 -0
- /package/dist/classes/Color/{Color.js → Color.es.js} +0 -0
- /package/dist/classes/Color/{Color.types.js → Color.types.es.js} +0 -0
- /package/dist/classes/ControlAppBySocket/{ControlAppBySocket.js → ControlAppBySocket.es.js} +0 -0
- /package/dist/classes/DateProcessing/{DateProcessing.types.js → DateProcessing.types.es.js} +0 -0
- /package/dist/classes/DelaysPromise/{DelaysPromise.js → DelaysPromise.es.js} +0 -0
- /package/dist/classes/DelaysPromise/{DelaysPromise.types.js → DelaysPromise.types.es.js} +0 -0
- /package/dist/classes/File/{File.js → File.es.js} +0 -0
- /package/dist/classes/File/{File.types.js → File.types.es.js} +0 -0
- /package/dist/classes/HTTPSApi/{HTTPSApi.types.js → HTTPSApi.types.es.js} +0 -0
- /package/dist/classes/HTTPSApi/deps/apiRequest/ErrorsHandler/{ErrorsHandler.js → ErrorsHandler.es.js} +0 -0
- /package/dist/classes/HTTPSApi/deps/apiRequest/SaveRequest/{SaveRequest.js → SaveRequest.es.js} +0 -0
- /package/dist/classes/HTTPSApi/deps/apiRequest/types/{apiRequest.types.js → apiRequest.types.es.js} +0 -0
- /package/dist/classes/Numbers/{Numbers.js → Numbers.es.js} +0 -0
- /package/dist/classes/Numbers/{Numbers.types.js → Numbers.types.es.js} +0 -0
- /package/dist/classes/SocketApi/{SocketApi.types.js → SocketApi.types.es.js} +0 -0
- /package/dist/classes/SocketApi/deps/ConfigInfoConnect/{ConfigInfoConnect.js → ConfigInfoConnect.es.js} +0 -0
- /package/dist/classes/SocketApi/deps/ConfigInfoConnect/{ConfigInfoConnect.types.js → ConfigInfoConnect.types.es.js} +0 -0
- /package/dist/classes/SocketApi/deps/WsApi/{WsApi.types.js → WsApi.types.es.js} +0 -0
- /package/dist/classes/Utils/EventSubscribers/{EventSubscribers.js → EventSubscribers.es.js} +0 -0
- /package/dist/classes/Utils/EventSubscribers/{EventSubscribers.types.js → EventSubscribers.types.es.js} +0 -0
- /package/dist/classes/Utils/NetworkInformation/{NetworkInformation.js → NetworkInformation.es.js} +0 -0
- /package/dist/classes/Utils/NetworkInformation/classes/{InternetWatchers.js → InternetWatchers.es.js} +0 -0
- /package/dist/classes/Utils/NetworkInformation/classes/types/{types.abscruct.js → types.abscruct.es.js} +0 -0
- /package/dist/classes/Utils/{Utils.js → Utils.es.js} +0 -0
- /package/dist/classes/Utils/{Utils.types.js → Utils.types.es.js} +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare type GetRecordByArray_P<T extends readonly string[]> = {
|
|
2
|
+
[Key in T[number]]: string | number | boolean | null;
|
|
3
|
+
};
|
|
4
|
+
declare type GetKeysByArray_OR<T extends readonly string[]> = T[number];
|
|
5
|
+
type TypeAndNull<T> = T | null;
|
|
6
|
+
|
|
7
|
+
declare type ValueOf<T> = T[keyof T];
|
|
8
|
+
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var o = Object.defineProperty;
|
|
2
2
|
var D = (e, t, r) => t in e ? o(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r;
|
|
3
3
|
var a = (e, t, r) => (D(e, typeof t != "symbol" ? t + "" : t, r), r);
|
|
4
|
-
import { itemsMonths, itemsWeek } from "./DateProcessing.types.js";
|
|
4
|
+
import { itemsMonths, itemsWeek } from "./DateProcessing.types.es.js";
|
|
5
5
|
const _DateProcessing = class _DateProcessing {
|
|
6
6
|
};
|
|
7
7
|
a(_DateProcessing, "getActiveColorClassInDiffDate", (e, t, r) => {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
var h = Object.defineProperty;
|
|
2
2
|
var v = (i, e, r) => e in i ? h(i, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : i[e] = r;
|
|
3
3
|
var s = (i, e, r) => (v(i, typeof e != "symbol" ? e + "" : e, r), r);
|
|
4
|
-
import { NetworkInformation as b } from "../Utils/NetworkInformation/NetworkInformation.js";
|
|
5
|
-
import { apiRequest as l } from "./deps/apiRequest/apiRequest.js";
|
|
6
|
-
import { NetworkInformationCordova as k } from "../Utils/NetworkInformation/classes/NetworkInformationCordova.js";
|
|
7
|
-
import { NetworkInformationPC as N } from "../Utils/NetworkInformation/classes/NetworkInformationPC.js";
|
|
8
|
-
import { EventSubscribers as g } from "../Utils/EventSubscribers/EventSubscribers.js";
|
|
4
|
+
import { NetworkInformation as b } from "../Utils/NetworkInformation/NetworkInformation.es.js";
|
|
5
|
+
import { apiRequest as l } from "./deps/apiRequest/apiRequest.es.js";
|
|
6
|
+
import { NetworkInformationCordova as k } from "../Utils/NetworkInformation/classes/NetworkInformationCordova.es.js";
|
|
7
|
+
import { NetworkInformationPC as N } from "../Utils/NetworkInformation/classes/NetworkInformationPC.es.js";
|
|
8
|
+
import { EventSubscribers as g } from "../Utils/EventSubscribers/EventSubscribers.es.js";
|
|
9
9
|
const t = class t {
|
|
10
10
|
static setState(e) {
|
|
11
11
|
t.state = { ...t.state, ...e };
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
var ct = Object.defineProperty;
|
|
2
2
|
var ut = (e, t, n) => t in e ? ct(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n;
|
|
3
3
|
var C = (e, t, n) => (ut(e, typeof t != "symbol" ? t + "" : t, n), n);
|
|
4
|
-
import { ErrorsHandler as lt } from "./ErrorsHandler/ErrorsHandler.js";
|
|
5
|
-
import { SaveRequest as Re } from "./SaveRequest/SaveRequest.js";
|
|
6
|
-
import { Utils as ft } from "../../../Utils/Utils.js";
|
|
4
|
+
import { ErrorsHandler as lt } from "./ErrorsHandler/ErrorsHandler.es.js";
|
|
5
|
+
import { SaveRequest as Re } from "./SaveRequest/SaveRequest.es.js";
|
|
6
|
+
import { Utils as ft } from "../../../Utils/Utils.es.js";
|
|
7
7
|
function qe(e, t) {
|
|
8
8
|
return function() {
|
|
9
9
|
return e.apply(t, arguments);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './HTTPSApi';
|
|
2
|
-
export type { RequestPayloadHTTPSApi, ResponseErrorHTTPSApi } from './HTTPSApi.types';
|
|
2
|
+
export type { RequestPayloadHTTPSApi, ResponseErrorHTTPSApi, FetchInfoHTTPSApi } from './HTTPSApi.types';
|
|
@@ -6,12 +6,12 @@ var f = (i, e, s) => {
|
|
|
6
6
|
throw TypeError("Cannot add the same private member more than once");
|
|
7
7
|
e instanceof WeakSet ? e.add(i) : e.set(i, s);
|
|
8
8
|
};
|
|
9
|
-
import { DelaysPromise as R } from "../DelaysPromise/DelaysPromise.js";
|
|
10
|
-
import { NetworkInformationCordova as d } from "../Utils/NetworkInformation/classes/NetworkInformationCordova.js";
|
|
11
|
-
import { NetworkInformationPC as v } from "../Utils/NetworkInformation/classes/NetworkInformationPC.js";
|
|
12
|
-
import { EventSubscribers as g } from "../Utils/EventSubscribers/EventSubscribers.js";
|
|
13
|
-
import { NetworkInformation as O } from "../Utils/NetworkInformation/NetworkInformation.js";
|
|
14
|
-
import { WsApi as S } from "./deps/WsApi/WsApi.js";
|
|
9
|
+
import { DelaysPromise as R } from "../DelaysPromise/DelaysPromise.es.js";
|
|
10
|
+
import { NetworkInformationCordova as d } from "../Utils/NetworkInformation/classes/NetworkInformationCordova.es.js";
|
|
11
|
+
import { NetworkInformationPC as v } from "../Utils/NetworkInformation/classes/NetworkInformationPC.es.js";
|
|
12
|
+
import { EventSubscribers as g } from "../Utils/EventSubscribers/EventSubscribers.es.js";
|
|
13
|
+
import { NetworkInformation as O } from "../Utils/NetworkInformation/NetworkInformation.es.js";
|
|
14
|
+
import { WsApi as S } from "./deps/WsApi/WsApi.es.js";
|
|
15
15
|
const I = /^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i;
|
|
16
16
|
function m(i) {
|
|
17
17
|
return I.test(i);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var c = Object.defineProperty;
|
|
2
2
|
var S = (r, t, e) => t in r ? c(r, t, { enumerable: !0, configurable: !0, writable: !0, value: e }) : r[t] = e;
|
|
3
3
|
var s = (r, t, e) => (S(r, typeof t != "symbol" ? t + "" : t, e), e);
|
|
4
|
-
import { EventSubscribers as l } from "../../../Utils/EventSubscribers/EventSubscribers.js";
|
|
4
|
+
import { EventSubscribers as l } from "../../../Utils/EventSubscribers/EventSubscribers.es.js";
|
|
5
5
|
class u {
|
|
6
6
|
constructor() {
|
|
7
7
|
s(this, "options", {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var s = Object.defineProperty;
|
|
2
2
|
var h = (t, o, r) => o in t ? s(t, o, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[o] = r;
|
|
3
3
|
var n = (t, o, r) => (h(t, typeof o != "symbol" ? o + "" : o, r), r);
|
|
4
|
-
import { NetworkInformationAbstract as i } from "./types/types.abscruct.js";
|
|
4
|
+
import { NetworkInformationAbstract as i } from "./types/types.abscruct.es.js";
|
|
5
5
|
class d extends i {
|
|
6
6
|
constructor() {
|
|
7
7
|
super(...arguments);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
var s = Object.defineProperty;
|
|
2
2
|
var a = (r, e, t) => e in r ? s(r, e, { enumerable: !0, configurable: !0, writable: !0, value: t }) : r[e] = t;
|
|
3
3
|
var o = (r, e, t) => (a(r, typeof e != "symbol" ? e + "" : e, t), t);
|
|
4
|
-
import { InternetWatchers as n } from "./InternetWatchers.js";
|
|
5
|
-
import { NetworkInformationAbstract as h } from "./types/types.abscruct.js";
|
|
4
|
+
import { InternetWatchers as n } from "./InternetWatchers.es.js";
|
|
5
|
+
import { NetworkInformationAbstract as h } from "./types/types.abscruct.es.js";
|
|
6
6
|
class w extends h {
|
|
7
7
|
constructor() {
|
|
8
8
|
super(...arguments);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { NetworkInformationCordova as t } from "./NetworkInformationCordova.js";
|
|
2
|
-
import { NetworkInformationPC as f } from "./NetworkInformationPC.js";
|
|
1
|
+
import { NetworkInformationCordova as t } from "./NetworkInformationCordova.es.js";
|
|
2
|
+
import { NetworkInformationPC as f } from "./NetworkInformationPC.es.js";
|
|
3
3
|
export {
|
|
4
4
|
t as NetworkInformationCordova,
|
|
5
5
|
f as NetworkInformationPC
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { NetworkInformation as t } from "./NetworkInformation.js";
|
|
2
|
-
import { NetworkInformationPC as f } from "./classes/NetworkInformationPC.js";
|
|
3
|
-
import { NetworkInformationAbstract as n } from "./classes/types/types.abscruct.js";
|
|
4
|
-
import { NetworkInformationCordova as i } from "./classes/NetworkInformationCordova.js";
|
|
1
|
+
import { NetworkInformation as t } from "./NetworkInformation.es.js";
|
|
2
|
+
import { NetworkInformationPC as f } from "./classes/NetworkInformationPC.es.js";
|
|
3
|
+
import { NetworkInformationAbstract as n } from "./classes/types/types.abscruct.es.js";
|
|
4
|
+
import { NetworkInformationCordova as i } from "./classes/NetworkInformationCordova.es.js";
|
|
5
5
|
export {
|
|
6
6
|
t as NetworkInformation,
|
|
7
7
|
n as NetworkInformationAbstract,
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { Color as t } from "./classes/Color/Color.js";
|
|
2
|
-
import { DateProcessing as m } from "./classes/DateProcessing/DateProcessing.js";
|
|
3
|
-
import { DelaysPromise as p } from "./classes/DelaysPromise/DelaysPromise.js";
|
|
4
|
-
import { File as i } from "./classes/File/File.js";
|
|
5
|
-
import { HTTPSApi as s } from "./classes/HTTPSApi/HTTPSApi.js";
|
|
6
|
-
import { Numbers as k } from "./classes/Numbers/Numbers.js";
|
|
7
|
-
import { SocketApi as b } from "./classes/SocketApi/SocketApi.js";
|
|
8
|
-
import { Utils as l } from "./classes/Utils/Utils.js";
|
|
9
|
-
import { EventSubscribers as I } from "./classes/Utils/EventSubscribers/EventSubscribers.js";
|
|
10
|
-
import { NetworkInformation as A } from "./classes/Utils/NetworkInformation/NetworkInformation.js";
|
|
11
|
-
import { NetworkInformationPC as S } from "./classes/Utils/NetworkInformation/classes/NetworkInformationPC.js";
|
|
12
|
-
import { NetworkInformationAbstract as v } from "./classes/Utils/NetworkInformation/classes/types/types.abscruct.js";
|
|
13
|
-
import { NetworkInformationCordova as T } from "./classes/Utils/NetworkInformation/classes/NetworkInformationCordova.js";
|
|
1
|
+
import { Color as t } from "./classes/Color/Color.es.js";
|
|
2
|
+
import { DateProcessing as m } from "./classes/DateProcessing/DateProcessing.es.js";
|
|
3
|
+
import { DelaysPromise as p } from "./classes/DelaysPromise/DelaysPromise.es.js";
|
|
4
|
+
import { File as i } from "./classes/File/File.es.js";
|
|
5
|
+
import { HTTPSApi as s } from "./classes/HTTPSApi/HTTPSApi.es.js";
|
|
6
|
+
import { Numbers as k } from "./classes/Numbers/Numbers.es.js";
|
|
7
|
+
import { SocketApi as b } from "./classes/SocketApi/SocketApi.es.js";
|
|
8
|
+
import { Utils as l } from "./classes/Utils/Utils.es.js";
|
|
9
|
+
import { EventSubscribers as I } from "./classes/Utils/EventSubscribers/EventSubscribers.es.js";
|
|
10
|
+
import { NetworkInformation as A } from "./classes/Utils/NetworkInformation/NetworkInformation.es.js";
|
|
11
|
+
import { NetworkInformationPC as S } from "./classes/Utils/NetworkInformation/classes/NetworkInformationPC.es.js";
|
|
12
|
+
import { NetworkInformationAbstract as v } from "./classes/Utils/NetworkInformation/classes/types/types.abscruct.es.js";
|
|
13
|
+
import { NetworkInformationCordova as T } from "./classes/Utils/NetworkInformation/classes/NetworkInformationCordova.es.js";
|
|
14
14
|
export {
|
|
15
15
|
t as Color,
|
|
16
16
|
m as DateProcessing,
|
package/package.json
CHANGED
|
@@ -11,14 +11,17 @@
|
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://github.com/SinGlEBW/dev-classes#readme",
|
|
13
13
|
"license": "MIT",
|
|
14
|
-
"version": "1.3.
|
|
14
|
+
"version": "1.3.8",
|
|
15
15
|
"type": "module",
|
|
16
|
-
"module": "
|
|
17
|
-
"main": "
|
|
18
|
-
"types": "
|
|
16
|
+
"module": "dist/index.es.js",
|
|
17
|
+
"main": "dist/index.es.js",
|
|
18
|
+
"types": "dist/index.d.ts",
|
|
19
|
+
"typings": "",
|
|
19
20
|
"files": [
|
|
20
21
|
"dist"
|
|
21
22
|
],
|
|
23
|
+
|
|
24
|
+
|
|
22
25
|
"publishConfig": {
|
|
23
26
|
"directory": "dist"
|
|
24
27
|
},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/classes/HTTPSApi/deps/apiRequest/SaveRequest/{SaveRequest.js → SaveRequest.es.js}
RENAMED
|
File without changes
|
/package/dist/classes/HTTPSApi/deps/apiRequest/types/{apiRequest.types.js → apiRequest.types.es.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/classes/Utils/NetworkInformation/{NetworkInformation.js → NetworkInformation.es.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|