@orderingstack/front-components-product-configurator 1.4.2-beta.11 → 1.4.2-beta.13
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/index.es.js
CHANGED
|
@@ -6942,7 +6942,7 @@ function useMenuOptions(product, nestedLvl, parentKind, parentSelCtx) {
|
|
|
6942
6942
|
);
|
|
6943
6943
|
unselectProductsInForm(productsToUnselect, setValue);
|
|
6944
6944
|
selectProductsInForm(productsToSelect, setValue, initialSelected);
|
|
6945
|
-
}, [
|
|
6945
|
+
}, [isFilterValidated]);
|
|
6946
6946
|
return {
|
|
6947
6947
|
isFilterValidated,
|
|
6948
6948
|
selected,
|
|
@@ -11023,7 +11023,6 @@ function ProductConfigurator(props) {
|
|
|
11023
11023
|
const {
|
|
11024
11024
|
encodedProduct,
|
|
11025
11025
|
initSelected,
|
|
11026
|
-
initFilter,
|
|
11027
11026
|
filter,
|
|
11028
11027
|
productQuantity,
|
|
11029
11028
|
setIsOnSubmittedOnTrue,
|
|
@@ -11048,8 +11047,7 @@ function ProductConfigurator(props) {
|
|
|
11048
11047
|
});
|
|
11049
11048
|
const methods = useForm({
|
|
11050
11049
|
defaultValues: {
|
|
11051
|
-
selected: initSelected
|
|
11052
|
-
filter: initFilter
|
|
11050
|
+
selected: initSelected
|
|
11053
11051
|
}
|
|
11054
11052
|
});
|
|
11055
11053
|
const {
|