@shophost/react 2.0.51 → 2.0.53
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/admin/product/components/products-list/columns.d.ts +2 -2
- package/admin-client.cjs +1 -1
- package/admin-client.js +2000 -1840
- package/package.json +3 -3
- package/react.css +1 -1
- package/storefront/components/cart/cart-drawer-item.d.ts +1 -0
- package/storefront/components/cart/cart-items.d.ts +1 -0
- package/storefront/components/modifiers/modifier-dialog-container.d.ts +7 -1
- package/storefront/components/modifiers/modifiers-dialog.d.ts +7 -1
- package/storefront/components/modifiers/quantity-control.d.ts +8 -0
- package/storefront/components/pages/account-pages/shared.d.ts +2 -2
- package/storefront/providers/cart-provider.d.ts +3 -2
- package/storefront/providers/modifiers-provider.d.ts +7 -1
- package/storefront/translations/en.d.ts +1 -0
- package/storefront/translations/pl.d.ts +1 -0
- package/storefront/types/cart.types.d.ts +20 -2
|
@@ -5,10 +5,10 @@ interface PublishStatusCellProps {
|
|
|
5
5
|
table: any;
|
|
6
6
|
}
|
|
7
7
|
export declare const PublishStatusCell: ({ row, table }: PublishStatusCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
interface
|
|
8
|
+
interface ProductActionsCellProps {
|
|
9
9
|
row: Row<LocalizedProduct>;
|
|
10
10
|
table: any;
|
|
11
11
|
}
|
|
12
|
-
export declare const
|
|
12
|
+
export declare const ProductActionsCell: ({ row, table }: ProductActionsCellProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export declare const columns: ColumnDef<LocalizedProduct>[];
|
|
14
14
|
export {};
|