@modul/mbui 0.0.37-beta-select-a2763cb3 → 0.0.37-beta-select-a2bf666d
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/Chip/Chip.d.ts +1 -1
- package/dist/Drawer/Drawer.d.ts +2 -1
- package/dist/Drawer/index.d.ts +1 -1
- package/dist/Drawer/index.js +2 -2
- package/dist/Input-OTP/Input.d.ts +4 -4
- package/dist/Select/SelectDrawer.d.ts +3 -31
- package/dist/Select/index.d.ts +1 -2
- package/dist/Select/index.js +2 -2
- package/dist/index.d.ts +3 -3
- package/dist/index.js +6 -6
- package/package.json +1 -1
- package/dist/Select/SelectDrawer2.d.ts +0 -2
package/dist/Chip/Chip.d.ts
CHANGED
@@ -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" | "
|
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> {
|
package/dist/Drawer/Drawer.d.ts
CHANGED
@@ -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 };
|
package/dist/Drawer/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerTitle, } from './Drawer';
|
1
|
+
export { Drawer, DrawerTrigger, DrawerClose, DrawerContent, DrawerTitle, DrawerDescription } from './Drawer';
|