lecom-ui 5.4.40 → 5.4.41
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
|
@@ -790,9 +790,9 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
790
790
|
}
|
|
791
791
|
|
|
792
792
|
declare const inputVariants: (props?: ({
|
|
793
|
-
variant?: "
|
|
794
|
-
size?: "
|
|
795
|
-
radius?: "
|
|
793
|
+
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
794
|
+
size?: "default" | "small" | "large" | null | undefined;
|
|
795
|
+
radius?: "default" | "small" | "large" | "full" | null | undefined;
|
|
796
796
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
797
797
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'sufix' | 'prefix'>, VariantProps<typeof inputVariants> {
|
|
798
798
|
sufix?: React$1.ReactNode;
|
|
@@ -998,7 +998,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
998
998
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
999
999
|
|
|
1000
1000
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
1001
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<
|
|
1001
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement | HTMLHeadingElement | HTMLParagraphElement | HTMLLabelElement | HTMLInputElement | HTMLObjectElement | HTMLAreaElement | HTMLAudioElement | HTMLBaseElement | HTMLQuoteElement | HTMLBodyElement | HTMLBRElement | HTMLCanvasElement | HTMLTableCaptionElement | HTMLTableColElement | HTMLDataElement | HTMLDataListElement | HTMLModElement | HTMLDetailsElement | HTMLDialogElement | HTMLDListElement | HTMLEmbedElement | HTMLFieldSetElement | HTMLFormElement | HTMLHeadElement | HTMLHRElement | HTMLHtmlElement | HTMLIFrameElement | HTMLImageElement | HTMLLegendElement | HTMLLinkElement | HTMLMapElement | HTMLMenuElement | HTMLMetaElement | HTMLMeterElement | HTMLOptGroupElement | HTMLOptionElement | HTMLOutputElement | HTMLPictureElement | HTMLPreElement | HTMLProgressElement | HTMLScriptElement | HTMLSelectElement | HTMLSlotElement | HTMLSourceElement | HTMLStyleElement | HTMLTableElement | HTMLTableSectionElement | HTMLTableCellElement | HTMLTemplateElement | HTMLTextAreaElement | HTMLTimeElement | HTMLTitleElement | HTMLTableRowElement | HTMLTrackElement | HTMLUListElement | HTMLVideoElement>, "id" | "onResize"> & {
|
|
1002
1002
|
className?: string;
|
|
1003
1003
|
collapsedSize?: number | undefined;
|
|
1004
1004
|
collapsible?: boolean | undefined;
|
|
@@ -1164,9 +1164,9 @@ declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.
|
|
|
1164
1164
|
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1165
1165
|
|
|
1166
1166
|
declare const textareaVariants: (props?: ({
|
|
1167
|
-
variant?: "
|
|
1168
|
-
size?: "
|
|
1169
|
-
radius?: "
|
|
1167
|
+
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
1168
|
+
size?: "default" | "small" | "large" | null | undefined;
|
|
1169
|
+
radius?: "default" | "small" | "large" | "full" | null | undefined;
|
|
1170
1170
|
resize?: "default" | "both" | "horizontal" | "vertical" | "vertical-limited" | null | undefined;
|
|
1171
1171
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1172
1172
|
interface TextareaProps extends React$1.ComponentProps<'textarea'>, VariantProps<typeof textareaVariants> {
|
|
@@ -1356,7 +1356,7 @@ interface DateInputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputEleme
|
|
|
1356
1356
|
declare const DateInput: React$1.ForwardRefExoticComponent<DateInputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
1357
1357
|
|
|
1358
1358
|
declare const badgeVariants: (props?: ({
|
|
1359
|
-
variant?: "
|
|
1359
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
1360
1360
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1361
1361
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
|
|
1362
1362
|
}
|