@capillarytech/creatives-library 8.0.259 → 8.0.260-alpha.0

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.
Files changed (157) hide show
  1. package/assets/Android.png +0 -0
  2. package/assets/iOS.png +0 -0
  3. package/constants/unified.js +1 -2
  4. package/initialReducer.js +0 -2
  5. package/package.json +1 -1
  6. package/services/api.js +0 -10
  7. package/services/tests/api.test.js +0 -34
  8. package/translations/en.json +3 -4
  9. package/utils/common.js +0 -12
  10. package/utils/commonUtils.js +5 -28
  11. package/utils/tests/commonUtil.test.js +0 -224
  12. package/utils/transformTemplateConfig.js +10 -0
  13. package/v2Components/CapDeviceContent/index.js +56 -61
  14. package/v2Components/CapTagList/index.js +1 -6
  15. package/v2Components/CapTagListWithInput/index.js +1 -5
  16. package/v2Components/CapTagListWithInput/messages.js +1 -1
  17. package/v2Components/CapWhatsappCTA/tests/index.test.js +0 -5
  18. package/v2Components/ErrorInfoNote/index.js +72 -457
  19. package/v2Components/ErrorInfoNote/messages.js +6 -36
  20. package/v2Components/ErrorInfoNote/style.scss +6 -282
  21. package/v2Components/FormBuilder/index.js +4 -4
  22. package/v2Components/FormBuilder/tests/index.test.js +4 -13
  23. package/v2Components/HtmlEditor/HTMLEditor.js +94 -547
  24. package/v2Components/HtmlEditor/__tests__/HTMLEditor.test.js +133 -1441
  25. package/v2Components/HtmlEditor/__tests__/index.lazy.test.js +16 -27
  26. package/v2Components/HtmlEditor/_htmlEditor.scss +45 -108
  27. package/v2Components/HtmlEditor/_index.lazy.scss +1 -0
  28. package/v2Components/HtmlEditor/components/CodeEditorPane/_codeEditorPane.scss +102 -23
  29. package/v2Components/HtmlEditor/components/CodeEditorPane/index.js +140 -148
  30. package/v2Components/HtmlEditor/components/DeviceToggle/_deviceToggle.scss +1 -2
  31. package/v2Components/HtmlEditor/components/DeviceToggle/index.js +3 -3
  32. package/v2Components/HtmlEditor/components/EditorToolbar/_editorToolbar.scss +0 -9
  33. package/v2Components/HtmlEditor/components/EditorToolbar/index.js +4 -4
  34. package/v2Components/HtmlEditor/components/FullscreenModal/_fullscreenModal.scss +0 -22
  35. package/v2Components/HtmlEditor/components/InAppPreviewPane/DeviceFrame.js +7 -4
  36. package/v2Components/HtmlEditor/components/InAppPreviewPane/__tests__/DeviceFrame.test.js +45 -35
  37. package/v2Components/HtmlEditor/components/InAppPreviewPane/_inAppPreviewPane.scss +3 -1
  38. package/v2Components/HtmlEditor/components/InAppPreviewPane/constants.js +33 -33
  39. package/v2Components/HtmlEditor/components/InAppPreviewPane/index.js +6 -7
  40. package/v2Components/HtmlEditor/components/PreviewPane/_previewPane.scss +6 -3
  41. package/v2Components/HtmlEditor/components/PreviewPane/index.js +43 -22
  42. package/v2Components/HtmlEditor/components/SplitContainer/_splitContainer.scss +1 -1
  43. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/__tests__/index.test.js +152 -0
  44. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/_validationErrorDisplay.scss +0 -1
  45. package/v2Components/HtmlEditor/components/ValidationErrorDisplay/index.js +31 -49
  46. package/v2Components/HtmlEditor/components/ValidationPanel/_validationPanel.scss +34 -50
  47. package/v2Components/HtmlEditor/components/ValidationPanel/index.js +41 -70
  48. package/v2Components/HtmlEditor/constants.js +20 -42
  49. package/v2Components/HtmlEditor/hooks/__tests__/useInAppContent.test.js +16 -373
  50. package/v2Components/HtmlEditor/hooks/__tests__/useValidation.test.js +16 -120
  51. package/v2Components/HtmlEditor/hooks/useEditorContent.js +2 -5
  52. package/v2Components/HtmlEditor/hooks/useInAppContent.js +146 -88
  53. package/v2Components/HtmlEditor/hooks/useValidation.js +53 -189
  54. package/v2Components/HtmlEditor/index.js +1 -1
  55. package/v2Components/HtmlEditor/messages.js +94 -92
  56. package/v2Components/HtmlEditor/utils/__tests__/htmlValidator.enhanced.test.js +45 -94
  57. package/v2Components/HtmlEditor/utils/__tests__/validationAdapter.test.js +0 -134
  58. package/v2Components/HtmlEditor/utils/contentSanitizer.js +41 -40
  59. package/v2Components/HtmlEditor/utils/htmlValidator.js +72 -71
  60. package/v2Components/HtmlEditor/utils/liquidTemplateSupport.js +102 -134
  61. package/v2Components/HtmlEditor/utils/properSyntaxHighlighting.js +25 -23
  62. package/v2Components/HtmlEditor/utils/validationAdapter.js +41 -66
  63. package/v2Components/MobilePushPreviewV2/index.js +7 -32
  64. package/v2Components/TemplatePreview/_templatePreview.scss +24 -55
  65. package/v2Components/TemplatePreview/index.js +32 -47
  66. package/v2Components/TemplatePreview/messages.js +0 -4
  67. package/v2Components/TestAndPreviewSlidebox/_testAndPreviewSlidebox.scss +0 -1
  68. package/v2Containers/BeeEditor/index.js +90 -172
  69. package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +3 -4
  70. package/v2Containers/CreativesContainer/SlideBoxContent.js +52 -128
  71. package/v2Containers/CreativesContainer/SlideBoxFooter.js +13 -163
  72. package/v2Containers/CreativesContainer/SlideBoxHeader.js +1 -2
  73. package/v2Containers/CreativesContainer/constants.js +0 -1
  74. package/v2Containers/CreativesContainer/index.js +46 -240
  75. package/v2Containers/CreativesContainer/messages.js +0 -8
  76. package/v2Containers/CreativesContainer/tests/SlideBoxFooter.test.js +2 -11
  77. package/v2Containers/CreativesContainer/tests/__snapshots__/SlideBoxContent.test.js.snap +50 -38
  78. package/v2Containers/CreativesContainer/tests/__snapshots__/index.test.js.snap +0 -106
  79. package/v2Containers/Email/actions.js +0 -7
  80. package/v2Containers/Email/constants.js +1 -5
  81. package/v2Containers/Email/index.js +30 -239
  82. package/v2Containers/Email/messages.js +0 -32
  83. package/v2Containers/Email/reducer.js +1 -12
  84. package/v2Containers/Email/sagas.js +7 -61
  85. package/v2Containers/Email/tests/__snapshots__/reducer.test.js.snap +0 -2
  86. package/v2Containers/Email/tests/reducer.test.js +0 -46
  87. package/v2Containers/Email/tests/sagas.test.js +29 -320
  88. package/v2Containers/EmailWrapper/components/EmailWrapperView.js +21 -211
  89. package/v2Containers/EmailWrapper/components/HTMLEditorTesting.js +74 -40
  90. package/v2Containers/EmailWrapper/components/__tests__/HTMLEditorTesting.test.js +67 -2
  91. package/v2Containers/EmailWrapper/constants.js +0 -2
  92. package/v2Containers/EmailWrapper/hooks/useEmailWrapper.js +77 -629
  93. package/v2Containers/EmailWrapper/index.js +23 -103
  94. package/v2Containers/EmailWrapper/messages.js +1 -65
  95. package/v2Containers/EmailWrapper/tests/EmailWrapperView.test.js +214 -0
  96. package/v2Containers/EmailWrapper/tests/useEmailWrapper.test.js +77 -594
  97. package/v2Containers/InApp/actions.js +0 -7
  98. package/v2Containers/InApp/constants.js +4 -20
  99. package/v2Containers/InApp/index.js +360 -804
  100. package/v2Containers/InApp/index.scss +3 -4
  101. package/v2Containers/InApp/messages.js +3 -7
  102. package/v2Containers/InApp/reducer.js +3 -21
  103. package/v2Containers/InApp/sagas.js +9 -29
  104. package/v2Containers/InApp/selectors.js +5 -25
  105. package/v2Containers/InApp/tests/index.test.js +71 -152
  106. package/v2Containers/InApp/tests/reducer.test.js +0 -34
  107. package/v2Containers/InApp/tests/sagas.test.js +9 -61
  108. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +12 -39
  109. package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +6 -10
  110. package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +75 -102
  111. package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +54 -81
  112. package/v2Containers/MobilePushNew/index.js +2 -3
  113. package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +178 -262
  114. package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +12 -16
  115. package/v2Containers/SmsTrai/Edit/index.js +1 -2
  116. package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +111 -468
  117. package/v2Containers/TagList/index.js +19 -62
  118. package/v2Containers/Templates/_templates.scss +1 -60
  119. package/v2Containers/Templates/index.js +4 -89
  120. package/v2Containers/Templates/messages.js +0 -4
  121. package/v2Containers/WebPush/Create/messages.js +8 -0
  122. package/v2Containers/WebPush/Create/preview/PreviewControls.js +2 -2
  123. package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +3 -1
  124. package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +5 -1
  125. package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +5 -1
  126. package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +5 -1
  127. package/v2Containers/WebPush/Create/preview/preview.scss +7 -0
  128. package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +734 -1306
  129. package/v2Components/ErrorInfoNote/constants.js +0 -1
  130. package/v2Components/HtmlEditor/__tests__/HTMLEditor.apiErrors.test.js +0 -874
  131. package/v2Components/HtmlEditor/components/ValidationPanel/constants.js +0 -6
  132. package/v2Components/HtmlEditor/components/ValidationTabs/_validationTabs.scss +0 -255
  133. package/v2Components/HtmlEditor/components/ValidationTabs/index.js +0 -364
  134. package/v2Components/HtmlEditor/components/ValidationTabs/messages.js +0 -51
  135. package/v2Components/HtmlEditor/utils/validationConstants.js +0 -40
  136. package/v2Containers/BeePopupEditor/_beePopupEditor.scss +0 -14
  137. package/v2Containers/BeePopupEditor/constants.js +0 -10
  138. package/v2Containers/BeePopupEditor/index.js +0 -194
  139. package/v2Containers/BeePopupEditor/tests/index.test.js +0 -627
  140. package/v2Containers/EmailWrapper/components/EmailHTMLEditor.js +0 -1285
  141. package/v2Containers/EmailWrapper/components/__tests__/EmailHTMLEditor.test.js +0 -1880
  142. package/v2Containers/EmailWrapper/components/__tests__/EmailWrapperView.test.js +0 -520
  143. package/v2Containers/EmailWrapper/tests/useEmailWrapper.edgeCases.test.js +0 -643
  144. package/v2Containers/InApp/__tests__/InAppHTMLEditor.test.js +0 -376
  145. package/v2Containers/InApp/__tests__/sagas.test.js +0 -363
  146. package/v2Containers/InApp/tests/selectors.test.js +0 -612
  147. package/v2Containers/InAppWrapper/components/InAppWrapperView.js +0 -151
  148. package/v2Containers/InAppWrapper/components/__tests__/InAppWrapperView.test.js +0 -267
  149. package/v2Containers/InAppWrapper/components/inAppWrapperView.scss +0 -23
  150. package/v2Containers/InAppWrapper/constants.js +0 -16
  151. package/v2Containers/InAppWrapper/hooks/__tests__/useInAppWrapper.test.js +0 -473
  152. package/v2Containers/InAppWrapper/hooks/useInAppWrapper.js +0 -198
  153. package/v2Containers/InAppWrapper/index.js +0 -148
  154. package/v2Containers/InAppWrapper/messages.js +0 -49
  155. package/v2Containers/InappAdvance/index.js +0 -1099
  156. package/v2Containers/InappAdvance/index.scss +0 -10
  157. package/v2Containers/InappAdvance/tests/index.test.js +0 -448
@@ -189,7 +189,7 @@ exports[`Creatives line image carousel test/> should render 1`] = `
189
189
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
190
190
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
191
191
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
192
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
192
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
193
193
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
194
194
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
195
195
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -197,13 +197,13 @@ exports[`Creatives line image carousel test/> should render 1`] = `
197
197
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
198
198
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
199
199
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
200
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
200
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
201
201
  "creatives.componentsV2.CapImageUpload.or": "OR",
202
202
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
203
203
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
204
204
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
205
205
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
206
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
206
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
207
207
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
208
208
  "creatives.componentsV2.CapTagList.Ok": "Ok",
209
209
  "creatives.componentsV2.CapTagList.all": "All",
@@ -1896,7 +1896,6 @@ new message content.",
1896
1896
  "creatives.containersV2.WeChat.templateName": "Template Name",
1897
1897
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
1898
1898
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
1899
- "creatives.containersV2.WebPush.addLabels": "Add labels",
1900
1899
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1901
1900
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1902
1901
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -2282,7 +2281,6 @@ new message content.",
2282
2281
  "email": [Function],
2283
2282
  "facebookPreview": [Function],
2284
2283
  "gallery": [Function],
2285
- "inApp": [Function],
2286
2284
  "language": [Function],
2287
2285
  "navigationConfig": [Function],
2288
2286
  "previewAndTest": [Function],
@@ -3118,7 +3116,6 @@ new message content.",
3118
3116
  },
3119
3117
  ]
3120
3118
  }
3121
- showTruncatedTooltip={false}
3122
3119
  size="large"
3123
3120
  style={
3124
3121
  Object {
@@ -3137,7 +3134,6 @@ new message content.",
3137
3134
  />
3138
3135
  }
3139
3136
  onChange={[Function]}
3140
- onDropdownVisibleChange={[Function]}
3141
3137
  removeIcon={
3142
3138
  <CapIcon
3143
3139
  size="s"
@@ -3202,7 +3198,6 @@ new message content.",
3202
3198
  onBlur={[Function]}
3203
3199
  onChange={[Function]}
3204
3200
  onDeselect={[Function]}
3205
- onDropdownVisibleChange={[Function]}
3206
3201
  onFocus={[Function]}
3207
3202
  onInputKeyDown={[Function]}
3208
3203
  onSearch={[Function]}
@@ -3441,11 +3436,7 @@ new message content.",
3441
3436
  }
3442
3437
  }
3443
3438
  title=""
3444
- >
3445
- <div
3446
- className="cap-select-option-tooltip"
3447
- />
3448
- </div>
3439
+ />
3449
3440
  </div>
3450
3441
  <span
3451
3442
  className="ant-select-arrow"
@@ -3881,7 +3872,7 @@ exports[`Creatives line image carousel test/> should render 2`] = `
3881
3872
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
3882
3873
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
3883
3874
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
3884
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
3875
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
3885
3876
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
3886
3877
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
3887
3878
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -3889,13 +3880,13 @@ exports[`Creatives line image carousel test/> should render 2`] = `
3889
3880
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
3890
3881
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
3891
3882
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
3892
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
3883
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
3893
3884
  "creatives.componentsV2.CapImageUpload.or": "OR",
3894
3885
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
3895
3886
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
3896
3887
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
3897
3888
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
3898
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
3889
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
3899
3890
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
3900
3891
  "creatives.componentsV2.CapTagList.Ok": "Ok",
3901
3892
  "creatives.componentsV2.CapTagList.all": "All",
@@ -5588,7 +5579,6 @@ new message content.",
5588
5579
  "creatives.containersV2.WeChat.templateName": "Template Name",
5589
5580
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
5590
5581
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
5591
- "creatives.containersV2.WebPush.addLabels": "Add labels",
5592
5582
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
5593
5583
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
5594
5584
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -5974,7 +5964,6 @@ new message content.",
5974
5964
  "email": [Function],
5975
5965
  "facebookPreview": [Function],
5976
5966
  "gallery": [Function],
5977
- "inApp": [Function],
5978
5967
  "language": [Function],
5979
5968
  "navigationConfig": [Function],
5980
5969
  "previewAndTest": [Function],
@@ -6949,7 +6938,6 @@ new message content.",
6949
6938
  },
6950
6939
  ]
6951
6940
  }
6952
- showTruncatedTooltip={false}
6953
6941
  size="large"
6954
6942
  style={
6955
6943
  Object {
@@ -6968,7 +6956,6 @@ new message content.",
6968
6956
  />
6969
6957
  }
6970
6958
  onChange={[Function]}
6971
- onDropdownVisibleChange={[Function]}
6972
6959
  removeIcon={
6973
6960
  <CapIcon
6974
6961
  size="s"
@@ -7033,7 +7020,6 @@ new message content.",
7033
7020
  onBlur={[Function]}
7034
7021
  onChange={[Function]}
7035
7022
  onDeselect={[Function]}
7036
- onDropdownVisibleChange={[Function]}
7037
7023
  onFocus={[Function]}
7038
7024
  onInputKeyDown={[Function]}
7039
7025
  onSearch={[Function]}
@@ -7272,11 +7258,7 @@ new message content.",
7272
7258
  }
7273
7259
  }
7274
7260
  title=""
7275
- >
7276
- <div
7277
- className="cap-select-option-tooltip"
7278
- />
7279
- </div>
7261
+ />
7280
7262
  </div>
7281
7263
  <span
7282
7264
  className="ant-select-arrow"
@@ -7712,7 +7694,7 @@ exports[`Creatives line image carousel test/> should render 3`] = `
7712
7694
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
7713
7695
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
7714
7696
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
7715
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
7697
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
7716
7698
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
7717
7699
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
7718
7700
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -7720,13 +7702,13 @@ exports[`Creatives line image carousel test/> should render 3`] = `
7720
7702
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
7721
7703
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
7722
7704
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
7723
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
7705
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
7724
7706
  "creatives.componentsV2.CapImageUpload.or": "OR",
7725
7707
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
7726
7708
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
7727
7709
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
7728
7710
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
7729
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
7711
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
7730
7712
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
7731
7713
  "creatives.componentsV2.CapTagList.Ok": "Ok",
7732
7714
  "creatives.componentsV2.CapTagList.all": "All",
@@ -9419,7 +9401,6 @@ new message content.",
9419
9401
  "creatives.containersV2.WeChat.templateName": "Template Name",
9420
9402
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
9421
9403
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
9422
- "creatives.containersV2.WebPush.addLabels": "Add labels",
9423
9404
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
9424
9405
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
9425
9406
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -9805,7 +9786,6 @@ new message content.",
9805
9786
  "email": [Function],
9806
9787
  "facebookPreview": [Function],
9807
9788
  "gallery": [Function],
9808
- "inApp": [Function],
9809
9789
  "language": [Function],
9810
9790
  "navigationConfig": [Function],
9811
9791
  "previewAndTest": [Function],
@@ -10724,7 +10704,6 @@ new message content.",
10724
10704
  },
10725
10705
  ]
10726
10706
  }
10727
- showTruncatedTooltip={false}
10728
10707
  size="large"
10729
10708
  style={
10730
10709
  Object {
@@ -10743,7 +10722,6 @@ new message content.",
10743
10722
  />
10744
10723
  }
10745
10724
  onChange={[Function]}
10746
- onDropdownVisibleChange={[Function]}
10747
10725
  removeIcon={
10748
10726
  <CapIcon
10749
10727
  size="s"
@@ -10808,7 +10786,6 @@ new message content.",
10808
10786
  onBlur={[Function]}
10809
10787
  onChange={[Function]}
10810
10788
  onDeselect={[Function]}
10811
- onDropdownVisibleChange={[Function]}
10812
10789
  onFocus={[Function]}
10813
10790
  onInputKeyDown={[Function]}
10814
10791
  onSearch={[Function]}
@@ -11047,11 +11024,7 @@ new message content.",
11047
11024
  }
11048
11025
  }
11049
11026
  title=""
11050
- >
11051
- <div
11052
- className="cap-select-option-tooltip"
11053
- />
11054
- </div>
11027
+ />
11055
11028
  </div>
11056
11029
  <span
11057
11030
  className="ant-select-arrow"
@@ -189,7 +189,7 @@ exports[`line wrapper test/> should render line component new 1`] = `
189
189
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
190
190
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
191
191
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
192
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
192
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
193
193
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
194
194
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
195
195
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -197,13 +197,13 @@ exports[`line wrapper test/> should render line component new 1`] = `
197
197
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
198
198
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
199
199
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
200
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
200
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
201
201
  "creatives.componentsV2.CapImageUpload.or": "OR",
202
202
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
203
203
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
204
204
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
205
205
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
206
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
206
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
207
207
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
208
208
  "creatives.componentsV2.CapTagList.Ok": "Ok",
209
209
  "creatives.componentsV2.CapTagList.all": "All",
@@ -1896,7 +1896,6 @@ new message content.",
1896
1896
  "creatives.containersV2.WeChat.templateName": "Template Name",
1897
1897
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
1898
1898
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
1899
- "creatives.containersV2.WebPush.addLabels": "Add labels",
1900
1899
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
1901
1900
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
1902
1901
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -2282,7 +2281,6 @@ new message content.",
2282
2281
  "email": [Function],
2283
2282
  "facebookPreview": [Function],
2284
2283
  "gallery": [Function],
2285
- "inApp": [Function],
2286
2284
  "language": [Function],
2287
2285
  "navigationConfig": [Function],
2288
2286
  "previewAndTest": [Function],
@@ -19464,7 +19462,7 @@ exports[`line wrapper test/> should render line component old 1`] = `
19464
19462
  "creatives.componentsV2.CapDocumentUpload.imageDimenstionDescription": "Dimensions upto: {width}px x {height}px",
19465
19463
  "creatives.componentsV2.CapDocumentUpload.or": "OR",
19466
19464
  "creatives.componentsV2.CapDocumentUpload.uploadComputer": "Select from computer",
19467
- "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size up to: {size}",
19465
+ "creatives.componentsV2.CapDocumentUpload.whatsappDocSize": "Size upto: {size}",
19468
19466
  "creatives.componentsV2.CapImageUpload.aspectRatio": "Aspect ratio: 1:1",
19469
19467
  "creatives.componentsV2.CapImageUpload.dragAndDrop": "Drag and drop image here",
19470
19468
  "creatives.componentsV2.CapImageUpload.format": "Format: JPEG, JPG, PNG",
@@ -19472,13 +19470,13 @@ exports[`line wrapper test/> should render line component old 1`] = `
19472
19470
  "creatives.componentsV2.CapImageUpload.imageErrorDesc": "Please upload the image with allowed file extension, size, dimension and aspect ratio",
19473
19471
  "creatives.componentsV2.CapImageUpload.imageGallery": "Gallery",
19474
19472
  "creatives.componentsV2.CapImageUpload.imageReUpload": "Reupload",
19475
- "creatives.componentsV2.CapImageUpload.imageSize": "Size up to: 2MB",
19473
+ "creatives.componentsV2.CapImageUpload.imageSize": "Size upto: 2MB",
19476
19474
  "creatives.componentsV2.CapImageUpload.or": "OR",
19477
19475
  "creatives.componentsV2.CapImageUpload.uploadComputer": "Select from computer",
19478
19476
  "creatives.componentsV2.CapImageUpload.uploadGallery": "Gallery",
19479
19477
  "creatives.componentsV2.CapImageUpload.uploadImageDescription": "The relevant image that complements the message context.",
19480
19478
  "creatives.componentsV2.CapImageUpload.whatsappAspectRatio": "Max aspect ratio: 1.91:1",
19481
- "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size up to: 5MB",
19479
+ "creatives.componentsV2.CapImageUpload.whatsappImageSize": "Size upto: 5MB",
19482
19480
  "creatives.componentsV2.CapTagList.Cancel": "Cancel",
19483
19481
  "creatives.componentsV2.CapTagList.Ok": "Ok",
19484
19482
  "creatives.componentsV2.CapTagList.all": "All",
@@ -21171,7 +21169,6 @@ new message content.",
21171
21169
  "creatives.containersV2.WeChat.templateName": "Template Name",
21172
21170
  "creatives.containersV2.WeChat.wechatCreateSuccess": "WeChat template mapped successfully",
21173
21171
  "creatives.containersV2.WeChat.wechatEditSuccess": "WeChat template edited successfully",
21174
- "creatives.containersV2.WebPush.addLabels": "Add labels",
21175
21172
  "creatives.containersV2.Whatsapp.IncorrectCategoryError": "INCORRECT CATEGORY: Message content different from expected content in the category selected. Refer {here} for expected content in each category.",
21176
21173
  "creatives.containersV2.Whatsapp.accountUpdate": "Account update",
21177
21174
  "creatives.containersV2.Whatsapp.accountUpdateTooltip": "Let customers know about updates or changes to their accounts.",
@@ -21557,7 +21554,6 @@ new message content.",
21557
21554
  "email": [Function],
21558
21555
  "facebookPreview": [Function],
21559
21556
  "gallery": [Function],
21560
- "inApp": [Function],
21561
21557
  "language": [Function],
21562
21558
  "navigationConfig": [Function],
21563
21559
  "previewAndTest": [Function],