@gen-epix/ui 0.0.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/LICENSE +287 -0
- package/dist/core.d.ts +3 -0
- package/dist/environment.d.ts +7 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +7034 -0
- package/dist/mui.d.ts +29 -0
- package/dist/ui.js +223824 -0
- package/dist/vite-env.d.ts +2 -0
- package/dist/yup.d.ts +29 -0
- package/package.json +100 -0
package/dist/yup.d.ts
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
2
|
+
import type { StringSchema } from 'yup';
|
3
|
+
|
4
|
+
declare module 'yup' {
|
5
|
+
interface StringSchema {
|
6
|
+
code(): StringSchema;
|
7
|
+
strictAlpha(): StringSchema;
|
8
|
+
strictAlphaNumeric(): StringSchema;
|
9
|
+
alpha(): StringSchema;
|
10
|
+
alphaNumeric(): StringSchema;
|
11
|
+
extendedAlpha(): StringSchema;
|
12
|
+
extendedAlphaNumeric(): StringSchema;
|
13
|
+
freeFormText(): StringSchema;
|
14
|
+
email(): StringSchema;
|
15
|
+
uuid4(): StringSchema;
|
16
|
+
latLong(): StringSchema;
|
17
|
+
timeWeek(): StringSchema;
|
18
|
+
timeQuarter(): StringSchema;
|
19
|
+
timeMonth(): StringSchema;
|
20
|
+
timeYear(): StringSchema;
|
21
|
+
decimal0(): StringSchema;
|
22
|
+
decimal1(): StringSchema;
|
23
|
+
decimal2(): StringSchema;
|
24
|
+
decimal3(): StringSchema;
|
25
|
+
decimal4(): StringSchema;
|
26
|
+
decimal5(): StringSchema;
|
27
|
+
decimal6(): StringSchema;
|
28
|
+
}
|
29
|
+
}
|
package/package.json
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
{
|
2
|
+
"name": "@gen-epix/ui",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"license": "EUPL-1.2",
|
5
|
+
"type": "module",
|
6
|
+
"files": [
|
7
|
+
"dist"
|
8
|
+
],
|
9
|
+
"main": "./dist/index.js",
|
10
|
+
"scripts": {
|
11
|
+
"build": "vite build",
|
12
|
+
"publish": "npm run build && reconfigure-package . pre && npm publish --access=public && reconfigure-package . post",
|
13
|
+
"validate": "npm run lint && npm run check-types && npm run test-run",
|
14
|
+
"test": "vitest",
|
15
|
+
"test-run": "vitest run --passWithNoTests",
|
16
|
+
"lint": "eslint ./src --report-unused-disable-directives --max-warnings 0",
|
17
|
+
"lint-fix": "eslint ./src --report-unused-disable-directives --max-warnings 0 --fix",
|
18
|
+
"check-types": "tsc --noemit"
|
19
|
+
},
|
20
|
+
"peerDependencies": {
|
21
|
+
"i18next": "25.1.3",
|
22
|
+
"react-i18next": "15.5.1",
|
23
|
+
"react": "19.1.0",
|
24
|
+
"react-dom": "19.1.0"
|
25
|
+
},
|
26
|
+
"dependencies": {
|
27
|
+
"@date-io/date-fns": "3.2.1",
|
28
|
+
"@emotion/cache": "11.14.0",
|
29
|
+
"@emotion/react": "11.14.0",
|
30
|
+
"@emotion/styled": "11.14.0",
|
31
|
+
"@hookform/resolvers": "5.0.1",
|
32
|
+
"@mui/icons-material": "7.1.0",
|
33
|
+
"@mui/lab": "7.0.0-beta.12",
|
34
|
+
"@mui/material": "7.1.0",
|
35
|
+
"@mui/styled-engine": "7.1.0",
|
36
|
+
"@mui/system": "7.1.0",
|
37
|
+
"@mui/utils": "7.1.0",
|
38
|
+
"@mui/x-date-pickers": "8.4.0",
|
39
|
+
"@tanstack/react-query": "5.77.2",
|
40
|
+
"@uiw/react-md-editor": "4.0.7",
|
41
|
+
"axios": "1.9.0",
|
42
|
+
"classnames": "2.5.1",
|
43
|
+
"clsx": "2.1.1",
|
44
|
+
"csv-writer": "1.6.0",
|
45
|
+
"date-fns": "4.1.0",
|
46
|
+
"decimal.js": "10.5.0",
|
47
|
+
"echarts": "5.6.0",
|
48
|
+
"echarts-for-react": "3.0.2",
|
49
|
+
"i18next": "25.2.1",
|
50
|
+
"immer": "10.1.1",
|
51
|
+
"lodash": "4.17.21",
|
52
|
+
"oidc-client-ts": "3.2.1",
|
53
|
+
"react-error-boundary": "6.0.0",
|
54
|
+
"react-hook-form": "7.56.4",
|
55
|
+
"react-oidc-context": "3.3.0",
|
56
|
+
"react-resizable-panels": "3.0.2",
|
57
|
+
"react-router-dom": "7.6.1",
|
58
|
+
"react-virtuoso": "4.12.7",
|
59
|
+
"reflect-metadata": "0.2.2",
|
60
|
+
"rehype-sanitize": "6.0.0",
|
61
|
+
"use-cleanup-callback": "1.3.0",
|
62
|
+
"use-debounce": "10.0.4",
|
63
|
+
"use-sync-external-store": "1.5.0",
|
64
|
+
"uuid": "11.1.0",
|
65
|
+
"xlsx": "0.18.5",
|
66
|
+
"yup": "1.6.1",
|
67
|
+
"zustand": "5.0.5"
|
68
|
+
},
|
69
|
+
"devDependencies": {
|
70
|
+
"@gen-epix/eslint-config": "*",
|
71
|
+
"@gen-epix/typescript-config": "*",
|
72
|
+
"@gen-epix/reconfigure-package": "*",
|
73
|
+
"@types/lodash": "4.17.17",
|
74
|
+
"@types/react": "19.1.6",
|
75
|
+
"@types/react-dom": "19.1.5",
|
76
|
+
"@types/uuid": "10.0.0",
|
77
|
+
"@types/node": "22.15.27",
|
78
|
+
"@vitejs/plugin-react-swc": "3.10.0",
|
79
|
+
"eslint": "9.27.0",
|
80
|
+
"glob": "11.0.2",
|
81
|
+
"jsdom": "26.1.0",
|
82
|
+
"typescript": "5.8.3",
|
83
|
+
"vite": "6.3.5",
|
84
|
+
"vite-plugin-dts": "4.5.4",
|
85
|
+
"vite-plugin-svgr": "4.3.0",
|
86
|
+
"vite-plugin-lib-inject-css": "2.2.2",
|
87
|
+
"vite-plugin-static-copy": "3.0.0",
|
88
|
+
"vitest": "3.1.4"
|
89
|
+
},
|
90
|
+
"browserslist": [
|
91
|
+
"last 2 Chrome versions"
|
92
|
+
],
|
93
|
+
"exports": {
|
94
|
+
".": {
|
95
|
+
"types": "./dist/index.d.ts",
|
96
|
+
"import": "./dist/index.js"
|
97
|
+
}
|
98
|
+
},
|
99
|
+
"types": "./dist/index.d.ts"
|
100
|
+
}
|