@griddo/ax 1.57.3 → 1.57.8
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 +10 -6
- package/src/components/Fields/index.tsx +2 -0
- package/src/index.tsx +6 -3
- package/tsconfig.json +3 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@griddo/ax",
|
|
3
3
|
"description": "Griddo Author Experience",
|
|
4
|
-
"version": "1.57.
|
|
4
|
+
"version": "1.57.8",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
7
|
"Carlos Torres <carlos.torres@secuoyas.com>",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"@types/lodash.isequal": "^4.5.5",
|
|
49
49
|
"@types/markdown-draft-js": "^2.2.2",
|
|
50
50
|
"@types/node": "12.11.1",
|
|
51
|
-
"@types/react": "
|
|
51
|
+
"@types/react": "^17.0.37",
|
|
52
52
|
"@types/react-datepicker": "^3.1.1",
|
|
53
|
-
"@types/react-dom": "
|
|
53
|
+
"@types/react-dom": "^17.0.11",
|
|
54
54
|
"@types/react-draft-wysiwyg": "^1.13.1",
|
|
55
55
|
"@types/react-redux": "7.1.4",
|
|
56
56
|
"@types/react-router-dom": "5.1.0",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"draft-js-import-html": "^1.4.1",
|
|
84
84
|
"enhanced-resolve": "^5.8.2",
|
|
85
85
|
"env-cmd": "^10.1.0",
|
|
86
|
-
"file-loader": "6.
|
|
86
|
+
"file-loader": "6.2.0",
|
|
87
87
|
"find-up": "^5.0.0",
|
|
88
88
|
"fs-extra": "7.0.1",
|
|
89
89
|
"html-webpack-plugin": "4.5.0",
|
|
@@ -96,6 +96,7 @@
|
|
|
96
96
|
"lodash.isequal": "4.5.0",
|
|
97
97
|
"markdown-draft-js": "^2.2.1",
|
|
98
98
|
"mini-css-extract-plugin": "0.11.3",
|
|
99
|
+
"optimize-css-assets-webpack-plugin": "^6.0.1",
|
|
99
100
|
"pkg-dir": "^5.0.0",
|
|
100
101
|
"polished": "3.4.1",
|
|
101
102
|
"postcss-flexbugs-fixes": "4.1.0",
|
|
@@ -103,9 +104,11 @@
|
|
|
103
104
|
"postcss-normalize": "7.0.1",
|
|
104
105
|
"postcss-preset-env": "6.7.0",
|
|
105
106
|
"postcss-safe-parser": "4.0.1",
|
|
107
|
+
"react": "^18.0.0-rc.0-next-3b3daf557-20211210",
|
|
106
108
|
"react-app-polyfill": "^1.0.4",
|
|
107
109
|
"react-datepicker": "^3.2.2",
|
|
108
110
|
"react-dev-utils": "^11.0.4",
|
|
111
|
+
"react-dom": "^18.0.0-rc.0-next-3b3daf557-20211210",
|
|
109
112
|
"react-draft-wysiwyg": "^1.14.5",
|
|
110
113
|
"react-froala-wysiwyg": "3.1.0",
|
|
111
114
|
"react-redux": "7.1.1",
|
|
@@ -125,8 +128,9 @@
|
|
|
125
128
|
"source-map-loader": "^1.1.2",
|
|
126
129
|
"string-replace-loader": "^3.0.1",
|
|
127
130
|
"style-loader": "^1.2.1",
|
|
128
|
-
"styled-components": "^
|
|
131
|
+
"styled-components": "^5.3.3",
|
|
129
132
|
"styled-reset": "4.0.1",
|
|
133
|
+
"styled-system": "^5.1.5",
|
|
130
134
|
"terser-webpack-plugin": "1.4.1",
|
|
131
135
|
"ts-pnp": "1.1.4",
|
|
132
136
|
"typescript": "~3.8",
|
|
@@ -233,5 +237,5 @@
|
|
|
233
237
|
"publishConfig": {
|
|
234
238
|
"access": "public"
|
|
235
239
|
},
|
|
236
|
-
"gitHead": "
|
|
240
|
+
"gitHead": "94bdcbf2205bdb913a38ae73a828ff9ea3c3cda2"
|
|
237
241
|
}
|
|
@@ -20,6 +20,7 @@ import ReferenceField from "./ReferenceField";
|
|
|
20
20
|
import RichText from "./RichText";
|
|
21
21
|
import Select from "./Select";
|
|
22
22
|
import SliderField from "./SliderField";
|
|
23
|
+
import TagField from "./TagField";
|
|
23
24
|
import TextArea from "./TextArea";
|
|
24
25
|
import TextField from "./TextField";
|
|
25
26
|
import ToggleField from "./ToggleField";
|
|
@@ -52,6 +53,7 @@ export {
|
|
|
52
53
|
RichText,
|
|
53
54
|
Select,
|
|
54
55
|
SliderField,
|
|
56
|
+
TagField,
|
|
55
57
|
TextArea,
|
|
56
58
|
TextField,
|
|
57
59
|
ToggleField,
|
package/src/index.tsx
CHANGED
|
@@ -13,15 +13,18 @@ export class Main {
|
|
|
13
13
|
const globalStore = new GlobalStore();
|
|
14
14
|
const configStore = globalStore.configureStore(history);
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
const container = document.getElementById("root");
|
|
17
|
+
if (!container) throw new Error('Failed to find the root element');
|
|
18
|
+
const root = ReactDOM.createRoot(container);
|
|
19
|
+
|
|
20
|
+
root.render(
|
|
17
21
|
<Provider store={configStore.store}>
|
|
18
22
|
<ConnectedRouter history={history}>
|
|
19
23
|
<PersistGate loading={undefined} persistor={configStore.persistor}>
|
|
20
24
|
<App />
|
|
21
25
|
</PersistGate>
|
|
22
26
|
</ConnectedRouter>
|
|
23
|
-
</Provider
|
|
24
|
-
document.getElementById("root")
|
|
27
|
+
</Provider>
|
|
25
28
|
);
|
|
26
29
|
}
|
|
27
30
|
}
|