zudoku 0.1.1-dev.46 → 0.1.1-dev.47
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/lib/plugins/api-key/SettingsApiKeys.js +1 -1
- package/dist/lib/plugins/api-key/SettingsApiKeys.js.map +1 -1
- package/dist/vite/common.d.ts +1 -1
- package/dist/vite/common.js +4 -1
- package/dist/vite/common.js.map +1 -1
- package/dist/vite/config.js +0 -1
- package/dist/vite/config.js.map +1 -1
- package/lib/clerk-Wslx_mPo.js +19685 -0
- package/lib/zudoku.auth-clerk.js +1 -1
- package/lib/zudoku.plugins.js +9 -7
- package/package.json +1 -1
- package/src/lib/plugins/api-key/SettingsApiKeys.tsx +12 -10
package/lib/zudoku.auth-clerk.js
CHANGED
package/lib/zudoku.plugins.js
CHANGED
|
@@ -347,13 +347,15 @@ const pm = ({
|
|
|
347
347
|
children: [
|
|
348
348
|
/* @__PURE__ */ g.jsxs("div", { className: "flex flex-col gap-1 text-sm", children: [
|
|
349
349
|
o.description ?? o.id,
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
350
|
+
/* @__PURE__ */ g.jsxs("div", { className: "text-muted-foreground text-xs", children: [
|
|
351
|
+
o.createdOn && /* @__PURE__ */ g.jsxs("div", { children: [
|
|
352
|
+
"Created on ",
|
|
353
|
+
new Date(o.createdOn).toLocaleDateString()
|
|
354
|
+
] }),
|
|
355
|
+
o.expiresOn && /* @__PURE__ */ g.jsxs("div", { children: [
|
|
356
|
+
"Expires on ",
|
|
357
|
+
new Date(o.expiresOn).toLocaleDateString()
|
|
358
|
+
] })
|
|
357
359
|
] })
|
|
358
360
|
] }),
|
|
359
361
|
/* @__PURE__ */ g.jsx("div", { className: "items-center flex justify-center", children: /* @__PURE__ */ g.jsx(hm, { apiKey: o.key }) }),
|
package/package.json
CHANGED
|
@@ -58,16 +58,18 @@ export const SettingsApiKeys = ({
|
|
|
58
58
|
>
|
|
59
59
|
<div className="flex flex-col gap-1 text-sm">
|
|
60
60
|
{key.description ?? key.id}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
61
|
+
<div className="text-muted-foreground text-xs">
|
|
62
|
+
{key.createdOn && (
|
|
63
|
+
<div>
|
|
64
|
+
Created on {new Date(key.createdOn).toLocaleDateString()}
|
|
65
|
+
</div>
|
|
66
|
+
)}
|
|
67
|
+
{key.expiresOn && (
|
|
68
|
+
<div>
|
|
69
|
+
Expires on {new Date(key.expiresOn).toLocaleDateString()}
|
|
70
|
+
</div>
|
|
71
|
+
)}
|
|
72
|
+
</div>
|
|
71
73
|
</div>
|
|
72
74
|
<div className="items-center flex justify-center">
|
|
73
75
|
<RevealApiKey apiKey={key.key} />
|