@vendure/admin-ui 1.8.3 → 1.8.5
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-catalog.umd.js +6 -5
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +2 -2
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-customer.umd.js +1 -1
- package/bundles/vendure-admin-ui-customer.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-settings.umd.js +3 -2
- package/bundles/vendure-admin-ui-settings.umd.js.map +1 -1
- package/core/common/version.d.ts +1 -1
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/esm2015/catalog/components/facet-detail/facet-detail.component.js +7 -6
- package/esm2015/core/common/generated-types.js +1 -1
- package/esm2015/core/common/introspection-result.js +1 -1
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/shared/components/form-field/form-field.component.js +2 -2
- package/esm2015/customer/providers/routing/customer-resolver.js +2 -2
- package/esm2015/settings/components/admin-detail/admin-detail.component.js +4 -3
- package/fesm2015/vendure-admin-ui-catalog.js +6 -5
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +2 -2
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-customer.js +1 -1
- package/fesm2015/vendure-admin-ui-customer.js.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.js +3 -2
- package/fesm2015/vendure-admin-ui-settings.js.map +1 -1
- package/package.json +2 -2
- package/settings/vendure-admin-ui-settings.metadata.json +1 -1
|
@@ -12891,7 +12891,7 @@ class FormFieldComponent {
|
|
|
12891
12891
|
if (!this.formFieldControl || !this.formFieldControl.formControlName) {
|
|
12892
12892
|
return;
|
|
12893
12893
|
}
|
|
12894
|
-
const errors = this.formFieldControl.formControlName.errors;
|
|
12894
|
+
const errors = this.formFieldControl.formControlName.dirty && this.formFieldControl.formControlName.errors;
|
|
12895
12895
|
if (errors) {
|
|
12896
12896
|
for (const errorKey of Object.keys(errors)) {
|
|
12897
12897
|
if (this.errors[errorKey]) {
|
|
@@ -17651,7 +17651,7 @@ function patchObject(obj, patch) {
|
|
|
17651
17651
|
}
|
|
17652
17652
|
|
|
17653
17653
|
// Auto-generated by the set-version.js script.
|
|
17654
|
-
const ADMIN_UI_VERSION = '1.8.
|
|
17654
|
+
const ADMIN_UI_VERSION = '1.8.5';
|
|
17655
17655
|
|
|
17656
17656
|
/**
|
|
17657
17657
|
* @description
|