@vendure/admin-ui 2.2.2 → 2.2.4
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/components/product-variant-list/product-variant-list.component.d.ts +1 -1
- package/core/common/generated-types.d.ts +5 -0
- package/core/common/version.d.ts +1 -1
- package/core/shared/components/order-state-label/order-state-label.component.d.ts +1 -1
- package/core/shared/dynamic-form-inputs/default-form-inputs.d.ts +1 -1
- package/esm2022/core/common/generated-types.mjs +1 -1
- package/esm2022/core/common/introspection-result.mjs +1 -1
- package/esm2022/core/common/version.mjs +2 -2
- package/esm2022/order/components/draft-order-detail/draft-order-detail.component.mjs +3 -2
- package/fesm2022/vendure-admin-ui-core.mjs +1 -1
- package/fesm2022/vendure-admin-ui-core.mjs.map +1 -1
- package/fesm2022/vendure-admin-ui-order.mjs +2 -1
- package/fesm2022/vendure-admin-ui-order.mjs.map +1 -1
- package/package.json +8 -8
|
@@ -7,7 +7,7 @@ export declare class ProductVariantListComponent extends TypedBaseListComponent<
|
|
|
7
7
|
dataTableId: DataTableLocationId | undefined;
|
|
8
8
|
readonly customFields: import("@vendure/admin-ui/core").CustomFieldConfig[];
|
|
9
9
|
readonly filters: import("@vendure/admin-ui/core").DataTableFilterCollection<ProductVariantFilterParameter>;
|
|
10
|
-
readonly sorts: import("@vendure/admin-ui/core").DataTableSortCollection<import("@vendure/admin-ui/core").ProductVariantSortParameter, ["name" | "
|
|
10
|
+
readonly sorts: import("@vendure/admin-ui/core").DataTableSortCollection<import("@vendure/admin-ui/core").ProductVariantSortParameter, ["name" | "id" | "createdAt" | "updatedAt" | "price" | "priceWithTax" | "sku"]>;
|
|
11
11
|
constructor();
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProductVariantListComponent, never>;
|
|
13
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<ProductVariantListComponent, "vdr-product-variant-list", never, { "productId": { "alias": "productId"; "required": false; }; "hideLanguageSelect": { "alias": "hideLanguageSelect"; "required": false; }; "dataTableId": { "alias": "dataTableId"; "required": false; }; }, {}, never, never, false, never>;
|
|
@@ -2669,6 +2669,10 @@ export type Mutation = {
|
|
|
2669
2669
|
deleteZone: DeletionResponse;
|
|
2670
2670
|
/** Delete a Zone */
|
|
2671
2671
|
deleteZones: Array<DeletionResponse>;
|
|
2672
|
+
/**
|
|
2673
|
+
* Duplicate an existing entity using a specific EntityDuplicator.
|
|
2674
|
+
* Since v2.2.0.
|
|
2675
|
+
*/
|
|
2672
2676
|
duplicateEntity: DuplicateEntityResult;
|
|
2673
2677
|
flushBufferedJobs: Success;
|
|
2674
2678
|
importProducts?: Maybe<ImportInfo>;
|
|
@@ -4466,6 +4470,7 @@ export type Query = {
|
|
|
4466
4470
|
customers: CustomerList;
|
|
4467
4471
|
/** Returns a list of eligible shipping methods for the draft Order */
|
|
4468
4472
|
eligibleShippingMethodsForDraftOrder: Array<ShippingMethodQuote>;
|
|
4473
|
+
/** Returns all configured EntityDuplicators. */
|
|
4469
4474
|
entityDuplicators: Array<EntityDuplicatorDefinition>;
|
|
4470
4475
|
facet?: Maybe<Facet>;
|
|
4471
4476
|
facetValues: FacetValueList;
|
package/core/common/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ADMIN_UI_VERSION = "2.2.
|
|
1
|
+
export declare const ADMIN_UI_VERSION = "2.2.4";
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
*/
|
|
12
12
|
export declare class OrderStateLabelComponent {
|
|
13
13
|
state: string;
|
|
14
|
-
get chipColorType(): "" | "
|
|
14
|
+
get chipColorType(): "error" | "success" | "warning" | "";
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<OrderStateLabelComponent, never>;
|
|
16
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<OrderStateLabelComponent, "vdr-order-state-label", never, { "state": { "alias": "state"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
17
17
|
}
|
|
@@ -12,7 +12,7 @@ import { RelationFormInputComponent } from './relation-form-input/relation-form-
|
|
|
12
12
|
import { SelectFormInputComponent } from './select-form-input/select-form-input.component';
|
|
13
13
|
import { TextFormInputComponent } from './text-form-input/text-form-input.component';
|
|
14
14
|
import { TextareaFormInputComponent } from './textarea-form-input/textarea-form-input.component';
|
|
15
|
-
export declare const defaultFormInputs: (typeof HtmlEditorFormInputComponent | typeof
|
|
15
|
+
export declare const defaultFormInputs: (typeof HtmlEditorFormInputComponent | typeof SelectFormInputComponent | typeof RelationFormInputComponent | typeof ProductSelectorFormInputComponent | typeof CustomerGroupFormInputComponent | typeof CurrencyFormInputComponent | typeof JsonEditorFormInputComponent | typeof CombinationModeFormInputComponent | typeof DateFormInputComponent | typeof PasswordFormInputComponent | typeof ProductMultiSelectorFormInputComponent | typeof TextFormInputComponent | typeof TextareaFormInputComponent)[];
|
|
16
16
|
/**
|
|
17
17
|
* Registers the default form input components.
|
|
18
18
|
*/
|