@fileverse/ui 4.1.7-patch-2 → 4.1.7-patch-3
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.es.d.ts +20 -4
- package/dist/index.es.js +7422 -7390
- package/package.json +1 -1
package/dist/index.es.d.ts
CHANGED
|
@@ -524,7 +524,7 @@ export declare interface IconButtonProps extends React.ButtonHTMLAttributes<HTML
|
|
|
524
524
|
|
|
525
525
|
declare type IconComponent = default_2.FC<IconProps>;
|
|
526
526
|
|
|
527
|
-
export declare interface IconProps extends
|
|
527
|
+
export declare interface IconProps extends SvgProps_2, VariantProps<typeof iconVariants_2> {
|
|
528
528
|
name: keyof typeof Icons;
|
|
529
529
|
className?: string;
|
|
530
530
|
}
|
|
@@ -556,7 +556,7 @@ export declare enum LayoutModes {
|
|
|
556
556
|
|
|
557
557
|
export declare const LucideIcon: default_2.ForwardRefExoticComponent<Omit<LucideIconProps, "ref"> & default_2.RefAttributes<SVGSVGElement>>;
|
|
558
558
|
|
|
559
|
-
export declare interface LucideIconProps extends Omit<
|
|
559
|
+
export declare interface LucideIconProps extends Omit<SvgProps, "name">, VariantProps<typeof iconVariants> {
|
|
560
560
|
name: keyof typeof UltimateIcons;
|
|
561
561
|
className?: string;
|
|
562
562
|
strokeWidth?: number;
|
|
@@ -673,7 +673,7 @@ export declare const SheetTitle: React_2.ForwardRefExoticComponent<Omit<DialogPr
|
|
|
673
673
|
export declare const SheetTrigger: React_2.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
674
674
|
|
|
675
675
|
declare const sheetVariants: (props?: ({
|
|
676
|
-
side?: "
|
|
676
|
+
side?: "bottom" | "top" | "right" | "left" | null | undefined;
|
|
677
677
|
} & ClassProp) | undefined) => string;
|
|
678
678
|
|
|
679
679
|
export declare const Skeleton: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => JSX_2.Element;
|
|
@@ -796,6 +796,14 @@ export declare interface TextAreaFieldProps extends React_2.TextareaHTMLAttribut
|
|
|
796
796
|
* Whether the textarea is valid.
|
|
797
797
|
*/
|
|
798
798
|
isValid?: boolean;
|
|
799
|
+
/**
|
|
800
|
+
* The tooltip text for the textarea.
|
|
801
|
+
*/
|
|
802
|
+
infoMessage?: string;
|
|
803
|
+
/**
|
|
804
|
+
* The icon for the tooltip.
|
|
805
|
+
*/
|
|
806
|
+
icon?: LucideIconProps["name"];
|
|
799
807
|
}
|
|
800
808
|
|
|
801
809
|
export declare const TextAreaFieldV2: React_2.ForwardRefExoticComponent<TextAreaFieldV2Props & React_2.RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -854,6 +862,14 @@ export declare interface TextFieldProps extends React_2.InputHTMLAttributes<HTML
|
|
|
854
862
|
* Event handler for the onChange event.
|
|
855
863
|
*/
|
|
856
864
|
onChange?: (e: React_2.ChangeEvent<HTMLInputElement>) => void;
|
|
865
|
+
/**
|
|
866
|
+
* The tooltip text for the textarea.
|
|
867
|
+
*/
|
|
868
|
+
infoMessage?: string;
|
|
869
|
+
/**
|
|
870
|
+
* The icon for the tooltip.
|
|
871
|
+
*/
|
|
872
|
+
icon?: LucideIconProps["name"];
|
|
857
873
|
}
|
|
858
874
|
|
|
859
875
|
declare type Theme = "light" | "dark";
|
|
@@ -967,7 +983,7 @@ export declare interface TooltipProps extends React_2.HTMLAttributes<HTMLElement
|
|
|
967
983
|
}
|
|
968
984
|
|
|
969
985
|
declare const tooltipVariants: (props?: ({
|
|
970
|
-
position?: "
|
|
986
|
+
position?: "bottom" | "top" | "right" | "left" | null | undefined;
|
|
971
987
|
beakAlignment?: "end" | "center" | "start" | null | undefined;
|
|
972
988
|
defaultVariants?: "variant" | "beakPosition" | null | undefined;
|
|
973
989
|
} & ClassProp) | undefined) => string;
|