lecom-ui 5.0.9 → 5.0.10
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.d.ts
CHANGED
|
@@ -561,7 +561,7 @@ interface ErrorEmptyDisplayProps {
|
|
|
561
561
|
render?: React$1.ReactNode;
|
|
562
562
|
}
|
|
563
563
|
declare const ErrorEmptyDisplay: {
|
|
564
|
-
({ className, classContent, image, title, description, footer, render, }: ErrorEmptyDisplayProps):
|
|
564
|
+
({ className, classContent, image, title, description, footer, render, }: ErrorEmptyDisplayProps): React$1.JSX.Element;
|
|
565
565
|
displayName: string;
|
|
566
566
|
};
|
|
567
567
|
|
|
@@ -679,9 +679,9 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
679
679
|
}
|
|
680
680
|
|
|
681
681
|
declare const inputVariants: (props?: ({
|
|
682
|
-
variant?: "
|
|
683
|
-
size?: "
|
|
684
|
-
radius?: "
|
|
682
|
+
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
683
|
+
size?: "default" | "small" | "large" | null | undefined;
|
|
684
|
+
radius?: "default" | "small" | "large" | "full" | null | undefined;
|
|
685
685
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
686
686
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'sufix' | 'prefix'>, VariantProps<typeof inputVariants> {
|
|
687
687
|
sufix?: React$1.ReactNode;
|
package/package.json
CHANGED