@vendure/admin-ui 2.1.7 → 2.1.9
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/catalog/catalog.module.d.ts +3 -3
- package/catalog/components/variant-price-strategy-detail/variant-price-strategy-detail.component.d.ts +10 -0
- package/catalog/public_api.d.ts +1 -1
- package/core/common/generated-types.d.ts +20 -0
- package/core/common/version.d.ts +1 -1
- package/core/data/utils/is-entity-create-or-update-mutation.d.ts +6 -0
- package/core/data/utils/remove-readonly-custom-fields.d.ts +5 -11
- package/core/public_api.d.ts +2 -0
- package/{catalog → core/shared}/components/assets/assets.component.d.ts +2 -1
- package/core/shared/shared.module.d.ts +157 -156
- package/esm2022/catalog/catalog.module.mjs +5 -5
- package/esm2022/catalog/components/collection-detail/collection-detail.component.mjs +4 -5
- package/esm2022/catalog/components/create-product-variant-dialog/create-product-variant-dialog.component.mjs +2 -2
- package/esm2022/catalog/components/product-detail/product-detail.component.mjs +4 -5
- package/esm2022/catalog/components/product-options-editor/product-options-editor.component.mjs +1 -1
- package/esm2022/catalog/components/product-variant-detail/product-variant-detail.component.mjs +5 -5
- package/esm2022/catalog/components/variant-price-strategy-detail/variant-price-strategy-detail.component.mjs +33 -0
- package/esm2022/catalog/public_api.mjs +2 -2
- package/esm2022/core/common/generated-types.mjs +1 -1
- package/esm2022/core/common/version.mjs +2 -2
- package/esm2022/core/components/breadcrumb/breadcrumb.component.mjs +3 -3
- package/esm2022/core/data/providers/base-data.service.mjs +3 -2
- package/esm2022/core/data/utils/is-entity-create-or-update-mutation.mjs +45 -0
- package/esm2022/core/data/utils/remove-readonly-custom-fields.mjs +15 -80
- package/esm2022/core/public_api.mjs +3 -1
- package/esm2022/{catalog → core/shared}/components/assets/assets.component.mjs +13 -5
- package/esm2022/core/shared/components/assign-to-channel-dialog/assign-to-channel-dialog.component.mjs +1 -1
- package/esm2022/core/shared/components/data-table/data-table.component.mjs +1 -1
- package/esm2022/core/shared/shared.module.mjs +5 -1
- package/esm2022/settings/components/channel-detail/channel-detail.component.mjs +5 -5
- package/fesm2022/vendure-admin-ui-catalog.mjs +40 -103
- package/fesm2022/vendure-admin-ui-catalog.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-core.mjs +157 -82
- package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-settings.mjs +4 -4
- package/fesm2022/vendure-admin-ui-settings.mjs.map +1 -1
- package/package.json +13 -13
- package/static/i18n-messages/ar.json +2 -0
- package/static/i18n-messages/cs.json +2 -0
- package/static/i18n-messages/de.json +2 -0
- package/static/i18n-messages/en.json +2 -0
- package/static/i18n-messages/es.json +2 -0
- package/static/i18n-messages/fa.json +3 -1
- package/static/i18n-messages/fr.json +2 -0
- package/static/i18n-messages/he.json +2 -0
- package/static/i18n-messages/hr.json +2 -0
- package/static/i18n-messages/it.json +3 -1
- package/static/i18n-messages/ne.json +3 -1
- package/static/i18n-messages/pl.json +2 -0
- package/static/i18n-messages/pt_BR.json +3 -1
- package/static/i18n-messages/pt_PT.json +2 -0
- package/static/i18n-messages/ru.json +2 -0
- package/static/i18n-messages/sv.json +797 -0
- package/static/i18n-messages/uk.json +3 -1
- package/static/i18n-messages/zh_Hans.json +2 -0
- package/static/i18n-messages/zh_Hant.json +2 -0
- package/static/vendure-ui-config.json +2 -1
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
"assign-variants-to-channel": "Додати варіанти товару в канал",
|
|
73
73
|
"auto-update-option-variant-name": "Автоматично оновлювати назви варіантів товару, використовуючи цю опцію",
|
|
74
74
|
"auto-update-product-variant-name": "Автоматично оновлювати назви варіантів товару",
|
|
75
|
+
"calculated-price": "Розрахована ціна",
|
|
76
|
+
"calculated-price-tooltip": "Є настроєний спеціальний розрахунок ціни, який змінює встановлену вище ціну:",
|
|
75
77
|
"cannot-create-variants-without-options": "Не можна створити варіант без опцій",
|
|
76
78
|
"channel-price-preview": "Попередній перегляд цін каналу",
|
|
77
79
|
"collection": "Колекція",
|
|
@@ -792,4 +794,4 @@
|
|
|
792
794
|
"job-state-pending": "В очікуванні",
|
|
793
795
|
"job-state-running": "Виконується"
|
|
794
796
|
}
|
|
795
|
-
}
|
|
797
|
+
}
|
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
"assign-variants-to-channel": "添加到销售渠道",
|
|
73
73
|
"auto-update-option-variant-name": "此选项自动更新不同商品变体名称",
|
|
74
74
|
"auto-update-product-variant-name": "自动更新不同商品变体名称",
|
|
75
|
+
"calculated-price": "计算价格",
|
|
76
|
+
"calculated-price-tooltip": "有一个配置的自定义价格计算,修改了上面设置的价格:",
|
|
75
77
|
"cannot-create-variants-without-options": "",
|
|
76
78
|
"channel-price-preview": "渠道价格预览",
|
|
77
79
|
"collection": "",
|
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
"assign-variants-to-channel": "",
|
|
73
73
|
"auto-update-option-variant-name": "",
|
|
74
74
|
"auto-update-product-variant-name": "",
|
|
75
|
+
"calculated-price": "計算價格",
|
|
76
|
+
"calculated-price-tooltip": "有一個自定義價格計算配置,修改了上面設定的價格:",
|
|
75
77
|
"cannot-create-variants-without-options": "",
|
|
76
78
|
"channel-price-preview": "渠道價格覽",
|
|
77
79
|
"collection": "",
|