@cloudtower/eagle 0.27.71-alpha.0 → 0.27.71
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/cjs/UIKitProvider/index.js +11 -19
- package/dist/cjs/index.js +0 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +1575 -1575
- package/dist/esm/UIKitProvider/index.js +9 -15
- package/dist/esm/index.js +1 -1
- package/dist/esm/stats1.html +1 -1
- package/dist/src/UIKitProvider/index.d.ts +0 -6
- package/dist/src/core/index.d.ts +1 -0
- package/dist/style.css +1259 -1259
- package/package.json +5 -5
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ParrotI18nSupportLng } from "@cloudtower/parrot";
|
|
2
2
|
import { BatchHelper } from "../core";
|
|
3
|
-
import { MessageApi } from "../core/message";
|
|
4
3
|
import React, { PropsWithChildren } from "react";
|
|
5
4
|
import { Kit } from "../spec";
|
|
6
5
|
export interface IProps {
|
|
@@ -13,11 +12,6 @@ export interface IProps {
|
|
|
13
12
|
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
14
13
|
}
|
|
15
14
|
export declare const kitContext: React.Context<Kit<any, HTMLElement>>;
|
|
16
|
-
export declare const MessageContext: React.Context<MessageApi>;
|
|
17
15
|
declare const UIKitProvider: (props: PropsWithChildren<IProps>) => JSX.Element;
|
|
18
16
|
export default UIKitProvider;
|
|
19
|
-
/**
|
|
20
|
-
* @deprecated 由于 useUIKit 会使 Treeshake 失效。不再推荐使用
|
|
21
|
-
*/
|
|
22
17
|
export declare const useUIKit: () => Kit<any, HTMLElement>;
|
|
23
|
-
export declare const useMessage: () => MessageApi;
|
package/dist/src/core/index.d.ts
CHANGED