@openlettermarketing/olc-react-sdk 2.1.5-beta.4 → 2.1.5
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/build/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION: "2.1.5
|
|
1
|
+
export const SDK_VERSION: "2.1.5";
|
package/package.json
CHANGED
|
@@ -407,9 +407,7 @@ const CreateTemplateV2: React.FC<CreateTemplateV2Props> = ({
|
|
|
407
407
|
<div className='size-selection-container'>
|
|
408
408
|
<Typography style={descriptionStyles}>Design Format</Typography>
|
|
409
409
|
<div className='radio-buttons-container'>
|
|
410
|
-
{product?.size
|
|
411
|
-
?.filter((type: any) => !restrictedSet.has(String(type.id)))
|
|
412
|
-
.map((type: any) => (
|
|
410
|
+
{product?.size?.map((type: any) => (
|
|
413
411
|
<label key={type.id} className={`radio-button-wrapper ${selectedRPLType === type.id ? 'selected' : ''}`}>
|
|
414
412
|
<input type="radio" name="postcardSize" value={type.id} checked={selectedRPLType === type.id} onChange={() => handleRealPennedLetter(type, product)} className="radio-input" />
|
|
415
413
|
<span className="radio-button"></span>
|
package/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = '2.1.5
|
|
1
|
+
export const SDK_VERSION = '2.1.5';
|