@sellgar/kit 0.0.167 → 0.0.168

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sellgar/kit",
3
3
  "type": "module",
4
- "version": "0.0.167",
4
+ "version": "0.0.168",
5
5
  "description": "Sellgar kit",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface IContext {
3
+ data: any;
4
+ }
5
+ export declare const context: React.Context<IContext>;
6
+ export declare const Provider: React.Provider<IContext>;
7
+ export {};
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ interface IProps {
3
+ data: any;
4
+ }
5
+ export declare const Cell: React.FC<React.PropsWithChildren<IProps>>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import { default as React } from 'react';
2
+ interface IProps {
3
+ data: any;
4
+ }
5
+ export declare const CellProvider: React.FC<React.PropsWithChildren<IProps>>;
6
+ export {};
@@ -0,0 +1 @@
1
+ export declare const useCellData: () => any;
@@ -0,0 +1,2 @@
1
+ export { Cell } from './cell.tsx';
2
+ export { useCellData } from './hook/cell-data.hook.ts';
@@ -1 +1,2 @@
1
1
  export { Table } from './table.tsx';
2
+ export { useCellData } from './cell';