@capillarytech/creatives-library 8.0.299-alpha.5 → 8.0.299-alpha.7
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/v2Components/CommonTestAndPreview/CustomerCreationModal.js +2 -2
- package/v2Components/CommonTestAndPreview/_commonTestAndPreview.scss +762 -702
- package/v2Components/CommonTestAndPreview/index.js +1 -16
- package/v2Components/HtmlEditor/hooks/__tests__/useValidation.test.js +320 -0
- package/v2Components/HtmlEditor/utils/__tests__/htmlValidator.enhanced.test.js +132 -0
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +1360 -1480
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +309 -339
- package/v2Containers/TemplatesV2/TemplatesV2.style.js +3 -9
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +5101 -5441
package/package.json
CHANGED
|
@@ -215,7 +215,7 @@ const CustomerCreationModal = ({
|
|
|
215
215
|
}
|
|
216
216
|
title={<FormattedMessage {...messages.customerCreationModalTitle} />}
|
|
217
217
|
wrapClassName="common-test-preview-modal-wrap"
|
|
218
|
-
className=
|
|
218
|
+
className={`common-test-preview-modal${lookupLoading ? ' customer-creation-modal--lookup-loading' : ''}`}
|
|
219
219
|
>
|
|
220
220
|
<CapRow className="customer-creation-modal-row">
|
|
221
221
|
<CapColumn span={24}>
|
|
@@ -242,7 +242,7 @@ const CustomerCreationModal = ({
|
|
|
242
242
|
</CapColumn>
|
|
243
243
|
</CapRow>
|
|
244
244
|
|
|
245
|
-
<CapRow className="customer-creation-modal-row">
|
|
245
|
+
<CapRow className="customer-creation-modal-row customer-creation-modal-row--email">
|
|
246
246
|
<CapColumn span={24}>
|
|
247
247
|
<CapLabel type="label1" className="customer-creation-modal-label">
|
|
248
248
|
<FormattedMessage {...messages.customerEmail} /> {channel !== CHANNELS.EMAIL && <span className="customer-creation-modal-optional">(Optional)</span>}
|