@nocobase/client 1.6.17 → 1.6.19

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.
@@ -9,6 +9,7 @@
9
9
  import { ModalProps } from 'antd';
10
10
  import React from 'react';
11
11
  import { ActionDrawerProps, ComposedActionDrawer } from './types';
12
+ export declare function useDelayedVisible(visible: boolean, delay?: number): boolean;
12
13
  export declare const InternalActionModal: React.FC<ActionDrawerProps<ModalProps>>;
13
14
  export declare const ActionModal: ComposedActionDrawer<ModalProps>;
14
15
  export default ActionModal;
@@ -10,6 +10,7 @@ import { CascaderProps } from 'antd';
10
10
  import type { DefaultOptionType } from 'antd/lib/cascader';
11
11
  import React from 'react';
12
12
  type ParseOptions = {
13
+ defaultTypeOnNull?: string;
13
14
  stringToDate?: boolean;
14
15
  };
15
16
  type UseTypeConstantType = true | (string | [string, Record<string, any>])[];