sales-frontend-components 0.0.122 → 0.0.124

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.cjs.js CHANGED
@@ -1392,6 +1392,9 @@ const useNationalityComponent = () => {
1392
1392
  const { isOpen, closeModal, openModal } = salesFrontendDesignSystem.useModalState();
1393
1393
  const NationalitySearchComponent = () => /* @__PURE__ */ jsxRuntime.jsx(NationalityComponent, { isOpen, onClose: closeModal, setValue: setNationality });
1394
1394
  return {
1395
+ isOpen,
1396
+ closeModal,
1397
+ setNationality,
1395
1398
  nationality,
1396
1399
  openModal,
1397
1400
  NationalitySearchComponent
@@ -1805,7 +1808,10 @@ const useVisaComponent = () => {
1805
1808
  return {
1806
1809
  visa,
1807
1810
  openModal,
1808
- VisaSearchComponent
1811
+ VisaSearchComponent,
1812
+ isOpen,
1813
+ closeModal,
1814
+ setVisa
1809
1815
  };
1810
1816
  };
1811
1817