@commercetools-frontend-extensions/export-resources-modal 4.6.20 → 4.6.22
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 +1 -1
- package/dist/commercetools-frontend-extensions-export-resources-modal.cjs.d.ts +2 -2
- package/dist/commercetools-frontend-extensions-export-resources-modal.cjs.dev.js +8 -7
- package/dist/commercetools-frontend-extensions-export-resources-modal.cjs.prod.js +8 -7
- package/dist/commercetools-frontend-extensions-export-resources-modal.esm.js +8 -7
- package/dist/{de-b71bc31d.cjs.dev.js → de-1b56a17a.cjs.dev.js} +4 -0
- package/dist/{de-d208a2d5.cjs.prod.js → de-8170d5df.cjs.prod.js} +4 -0
- package/dist/{de-d0fda6a0.esm.js → de-9f27a589.esm.js} +4 -0
- package/dist/declarations/src/@types/field-definition.d.ts +1 -0
- package/dist/{en-b2206855.cjs.prod.js → en-4a626fff.cjs.prod.js} +4 -0
- package/dist/{en-cf59a571.esm.js → en-74699910.esm.js} +4 -0
- package/dist/{en-5adbfb4d.cjs.dev.js → en-fc5e3cf7.cjs.dev.js} +4 -0
- package/dist/{es-d88a1436.esm.js → es-54156330.esm.js} +4 -0
- package/dist/{es-df2b0fa4.cjs.dev.js → es-b7474e55.cjs.prod.js} +4 -0
- package/dist/{es-4dc7985a.cjs.prod.js → es-e269f374.cjs.dev.js} +4 -0
- package/dist/{fr-FR-17111f48.cjs.dev.js → fr-FR-10ab2a7c.cjs.dev.js} +4 -0
- package/dist/{fr-FR-bd389328.esm.js → fr-FR-8c9df662.esm.js} +4 -0
- package/dist/{fr-FR-83683968.cjs.prod.js → fr-FR-b16f3e4c.cjs.prod.js} +4 -0
- package/dist/{pt-BR-a2c0b04a.esm.js → pt-BR-37ea3c69.esm.js} +4 -0
- package/dist/{pt-BR-d11a6929.cjs.prod.js → pt-BR-5716fbb8.cjs.prod.js} +4 -0
- package/dist/{pt-BR-c707ab26.cjs.dev.js → pt-BR-890d6f9d.cjs.dev.js} +4 -0
- package/dist/{zh-CN-55d17e1c.cjs.prod.js → zh-CN-0f4b738b.cjs.dev.js} +4 -0
- package/dist/{zh-CN-5b1e00ff.esm.js → zh-CN-4d5b02fd.esm.js} +4 -0
- package/dist/{zh-CN-3212dc43.cjs.dev.js → zh-CN-a781db14.cjs.prod.js} +4 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -330,7 +330,7 @@ import ExportResourcesModal from '@commercetools-frontend-extensions/export-reso
|
|
|
330
330
|
| `totalResourcesCount` | `number` | ✅ | | The count of all resources of identified `resourceType` |
|
|
331
331
|
| `selectedResourceIds` | `array` | | | Array of Ids of the selected resources |
|
|
332
332
|
| `fieldGroups` | `array` | ✅ | | Array of the grouped `fields` to export. |
|
|
333
|
-
| `fieldGroups[].groupLabel` | `string` | ✅ | | The label of the field group to be
|
|
333
|
+
| `fieldGroups[].groupLabel` | `string` | ✅ | | The label of the field group to be shown in the export modal |
|
|
334
334
|
| `fieldGroups[].groupName` | `string` | ✅ | | The name of the field group used to determine the state of expanded groups |
|
|
335
335
|
| `fieldGroups[].isExpanded` | `string` | | `false` | This property used to control the default state of each expandable group section in the UI. If `isExpanded` is set to `true`, then the corresponding group will be expanded when the component loads. The default value is `false` which means unless explicitly set to `true`, the group will be collapsed on initial load |
|
|
336
336
|
| `fieldGroups[].fields` | `array` | ✅ | | Array of the fields to export. The fields must align with the [commercetools API schema](https://docs.commercetools.com/api/). Field can have nested `fields` array. |
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./declarations/src/index";
|
|
2
|
-
export { default } from "./declarations/src/index";
|
|
1
|
+
export * from "./declarations/src/index.js";
|
|
2
|
+
export { default } from "./declarations/src/index.js";
|
|
3
3
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbWVyY2V0b29scy1mcm9udGVuZC1leHRlbnNpb25zLWV4cG9ydC1yZXNvdXJjZXMtbW9kYWwuY2pzLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuL2RlY2xhcmF0aW9ucy9zcmMvaW5kZXguZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSJ9
|
|
@@ -1159,7 +1159,8 @@ const useConvertFieldDefinitionsForExport = () => {
|
|
|
1159
1159
|
locale: language,
|
|
1160
1160
|
fallbackOrder: languages,
|
|
1161
1161
|
fallback: fieldDefinition.name
|
|
1162
|
-
}) : fieldDefinition.label
|
|
1162
|
+
}) : fieldDefinition.label,
|
|
1163
|
+
extendedFieldNames: fieldDefinition.extendedFieldNames
|
|
1163
1164
|
};
|
|
1164
1165
|
}), sortField)
|
|
1165
1166
|
};
|
|
@@ -1906,19 +1907,19 @@ const getChunkImport = locale => {
|
|
|
1906
1907
|
const intlLocale = i18n.mapLocaleToIntlLocale(locale);
|
|
1907
1908
|
switch (intlLocale) {
|
|
1908
1909
|
case 'de':
|
|
1909
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-de" */'./de-
|
|
1910
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-de" */'./de-1b56a17a.cjs.dev.js'); });
|
|
1910
1911
|
case 'es':
|
|
1911
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-es" */'./es-
|
|
1912
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-es" */'./es-e269f374.cjs.dev.js'); });
|
|
1912
1913
|
case 'fr-FR':
|
|
1913
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-fr-FR" */'./fr-FR-
|
|
1914
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-fr-FR" */'./fr-FR-10ab2a7c.cjs.dev.js'); });
|
|
1914
1915
|
case 'zh-CN':
|
|
1915
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-zh-CN" */'./zh-CN-
|
|
1916
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-zh-CN" */'./zh-CN-0f4b738b.cjs.dev.js'); });
|
|
1916
1917
|
case 'ja':
|
|
1917
1918
|
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-ja" */'./ja-9bd5f452.cjs.dev.js'); });
|
|
1918
1919
|
case 'pt-BR':
|
|
1919
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "change-history-i18n-pt-BR" */'./pt-BR-
|
|
1920
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "change-history-i18n-pt-BR" */'./pt-BR-890d6f9d.cjs.dev.js'); });
|
|
1920
1921
|
default:
|
|
1921
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-en" */'./en-
|
|
1922
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-en" */'./en-fc5e3cf7.cjs.dev.js'); });
|
|
1922
1923
|
}
|
|
1923
1924
|
};
|
|
1924
1925
|
const loadMessages = async locale => {
|
|
@@ -1159,7 +1159,8 @@ const useConvertFieldDefinitionsForExport = () => {
|
|
|
1159
1159
|
locale: language,
|
|
1160
1160
|
fallbackOrder: languages,
|
|
1161
1161
|
fallback: fieldDefinition.name
|
|
1162
|
-
}) : fieldDefinition.label
|
|
1162
|
+
}) : fieldDefinition.label,
|
|
1163
|
+
extendedFieldNames: fieldDefinition.extendedFieldNames
|
|
1163
1164
|
};
|
|
1164
1165
|
}), sortField)
|
|
1165
1166
|
};
|
|
@@ -1873,19 +1874,19 @@ const getChunkImport = locale => {
|
|
|
1873
1874
|
const intlLocale = i18n.mapLocaleToIntlLocale(locale);
|
|
1874
1875
|
switch (intlLocale) {
|
|
1875
1876
|
case 'de':
|
|
1876
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-de" */'./de-
|
|
1877
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-de" */'./de-8170d5df.cjs.prod.js'); });
|
|
1877
1878
|
case 'es':
|
|
1878
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-es" */'./es-
|
|
1879
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-es" */'./es-b7474e55.cjs.prod.js'); });
|
|
1879
1880
|
case 'fr-FR':
|
|
1880
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-fr-FR" */'./fr-FR-
|
|
1881
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-fr-FR" */'./fr-FR-b16f3e4c.cjs.prod.js'); });
|
|
1881
1882
|
case 'zh-CN':
|
|
1882
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-zh-CN" */'./zh-CN-
|
|
1883
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-zh-CN" */'./zh-CN-a781db14.cjs.prod.js'); });
|
|
1883
1884
|
case 'ja':
|
|
1884
1885
|
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-ja" */'./ja-37632763.cjs.prod.js'); });
|
|
1885
1886
|
case 'pt-BR':
|
|
1886
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "change-history-i18n-pt-BR" */'./pt-BR-
|
|
1887
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "change-history-i18n-pt-BR" */'./pt-BR-5716fbb8.cjs.prod.js'); });
|
|
1887
1888
|
default:
|
|
1888
|
-
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-en" */'./en-
|
|
1889
|
+
return Promise.resolve().then(function () { return require(/* webpackChunkName: "export-resources-modal-i18n-en" */'./en-4a626fff.cjs.prod.js'); });
|
|
1889
1890
|
}
|
|
1890
1891
|
};
|
|
1891
1892
|
const loadMessages = async locale => {
|
|
@@ -1121,7 +1121,8 @@ const useConvertFieldDefinitionsForExport = () => {
|
|
|
1121
1121
|
locale: language,
|
|
1122
1122
|
fallbackOrder: languages,
|
|
1123
1123
|
fallback: fieldDefinition.name
|
|
1124
|
-
}) : fieldDefinition.label
|
|
1124
|
+
}) : fieldDefinition.label,
|
|
1125
|
+
extendedFieldNames: fieldDefinition.extendedFieldNames
|
|
1125
1126
|
};
|
|
1126
1127
|
}), sortField)
|
|
1127
1128
|
};
|
|
@@ -1868,19 +1869,19 @@ const getChunkImport = locale => {
|
|
|
1868
1869
|
const intlLocale = mapLocaleToIntlLocale(locale);
|
|
1869
1870
|
switch (intlLocale) {
|
|
1870
1871
|
case 'de':
|
|
1871
|
-
return import(/* webpackChunkName: "export-resources-modal-i18n-de" */'./de-
|
|
1872
|
+
return import(/* webpackChunkName: "export-resources-modal-i18n-de" */'./de-9f27a589.esm.js');
|
|
1872
1873
|
case 'es':
|
|
1873
|
-
return import(/* webpackChunkName: "export-resources-modal-i18n-es" */'./es-
|
|
1874
|
+
return import(/* webpackChunkName: "export-resources-modal-i18n-es" */'./es-54156330.esm.js');
|
|
1874
1875
|
case 'fr-FR':
|
|
1875
|
-
return import(/* webpackChunkName: "export-resources-modal-i18n-fr-FR" */'./fr-FR-
|
|
1876
|
+
return import(/* webpackChunkName: "export-resources-modal-i18n-fr-FR" */'./fr-FR-8c9df662.esm.js');
|
|
1876
1877
|
case 'zh-CN':
|
|
1877
|
-
return import(/* webpackChunkName: "export-resources-modal-i18n-zh-CN" */'./zh-CN-
|
|
1878
|
+
return import(/* webpackChunkName: "export-resources-modal-i18n-zh-CN" */'./zh-CN-4d5b02fd.esm.js');
|
|
1878
1879
|
case 'ja':
|
|
1879
1880
|
return import(/* webpackChunkName: "export-resources-modal-i18n-ja" */'./ja-73c088a7.esm.js');
|
|
1880
1881
|
case 'pt-BR':
|
|
1881
|
-
return import(/* webpackChunkName: "change-history-i18n-pt-BR" */'./pt-BR-
|
|
1882
|
+
return import(/* webpackChunkName: "change-history-i18n-pt-BR" */'./pt-BR-37ea3c69.esm.js');
|
|
1882
1883
|
default:
|
|
1883
|
-
return import(/* webpackChunkName: "export-resources-modal-i18n-en" */'./en-
|
|
1884
|
+
return import(/* webpackChunkName: "export-resources-modal-i18n-en" */'./en-74699910.esm.js');
|
|
1884
1885
|
}
|
|
1885
1886
|
};
|
|
1886
1887
|
const loadMessages = async locale => {
|
|
@@ -173,6 +173,10 @@ var de = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "Meine Ansichten"
|
|
@@ -173,6 +173,10 @@ var de = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "Meine Ansichten"
|
|
@@ -171,6 +171,10 @@ var de = {
|
|
|
171
171
|
developer_comment: "Label for the products modal title",
|
|
172
172
|
string: "Export products"
|
|
173
173
|
},
|
|
174
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
175
|
+
developer_comment: "Label for the product types modal title",
|
|
176
|
+
string: "Export product types"
|
|
177
|
+
},
|
|
174
178
|
"ExportResourcesModal.myViews": {
|
|
175
179
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
176
180
|
string: "Meine Ansichten"
|
|
@@ -173,6 +173,10 @@ var en = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "My Views"
|
|
@@ -171,6 +171,10 @@ var en = {
|
|
|
171
171
|
developer_comment: "Label for the products modal title",
|
|
172
172
|
string: "Export products"
|
|
173
173
|
},
|
|
174
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
175
|
+
developer_comment: "Label for the product types modal title",
|
|
176
|
+
string: "Export product types"
|
|
177
|
+
},
|
|
174
178
|
"ExportResourcesModal.myViews": {
|
|
175
179
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
176
180
|
string: "My Views"
|
|
@@ -173,6 +173,10 @@ var en = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "My Views"
|
|
@@ -171,6 +171,10 @@ var es = {
|
|
|
171
171
|
developer_comment: "Label for the products modal title",
|
|
172
172
|
string: "Exportar productos"
|
|
173
173
|
},
|
|
174
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
175
|
+
developer_comment: "Label for the product types modal title",
|
|
176
|
+
string: "Export product types"
|
|
177
|
+
},
|
|
174
178
|
"ExportResourcesModal.myViews": {
|
|
175
179
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
176
180
|
string: "Mis vistas"
|
|
@@ -173,6 +173,10 @@ var es = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Exportar productos"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "Mis vistas"
|
|
@@ -173,6 +173,10 @@ var es = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Exportar productos"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "Mis vistas"
|
|
@@ -173,6 +173,10 @@ var frFR = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "Mes affichages"
|
|
@@ -171,6 +171,10 @@ var frFR = {
|
|
|
171
171
|
developer_comment: "Label for the products modal title",
|
|
172
172
|
string: "Export products"
|
|
173
173
|
},
|
|
174
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
175
|
+
developer_comment: "Label for the product types modal title",
|
|
176
|
+
string: "Export product types"
|
|
177
|
+
},
|
|
174
178
|
"ExportResourcesModal.myViews": {
|
|
175
179
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
176
180
|
string: "Mes affichages"
|
|
@@ -173,6 +173,10 @@ var frFR = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "Mes affichages"
|
|
@@ -171,6 +171,10 @@ var ptBR = {
|
|
|
171
171
|
developer_comment: "Label for the products modal title",
|
|
172
172
|
string: "Export products"
|
|
173
173
|
},
|
|
174
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
175
|
+
developer_comment: "Label for the product types modal title",
|
|
176
|
+
string: "Export product types"
|
|
177
|
+
},
|
|
174
178
|
"ExportResourcesModal.myViews": {
|
|
175
179
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
176
180
|
string: "Minhas visualizações"
|
|
@@ -173,6 +173,10 @@ var ptBR = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "Minhas visualizações"
|
|
@@ -173,6 +173,10 @@ var ptBR = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "Minhas visualizações"
|
|
@@ -173,6 +173,10 @@ var zhCN = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "我的视图"
|
|
@@ -171,6 +171,10 @@ var zhCN = {
|
|
|
171
171
|
developer_comment: "Label for the products modal title",
|
|
172
172
|
string: "Export products"
|
|
173
173
|
},
|
|
174
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
175
|
+
developer_comment: "Label for the product types modal title",
|
|
176
|
+
string: "Export product types"
|
|
177
|
+
},
|
|
174
178
|
"ExportResourcesModal.myViews": {
|
|
175
179
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
176
180
|
string: "我的视图"
|
|
@@ -173,6 +173,10 @@ var zhCN = {
|
|
|
173
173
|
developer_comment: "Label for the products modal title",
|
|
174
174
|
string: "Export products"
|
|
175
175
|
},
|
|
176
|
+
"ExportResourcesModal.modalTitle.productType": {
|
|
177
|
+
developer_comment: "Label for the product types modal title",
|
|
178
|
+
string: "Export product types"
|
|
179
|
+
},
|
|
176
180
|
"ExportResourcesModal.myViews": {
|
|
177
181
|
developer_comment: "Label for \"My Views\" Select Field",
|
|
178
182
|
string: "我的视图"
|
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": "4.6.
|
|
4
|
+
"version": "4.6.22",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@commercetools-frontend/fullstory": "2.4.5",
|
|
22
22
|
"@emotion/react": "11.13.3",
|
|
23
23
|
"@emotion/styled": "11.13.0",
|
|
24
|
-
"@formatjs/cli": "6.2.
|
|
24
|
+
"@formatjs/cli": "6.2.15",
|
|
25
25
|
"formik": "2.4.6",
|
|
26
26
|
"jest": "29.7.0",
|
|
27
27
|
"lodash": "4.17.21",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"@commercetools-frontend/sentry": "22.34.0",
|
|
44
44
|
"@commercetools-frontend/ui-kit": "19.12.1",
|
|
45
45
|
"@commercetools-uikit/design-system": "19.12.1",
|
|
46
|
-
"@preconstruct/cli": "2.8.
|
|
46
|
+
"@preconstruct/cli": "2.8.9",
|
|
47
47
|
"@types/jest": "29.5.13",
|
|
48
48
|
"@types/testing-library__jest-dom": "^5.14.5",
|
|
49
49
|
"msw": "1.3.4",
|
|
50
|
-
"react-intl": "6.
|
|
50
|
+
"react-intl": "6.6.8",
|
|
51
51
|
"react-redux": "7.2.9",
|
|
52
52
|
"redux": "4.2.1",
|
|
53
53
|
"rimraf": "6.0.1"
|