@commercetools-frontend-extensions/export-resources-modal 5.15.2 → 5.16.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.
Files changed (22) hide show
  1. package/dist/commercetools-frontend-extensions-export-resources-modal.cjs.dev.js +34 -7
  2. package/dist/commercetools-frontend-extensions-export-resources-modal.cjs.prod.js +34 -7
  3. package/dist/commercetools-frontend-extensions-export-resources-modal.esm.js +34 -7
  4. package/dist/{de-878f4246.cjs.prod.js → de-11249ba5.cjs.prod.js} +16 -0
  5. package/dist/{de-ecf9ace2.cjs.dev.js → de-448f5798.cjs.dev.js} +16 -0
  6. package/dist/{de-887390c8.esm.js → de-6ca92bf0.esm.js} +16 -0
  7. package/dist/declarations/src/@constants/exportable-resources.d.ts +1 -0
  8. package/dist/declarations/src/@hooks/use-storage.d.ts +1 -5
  9. package/dist/declarations/src/@types/export-resources-modal-context.d.ts +0 -1
  10. package/dist/{en-02b20e80.esm.js → en-7eac8362.esm.js} +16 -0
  11. package/dist/{en-b0f71eaf.cjs.prod.js → en-b1e57064.cjs.prod.js} +16 -0
  12. package/dist/{en-3a95336a.cjs.dev.js → en-f39a23e6.cjs.dev.js} +16 -0
  13. package/dist/{es-374aed1b.cjs.prod.js → es-566ec5e7.cjs.prod.js} +16 -0
  14. package/dist/{es-a1b34b9f.cjs.dev.js → es-b4ee13a8.cjs.dev.js} +16 -0
  15. package/dist/{es-d39432b2.esm.js → es-cf5018bb.esm.js} +16 -0
  16. package/dist/{fr-FR-c903e733.cjs.dev.js → fr-FR-00860e60.cjs.dev.js} +16 -0
  17. package/dist/{fr-FR-4bdab72f.cjs.prod.js → fr-FR-23df0502.cjs.prod.js} +16 -0
  18. package/dist/{fr-FR-136fb625.esm.js → fr-FR-79f77e0a.esm.js} +16 -0
  19. package/dist/{pt-BR-b19cfc58.esm.js → pt-BR-0ce14c46.esm.js} +16 -0
  20. package/dist/{pt-BR-3ff0daf8.cjs.prod.js → pt-BR-14554160.cjs.prod.js} +16 -0
  21. package/dist/{pt-BR-0b67e9af.cjs.dev.js → pt-BR-63769e73.cjs.dev.js} +16 -0
  22. package/package.json +11 -11
@@ -171,6 +171,11 @@ var messages = reactIntl.defineMessages({
171
171
  description: 'Label for the standalone prices modal title',
172
172
  defaultMessage: 'Export standalone prices'
173
173
  },
174
+ 'modalTitle.product-selection': {
175
+ id: 'ExportResourcesModal.modalTitle.productSelection',
176
+ description: 'Label for the product selections modal title',
177
+ defaultMessage: 'Export product selections'
178
+ },
174
179
  outputFormat: {
175
180
  id: 'ExportResourcesModal.outputFormat',
176
181
  description: 'File format like (csv, xls, ...etc)',
@@ -460,6 +465,21 @@ var messages = reactIntl.defineMessages({
460
465
  description: 'Label for Export Filtered customers',
461
466
  defaultMessage: 'Export filtered: {total, plural, one {# customer} other {# customers}}'
462
467
  },
468
+ exportScopeAllProductSelections: {
469
+ id: 'ExportResourcesModal.exportScopeAllProductSelections',
470
+ description: 'Label for Export All product selections',
471
+ defaultMessage: 'Export all: {total, plural, one {# product selection} other {# product selections}}'
472
+ },
473
+ exportScopeSelectedProductSelections: {
474
+ id: 'ExportResourcesModal.exportScopeSelectedProductSelections',
475
+ description: 'Label for Export Selected product selections',
476
+ defaultMessage: 'Export selected: {total, plural, one {# product selection} other {# product selections}}'
477
+ },
478
+ exportScopeFilteredProductSelections: {
479
+ id: 'ExportResourcesModal.exportScopeFilteredProductSelections',
480
+ description: 'Label for Export Filtered product selections',
481
+ defaultMessage: 'Export filtered: {total, plural, one {# product selection} other {# product selections}}'
482
+ },
463
483
  exportScopeSelectedWithoutCount: {
464
484
  id: 'ExportResourcesModal.exportScopeSelectedWithoutCount',
465
485
  description: 'Label for Export Selected without count',
@@ -901,7 +921,8 @@ const EXPORTABLE_RESOURCES = {
901
921
  CUSTOMER: 'customer',
902
922
  BUSINESS_UNIT: 'business-unit',
903
923
  PRODUCT_TAILORING: 'product-tailoring',
904
- STANDALONE_PRICE: 'standalone-price'
924
+ STANDALONE_PRICE: 'standalone-price',
925
+ PRODUCT_SELECTION: 'product-selection'
905
926
  };
906
927
 
907
928
  const OUTPUT_FORMATS = {
@@ -972,6 +993,11 @@ const resourceTypeMessages = {
972
993
  exportScopeAll: messages.exportScopeAllStandalonePrices,
973
994
  exportScopeSelected: messages.exportScopeSelectedStandalonePrices,
974
995
  exportScopeFiltered: messages.exportScopeFilteredStandalonePrices
996
+ },
997
+ [EXPORTABLE_RESOURCES.PRODUCT_SELECTION]: {
998
+ exportScopeAll: messages.exportScopeAllProductSelections,
999
+ exportScopeSelected: messages.exportScopeSelectedProductSelections,
1000
+ exportScopeFiltered: messages.exportScopeFilteredProductSelections
975
1001
  }
976
1002
  };
977
1003
 
@@ -1202,7 +1228,8 @@ function resourceTypeToFileName(resourceType, locale) {
1202
1228
  [EXPORTABLE_RESOURCES.ORDER]: 'Orders',
1203
1229
  [EXPORTABLE_RESOURCES.BUSINESS_UNIT]: 'Business_Units',
1204
1230
  [EXPORTABLE_RESOURCES.PRODUCT_TAILORING]: 'Product_Tailorings',
1205
- [EXPORTABLE_RESOURCES.STANDALONE_PRICE]: 'Standalone_Prices'
1231
+ [EXPORTABLE_RESOURCES.STANDALONE_PRICE]: 'Standalone_Prices',
1232
+ [EXPORTABLE_RESOURCES.PRODUCT_SELECTION]: 'Product_Selections'
1206
1233
  };
1207
1234
  const displayName = resourceTypeMap[resourceType];
1208
1235
  if (!displayName) {
@@ -3757,17 +3784,17 @@ const getChunkImport = locale => {
3757
3784
  const intlLocale = i18n.mapLocaleToIntlLocale(locale);
3758
3785
  switch (intlLocale) {
3759
3786
  case 'de':
3760
- return Promise.resolve().then(function () { return require('./de-ecf9ace2.cjs.dev.js'); });
3787
+ return Promise.resolve().then(function () { return require('./de-448f5798.cjs.dev.js'); });
3761
3788
  case 'es':
3762
- return Promise.resolve().then(function () { return require('./es-a1b34b9f.cjs.dev.js'); });
3789
+ return Promise.resolve().then(function () { return require('./es-b4ee13a8.cjs.dev.js'); });
3763
3790
  case 'fr-FR':
3764
- return Promise.resolve().then(function () { return require('./fr-FR-c903e733.cjs.dev.js'); });
3791
+ return Promise.resolve().then(function () { return require('./fr-FR-00860e60.cjs.dev.js'); });
3765
3792
  case 'ja':
3766
3793
  return Promise.resolve().then(function () { return require('./ja-9bd5f452.cjs.dev.js'); });
3767
3794
  case 'pt-BR':
3768
- return Promise.resolve().then(function () { return require('./pt-BR-0b67e9af.cjs.dev.js'); });
3795
+ return Promise.resolve().then(function () { return require('./pt-BR-63769e73.cjs.dev.js'); });
3769
3796
  default:
3770
- return Promise.resolve().then(function () { return require('./en-3a95336a.cjs.dev.js'); });
3797
+ return Promise.resolve().then(function () { return require('./en-f39a23e6.cjs.dev.js'); });
3771
3798
  }
3772
3799
  };
3773
3800
  const loadMessages = async locale => {
@@ -171,6 +171,11 @@ var messages = reactIntl.defineMessages({
171
171
  description: 'Label for the standalone prices modal title',
172
172
  defaultMessage: 'Export standalone prices'
173
173
  },
174
+ 'modalTitle.product-selection': {
175
+ id: 'ExportResourcesModal.modalTitle.productSelection',
176
+ description: 'Label for the product selections modal title',
177
+ defaultMessage: 'Export product selections'
178
+ },
174
179
  outputFormat: {
175
180
  id: 'ExportResourcesModal.outputFormat',
176
181
  description: 'File format like (csv, xls, ...etc)',
@@ -460,6 +465,21 @@ var messages = reactIntl.defineMessages({
460
465
  description: 'Label for Export Filtered customers',
461
466
  defaultMessage: 'Export filtered: {total, plural, one {# customer} other {# customers}}'
462
467
  },
468
+ exportScopeAllProductSelections: {
469
+ id: 'ExportResourcesModal.exportScopeAllProductSelections',
470
+ description: 'Label for Export All product selections',
471
+ defaultMessage: 'Export all: {total, plural, one {# product selection} other {# product selections}}'
472
+ },
473
+ exportScopeSelectedProductSelections: {
474
+ id: 'ExportResourcesModal.exportScopeSelectedProductSelections',
475
+ description: 'Label for Export Selected product selections',
476
+ defaultMessage: 'Export selected: {total, plural, one {# product selection} other {# product selections}}'
477
+ },
478
+ exportScopeFilteredProductSelections: {
479
+ id: 'ExportResourcesModal.exportScopeFilteredProductSelections',
480
+ description: 'Label for Export Filtered product selections',
481
+ defaultMessage: 'Export filtered: {total, plural, one {# product selection} other {# product selections}}'
482
+ },
463
483
  exportScopeSelectedWithoutCount: {
464
484
  id: 'ExportResourcesModal.exportScopeSelectedWithoutCount',
465
485
  description: 'Label for Export Selected without count',
@@ -901,7 +921,8 @@ const EXPORTABLE_RESOURCES = {
901
921
  CUSTOMER: 'customer',
902
922
  BUSINESS_UNIT: 'business-unit',
903
923
  PRODUCT_TAILORING: 'product-tailoring',
904
- STANDALONE_PRICE: 'standalone-price'
924
+ STANDALONE_PRICE: 'standalone-price',
925
+ PRODUCT_SELECTION: 'product-selection'
905
926
  };
906
927
 
907
928
  const OUTPUT_FORMATS = {
@@ -972,6 +993,11 @@ const resourceTypeMessages = {
972
993
  exportScopeAll: messages.exportScopeAllStandalonePrices,
973
994
  exportScopeSelected: messages.exportScopeSelectedStandalonePrices,
974
995
  exportScopeFiltered: messages.exportScopeFilteredStandalonePrices
996
+ },
997
+ [EXPORTABLE_RESOURCES.PRODUCT_SELECTION]: {
998
+ exportScopeAll: messages.exportScopeAllProductSelections,
999
+ exportScopeSelected: messages.exportScopeSelectedProductSelections,
1000
+ exportScopeFiltered: messages.exportScopeFilteredProductSelections
975
1001
  }
976
1002
  };
977
1003
 
@@ -1202,7 +1228,8 @@ function resourceTypeToFileName(resourceType, locale) {
1202
1228
  [EXPORTABLE_RESOURCES.ORDER]: 'Orders',
1203
1229
  [EXPORTABLE_RESOURCES.BUSINESS_UNIT]: 'Business_Units',
1204
1230
  [EXPORTABLE_RESOURCES.PRODUCT_TAILORING]: 'Product_Tailorings',
1205
- [EXPORTABLE_RESOURCES.STANDALONE_PRICE]: 'Standalone_Prices'
1231
+ [EXPORTABLE_RESOURCES.STANDALONE_PRICE]: 'Standalone_Prices',
1232
+ [EXPORTABLE_RESOURCES.PRODUCT_SELECTION]: 'Product_Selections'
1206
1233
  };
1207
1234
  const displayName = resourceTypeMap[resourceType];
1208
1235
  if (!displayName) {
@@ -3724,17 +3751,17 @@ const getChunkImport = locale => {
3724
3751
  const intlLocale = i18n.mapLocaleToIntlLocale(locale);
3725
3752
  switch (intlLocale) {
3726
3753
  case 'de':
3727
- return Promise.resolve().then(function () { return require('./de-878f4246.cjs.prod.js'); });
3754
+ return Promise.resolve().then(function () { return require('./de-11249ba5.cjs.prod.js'); });
3728
3755
  case 'es':
3729
- return Promise.resolve().then(function () { return require('./es-374aed1b.cjs.prod.js'); });
3756
+ return Promise.resolve().then(function () { return require('./es-566ec5e7.cjs.prod.js'); });
3730
3757
  case 'fr-FR':
3731
- return Promise.resolve().then(function () { return require('./fr-FR-4bdab72f.cjs.prod.js'); });
3758
+ return Promise.resolve().then(function () { return require('./fr-FR-23df0502.cjs.prod.js'); });
3732
3759
  case 'ja':
3733
3760
  return Promise.resolve().then(function () { return require('./ja-37632763.cjs.prod.js'); });
3734
3761
  case 'pt-BR':
3735
- return Promise.resolve().then(function () { return require('./pt-BR-3ff0daf8.cjs.prod.js'); });
3762
+ return Promise.resolve().then(function () { return require('./pt-BR-14554160.cjs.prod.js'); });
3736
3763
  default:
3737
- return Promise.resolve().then(function () { return require('./en-b0f71eaf.cjs.prod.js'); });
3764
+ return Promise.resolve().then(function () { return require('./en-b1e57064.cjs.prod.js'); });
3738
3765
  }
3739
3766
  };
3740
3767
  const loadMessages = async locale => {
@@ -129,6 +129,11 @@ var messages = defineMessages({
129
129
  description: 'Label for the standalone prices modal title',
130
130
  defaultMessage: 'Export standalone prices'
131
131
  },
132
+ 'modalTitle.product-selection': {
133
+ id: 'ExportResourcesModal.modalTitle.productSelection',
134
+ description: 'Label for the product selections modal title',
135
+ defaultMessage: 'Export product selections'
136
+ },
132
137
  outputFormat: {
133
138
  id: 'ExportResourcesModal.outputFormat',
134
139
  description: 'File format like (csv, xls, ...etc)',
@@ -418,6 +423,21 @@ var messages = defineMessages({
418
423
  description: 'Label for Export Filtered customers',
419
424
  defaultMessage: 'Export filtered: {total, plural, one {# customer} other {# customers}}'
420
425
  },
426
+ exportScopeAllProductSelections: {
427
+ id: 'ExportResourcesModal.exportScopeAllProductSelections',
428
+ description: 'Label for Export All product selections',
429
+ defaultMessage: 'Export all: {total, plural, one {# product selection} other {# product selections}}'
430
+ },
431
+ exportScopeSelectedProductSelections: {
432
+ id: 'ExportResourcesModal.exportScopeSelectedProductSelections',
433
+ description: 'Label for Export Selected product selections',
434
+ defaultMessage: 'Export selected: {total, plural, one {# product selection} other {# product selections}}'
435
+ },
436
+ exportScopeFilteredProductSelections: {
437
+ id: 'ExportResourcesModal.exportScopeFilteredProductSelections',
438
+ description: 'Label for Export Filtered product selections',
439
+ defaultMessage: 'Export filtered: {total, plural, one {# product selection} other {# product selections}}'
440
+ },
421
441
  exportScopeSelectedWithoutCount: {
422
442
  id: 'ExportResourcesModal.exportScopeSelectedWithoutCount',
423
443
  description: 'Label for Export Selected without count',
@@ -859,7 +879,8 @@ const EXPORTABLE_RESOURCES = {
859
879
  CUSTOMER: 'customer',
860
880
  BUSINESS_UNIT: 'business-unit',
861
881
  PRODUCT_TAILORING: 'product-tailoring',
862
- STANDALONE_PRICE: 'standalone-price'
882
+ STANDALONE_PRICE: 'standalone-price',
883
+ PRODUCT_SELECTION: 'product-selection'
863
884
  };
864
885
 
865
886
  const OUTPUT_FORMATS = {
@@ -930,6 +951,11 @@ const resourceTypeMessages = {
930
951
  exportScopeAll: messages.exportScopeAllStandalonePrices,
931
952
  exportScopeSelected: messages.exportScopeSelectedStandalonePrices,
932
953
  exportScopeFiltered: messages.exportScopeFilteredStandalonePrices
954
+ },
955
+ [EXPORTABLE_RESOURCES.PRODUCT_SELECTION]: {
956
+ exportScopeAll: messages.exportScopeAllProductSelections,
957
+ exportScopeSelected: messages.exportScopeSelectedProductSelections,
958
+ exportScopeFiltered: messages.exportScopeFilteredProductSelections
933
959
  }
934
960
  };
935
961
 
@@ -1160,7 +1186,8 @@ function resourceTypeToFileName(resourceType, locale) {
1160
1186
  [EXPORTABLE_RESOURCES.ORDER]: 'Orders',
1161
1187
  [EXPORTABLE_RESOURCES.BUSINESS_UNIT]: 'Business_Units',
1162
1188
  [EXPORTABLE_RESOURCES.PRODUCT_TAILORING]: 'Product_Tailorings',
1163
- [EXPORTABLE_RESOURCES.STANDALONE_PRICE]: 'Standalone_Prices'
1189
+ [EXPORTABLE_RESOURCES.STANDALONE_PRICE]: 'Standalone_Prices',
1190
+ [EXPORTABLE_RESOURCES.PRODUCT_SELECTION]: 'Product_Selections'
1164
1191
  };
1165
1192
  const displayName = resourceTypeMap[resourceType];
1166
1193
  if (!displayName) {
@@ -3715,17 +3742,17 @@ const getChunkImport = locale => {
3715
3742
  const intlLocale = mapLocaleToIntlLocale(locale);
3716
3743
  switch (intlLocale) {
3717
3744
  case 'de':
3718
- return import('./de-887390c8.esm.js');
3745
+ return import('./de-6ca92bf0.esm.js');
3719
3746
  case 'es':
3720
- return import('./es-d39432b2.esm.js');
3747
+ return import('./es-cf5018bb.esm.js');
3721
3748
  case 'fr-FR':
3722
- return import('./fr-FR-136fb625.esm.js');
3749
+ return import('./fr-FR-79f77e0a.esm.js');
3723
3750
  case 'ja':
3724
3751
  return import('./ja-73c088a7.esm.js');
3725
3752
  case 'pt-BR':
3726
- return import('./pt-BR-b19cfc58.esm.js');
3753
+ return import('./pt-BR-0ce14c46.esm.js');
3727
3754
  default:
3728
- return import('./en-02b20e80.esm.js');
3755
+ return import('./en-7eac8362.esm.js');
3729
3756
  }
3730
3757
  };
3731
3758
  const loadMessages = async locale => {
@@ -177,6 +177,10 @@ var de = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Alle exportieren: {total, plural, one {# Bestellung} other {# Bestellungen}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Maßgeschneiderte Produkte für {total, plural, one {# Produkt} other {# Produkte}} in allen Shops exportieren"
@@ -213,6 +217,10 @@ var de = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Export gefiltert: {total, plural, one {# Bestellung} other {# Bestellungen}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Maßgeschneiderte Produkte für das {total, plural, one {# gefiltertes Produkt} other {# gefilterte Produkte}} exportieren"
@@ -253,6 +261,10 @@ var de = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Export ausgewählt: {total, plural, one {# Bestellung} other {# Bestellungen}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Maßgeschneiderte Produkte für das {total, plural, one {# ausgewähltes Produkt} other {# ausgewählte Produkte}} exportieren"
@@ -393,6 +405,10 @@ var de = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Produkte exportieren"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Maßgeschneiderte Produkte exportieren"
@@ -177,6 +177,10 @@ var de = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Alle exportieren: {total, plural, one {# Bestellung} other {# Bestellungen}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Maßgeschneiderte Produkte für {total, plural, one {# Produkt} other {# Produkte}} in allen Shops exportieren"
@@ -213,6 +217,10 @@ var de = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Export gefiltert: {total, plural, one {# Bestellung} other {# Bestellungen}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Maßgeschneiderte Produkte für das {total, plural, one {# gefiltertes Produkt} other {# gefilterte Produkte}} exportieren"
@@ -253,6 +261,10 @@ var de = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Export ausgewählt: {total, plural, one {# Bestellung} other {# Bestellungen}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Maßgeschneiderte Produkte für das {total, plural, one {# ausgewähltes Produkt} other {# ausgewählte Produkte}} exportieren"
@@ -393,6 +405,10 @@ var de = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Produkte exportieren"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Maßgeschneiderte Produkte exportieren"
@@ -175,6 +175,10 @@ var de = {
175
175
  developer_comment: "Label for Export All orders",
176
176
  string: "Alle exportieren: {total, plural, one {# Bestellung} other {# Bestellungen}}"
177
177
  },
178
+ "ExportResourcesModal.exportScopeAllProductSelections": {
179
+ developer_comment: "Label for Export All product selections",
180
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
181
+ },
178
182
  "ExportResourcesModal.exportScopeAllProductTailorings": {
179
183
  developer_comment: "Label for Export All product tailorings",
180
184
  string: "Maßgeschneiderte Produkte für {total, plural, one {# Produkt} other {# Produkte}} in allen Shops exportieren"
@@ -211,6 +215,10 @@ var de = {
211
215
  developer_comment: "Label for Export Filtered orders",
212
216
  string: "Export gefiltert: {total, plural, one {# Bestellung} other {# Bestellungen}}"
213
217
  },
218
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
219
+ developer_comment: "Label for Export Filtered product selections",
220
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
221
+ },
214
222
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
215
223
  developer_comment: "Label for Export Filtered product tailorings",
216
224
  string: "Maßgeschneiderte Produkte für das {total, plural, one {# gefiltertes Produkt} other {# gefilterte Produkte}} exportieren"
@@ -251,6 +259,10 @@ var de = {
251
259
  developer_comment: "Label for Export Selected orders",
252
260
  string: "Export ausgewählt: {total, plural, one {# Bestellung} other {# Bestellungen}}"
253
261
  },
262
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
263
+ developer_comment: "Label for Export Selected product selections",
264
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
265
+ },
254
266
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
255
267
  developer_comment: "Label for Export Selected product tailorings",
256
268
  string: "Maßgeschneiderte Produkte für das {total, plural, one {# ausgewähltes Produkt} other {# ausgewählte Produkte}} exportieren"
@@ -391,6 +403,10 @@ var de = {
391
403
  developer_comment: "Label for the products modal title",
392
404
  string: "Produkte exportieren"
393
405
  },
406
+ "ExportResourcesModal.modalTitle.productSelection": {
407
+ developer_comment: "Label for the product selections modal title",
408
+ string: "Export product selections"
409
+ },
394
410
  "ExportResourcesModal.modalTitle.productTailoring": {
395
411
  developer_comment: "Label for the product tailorings modal title",
396
412
  string: "Maßgeschneiderte Produkte exportieren"
@@ -9,4 +9,5 @@ export declare const EXPORTABLE_RESOURCES: {
9
9
  readonly BUSINESS_UNIT: "business-unit";
10
10
  readonly PRODUCT_TAILORING: "product-tailoring";
11
11
  readonly STANDALONE_PRICE: "standalone-price";
12
+ readonly PRODUCT_SELECTION: "product-selection";
12
13
  };
@@ -4,9 +4,5 @@ export type UseStorageOptions = {
4
4
  segregateByUser: boolean;
5
5
  };
6
6
  declare const clearStaleExportModalEntries: (storage: Storage, currentKey: string) => void;
7
- declare const useStorage: <TStorageState>(storageKey: string, initialStorageValue: TStorageState, options?: Partial<UseStorageOptions>) => [
8
- TStorageState | null,
9
- (nextStorageValue: TStorageState) => void,
10
- () => TStorageState | null
11
- ];
7
+ declare const useStorage: <TStorageState>(storageKey: string, initialStorageValue: TStorageState, options?: Partial<UseStorageOptions>) => [TStorageState | null, (nextStorageValue: TStorageState) => void, () => TStorageState | null];
12
8
  export { useStorage, clearStaleExportModalEntries };
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { FormikProps } from 'formik';
3
2
  import type { ExportType, Filters, Store } from "./export-resources-modal-types.js";
4
3
  import type { FieldSelectionMode } from "./field-selection-mode.js";
@@ -175,6 +175,10 @@ var en = {
175
175
  developer_comment: "Label for Export All orders",
176
176
  string: "Export all: {total, plural, one {# order} other {# orders}}"
177
177
  },
178
+ "ExportResourcesModal.exportScopeAllProductSelections": {
179
+ developer_comment: "Label for Export All product selections",
180
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
181
+ },
178
182
  "ExportResourcesModal.exportScopeAllProductTailorings": {
179
183
  developer_comment: "Label for Export All product tailorings",
180
184
  string: "Export tailored products for {total, plural, one {# product} other {# products}} in all stores"
@@ -211,6 +215,10 @@ var en = {
211
215
  developer_comment: "Label for Export Filtered orders",
212
216
  string: "Export filtered: {total, plural, one {# order} other {# orders}}"
213
217
  },
218
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
219
+ developer_comment: "Label for Export Filtered product selections",
220
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
221
+ },
214
222
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
215
223
  developer_comment: "Label for Export Filtered product tailorings",
216
224
  string: "Export tailored products for the {total, plural, one {# filtered product} other {# filtered products}}"
@@ -251,6 +259,10 @@ var en = {
251
259
  developer_comment: "Label for Export Selected orders",
252
260
  string: "Export selected: {total, plural, one {# order} other {# orders}}"
253
261
  },
262
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
263
+ developer_comment: "Label for Export Selected product selections",
264
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
265
+ },
254
266
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
255
267
  developer_comment: "Label for Export Selected product tailorings",
256
268
  string: "Export tailored products for the {total, plural, one {# selected product} other {# selected products}}"
@@ -391,6 +403,10 @@ var en = {
391
403
  developer_comment: "Label for the products modal title",
392
404
  string: "Export products"
393
405
  },
406
+ "ExportResourcesModal.modalTitle.productSelection": {
407
+ developer_comment: "Label for the product selections modal title",
408
+ string: "Export product selections"
409
+ },
394
410
  "ExportResourcesModal.modalTitle.productTailoring": {
395
411
  developer_comment: "Label for the product tailorings modal title",
396
412
  string: "Export tailored products"
@@ -177,6 +177,10 @@ var en = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Export all: {total, plural, one {# order} other {# orders}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Export tailored products for {total, plural, one {# product} other {# products}} in all stores"
@@ -213,6 +217,10 @@ var en = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Export filtered: {total, plural, one {# order} other {# orders}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Export tailored products for the {total, plural, one {# filtered product} other {# filtered products}}"
@@ -253,6 +261,10 @@ var en = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Export selected: {total, plural, one {# order} other {# orders}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Export tailored products for the {total, plural, one {# selected product} other {# selected products}}"
@@ -393,6 +405,10 @@ var en = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Export products"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Export tailored products"
@@ -177,6 +177,10 @@ var en = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Export all: {total, plural, one {# order} other {# orders}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Export tailored products for {total, plural, one {# product} other {# products}} in all stores"
@@ -213,6 +217,10 @@ var en = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Export filtered: {total, plural, one {# order} other {# orders}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Export tailored products for the {total, plural, one {# filtered product} other {# filtered products}}"
@@ -253,6 +261,10 @@ var en = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Export selected: {total, plural, one {# order} other {# orders}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Export tailored products for the {total, plural, one {# selected product} other {# selected products}}"
@@ -393,6 +405,10 @@ var en = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Export products"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Export tailored products"
@@ -177,6 +177,10 @@ var es = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Exportar todo: {total, plural, one {# pedido} other {# pedidos}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Exportar productos personalizados para {total, plural, one {# producto} other {# productos}} en todas las tiendas"
@@ -213,6 +217,10 @@ var es = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Exportar los filtrados: {total, plural, one {# pedido} other {# pedidos}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Exportar productos personalizados para el {total, plural, one {# producto filtrado} other {# productos filtrados}} en todas las tiendas"
@@ -253,6 +261,10 @@ var es = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Exportar los seleccionados: {total, plural, one {# pedido} other {# pedidos}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Exportar productos personalizados para el {total, plural, one {# producto seleccionado} other {# productos seleccionados}} en todas las tiendas"
@@ -393,6 +405,10 @@ var es = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Exportar productos"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Exportar productos personalizados"
@@ -177,6 +177,10 @@ var es = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Exportar todo: {total, plural, one {# pedido} other {# pedidos}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Exportar productos personalizados para {total, plural, one {# producto} other {# productos}} en todas las tiendas"
@@ -213,6 +217,10 @@ var es = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Exportar los filtrados: {total, plural, one {# pedido} other {# pedidos}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Exportar productos personalizados para el {total, plural, one {# producto filtrado} other {# productos filtrados}} en todas las tiendas"
@@ -253,6 +261,10 @@ var es = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Exportar los seleccionados: {total, plural, one {# pedido} other {# pedidos}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Exportar productos personalizados para el {total, plural, one {# producto seleccionado} other {# productos seleccionados}} en todas las tiendas"
@@ -393,6 +405,10 @@ var es = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Exportar productos"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Exportar productos personalizados"
@@ -175,6 +175,10 @@ var es = {
175
175
  developer_comment: "Label for Export All orders",
176
176
  string: "Exportar todo: {total, plural, one {# pedido} other {# pedidos}}"
177
177
  },
178
+ "ExportResourcesModal.exportScopeAllProductSelections": {
179
+ developer_comment: "Label for Export All product selections",
180
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
181
+ },
178
182
  "ExportResourcesModal.exportScopeAllProductTailorings": {
179
183
  developer_comment: "Label for Export All product tailorings",
180
184
  string: "Exportar productos personalizados para {total, plural, one {# producto} other {# productos}} en todas las tiendas"
@@ -211,6 +215,10 @@ var es = {
211
215
  developer_comment: "Label for Export Filtered orders",
212
216
  string: "Exportar los filtrados: {total, plural, one {# pedido} other {# pedidos}}"
213
217
  },
218
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
219
+ developer_comment: "Label for Export Filtered product selections",
220
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
221
+ },
214
222
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
215
223
  developer_comment: "Label for Export Filtered product tailorings",
216
224
  string: "Exportar productos personalizados para el {total, plural, one {# producto filtrado} other {# productos filtrados}} en todas las tiendas"
@@ -251,6 +259,10 @@ var es = {
251
259
  developer_comment: "Label for Export Selected orders",
252
260
  string: "Exportar los seleccionados: {total, plural, one {# pedido} other {# pedidos}}"
253
261
  },
262
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
263
+ developer_comment: "Label for Export Selected product selections",
264
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
265
+ },
254
266
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
255
267
  developer_comment: "Label for Export Selected product tailorings",
256
268
  string: "Exportar productos personalizados para el {total, plural, one {# producto seleccionado} other {# productos seleccionados}} en todas las tiendas"
@@ -391,6 +403,10 @@ var es = {
391
403
  developer_comment: "Label for the products modal title",
392
404
  string: "Exportar productos"
393
405
  },
406
+ "ExportResourcesModal.modalTitle.productSelection": {
407
+ developer_comment: "Label for the product selections modal title",
408
+ string: "Export product selections"
409
+ },
394
410
  "ExportResourcesModal.modalTitle.productTailoring": {
395
411
  developer_comment: "Label for the product tailorings modal title",
396
412
  string: "Exportar productos personalizados"
@@ -177,6 +177,10 @@ var frFR = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Tout exporter : {total, plural, one {# commande} other {# commandes}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Exporter les produits personnalisés pour {total, plural, one {un # produit} other {des # produits}} dans toutes les boutiques"
@@ -213,6 +217,10 @@ var frFR = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Exporter les données filtrées : {total, plural, one {# commande} other {# commandes}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Exporter les produits personnalisés pour {total, plural, one {le # produit filtré} other {les # produits filtrés}}"
@@ -253,6 +261,10 @@ var frFR = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Exporter les données sélectionnées : {total, plural, one {# commande} other {# commandes}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Exporter les produits personnalisés pour {total, plural, one {le # produit sélectionné} other {les # produits sélectionnés}}"
@@ -393,6 +405,10 @@ var frFR = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Exporter des produits"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Exporter les produits personnalisés"
@@ -177,6 +177,10 @@ var frFR = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Tout exporter : {total, plural, one {# commande} other {# commandes}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Exporter les produits personnalisés pour {total, plural, one {un # produit} other {des # produits}} dans toutes les boutiques"
@@ -213,6 +217,10 @@ var frFR = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Exporter les données filtrées : {total, plural, one {# commande} other {# commandes}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Exporter les produits personnalisés pour {total, plural, one {le # produit filtré} other {les # produits filtrés}}"
@@ -253,6 +261,10 @@ var frFR = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Exporter les données sélectionnées : {total, plural, one {# commande} other {# commandes}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Exporter les produits personnalisés pour {total, plural, one {le # produit sélectionné} other {les # produits sélectionnés}}"
@@ -393,6 +405,10 @@ var frFR = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Exporter des produits"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Exporter les produits personnalisés"
@@ -175,6 +175,10 @@ var frFR = {
175
175
  developer_comment: "Label for Export All orders",
176
176
  string: "Tout exporter : {total, plural, one {# commande} other {# commandes}}"
177
177
  },
178
+ "ExportResourcesModal.exportScopeAllProductSelections": {
179
+ developer_comment: "Label for Export All product selections",
180
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
181
+ },
178
182
  "ExportResourcesModal.exportScopeAllProductTailorings": {
179
183
  developer_comment: "Label for Export All product tailorings",
180
184
  string: "Exporter les produits personnalisés pour {total, plural, one {un # produit} other {des # produits}} dans toutes les boutiques"
@@ -211,6 +215,10 @@ var frFR = {
211
215
  developer_comment: "Label for Export Filtered orders",
212
216
  string: "Exporter les données filtrées : {total, plural, one {# commande} other {# commandes}}"
213
217
  },
218
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
219
+ developer_comment: "Label for Export Filtered product selections",
220
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
221
+ },
214
222
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
215
223
  developer_comment: "Label for Export Filtered product tailorings",
216
224
  string: "Exporter les produits personnalisés pour {total, plural, one {le # produit filtré} other {les # produits filtrés}}"
@@ -251,6 +259,10 @@ var frFR = {
251
259
  developer_comment: "Label for Export Selected orders",
252
260
  string: "Exporter les données sélectionnées : {total, plural, one {# commande} other {# commandes}}"
253
261
  },
262
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
263
+ developer_comment: "Label for Export Selected product selections",
264
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
265
+ },
254
266
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
255
267
  developer_comment: "Label for Export Selected product tailorings",
256
268
  string: "Exporter les produits personnalisés pour {total, plural, one {le # produit sélectionné} other {les # produits sélectionnés}}"
@@ -391,6 +403,10 @@ var frFR = {
391
403
  developer_comment: "Label for the products modal title",
392
404
  string: "Exporter des produits"
393
405
  },
406
+ "ExportResourcesModal.modalTitle.productSelection": {
407
+ developer_comment: "Label for the product selections modal title",
408
+ string: "Export product selections"
409
+ },
394
410
  "ExportResourcesModal.modalTitle.productTailoring": {
395
411
  developer_comment: "Label for the product tailorings modal title",
396
412
  string: "Exporter les produits personnalisés"
@@ -175,6 +175,10 @@ var ptBR = {
175
175
  developer_comment: "Label for Export All orders",
176
176
  string: "Exportar tudo: {total, plural, one {# pedido} other {# pedidos}}"
177
177
  },
178
+ "ExportResourcesModal.exportScopeAllProductSelections": {
179
+ developer_comment: "Label for Export All product selections",
180
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
181
+ },
178
182
  "ExportResourcesModal.exportScopeAllProductTailorings": {
179
183
  developer_comment: "Label for Export All product tailorings",
180
184
  string: "Exportar produtos personalizados para {total, plural, one {# produto} other {# produtos}} em todas as lojas"
@@ -211,6 +215,10 @@ var ptBR = {
211
215
  developer_comment: "Label for Export Filtered orders",
212
216
  string: "Exportar filtrados: {total, plural, one {# pedido} other {# pedidos}}"
213
217
  },
218
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
219
+ developer_comment: "Label for Export Filtered product selections",
220
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
221
+ },
214
222
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
215
223
  developer_comment: "Label for Export Filtered product tailorings",
216
224
  string: "Exportar produtos personalizados para {total, plural, one {# produto filtrado} other {# produtos filtrados}}"
@@ -251,6 +259,10 @@ var ptBR = {
251
259
  developer_comment: "Label for Export Selected orders",
252
260
  string: "Exportar selecionados: {total, plural, one {# pedido} other {# pedidos}}"
253
261
  },
262
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
263
+ developer_comment: "Label for Export Selected product selections",
264
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
265
+ },
254
266
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
255
267
  developer_comment: "Label for Export Selected product tailorings",
256
268
  string: "Exportar produtos personalizados para {total, plural, one {# produto selecionado} other {# produtos selecionados}}"
@@ -391,6 +403,10 @@ var ptBR = {
391
403
  developer_comment: "Label for the products modal title",
392
404
  string: "Exportar produtos"
393
405
  },
406
+ "ExportResourcesModal.modalTitle.productSelection": {
407
+ developer_comment: "Label for the product selections modal title",
408
+ string: "Export product selections"
409
+ },
394
410
  "ExportResourcesModal.modalTitle.productTailoring": {
395
411
  developer_comment: "Label for the product tailorings modal title",
396
412
  string: "Exportar produtos personalizados"
@@ -177,6 +177,10 @@ var ptBR = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Exportar tudo: {total, plural, one {# pedido} other {# pedidos}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Exportar produtos personalizados para {total, plural, one {# produto} other {# produtos}} em todas as lojas"
@@ -213,6 +217,10 @@ var ptBR = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Exportar filtrados: {total, plural, one {# pedido} other {# pedidos}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Exportar produtos personalizados para {total, plural, one {# produto filtrado} other {# produtos filtrados}}"
@@ -253,6 +261,10 @@ var ptBR = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Exportar selecionados: {total, plural, one {# pedido} other {# pedidos}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Exportar produtos personalizados para {total, plural, one {# produto selecionado} other {# produtos selecionados}}"
@@ -393,6 +405,10 @@ var ptBR = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Exportar produtos"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Exportar produtos personalizados"
@@ -177,6 +177,10 @@ var ptBR = {
177
177
  developer_comment: "Label for Export All orders",
178
178
  string: "Exportar tudo: {total, plural, one {# pedido} other {# pedidos}}"
179
179
  },
180
+ "ExportResourcesModal.exportScopeAllProductSelections": {
181
+ developer_comment: "Label for Export All product selections",
182
+ string: "Export all: {total, plural, one {# product selection} other {# product selections}}"
183
+ },
180
184
  "ExportResourcesModal.exportScopeAllProductTailorings": {
181
185
  developer_comment: "Label for Export All product tailorings",
182
186
  string: "Exportar produtos personalizados para {total, plural, one {# produto} other {# produtos}} em todas as lojas"
@@ -213,6 +217,10 @@ var ptBR = {
213
217
  developer_comment: "Label for Export Filtered orders",
214
218
  string: "Exportar filtrados: {total, plural, one {# pedido} other {# pedidos}}"
215
219
  },
220
+ "ExportResourcesModal.exportScopeFilteredProductSelections": {
221
+ developer_comment: "Label for Export Filtered product selections",
222
+ string: "Export filtered: {total, plural, one {# product selection} other {# product selections}}"
223
+ },
216
224
  "ExportResourcesModal.exportScopeFilteredProductTailorings": {
217
225
  developer_comment: "Label for Export Filtered product tailorings",
218
226
  string: "Exportar produtos personalizados para {total, plural, one {# produto filtrado} other {# produtos filtrados}}"
@@ -253,6 +261,10 @@ var ptBR = {
253
261
  developer_comment: "Label for Export Selected orders",
254
262
  string: "Exportar selecionados: {total, plural, one {# pedido} other {# pedidos}}"
255
263
  },
264
+ "ExportResourcesModal.exportScopeSelectedProductSelections": {
265
+ developer_comment: "Label for Export Selected product selections",
266
+ string: "Export selected: {total, plural, one {# product selection} other {# product selections}}"
267
+ },
256
268
  "ExportResourcesModal.exportScopeSelectedProductTailorings": {
257
269
  developer_comment: "Label for Export Selected product tailorings",
258
270
  string: "Exportar produtos personalizados para {total, plural, one {# produto selecionado} other {# produtos selecionados}}"
@@ -393,6 +405,10 @@ var ptBR = {
393
405
  developer_comment: "Label for the products modal title",
394
406
  string: "Exportar produtos"
395
407
  },
408
+ "ExportResourcesModal.modalTitle.productSelection": {
409
+ developer_comment: "Label for the product selections modal title",
410
+ string: "Export product selections"
411
+ },
396
412
  "ExportResourcesModal.modalTitle.productTailoring": {
397
413
  developer_comment: "Label for the product tailorings modal title",
398
414
  string: "Exportar produtos personalizados"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@commercetools-frontend-extensions/export-resources-modal",
3
3
  "description": "Shared export modal for exporting resources",
4
- "version": "5.15.2",
4
+ "version": "5.16.0",
5
5
  "license": "BSD-3-Clause",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -15,8 +15,8 @@
15
15
  "README.md"
16
16
  ],
17
17
  "dependencies": {
18
- "@babel/runtime": "7.28.4",
19
- "@babel/runtime-corejs3": "7.28.4",
18
+ "@babel/runtime": "7.29.7",
19
+ "@babel/runtime-corejs3": "7.29.7",
20
20
  "@emotion/react": "11.14.0",
21
21
  "@emotion/styled": "11.14.1",
22
22
  "@formatjs/cli": "6.7.4",
@@ -26,7 +26,7 @@
26
26
  "moment": "2.30.1",
27
27
  "omit-empty-es": "^1.1.3",
28
28
  "prop-types": "15.8.1",
29
- "@commercetools-frontend-extensions/operations": "4.5.1"
29
+ "@commercetools-frontend-extensions/operations": "4.6.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@commercetools-frontend/actions-global": "27.8.0",
@@ -34,25 +34,25 @@
34
34
  "@commercetools-frontend/application-shell": "27.8.0",
35
35
  "@commercetools-frontend/application-shell-connectors": "27.8.0",
36
36
  "@commercetools-frontend/constants": "27.8.0",
37
- "@commercetools-frontend/fullstory": "4.0.3",
37
+ "@commercetools-frontend/fullstory": "4.1.1",
38
38
  "@commercetools-frontend/i18n": "27.8.0",
39
39
  "@commercetools-frontend/jest-preset-mc-app": "27.8.0",
40
40
  "@commercetools-frontend/l10n": "27.8.0",
41
41
  "@commercetools-frontend/sdk": "27.8.0",
42
42
  "@commercetools-frontend/sentry": "27.8.0",
43
- "@commercetools-frontend/ui-kit": "20.6.4",
44
- "@commercetools-uikit/design-system": "20.6.4",
45
- "@commercetools-uikit/icons": "20.6.4",
43
+ "@commercetools-frontend/ui-kit": "20.6.5",
44
+ "@commercetools-uikit/design-system": "20.6.5",
45
+ "@commercetools-uikit/icons": "20.6.5",
46
46
  "@preconstruct/cli": "2.8.13",
47
47
  "@types/jest": "30.0.0",
48
48
  "@types/testing-library__jest-dom": "^5.14.5",
49
49
  "msw": "1.3.5",
50
- "react": "19.2.0",
50
+ "react": "19.2.7",
51
51
  "react-intl": "7.1.4",
52
- "react-redux": "9.2.0",
52
+ "react-redux": "9.3.0",
53
53
  "redux": "5.0.1",
54
54
  "rimraf": "6.1.3",
55
- "typescript": "5.4.5"
55
+ "typescript": "5.9.3"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "@commercetools-frontend/actions-global": "24.x || 25.x || 27.x",