@process.co/ui 0.0.13 → 0.0.15
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/README.md +29 -0
- package/css/ui.css +154 -182
- package/css/ui.d.ts +4 -0
- package/dist/components/dev/index.cjs +273 -460
- package/dist/components/dev/index.cjs.map +1 -1
- package/dist/components/dev/index.js +268 -454
- package/dist/components/dev/index.js.map +1 -1
- package/dist/components/fields/index.cjs +8339 -4903
- package/dist/components/fields/index.cjs.map +1 -1
- package/dist/components/fields/index.d.cts +4 -1
- package/dist/components/fields/index.d.ts +4 -1
- package/dist/components/fields/index.js +8311 -4883
- package/dist/components/fields/index.js.map +1 -1
- package/dist/{index-Bfh9REtO.d.cts → index-19C2gVyr.d.cts} +245 -150
- package/dist/{index-Bfh9REtO.d.ts → index-19C2gVyr.d.ts} +245 -150
- package/dist/index.cjs +10046 -5335
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -12
- package/dist/index.d.ts +5 -12
- package/dist/index.js +9966 -5256
- package/dist/index.js.map +1 -1
- package/package.json +7 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
export { B as Button, T as ToggleButton, b as buttonVariants, i as fields, t as toggleButtonVariants } from './index-19C2gVyr.cjs';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import { VariantProps } from 'class-variance-authority';
|
|
4
3
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
9
|
-
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
10
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
11
|
-
declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
12
|
-
asChild?: boolean;
|
|
13
|
-
}): React.JSX.Element;
|
|
4
|
+
import 'class-variance-authority/types';
|
|
5
|
+
import 'class-variance-authority';
|
|
6
|
+
import '@radix-ui/react-toggle';
|
|
14
7
|
|
|
15
8
|
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): React.JSX.Element;
|
|
16
9
|
declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): React.JSX.Element;
|
|
@@ -40,4 +33,4 @@ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }
|
|
|
40
33
|
}): React.JSX.Element;
|
|
41
34
|
declare function DropdownMenuSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): React.JSX.Element;
|
|
42
35
|
|
|
43
|
-
export {
|
|
36
|
+
export { ConfirmationDropdownMenuItem, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuClose, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
export { B as Button, T as ToggleButton, b as buttonVariants, i as fields, t as toggleButtonVariants } from './index-19C2gVyr.js';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import { VariantProps } from 'class-variance-authority';
|
|
4
3
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
|
|
9
|
-
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
10
|
-
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
11
|
-
declare function Button({ className, variant, size, asChild, ...props }: React.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
|
|
12
|
-
asChild?: boolean;
|
|
13
|
-
}): React.JSX.Element;
|
|
4
|
+
import 'class-variance-authority/types';
|
|
5
|
+
import 'class-variance-authority';
|
|
6
|
+
import '@radix-ui/react-toggle';
|
|
14
7
|
|
|
15
8
|
declare function DropdownMenu({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Root>): React.JSX.Element;
|
|
16
9
|
declare function DropdownMenuPortal({ ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.Portal>): React.JSX.Element;
|
|
@@ -40,4 +33,4 @@ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }
|
|
|
40
33
|
}): React.JSX.Element;
|
|
41
34
|
declare function DropdownMenuSubContent({ className, ...props }: React.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): React.JSX.Element;
|
|
42
35
|
|
|
43
|
-
export {
|
|
36
|
+
export { ConfirmationDropdownMenuItem, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuClose, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger };
|