my-orders-tickets-widget 1.0.0-beta.6 → 1.0.0-beta.61
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/i18n.js +8 -4
- package/dist/index.css +881 -160
- package/dist/index.js +8904 -1901
- package/jest-setup.js +4 -0
- package/package.json +15 -6
package/jest-setup.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "my-orders-tickets-widget",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.61",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "smarcet <smarcet@gmail.com>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@babel/preset-react": "^7.24.7",
|
|
31
31
|
"@testing-library/dom": "^10.1.0",
|
|
32
32
|
"@testing-library/jest-dom": "^6.4.2",
|
|
33
|
-
"@testing-library/react": "
|
|
33
|
+
"@testing-library/react": "15.0.6",
|
|
34
34
|
"@testing-library/user-event": "^14.5.2",
|
|
35
35
|
"@types/react-dom": "16.9.24",
|
|
36
36
|
"babel-jest": "^29.7.0",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"moment": "^2.30.1",
|
|
64
64
|
"moment-timezone": "^0.5.45",
|
|
65
65
|
"node-sass": "^9.0.0",
|
|
66
|
-
"openstack-uicore-foundation": "
|
|
66
|
+
"openstack-uicore-foundation": "4.2.8",
|
|
67
67
|
"optimize-css-assets-webpack-plugin": "^6.0.1",
|
|
68
68
|
"path": "^0.12.7",
|
|
69
69
|
"prettier": "^2.0.5",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"crypto-js": "^4.2.0",
|
|
91
91
|
"i18n-react": "^0.7.0",
|
|
92
92
|
"idtoken-verifier": "^2.2.4",
|
|
93
|
-
"openstack-uicore-foundation": "4.
|
|
93
|
+
"openstack-uicore-foundation": "4.2.8",
|
|
94
94
|
"react": "^18.2.0",
|
|
95
95
|
"react-dom": "^18.2.0",
|
|
96
96
|
"react-redux": "^7.2.6",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
},
|
|
138
138
|
"testEnvironment": "jsdom",
|
|
139
139
|
"setupFilesAfterEnv": [
|
|
140
|
-
"<rootDir>/
|
|
140
|
+
"<rootDir>/jest-setup.js"
|
|
141
141
|
]
|
|
142
142
|
},
|
|
143
143
|
"dependencies": {
|
|
@@ -145,14 +145,23 @@
|
|
|
145
145
|
"@emotion/styled": "^11.11.5",
|
|
146
146
|
"@mui/icons-material": "^5.15.20",
|
|
147
147
|
"@mui/material": "^5.15.20",
|
|
148
|
+
"@mui/utils": "^5.16.8",
|
|
148
149
|
"@mui/x-date-pickers": "^7.12.0",
|
|
149
150
|
"@reduxjs/toolkit": "^2.2.5",
|
|
150
151
|
"@sentry/react": "^8.37.1",
|
|
152
|
+
"awesome-bootstrap-checkbox": "^1.0.1",
|
|
151
153
|
"dayjs": "^1.11.12",
|
|
154
|
+
"final-form": "4.20.7",
|
|
155
|
+
"formik": "^2.4.6",
|
|
152
156
|
"i18next": "^23.11.5",
|
|
153
157
|
"i18next-browser-languagedetector": "^8.0.0",
|
|
158
|
+
"js-cookie": "^3.0.5",
|
|
154
159
|
"prop-types": "^15.8.1",
|
|
160
|
+
"react-final-form": "6.5.9",
|
|
155
161
|
"react-i18next": "^14.1.2",
|
|
156
|
-
"react-infinite-scroll-component": "^6.1.0"
|
|
162
|
+
"react-infinite-scroll-component": "^6.1.0",
|
|
163
|
+
"react-qr-code": "^2.0.8",
|
|
164
|
+
"react-select": "^2.4.4",
|
|
165
|
+
"yup": "^1.4.0"
|
|
157
166
|
}
|
|
158
167
|
}
|