@modul/mbui 0.0.37-beta-select-a2763cb3 → 0.0.37-beta-select-a2bf666d

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { type VariantProps } from 'class-variance-authority';
3
3
  declare const chipVariants: (props?: {
4
- variant?: "primary" | "secondary" | "success" | "primary-outline" | "outline" | "ghost";
4
+ variant?: "outline" | "primary" | "secondary" | "success" | "primary-outline" | "ghost";
5
5
  size?: "lg" | "md" | "sm" | "xs" | "xxs";
6
6
  } & import("class-variance-authority/dist/types").ClassProp) => string;
7
7
  export interface IChipProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof chipVariants> {
@@ -6,6 +6,7 @@ declare const Drawer: {
6
6
  };
7
7
  declare const DrawerTrigger: typeof DrawerPrimitive.Trigger;
8
8
  declare const DrawerClose: typeof DrawerPrimitive.Close;
9
+ declare const DrawerDescription: typeof DrawerPrimitive.Description;
9
10
  declare const DrawerTitle: typeof DrawerPrimitive.Title;
10
11
  declare const DrawerContent: typeof DrawerPrimitive.Content;
11
- export { Drawer, DrawerTrigger, DrawerContent, DrawerTitle, DrawerClose };
12
+ export { Drawer, DrawerTrigger, DrawerContent, DrawerTitle, DrawerClose, DrawerDescription };
@@ -1 +1 @@
1
- export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerTitle, } from './Drawer';
1
+ export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerTitle, DrawerDescription } from './Drawer';