@vendure/admin-ui 1.8.1 → 1.8.2
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/bundles/vendure-admin-ui-core.umd.js +32 -2
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-settings.umd.js +1 -1
- package/bundles/vendure-admin-ui-settings.umd.js.map +1 -1
- package/core/common/version.d.ts +1 -1
- package/core/public_api.d.ts +1 -0
- package/core/shared/pipes/custom-field-description.pipe.d.ts +8 -0
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/public_api.js +2 -1
- package/esm2015/core/shared/components/custom-field-control/custom-field-control.component.js +2 -2
- package/esm2015/core/shared/pipes/custom-field-description.pipe.js +26 -0
- package/esm2015/core/shared/shared.module.js +3 -1
- package/esm2015/settings/components/zone-detail-dialog/zone-detail-dialog.component.js +2 -2
- package/fesm2015/vendure-admin-ui-core.js +29 -3
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.js +1 -1
- package/fesm2015/vendure-admin-ui-settings.js.map +1 -1
- package/package.json +2 -2
|
@@ -2749,7 +2749,7 @@
|
|
|
2749
2749
|
function ZoneDetailDialogComponent(serverConfigService, formBuilder) {
|
|
2750
2750
|
this.serverConfigService = serverConfigService;
|
|
2751
2751
|
this.formBuilder = formBuilder;
|
|
2752
|
-
this.customFields = this.serverConfigService.getCustomFieldsFor('
|
|
2752
|
+
this.customFields = this.serverConfigService.getCustomFieldsFor('Zone');
|
|
2753
2753
|
}
|
|
2754
2754
|
ZoneDetailDialogComponent.prototype.ngOnInit = function () {
|
|
2755
2755
|
var e_1, _b;
|