my-orders-tickets-widget 1.0.0-beta.5 → 1.0.0-beta.50

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/jest-setup.js ADDED
@@ -0,0 +1,4 @@
1
+ import "regenerator-runtime/runtime";
2
+ import { JEST_TIMEOUT_IN_MILLISEC } from "./src/utils/constants";
3
+
4
+ jest.setTimeout(JEST_TIMEOUT_IN_MILLISEC); // in milliseconds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "my-orders-tickets-widget",
3
- "version": "1.0.0-beta.5",
3
+ "version": "1.0.0-beta.50",
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": "12.1.5",
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": "^4.1.82",
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.1.90",
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>/testSetupFile.js"
140
+ "<rootDir>/jest-setup.js"
141
141
  ]
142
142
  },
143
143
  "dependencies": {
@@ -147,11 +147,20 @@
147
147
  "@mui/material": "^5.15.20",
148
148
  "@mui/x-date-pickers": "^7.12.0",
149
149
  "@reduxjs/toolkit": "^2.2.5",
150
+ "@sentry/react": "^8.37.1",
151
+ "awesome-bootstrap-checkbox": "^1.0.1",
150
152
  "dayjs": "^1.11.12",
153
+ "final-form": "4.20.7",
154
+ "formik": "^2.4.6",
151
155
  "i18next": "^23.11.5",
152
156
  "i18next-browser-languagedetector": "^8.0.0",
157
+ "js-cookie": "^3.0.5",
153
158
  "prop-types": "^15.8.1",
159
+ "react-final-form": "6.5.9",
154
160
  "react-i18next": "^14.1.2",
155
- "react-infinite-scroll-component": "^6.1.0"
161
+ "react-infinite-scroll-component": "^6.1.0",
162
+ "react-qr-code": "^2.0.8",
163
+ "react-select": "^2.4.4",
164
+ "yup": "^1.4.0"
156
165
  }
157
166
  }