lecom-ui 4.3.4 → 4.3.6
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
|
@@ -451,7 +451,7 @@ interface ErrorEmptyDisplayProps {
|
|
|
451
451
|
render?: React.ReactNode;
|
|
452
452
|
}
|
|
453
453
|
declare const ErrorEmptyDisplay: {
|
|
454
|
-
({ className, classContent, image, title, description, footer, render, }: ErrorEmptyDisplayProps): string | number | bigint | true |
|
|
454
|
+
({ className, classContent, image, title, description, footer, render, }: ErrorEmptyDisplayProps): string | number | bigint | true | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element;
|
|
455
455
|
displayName: string;
|
|
456
456
|
};
|
|
457
457
|
|
|
@@ -541,9 +541,9 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
541
541
|
}
|
|
542
542
|
|
|
543
543
|
declare const inputVariants: (props?: ({
|
|
544
|
-
variant?: "
|
|
545
|
-
size?: "
|
|
546
|
-
radius?: "
|
|
544
|
+
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
545
|
+
size?: "default" | "small" | "large" | null | undefined;
|
|
546
|
+
radius?: "default" | "small" | "large" | null | undefined;
|
|
547
547
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
548
548
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'sufix' | 'prefix'>, VariantProps<typeof inputVariants> {
|
|
549
549
|
sufix?: React$1.ReactNode;
|
package/dist/plugin/plugin.cjs
CHANGED