@kengic/core.react 0.0.1-beta.49 → 0.0.1-beta.50
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/kengic-core.react.js +739 -738
- package/package.json +1 -1
- package/src/util/kg.util.d.ts +2 -0
package/package.json
CHANGED
package/src/util/kg.util.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ModalFuncProps } from 'antd';
|
|
2
|
+
import { IntlShape } from 'react-intl';
|
|
2
3
|
/**
|
|
3
4
|
* 工具方法.
|
|
4
5
|
*/
|
|
@@ -15,6 +16,7 @@ export declare class KgUtil {
|
|
|
15
16
|
* 按钮确认弹窗的参数.
|
|
16
17
|
*/
|
|
17
18
|
export type IKgVarButtonModalProperties = ModalFuncProps & {
|
|
19
|
+
intl: IntlShape;
|
|
18
20
|
/** 是否隐藏取消按钮. */
|
|
19
21
|
kgHideCancelButton?: boolean;
|
|
20
22
|
};
|