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,18 @@
import * as React from 'react';
import { type CSSProperties } from 'styled-components';
import { type ResponsiveProperty, type ResponsiveThemeProperty } from '../../helpers/handleResponsiveValues';
import { BoxProps } from '../Box';
interface TransientFlexProps {
alignItems?: ResponsiveProperty<CSSProperties['alignItems']>;
justifyContent?: ResponsiveProperty<CSSProperties['justifyContent']>;
wrap?: ResponsiveProperty<CSSProperties['flexWrap']>;
direction?: ResponsiveProperty<CSSProperties['flexDirection']>;
gap?: ResponsiveThemeProperty<'spaces', 'gap'>;
inline?: boolean;
}
type FlexProps<C extends React.ElementType = 'div'> = BoxProps<C> & TransientFlexProps;
declare const Flex: <C extends React.ElementType<any, keyof React.JSX.IntrinsicElements> = "div">(props: React.PropsWithoutRef<FlexProps<C>> & React.RefAttributes<unknown>) => React.ReactNode;
type FlexComponent<C extends React.ElementType = 'div'> = typeof Flex<C>;
export { Flex };
export type { FlexComponent, FlexProps, TransientFlexProps };
//# sourceMappingURL=Flex.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Flex.d.ts","sourceRoot":"","sources":["../../../src/primitives/Flex/Flex.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,EAAU,KAAK,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAE/D,OAAO,EAEL,KAAK,kBAAkB,EACvB,KAAK,uBAAuB,EAC7B,MAAM,sCAAsC,CAAC;AAG9C,OAAO,EAAqB,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAErD,UAAU,kBAAkB;IAC1B,UAAU,CAAC,EAAE,kBAAkB,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CAAC;IAC7D,cAAc,CAAC,EAAE,kBAAkB,CAAC,aAAa,CAAC,gBAAgB,CAAC,CAAC,CAAC;IACrE,IAAI,CAAC,EAAE,kBAAkB,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC,CAAC;IACrD,SAAS,CAAC,EAAE,kBAAkB,CAAC,aAAa,CAAC,eAAe,CAAC,CAAC,CAAC;IAC/D,GAAG,CAAC,EAAE,uBAAuB,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;IAC/C,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,KAAK,SAAS,CAAC,CAAC,SAAS,KAAK,CAAC,WAAW,GAAG,KAAK,IAAI,QAAQ,CAAC,CAAC,CAAC,GAAG,kBAAkB,CAAC;AAEvF,QAAA,MAAM,IAAI,6KAaR,CAAC;AAEH,KAAK,aAAa,CAAC,CAAC,SAAS,KAAK,CAAC,WAAW,GAAG,KAAK,IAAI,OAAO,IAAI,CAAC,CAAC,CAAC,CAAC;AAiBzE,OAAO,EAAE,IAAI,EAAE,CAAC;AAChB,YAAY,EAAE,aAAa,EAAE,SAAS,EAAE,kBAAkB,EAAE,CAAC"}

View File

@@ -0,0 +1,2 @@
export * from './Flex';
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/primitives/Flex/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC"}