@weng-lab/ui-components 1.0.14 → 1.0.15
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/{get-context-DzbWc_WE.js → get-context-BgKx-1Dr.js} +2 -2
- package/dist/{get-context-DzbWc_WE.js.map → get-context-BgKx-1Dr.js.map} +1 -1
- package/dist/{index-CGYc08bh.js → index-Cyw0rrOH.js} +52 -49
- package/dist/{index-CGYc08bh.js.map → index-Cyw0rrOH.js.map} +1 -1
- package/dist/src/components/Table/CustomToolbar.d.ts +4 -3
- package/dist/src/components/Table/CustomToolbar.d.ts.map +1 -1
- package/dist/src/components/Table/Table.d.ts.map +1 -1
- package/dist/src/components/Table/types.d.ts +12 -1
- package/dist/src/components/Table/types.d.ts.map +1 -1
- package/dist/ui-components.es.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as f } from "./index-
|
|
1
|
+
import { _ as f } from "./index-Cyw0rrOH.js";
|
|
2
2
|
const o = {
|
|
3
3
|
config: {
|
|
4
4
|
isInitialized: !1
|
|
@@ -75,4 +75,4 @@ async function I() {
|
|
|
75
75
|
export {
|
|
76
76
|
I as default
|
|
77
77
|
};
|
|
78
|
-
//# sourceMappingURL=get-context-
|
|
78
|
+
//# sourceMappingURL=get-context-BgKx-1Dr.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-context-
|
|
1
|
+
{"version":3,"file":"get-context-BgKx-1Dr.js","sources":["../../../node_modules/.pnpm/@mui+x-telemetry@8.5.3/node_modules/@mui/x-telemetry/esm/context.js","../../../node_modules/.pnpm/@mui+x-telemetry@8.5.3/node_modules/@mui/x-telemetry/esm/runtime/window-storage.js","../../../node_modules/.pnpm/@mui+x-telemetry@8.5.3/node_modules/@mui/x-telemetry/esm/runtime/get-context.js"],"sourcesContent":["// This file will be modified by the `postinstall` script.\n// See postinstall/index.ts for more information.\n\nconst defaultValue = {\n config: {\n isInitialized: false\n },\n traits: {}\n};\nexport default defaultValue;","const prefix = '__mui_x_telemetry_';\nfunction getStorageKey(key) {\n return prefix + btoa(key);\n}\nexport function setWindowStorageItem(type, key, value) {\n try {\n if (typeof window !== 'undefined' && window[type]) {\n window[type].setItem(getStorageKey(key), value);\n return true;\n }\n } catch (_) {\n // Storage is unavailable, skip it\n }\n return false;\n}\nexport function getWindowStorageItem(type, key) {\n try {\n if (typeof window !== 'undefined' && window[type]) {\n return window[type].getItem(getStorageKey(key));\n }\n } catch (_) {\n // Storage is unavailable, skip it\n }\n return null;\n}","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport telemetryContext from \"../context.js\";\nimport { getWindowStorageItem, setWindowStorageItem } from \"./window-storage.js\";\nfunction generateId(length) {\n let result = '';\n const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\n const charactersLength = characters.length;\n let counter = 0;\n while (counter < length) {\n result += characters.charAt(Math.floor(Math.random() * charactersLength));\n counter += 1;\n }\n return result;\n}\nfunction pick(obj, keys) {\n return keys.reduce((acc, key) => {\n acc[key] = obj[key];\n return acc;\n }, {});\n}\nconst getBrowserFingerprint = typeof window === 'undefined' || process.env.NODE_ENV === 'test' ? () => undefined : async () => {\n const fingerprintLCKey = 'fingerprint';\n try {\n const existingFingerprint = getWindowStorageItem('localStorage', fingerprintLCKey);\n if (existingFingerprint) {\n return JSON.parse(existingFingerprint);\n }\n const FingerprintJS = await import('@fingerprintjs/fingerprintjs');\n const fp = await FingerprintJS.load({\n monitoring: false\n });\n const fpResult = await fp.get();\n const components = _extends({}, fpResult.components);\n delete components.cookiesEnabled;\n const fullHash = FingerprintJS.hashComponents(components);\n const coreHash = FingerprintJS.hashComponents(_extends({}, pick(components, ['fonts', 'audio', 'languages', 'deviceMemory', 'timezone', 'sessionStorage', 'localStorage', 'indexedDB', 'openDatabase', 'platform', 'canvas', 'vendor', 'vendorFlavors', 'colorGamut', 'forcedColors', 'monochrome', 'contrast', 'reducedMotion', 'math', 'videoCard', 'architecture'])));\n const result = {\n fullHash,\n coreHash\n };\n setWindowStorageItem('localStorage', fingerprintLCKey, JSON.stringify(result));\n return result;\n } catch (_) {\n return null;\n }\n};\nfunction getAnonymousId() {\n const localStorageKey = 'anonymous_id';\n const existingAnonymousId = getWindowStorageItem('localStorage', localStorageKey);\n if (existingAnonymousId) {\n return existingAnonymousId;\n }\n const generated = `anid_${generateId(32)}`;\n if (setWindowStorageItem('localStorage', localStorageKey, generated)) {\n return generated;\n }\n return '';\n}\nfunction getSessionId() {\n const localStorageKey = 'session_id';\n const existingSessionId = getWindowStorageItem('sessionStorage', localStorageKey);\n if (existingSessionId) {\n return existingSessionId;\n }\n const generated = `sesid_${generateId(32)}`;\n if (setWindowStorageItem('sessionStorage', localStorageKey, generated)) {\n return generated;\n }\n return `sestp_${generateId(32)}`;\n}\nasync function getTelemetryContext() {\n telemetryContext.traits.sessionId = getSessionId();\n\n // Initialize the context if it hasn't been initialized yet\n // (e.g. postinstall not run)\n if (!telemetryContext.config.isInitialized) {\n telemetryContext.traits.anonymousId = getAnonymousId();\n telemetryContext.config.isInitialized = true;\n }\n if (!telemetryContext.traits.fingerprint) {\n telemetryContext.traits.fingerprint = await getBrowserFingerprint();\n }\n return telemetryContext;\n}\nexport default getTelemetryContext;"],"names":["defaultValue","prefix","getStorageKey","key","setWindowStorageItem","type","value","getWindowStorageItem","generateId","length","result","characters","charactersLength","counter","pick","obj","keys","acc","getBrowserFingerprint","fingerprintLCKey","existingFingerprint","FingerprintJS","fpResult","components","_extends","fullHash","coreHash","getAnonymousId","localStorageKey","existingAnonymousId","generated","getSessionId","existingSessionId","getTelemetryContext","telemetryContext"],"mappings":"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","x_google_ignoreList":[0,1,2]}
|
|
@@ -33346,7 +33346,7 @@ async function gj(e) {
|
|
|
33346
33346
|
return;
|
|
33347
33347
|
const {
|
|
33348
33348
|
default: t
|
|
33349
|
-
} = await import("./get-context-
|
|
33349
|
+
} = await import("./get-context-BgKx-1Dr.js"), o = await t();
|
|
33350
33350
|
if (!e || !hj(o))
|
|
33351
33351
|
return;
|
|
33352
33352
|
const r = E({}, e, {
|
|
@@ -47801,34 +47801,35 @@ const EG = mV, Dm = ({ message: e, variant: t }) => /* @__PURE__ */ b.jsxs(fu, {
|
|
|
47801
47801
|
opacity: t.expanded ? 1 : 0,
|
|
47802
47802
|
transition: e.transitions.create(["width", "opacity"])
|
|
47803
47803
|
}));
|
|
47804
|
-
function DG({ label: e,
|
|
47805
|
-
const [
|
|
47804
|
+
function DG({ label: e, downloadFileName: t, labelTooltip: o, toolbarSlot: r, ...s }) {
|
|
47805
|
+
const [i, l] = p.useState(!1), a = p.useRef(null);
|
|
47806
47806
|
return /* @__PURE__ */ b.jsxs(pl, { children: [
|
|
47807
|
+
typeof e != "string" && e,
|
|
47807
47808
|
/* @__PURE__ */ b.jsxs(wn, { fontWeight: "medium", sx: { flex: 1, mx: 0.5, display: "flex", alignItems: "center", gap: 1 }, children: [
|
|
47808
|
-
e,
|
|
47809
|
-
|
|
47809
|
+
typeof e == "string" && e,
|
|
47810
|
+
o && (typeof o == "string" || typeof o == "number") ? /* @__PURE__ */ b.jsx(Io, { title: o, children: /* @__PURE__ */ b.jsx(cx, { fontSize: "inherit", color: "primary" }) }) : o
|
|
47810
47811
|
] }),
|
|
47811
|
-
|
|
47812
|
-
|
|
47812
|
+
r && /* @__PURE__ */ b.jsxs(b.Fragment, { children: [
|
|
47813
|
+
r,
|
|
47813
47814
|
/* @__PURE__ */ b.jsx(Ts, { orientation: "vertical", variant: "middle", flexItem: !0, sx: { mx: 0.5 } })
|
|
47814
47815
|
] }),
|
|
47815
47816
|
/* @__PURE__ */ b.jsx(Io, { title: "Columns", children: /* @__PURE__ */ b.jsx(xc, { render: /* @__PURE__ */ b.jsx(mo, {}), children: /* @__PURE__ */ b.jsx(PG, { fontSize: "small" }) }) }),
|
|
47816
47817
|
/* @__PURE__ */ b.jsx(Io, { title: "Filters", children: /* @__PURE__ */ b.jsx(
|
|
47817
47818
|
wc,
|
|
47818
47819
|
{
|
|
47819
|
-
render: (
|
|
47820
|
+
render: (c, u) => /* @__PURE__ */ b.jsx(mo, { ...c, color: "default", children: /* @__PURE__ */ b.jsx(nf, { badgeContent: u.filterCount, color: "primary", variant: "dot", children: /* @__PURE__ */ b.jsx(TG, { fontSize: "small" }) }) })
|
|
47820
47821
|
}
|
|
47821
47822
|
) }),
|
|
47822
47823
|
/* @__PURE__ */ b.jsx(Ts, { orientation: "vertical", variant: "middle", flexItem: !0, sx: { mx: 0.5 } }),
|
|
47823
47824
|
/* @__PURE__ */ b.jsx(Io, { title: "Export", children: /* @__PURE__ */ b.jsx(
|
|
47824
47825
|
mo,
|
|
47825
47826
|
{
|
|
47826
|
-
ref:
|
|
47827
|
+
ref: a,
|
|
47827
47828
|
id: "export-menu-trigger",
|
|
47828
47829
|
"aria-controls": "export-menu",
|
|
47829
47830
|
"aria-haspopup": "true",
|
|
47830
|
-
"aria-expanded":
|
|
47831
|
-
onClick: () =>
|
|
47831
|
+
"aria-expanded": i ? "true" : void 0,
|
|
47832
|
+
onClick: () => l(!0),
|
|
47832
47833
|
children: /* @__PURE__ */ b.jsx(IG, { fontSize: "small" })
|
|
47833
47834
|
}
|
|
47834
47835
|
) }),
|
|
@@ -47836,9 +47837,9 @@ function DG({ label: e, labelTooltip: t, toolbarSlot: o, ...r }) {
|
|
|
47836
47837
|
Od,
|
|
47837
47838
|
{
|
|
47838
47839
|
id: "export-menu",
|
|
47839
|
-
anchorEl:
|
|
47840
|
-
open:
|
|
47841
|
-
onClose: () =>
|
|
47840
|
+
anchorEl: a.current,
|
|
47841
|
+
open: i,
|
|
47842
|
+
onClose: () => l(!1),
|
|
47842
47843
|
anchorOrigin: { vertical: "bottom", horizontal: "right" },
|
|
47843
47844
|
transformOrigin: { vertical: "top", horizontal: "right" },
|
|
47844
47845
|
slotProps: {
|
|
@@ -47847,8 +47848,8 @@ function DG({ label: e, labelTooltip: t, toolbarSlot: o, ...r }) {
|
|
|
47847
47848
|
}
|
|
47848
47849
|
},
|
|
47849
47850
|
children: [
|
|
47850
|
-
/* @__PURE__ */ b.jsx(Ec, { options: { ...
|
|
47851
|
-
/* @__PURE__ */ b.jsx(Sc, { options: { fileName: e, ...
|
|
47851
|
+
/* @__PURE__ */ b.jsx(Ec, { options: { ...s.printOptions }, render: /* @__PURE__ */ b.jsx(Is, {}), onClick: () => l(!1), children: "Print" }),
|
|
47852
|
+
/* @__PURE__ */ b.jsx(Sc, { options: { fileName: typeof e == "string" ? e : t, ...s.csvOptions }, render: /* @__PURE__ */ b.jsx(Is, {}), onClick: () => l(!1), children: "Download as CSV" })
|
|
47852
47853
|
]
|
|
47853
47854
|
}
|
|
47854
47855
|
),
|
|
@@ -47856,13 +47857,13 @@ function DG({ label: e, labelTooltip: t, toolbarSlot: o, ...r }) {
|
|
|
47856
47857
|
/* @__PURE__ */ b.jsx(
|
|
47857
47858
|
vc,
|
|
47858
47859
|
{
|
|
47859
|
-
render: (
|
|
47860
|
+
render: (c, u) => /* @__PURE__ */ b.jsx(Io, { title: "Search", enterDelay: 0, children: /* @__PURE__ */ b.jsx(
|
|
47860
47861
|
MG,
|
|
47861
47862
|
{
|
|
47862
|
-
...
|
|
47863
|
-
ownerState: { expanded:
|
|
47863
|
+
...c,
|
|
47864
|
+
ownerState: { expanded: u.expanded },
|
|
47864
47865
|
color: "default",
|
|
47865
|
-
"aria-disabled":
|
|
47866
|
+
"aria-disabled": u.expanded,
|
|
47866
47867
|
children: /* @__PURE__ */ b.jsx(Iu, { fontSize: "small" })
|
|
47867
47868
|
}
|
|
47868
47869
|
) })
|
|
@@ -47871,19 +47872,19 @@ function DG({ label: e, labelTooltip: t, toolbarSlot: o, ...r }) {
|
|
|
47871
47872
|
/* @__PURE__ */ b.jsx(
|
|
47872
47873
|
yc,
|
|
47873
47874
|
{
|
|
47874
|
-
render: ({ ref:
|
|
47875
|
+
render: ({ ref: c, ...u }, d) => /* @__PURE__ */ b.jsx(
|
|
47875
47876
|
kG,
|
|
47876
47877
|
{
|
|
47877
|
-
...
|
|
47878
|
-
ownerState: { expanded:
|
|
47879
|
-
inputRef:
|
|
47878
|
+
...u,
|
|
47879
|
+
ownerState: { expanded: d.expanded },
|
|
47880
|
+
inputRef: c,
|
|
47880
47881
|
"aria-label": "Search",
|
|
47881
47882
|
placeholder: "Search...",
|
|
47882
47883
|
size: "small",
|
|
47883
47884
|
slotProps: {
|
|
47884
47885
|
input: {
|
|
47885
47886
|
startAdornment: /* @__PURE__ */ b.jsx(Pa, { position: "start", children: /* @__PURE__ */ b.jsx(Iu, { fontSize: "small" }) }),
|
|
47886
|
-
endAdornment:
|
|
47887
|
+
endAdornment: d.value ? /* @__PURE__ */ b.jsx(Pa, { position: "end", children: /* @__PURE__ */ b.jsx(
|
|
47887
47888
|
Cc,
|
|
47888
47889
|
{
|
|
47889
47890
|
edge: "end",
|
|
@@ -47893,9 +47894,9 @@ function DG({ label: e, labelTooltip: t, toolbarSlot: o, ...r }) {
|
|
|
47893
47894
|
children: /* @__PURE__ */ b.jsx(OG, { fontSize: "small" })
|
|
47894
47895
|
}
|
|
47895
47896
|
) }) : null,
|
|
47896
|
-
...
|
|
47897
|
+
...u.slotProps?.input
|
|
47897
47898
|
},
|
|
47898
|
-
...
|
|
47899
|
+
...u.slotProps
|
|
47899
47900
|
}
|
|
47900
47901
|
}
|
|
47901
47902
|
)
|
|
@@ -47920,31 +47921,33 @@ const r2 = (e) => {
|
|
|
47920
47921
|
slots: h = {},
|
|
47921
47922
|
label: m,
|
|
47922
47923
|
labelTooltip: y,
|
|
47923
|
-
|
|
47924
|
-
|
|
47925
|
-
|
|
47926
|
-
|
|
47924
|
+
downloadFileName: g,
|
|
47925
|
+
toolbarSlot: w,
|
|
47926
|
+
...x
|
|
47927
|
+
} = e, v = ms(() => {
|
|
47928
|
+
const O = {
|
|
47927
47929
|
label: m,
|
|
47930
|
+
downloadFileName: g,
|
|
47928
47931
|
labelTooltip: y,
|
|
47929
|
-
toolbarSlot:
|
|
47932
|
+
toolbarSlot: w
|
|
47930
47933
|
};
|
|
47931
|
-
return (
|
|
47932
|
-
}, [m, y,
|
|
47933
|
-
() => s.map((
|
|
47934
|
+
return (C) => /* @__PURE__ */ b.jsx(DG, { ...C, ...O });
|
|
47935
|
+
}, [m, y, w]), S = ms(
|
|
47936
|
+
() => s.map((O, C) => ({ ...O, id: O?.id || C })),
|
|
47934
47937
|
[s]
|
|
47935
|
-
),
|
|
47938
|
+
), I = ms(
|
|
47936
47939
|
() => ({
|
|
47937
47940
|
expand: !0,
|
|
47938
47941
|
includeHeaders: !0,
|
|
47939
47942
|
outliersFactor: 1.5
|
|
47940
47943
|
}),
|
|
47941
47944
|
[]
|
|
47942
|
-
),
|
|
47943
|
-
|
|
47944
|
-
}, [
|
|
47945
|
+
), P = EG(), M = i ?? P, D = br(() => {
|
|
47946
|
+
M.current?.autosizeColumns && M.current.autosizeColumns(I);
|
|
47947
|
+
}, [M, I]);
|
|
47945
47948
|
return Oo(() => {
|
|
47946
|
-
|
|
47947
|
-
}, [s, o,
|
|
47949
|
+
D();
|
|
47950
|
+
}, [s, o, D]), a && S.length === 0 && !x.loading ? typeof a == "string" ? /* @__PURE__ */ b.jsx(Dm, { message: a, variant: "empty" }) : a : f ? /* @__PURE__ */ b.jsx(Dm, { message: `Error fetching ${m}`, variant: "error" }) : /* @__PURE__ */ b.jsx(
|
|
47948
47951
|
"div",
|
|
47949
47952
|
{
|
|
47950
47953
|
style: {
|
|
@@ -47956,14 +47959,14 @@ const r2 = (e) => {
|
|
|
47956
47959
|
children: /* @__PURE__ */ b.jsx(
|
|
47957
47960
|
Hw,
|
|
47958
47961
|
{
|
|
47959
|
-
apiRef:
|
|
47962
|
+
apiRef: M,
|
|
47960
47963
|
columns: o,
|
|
47961
|
-
rows:
|
|
47964
|
+
rows: S,
|
|
47962
47965
|
autosizeOnMount: !0,
|
|
47963
|
-
onResize: (
|
|
47964
|
-
l && l(
|
|
47966
|
+
onResize: (O, C, R) => {
|
|
47967
|
+
l && l(O, C, R), D();
|
|
47965
47968
|
},
|
|
47966
|
-
autosizeOptions:
|
|
47969
|
+
autosizeOptions: I,
|
|
47967
47970
|
disableRowSelectionOnClick: !0,
|
|
47968
47971
|
showToolbar: c,
|
|
47969
47972
|
density: r,
|
|
@@ -47974,10 +47977,10 @@ const r2 = (e) => {
|
|
|
47974
47977
|
...d
|
|
47975
47978
|
},
|
|
47976
47979
|
slots: {
|
|
47977
|
-
toolbar:
|
|
47980
|
+
toolbar: v,
|
|
47978
47981
|
...h
|
|
47979
47982
|
},
|
|
47980
|
-
...
|
|
47983
|
+
...x
|
|
47981
47984
|
}
|
|
47982
47985
|
)
|
|
47983
47986
|
}
|
|
@@ -50468,4 +50471,4 @@ export {
|
|
|
50468
50471
|
KN as y,
|
|
50469
50472
|
Tp as z
|
|
50470
50473
|
};
|
|
50471
|
-
//# sourceMappingURL=index-
|
|
50474
|
+
//# sourceMappingURL=index-Cyw0rrOH.js.map
|