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,40 @@
import * as React from 'react';
import * as Tabs from '@radix-ui/react-tabs';
type Variant = 'regular' | 'simple';
interface ContextValue {
/**
* @default false
* @description This will disable all tabs, you can pass
* this attribute to individual triggers to disable them.
* If you provide a string, it should be the value of a trigger.
*/
disabled: boolean | string;
/**
* @description This will show an error state on the tab
* that matches the value provided.
*/
hasError?: string;
/**
* @default 'regular'
*/
variant: Variant;
}
type Element = HTMLDivElement;
interface Props extends Tabs.TabsProps, Partial<ContextValue> {
}
declare const Root: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLDivElement>>;
type ListElement = HTMLDivElement;
interface ListProps extends Tabs.TabsListProps {
}
declare const List: React.ForwardRefExoticComponent<ListProps & React.RefAttributes<HTMLDivElement>>;
type TriggerElement = HTMLButtonElement;
interface TriggerProps extends Tabs.TabsTriggerProps {
}
declare const Trigger: React.ForwardRefExoticComponent<TriggerProps & React.RefAttributes<HTMLButtonElement>>;
type ContentElement = HTMLDivElement;
interface ContentProps extends Tabs.TabsContentProps {
}
declare const Content: React.ForwardRefExoticComponent<ContentProps & React.RefAttributes<HTMLDivElement>>;
export { Root, List, Trigger, Content };
export type { Props, Element, ListProps, ListElement, TriggerProps, TriggerElement, ContentProps, ContentElement };
//# sourceMappingURL=Tabs.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Tabs.d.ts","sourceRoot":"","sources":["../../../src/components/Tabs/Tabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAE/B,OAAO,KAAK,IAAI,MAAM,sBAAsB,CAAC;AAU7C,KAAK,OAAO,GAAG,SAAS,GAAG,QAAQ,CAAC;AAEpC,UAAU,YAAY;IACpB;;;;;OAKG;IACH,QAAQ,EAAE,OAAO,GAAG,MAAM,CAAC;IAC3B;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;CAClB;AAID,KAAK,OAAO,GAAG,cAAc,CAAC;AAE9B,UAAU,KAAM,SAAQ,IAAI,CAAC,SAAS,EAAE,OAAO,CAAC,YAAY,CAAC;CAAG;AAEhE,QAAA,MAAM,IAAI,8EAQT,CAAC;AAWF,KAAK,WAAW,GAAG,cAAc,CAAC;AAElC,UAAU,SAAU,SAAQ,IAAI,CAAC,aAAa;CAAG;AAEjD,QAAA,MAAM,IAAI,kFAGR,CAAC;AAaH,KAAK,cAAc,GAAG,iBAAiB,CAAC;AAExC,UAAU,YAAa,SAAQ,IAAI,CAAC,gBAAgB;CAAG;AAEvD,QAAA,MAAM,OAAO,wFAgBZ,CAAC;AAkFF,KAAK,cAAc,GAAG,cAAc,CAAC;AAErC,UAAU,YAAa,SAAQ,IAAI,CAAC,gBAAgB;CAAG;AAEvD,QAAA,MAAM,OAAO,qFAIX,CAAC;AAgBH,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC;AACxC,YAAY,EAAE,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,YAAY,EAAE,cAAc,EAAE,YAAY,EAAE,cAAc,EAAE,CAAC"}

View File

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

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Tabs/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC"}