@coinswap-app/uikit 1.0.0 → 1.0.2
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/components/EarnedCarouselWrapper/EarnedCarouselWrapper.d.ts +3 -1
- package/dist/components/EarnedWrapper/EarnedWrapper.d.ts +3 -1
- package/dist/components/SpacePadComponents/index.logic.d.ts +1 -1
- package/dist/components/Table/types.d.ts +14 -14
- package/dist/components/Tooltip/Tooltip.d.ts +1 -9
- package/dist/components/Tooltip/types.d.ts +2 -0
- package/dist/index.cjs.js +578 -1649
- package/dist/index.esm.js +578 -1649
- package/dist/theme/index.d.ts +2 -2
- package/dist/widgets/Modal/ModalContext.d.ts +3 -1
- package/package.json +1 -1
package/dist/theme/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DefaultTheme, Interpolation
|
|
1
|
+
import { DefaultTheme, Interpolation } from "styled-components";
|
|
2
2
|
import { AlertTheme } from "../components/Alert/types";
|
|
3
3
|
import { ButtonTheme } from "../components/Button/types";
|
|
4
4
|
import { CardTheme } from "../components/Card/types";
|
|
@@ -30,7 +30,7 @@ export interface CoinSwapTheme {
|
|
|
30
30
|
zIndices: ZIndices;
|
|
31
31
|
backgrounds: Backgrounds;
|
|
32
32
|
grids: Grids;
|
|
33
|
-
gridLayout: Interpolation<
|
|
33
|
+
gridLayout: Interpolation<DefaultTheme>;
|
|
34
34
|
}
|
|
35
35
|
export { default as dark } from "./dark";
|
|
36
36
|
export { default as light } from "./light";
|
|
@@ -6,5 +6,7 @@ interface ModalsContext {
|
|
|
6
6
|
setCloseOnOverlayClick: React.Dispatch<React.SetStateAction<boolean>>;
|
|
7
7
|
}
|
|
8
8
|
export declare const Context: React.Context<ModalsContext>;
|
|
9
|
-
declare const ModalProvider: React.FC
|
|
9
|
+
declare const ModalProvider: React.FC<{
|
|
10
|
+
children: React.ReactNode;
|
|
11
|
+
}>;
|
|
10
12
|
export default ModalProvider;
|