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,16 @@
import * as React from 'react';
import { BoxProps } from '../../primitives/Box';
interface RawTdProps extends BoxProps<'td' | 'th'> {
'aria-colindex'?: number;
children?: React.ReactNode;
coords?: {
col: number;
row: number;
};
}
declare const RawTd: React.ForwardRefExoticComponent<Omit<RawTdProps, "ref"> & React.RefAttributes<HTMLTableCellElement>>;
type RawThProps = Omit<RawTdProps, 'as'>;
declare const RawTh: (props: RawThProps) => import("react/jsx-runtime").JSX.Element;
export { RawTd, RawTh };
export type { RawTdProps, RawThProps };
//# sourceMappingURL=RawCell.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"RawCell.d.ts","sourceRoot":"","sources":["../../../src/components/RawTable/RawCell.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,OAAO,EAAO,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAQrD,UAAU,UAAW,SAAQ,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC;IAChD,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE;QACP,GAAG,EAAE,MAAM,CAAC;QACZ,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;CACH;AAED,QAAA,MAAM,KAAK,sGA8JV,CAAC;AAMF,KAAK,UAAU,GAAG,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,CAAC;AAEzC,QAAA,MAAM,KAAK,UAAW,UAAU,4CAAkC,CAAC;AAEnE,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC;AACxB,YAAY,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC"}

View File

@@ -0,0 +1,10 @@
import * as React from 'react';
export interface RawTableProps extends React.TableHTMLAttributes<HTMLTableElement> {
colCount: number;
initialCol?: number;
initialRow?: number;
jumpStep?: number;
rowCount: number;
}
export declare const RawTable: React.ForwardRefExoticComponent<RawTableProps & React.RefAttributes<HTMLTableElement>>;
//# sourceMappingURL=RawTable.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"RawTable.d.ts","sourceRoot":"","sources":["../../../src/components/RawTable/RawTable.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAQ/B,MAAM,WAAW,aAAc,SAAQ,KAAK,CAAC,mBAAmB,CAAC,gBAAgB,CAAC;IAChF,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,QAAQ,wFAoHpB,CAAC"}

View File

@@ -0,0 +1,12 @@
import * as React from 'react';
export interface RawTableContextValue {
rowIndex: number;
colIndex: number;
setTableValues: ({ rowIndex, colIndex }: {
rowIndex: number;
colIndex: number;
}) => void;
}
export declare const RawTableContext: React.Context<RawTableContextValue>;
export declare const useTable: () => RawTableContextValue;
//# sourceMappingURL=RawTableContext.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"RawTableContext.d.ts","sourceRoot":"","sources":["../../../src/components/RawTable/RawTableContext.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,cAAc,EAAE,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE;QAAE,QAAQ,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;CAC1F;AAED,eAAO,MAAM,eAAe,qCAM1B,CAAC;AACH,eAAO,MAAM,QAAQ,4BAA0C,CAAC"}

View File

@@ -0,0 +1,6 @@
import * as React from 'react';
export interface RawTbodyProps extends React.TableHTMLAttributes<HTMLTableSectionElement> {
children: React.ReactNode;
}
export declare const RawTbody: ({ children, ...props }: RawTbodyProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=RawTbody.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"RawTbody.d.ts","sourceRoot":"","sources":["../../../src/components/RawTable/RawTbody.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,aAAc,SAAQ,KAAK,CAAC,mBAAmB,CAAC,uBAAuB,CAAC;IACvF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,QAAQ,2BAA4B,aAAa,4CAc7D,CAAC"}

View File

@@ -0,0 +1,6 @@
import * as React from 'react';
export interface RawTheadProps extends React.TableHTMLAttributes<HTMLTableSectionElement> {
children: React.ReactNode;
}
export declare const RawThead: ({ children, ...props }: RawTheadProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=RawThead.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"RawThead.d.ts","sourceRoot":"","sources":["../../../src/components/RawTable/RawThead.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,MAAM,WAAW,aAAc,SAAQ,KAAK,CAAC,mBAAmB,CAAC,uBAAuB,CAAC;IACvF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,QAAQ,2BAA4B,aAAa,4CAa7D,CAAC"}

View File

@@ -0,0 +1,6 @@
import { BoxProps } from '../../primitives/Box';
export interface RawTrProps extends BoxProps<'tr'> {
'aria-rowindex'?: number;
}
export declare const RawTr: ({ children, ...props }: RawTrProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=RawTr.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"RawTr.d.ts","sourceRoot":"","sources":["../../../src/components/RawTable/RawTr.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAO,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,MAAM,WAAW,UAAW,SAAQ,QAAQ,CAAC,IAAI,CAAC;IAChD,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B;AAED,eAAO,MAAM,KAAK,2BAA4B,UAAU,4CAiBvD,CAAC"}

View File

@@ -0,0 +1,2 @@
export declare const focusFocusable: (node: any) => void;
//# sourceMappingURL=focusFocusable.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"focusFocusable.d.ts","sourceRoot":"","sources":["../../../src/components/RawTable/focusFocusable.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,qBAM1B,CAAC"}

View File

@@ -0,0 +1,6 @@
export * from './RawTable';
export * from './RawCell';
export * from './RawThead';
export * from './RawTbody';
export * from './RawTr';
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/RawTable/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,YAAY,CAAC;AAC3B,cAAc,YAAY,CAAC;AAC3B,cAAc,SAAS,CAAC"}