Skip to content

Commit

Permalink
dist
Browse files Browse the repository at this point in the history
  • Loading branch information
jivey committed Mar 4, 2024
1 parent 9f7f1b2 commit 7c68b88
Show file tree
Hide file tree
Showing 10 changed files with 163 additions and 145 deletions.
18 changes: 16 additions & 2 deletions dist/components/Tabs.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
import React from "react";
import * as RAC from "react-aria-components";
declare type TabsProps = {
export declare type TabsProps = {
variant?: "button-bar";
size?: "large" | "medium" | "small";
className?: string;
children?: React.ReactNode;
} & RAC.TabsProps;
export declare const tabListBaseCss = "\n overflow-x: auto;\n overscroll-behavior: contain;\n display: flex;\n flex-direction: row;\n";
export declare const tabBaseCss: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
variant?: "button-bar" | undefined;
size?: "small" | "large" | "medium" | undefined;
className?: string | undefined;
children?: React.ReactNode;
} & RAC.TabsProps, any>>;
export declare const buttonBarWrapperCss: string;
export declare const buttonBarItemCss: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
variant?: "button-bar" | undefined;
size?: "small" | "large" | "medium" | undefined;
className?: string | undefined;
children?: React.ReactNode;
} & RAC.TabsProps, any>>;
export declare const Tabs: ({ variant, size, className, children, ...restProps }: TabsProps) => JSX.Element;
export { TabList, Tab, TabPanel, TabsContext, TabListStateContext } from "react-aria-components";
export { TabList, Tab, TabPanel } from "react-aria-components";
1 change: 1 addition & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export * from './components/Button';
export * from './components/ButtonBar';
export * from './components/Checkbox';
export * from './components/DropdownMenu';
export * from './components/Error';
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

275 changes: 139 additions & 136 deletions dist/index.modern.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.modern.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.module.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.module.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.umd.js.map

Large diffs are not rendered by default.

0 comments on commit 7c68b88

Please sign in to comment.