fansunited-widget-poll 2.2.3 → 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 +19 -1
- package/models/Labels/LabelsModel.d.ts +9 -0
- package/package.json +1 -1
- package/poll-manager.es.js +38667 -33130
- package/poll-manager.umd.js +1235 -245
package/README.md
CHANGED
|
@@ -249,6 +249,15 @@ const labels = {
|
|
|
249
249
|
exportUsersForOption: 'Export users voted for option',
|
|
250
250
|
exportAllUsersForOption: 'Export all users who voted for option',
|
|
251
251
|
exportForOption: 'Export for option',
|
|
252
|
+
exportUsersLeads: 'Export users leads',
|
|
253
|
+
exportAllUsersLeads: 'Export all users leads',
|
|
254
|
+
exportAllUsersLeadsDescription: 'Export all users collected leads in the poll.',
|
|
255
|
+
usersLeadsExportMessage: 'All users leads have been exported successfully',
|
|
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'
|
|
252
261
|
};
|
|
253
262
|
|
|
254
263
|
const App = () => {
|
|
@@ -435,4 +444,13 @@ Here is all information about **`LabelsModel`**:
|
|
|
435
444
|
| `pollChartErrorMessage` | Toast error message when a chart data is fetching | There was a problem with fetching information about poll participation. Please try again |
|
|
436
445
|
| `exportUsersForOption` | Title for export users table row | Export users voted for option |
|
|
437
446
|
| `exportAllUsersForOption` | Description for export users table row | Export all users who voted for option |
|
|
438
|
-
| `exportForOption` | Title for export users table row button | Export for option |
|
|
447
|
+
| `exportForOption` | Title for export users table row button | Export for option |
|
|
448
|
+
| `exportUsersLeads` | Title in export users leads table | Export users leads |
|
|
449
|
+
| `exportAllUsersLeads` | Category label in export users leads table | Export all users leads |
|
|
450
|
+
| `exportAllUsersLeadsDescription` | Category description label in export users leads table | Export all users collected leads in the poll. |
|
|
451
|
+
| `exportAllUsersLeadsDescription` | Success toast message when exporting users leads | All users leads have been exported successfully |
|
|
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 |
|
|
@@ -175,5 +175,14 @@ export default class LabelsModel {
|
|
|
175
175
|
exportUsersForOption: string;
|
|
176
176
|
exportAllUsersForOption: string;
|
|
177
177
|
exportForOption: string;
|
|
178
|
+
exportUsersLeads: string;
|
|
179
|
+
exportAllUsersLeads: string;
|
|
180
|
+
exportAllUsersLeadsDescription: string;
|
|
181
|
+
usersLeadsExportMessage: string;
|
|
182
|
+
usersLeadsExportErrorMessage: string;
|
|
183
|
+
related: string;
|
|
184
|
+
relationship: string;
|
|
185
|
+
entity: string;
|
|
186
|
+
relatedEntitiesErrorMessage: string;
|
|
178
187
|
constructor(labels?: LabelsModel);
|
|
179
188
|
}
|