lecom-ui 4.3.2 → 4.3.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.d.ts +2 -2
- package/dist/plugin/plugin.cjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -542,8 +542,8 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
542
542
|
|
|
543
543
|
declare const inputVariants: (props?: ({
|
|
544
544
|
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
545
|
-
size?: "
|
|
546
|
-
radius?: "
|
|
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