reykit 1.0.54 → 1.0.55
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.js +15 -9
- package/dist/sys.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27647,11 +27647,17 @@ const HE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
27647
27647
|
function XE() {
|
|
27648
27648
|
return GE;
|
|
27649
27649
|
}
|
|
27650
|
-
const QE =
|
|
27650
|
+
const QE = 1;
|
|
27651
|
+
function VE() {
|
|
27652
|
+
return 2;
|
|
27653
|
+
}
|
|
27654
|
+
const ZE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27651
27655
|
__proto__: null,
|
|
27652
|
-
getEnv: XE
|
|
27656
|
+
getEnv: XE,
|
|
27657
|
+
test: QE,
|
|
27658
|
+
testFunc: VE
|
|
27653
27659
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27654
|
-
class
|
|
27660
|
+
class LE {
|
|
27655
27661
|
/**
|
|
27656
27662
|
* Build instance.
|
|
27657
27663
|
*
|
|
@@ -27743,19 +27749,19 @@ class VE {
|
|
|
27743
27749
|
this.set(I, !R);
|
|
27744
27750
|
}
|
|
27745
27751
|
}
|
|
27746
|
-
const
|
|
27752
|
+
const wE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27747
27753
|
__proto__: null,
|
|
27748
|
-
Storager:
|
|
27749
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
27754
|
+
Storager: LE
|
|
27755
|
+
}, Symbol.toStringTag, { value: "Module" })), kE = {
|
|
27750
27756
|
component: UE,
|
|
27751
27757
|
base: _E,
|
|
27752
27758
|
net: HE,
|
|
27753
27759
|
re: jE,
|
|
27754
27760
|
react: zE,
|
|
27755
|
-
sys:
|
|
27761
|
+
sys: ZE,
|
|
27756
27762
|
tailwindcss: ME,
|
|
27757
|
-
window:
|
|
27763
|
+
window: wE
|
|
27758
27764
|
};
|
|
27759
27765
|
export {
|
|
27760
|
-
|
|
27766
|
+
kE as default
|
|
27761
27767
|
};
|
package/dist/sys.d.ts
CHANGED