@griddo/ax 1.57.8 → 1.57.12
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.57.
|
|
4
|
+
"version": "1.57.12",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
7
|
"Carlos Torres <carlos.torres@secuoyas.com>",
|
|
@@ -99,11 +99,12 @@
|
|
|
99
99
|
"optimize-css-assets-webpack-plugin": "^6.0.1",
|
|
100
100
|
"pkg-dir": "^5.0.0",
|
|
101
101
|
"polished": "3.4.1",
|
|
102
|
+
"postcss": "^8.4.5",
|
|
102
103
|
"postcss-flexbugs-fixes": "4.1.0",
|
|
103
104
|
"postcss-loader": "3.0.0",
|
|
104
105
|
"postcss-normalize": "7.0.1",
|
|
105
106
|
"postcss-preset-env": "6.7.0",
|
|
106
|
-
"postcss-safe-parser": "
|
|
107
|
+
"postcss-safe-parser": "^6.0.0",
|
|
107
108
|
"react": "^18.0.0-rc.0-next-3b3daf557-20211210",
|
|
108
109
|
"react-app-polyfill": "^1.0.4",
|
|
109
110
|
"react-datepicker": "^3.2.2",
|
|
@@ -156,6 +157,9 @@
|
|
|
156
157
|
"prettier": "^2.3.0",
|
|
157
158
|
"react-test-render": "1.1.2"
|
|
158
159
|
},
|
|
160
|
+
"resolutions": {
|
|
161
|
+
"react-error-overlay": "6.0.9"
|
|
162
|
+
},
|
|
159
163
|
"babel": {
|
|
160
164
|
"presets": [
|
|
161
165
|
"react-app",
|
|
@@ -237,5 +241,5 @@
|
|
|
237
241
|
"publishConfig": {
|
|
238
242
|
"access": "public"
|
|
239
243
|
},
|
|
240
|
-
"gitHead": "
|
|
244
|
+
"gitHead": "cef08e4c085b5c8fa6752954a4da606a7c46bb06"
|
|
241
245
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import styled from "styled-components";
|
|
2
|
-
import
|
|
2
|
+
import Button from "@ax/components/Button";
|
|
3
3
|
|
|
4
4
|
export const Wrapper = styled.div`
|
|
5
5
|
background-color: ${(p) => p.theme.color.uiBarBackground};
|
|
@@ -56,28 +56,28 @@ export const UploadingStatus = styled.div`
|
|
|
56
56
|
|
|
57
57
|
export const SuccessStatus = styled.div`
|
|
58
58
|
transition: opacity 0.1s;
|
|
59
|
-
${DragIcon} {
|
|
59
|
+
${DragIcon as any} {
|
|
60
60
|
svg {
|
|
61
61
|
path {
|
|
62
62
|
fill: ${(p) => p.theme.color.online};
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
|
-
${DragTitle} {
|
|
66
|
+
${DragTitle as any} {
|
|
67
67
|
color: ${(p) => p.theme.color.textHighEmphasis};
|
|
68
68
|
}
|
|
69
69
|
`;
|
|
70
70
|
|
|
71
71
|
export const ErrorStatus = styled.div`
|
|
72
72
|
transition: opacity 0.1s;
|
|
73
|
-
${DragIcon} {
|
|
73
|
+
${DragIcon as any} {
|
|
74
74
|
svg {
|
|
75
75
|
path {
|
|
76
76
|
fill: ${(p) => p.theme.color.error};
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
|
-
${DragTitle} {
|
|
80
|
+
${DragTitle as any} {
|
|
81
81
|
color: ${(p) => p.theme.color.textHighEmphasis};
|
|
82
82
|
}
|
|
83
83
|
`;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import styled from "styled-components";
|
|
2
|
-
import
|
|
2
|
+
import ActionMenu from "@ax/components/ActionMenu";
|
|
3
3
|
|
|
4
4
|
const Field = styled.div`
|
|
5
5
|
display: flex;
|
|
@@ -79,7 +79,7 @@ const Component = styled.span`
|
|
|
79
79
|
cursor: pointer;
|
|
80
80
|
:hover {
|
|
81
81
|
background-color: ${(p) => p.theme.colors.overlayHoverPrimary};
|
|
82
|
-
${StyledActionMenu} {
|
|
82
|
+
${StyledActionMenu as any} {
|
|
83
83
|
opacity: 1;
|
|
84
84
|
}
|
|
85
85
|
}
|
|
@@ -3,15 +3,19 @@ import AsyncCheckGroup from "./AsyncCheckGroup";
|
|
|
3
3
|
import AsyncSelect from "./AsyncSelect";
|
|
4
4
|
import CheckField from "./CheckField";
|
|
5
5
|
import CheckGroup from "./CheckGroup";
|
|
6
|
+
import ColorPicker from "./ColorPicker";
|
|
6
7
|
import ComponentArray from "./ComponentArray";
|
|
7
8
|
import ComponentContainer from "./ComponentContainer";
|
|
8
9
|
import ConditionalField from "./ConditionalField";
|
|
9
10
|
import DateField from "./DateField";
|
|
10
11
|
import FieldGroup from "./FieldGroup";
|
|
11
12
|
import FieldsDivider from "./FieldsDivider";
|
|
13
|
+
import FileField from "./FileField";
|
|
12
14
|
import HeadingField from "./HeadingField";
|
|
13
15
|
import HiddenField from "./HiddenField";
|
|
14
16
|
import ImageField from "./ImageField";
|
|
17
|
+
import MultiCheckSelect from "./MultiCheckSelect";
|
|
18
|
+
import MultiCheckSelectGroup from "./MultiCheckSelectGroup";
|
|
15
19
|
import NoteField from "./NoteField";
|
|
16
20
|
import NumberField from "./NumberField";
|
|
17
21
|
import RadioField from "./RadioField";
|
|
@@ -36,15 +40,19 @@ export {
|
|
|
36
40
|
AsyncSelect,
|
|
37
41
|
CheckField,
|
|
38
42
|
CheckGroup,
|
|
43
|
+
ColorPicker,
|
|
39
44
|
ComponentArray,
|
|
40
45
|
ComponentContainer,
|
|
41
46
|
ConditionalField,
|
|
42
47
|
DateField,
|
|
43
48
|
FieldGroup,
|
|
44
49
|
FieldsDivider,
|
|
50
|
+
FileField,
|
|
45
51
|
HeadingField,
|
|
46
52
|
HiddenField,
|
|
47
53
|
ImageField,
|
|
54
|
+
MultiCheckSelect,
|
|
55
|
+
MultiCheckSelectGroup,
|
|
48
56
|
NoteField,
|
|
49
57
|
NumberField,
|
|
50
58
|
RadioField,
|