@clickhouse/click-ui 0.0.10 → 0.0.11

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,8 +1,8 @@
1
+ /// <reference types="react" />
1
2
  import * as RadixSwitch from "@radix-ui/react-switch";
2
3
  interface RootProps {
3
4
  checked: boolean;
4
5
  disabled?: boolean;
5
6
  }
6
- type SwitchProps = RootProps & RadixSwitch.SwitchProps;
7
- export declare const Switch: ({ checked, disabled, ...props }: SwitchProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const Switch: import("react").ForwardRefExoticComponent<RootProps & RadixSwitch.SwitchProps & import("react").RefAttributes<HTMLButtonElement>>;
8
8
  export {};
@@ -13,7 +13,6 @@ export { CardPrimary } from "./CardPrimary/CardPrimary";
13
13
  export { Checkbox } from "./Checkbox/Checkbox";
14
14
  export { ContextMenu } from "./ContextMenu/ContextMenu";
15
15
  export { default as Flags } from "./icons/Flags";
16
- export { FileTabs } from "./FileTabs/FileTabs";
17
16
  export { HoverCard } from "./HoverCard/HoverCard";
18
17
  export { NumberField } from "./Input/NumberField";
19
18
  export { PasswordField } from "./Input/PasswordField";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickhouse/click-ui",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Official ClickHouse design system react library",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",