@capillarytech/creatives-library 8.0.272 → 8.0.273-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.
- package/package.json +1 -1
- package/v2Containers/Facebook/Advertisement/index.js +1 -1
- package/v2Containers/Line/Container/_lineCreate.scss +0 -1
- package/v2Containers/Line/Container/style.js +1 -1
- package/v2Containers/SmsTrai/Create/index.scss +1 -1
- package/v2Containers/SmsTrai/Edit/index.js +3 -9
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +86 -11682
- package/v2Containers/SmsTrai/Edit/tests/index.test.js +0 -5
- package/v2Containers/Viber/index.js +0 -7
- package/v2Containers/Viber/index.scss +1 -4
package/package.json
CHANGED
|
@@ -106,6 +106,7 @@ export const SmsTraiEdit = (props) => {
|
|
|
106
106
|
padding: ${CAP_SPACE_32} ${CAP_SPACE_24};
|
|
107
107
|
position: fixed;
|
|
108
108
|
bottom: 2rem;
|
|
109
|
+
margin-left: -2rem;
|
|
109
110
|
.ant-btn {
|
|
110
111
|
margin-right: ${CAP_SPACE_16};
|
|
111
112
|
}
|
|
@@ -687,24 +688,17 @@ export const SmsTraiEdit = (props) => {
|
|
|
687
688
|
<CapButton
|
|
688
689
|
onClick={handleTestAndPreview}
|
|
689
690
|
type="secondary"
|
|
690
|
-
className="create-msg"
|
|
691
|
+
className="create-msg create-dlt-msg"
|
|
691
692
|
>
|
|
692
693
|
<FormattedMessage {...messages.testAndPreviewButtonLabel} />
|
|
693
694
|
</CapButton>
|
|
694
695
|
<CapButton
|
|
695
696
|
onClick={isLiquidSupportFeatureEnabled ? onSubmitWrapper : onDoneCallback}
|
|
696
|
-
className="create-msg
|
|
697
|
+
className="create-msg"
|
|
697
698
|
disabled={isTagValidationError || (isLiquidSupportFeatureEnabled && !isObject(metaEntities?.tagLookupMap))}
|
|
698
699
|
>
|
|
699
700
|
<FormattedMessage {...messages.saveButtonLabel} />
|
|
700
701
|
</CapButton>
|
|
701
|
-
<CapButton
|
|
702
|
-
onClick={handleClose}
|
|
703
|
-
className="cancel-dlt-msg"
|
|
704
|
-
type="secondary"
|
|
705
|
-
>
|
|
706
|
-
<FormattedMessage {...messages.cancelButtonLabel} />
|
|
707
|
-
</CapButton>
|
|
708
702
|
</SMSTraiFooter>
|
|
709
703
|
<TestAndPreviewSlidebox
|
|
710
704
|
show={showTestAndPreviewSlidebox}
|