@capillarytech/creatives-library 8.0.340-beta.0 → 8.0.340-beta.0.1
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 +1 -1
- package/styles/containers/layout/_layoutPage.scss +1 -1
- package/v2Components/CapTagList/index.js +18 -6
- package/v2Components/CommonTestAndPreview/CustomValuesEditor.js +7 -8
- package/v2Components/CommonTestAndPreview/UnifiedPreview/PreviewHeader.js +1 -1
- package/v2Components/CommonTestAndPreview/UnifiedPreview/SmsPreviewContent.js +7 -5
- package/v2Components/CommonTestAndPreview/UnifiedPreview/_unifiedPreview.scss +7 -3
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +27 -1
- package/v2Components/CommonTestAndPreview/index.js +2 -2
- package/v2Components/TestAndPreviewSlidebox/CustomValuesEditor.js +1 -1
- package/v2Containers/MobilePushNew/index.scss +3 -3
- package/v2Containers/Sms/Create/_smsCreate.scss +9 -2
- package/v2Containers/Sms/SCHEMA_FORMBUILDER_MAP.md +922 -0
- package/v2Containers/Sms/initialSchema.js +7 -1
|
@@ -8,6 +8,9 @@ export const response = {
|
|
|
8
8
|
sections: [
|
|
9
9
|
{
|
|
10
10
|
type: 'parent',
|
|
11
|
+
rowStyle: {
|
|
12
|
+
flexDirection: 'column',
|
|
13
|
+
},
|
|
11
14
|
childSections: [
|
|
12
15
|
{
|
|
13
16
|
type: "multicols",
|
|
@@ -26,6 +29,9 @@ export const response = {
|
|
|
26
29
|
},
|
|
27
30
|
{
|
|
28
31
|
type: "parent",
|
|
32
|
+
colStyle: {
|
|
33
|
+
width: '100%'
|
|
34
|
+
},
|
|
29
35
|
|
|
30
36
|
childSections: [
|
|
31
37
|
{
|
|
@@ -104,7 +110,7 @@ export const response = {
|
|
|
104
110
|
type: "textarea",
|
|
105
111
|
metaType: "text",
|
|
106
112
|
datatype: "string",
|
|
107
|
-
style: {marginBottom: '16px'},
|
|
113
|
+
style: {marginBottom: '16px', fontSize: '14px'},
|
|
108
114
|
required: true,
|
|
109
115
|
errorMessage: "Template content has unsupported/missing tags!",
|
|
110
116
|
placeholder: "Please input sms template content.",
|