reykit 1.0.57 → 1.0.59
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 -4
- package/dist/index.js +7 -15
- package/package.json +1 -1
- package/dist/sys.d.ts +0 -12
- /package/dist/{tailwindcss.d.ts → twc.d.ts} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -3,8 +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
|
|
7
|
-
import * as tailwindcss from './tailwindcss';
|
|
6
|
+
import * as twc from './twc';
|
|
8
7
|
import * as window from './window';
|
|
9
8
|
declare const _default: {
|
|
10
9
|
component: typeof component;
|
|
@@ -12,8 +11,7 @@ declare const _default: {
|
|
|
12
11
|
net: typeof net;
|
|
13
12
|
re: typeof re;
|
|
14
13
|
react: typeof react;
|
|
15
|
-
|
|
16
|
-
tailwindcss: typeof tailwindcss;
|
|
14
|
+
twc: typeof twc;
|
|
17
15
|
window: typeof window;
|
|
18
16
|
};
|
|
19
17
|
export default _default;
|
package/dist/index.js
CHANGED
|
@@ -27643,15 +27643,8 @@ 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 };
|
|
27647
|
-
function XE() {
|
|
27648
|
-
return GE;
|
|
27649
|
-
}
|
|
27650
|
-
const QE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27651
|
-
__proto__: null,
|
|
27652
|
-
getEnv: XE
|
|
27653
27646
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27654
|
-
class
|
|
27647
|
+
class GE {
|
|
27655
27648
|
/**
|
|
27656
27649
|
* Build instance.
|
|
27657
27650
|
*
|
|
@@ -27743,19 +27736,18 @@ class VE {
|
|
|
27743
27736
|
this.set(I, !R);
|
|
27744
27737
|
}
|
|
27745
27738
|
}
|
|
27746
|
-
const
|
|
27739
|
+
const XE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27747
27740
|
__proto__: null,
|
|
27748
|
-
Storager:
|
|
27749
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
27741
|
+
Storager: GE
|
|
27742
|
+
}, Symbol.toStringTag, { value: "Module" })), JE = {
|
|
27750
27743
|
component: UE,
|
|
27751
27744
|
base: _E,
|
|
27752
27745
|
net: HE,
|
|
27753
27746
|
re: jE,
|
|
27754
27747
|
react: zE,
|
|
27755
|
-
|
|
27756
|
-
|
|
27757
|
-
window: ZE
|
|
27748
|
+
twc: ME,
|
|
27749
|
+
window: XE
|
|
27758
27750
|
};
|
|
27759
27751
|
export {
|
|
27760
|
-
|
|
27752
|
+
JE as default
|
|
27761
27753
|
};
|
package/package.json
CHANGED
package/dist/sys.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @Time : 2026-03-15
|
|
3
|
-
* @Author : Rey
|
|
4
|
-
* @Contact : reyxbo@163.com
|
|
5
|
-
* @Explain : System methods.
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* Get environment variable dictionary of within then `Vite` frameework.
|
|
9
|
-
*
|
|
10
|
-
* @returns Environment dictionary
|
|
11
|
-
*/
|
|
12
|
-
export declare function getEnv(): Record<string, string>;
|
|
File without changes
|