@omniumretail/component-library 1.2.73 → 1.2.74
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/component-library.es.js +8507 -0
- package/dist/component-library.umd.js +34 -1154
- package/package.json +45 -49
package/package.json
CHANGED
|
@@ -1,57 +1,68 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omniumretail/component-library",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.74",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/component-library.umd.js",
|
|
6
|
+
"module": "dist/component-library.es.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
7
8
|
"files": [
|
|
8
9
|
"dist"
|
|
9
10
|
],
|
|
10
|
-
"
|
|
11
|
+
"peerDependencies": {
|
|
11
12
|
"@ant-design/icons": "^4.8.0",
|
|
12
|
-
"@hello-pangea/dnd": "^18.0.1",
|
|
13
|
-
"@testing-library/react": "^13.0.0",
|
|
14
|
-
"@testing-library/user-event": "^13.2.1",
|
|
15
|
-
"@types/node": "^18.11.11",
|
|
16
|
-
"@types/react": "^18.0.26",
|
|
17
|
-
"@types/react-beautiful-dnd": "^13.1.3",
|
|
18
|
-
"@types/react-dom": "^18.0.9",
|
|
19
13
|
"antd": "^5.18.3",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
14
|
+
"dayjs": "^1.11.10",
|
|
15
|
+
"i18next": "^22.4.9",
|
|
16
|
+
"react-i18next": "^12.1.4"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
23
19
|
"camelcase": "^6.2.1",
|
|
24
20
|
"classnames": "^2.3.2",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
21
|
+
"lodash.merge": "^4.6.2",
|
|
22
|
+
"react": "^18.2.0",
|
|
23
|
+
"react-dom": "^18.2.0"
|
|
24
|
+
},
|
|
25
|
+
"optionalDependencies": {
|
|
26
|
+
"@hello-pangea/dnd": "^18.0.1",
|
|
27
|
+
"antd-img-crop": "^4.10.2",
|
|
28
|
+
"browser-image-compression": "^2.0.2",
|
|
31
29
|
"html2canvas": "^1.4.1",
|
|
32
|
-
"i18next": "^22.4.9",
|
|
33
30
|
"i18next-browser-languagedetector": "^7.0.1",
|
|
34
31
|
"i18next-fetch-backend": "^5.0.1",
|
|
35
|
-
"identity-obj-proxy": "^3.0.0",
|
|
36
|
-
"jest": "^27.4.3",
|
|
37
|
-
"jest-resolve": "^27.4.2",
|
|
38
|
-
"jest-watch-typeahead": "^1.0.0",
|
|
39
32
|
"jspdf": "^2.5.2",
|
|
40
|
-
"lodash.merge": "^4.6.2",
|
|
41
|
-
"postcss": "^8.4.4",
|
|
42
|
-
"prompts": "^2.4.2",
|
|
43
33
|
"rc-tween-one": "^3.0.6",
|
|
44
|
-
"react": "^18.2.0",
|
|
45
|
-
"react-app-polyfill": "^3.0.0",
|
|
46
|
-
"react-dom": "^18.2.0",
|
|
47
34
|
"react-easy-crop": "^4.7.4",
|
|
48
|
-
"react-i18next": "^12.1.4",
|
|
49
35
|
"react-webcam": "^7.1.1",
|
|
36
|
+
"xlsx": "^0.18.5"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@ant-design/icons": "^4.8.0",
|
|
40
|
+
"@storybook/addon-docs": "9.1.2",
|
|
41
|
+
"@storybook/addon-links": "^9.1.2",
|
|
42
|
+
"@storybook/cli": "^9.1.2",
|
|
43
|
+
"@storybook/react-vite": "^9.1.2",
|
|
44
|
+
"@storybook/test": "^9.1.2",
|
|
45
|
+
"@types/lodash.merge": "^4.6.9",
|
|
46
|
+
"@types/node": "^18.11.11",
|
|
47
|
+
"@types/react": "^18.0.26",
|
|
48
|
+
"@types/react-beautiful-dnd": "^13.1.3",
|
|
49
|
+
"@types/react-dom": "^18.0.9",
|
|
50
|
+
"@vitejs/plugin-react": "^5.0.1",
|
|
51
|
+
"antd": "^5.18.3",
|
|
52
|
+
"dayjs": "^1.11.10",
|
|
53
|
+
"i18next": "^22.4.9",
|
|
54
|
+
"prop-types": "^15.8.1",
|
|
55
|
+
"react-i18next": "^12.1.4",
|
|
50
56
|
"sass": "^1.56.1",
|
|
51
57
|
"sass-loader": "^12.3.0",
|
|
58
|
+
"storybook-css-modules": "^1.0.8",
|
|
59
|
+
"terser": "^5.43.1",
|
|
60
|
+
"tsconfig-paths": "^4.2.0",
|
|
52
61
|
"typescript": "^4.9.3",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
62
|
+
"vite": "^7.1.3",
|
|
63
|
+
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
64
|
+
"vite-plugin-dts": "^4.5.4",
|
|
65
|
+
"web-vitals": "^2.1.0"
|
|
55
66
|
},
|
|
56
67
|
"scripts": {
|
|
57
68
|
"prepublish": "rd /s /q .\\dist && yarn build",
|
|
@@ -61,7 +72,7 @@
|
|
|
61
72
|
"storybook": "storybook dev -p 6006",
|
|
62
73
|
"build-storybook": "storybook build",
|
|
63
74
|
"deploy": "aws s3 sync storybook-static/ s3://changeToBucketName",
|
|
64
|
-
"analyze": "
|
|
75
|
+
"analyze": "npx vite-bundle-analyzer"
|
|
65
76
|
},
|
|
66
77
|
"browserslist": {
|
|
67
78
|
"production": [
|
|
@@ -74,20 +85,5 @@
|
|
|
74
85
|
"last 1 firefox version",
|
|
75
86
|
"last 1 safari version"
|
|
76
87
|
]
|
|
77
|
-
},
|
|
78
|
-
"devDependencies": {
|
|
79
|
-
"@storybook/addon-docs": "9.1.2",
|
|
80
|
-
"@storybook/addon-links": "^9.1.2",
|
|
81
|
-
"@storybook/cli": "^9.1.2",
|
|
82
|
-
"@storybook/react-vite": "^9.1.2",
|
|
83
|
-
"@storybook/test": "^8.6.14",
|
|
84
|
-
"@types/lodash.merge": "^4.6.9",
|
|
85
|
-
"@vitejs/plugin-react": "^5.0.1",
|
|
86
|
-
"prop-types": "^15.8.1",
|
|
87
|
-
"storybook-css-modules": "^1.0.8",
|
|
88
|
-
"tsconfig-paths": "^4.2.0",
|
|
89
|
-
"vite": "^7.1.3",
|
|
90
|
-
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
91
|
-
"vite-plugin-dts": "^4.5.4"
|
|
92
88
|
}
|
|
93
|
-
}
|
|
89
|
+
}
|