@craftzbay/ui 0.2.5 → 0.3.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.
@@ -20,7 +20,7 @@ export declare const CommandInput: import('react').ForwardRefExoticComponent<Omi
20
20
  ref?: React.Ref<HTMLInputElement>;
21
21
  } & {
22
22
  asChild?: boolean;
23
- }, "key" | "asChild" | keyof import('react').InputHTMLAttributes<HTMLInputElement>>, "onChange" | "value" | "type"> & {
23
+ }, "key" | "asChild" | keyof import('react').InputHTMLAttributes<HTMLInputElement>>, "type" | "onChange" | "value"> & {
24
24
  value?: string;
25
25
  onValueChange?: (search: string) => void;
26
26
  } & import('react').RefAttributes<HTMLInputElement>, "ref"> & import('react').RefAttributes<HTMLInputElement>>;
@@ -46,7 +46,7 @@ export declare const CommandGroup: import('react').ForwardRefExoticComponent<Omi
46
46
  ref?: React.Ref<HTMLDivElement>;
47
47
  } & {
48
48
  asChild?: boolean;
49
- }, "key" | keyof import('react').HTMLAttributes<HTMLDivElement> | "asChild">, "value" | "heading"> & {
49
+ }, "key" | keyof import('react').HTMLAttributes<HTMLDivElement> | "asChild">, "heading" | "value"> & {
50
50
  heading?: React.ReactNode;
51
51
  value?: string;
52
52
  forceMount?: boolean;
@@ -0,0 +1,9 @@
1
+ import { SVGProps } from 'react';
2
+ type Props = SVGProps<SVGSVGElement>;
3
+ export declare function InboxEmpty(props: Props): import("react/jsx-runtime").JSX.Element;
4
+ export declare function NoSearchResults(props: Props): import("react/jsx-runtime").JSX.Element;
5
+ export declare function NotFound(props: Props): import("react/jsx-runtime").JSX.Element;
6
+ export declare function ServerError(props: Props): import("react/jsx-runtime").JSX.Element;
7
+ export declare function Construction(props: Props): import("react/jsx-runtime").JSX.Element;
8
+ export declare function ConnectionLost(props: Props): import("react/jsx-runtime").JSX.Element;
9
+ export {};