bhd-components 0.5.1 → 0.5.3
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.
|
@@ -16,7 +16,7 @@ interface BhdSelectProps extends SelectProps {
|
|
|
16
16
|
filterSort?: (a: any, b: any) => number;
|
|
17
17
|
onDropdownVisibleChange?: (open: boolean) => void;
|
|
18
18
|
onMouseEnter?: (e: React.MouseEvent) => void;
|
|
19
|
-
options
|
|
19
|
+
options?: any;
|
|
20
20
|
arrowType?: string;
|
|
21
21
|
searchClassName?: string;
|
|
22
22
|
useType?: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
|
|
2
|
+
import { ModalFuncProps } from "antd";
|
|
3
|
+
interface BhdTipModalProps extends ModalFuncProps {
|
|
3
4
|
confirm: (obj: CustomModalParams) => any;
|
|
4
5
|
success: (obj: CustomModalParams) => any;
|
|
5
6
|
custom: (obj: CustomModalParams) => any;
|
package/es2017/i18n/zh_CN.js
CHANGED
package/esm/bhdSelect/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ interface BhdSelectProps extends SelectProps {
|
|
|
16
16
|
filterSort?: (a: any, b: any) => number;
|
|
17
17
|
onDropdownVisibleChange?: (open: boolean) => void;
|
|
18
18
|
onMouseEnter?: (e: React.MouseEvent) => void;
|
|
19
|
-
options
|
|
19
|
+
options?: any;
|
|
20
20
|
arrowType?: string;
|
|
21
21
|
searchClassName?: string;
|
|
22
22
|
useType?: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
|
|
2
|
+
import { ModalFuncProps } from "antd";
|
|
3
|
+
interface BhdTipModalProps extends ModalFuncProps {
|
|
3
4
|
confirm: (obj: CustomModalParams) => any;
|
|
4
5
|
success: (obj: CustomModalParams) => any;
|
|
5
6
|
custom: (obj: CustomModalParams) => any;
|
package/esm/i18n/zh_CN.js
CHANGED