reykit 1.0.52 → 1.0.53
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/index.d.ts +2 -0
- package/dist/index.js +10 -6
- package/dist/sys.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import * as base from './base';
|
|
|
3
3
|
import * as net from './net';
|
|
4
4
|
import * as re from './re';
|
|
5
5
|
import * as react from './react';
|
|
6
|
+
import * as sys from './sys';
|
|
6
7
|
import * as tailwindcss from './tailwindcss';
|
|
7
8
|
import * as window from './window';
|
|
8
9
|
declare const _default: {
|
|
@@ -11,6 +12,7 @@ declare const _default: {
|
|
|
11
12
|
net: typeof net;
|
|
12
13
|
re: typeof re;
|
|
13
14
|
react: typeof react;
|
|
15
|
+
sys: typeof sys;
|
|
14
16
|
tailwindcss: typeof tailwindcss;
|
|
15
17
|
window: typeof window;
|
|
16
18
|
};
|
package/dist/index.js
CHANGED
|
@@ -27643,8 +27643,11 @@ const HE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
27643
27643
|
PATTERN_IP: BE,
|
|
27644
27644
|
PATTERN_PHONE: qE,
|
|
27645
27645
|
PATTERN_URL: NE
|
|
27646
|
+
}, Symbol.toStringTag, { value: "Module" })), GE = { BASE_URL: "/", DEV: !1, MODE: "production", PROD: !0, SSR: !1 }, XE = GE, QE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27647
|
+
__proto__: null,
|
|
27648
|
+
env: XE
|
|
27646
27649
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27647
|
-
class
|
|
27650
|
+
class VE {
|
|
27648
27651
|
/**
|
|
27649
27652
|
* Build instance.
|
|
27650
27653
|
*
|
|
@@ -27736,18 +27739,19 @@ class GE {
|
|
|
27736
27739
|
this.set(I, !R);
|
|
27737
27740
|
}
|
|
27738
27741
|
}
|
|
27739
|
-
const
|
|
27742
|
+
const ZE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27740
27743
|
__proto__: null,
|
|
27741
|
-
Storager:
|
|
27742
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
27744
|
+
Storager: VE
|
|
27745
|
+
}, Symbol.toStringTag, { value: "Module" })), WE = {
|
|
27743
27746
|
component: UE,
|
|
27744
27747
|
base: _E,
|
|
27745
27748
|
net: HE,
|
|
27746
27749
|
re: jE,
|
|
27747
27750
|
react: zE,
|
|
27751
|
+
sys: QE,
|
|
27748
27752
|
tailwindcss: ME,
|
|
27749
|
-
window:
|
|
27753
|
+
window: ZE
|
|
27750
27754
|
};
|
|
27751
27755
|
export {
|
|
27752
|
-
|
|
27756
|
+
WE as default
|
|
27753
27757
|
};
|
package/dist/sys.d.ts
ADDED