@coinswap-app/uikit 0.8.0 → 1.0.0
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/Breadcrumbs/types.d.ts +1 -0
- package/dist/components/Button/RampButtonLite.d.ts +1 -0
- package/dist/components/ButtonMenu/types.d.ts +1 -0
- package/dist/components/Dropdown/types.d.ts +1 -0
- package/dist/components/Heading/types.d.ts +6 -6
- package/dist/components/MuiInput/InputAssets/InputAssets.d.ts +1 -0
- package/dist/components/Table/hooks.d.ts +1 -1
- package/dist/components/TableRow/TableRow.d.ts +1 -1
- package/dist/components/TableRow/components/LiquidityContainer.d.ts +1 -1
- package/dist/components/TableRow/components/TableActionBox.d.ts +1 -1
- package/dist/components/Tag/types.d.ts +1 -0
- package/dist/components/Tooltip/types.d.ts +8 -0
- package/dist/index.cjs.js +277 -268
- package/dist/index.esm.js +277 -268
- package/dist/theme/index.d.ts +2 -2
- package/dist/widgets/Menu/types.d.ts +1 -0
- package/dist/widgets/Modal/Modal.d.ts +1 -0
- package/dist/widgets/PriceContainer/PriceContainer.d.ts +1 -1
- package/dist/widgets/TopTokensContainer/TopTokensContainer.d.ts +1 -1
- package/dist/widgets/WalletModal/CopyToClipboard.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare const tags: {
|
|
2
|
-
H1:
|
|
3
|
-
H2:
|
|
4
|
-
H3:
|
|
5
|
-
H4:
|
|
6
|
-
H5:
|
|
7
|
-
H6:
|
|
2
|
+
readonly H1: "h1";
|
|
3
|
+
readonly H2: "h2";
|
|
4
|
+
readonly H3: "h3";
|
|
5
|
+
readonly H4: "h4";
|
|
6
|
+
readonly H5: "h5";
|
|
7
|
+
readonly H6: "h6";
|
|
8
8
|
};
|
|
9
9
|
export declare const sizes: {
|
|
10
10
|
readonly MD: "md";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
2
|
import { ColumnType, DataType, UseTableReturnType, UseTableOptionsType } from "./types";
|
|
3
|
-
export declare const makeRender: <T extends DataType>(value: any, render: (({ value
|
|
3
|
+
export declare const makeRender: <T extends DataType>(value: any, render: (({ value, row }: {
|
|
4
4
|
value: any;
|
|
5
5
|
row: T;
|
|
6
6
|
}) => ReactNode) | undefined, row: T) => (() => React.ReactNode);
|