react-declarative 2.7.93 → 2.7.94

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.d.ts CHANGED
@@ -23785,6 +23785,7 @@ declare module "react-declarative/components/SearchModal/SearchModal" {
23785
23785
  onChange?: (data: IRowData["id"][] | null, initial: boolean) => void;
23786
23786
  onLoadStart?: () => void;
23787
23787
  onLoadEnd?: (isOk: boolean) => void;
23788
+ onClose?: () => void;
23788
23789
  fallback?: (e: Error) => void;
23789
23790
  throwError?: boolean;
23790
23791
  openSubject: TBehaviorSubject<boolean>;
@@ -23848,6 +23849,7 @@ declare module "react-declarative/components/SearchModal/SearchModal" {
23848
23849
  throwError,
23849
23850
  submitLabel,
23850
23851
  submitIcon: SubmitIcon,
23852
+ onClose,
23851
23853
  ...listProps
23852
23854
  }: ISearchModalProps<FilterData, RowData, Payload, Field>) => JSX.Element;
23853
23855
  export default SearchModal;
@@ -23944,6 +23946,7 @@ declare module "react-declarative/components/SearchModal/useSearchModal" {
23944
23946
  onSubmit,
23945
23947
  onLoadEnd,
23946
23948
  onLoadStart,
23949
+ onClose,
23947
23950
  submitLabel,
23948
23951
  submitIcon,
23949
23952
  throwError,