vrfi-design-system 1.0.1 → 1.0.2
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/package.json +115 -111
- package/dist/favicon.ico +0 -0
- package/dist/index.d.ts +0 -11
- package/dist/logo192.png +0 -0
- package/dist/logo512.png +0 -0
- package/dist/main.es.js +0 -12144
- package/dist/main.umd.js +0 -192
- package/dist/manifest.json +0 -25
- package/dist/robots.txt +0 -3
- package/dist/style.css +0 -1
package/package.json
CHANGED
|
@@ -1,115 +1,119 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
"name": "vrfi-design-system",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/main.umd.js",
|
|
7
|
+
"module": "./dist/main.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/main.es.js",
|
|
11
|
+
"require": "./dist/main.umd.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./dist/style.css": "./dist/style.css"
|
|
13
15
|
},
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
"files": [
|
|
17
|
-
"/dist"
|
|
18
|
-
],
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@tanstack/react-query": "^5.36.2",
|
|
21
|
-
"antd": "^5.12.1",
|
|
22
|
-
"axios": "^1.6.2",
|
|
23
|
-
"dayjs": "^1.11.11",
|
|
24
|
-
"eslint-plugin-import": "^2.29.1",
|
|
25
|
-
"formik": "^2.4.5",
|
|
26
|
-
"hammerjs": "^2.0.8",
|
|
27
|
-
"react": "18.2.0",
|
|
28
|
-
"react-dom": "18.2.0",
|
|
29
|
-
"react-otp-input": "^2.4.0",
|
|
30
|
-
"react-router-dom": "^6.20.1",
|
|
31
|
-
"sass": "^1.69.5",
|
|
32
|
-
"serializr": "^3.0.2",
|
|
33
|
-
"typescript": "^4.9.5",
|
|
34
|
-
"yup": "^1.3.2"
|
|
35
|
-
},
|
|
36
|
-
"scripts": {
|
|
37
|
-
"start": "vite",
|
|
38
|
-
"start:staging": "env-cmd -f .env.staging react-scripts start",
|
|
39
|
-
"start:production": "env-cmd -f .env.production react-scripts start",
|
|
40
|
-
"build": "tsc && vite build",
|
|
41
|
-
"build:staging": "env-cmd -f .env.staging react-scripts build",
|
|
42
|
-
"build:production": "env-cmd -f .env.production react-scripts build",
|
|
43
|
-
"test": "vitest",
|
|
44
|
-
"eject": "react-scripts eject",
|
|
45
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
46
|
-
"lint:fix": "eslint . --fix",
|
|
47
|
-
"storybook": "storybook dev",
|
|
48
|
-
"build-storybook": "storybook build -s public",
|
|
49
|
-
"coverage": "vitest run --coverage"
|
|
50
|
-
},
|
|
51
|
-
"browserslist": {
|
|
52
|
-
"production": [
|
|
53
|
-
">0.2%",
|
|
54
|
-
"not dead",
|
|
55
|
-
"not op_mini all"
|
|
16
|
+
"files": [
|
|
17
|
+
"/dist"
|
|
56
18
|
],
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@hookform/devtools": "^4.3.1",
|
|
21
|
+
"@tanstack/react-query": "^5.36.2",
|
|
22
|
+
"antd": "^5.12.1",
|
|
23
|
+
"axios": "^1.6.2",
|
|
24
|
+
"dayjs": "^1.11.11",
|
|
25
|
+
"eslint-plugin-import": "^2.29.1",
|
|
26
|
+
"formik": "^2.4.5",
|
|
27
|
+
"prettier": "^3.3.3",
|
|
28
|
+
"react": "18.2.0",
|
|
29
|
+
"react-dom": "18.2.0",
|
|
30
|
+
"react-hook-form": "^7.52.2",
|
|
31
|
+
"react-otp-input": "^2.4.0",
|
|
32
|
+
"react-router-dom": "^6.20.1",
|
|
33
|
+
"serializr": "^3.0.2",
|
|
34
|
+
"yup": "1.4.0"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"start": "vite",
|
|
38
|
+
"start:staging": "env-cmd -f .env.staging react-scripts start",
|
|
39
|
+
"start:production": "env-cmd -f .env.production react-scripts start",
|
|
40
|
+
"build": "tsc && vite build",
|
|
41
|
+
"build:staging": "env-cmd -f .env.staging react-scripts build",
|
|
42
|
+
"build:production": "env-cmd -f .env.production react-scripts build",
|
|
43
|
+
"test": "vitest",
|
|
44
|
+
"eject": "react-scripts eject",
|
|
45
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
46
|
+
"lint:fix": "eslint . --fix",
|
|
47
|
+
"storybook": "storybook dev",
|
|
48
|
+
"build-storybook": "storybook build -s public",
|
|
49
|
+
"coverage": "vitest run --coverage"
|
|
50
|
+
},
|
|
51
|
+
"browserslist": {
|
|
52
|
+
"production": [
|
|
53
|
+
">0.2%",
|
|
54
|
+
"not dead",
|
|
55
|
+
"not op_mini all"
|
|
56
|
+
],
|
|
57
|
+
"development": [
|
|
58
|
+
"last 1 chrome version",
|
|
59
|
+
"last 1 firefox version",
|
|
60
|
+
"last 1 safari version"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@bbbtech/storybook-formik": "^3.0.0",
|
|
65
|
+
"@rollup/plugin-eslint": "^9.0.5",
|
|
66
|
+
"@storybook/addon-actions": "^7.6.3",
|
|
67
|
+
"@storybook/addon-essentials": "^7.6.3",
|
|
68
|
+
"@storybook/addon-interactions": "^7.6.3",
|
|
69
|
+
"@storybook/addon-links": "^7.6.3",
|
|
70
|
+
"@storybook/addon-mdx-gfm": "^7.6.3",
|
|
71
|
+
"@storybook/cli": "^7.6.3",
|
|
72
|
+
"@storybook/node-logger": "^7.6.3",
|
|
73
|
+
"@storybook/preset-create-react-app": "^7.6.3",
|
|
74
|
+
"@storybook/react": "^7.6.3",
|
|
75
|
+
"@storybook/react-webpack5": "^7.6.3",
|
|
76
|
+
"@storybook/testing-library": "^0.2.2",
|
|
77
|
+
"@tanstack/react-query-devtools": "^5.40.1",
|
|
78
|
+
"@testing-library/jest-dom": "^6.1.5",
|
|
79
|
+
"@testing-library/react": "^14.1.2",
|
|
80
|
+
"@testing-library/user-event": "^14.5.1",
|
|
81
|
+
"@types/jest": "^29.5.12",
|
|
82
|
+
"@types/node": "^20.10.3",
|
|
83
|
+
"@types/react": "^18.2.42",
|
|
84
|
+
"@types/react-dom": "^18.2.17",
|
|
85
|
+
"@types/react-router-dom": "^5.3.3",
|
|
86
|
+
"@types/storybook-react-router": "^1.0.1",
|
|
87
|
+
"@types/yup": "^0.29.14",
|
|
88
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
89
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
90
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
91
|
+
"@vitest/coverage-v8": "^1.6.0",
|
|
92
|
+
"ajv": "^8.17.1",
|
|
93
|
+
"babel-plugin-named-exports-order": "^0.0.2",
|
|
94
|
+
"env-cmd": "^10.1.0",
|
|
95
|
+
"eslint": "^8.57.0",
|
|
96
|
+
"eslint-config-prettier": "^9.1.0",
|
|
97
|
+
"eslint-plugin-filename-rules": "^1.3.1",
|
|
98
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
99
|
+
"eslint-plugin-react": "^7.34.1",
|
|
100
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
101
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
102
|
+
"jsdom": "^24.0.0",
|
|
103
|
+
"prettier-eslint": "^16.3.0",
|
|
104
|
+
"sass": "^1.69.5",
|
|
105
|
+
"storybook": "^7.6.3",
|
|
106
|
+
"storybook-addon-react-router-v6": "^2.0.10",
|
|
107
|
+
"storybook-react-router": "^1.0.8",
|
|
108
|
+
"typescript": "^4.9.5",
|
|
109
|
+
"vite": "^5.2.11",
|
|
110
|
+
"vite-plugin-dts": "^4.0.2",
|
|
111
|
+
"vite-plugin-svgr": "^4.2.0",
|
|
112
|
+
"vite-tsconfig-paths": "^4.3.2",
|
|
113
|
+
"vitest": "^1.6.0"
|
|
114
|
+
},
|
|
115
|
+
"peerDependencies": {
|
|
116
|
+
"react": "18.2.0",
|
|
117
|
+
"react-dom": "18.2.0"
|
|
118
|
+
}
|
|
115
119
|
}
|
package/dist/favicon.ico
DELETED
|
Binary file
|
package/dist/index.d.ts
DELETED
package/dist/logo192.png
DELETED
|
Binary file
|
package/dist/logo512.png
DELETED
|
Binary file
|