node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import * as React from 'react';
import { RawTdProps } from '../RawTable/RawCell';
export interface ThProps extends RawTdProps {
children: React.ReactNode;
/**
* @deprecated just pass everything as children.
*/
action?: React.ReactNode;
}
export declare const Th: React.ForwardRefExoticComponent<Omit<ThProps, "ref"> & React.RefAttributes<HTMLTableCellElement>>;
export declare const Td: React.ForwardRefExoticComponent<Omit<RawTdProps, "ref"> & React.RefAttributes<HTMLTableCellElement>>;
//# sourceMappingURL=Cell.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Cell.d.ts","sourceRoot":"","sources":["../../../src/components/Table/Cell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,OAAO,EAAgB,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAe/D,MAAM,WAAW,OAAQ,SAAQ,UAAU;IACzC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B;AAED,eAAO,MAAM,EAAE,mGASb,CAAC;AAEH,eAAO,MAAM,EAAE,sGAMb,CAAC"}

View File

@@ -0,0 +1,8 @@
import * as React from 'react';
import { BoxProps } from '../../primitives/Box';
export interface TFooterProps extends BoxProps<'button'> {
children: React.ReactNode;
icon: React.ReactNode;
}
export declare const TFooter: ({ children, icon, ...props }: TFooterProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=TFooter.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"TFooter.d.ts","sourceRoot":"","sources":["../../../src/components/Table/TFooter.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,OAAO,EAAqB,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AA+BnE,MAAM,WAAW,YAAa,SAAQ,QAAQ,CAAC,QAAQ,CAAC;IACtD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,IAAI,EAAE,KAAK,CAAC,SAAS,CAAC;CACvB;AAED,eAAO,MAAM,OAAO,iCAAkC,YAAY,4CAkBjE,CAAC"}

View File

@@ -0,0 +1,8 @@
import * as React from 'react';
import { RawTableProps } from '../RawTable/RawTable';
export type Overflowing = 'both' | 'left' | 'right';
export interface TableProps extends RawTableProps {
footer?: React.ReactNode;
}
export declare const Table: React.ForwardRefExoticComponent<TableProps & React.RefAttributes<HTMLTableElement>>;
//# sourceMappingURL=Table.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Table.d.ts","sourceRoot":"","sources":["../../../src/components/Table/Table.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,OAAO,EAAY,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAY/D,MAAM,MAAM,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC;AAiCpD,MAAM,WAAW,UAAW,SAAQ,aAAa;IAC/C,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC1B;AAED,eAAO,MAAM,KAAK,qFAwChB,CAAC"}

View File

@@ -0,0 +1,3 @@
import { RawTbodyProps } from '../RawTable/RawTbody';
export declare const Tbody: ({ children, ...props }: RawTbodyProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Tbody.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Tbody.d.ts","sourceRoot":"","sources":["../../../src/components/Table/Tbody.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAY,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAQ/D,eAAO,MAAM,KAAK,2BAA4B,aAAa,4CAE1D,CAAC"}

View File

@@ -0,0 +1,3 @@
import { RawTheadProps } from '../RawTable/RawThead';
export declare const Thead: ({ children, ...props }: RawTheadProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Thead.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Thead.d.ts","sourceRoot":"","sources":["../../../src/components/Table/Thead.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAY,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAM/D,eAAO,MAAM,KAAK,2BAA4B,aAAa,4CAE1D,CAAC"}

View File

@@ -0,0 +1,3 @@
import { RawTrProps } from '../RawTable/RawTr';
export declare const Tr: (props: RawTrProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Tr.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Tr.d.ts","sourceRoot":"","sources":["../../../src/components/Table/Tr.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAS,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAuBtD,eAAO,MAAM,EAAE,UAAW,UAAU,4CAEnC,CAAC"}

View File

@@ -0,0 +1,7 @@
export * from './Table';
export * from './Tbody';
export * from './Thead';
export * from './Tr';
export * from './Cell';
export * from './TFooter';
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Table/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,SAAS,CAAC;AACxB,cAAc,MAAM,CAAC;AACrB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC"}