fansunited-widget-either-or 2.3.0 → 2.4.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/README.md +17 -2
- package/either-or-manager.es.js +34226 -33595
- package/either-or-manager.umd.js +306 -298
- package/models/Labels/LabelsModel.d.ts +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -294,7 +294,15 @@ const labels = {
|
|
|
294
294
|
usersLeadsExportErrorMessage: 'There was a problem with exporting all users leads. Please try again',
|
|
295
295
|
related: 'Related',
|
|
296
296
|
relationship: 'Relationship',
|
|
297
|
-
relatedEntitiesErrorMessage: 'There was a problem with fetching entities for related. Please try again'
|
|
297
|
+
relatedEntitiesErrorMessage: 'There was a problem with fetching entities for related. Please try again',
|
|
298
|
+
widgetEmbedCodeTitle: 'Widget embed code',
|
|
299
|
+
configureLeads: 'Configure leads',
|
|
300
|
+
leadPosition: 'Lead position',
|
|
301
|
+
addCampaignInfo: 'Add campaign info',
|
|
302
|
+
copyToClipboard: 'Copy to clipboard',
|
|
303
|
+
divElementTextInfo: "The generated embed code can be copied directly into your website's HTML. For comprehensive implementation details, visit our documentation: ",
|
|
304
|
+
widgetEmbedCodeNotAvailable: 'To configure embed code you need to first create your Either/Or game.'
|
|
305
|
+
|
|
298
306
|
};
|
|
299
307
|
|
|
300
308
|
const App = () => {
|
|
@@ -528,4 +536,11 @@ Here is all information about **`LabelsModel`**:
|
|
|
528
536
|
| `exportAllUsersLeadsDescription` | Toast error message when exporting users leads operation fails | There was a problem with exporting all users leads. Please try again |
|
|
529
537
|
| `related` | Label for related accordion in side bar. | Related |
|
|
530
538
|
| `relationship` | Label for relationship select input. | Relationship |
|
|
531
|
-
| `relatedEntitiesErrorMessage` | Toast error message when fetching related entities data fails. | There was a problem with fetching entities for related. Please try again |
|
|
539
|
+
| `relatedEntitiesErrorMessage` | Toast error message when fetching related entities data fails. | There was a problem with fetching entities for related. Please try again |
|
|
540
|
+
| `widgetEmbedCodeTitle` | Label for widget embed code acordion in side bar | Widget embed code |
|
|
541
|
+
| `configureLeads` | Configure lead switch button label | Configure leads |
|
|
542
|
+
| `leadPosition` | Lead position selector title in embed code acordion | Lead position |
|
|
543
|
+
| `addCampaignInfo` | Campaign info switch label in embed code acordion | Add campaign info |
|
|
544
|
+
| `copyToClipboard` | Div text button tooltip text in embed code acordion | Copy to clipboard |
|
|
545
|
+
| `divElementTextInfo` | Helper text for div content in embed code acordion | The generated embed code can be copied directly into your website's HTML. For comprehensive implementation details, visit our documentation: |
|
|
546
|
+
| `widgetEmbedCodeNotAvailable` | Paragraph when trying to configure widget embed code for not created Either/Or | To configure embed code you need to first create your Either/Or game. |
|