@capillarytech/creatives-library 8.0.307 → 8.0.309
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/InApp/index.js +15 -0
package/package.json
CHANGED
|
@@ -1445,6 +1445,21 @@ export const InApp = (props) => {
|
|
|
1445
1445
|
labelPosition="top"
|
|
1446
1446
|
size="default"
|
|
1447
1447
|
/>
|
|
1448
|
+
<CapRow>
|
|
1449
|
+
<CapHeading type="h4">
|
|
1450
|
+
<FormattedMessage {...messages.creativeLayout} />
|
|
1451
|
+
</CapHeading>
|
|
1452
|
+
<CapHeading type="h6" className="inapp-creative-layout-desc">
|
|
1453
|
+
<FormattedMessage {...messages.creativeLayoutDesc} />
|
|
1454
|
+
</CapHeading>
|
|
1455
|
+
</CapRow>
|
|
1456
|
+
<CapRadioGroup
|
|
1457
|
+
id="inapp-layout-radio"
|
|
1458
|
+
options={LAYOUT_RADIO_OPTIONS}
|
|
1459
|
+
value={templateLayoutType}
|
|
1460
|
+
onChange={onTemplateLayoutTypeChange}
|
|
1461
|
+
className="inapp-layout-radio"
|
|
1462
|
+
/>
|
|
1448
1463
|
<CapTab
|
|
1449
1464
|
panes={DEVICE_PANES.filter((devicePane) => devicePane?.isSupported === true)}
|
|
1450
1465
|
onChange={(value) => setPanes(value)}
|