@capillarytech/creatives-library 8.0.258 → 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.
- package/package.json +1 -1
- package/translations/en.json +3 -4
- package/utils/common.js +0 -7
- package/v2Components/FormBuilder/index.js +4 -4
- package/v2Containers/Cap/tests/__snapshots__/index.test.js.snap +3 -4
- package/v2Containers/CreativesContainer/SlideBoxContent.js +1 -1
- package/v2Containers/CreativesContainer/index.js +0 -1
- package/v2Containers/Email/index.js +1 -5
- package/v2Containers/InApp/index.js +1 -2
- package/v2Containers/InApp/tests/index.test.js +29 -6
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/content.test.js.snap +12 -36
- package/v2Containers/Line/Container/ImageCarousel/tests/__snapshots__/index.test.js.snap +6 -8
- package/v2Containers/Line/Container/Wrapper/tests/__snapshots__/index.test.js.snap +75 -100
- package/v2Containers/Line/Container/tests/__snapshots__/index.test.js.snap +54 -72
- package/v2Containers/MobilePushNew/index.js +2 -3
- package/v2Containers/Rcs/tests/__snapshots__/index.test.js.snap +178 -250
- package/v2Containers/SmsTrai/Create/tests/__snapshots__/index.test.js.snap +12 -16
- package/v2Containers/SmsTrai/Edit/index.js +1 -2
- package/v2Containers/SmsTrai/Edit/tests/__snapshots__/index.test.js.snap +111 -464
- package/v2Containers/WebPush/Create/messages.js +8 -0
- package/v2Containers/WebPush/Create/preview/PreviewControls.js +2 -2
- package/v2Containers/WebPush/Create/preview/PreviewDisclaimer.js +3 -1
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileChromeHeader.js +5 -1
- package/v2Containers/WebPush/Create/preview/components/AndroidMobileExpanded.js +5 -1
- package/v2Containers/WebPush/Create/preview/components/tests/__snapshots__/AndroidMobileExpanded.test.js.snap +5 -1
- package/v2Containers/WebPush/Create/preview/preview.scss +7 -0
- package/v2Containers/Whatsapp/tests/__snapshots__/index.test.js.snap +734 -1272
|
@@ -77,7 +77,6 @@ import { getContent } from "../MobilePush/commonMethods";
|
|
|
77
77
|
import { getMessageObject } from "../../utils/messageUtils";
|
|
78
78
|
import { gtmPush } from "../../utils/gtmTrackers";
|
|
79
79
|
import mobilePushReducer from "./reducer";
|
|
80
|
-
import { hasLiquidSupportFeature } from "../../utils/common";
|
|
81
80
|
import formBuilderMessages from "../../v2Components/FormBuilder/messages";
|
|
82
81
|
import { validateMobilePushContent } from "../../utils/commonUtils";
|
|
83
82
|
import { getSingleTab } from "../InApp/utils";
|
|
@@ -2607,7 +2606,7 @@ const MobilePushNew = ({
|
|
|
2607
2606
|
messages: formBuilderMessages,
|
|
2608
2607
|
tagLookupMap: metaEntities?.tagLookupMap || {},
|
|
2609
2608
|
eventContextTags: metaEntities?.eventContextTags || [],
|
|
2610
|
-
isLiquidFlow:
|
|
2609
|
+
isLiquidFlow: true,
|
|
2611
2610
|
forwardedTags: {},
|
|
2612
2611
|
skipTags: (tag) => {
|
|
2613
2612
|
const skipRegexes = [
|
|
@@ -2631,7 +2630,7 @@ const MobilePushNew = ({
|
|
|
2631
2630
|
accountData,
|
|
2632
2631
|
]);
|
|
2633
2632
|
|
|
2634
|
-
const isLiquidFlow =
|
|
2633
|
+
const isLiquidFlow = true;
|
|
2635
2634
|
|
|
2636
2635
|
useEffect(() => {
|
|
2637
2636
|
// Always map to { label } for both platforms
|