@fileverse/ui 4.1.7-patch-1 → 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 +23 -5
- package/dist/index.es.js +7433 -7393
- 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;
|
|
@@ -620,7 +620,9 @@ export declare interface SegmentedControlProps extends default_2.AllHTMLAttribut
|
|
|
620
620
|
|
|
621
621
|
export declare const Select: React_2.FC<SelectPrimitive.SelectProps>;
|
|
622
622
|
|
|
623
|
-
export declare const SelectContent: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> &
|
|
623
|
+
export declare const SelectContent: React_2.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
624
|
+
showScrollButtons?: boolean;
|
|
625
|
+
} & React_2.RefAttributes<HTMLDivElement>>;
|
|
624
626
|
|
|
625
627
|
export declare const SelectGroup: React_2.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
626
628
|
|
|
@@ -671,7 +673,7 @@ export declare const SheetTitle: React_2.ForwardRefExoticComponent<Omit<DialogPr
|
|
|
671
673
|
export declare const SheetTrigger: React_2.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
672
674
|
|
|
673
675
|
declare const sheetVariants: (props?: ({
|
|
674
|
-
side?: "
|
|
676
|
+
side?: "bottom" | "top" | "right" | "left" | null | undefined;
|
|
675
677
|
} & ClassProp) | undefined) => string;
|
|
676
678
|
|
|
677
679
|
export declare const Skeleton: ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => JSX_2.Element;
|
|
@@ -794,6 +796,14 @@ export declare interface TextAreaFieldProps extends React_2.TextareaHTMLAttribut
|
|
|
794
796
|
* Whether the textarea is valid.
|
|
795
797
|
*/
|
|
796
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"];
|
|
797
807
|
}
|
|
798
808
|
|
|
799
809
|
export declare const TextAreaFieldV2: React_2.ForwardRefExoticComponent<TextAreaFieldV2Props & React_2.RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -852,6 +862,14 @@ export declare interface TextFieldProps extends React_2.InputHTMLAttributes<HTML
|
|
|
852
862
|
* Event handler for the onChange event.
|
|
853
863
|
*/
|
|
854
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"];
|
|
855
873
|
}
|
|
856
874
|
|
|
857
875
|
declare type Theme = "light" | "dark";
|
|
@@ -965,7 +983,7 @@ export declare interface TooltipProps extends React_2.HTMLAttributes<HTMLElement
|
|
|
965
983
|
}
|
|
966
984
|
|
|
967
985
|
declare const tooltipVariants: (props?: ({
|
|
968
|
-
position?: "
|
|
986
|
+
position?: "bottom" | "top" | "right" | "left" | null | undefined;
|
|
969
987
|
beakAlignment?: "end" | "center" | "start" | null | undefined;
|
|
970
988
|
defaultVariants?: "variant" | "beakPosition" | null | undefined;
|
|
971
989
|
} & ClassProp) | undefined) => string;
|