@capillarytech/creatives-library 7.17.141 → 7.17.143

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.
@@ -1940,7 +1940,7 @@ new message content.",
1940
1940
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
1941
1941
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
1942
1942
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
1943
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
1943
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
1944
1944
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
1945
1945
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
1946
1946
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@capillarytech/creatives-library",
3
3
  "author": "meharaj",
4
- "version": "7.17.141",
4
+ "version": "7.17.143",
5
5
  "description": "Capillary creatives ui",
6
6
  "main": "./index.js",
7
7
  "module": "./index.es.js",
@@ -1897,7 +1897,7 @@
1897
1897
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
1898
1898
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
1899
1899
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
1900
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
1900
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
1901
1901
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
1902
1902
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
1903
1903
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -79,13 +79,13 @@ export const CapWhatsappQuickReply = (props) => {
79
79
  });
80
80
  };
81
81
  const quickReplyConfiguredBtn = ({ text, index, authenticationFlow = false }) => (
82
- <CapRow className="cap-whatsapp-quick-reply">
82
+ <CapRow className={`cap-whatsapp-quick-reply ${authenticationFlow && 'whatsapp-autofill-container'}`}>
83
83
  <CapRow className="whatsapp-quick-reply-save-container">
84
84
  {!authenticationFlow && <CapColumn>
85
85
  <CapIcon type="six-dots" />
86
86
  </CapColumn>}
87
87
  <CapColumn className="text-container">{text}</CapColumn>
88
- <CapColumn className={`quick-reply-icon ${authenticationFlow ? 'whatsapp-quick-reply-disabled-icons' : ''}`}>
88
+ <CapColumn className={`quick-reply-icon ${authenticationFlow && 'whatsapp-quick-reply-disabled-icons'}`}>
89
89
  <CapIcon
90
90
  onClick={() => handleSaveAndEditBtn(index, false)}
91
91
  type="edit"
@@ -37,6 +37,8 @@
37
37
  }
38
38
  .whatsapp-quick-reply-disabled-icons{
39
39
  color: $FONT_COLOR_04;
40
+ cursor: not-allowed;
41
+ pointer-events: none;
40
42
  }
41
43
  }
42
44
 
@@ -44,4 +46,9 @@
44
46
  padding: $CAP_SPACE_12;
45
47
  margin-left: 0;
46
48
  margin-top: 0.75rem;
49
+ }
50
+
51
+ .whatsapp-autofill-container {
52
+ margin-left: 0;
53
+ cursor: not-allowed;
47
54
  }
@@ -50,7 +50,7 @@ import { TEMPLATE, IMAGE_CAROUSEL, IMAGE, STICKER, TEXT, IMAGE_MAP, VIDEO } from
50
50
  import CapFacebookPreview from '../../v2Containers/CapFacebookPreview';
51
51
  import WhatsappStatusContainer from '../WhatsappStatusContainer';
52
52
  import { getWhatsappQuickReply } from '../../v2Containers/Whatsapp/utils';
53
- import { QUICK_REPLY } from '../../v2Containers/Whatsapp/constants';
53
+ import { QUICK_REPLY, WHATSAPP_CATEGORIES } from '../../v2Containers/Whatsapp/constants';
54
54
  import { ANDROID, INAPP_MESSAGE_LAYOUT_TYPES } from '../../v2Containers/InApp/constants';
55
55
 
56
56
  const wechatBodyNew = require('./assets/images/wechat_mobile_android.svg');
@@ -335,12 +335,12 @@ export class TemplatePreview extends React.Component { // eslint-disable-line re
335
335
  if (text) {
336
336
  renderArray.push(
337
337
  <CapLabel type="label21" className="whatsapp-cta-preview">
338
- <CapIcon
338
+ {type !== WHATSAPP_CATEGORIES.authentication && <CapIcon
339
339
  type={
340
340
  (ctaType || type) === 'PHONE_NUMBER' ? 'call' : 'launch'
341
341
  }
342
342
  size="xs"
343
- />
343
+ />}
344
344
  {text}
345
345
  </CapLabel>,
346
346
  );
@@ -1974,7 +1974,7 @@ new message content.",
1974
1974
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
1975
1975
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
1976
1976
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
1977
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
1977
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
1978
1978
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
1979
1979
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
1980
1980
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -1922,7 +1922,7 @@ new message content.",
1922
1922
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
1923
1923
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
1924
1924
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
1925
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
1925
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
1926
1926
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
1927
1927
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
1928
1928
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -5523,7 +5523,7 @@ new message content.",
5523
5523
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
5524
5524
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
5525
5525
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
5526
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
5526
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
5527
5527
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
5528
5528
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
5529
5529
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -9263,7 +9263,7 @@ new message content.",
9263
9263
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
9264
9264
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
9265
9265
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
9266
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
9266
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
9267
9267
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
9268
9268
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
9269
9269
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -1922,7 +1922,7 @@ new message content.",
1922
1922
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
1923
1923
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
1924
1924
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
1925
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
1925
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
1926
1926
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
1927
1927
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
1928
1928
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -21162,7 +21162,7 @@ new message content.",
21162
21162
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
21163
21163
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
21164
21164
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
21165
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
21165
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
21166
21166
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
21167
21167
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
21168
21168
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -1922,7 +1922,7 @@ new message content.",
1922
1922
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
1923
1923
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
1924
1924
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
1925
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
1925
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
1926
1926
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
1927
1927
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
1928
1928
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -19884,7 +19884,7 @@ new message content.",
19884
19884
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
19885
19885
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
19886
19886
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
19887
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
19887
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
19888
19888
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
19889
19889
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
19890
19890
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -22436,7 +22436,7 @@ new message content.",
22436
22436
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
22437
22437
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
22438
22438
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
22439
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
22439
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
22440
22440
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
22441
22441
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
22442
22442
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -25447,7 +25447,7 @@ new message content.",
25447
25447
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
25448
25448
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
25449
25449
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
25450
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
25450
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
25451
25451
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
25452
25452
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
25453
25453
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -27706,7 +27706,7 @@ new message content.",
27706
27706
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
27707
27707
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
27708
27708
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
27709
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
27709
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
27710
27710
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
27711
27711
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
27712
27712
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -29982,7 +29982,7 @@ new message content.",
29982
29982
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
29983
29983
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
29984
29984
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
29985
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
29985
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
29986
29986
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
29987
29987
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
29988
29988
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -32271,7 +32271,7 @@ new message content.",
32271
32271
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
32272
32272
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
32273
32273
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
32274
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
32274
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
32275
32275
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
32276
32276
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
32277
32277
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -34549,7 +34549,7 @@ new message content.",
34549
34549
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
34550
34550
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
34551
34551
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
34552
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
34552
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
34553
34553
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
34554
34554
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
34555
34555
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -59797,7 +59797,7 @@ new message content.",
59797
59797
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
59798
59798
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
59799
59799
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
59800
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
59800
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
59801
59801
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
59802
59802
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
59803
59803
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -62541,7 +62541,7 @@ new message content.",
62541
62541
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
62542
62542
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
62543
62543
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
62544
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
62544
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
62545
62545
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
62546
62546
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
62547
62547
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -65881,7 +65881,7 @@ new message content.",
65881
65881
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
65882
65882
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
65883
65883
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
65884
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
65884
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
65885
65885
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
65886
65886
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
65887
65887
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -68625,7 +68625,7 @@ new message content.",
68625
68625
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
68626
68626
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
68627
68627
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
68628
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
68628
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
68629
68629
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
68630
68630
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
68631
68631
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -72341,7 +72341,7 @@ new message content.",
72341
72341
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
72342
72342
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
72343
72343
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
72344
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
72344
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
72345
72345
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
72346
72346
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
72347
72347
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -75527,7 +75527,7 @@ new message content.",
75527
75527
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
75528
75528
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
75529
75529
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
75530
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
75530
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
75531
75531
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
75532
75532
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
75533
75533
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -78569,7 +78569,7 @@ new message content.",
78569
78569
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
78570
78570
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
78571
78571
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
78572
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
78572
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
78573
78573
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
78574
78574
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
78575
78575
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -81622,7 +81622,7 @@ new message content.",
81622
81622
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
81623
81623
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
81624
81624
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
81625
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
81625
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
81626
81626
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
81627
81627
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
81628
81628
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -87437,7 +87437,7 @@ new message content.",
87437
87437
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
87438
87438
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
87439
87439
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
87440
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
87440
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
87441
87441
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
87442
87442
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
87443
87443
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -90595,7 +90595,7 @@ new message content.",
90595
90595
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
90596
90596
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
90597
90597
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
90598
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
90598
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
90599
90599
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
90600
90600
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
90601
90601
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -93684,7 +93684,7 @@ new message content.",
93684
93684
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
93685
93685
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
93686
93686
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
93687
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
93687
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
93688
93688
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
93689
93689
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
93690
93690
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -96672,7 +96672,7 @@ new message content.",
96672
96672
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
96673
96673
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
96674
96674
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
96675
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
96675
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
96676
96676
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
96677
96677
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
96678
96678
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -99420,7 +99420,7 @@ new message content.",
99420
99420
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
99421
99421
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
99422
99422
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
99423
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
99423
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
99424
99424
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
99425
99425
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
99426
99426
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -102101,7 +102101,7 @@ new message content.",
102101
102101
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
102102
102102
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
102103
102103
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
102104
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
102104
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
102105
102105
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
102106
102106
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
102107
102107
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -104360,7 +104360,7 @@ new message content.",
104360
104360
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
104361
104361
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
104362
104362
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
104363
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
104363
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
104364
104364
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
104365
104365
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
104366
104366
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -106636,7 +106636,7 @@ new message content.",
106636
106636
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
106637
106637
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
106638
106638
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
106639
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
106639
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
106640
106640
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
106641
106641
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
106642
106642
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -108925,7 +108925,7 @@ new message content.",
108925
108925
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
108926
108926
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
108927
108927
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
108928
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
108928
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
108929
108929
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
108930
108930
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
108931
108931
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -1922,7 +1922,7 @@ new message content.",
1922
1922
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
1923
1923
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
1924
1924
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
1925
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
1925
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
1926
1926
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
1927
1927
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
1928
1928
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -8211,7 +8211,7 @@ new message content.",
8211
8211
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
8212
8212
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
8213
8213
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
8214
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
8214
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
8215
8215
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
8216
8216
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
8217
8217
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -10905,7 +10905,7 @@ new message content.",
10905
10905
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
10906
10906
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
10907
10907
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
10908
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
10908
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
10909
10909
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
10910
10910
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
10911
10911
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -17378,7 +17378,7 @@ new message content.",
17378
17378
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
17379
17379
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
17380
17380
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
17381
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
17381
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
17382
17382
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
17383
17383
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
17384
17384
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -20072,7 +20072,7 @@ new message content.",
20072
20072
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
20073
20073
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
20074
20074
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
20075
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
20075
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
20076
20076
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
20077
20077
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
20078
20078
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -26787,7 +26787,7 @@ new message content.",
26787
26787
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
26788
26788
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
26789
26789
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
26790
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
26790
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
26791
26791
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
26792
26792
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
26793
26793
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -29516,7 +29516,7 @@ new message content.",
29516
29516
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
29517
29517
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
29518
29518
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
29519
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
29519
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
29520
29520
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
29521
29521
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
29522
29522
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -38452,7 +38452,7 @@ new message content.",
38452
38452
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
38453
38453
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
38454
38454
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
38455
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
38455
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
38456
38456
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
38457
38457
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
38458
38458
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -41181,7 +41181,7 @@ new message content.",
41181
41181
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
41182
41182
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
41183
41183
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
41184
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
41184
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
41185
41185
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
41186
41186
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
41187
41187
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -50159,7 +50159,7 @@ new message content.",
50159
50159
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
50160
50160
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
50161
50161
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
50162
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
50162
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
50163
50163
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
50164
50164
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
50165
50165
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -52888,7 +52888,7 @@ new message content.",
52888
52888
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
52889
52889
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
52890
52890
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
52891
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
52891
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
52892
52892
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
52893
52893
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
52894
52894
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -57246,7 +57246,7 @@ new message content.",
57246
57246
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
57247
57247
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
57248
57248
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
57249
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
57249
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
57250
57250
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
57251
57251
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
57252
57252
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -60645,7 +60645,7 @@ new message content.",
60645
60645
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
60646
60646
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
60647
60647
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
60648
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
60648
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
60649
60649
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
60650
60650
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
60651
60651
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -65421,7 +65421,7 @@ new message content.",
65421
65421
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
65422
65422
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
65423
65423
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
65424
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
65424
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
65425
65425
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
65426
65426
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
65427
65427
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -68820,7 +68820,7 @@ new message content.",
68820
68820
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
68821
68821
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
68822
68822
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
68823
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
68823
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
68824
68824
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
68825
68825
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
68826
68826
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -73838,7 +73838,7 @@ new message content.",
73838
73838
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
73839
73839
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
73840
73840
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
73841
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
73841
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
73842
73842
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
73843
73843
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
73844
73844
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -77272,7 +77272,7 @@ new message content.",
77272
77272
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
77273
77273
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
77274
77274
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
77275
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
77275
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
77276
77276
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
77277
77277
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
77278
77278
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",
@@ -82410,7 +82410,7 @@ new message content.",
82410
82410
  "creatives.containersV2.Whatsapp.awaitingStatusMsg": "This template is awaiting approval",
82411
82411
  "creatives.containersV2.Whatsapp.azerbaijani": "Azerbaijani",
82412
82412
  "creatives.containersV2.Whatsapp.bengali": "Bengali",
82413
- "creatives.containersV2.Whatsapp.btnDesc": "These will be show clickable buttons below your message.",
82413
+ "creatives.containersV2.Whatsapp.btnDesc": "These will be clickable buttons below your message.",
82414
82414
  "creatives.containersV2.Whatsapp.btnDisabledTooltip": "Please add all mandatory fields to proceed further",
82415
82415
  "creatives.containersV2.Whatsapp.btnLabel": "Buttons",
82416
82416
  "creatives.containersV2.Whatsapp.btnTypeCTA": "Call to action",