@jamsrui/table 0.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/README.md +40 -0
- package/dist/chunk-33TE2BHZ.js +1 -0
- package/dist/chunk-3DEGOO53.js +1 -0
- package/dist/chunk-4HKO3A5Q.js +1 -0
- package/dist/chunk-AE6FXOJG.mjs +1 -0
- package/dist/chunk-AOUQYQBM.js +1 -0
- package/dist/chunk-BNDB4QJQ.mjs +1 -0
- package/dist/chunk-C226J2M3.mjs +1 -0
- package/dist/chunk-CUSCOOCX.mjs +1 -0
- package/dist/chunk-E66GNLTH.mjs +1 -0
- package/dist/chunk-FCXZ6T4U.mjs +1 -0
- package/dist/chunk-G56JYZMX.mjs +1 -0
- package/dist/chunk-GKIPZGG6.js +1 -0
- package/dist/chunk-GYUJBPIW.mjs +1 -0
- package/dist/chunk-IUKUUQL4.js +1 -0
- package/dist/chunk-J4IKCIFW.js +1 -0
- package/dist/chunk-NTBPFXNE.js +1 -0
- package/dist/chunk-QMFUPHXA.js +1 -0
- package/dist/chunk-SDQMNVG7.mjs +1 -0
- package/dist/chunk-TUDBCRW7.js +1 -0
- package/dist/chunk-TYYVDMZS.mjs +1 -0
- package/dist/chunk-U734EP46.js +1 -0
- package/dist/chunk-VOSLASEC.js +1 -0
- package/dist/chunk-VVMX3GVS.mjs +1 -0
- package/dist/chunk-WKT355RZ.mjs +1 -0
- package/dist/chunk-YRMO4O4W.mjs +1 -0
- package/dist/chunk-ZEQXYD6G.js +1 -0
- package/dist/index.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +1 -0
- package/dist/index.mjs +1 -0
- package/dist/styles.d.mts +210 -0
- package/dist/styles.d.ts +210 -0
- package/dist/styles.js +1 -0
- package/dist/styles.mjs +1 -0
- package/dist/table-2IVtRYPc.d.ts +45 -0
- package/dist/table-body.d.mts +10 -0
- package/dist/table-body.d.ts +10 -0
- package/dist/table-body.js +1 -0
- package/dist/table-body.mjs +1 -0
- package/dist/table-cell.d.mts +10 -0
- package/dist/table-cell.d.ts +10 -0
- package/dist/table-cell.js +1 -0
- package/dist/table-cell.mjs +1 -0
- package/dist/table-column.d.mts +10 -0
- package/dist/table-column.d.ts +10 -0
- package/dist/table-column.js +1 -0
- package/dist/table-column.mjs +1 -0
- package/dist/table-config.d.mts +24 -0
- package/dist/table-config.d.ts +24 -0
- package/dist/table-config.js +1 -0
- package/dist/table-config.mjs +1 -0
- package/dist/table-context.d.mts +21 -0
- package/dist/table-context.d.ts +21 -0
- package/dist/table-context.js +1 -0
- package/dist/table-context.mjs +1 -0
- package/dist/table-empty-state.d.mts +5 -0
- package/dist/table-empty-state.d.ts +5 -0
- package/dist/table-empty-state.js +1 -0
- package/dist/table-empty-state.mjs +1 -0
- package/dist/table-footer.d.mts +10 -0
- package/dist/table-footer.d.ts +10 -0
- package/dist/table-footer.js +1 -0
- package/dist/table-footer.mjs +1 -0
- package/dist/table-header.d.mts +10 -0
- package/dist/table-header.d.ts +10 -0
- package/dist/table-header.js +1 -0
- package/dist/table-header.mjs +1 -0
- package/dist/table-kjrxrR3X.d.mts +45 -0
- package/dist/table-root.d.mts +10 -0
- package/dist/table-root.d.ts +10 -0
- package/dist/table-root.js +1 -0
- package/dist/table-root.mjs +1 -0
- package/dist/table-row.d.mts +10 -0
- package/dist/table-row.d.ts +10 -0
- package/dist/table-row.js +1 -0
- package/dist/table-row.mjs +1 -0
- package/dist/table-wrapper.d.mts +10 -0
- package/dist/table-wrapper.d.ts +10 -0
- package/dist/table-wrapper.js +1 -0
- package/dist/table-wrapper.mjs +1 -0
- package/dist/table.d.mts +12 -0
- package/dist/table.d.ts +12 -0
- package/dist/table.js +1 -0
- package/dist/table.mjs +1 -0
- package/dist/use-table.d.mts +12 -0
- package/dist/use-table.d.ts +12 -0
- package/dist/use-table.js +1 -0
- package/dist/use-table.mjs +1 -0
- package/package.json +48 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableBody: (props: TableBody.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableBody {
|
|
6
|
+
interface Props extends UIProps<"tbody"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableBody };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableBody: (props: TableBody.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableBody {
|
|
6
|
+
interface Props extends UIProps<"tbody"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableBody };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkVOSLASECjs = require('./chunk-VOSLASEC.js');require('./chunk-IUKUUQL4.js');require('./chunk-4HKO3A5Q.js');require('./chunk-NTBPFXNE.js');require('./chunk-GKIPZGG6.js');exports.TableBody = _chunkVOSLASECjs.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-BNDB4QJQ.mjs";import"./chunk-GYUJBPIW.mjs";import"./chunk-E66GNLTH.mjs";import"./chunk-AE6FXOJG.mjs";import"./chunk-TYYVDMZS.mjs";export{a as TableBody};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableCell: (props: TableCell.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableCell {
|
|
6
|
+
interface Props extends UIProps<"td"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableCell };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableCell: (props: TableCell.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableCell {
|
|
6
|
+
interface Props extends UIProps<"td"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableCell };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkNTBPFXNEjs = require('./chunk-NTBPFXNE.js');require('./chunk-GKIPZGG6.js');exports.TableCell = _chunkNTBPFXNEjs.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-AE6FXOJG.mjs";import"./chunk-TYYVDMZS.mjs";export{a as TableCell};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableColumn: (props: TableColumn.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableColumn {
|
|
6
|
+
interface Props extends UIProps<"th"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableColumn };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableColumn: (props: TableColumn.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableColumn {
|
|
6
|
+
interface Props extends UIProps<"th"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableColumn };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkZEQXYD6Gjs = require('./chunk-ZEQXYD6G.js');require('./chunk-GKIPZGG6.js');exports.TableColumn = _chunkZEQXYD6Gjs.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-VVMX3GVS.mjs";import"./chunk-TYYVDMZS.mjs";export{a as TableColumn};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { T as Table } from './table-kjrxrR3X.mjs';
|
|
2
|
+
import './table-body.mjs';
|
|
3
|
+
import './table-cell.mjs';
|
|
4
|
+
import './table-column.mjs';
|
|
5
|
+
import * as react from 'react';
|
|
6
|
+
import { GlobalConfigProps } from '@jamsrui/core';
|
|
7
|
+
import './table-header.mjs';
|
|
8
|
+
import './table-row.mjs';
|
|
9
|
+
import '@jamsrui/utils';
|
|
10
|
+
import './styles.mjs';
|
|
11
|
+
import 'tailwind-variants';
|
|
12
|
+
import './table-footer.mjs';
|
|
13
|
+
import './table-wrapper.mjs';
|
|
14
|
+
|
|
15
|
+
declare const useTableConfig: () => TableConfig.Props;
|
|
16
|
+
declare const TableConfig: (props: TableConfig.Props & {
|
|
17
|
+
merge?: boolean;
|
|
18
|
+
}) => react.JSX.Element;
|
|
19
|
+
declare namespace TableConfig {
|
|
20
|
+
interface Props extends Table.Props, GlobalConfigProps<Table.Props> {
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { TableConfig, useTableConfig };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { T as Table } from './table-2IVtRYPc.js';
|
|
2
|
+
import './table-body.js';
|
|
3
|
+
import './table-cell.js';
|
|
4
|
+
import './table-column.js';
|
|
5
|
+
import * as react from 'react';
|
|
6
|
+
import { GlobalConfigProps } from '@jamsrui/core';
|
|
7
|
+
import './table-header.js';
|
|
8
|
+
import './table-row.js';
|
|
9
|
+
import '@jamsrui/utils';
|
|
10
|
+
import './styles.js';
|
|
11
|
+
import 'tailwind-variants';
|
|
12
|
+
import './table-footer.js';
|
|
13
|
+
import './table-wrapper.js';
|
|
14
|
+
|
|
15
|
+
declare const useTableConfig: () => TableConfig.Props;
|
|
16
|
+
declare const TableConfig: (props: TableConfig.Props & {
|
|
17
|
+
merge?: boolean;
|
|
18
|
+
}) => react.JSX.Element;
|
|
19
|
+
declare namespace TableConfig {
|
|
20
|
+
interface Props extends Table.Props, GlobalConfigProps<Table.Props> {
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { TableConfig, useTableConfig };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkQMFUPHXAjs = require('./chunk-QMFUPHXA.js');exports.TableConfig = _chunkQMFUPHXAjs.a; exports.useTableConfig = _chunkQMFUPHXAjs.b;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a,b}from"./chunk-G56JYZMX.mjs";export{a as TableConfig,b as useTableConfig};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { u as useTable } from './table-kjrxrR3X.mjs';
|
|
3
|
+
import '@jamsrui/utils';
|
|
4
|
+
import './styles.mjs';
|
|
5
|
+
import 'tailwind-variants';
|
|
6
|
+
import './table-body.mjs';
|
|
7
|
+
import './table-cell.mjs';
|
|
8
|
+
import './table-column.mjs';
|
|
9
|
+
import './table-footer.mjs';
|
|
10
|
+
import './table-header.mjs';
|
|
11
|
+
import './table-row.mjs';
|
|
12
|
+
import './table-wrapper.mjs';
|
|
13
|
+
|
|
14
|
+
declare const useTableContext: () => TableContext.Props;
|
|
15
|
+
declare const TableContext: react.Context<TableContext.Props | null>;
|
|
16
|
+
declare namespace TableContext {
|
|
17
|
+
interface Props extends ReturnType<typeof useTable> {
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export { TableContext, useTableContext };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { u as useTable } from './table-2IVtRYPc.js';
|
|
3
|
+
import '@jamsrui/utils';
|
|
4
|
+
import './styles.js';
|
|
5
|
+
import 'tailwind-variants';
|
|
6
|
+
import './table-body.js';
|
|
7
|
+
import './table-cell.js';
|
|
8
|
+
import './table-column.js';
|
|
9
|
+
import './table-footer.js';
|
|
10
|
+
import './table-header.js';
|
|
11
|
+
import './table-row.js';
|
|
12
|
+
import './table-wrapper.js';
|
|
13
|
+
|
|
14
|
+
declare const useTableContext: () => TableContext.Props;
|
|
15
|
+
declare const TableContext: react.Context<TableContext.Props | null>;
|
|
16
|
+
declare namespace TableContext {
|
|
17
|
+
interface Props extends ReturnType<typeof useTable> {
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export { TableContext, useTableContext };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkGKIPZGG6js = require('./chunk-GKIPZGG6.js');exports.TableContext = _chunkGKIPZGG6js.a; exports.useTableContext = _chunkGKIPZGG6js.b;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a,b}from"./chunk-TYYVDMZS.mjs";export{a as TableContext,b as useTableContext};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkIUKUUQL4js = require('./chunk-IUKUUQL4.js');require('./chunk-4HKO3A5Q.js');require('./chunk-NTBPFXNE.js');require('./chunk-GKIPZGG6.js');exports.TableEmptyState = _chunkIUKUUQL4js.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-GYUJBPIW.mjs";import"./chunk-E66GNLTH.mjs";import"./chunk-AE6FXOJG.mjs";import"./chunk-TYYVDMZS.mjs";export{a as TableEmptyState};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableFooter: (props: TableFooter.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableFooter {
|
|
6
|
+
interface Props extends UIProps<"tfoot"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableFooter };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableFooter: (props: TableFooter.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableFooter {
|
|
6
|
+
interface Props extends UIProps<"tfoot"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableFooter };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkGKIPZGG6js = require('./chunk-GKIPZGG6.js');var _hooks = require('@jamsrui/hooks');var m=o=>{let{getFooterProps:r}=_chunkGKIPZGG6js.b.call(void 0, );return _hooks.useRenderElement.call(void 0, "tfoot",{props:[r(o)]})};exports.TableFooter = m;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{b as e}from"./chunk-TYYVDMZS.mjs";import{useRenderElement as t}from"@jamsrui/hooks";var m=o=>{let{getFooterProps:r}=e();return t("tfoot",{props:[r(o)]})};export{m as TableFooter};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableHeader: (props: TableHeader.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableHeader {
|
|
6
|
+
interface Props extends UIProps<"thead"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableHeader };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableHeader: (props: TableHeader.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableHeader {
|
|
6
|
+
interface Props extends UIProps<"thead"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableHeader };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkAOUQYQBMjs = require('./chunk-AOUQYQBM.js');require('./chunk-GKIPZGG6.js');exports.TableHeader = _chunkAOUQYQBMjs.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-C226J2M3.mjs";import"./chunk-TYYVDMZS.mjs";export{a as TableHeader};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { PropGetter, UIProps, SlotsToClassNames } from '@jamsrui/utils';
|
|
3
|
+
import { TableVariantProps, TableSlots } from './styles.mjs';
|
|
4
|
+
import { TableBody } from './table-body.mjs';
|
|
5
|
+
import { TableCell } from './table-cell.mjs';
|
|
6
|
+
import { TableColumn } from './table-column.mjs';
|
|
7
|
+
import { TableFooter } from './table-footer.mjs';
|
|
8
|
+
import { TableHeader } from './table-header.mjs';
|
|
9
|
+
import { TableRow } from './table-row.mjs';
|
|
10
|
+
import { TableWrapper } from './table-wrapper.mjs';
|
|
11
|
+
|
|
12
|
+
declare const useTable: (props: useTable.Props) => {
|
|
13
|
+
getRootProps: PropGetter<Table.Props>;
|
|
14
|
+
getTableProps: PropGetter<Table.Props>;
|
|
15
|
+
getHeaderProps: PropGetter<TableHeader.Props>;
|
|
16
|
+
getColumnProps: PropGetter<TableColumn.Props>;
|
|
17
|
+
getBodyProps: PropGetter<TableBody.Props>;
|
|
18
|
+
getRowProps: PropGetter<TableRow.Props>;
|
|
19
|
+
getCellProps: PropGetter<TableCell.Props>;
|
|
20
|
+
getFooterProps: PropGetter<TableFooter.Props>;
|
|
21
|
+
getWrapperProps: PropGetter<TableWrapper.Props>;
|
|
22
|
+
};
|
|
23
|
+
declare namespace useTable {
|
|
24
|
+
interface Props extends UIProps<"table">, TableVariantProps {
|
|
25
|
+
classNames?: SlotsToClassNames<TableSlots>;
|
|
26
|
+
slotProps?: {
|
|
27
|
+
table?: Table.Props;
|
|
28
|
+
header?: TableHeader.Props;
|
|
29
|
+
column?: TableColumn.Props;
|
|
30
|
+
body?: TableBody.Props;
|
|
31
|
+
row?: TableRow.Props;
|
|
32
|
+
cell?: TableCell.Props;
|
|
33
|
+
footer?: TableFooter.Props;
|
|
34
|
+
wrapper?: TableWrapper.Props;
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
declare const Table: (props: Table.Props) => react.JSX.Element;
|
|
40
|
+
declare namespace Table {
|
|
41
|
+
interface Props extends useTable.Props {
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export { Table as T, useTable as u };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableTable: (props: TableTable.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableTable {
|
|
6
|
+
interface Props extends UIProps<"table"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableTable };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableTable: (props: TableTable.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableTable {
|
|
6
|
+
interface Props extends UIProps<"table"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableTable };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunk3DEGOO53js = require('./chunk-3DEGOO53.js');require('./chunk-GKIPZGG6.js');exports.TableTable = _chunk3DEGOO53js.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-SDQMNVG7.mjs";import"./chunk-TYYVDMZS.mjs";export{a as TableTable};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableRow: (props: TableRow.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableRow {
|
|
6
|
+
interface Props extends UIProps<"tr"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableRow };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableRow: (props: TableRow.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableRow {
|
|
6
|
+
interface Props extends UIProps<"tr"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableRow };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunk4HKO3A5Qjs = require('./chunk-4HKO3A5Q.js');require('./chunk-GKIPZGG6.js');exports.TableRow = _chunk4HKO3A5Qjs.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-E66GNLTH.mjs";import"./chunk-TYYVDMZS.mjs";export{a as TableRow};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableWrapper: (props: TableWrapper.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableWrapper {
|
|
6
|
+
interface Props extends UIProps<"div"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableWrapper };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { UIProps } from '@jamsrui/utils';
|
|
3
|
+
|
|
4
|
+
declare const TableWrapper: (props: TableWrapper.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
|
|
5
|
+
declare namespace TableWrapper {
|
|
6
|
+
interface Props extends UIProps<"div"> {
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export { TableWrapper };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunk33TE2BHZjs = require('./chunk-33TE2BHZ.js');require('./chunk-GKIPZGG6.js');exports.TableWrapper = _chunk33TE2BHZjs.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-WKT355RZ.mjs";import"./chunk-TYYVDMZS.mjs";export{a as TableWrapper};
|
package/dist/table.d.mts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import 'react';
|
|
2
|
+
export { T as Table } from './table-kjrxrR3X.mjs';
|
|
3
|
+
import '@jamsrui/utils';
|
|
4
|
+
import './styles.mjs';
|
|
5
|
+
import 'tailwind-variants';
|
|
6
|
+
import './table-body.mjs';
|
|
7
|
+
import './table-cell.mjs';
|
|
8
|
+
import './table-column.mjs';
|
|
9
|
+
import './table-footer.mjs';
|
|
10
|
+
import './table-header.mjs';
|
|
11
|
+
import './table-row.mjs';
|
|
12
|
+
import './table-wrapper.mjs';
|
package/dist/table.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import 'react';
|
|
2
|
+
export { T as Table } from './table-2IVtRYPc.js';
|
|
3
|
+
import '@jamsrui/utils';
|
|
4
|
+
import './styles.js';
|
|
5
|
+
import 'tailwind-variants';
|
|
6
|
+
import './table-body.js';
|
|
7
|
+
import './table-cell.js';
|
|
8
|
+
import './table-column.js';
|
|
9
|
+
import './table-footer.js';
|
|
10
|
+
import './table-header.js';
|
|
11
|
+
import './table-row.js';
|
|
12
|
+
import './table-wrapper.js';
|
package/dist/table.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkU734EP46js = require('./chunk-U734EP46.js');require('./chunk-3DEGOO53.js');require('./chunk-33TE2BHZ.js');require('./chunk-J4IKCIFW.js');require('./chunk-TUDBCRW7.js');require('./chunk-QMFUPHXA.js');require('./chunk-GKIPZGG6.js');exports.Table = _chunkU734EP46js.a;
|
package/dist/table.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-CUSCOOCX.mjs";import"./chunk-SDQMNVG7.mjs";import"./chunk-WKT355RZ.mjs";import"./chunk-FCXZ6T4U.mjs";import"./chunk-YRMO4O4W.mjs";import"./chunk-G56JYZMX.mjs";import"./chunk-TYYVDMZS.mjs";export{a as Table};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import '@jamsrui/utils';
|
|
2
|
+
import './styles.mjs';
|
|
3
|
+
export { u as useTable } from './table-kjrxrR3X.mjs';
|
|
4
|
+
import './table-body.mjs';
|
|
5
|
+
import './table-cell.mjs';
|
|
6
|
+
import './table-column.mjs';
|
|
7
|
+
import './table-footer.mjs';
|
|
8
|
+
import './table-header.mjs';
|
|
9
|
+
import './table-row.mjs';
|
|
10
|
+
import './table-wrapper.mjs';
|
|
11
|
+
import 'tailwind-variants';
|
|
12
|
+
import 'react';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import '@jamsrui/utils';
|
|
2
|
+
import './styles.js';
|
|
3
|
+
export { u as useTable } from './table-2IVtRYPc.js';
|
|
4
|
+
import './table-body.js';
|
|
5
|
+
import './table-cell.js';
|
|
6
|
+
import './table-column.js';
|
|
7
|
+
import './table-footer.js';
|
|
8
|
+
import './table-header.js';
|
|
9
|
+
import './table-row.js';
|
|
10
|
+
import './table-wrapper.js';
|
|
11
|
+
import 'tailwind-variants';
|
|
12
|
+
import 'react';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkJ4IKCIFWjs = require('./chunk-J4IKCIFW.js');require('./chunk-TUDBCRW7.js');exports.useTable = _chunkJ4IKCIFWjs.a;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{a}from"./chunk-FCXZ6T4U.mjs";import"./chunk-YRMO4O4W.mjs";export{a as useTable};
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jamsrui/table",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"react": ">=19"
|
|
6
|
+
},
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@jamsrui/hooks": "^0.0.2",
|
|
9
|
+
"@jamsrui/core": "^0.0.2",
|
|
10
|
+
"@jamsrui/utils": "^0.0.2"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.mjs",
|
|
16
|
+
"require": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"description": "A modern and beautiful Next.js UI components library.",
|
|
20
|
+
"keywords": [
|
|
21
|
+
"react",
|
|
22
|
+
"ui",
|
|
23
|
+
"UI components",
|
|
24
|
+
"Next.js",
|
|
25
|
+
"React",
|
|
26
|
+
"JamsrUI",
|
|
27
|
+
"jamsr-ui",
|
|
28
|
+
"TypeScript"
|
|
29
|
+
],
|
|
30
|
+
"sideEffects": false,
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"author": "@jamsrworld",
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://github.com/jamsrworld/jamsr-ui"
|
|
36
|
+
},
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/jamsrworld/jamsr-ui/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://jamsr-ui.jamsrworld.com",
|
|
41
|
+
"files": [
|
|
42
|
+
"dist",
|
|
43
|
+
"README",
|
|
44
|
+
"README.md",
|
|
45
|
+
"package.json",
|
|
46
|
+
"LICENSE"
|
|
47
|
+
]
|
|
48
|
+
}
|