reykit 1.0.168 → 1.0.169
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 +12 -2
- package/dist/src/index.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -50116,7 +50116,15 @@ const Sk = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
50116
50116
|
PATTERN_IP: Ek,
|
|
50117
50117
|
PATTERN_PHONE: Ck,
|
|
50118
50118
|
PATTERN_URL: Rk
|
|
50119
|
-
}, Symbol.toStringTag, { value: "Module" }))
|
|
50119
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
50120
|
+
function Nk() {
|
|
50121
|
+
const a = /* @__PURE__ */ new Date();
|
|
50122
|
+
return a.getFullYear() + "-" + String(a.getMonth() + 1).padStart(2, "0") + "-" + String(a.getDate()).padStart(2, "0") + "T" + String(a.getHours()).padStart(2, "0") + ":" + String(a.getMinutes()).padStart(2, "0");
|
|
50123
|
+
}
|
|
50124
|
+
const Mk = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
50125
|
+
__proto__: null,
|
|
50126
|
+
datetimeLocal: Nk
|
|
50127
|
+
}, Symbol.toStringTag, { value: "Module" })), Xk = {
|
|
50120
50128
|
component: fk,
|
|
50121
50129
|
ui: C4,
|
|
50122
50130
|
base: pk,
|
|
@@ -50125,6 +50133,7 @@ const Sk = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
50125
50133
|
net: Sk,
|
|
50126
50134
|
re: wk,
|
|
50127
50135
|
react: Xj,
|
|
50136
|
+
time: Mk,
|
|
50128
50137
|
twc: C6,
|
|
50129
50138
|
window: hk
|
|
50130
50139
|
};
|
|
@@ -50132,11 +50141,12 @@ export {
|
|
|
50132
50141
|
pk as base,
|
|
50133
50142
|
fk as component,
|
|
50134
50143
|
lk as data,
|
|
50135
|
-
|
|
50144
|
+
Xk as default,
|
|
50136
50145
|
bk as image,
|
|
50137
50146
|
Sk as net,
|
|
50138
50147
|
wk as re,
|
|
50139
50148
|
Xj as react,
|
|
50149
|
+
Mk as time,
|
|
50140
50150
|
C6 as twc,
|
|
50141
50151
|
C4 as ui,
|
|
50142
50152
|
hk as window
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { base, data, image, net, re, react, twc, window } from './lib';
|
|
1
|
+
import { base, data, image, net, re, react, time, twc, window } from './lib';
|
|
2
2
|
/**
|
|
3
3
|
* @Time : 2026-03-11
|
|
4
4
|
* @Author : Rey
|
|
@@ -16,8 +16,9 @@ declare const _default: {
|
|
|
16
16
|
net: typeof net;
|
|
17
17
|
re: typeof re;
|
|
18
18
|
react: typeof react;
|
|
19
|
+
time: typeof time;
|
|
19
20
|
twc: typeof twc;
|
|
20
21
|
window: typeof window;
|
|
21
22
|
};
|
|
22
23
|
export default _default;
|
|
23
|
-
export { component, ui, base, data, image, net, re, react, twc, window };
|
|
24
|
+
export { component, ui, base, data, image, net, re, react, time, twc, window };
|