@orderingstack/front-components-product-configurator 1.4.2-beta.31 → 1.4.2-beta.32
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/ProductConfigurator/useProductConfigurator.d.ts +1 -0
- package/dist/components/ProductConfigurator/useProductConfigurator.d.ts.map +1 -1
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -6839,7 +6839,7 @@ function useProductConfigurator(product) {
|
|
|
6839
6839
|
const setIsOnSubmittedOnTrue = useStore(
|
|
6840
6840
|
(state) => state.setIsOnSubmittedOnTrue
|
|
6841
6841
|
);
|
|
6842
|
-
useStore((state) => state.refreshFormDt);
|
|
6842
|
+
const refreshFormDt = useStore((state) => state.refreshFormDt);
|
|
6843
6843
|
const getInvalidSelCtxArray = useStore((state) => state.getInvalidSelCtxArray);
|
|
6844
6844
|
const getValidationMap = useStore((state) => state.getValidationMap);
|
|
6845
6845
|
const increaseProductQuantity = () => {
|
|
@@ -6867,7 +6867,8 @@ function useProductConfigurator(product) {
|
|
|
6867
6867
|
productQuantity,
|
|
6868
6868
|
getValidationMap,
|
|
6869
6869
|
increaseProductQuantity,
|
|
6870
|
-
decreaseProductQuantity
|
|
6870
|
+
decreaseProductQuantity,
|
|
6871
|
+
refreshFormDt
|
|
6871
6872
|
};
|
|
6872
6873
|
}
|
|
6873
6874
|
const validateProductFilter = (product, stateFilter) => {
|