@argusoft/medplat-form-engine 1.0.0

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 ADDED
@@ -0,0 +1,27 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import { lazy as m } from "react";
3
+ const e = m(
4
+ () => import("@/views/feature-components/VerifyRoute.jsx")
5
+ ), t = m(
6
+ () => import("./MedplatFormWrapper-nhdW6e0w.js")
7
+ ), a = [
8
+ {
9
+ path: "medplat/form/:formCode",
10
+ element: /* @__PURE__ */ o(
11
+ e,
12
+ {
13
+ pageTitle: "General",
14
+ url: "medplat/form",
15
+ component: /* @__PURE__ */ o(t, {})
16
+ }
17
+ )
18
+ },
19
+ {
20
+ path: "medplat/form/:formCode/:menuConfigId",
21
+ element: /* @__PURE__ */ o(e, { url: "medplat/form", component: /* @__PURE__ */ o(t, {}) })
22
+ }
23
+ ];
24
+ export {
25
+ a as routes
26
+ };
27
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":["../routes/routes.jsx"],"sourcesContent":["import { lazy } from \"react\";\n\nconst VerifyRoute = lazy(\n () => import(\"@/views/feature-components/VerifyRoute.jsx\")\n);\n\nconst MedplatFormWrapper = lazy(\n () => import(\"@fr/components/MedplatFormWrapper.jsx\")\n);\n\nconst corecustom2Routes = [\n {\n path: \"medplat/form/:formCode\",\n element: (\n <VerifyRoute\n pageTitle={\"General\"}\n url=\"medplat/form\"\n component={<MedplatFormWrapper />}\n />\n ),\n },\n {\n path: \"medplat/form/:formCode/:menuConfigId\",\n element: (\n <VerifyRoute url=\"medplat/form\" component={<MedplatFormWrapper />} />\n ),\n },\n];\n\nexport default corecustom2Routes;\n"],"names":["VerifyRoute","lazy","MedplatFormWrapper","corecustom2Routes","jsx"],"mappings":";;AAEA,MAAMA,IAAcC;AAAA,EAClB,MAAM,OAAO,4CAA4C;AAC3D,GAEMC,IAAqBD;AAAA,EACzB,MAAM,OAAO,kCAAuC;AACtD,GAEME,IAAoB;AAAA,EACxB;AAAA,IACE,MAAM;AAAA,IACN,SACE,gBAAAC;AAAA,MAACJ;AAAA,MAAA;AAAA,QACC,WAAW;AAAA,QACX,KAAI;AAAA,QACJ,6BAAYE,GAAA,CAAA,CAAmB;AAAA,MAAA;AAAA,IAAA;AAAA,EACjC;AAAA,EAGJ;AAAA,IACE,MAAM;AAAA,IACN,2BACGF,GAAA,EAAY,KAAI,gBAAe,WAAW,gBAAAI,EAACF,KAAmB,EAAA,CAAI;AAAA,EAAA;AAGzE;"}
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "@argusoft/medplat-form-engine",
3
+ "version": "1.0.0",
4
+ "description": "MEDplat Form Engine",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "main": "dist/index.js",
8
+ "exports": {
9
+ ".": "./dist/index.js"
10
+ },
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "build": "vite build"
16
+ },
17
+ "peerDependencies": {
18
+ "react": "^18",
19
+ "react-dom": "^18",
20
+ "react-router": "^6",
21
+ "react-router-dom": "^6",
22
+ "axios": "^1",
23
+ "classnames": "^2.5.1",
24
+ "file-type": "^19.6.0",
25
+ "html2pdf.js": "^0.10.3",
26
+ "lodash": "^4",
27
+ "moment": "^2",
28
+ "prop-types": "15",
29
+ "react-infinite-scroller": "^1.2.6",
30
+ "react-joyride": "^2.9.3",
31
+ "uuid": "^9",
32
+ "yup": "^1",
33
+ "@tanstack/react-query": "^5.59.0"
34
+ },
35
+ "peerDependenciesMeta": {
36
+ "react": {
37
+ "optional": false
38
+ }
39
+ },
40
+ "devDependencies": {
41
+ "vite": "^6.2.0",
42
+ "@vitejs/plugin-react": "^4.3.2"
43
+ },
44
+ "publishConfig": {
45
+ "access": "public"
46
+ }
47
+ }