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,7 @@
import * as React from 'react';
import { FlexProps } from '../../primitives/Flex';
export interface BreadcrumbsProps extends FlexProps {
label?: string;
}
export declare const Breadcrumbs: React.ForwardRefExoticComponent<Omit<BreadcrumbsProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=Breadcrumbs.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumbs/Breadcrumbs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,OAAO,EAAuB,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAcvE,MAAM,WAAW,gBAAiB,SAAQ,SAAS;IACjD,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,WAAW,sGAqBvB,CAAC"}

View File

@@ -0,0 +1,7 @@
import * as React from 'react';
import { TypographyProps } from '../../primitives/Typography';
export interface CrumbProps extends TypographyProps {
isCurrent?: boolean;
}
export declare const Crumb: React.ForwardRefExoticComponent<CrumbProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=Crumb.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Crumb.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumbs/Crumb.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,OAAO,EAAc,eAAe,EAAE,MAAM,6BAA6B,CAAC;AAE1E,MAAM,WAAW,UAAW,SAAQ,eAAe;IACjD,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,eAAO,MAAM,KAAK,mFAcjB,CAAC"}

View File

@@ -0,0 +1,4 @@
import * as React from 'react';
import { BaseLinkProps } from '../BaseLink';
export declare const CrumbLink: React.ForwardRefExoticComponent<Omit<BaseLinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
//# sourceMappingURL=CrumbLink.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"CrumbLink.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumbs/CrumbLink.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,OAAO,EAAY,aAAa,EAAE,MAAM,aAAa,CAAC;AAiBtD,eAAO,MAAM,SAAS,sGAIpB,CAAC"}

View File

@@ -0,0 +1,39 @@
import * as React from 'react';
import { type SimpleMenuProps } from '../SimpleMenu';
export type CrumbSimpleMenuProps = SimpleMenuProps & {
'aria-label': string;
icon?: React.ReactElement;
endIcon?: React.ReactNode;
};
export declare const CrumbSimpleMenu: React.ForwardRefExoticComponent<(Omit<Omit<import("..").ButtonProps, "tag"> & {
endIcon?: React.ReactNode;
label?: React.ReactNode;
} & {
tag?: (<C extends React.ElementType<any, keyof React.JSX.IntrinsicElements> = "button">(props: React.PropsWithoutRef<import("..").ButtonProps<C>> & React.RefAttributes<unknown>) => React.ReactNode) | undefined;
icon?: React.ReactNode;
} & Pick<import("../SimpleMenu/Menu").ContentProps, "intersectionId" | "popoverPlacement"> & {
children?: React.ReactNode;
onOpen?: (() => void) | undefined;
onClose?: (() => void) | undefined;
onReachEnd?: ((entry: IntersectionObserverEntry) => void) | undefined;
} & {
'aria-label': string;
icon?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
endIcon?: React.ReactNode;
}, "ref"> | Omit<Omit<import("..").ButtonProps, "tag"> & {
endIcon?: React.ReactNode;
label?: React.ReactNode;
} & {
tag: <C_1 extends React.ElementType<any, keyof React.JSX.IntrinsicElements> = "button">(props: React.PropsWithoutRef<import("..").IconButtonProps<C_1>> & React.RefAttributes<unknown>) => React.ReactNode;
icon: React.ReactNode;
} & Pick<import("../SimpleMenu/Menu").ContentProps, "intersectionId" | "popoverPlacement"> & {
children?: React.ReactNode;
onOpen?: (() => void) | undefined;
onClose?: (() => void) | undefined;
onReachEnd?: ((entry: IntersectionObserverEntry) => void) | undefined;
} & {
'aria-label': string;
icon?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
endIcon?: React.ReactNode;
}, "ref">) & React.RefAttributes<HTMLButtonElement>>;
//# sourceMappingURL=CrumbSimpleMenu.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"CrumbSimpleMenu.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumbs/CrumbSimpleMenu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,OAAO,EAAc,KAAK,eAAe,EAAE,MAAM,eAAe,CAAC;AAYjE,MAAM,MAAM,oBAAoB,GAAG,eAAe,GAAG;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC;IAC1B,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;kBALZ,MAAM;;cAEV,MAAM,SAAS;;;;;;;;;;;;;kBAFX,MAAM;;cAEV,MAAM,SAAS;oDAS1B,CAAC"}

View File

@@ -0,0 +1,5 @@
export declare const Divider: {
(): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
//# sourceMappingURL=Divider.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Divider.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumbs/Divider.tsx"],"names":[],"mappings":"AAKA,eAAO,MAAM,OAAO;;;CAQnB,CAAC"}

View File

@@ -0,0 +1,5 @@
export * from './Breadcrumbs';
export * from './Crumb';
export * from './CrumbLink';
export * from './CrumbSimpleMenu';
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumbs/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,SAAS,CAAC;AACxB,cAAc,aAAa,CAAC;AAC5B,cAAc,mBAAmB,CAAC"}