@firedesktop/react-base 1.52.0 → 1.53.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firedesktop/react-base",
3
- "version": "1.52.0",
3
+ "version": "1.53.0",
4
4
  "license": "ISC",
5
5
  "main": "dist/index.js",
6
6
  "description": "This is the FireDesktop base package used to support every React Project in this Company.",
@@ -8,20 +8,20 @@
8
8
  "repository": "https://firedesktopDevOps@dev.azure.com/firedesktopDevOps/baseFEComponents/_git/baseFEComponents",
9
9
  "dependencies": {
10
10
  "@syncfusion/ej2-popups": "20.1.58",
11
- "@syncfusion/ej2-react-notifications": "20.1.55"
11
+ "@syncfusion/ej2-react-notifications": "20.1.61"
12
12
  },
13
13
  "devDependencies": {
14
- "@babel/cli": "7.17.10",
15
- "@babel/core": "7.18.2",
16
- "@babel/plugin-proposal-class-properties": "7.17.12",
17
- "@babel/plugin-transform-arrow-functions": "7.17.12",
18
- "@babel/preset-typescript": "7.17.12",
14
+ "@babel/cli": "7.18.6",
15
+ "@babel/core": "7.18.6",
16
+ "@babel/plugin-proposal-class-properties": "7.18.6",
17
+ "@babel/plugin-transform-arrow-functions": "7.18.6",
18
+ "@babel/preset-typescript": "7.18.6",
19
19
  "@testing-library/jest-dom": "5.16.4",
20
20
  "@testing-library/react": "13.3.0",
21
- "@testing-library/user-event": "14.2.0",
22
- "@types/jest": "28.1.1",
23
- "@types/node": "17.0.41",
24
- "@types/react": "18.0.12",
21
+ "@testing-library/user-event": "14.2.1",
22
+ "@types/jest": "28.1.3",
23
+ "@types/node": "18.0.0",
24
+ "@types/react": "18.0.14",
25
25
  "@types/react-dom": "18.0.5",
26
26
  "@types/react-redux": "7.1.24",
27
27
  "babel-plugin-minify-builtins": "0.5.0",
@@ -29,11 +29,11 @@
29
29
  "bootstrap": "4.6.0",
30
30
  "copyfiles": "2.4.1",
31
31
  "lodash": "4.17.21",
32
- "react": "18.1.0",
33
- "react-dom": "18.1.0",
32
+ "react": "18.2.0",
33
+ "react-dom": "18.2.0",
34
34
  "react-redux": "8.0.2",
35
35
  "react-scripts": "5.0.1",
36
- "typescript": "4.7.3",
36
+ "typescript": "4.7.4",
37
37
  "web-vitals": "2.1.4"
38
38
  },
39
39
  "peerDependencies": {
@@ -2,7 +2,12 @@ function ConfigurationManager() {
2
2
 
3
3
  async function loadConfiguration(fullPath: string) {
4
4
  try {
5
- const res = await fetch(fullPath, { headers: { 'Content-Type': 'application/json; charset=utf-8' } });
5
+ const res = await fetch(fullPath, {
6
+ headers: {
7
+ 'Content-Type': 'application/json; charset=utf-8',
8
+ 'pragma': 'no-cache'
9
+ }
10
+ });
6
11
  return await res.json();
7
12
  }
8
13
  catch (err) {