@griddo/ax 1.63.4 → 1.63.5

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@griddo/ax",
3
3
  "description": "Griddo Author Experience",
4
- "version": "1.63.4",
4
+ "version": "1.63.5",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -31,8 +31,7 @@
31
31
  "test": "node scripts/test.js",
32
32
  "lint": "eslint .",
33
33
  "format": "prettier -w .",
34
- "start:test": "env-cmd -f env/.env.development node scripts/dev.js",
35
- "postinstall": "patch-package"
34
+ "start:test": "env-cmd -f env/.env.development node scripts/dev.js"
36
35
  },
37
36
  "dependencies": {
38
37
  "@atlaskit/tree": "^8.2.0",
@@ -74,7 +73,7 @@
74
73
  "babel-preset-react-app": "^10.0.0",
75
74
  "case-sensitive-paths-webpack-plugin": "2.4.0",
76
75
  "compress.js": "^1.1.2",
77
- "connected-react-router": "https://github.com/griddo/connected-react-router.git",
76
+ "connected-react-router": "^6.9.2",
78
77
  "css-loader": "^4.3.0",
79
78
  "css-minimizer-webpack-plugin": "3.0.2",
80
79
  "date-fns": "^2.21.3",
@@ -101,7 +100,6 @@
101
100
  "markdown-draft-js": "^2.2.1",
102
101
  "mini-css-extract-plugin": "0.11.3",
103
102
  "optimize-css-assets-webpack-plugin": "^6.0.1",
104
- "patch-package": "^6.4.7",
105
103
  "pkg-dir": "^5.0.0",
106
104
  "polished": "3.4.1",
107
105
  "postcss": "^8.4.5",
@@ -110,7 +108,6 @@
110
108
  "postcss-normalize": "7.0.1",
111
109
  "postcss-preset-env": "6.7.0",
112
110
  "postcss-safe-parser": "^6.0.0",
113
- "postinstall-postinstall": "^2.1.0",
114
111
  "react": "^18.0.0",
115
112
  "react-app-polyfill": "^1.0.4",
116
113
  "react-datepicker": "^3.2.2",
@@ -249,5 +246,5 @@
249
246
  "publishConfig": {
250
247
  "access": "public"
251
248
  },
252
- "gitHead": "7834b91bedfb4056742ce3b5be00e50e92de623c"
249
+ "gitHead": "af01aecc628fe1ec952cc63f21e8f576c090b053"
253
250
  }
package/src/index.tsx CHANGED
@@ -8,6 +8,7 @@ import { ConnectedRouter } from "connected-react-router";
8
8
  import { GlobalStore } from "./GlobalStore";
9
9
  import App from "./modules/App";
10
10
 
11
+ // TODO: Remove @ts-ignore when connected-react-router updates its types
11
12
  export class Main {
12
13
  public static start(): void {
13
14
  const globalStore = new GlobalStore();
@@ -19,6 +20,8 @@ export class Main {
19
20
 
20
21
  root.render(
21
22
  <Provider store={configStore.store}>
23
+ {/* eslint-disable-next-line @typescript-eslint/ban-ts-comment */}
24
+ {/* @ts-ignore */}
22
25
  <ConnectedRouter history={history}>
23
26
  <PersistGate loading={undefined} persistor={configStore.persistor}>
24
27
  <App />
@@ -1,12 +0,0 @@
1
- diff --git a/node_modules/connected-react-router/index.d.ts b/node_modules/connected-react-router/index.d.ts
2
- index f2e7bcc..79ed1ff 100644
3
- --- a/node_modules/connected-react-router/index.d.ts
4
- +++ b/node_modules/connected-react-router/index.d.ts
5
- @@ -17,6 +17,7 @@ declare module 'connected-react-router' {
6
- type PathParam = Parameters<typeof matchPath>[1];
7
-
8
- interface ConnectedRouterProps<S = LocationState> {
9
- + children: React.ReactNode;
10
- history: History<S>;
11
- context?: React.Context<ReactReduxContextValue>;
12
- noInitialPop?: boolean;