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';
export interface CarouselProps extends BoxProps {
actions?: React.ReactNode;
children: React.ReactNode;
label: string;
nextLabel: string;
onNext?: () => void;
onPrevious?: () => void;
previousLabel: string;
secondaryLabel?: string;
selectedSlide: number;
}
export type CarouselElement = HTMLDivElement;
export declare const Carousel: React.ForwardRefExoticComponent<Omit<CarouselProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=Carousel.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Carousel.d.ts","sourceRoot":"","sources":["../../../src/components/CarouselInput/Carousel.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAM/B,OAAO,EAAqB,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAMnE,MAAM,WAAW,aAAc,SAAQ,QAAQ;IAC7C,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,IAAI,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;CACvB;AAoBD,MAAM,MAAM,eAAe,GAAG,cAAc,CAAC;AAE7C,eAAO,MAAM,QAAQ,mGA6FpB,CAAC"}

View File

@@ -0,0 +1,6 @@
import { FlexProps } from '../../primitives/Flex';
export interface CarouselActionsProps extends FlexProps {
horizontal?: boolean;
}
export declare const CarouselActions: ({ horizontal, ...props }: CarouselActionsProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=CarouselActions.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"CarouselActions.d.ts","sourceRoot":"","sources":["../../../src/components/CarouselInput/CarouselActions.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAQ,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAExD,MAAM,WAAW,oBAAqB,SAAQ,SAAS;IACrD,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,eAAO,MAAM,eAAe,6BAAqC,oBAAoB,4CAWpF,CAAC"}

View File

@@ -0,0 +1,7 @@
import { BoxProps } from '../../primitives/Box';
export interface CarouselImageProps extends BoxProps<'img'> {
alt: string;
src: string;
}
export declare const CarouselImage: (props: CarouselImageProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=CarouselImage.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"CarouselImage.d.ts","sourceRoot":"","sources":["../../../src/components/CarouselInput/CarouselImage.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAqB,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAInE,MAAM,WAAW,kBAAmB,SAAQ,QAAQ,CAAC,KAAK,CAAC;IACzD,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACb;AAMD,eAAO,MAAM,aAAa,UAAW,kBAAkB,4CAgBtD,CAAC"}

View File

@@ -0,0 +1,10 @@
import * as React from 'react';
import { Field } from '../Field';
import { CarouselProps } from './Carousel';
export interface CarouselInputProps extends CarouselProps, Pick<Field.Props, 'hint' | 'error' | 'required'> {
actions?: React.ReactNode;
children: React.ReactNode;
labelAction?: Field.LabelProps['action'];
}
export declare const CarouselInput: React.ForwardRefExoticComponent<Omit<CarouselInputProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=CarouselInput.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"CarouselInput.d.ts","sourceRoot":"","sources":["../../../src/components/CarouselInput/CarouselInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAEjC,OAAO,EAA6B,aAAa,EAAE,MAAM,YAAY,CAAC;AAEtE,MAAM,WAAW,kBAAmB,SAAQ,aAAa,EAAE,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,CAAC;IACzG,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,WAAW,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;CAC1C;AAED,eAAO,MAAM,aAAa,wGAgDzB,CAAC"}

View File

@@ -0,0 +1,9 @@
/// <reference types="react" />
import { FlexProps } from '../../primitives/Flex';
export interface CarouselSlideProps extends FlexProps {
children: React.ReactNode;
label: string;
selected?: boolean;
}
export declare const CarouselSlide: ({ label, children, selected, ...props }: CarouselSlideProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=CarouselSlide.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"CarouselSlide.d.ts","sourceRoot":"","sources":["../../../src/components/CarouselInput/CarouselSlide.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAQ,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAExD,MAAM,WAAW,kBAAmB,SAAQ,SAAS;IACnD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,eAAO,MAAM,aAAa,4CAAqD,kBAAkB,4CAchG,CAAC"}

View File

@@ -0,0 +1,6 @@
export * from './Carousel';
export * from './CarouselInput';
export * from './CarouselActions';
export * from './CarouselImage';
export * from './CarouselSlide';
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/CarouselInput/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,mBAAmB,CAAC;AAClC,cAAc,iBAAiB,CAAC;AAChC,cAAc,iBAAiB,CAAC"}