@griddo/ax 1.57.9 → 1.57.10
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.10",
|
|
5
5
|
"authors": [
|
|
6
6
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
7
7
|
"Carlos Torres <carlos.torres@secuoyas.com>",
|
|
@@ -237,5 +237,5 @@
|
|
|
237
237
|
"publishConfig": {
|
|
238
238
|
"access": "public"
|
|
239
239
|
},
|
|
240
|
-
"gitHead": "
|
|
240
|
+
"gitHead": "11ed3d1d9da83b8ee30b6ab2834ec69c6c166d3c"
|
|
241
241
|
}
|
|
@@ -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,
|