@orderingstack/front-components-product-configurator 1.8.0 → 1.8.1
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/dist/components/MenuItemsDispatcher/MenuItemsDispatcher.d.ts +1 -0
- package/dist/components/MenuProductRoot/MenuProductRoot.d.ts +3 -1
- package/dist/components/ProductConfigurator/ProductConfigurator.d.ts +5 -1
- package/dist/index.cjs.js +6 -6
- package/dist/index.es.js +11 -6
- package/package.json +2 -1
|
@@ -5,5 +5,6 @@ export declare function MenuItemsDispatcher(props: {
|
|
|
5
5
|
nestedLvl?: number;
|
|
6
6
|
parentProduct: IProduct;
|
|
7
7
|
rootProduct: IProduct;
|
|
8
|
+
showOutsideAvailabilitySlotItems?: boolean;
|
|
8
9
|
}): JSX.Element;
|
|
9
10
|
export declare function MenuItemsDefaultUI(props: IMenuItemsUIProps): JSX.Element;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IMenuProductRootUIProps } from 'types';
|
|
3
|
-
export declare const MenuProductRoot: (props: Omit<IMenuProductRootUIProps, 'children'>
|
|
3
|
+
export declare const MenuProductRoot: (props: Omit<IMenuProductRootUIProps, 'children'> & {
|
|
4
|
+
showOutsideAvailabilitySlotItems?: boolean;
|
|
5
|
+
}) => JSX.Element;
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IProductConfiguratorProps } from '@orderingstack/ordering-types';
|
|
3
|
-
|
|
3
|
+
interface IProductConfiguratorExtendedProps extends IProductConfiguratorProps {
|
|
4
|
+
showOutsideAvailabilitySlotItems?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare function ProductConfigurator(props: IProductConfiguratorExtendedProps): JSX.Element;
|
|
7
|
+
export {};
|