@clicktap/ui 0.3.8 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
- import { SeparatorProps } from 'react-aria';
2
- export declare function Divider(props: SeparatorProps): import("react/jsx-runtime").JSX.Element;
1
+ import { DividerProps } from './types';
2
+ export declare function Divider(props: DividerProps): import("react/jsx-runtime").JSX.Element;
3
3
  export default Divider;
@@ -1,6 +1,3 @@
1
1
  /// <reference types="react" />
2
- import { SeparatorProps } from 'react-aria';
3
- export declare const Root: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
4
- orientation: SeparatorProps['orientation'];
5
- }>>;
2
+ export declare const Root: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>>;
6
3
  export default Root;
@@ -0,0 +1,4 @@
1
+ import { SeparatorProps } from 'react-aria';
2
+ export type DividerProps = SeparatorProps & {
3
+ className?: string;
4
+ };
package/Tabs/Tab.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  import { TabProps } from './types';
2
- export declare function Tab({ variant, ...props }: TabProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function Tab({ variant, children, ...props }: TabProps): import("react/jsx-runtime").JSX.Element;
3
3
  export default Tab;