fansunited-widget-poll 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 +9 -1
- package/models/Labels/LabelsModel.d.ts +4 -0
- package/package.json +1 -1
- package/poll-manager.es.js +19738 -19472
- package/poll-manager.umd.js +282 -282
package/README.md
CHANGED
|
@@ -254,6 +254,10 @@ const labels = {
|
|
|
254
254
|
exportAllUsersLeadsDescription: 'Export all users collected leads in the poll.',
|
|
255
255
|
usersLeadsExportMessage: 'All users leads have been exported successfully',
|
|
256
256
|
usersLeadsExportErrorMessage: 'There was a problem with exporting all users leads. Please try again',
|
|
257
|
+
related: 'Related',
|
|
258
|
+
entity: 'Entity',
|
|
259
|
+
relationship: 'Relationship',
|
|
260
|
+
relatedEntitiesErrorMessage: 'There was a problem with fetching entities for related. Please try again'
|
|
257
261
|
};
|
|
258
262
|
|
|
259
263
|
const App = () => {
|
|
@@ -445,4 +449,8 @@ Here is all information about **`LabelsModel`**:
|
|
|
445
449
|
| `exportAllUsersLeads` | Category label in export users leads table | Export all users leads |
|
|
446
450
|
| `exportAllUsersLeadsDescription` | Category description label in export users leads table | Export all users collected leads in the poll. |
|
|
447
451
|
| `exportAllUsersLeadsDescription` | Success toast message when exporting users leads | All users leads have been exported successfully |
|
|
448
|
-
| `exportAllUsersLeadsDescription` | Toast error message when exporting users leads operation fails | There was a problem with exporting all users leads. Please try again |
|
|
452
|
+
| `exportAllUsersLeadsDescription` | Toast error message when exporting users leads operation fails | There was a problem with exporting all users leads. Please try again |
|
|
453
|
+
| `related` | Label for related accordion in side bar. | Related |
|
|
454
|
+
| `entity` | Label for entity select input. | Entity |
|
|
455
|
+
| `relationship` | Label for relationship select input. | Relationship |
|
|
456
|
+
| `relatedEntitiesErrorMessage` | Toast error message when fetching related entities data fails. | There was a problem with fetching entities for related. Please try again |
|
|
@@ -180,5 +180,9 @@ export default class LabelsModel {
|
|
|
180
180
|
exportAllUsersLeadsDescription: string;
|
|
181
181
|
usersLeadsExportMessage: string;
|
|
182
182
|
usersLeadsExportErrorMessage: string;
|
|
183
|
+
related: string;
|
|
184
|
+
relationship: string;
|
|
185
|
+
entity: string;
|
|
186
|
+
relatedEntitiesErrorMessage: string;
|
|
183
187
|
constructor(labels?: LabelsModel);
|
|
184
188
|
}
|