@evolver-fi/evolver-basics-admin-components 0.0.10 → 0.0.19-beta.1
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/ConfirmButton-jayUa8_J.js.map +1 -1
- package/dist/{ExpandMore-CCOUGfS4.js → ExpandMore-CFLBmfHS.js} +2 -2
- package/dist/{ExpandMore-CCOUGfS4.js.map → ExpandMore-CFLBmfHS.js.map} +1 -1
- package/dist/{JwtTokensRoute-DKaxXWe8.js → JwtTokensRoute-CavNQu9F.js} +3 -3
- package/dist/JwtTokensRoute-CavNQu9F.js.map +1 -0
- package/dist/{ScheduledTaskFormRoute-BpHIsRQr.js → ScheduledTaskFormRoute-CnVsqh-c.js} +11 -10
- package/dist/ScheduledTaskFormRoute-CnVsqh-c.js.map +1 -0
- package/dist/SingleLogMessageRoute-B6hkr7rG.js +305 -0
- package/dist/SingleLogMessageRoute-B6hkr7rG.js.map +1 -0
- package/dist/SingleMessageRoute-Bxix2rv7.js +320 -0
- package/dist/SingleMessageRoute-Bxix2rv7.js.map +1 -0
- package/dist/TableMetadataDisplay-DTDUH1KY.js +330 -0
- package/dist/TableMetadataDisplay-DTDUH1KY.js.map +1 -0
- package/dist/{TriggerablesRoute-CHtOEVBR.js → TriggerablesRoute-BY72XS5U.js} +3 -3
- package/dist/TriggerablesRoute-BY72XS5U.js.map +1 -0
- package/dist/{createSvgIcon-DHqCx8A0.js → createSvgIcon-DCKQGUI3.js} +963 -953
- package/dist/createSvgIcon-DCKQGUI3.js.map +1 -0
- package/dist/jwt-tokens/index.js +1 -1
- package/dist/main/index.js +5 -5
- package/dist/message-log/index.js +1 -1
- package/dist/message-sending/index.js +1 -1
- package/dist/{validation-C1lKYJJR.js → parser-CI353PAC.js} +470 -486
- package/dist/parser-CI353PAC.js.map +1 -0
- package/dist/scheduled-tasks/index.js +1 -1
- package/dist/triggerables/index.js +1 -1
- package/dist/types/admin-components/src/common/format.d.ts +1 -0
- package/dist/types/admin-components/src/common/types.d.ts +27 -0
- package/dist/types/admin-components/src/common/validation.d.ts +5 -0
- package/dist/types/admin-components/src/components/filter/EnumSelectFilter.d.ts +11 -0
- package/dist/types/admin-components/src/components/filter/FilterHelperTexts.d.ts +4 -0
- package/dist/types/admin-components/src/components/filter/FilterLink.d.ts +2 -0
- package/dist/types/admin-components/src/components/filter/TextFilter.d.ts +2 -0
- package/dist/types/admin-components/src/components/filter/types.d.ts +20 -0
- package/dist/types/admin-components/src/components/metadata/TableMetadataDisplay.d.ts +2 -0
- package/dist/types/admin-components/src/components/metadata/utils.d.ts +1 -0
- package/dist/types/admin-components/src/components/table/Pagination.d.ts +7 -0
- package/dist/types/admin-components/src/components/table/Table.d.ts +3 -0
- package/dist/types/admin-components/src/components/table/types.d.ts +48 -0
- package/dist/types/admin-components/src/routes/message-log/messageLogColumns.d.ts +3 -0
- package/dist/types/admin-components/src/routes/message-log/types.d.ts +35 -0
- package/dist/types/admin-components/src/routes/message-sending/loader.d.ts +1 -1
- package/dist/types/admin-components/src/routes/message-sending/messageSendingColumns.d.ts +3 -0
- package/dist/types/admin-components/src/routes/message-sending/types.d.ts +41 -0
- package/dist/validation-BRENvwZ0.js +22 -0
- package/dist/validation-BRENvwZ0.js.map +1 -0
- package/package.json +6 -3
- package/dist/ArrowBack-C8PcQDeL.js +0 -161
- package/dist/ArrowBack-C8PcQDeL.js.map +0 -1
- package/dist/JwtTokensRoute-DKaxXWe8.js.map +0 -1
- package/dist/ScheduledTaskFormRoute-BpHIsRQr.js.map +0 -1
- package/dist/SingleLogMessageRoute-i_AbkS5G.js +0 -245
- package/dist/SingleLogMessageRoute-i_AbkS5G.js.map +0 -1
- package/dist/SingleMessageRoute-Dh7BWlPt.js +0 -254
- package/dist/SingleMessageRoute-Dh7BWlPt.js.map +0 -1
- package/dist/TriggerablesRoute-CHtOEVBR.js.map +0 -1
- package/dist/createSvgIcon-DHqCx8A0.js.map +0 -1
- package/dist/validation-C1lKYJJR.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfirmButton-jayUa8_J.js","sources":["
|
|
1
|
+
{"version":3,"file":"ConfirmButton-jayUa8_J.js","sources":["../../node_modules/@evolver-fi/evolver-basics/dist/esm/common/components/ConfirmButton.js"],"sourcesContent":["import { jsx as _jsx } from \"react/jsx-runtime\";\nimport { Button } from '@mui/material';\nimport { useEffect, useState } from 'react';\nconst ConfirmButton = ({ variant, confirmVariant = variant, children, confirmChildren = children, color, confirmColor = color, timeout = 2000, onConfirmed, ...buttonProps }) => {\n const [confirm, setConfirm] = useState(false);\n const onDeleteClick = () => {\n if (confirm) {\n onConfirmed();\n setConfirm(false);\n }\n else\n setConfirm(true);\n };\n useEffect(() => {\n let timer;\n if (confirm) {\n timer = setTimeout(() => setConfirm(false), timeout);\n }\n return () => clearTimeout(timer);\n }, [confirm, timeout]);\n return (_jsx(Button, { variant: confirm ? confirmVariant : variant, color: confirm ? confirmColor : color, onClick: onDeleteClick, ...buttonProps, children: confirm ? confirmChildren : children }));\n};\nexport default ConfirmButton;\n"],"names":["ConfirmButton","variant","confirmVariant","children","confirmChildren","color","confirmColor","timeout","onConfirmed","buttonProps","confirm","setConfirm","useState","onDeleteClick","useEffect","timer","_jsx","Button"],"mappings":";;;AAGK,MAACA,IAAgB,CAAC,EAAE,SAAAC,GAAS,gBAAAC,IAAiBD,GAAS,UAAAE,GAAU,iBAAAC,IAAkBD,GAAU,OAAAE,GAAO,cAAAC,IAAeD,GAAO,SAAAE,IAAU,KAAM,aAAAC,GAAa,GAAGC,QAAkB;AAC7K,QAAM,CAACC,GAASC,CAAU,IAAIC,EAAS,EAAK,GACtCC,IAAgB,MAAM;AACxB,IAAIH,KACAF,EAAa,GACbG,EAAW,EAAK,KAGhBA,EAAW,EAAI;AAAA,EACtB;AACD,SAAAG,EAAU,MAAM;AACZ,QAAIC;AACJ,WAAIL,MACAK,IAAQ,WAAW,MAAMJ,EAAW,EAAK,GAAGJ,CAAO,IAEhD,MAAM,aAAaQ,CAAK;AAAA,EACvC,GAAO,CAACL,GAASH,CAAO,CAAC,GACbS,EAAI,IAACC,GAAQ,EAAE,SAASP,IAAUR,IAAiBD,GAAS,OAAOS,IAAUJ,IAAeD,GAAO,SAASQ,GAAe,GAAGJ,GAAa,UAAUC,IAAUN,IAAkBD,GAAU;AACvM;","x_google_ignoreList":[0]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r, i as a } from "./createSvgIcon-
|
|
1
|
+
import { r, i as a } from "./createSvgIcon-DCKQGUI3.js";
|
|
2
2
|
import { j as t } from "./jsx-runtime-B6kdoens.js";
|
|
3
3
|
var e = {}, o = a;
|
|
4
4
|
Object.defineProperty(e, "__esModule", {
|
|
@@ -11,4 +11,4 @@ u = e.default = (0, i.default)(/* @__PURE__ */ (0, d.jsx)("path", {
|
|
|
11
11
|
export {
|
|
12
12
|
u as d
|
|
13
13
|
};
|
|
14
|
-
//# sourceMappingURL=ExpandMore-
|
|
14
|
+
//# sourceMappingURL=ExpandMore-CFLBmfHS.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ExpandMore-
|
|
1
|
+
{"version":3,"file":"ExpandMore-CFLBmfHS.js","sources":["../../node_modules/@mui/icons-material/ExpandMore.js"],"sourcesContent":["\"use strict\";\n\"use client\";\n\nvar _interopRequireDefault = require(\"@babel/runtime/helpers/interopRequireDefault\");\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _createSvgIcon = _interopRequireDefault(require(\"./utils/createSvgIcon\"));\nvar _jsxRuntime = require(\"react/jsx-runtime\");\nvar _default = exports.default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)(\"path\", {\n d: \"M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6z\"\n}), 'ExpandMore');"],"names":["_interopRequireDefault","require$$0","ExpandMore","default_1","_createSvgIcon","require$$1","_jsxRuntime","require$$2"],"mappings":";;YAGIA,IAAyBC;AAC7B,OAAO,eAAeC,GAAS,cAAc;AAAA,EAC3C,OAAO;AACT,CAAC;AACc,IAAAC,IAAAD,EAAA,UAAG,QACdE,IAAiBJ,EAAuBK,GAAgC,GACxEC,IAAcC;AACHJ,IAAeD,EAAA,cAAOE,EAAe,6BAA2BE,EAAY,KAAK,QAAQ;AAAA,EACtG,GAAG;AACL,CAAC,GAAG,YAAY;","x_google_ignoreList":[0]}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { j as A } from "./jsx-runtime-B6kdoens.js";
|
|
2
2
|
import { getBackendClient as $e } from "@evolver-fi/evolver-basics";
|
|
3
|
-
import { n as nt, T as it, e as ce, c as cr, S as Oe, a as se, p as fe, f as Dr, h as Ze, j as le, k as lr, t as at, l as Mr, m as je, o as Nr, q as jr, s as er, u as ut, v as ot, w as ge, x as dr, y as st, R as ae, z as ct, g as lt, r as Me, i as Ne } from "./createSvgIcon-
|
|
3
|
+
import { n as nt, T as it, e as ce, c as cr, S as Oe, a as se, p as fe, f as Dr, h as Ze, j as le, k as lr, t as at, l as Mr, m as je, o as Nr, q as jr, s as er, u as ut, v as ot, w as ge, x as dr, y as st, R as ae, z as ct, g as lt, r as Me, i as Ne } from "./createSvgIcon-DCKQGUI3.js";
|
|
4
4
|
import { useLayoutEffect as zr, useEffect as G, useContext as rr, useDebugValue as We, useReducer as dt, useMemo as J, useRef as Y, useCallback as ke, useState as ee } from "react";
|
|
5
5
|
import { unstable_batchedUpdates as ft } from "react-dom";
|
|
6
6
|
import { Grid as B, Collapse as fr, Alert as He, TextField as xe, Button as ze, Stack as pe, InputAdornment as vr, IconButton as Ke, Divider as Pe, FormLabel as vt, Accordion as pt, AccordionSummary as ht, Typography as yt, AccordionDetails as gt, CircularProgress as mt, Box as bt, Pagination as St } from "@mui/material";
|
|
7
|
-
import { d as Tt } from "./ExpandMore-
|
|
7
|
+
import { d as Tt } from "./ExpandMore-CFLBmfHS.js";
|
|
8
8
|
import { C as Ot } from "./ConfirmButton-jayUa8_J.js";
|
|
9
9
|
import "axios";
|
|
10
10
|
import { useSearchParams as kt, useNavigation as xt, useRevalidator as wt, useLoaderData as Rt } from "react-router";
|
|
@@ -2331,4 +2331,4 @@ export {
|
|
|
2331
2331
|
qt as g,
|
|
2332
2332
|
mi as l
|
|
2333
2333
|
};
|
|
2334
|
-
//# sourceMappingURL=JwtTokensRoute-
|
|
2334
|
+
//# sourceMappingURL=JwtTokensRoute-CavNQu9F.js.map
|