fansunited-widget-either-or 2.4.0 → 2.5.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 +10 -5
- package/either-or-manager.es.js +18164 -17900
- package/either-or-manager.umd.js +303 -296
- package/models/Labels/LabelsModel.d.ts +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -297,12 +297,14 @@ const labels = {
|
|
|
297
297
|
relatedEntitiesErrorMessage: 'There was a problem with fetching entities for related. Please try again',
|
|
298
298
|
widgetEmbedCodeTitle: 'Widget embed code',
|
|
299
299
|
configureLeads: 'Configure leads',
|
|
300
|
+
configureLeadsDisabledMessage: 'Configure leads is enabled only when the authentication requirement is set to “Lead”.',
|
|
300
301
|
leadPosition: 'Lead position',
|
|
301
302
|
addCampaignInfo: 'Add campaign info',
|
|
303
|
+
campaignIdInfoMessage: 'Group multiple content items by a campaign ID. This field will be used for filtering later on, so make sure you have excatly the same ID across your multiple quizzes, polls and other games in general. We recommend using lowercase and -. Example: "adidas-december-2025"',
|
|
304
|
+
campaignNameInfoMessage: 'A label for your campaign that will appear in the reports. You can use anything here. Example: "Adidas (December 2025)"',
|
|
302
305
|
copyToClipboard: 'Copy to clipboard',
|
|
303
306
|
divElementTextInfo: "The generated embed code can be copied directly into your website's HTML. For comprehensive implementation details, visit our documentation: ",
|
|
304
307
|
widgetEmbedCodeNotAvailable: 'To configure embed code you need to first create your Either/Or game.'
|
|
305
|
-
|
|
306
308
|
};
|
|
307
309
|
|
|
308
310
|
const App = () => {
|
|
@@ -539,8 +541,11 @@ Here is all information about **`LabelsModel`**:
|
|
|
539
541
|
| `relatedEntitiesErrorMessage` | Toast error message when fetching related entities data fails. | There was a problem with fetching entities for related. Please try again |
|
|
540
542
|
| `widgetEmbedCodeTitle` | Label for widget embed code acordion in side bar | Widget embed code |
|
|
541
543
|
| `configureLeads` | Configure lead switch button label | Configure leads |
|
|
542
|
-
|
|
|
543
|
-
|
|
|
544
|
-
|
|
|
545
|
-
|
|
|
544
|
+
| `configureLeadsDisabledMessage` | Message shown when configure leads switch button is disabled | Configure leads is enabled only when the authentication requirement is set to “Lead”. |
|
|
545
|
+
| `leadPosition` | Lead position selector title in embed code acordion | Lead position |
|
|
546
|
+
| `addCampaignInfo` | Campaign info switch label in embed code acordion | Add campaign info |
|
|
547
|
+
| `campaignIdInfoMessage` | Tooltip info text for campaign id input field | Group multiple content items by a campaign ID. This field will be used for filtering later on, so make sure you have excatly the same ID across your multiple quizzes, polls and other games in general. We recommend using lowercase and -. Example: "adidas-december-2025" |
|
|
548
|
+
| `campaignNameInfoMessage` | Tooltip info text for campaign name input field | A label for your campaign that will appear in the reports. You can use anything here. Example: "Adidas (December 2025)" |
|
|
549
|
+
| `copyToClipboard` | Div text button tooltip text in embed code acordion | Copy to clipboard |
|
|
550
|
+
| `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
551
|
| `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. |
|