@camped-ui/command 3.0.0 → 3.0.1
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/index.d.ts +40 -8
 - package/dist/index.d.ts.map +1 -1
 - package/package.json +2 -2
 
    
        package/dist/index.d.ts
    CHANGED
    
    | 
         @@ -2,45 +2,77 @@ import * as React from "react"; 
     | 
|
| 
       2 
2 
     | 
    
         
             
            import { type DialogProps } from "@radix-ui/react-dialog";
         
     | 
| 
       3 
3 
     | 
    
         
             
            declare const Command: React.ForwardRefExoticComponent<Omit<{
         
     | 
| 
       4 
4 
     | 
    
         
             
                children?: React.ReactNode;
         
     | 
| 
       5 
     | 
    
         
            -
            } & React.HTMLAttributes<HTMLDivElement 
     | 
| 
      
 5 
     | 
    
         
            +
            } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
         
     | 
| 
      
 6 
     | 
    
         
            +
                ref?: React.Ref<HTMLDivElement>;
         
     | 
| 
      
 7 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 8 
     | 
    
         
            +
                asChild?: boolean;
         
     | 
| 
      
 9 
     | 
    
         
            +
            }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
         
     | 
| 
       6 
10 
     | 
    
         
             
                label?: string;
         
     | 
| 
       7 
11 
     | 
    
         
             
                shouldFilter?: boolean;
         
     | 
| 
       8 
     | 
    
         
            -
                filter?: (value: string, search: string) => number;
         
     | 
| 
      
 12 
     | 
    
         
            +
                filter?: (value: string, search: string, keywords?: string[]) => number;
         
     | 
| 
       9 
13 
     | 
    
         
             
                defaultValue?: string;
         
     | 
| 
       10 
14 
     | 
    
         
             
                value?: string;
         
     | 
| 
       11 
15 
     | 
    
         
             
                onValueChange?: (value: string) => void;
         
     | 
| 
       12 
16 
     | 
    
         
             
                loop?: boolean;
         
     | 
| 
      
 17 
     | 
    
         
            +
                disablePointerSelection?: boolean;
         
     | 
| 
       13 
18 
     | 
    
         
             
                vimBindings?: boolean;
         
     | 
| 
       14 
19 
     | 
    
         
             
            } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
         
     | 
| 
       15 
20 
     | 
    
         
             
            interface CommandDialogProps extends DialogProps {
         
     | 
| 
       16 
21 
     | 
    
         
             
            }
         
     | 
| 
       17 
22 
     | 
    
         
             
            declare const CommandDialog: ({ children, ...props }: CommandDialogProps) => import("react/jsx-runtime").JSX.Element;
         
     | 
| 
       18 
     | 
    
         
            -
            declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, " 
     | 
| 
      
 23 
     | 
    
         
            +
            declare const CommandInput: React.ForwardRefExoticComponent<Omit<Omit<Pick<Pick<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "key" | keyof React.InputHTMLAttributes<HTMLInputElement>> & {
         
     | 
| 
      
 24 
     | 
    
         
            +
                ref?: React.Ref<HTMLInputElement>;
         
     | 
| 
      
 25 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 26 
     | 
    
         
            +
                asChild?: boolean;
         
     | 
| 
      
 27 
     | 
    
         
            +
            }, "key" | "asChild" | keyof React.InputHTMLAttributes<HTMLInputElement>>, "onChange" | "value" | "type"> & {
         
     | 
| 
       19 
28 
     | 
    
         
             
                value?: string;
         
     | 
| 
       20 
29 
     | 
    
         
             
                onValueChange?: (search: string) => void;
         
     | 
| 
       21 
30 
     | 
    
         
             
            } & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
         
     | 
| 
       22 
31 
     | 
    
         
             
            declare const CommandList: React.ForwardRefExoticComponent<Omit<{
         
     | 
| 
       23 
32 
     | 
    
         
             
                children?: React.ReactNode;
         
     | 
| 
       24 
     | 
    
         
            -
            } & React. 
     | 
| 
      
 33 
     | 
    
         
            +
            } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
         
     | 
| 
      
 34 
     | 
    
         
            +
                ref?: React.Ref<HTMLDivElement>;
         
     | 
| 
      
 35 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 36 
     | 
    
         
            +
                asChild?: boolean;
         
     | 
| 
      
 37 
     | 
    
         
            +
            }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
         
     | 
| 
      
 38 
     | 
    
         
            +
                label?: string;
         
     | 
| 
      
 39 
     | 
    
         
            +
            } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
         
     | 
| 
       25 
40 
     | 
    
         
             
            declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<{
         
     | 
| 
       26 
41 
     | 
    
         
             
                children?: React.ReactNode;
         
     | 
| 
       27 
     | 
    
         
            -
            } & React. 
     | 
| 
      
 42 
     | 
    
         
            +
            } & Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
         
     | 
| 
      
 43 
     | 
    
         
            +
                ref?: React.Ref<HTMLDivElement>;
         
     | 
| 
      
 44 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 45 
     | 
    
         
            +
                asChild?: boolean;
         
     | 
| 
      
 46 
     | 
    
         
            +
            }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
         
     | 
| 
       28 
47 
     | 
    
         
             
            declare const CommandGroup: React.ForwardRefExoticComponent<Omit<{
         
     | 
| 
       29 
48 
     | 
    
         
             
                children?: React.ReactNode;
         
     | 
| 
       30 
     | 
    
         
            -
            } & Omit<React.HTMLAttributes<HTMLDivElement>, " 
     | 
| 
      
 49 
     | 
    
         
            +
            } & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
         
     | 
| 
      
 50 
     | 
    
         
            +
                ref?: React.Ref<HTMLDivElement>;
         
     | 
| 
      
 51 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 52 
     | 
    
         
            +
                asChild?: boolean;
         
     | 
| 
      
 53 
     | 
    
         
            +
            }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "value" | "heading"> & {
         
     | 
| 
       31 
54 
     | 
    
         
             
                heading?: React.ReactNode;
         
     | 
| 
       32 
55 
     | 
    
         
             
                value?: string;
         
     | 
| 
       33 
56 
     | 
    
         
             
                forceMount?: boolean;
         
     | 
| 
       34 
57 
     | 
    
         
             
            } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
         
     | 
| 
       35 
     | 
    
         
            -
            declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<React.HTMLAttributes<HTMLDivElement 
     | 
| 
      
 58 
     | 
    
         
            +
            declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
         
     | 
| 
      
 59 
     | 
    
         
            +
                ref?: React.Ref<HTMLDivElement>;
         
     | 
| 
      
 60 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 61 
     | 
    
         
            +
                asChild?: boolean;
         
     | 
| 
      
 62 
     | 
    
         
            +
            }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild"> & {
         
     | 
| 
       36 
63 
     | 
    
         
             
                alwaysRender?: boolean;
         
     | 
| 
       37 
64 
     | 
    
         
             
            } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
         
     | 
| 
       38 
65 
     | 
    
         
             
            declare const CommandItem: React.ForwardRefExoticComponent<Omit<{
         
     | 
| 
       39 
66 
     | 
    
         
             
                children?: React.ReactNode;
         
     | 
| 
       40 
     | 
    
         
            -
            } & Omit<React.HTMLAttributes<HTMLDivElement>, " 
     | 
| 
      
 67 
     | 
    
         
            +
            } & Omit<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | keyof React.HTMLAttributes<HTMLDivElement>> & {
         
     | 
| 
      
 68 
     | 
    
         
            +
                ref?: React.Ref<HTMLDivElement>;
         
     | 
| 
      
 69 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 70 
     | 
    
         
            +
                asChild?: boolean;
         
     | 
| 
      
 71 
     | 
    
         
            +
            }, "key" | keyof React.HTMLAttributes<HTMLDivElement> | "asChild">, "onSelect" | "value" | "disabled"> & {
         
     | 
| 
       41 
72 
     | 
    
         
             
                disabled?: boolean;
         
     | 
| 
       42 
73 
     | 
    
         
             
                onSelect?: (value: string) => void;
         
     | 
| 
       43 
74 
     | 
    
         
             
                value?: string;
         
     | 
| 
      
 75 
     | 
    
         
            +
                keywords?: string[];
         
     | 
| 
       44 
76 
     | 
    
         
             
                forceMount?: boolean;
         
     | 
| 
       45 
77 
     | 
    
         
             
            } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
         
     | 
| 
       46 
78 
     | 
    
         
             
            declare const CommandShortcut: {
         
     | 
    
        package/dist/index.d.ts.map
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAOzD,QAAA,MAAM,OAAO 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAC9B,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,wBAAwB,CAAA;AAOzD,QAAA,MAAM,OAAO;;;;;;;;;;;;;;;;sFAYX,CAAA;AAGF,UAAU,kBAAmB,SAAQ,WAAW;CAAG;AAEnD,QAAA,MAAM,aAAa,2BAA4B,kBAAkB,4CAUhE,CAAA;AAED,QAAA,MAAM,YAAY;;;;;;;0FAehB,CAAA;AAIF,QAAA,MAAM,WAAW;;;;;;;;sFASf,CAAA;AAIF,QAAA,MAAM,YAAY;;;;;;uJAShB,CAAA;AAIF,QAAA,MAAM,YAAY;;;;;;;;;;sFAYhB,CAAA;AAIF,QAAA,MAAM,gBAAgB;;;;;;sFASpB,CAAA;AAGF,QAAA,MAAM,WAAW;;;;;;;;;;;;sFAYf,CAAA;AAIF,QAAA,MAAM,eAAe;8BAGlB,MAAM,cAAc,CAAC,eAAe,CAAC;;CAUvC,CAAA;AAGD,OAAO,EACL,OAAO,EACP,aAAa,EACb,YAAY,EACZ,WAAW,EACX,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,eAAe,EACf,gBAAgB,GACjB,CAAA"}
         
     | 
    
        package/package.json
    CHANGED
    
    | 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "name": "@camped-ui/command",
         
     | 
| 
       3 
     | 
    
         
            -
              "version": "3.0. 
     | 
| 
      
 3 
     | 
    
         
            +
              "version": "3.0.1",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "main": "dist/index.js",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "scripts": {
         
     | 
| 
       6 
6 
     | 
    
         
             
                "publish-package": "npm publish --access public",
         
     | 
| 
         @@ -9,7 +9,7 @@ 
     | 
|
| 
       9 
9 
     | 
    
         
             
              },
         
     | 
| 
       10 
10 
     | 
    
         
             
              "dependencies": {
         
     | 
| 
       11 
11 
     | 
    
         
             
                "@radix-ui/react-dialog": "^1.0.2",
         
     | 
| 
       12 
     | 
    
         
            -
                "cmdk": " 
     | 
| 
      
 12 
     | 
    
         
            +
                "cmdk": "1.0.0",
         
     | 
| 
       13 
13 
     | 
    
         
             
                "@camped-ui/dialog": "2.0.2"
         
     | 
| 
       14 
14 
     | 
    
         
             
              },
         
     | 
| 
       15 
15 
     | 
    
         
             
              "peerDependencies": {
         
     |