@capillarytech/creatives-library 8.0.59-alpha.5 → 8.0.59
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.
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
.action-text-reply{
|
|
9
9
|
position: absolute;
|
|
10
10
|
left: 34%;
|
|
11
|
-
top: 59
|
|
11
|
+
top: 59%;
|
|
12
12
|
color: #3861ca;
|
|
13
13
|
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
14
14
|
}
|
|
15
15
|
.action-text-cancel{
|
|
16
16
|
position: absolute;
|
|
17
17
|
left: 33.5%;
|
|
18
|
-
top: 66
|
|
18
|
+
top: 66%;
|
|
19
19
|
color: #3861ca;
|
|
20
20
|
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
21
21
|
}
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
}
|
|
26
26
|
.lock-screen-preview .lock-msgContainer{
|
|
27
27
|
position: absolute;
|
|
28
|
-
top:
|
|
28
|
+
top: 40%;
|
|
29
29
|
left: 25.9%;
|
|
30
30
|
width: 21.5%;
|
|
31
31
|
height: 60px;
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
}
|
|
56
56
|
.main-screen-preview .msgContainer{
|
|
57
57
|
position: absolute;
|
|
58
|
-
top: 30
|
|
58
|
+
top: 30%;
|
|
59
59
|
left: 53%;
|
|
60
60
|
width: 42%;
|
|
61
61
|
height: 336px;
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
.action-text{
|
|
140
140
|
position: absolute;
|
|
141
141
|
left: 27.5%;
|
|
142
|
-
top:
|
|
142
|
+
top: 54%;
|
|
143
143
|
font-size: $FONT_SIZE_VS;
|
|
144
144
|
color: #3861ca;
|
|
145
145
|
font-weight: $FONT_WEIGHT_MEDIUM;
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
}
|
|
151
151
|
.lock-screen-preview .lock-msgContainer{
|
|
152
152
|
position: absolute;
|
|
153
|
-
top:
|
|
153
|
+
top: 43%;
|
|
154
154
|
left: 25.9%;
|
|
155
155
|
width: 21.5%;
|
|
156
156
|
height: 52px;
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
|
|
182
182
|
.main-screen-preview .msgContainer{
|
|
183
183
|
position: absolute;
|
|
184
|
-
top: 30
|
|
184
|
+
top: 30%;
|
|
185
185
|
left: 53%;
|
|
186
186
|
width: 42%;
|
|
187
187
|
height: 336px;
|
package/package.json
CHANGED
|
@@ -3002,7 +3002,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
|
|
|
3002
3002
|
ifError = this.state.checkValidation && (isVersionEnable ? this.state.errorData[`${this.state.currentTab - 1}`][val.id] : this.state.errorData[val.id]);
|
|
3003
3003
|
const { TAG_BRACKET_COUNT_MISMATCH_ERROR } = errorMessageForTags;
|
|
3004
3004
|
const { formatMessage } = this.props.intl;
|
|
3005
|
-
let errorMessageText = errorType === TAG_BRACKET_COUNT_MISMATCH_ERROR ?
|
|
3005
|
+
let errorMessageText = errorType === TAG_BRACKET_COUNT_MISMATCH_ERROR ? formatMessage(globalMessages.unbalanacedCurlyBraces) :(val.errorMessage && ifError ? val.errorMessage : '');
|
|
3006
3006
|
const value = isVersionEnable ? this.state.formData[`${this.state.currentTab - 1}`][val.id] : this.state.formData[val.id];
|
|
3007
3007
|
if (styling === 'semantic') {
|
|
3008
3008
|
columns.push(
|