@openlettermarketing/olc-react-sdk 2.1.6-beta.12 → 2.1.6-beta.13
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/README.md +1 -1
- package/build/index.js +83 -83
- package/build/index.js.map +1 -1
- package/build/types/src/App.d.ts +1 -0
- package/build/types/src/assets/images/input/checkbox-icon.d.ts +6 -0
- package/build/types/src/components/SidePanel/CustomQRCode/V2/QRCodeModal/index.d.ts +4 -1
- package/build/types/src/components/SidePanel/CustomQRCode/index.d.ts +2 -1
- package/build/types/src/components/SidePanel/index.d.ts +1 -0
- package/build/types/src/components/TemplateBuilder/index.d.ts +1 -0
- package/build/types/src/index.d.ts +2 -1
- package/build/types/src/redux/actions/action-types.d.ts +2 -0
- package/build/types/src/redux/actions/customQRCodeActions.d.ts +8 -0
- package/build/types/src/redux/reducers/customQRCodeReducer.d.ts +2 -0
- package/build/types/src/utils/message.d.ts +2 -0
- package/build/types/version.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,10 +81,10 @@ key props:
|
|
|
81
81
|
| `sandbox` | _boolean_ | The sandbox setting can be either true or false. Set to true for demo purposes and false for production. | ⤫ | `true` |
|
|
82
82
|
| `templateGalleryModal` | _boolean_ | The templateGalleryModal setting can be either true or false. Set to true for modal view and false for sidebar template gallery. | ⤫ | `true` |
|
|
83
83
|
| `designerQueryAmount` | _number_ | The designerQueryAmount prop is used in the "Hire a Designer" card within the template gallery section to display the specified amount. | ⤫ | `25` |
|
|
84
|
-
| `showHireDesignerOption` | _boolean_ | Shows the "Hire a Designer" card on the create-template type selection screen. Defaults to false so existing SDK consumers keep the original flow unless they opt in. | ⤫ | `true` |
|
|
85
84
|
| `allowedAddOns` | _string[ ]_ | The allowedAddOns prop lets you specify which add-ons appear in the add-ons section by providing their keys as an array of strings. You can add or remove add-ons as needed by updating this array. | ⤫ | `['property_offer','gsv']` |
|
|
86
85
|
| `allowSenderFields` | _boolean_ | The allowSenderFields prop can be set to either true or false. When set to true, it makes the sender fields visible in the custom fields section. | ⤫ | `true` |
|
|
87
86
|
| `allowPropertyFields` | _boolean_ | The allowPropertyFields prop can be set to either true or false. When set to true, it makes the property fields visible in the custom fields section. | ⤫ | `true` |
|
|
87
|
+
| `showQrScanNotificationFields` | _boolean_ | Shows the QR code scan notification checkbox and notification email field when creating or editing QR codes. Defaults to false. | ⤫ | `true` |
|
|
88
88
|
| `allowedTemplateSections` | _string[ ]_ | The allowedTemplateSections prop lets you control which sections appear in the template gallery by adding or removing them as needed. | ⤫ | `['my_templates', 'team_templates']` |
|
|
89
89
|
| `restrictedProducts` | _number[]_ | The restrictedProducts prop filters products on the product selection screen, allowing you to show or hide products as needed. Simply include the product IDs in the array to filter out specific products. | ⤫ | `[9, 11, 13]` |
|
|
90
90
|
| `excludedFields` | _string[ ]_ | The excludedFields prop allows you to remove specific fields from the custom fields section by their key | ⤫ | `['{{C.EMAIL}}','{{SPF.LAST_NAME}}']` |
|