@clicktap/ui 0.3.4 → 0.3.7

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.
@@ -0,0 +1,2 @@
1
+ export * from './Accordion';
2
+ export { AccordionItem } from '@nextui-org/accordion';
@@ -1,7 +1,7 @@
1
1
  /// <reference types="react" />
2
2
  export declare const Button: import("react").ForwardRefExoticComponent<import("react-aria-components").ButtonProps & {
3
3
  isLoading?: boolean | undefined;
4
- variant?: "outline" | "solid" | "ghost" | undefined;
4
+ variant?: "solid" | "outline" | "ghost" | undefined;
5
5
  size?: "sm" | "lg" | "md" | undefined;
6
6
  } & import("react").RefAttributes<HTMLButtonElement>>;
7
7
  export default Button;
@@ -1,7 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { SwitchProps as AriaSwitchProps } from 'react-aria-components';
3
- interface SwitchProps extends Omit<AriaSwitchProps, 'children'> {
4
- children: React.ReactNode;
5
- }
6
- export declare function Switch({ children, ...props }: SwitchProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function Switch({ children, ...props }: AriaSwitchProps): import("react/jsx-runtime").JSX.Element;
7
3
  export default Switch;
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  export * from './Avatar/Avatar';
2
2
  export * from './Avatar/AvatarGroup/AvatarGroup';
3
- export * from './Accordion/Accordion';
3
+ export * from './Accordion';
4
4
  export * from './Badge/Badge';
5
5
  export * from './Breadcrumbs/BreadcrumbEllipsis';
6
6
  export * from './Breadcrumbs/BreadcrumbItem';