my-orders-tickets-widget 1.0.0-beta.11 → 1.0.0-beta.13

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.11",
3
+ "version": "1.0.0-beta.13",
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.90",
66
+ "openstack-uicore-foundation": "^4.1.82",
67
67
  "optimize-css-assets-webpack-plugin": "^6.0.1",
68
68
  "path": "^0.12.7",
69
69
  "prettier": "^2.0.5",
@@ -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": {
@@ -148,18 +148,12 @@
148
148
  "@mui/x-date-pickers": "^7.12.0",
149
149
  "@reduxjs/toolkit": "^2.2.5",
150
150
  "@sentry/react": "^8.37.1",
151
- "awesome-bootstrap-checkbox": "^1.0.1",
152
151
  "dayjs": "^1.11.12",
153
- "final-form": "4.20.7",
154
- "formik": "^2.4.6",
155
152
  "i18next": "^23.11.5",
156
153
  "i18next-browser-languagedetector": "^8.0.0",
154
+ "js-cookie": "^3.0.5",
157
155
  "prop-types": "^15.8.1",
158
- "react-final-form": "6.5.9",
159
156
  "react-i18next": "^14.1.2",
160
- "react-infinite-scroll-component": "^6.1.0",
161
- "react-qr-code": "^2.0.8",
162
- "react-select": "^2.4.4",
163
- "yup": "^1.4.0"
157
+ "react-infinite-scroll-component": "^6.1.0"
164
158
  }
165
159
  }