@vendure/admin-ui 1.4.3 → 1.4.7
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 +68 -28
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +101 -40
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-dashboard.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/catalog/components/facet-detail/facet-detail.component.d.ts +7 -2
- package/catalog/vendure-admin-ui-catalog.metadata.json +1 -1
- package/core/common/generated-types.d.ts +7 -7
- package/core/common/version.d.ts +1 -1
- package/core/data/utils/remove-readonly-custom-fields.d.ts +12 -3
- package/core/providers/i18n/i18n.service.d.ts +3 -1
- package/core/shared/directives/if-default-channel-active.directive.d.ts +1 -1
- package/core/shared/directives/if-multichannel.directive.d.ts +1 -1
- package/core/shared/pipes/locale-base.pipe.d.ts +5 -0
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/esm2015/catalog/components/facet-detail/facet-detail.component.js +44 -16
- package/esm2015/catalog/components/product-list/product-list.component.js +2 -2
- package/esm2015/core/common/base-detail.component.js +4 -4
- package/esm2015/core/common/generated-types.js +1 -1
- package/esm2015/core/common/introspection-result.js +1 -1
- package/esm2015/core/common/utilities/create-updated-translatable.js +1 -1
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/components/main-nav/main-nav.component.js +3 -3
- package/esm2015/core/data/utils/remove-readonly-custom-fields.js +15 -3
- package/esm2015/core/providers/i18n/i18n.service.js +14 -5
- package/esm2015/core/shared/components/rich-text-editor/prosemirror/prosemirror.service.js +2 -2
- package/esm2015/core/shared/components/tabbed-custom-fields/tabbed-custom-fields.component.js +3 -2
- package/esm2015/core/shared/directives/if-default-channel-active.directive.js +2 -2
- package/esm2015/core/shared/directives/if-multichannel.directive.js +2 -2
- package/esm2015/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.js +2 -2
- package/esm2015/core/shared/pipes/asset-preview.pipe.js +2 -2
- package/esm2015/core/shared/pipes/locale-base.pipe.js +23 -1
- package/esm2015/core/shared/pipes/locale-currency-name.pipe.js +4 -4
- package/esm2015/core/shared/pipes/locale-currency.pipe.js +2 -2
- package/esm2015/core/shared/pipes/locale-date.pipe.js +2 -2
- package/esm2015/core/shared/pipes/locale-language-name.pipe.js +2 -3
- package/esm2015/core/shared/pipes/locale-region-name.pipe.js +2 -3
- package/esm2015/dashboard/widgets/latest-orders-widget/latest-orders-widget.component.js +1 -1
- package/esm2015/settings/components/channel-list/channel-list.component.js +2 -2
- package/fesm2015/vendure-admin-ui-catalog.js +44 -16
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +66 -26
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-dashboard.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 +11 -11
- package/settings/vendure-admin-ui-settings.metadata.json +1 -1
- package/static/i18n-messages/pt_PT.json +22 -22
|
@@ -38,8 +38,13 @@ export declare class FacetDetailComponent extends BaseDetailComponent<FacetWithV
|
|
|
38
38
|
*/
|
|
39
39
|
private getUpdatedFacet;
|
|
40
40
|
/**
|
|
41
|
-
* Given an array of facet values and the values from the detailForm, this method creates
|
|
42
|
-
* which can be persisted to the API.
|
|
41
|
+
* Given an array of facet values and the values from the detailForm, this method creates a new array
|
|
42
|
+
* which can be persisted to the API via a createFacetValues mutation.
|
|
43
|
+
*/
|
|
44
|
+
private getCreatedFacetValues;
|
|
45
|
+
/**
|
|
46
|
+
* Given an array of facet values and the values from the detailForm, this method creates a new array
|
|
47
|
+
* which can be persisted to the API via an updateFacetValues mutation.
|
|
43
48
|
*/
|
|
44
49
|
private getUpdatedFacetValues;
|
|
45
50
|
}
|