@qodo/design-system 0.19.0 → 0.19.2
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/design-system.css +1 -1
- package/dist/index.cjs.js +40 -40
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +4 -2
- package/dist/index.esm.js +591 -585
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -155,7 +155,7 @@ export declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLBu
|
|
|
155
155
|
|
|
156
156
|
declare const buttonVariants: (props?: ({
|
|
157
157
|
variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "danger" | null | undefined;
|
|
158
|
-
size?: "default" | "xs" | "sm" | "lg" | "icon" | null | undefined;
|
|
158
|
+
size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-sm" | "icon-md" | "icon-lg" | null | undefined;
|
|
159
159
|
} & ClassProp) | undefined) => string;
|
|
160
160
|
|
|
161
161
|
export declare function Card({ className, ...props }: React_2.ComponentProps<"div"> & {
|
|
@@ -610,7 +610,7 @@ declare const SearchSize: {
|
|
|
610
610
|
LARGE: string;
|
|
611
611
|
};
|
|
612
612
|
|
|
613
|
-
export declare
|
|
613
|
+
export declare function Select({ value, options, onSelect: propsOnSelect, disabled, mode, placeholder, inputPlaceholder, emptyState, triggerClassName, triggerWrapperClassName, badgeClassName, badgeVariant, searchable, toggleIcon, dir, ...rest }: SelectProps): JSX_2.Element;
|
|
614
614
|
|
|
615
615
|
declare const SELECT_MODE: {
|
|
616
616
|
SINGLE: string;
|
|
@@ -639,6 +639,8 @@ export declare const SelectTrigger: React_2.ForwardRefExoticComponent<Omit<Selec
|
|
|
639
639
|
readOnly?: boolean;
|
|
640
640
|
} & React_2.RefAttributes<HTMLButtonElement>>;
|
|
641
641
|
|
|
642
|
+
export declare const SelectV1: React_2.FC<SelectPrimitive.SelectProps>;
|
|
643
|
+
|
|
642
644
|
export declare const SelectValue: React_2.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React_2.RefAttributes<HTMLSpanElement>>;
|
|
643
645
|
|
|
644
646
|
declare type SeparatorProps = React.ComponentProps<typeof Steps_2.Separator> & {
|