@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.
- package/dist-lib/components/ui/CommandPalette.d.ts +2 -2
- package/dist-lib/illustrations/index.d.ts +9 -0
- package/dist-lib/index.cjs +3 -3
- package/dist-lib/index.cjs.map +1 -1
- package/dist-lib/index.d.ts +1 -0
- package/dist-lib/index.js +2553 -2443
- package/dist-lib/index.js.map +1 -1
- package/package.json +2 -1
|
@@ -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>>, "
|
|
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">, "
|
|
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 {};
|