@xdcs-protocol/ui-kit 1.2.3 → 1.3.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/index.cjs.js +25 -25
- package/dist/index.es.js +2068 -1852
- package/dist/types/components/PrFiNewTanstacktable.d.ts +10 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface NewTanstacktableProps {
|
|
2
|
+
title?: string;
|
|
3
|
+
data: any[];
|
|
4
|
+
columns: any;
|
|
5
|
+
rowSize?: number;
|
|
6
|
+
showSearchField?: boolean;
|
|
7
|
+
showCardFooter?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const PrFiNewTanstacktable: ({ title, data, columns, rowSize, showSearchField, showCardFooter, }: NewTanstacktableProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default PrFiNewTanstacktable;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import LeftPanel from "./components/LeftPanel";
|
|
2
2
|
import MainLayout from "./components/MainLayout";
|
|
3
3
|
import NewTanstacktable from "./components/NewTanstacktable";
|
|
4
|
+
import PrFiNewTanstacktable from "./components/PrFiNewTanstacktable";
|
|
4
5
|
import ThemeToggle from "./components/ToggleTheme";
|
|
5
6
|
import Header from "./components/Header";
|
|
6
7
|
export { LeftPanel };
|
|
@@ -11,6 +12,7 @@ export type { WalletStoreState } from "./types/WalletStore";
|
|
|
11
12
|
export { WalletStoreContext, useWalletStore } from "./hooks/useWalletContext";
|
|
12
13
|
export { textStyles } from "./theme";
|
|
13
14
|
export { NewTanstacktable };
|
|
15
|
+
export { PrFiNewTanstacktable };
|
|
14
16
|
export { CardFooter } from "./components/base/CardFooter";
|
|
15
17
|
export { CardHeader } from "./components/base/CardHeader";
|
|
16
18
|
export { DefiCard } from "./components/DefiCard";
|