wcz-test 6.24.7 → 6.24.8
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/ApprovalStatus-lESbUD_x.js +6 -0
- package/dist/DialogsContext-2Yy6yhzQ.js +5 -0
- package/dist/DialogsHooks-DWkC9zAf.js +113 -0
- package/dist/FileHooks-kGkVKOf9.js +2694 -0
- package/dist/FileMeta-Bzeo3ie9.js +17 -0
- package/dist/RouterListItemButton-C_SG0uka.js +17 -0
- package/dist/_commonjsHelpers-DaMA6jEr.js +8 -0
- package/dist/client.js +8 -9
- package/dist/components.js +632 -1454
- package/dist/env-4ZoUrNqp.js +27 -0
- package/dist/exports/server.d.ts +0 -3
- package/dist/hooks.js +371 -985
- package/dist/index.js +1580 -2940
- package/dist/models.js +147 -164
- package/dist/queries.js +519 -911
- package/dist/queryClient--EvGPhnh.js +5 -0
- package/dist/server.js +40 -63
- package/dist/session-7yb0BETM.js +75 -0
- package/dist/{chunks/utils-MD9YwOtu.js → utils-CZraUjBd.js} +24 -34
- package/dist/utils.js +6 -7
- package/dist/vite.js +33 -42
- package/package.json +3 -6
- package/dist/chunks/ApprovalStatus-BtAVFn5p.js +0 -8
- package/dist/chunks/ApprovalStatus-BtAVFn5p.js.map +0 -1
- package/dist/chunks/DialogsContext-DoU_8Eeu.js +0 -6
- package/dist/chunks/DialogsContext-DoU_8Eeu.js.map +0 -1
- package/dist/chunks/DialogsHooks-DOT0O_b4.js +0 -278
- package/dist/chunks/DialogsHooks-DOT0O_b4.js.map +0 -1
- package/dist/chunks/FileHooks-DCnXvUtq.js +0 -3554
- package/dist/chunks/FileHooks-DCnXvUtq.js.map +0 -1
- package/dist/chunks/FileMeta-G1oT3mYK.js +0 -18
- package/dist/chunks/FileMeta-G1oT3mYK.js.map +0 -1
- package/dist/chunks/RouterListItemButton-DTYXk1kh.js +0 -35
- package/dist/chunks/RouterListItemButton-DTYXk1kh.js.map +0 -1
- package/dist/chunks/env-gsqZ6zZD.js +0 -30
- package/dist/chunks/env-gsqZ6zZD.js.map +0 -1
- package/dist/chunks/queryClient-CNvC95mU.js +0 -6
- package/dist/chunks/queryClient-CNvC95mU.js.map +0 -1
- package/dist/chunks/session-vW7WZadj.js +0 -91
- package/dist/chunks/session-vW7WZadj.js.map +0 -1
- package/dist/chunks/utils-MD9YwOtu.js.map +0 -1
- package/dist/client.js.map +0 -1
- package/dist/components.js.map +0 -1
- package/dist/hooks.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/models.js.map +0 -1
- package/dist/queries.js.map +0 -1
- package/dist/server.js.map +0 -1
- package/dist/utils.js.map +0 -1
- package/dist/vite.js.map +0 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i from "zod";
|
|
2
|
+
const m = i.object({
|
|
3
|
+
id: i.uuid(),
|
|
4
|
+
subId: i.uuid(),
|
|
5
|
+
appName: i.string().trim().min(1).max(255),
|
|
6
|
+
fileName: i.string().trim().min(1).max(255),
|
|
7
|
+
fileExtension: i.string().trim().min(1).max(255),
|
|
8
|
+
fileSize: i.number().min(0),
|
|
9
|
+
mediaSubType: i.string().trim().min(1).max(255),
|
|
10
|
+
mediaType: i.string().trim().min(1).max(255),
|
|
11
|
+
mimeType: i.string().trim().min(1).max(255),
|
|
12
|
+
createdBy: i.string().trim().min(1).max(255),
|
|
13
|
+
createdDate: i.date()
|
|
14
|
+
});
|
|
15
|
+
export {
|
|
16
|
+
m as F
|
|
17
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx as r } from "react/jsx-runtime";
|
|
2
|
+
import { c as i } from "react/compiler-runtime";
|
|
3
|
+
import { ListItemButton as f } from "@mui/material";
|
|
4
|
+
import { createLink as c } from "@tanstack/react-router";
|
|
5
|
+
import u from "react";
|
|
6
|
+
const a = u.forwardRef(function(t, o) {
|
|
7
|
+
const n = i(3);
|
|
8
|
+
let m;
|
|
9
|
+
return n[0] !== t || n[1] !== o ? (m = /* @__PURE__ */ r(f, { ref: o, component: "a", ...t }), n[0] = t, n[1] = o, n[2] = m) : m = n[2], m;
|
|
10
|
+
}), s = c(a), L = (e) => {
|
|
11
|
+
const t = i(2);
|
|
12
|
+
let o;
|
|
13
|
+
return t[0] !== e ? (o = /* @__PURE__ */ r(s, { ...e }), t[0] = e, t[1] = o) : o = t[1], o;
|
|
14
|
+
};
|
|
15
|
+
export {
|
|
16
|
+
L as R
|
|
17
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var o = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
2
|
+
function l(e) {
|
|
3
|
+
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
4
|
+
}
|
|
5
|
+
export {
|
|
6
|
+
o as c,
|
|
7
|
+
l as g
|
|
8
|
+
};
|
package/dist/client.js
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import { t } from "i18next";
|
|
2
|
-
import { useTranslation } from "react-i18next";
|
|
3
|
-
import { P, W, a } from "./
|
|
1
|
+
import { t as a } from "i18next";
|
|
2
|
+
import { useTranslation as R } from "react-i18next";
|
|
3
|
+
import { P as s, W as e, a as f } from "./utils-CZraUjBd.js";
|
|
4
4
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
t,
|
|
9
|
-
useTranslation
|
|
5
|
+
s as Platform,
|
|
6
|
+
e as WISTRON_PRIMARY_COLOR,
|
|
7
|
+
f as WISTRON_SECONDARY_COLOR,
|
|
8
|
+
a as t,
|
|
9
|
+
R as useTranslation
|
|
10
10
|
};
|
|
11
|
-
//# sourceMappingURL=client.js.map
|