lecom-ui 5.3.37 → 5.3.38
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/components/Tabs/Tabs.js +1 -1
- package/dist/index.d.ts +7 -7
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ const TabsContent = React.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
32
32
|
{
|
|
33
33
|
ref,
|
|
34
34
|
className: cn(
|
|
35
|
-
"mt-2 ring-offset-background focus-visible:outline-none
|
|
35
|
+
"mt-2 ring-offset-background focus-visible:outline-none",
|
|
36
36
|
className
|
|
37
37
|
),
|
|
38
38
|
...props
|
package/dist/index.d.ts
CHANGED
|
@@ -755,9 +755,9 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
755
755
|
}
|
|
756
756
|
|
|
757
757
|
declare const inputVariants: (props?: ({
|
|
758
|
-
variant?: "
|
|
759
|
-
size?: "
|
|
760
|
-
radius?: "
|
|
758
|
+
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
759
|
+
size?: "default" | "small" | "large" | null | undefined;
|
|
760
|
+
radius?: "default" | "small" | "large" | "full" | null | undefined;
|
|
761
761
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
762
762
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'sufix' | 'prefix'>, VariantProps<typeof inputVariants> {
|
|
763
763
|
sufix?: React$1.ReactNode;
|
|
@@ -927,7 +927,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
927
927
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
928
928
|
|
|
929
929
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
930
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement |
|
|
930
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement | HTMLLabelElement | HTMLParagraphElement | HTMLHeadingElement | HTMLUListElement | 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 | HTMLVideoElement>, "id" | "onResize"> & {
|
|
931
931
|
className?: string;
|
|
932
932
|
collapsedSize?: number | undefined;
|
|
933
933
|
collapsible?: boolean | undefined;
|
|
@@ -1082,9 +1082,9 @@ declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.
|
|
|
1082
1082
|
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1083
1083
|
|
|
1084
1084
|
declare const textareaVariants: (props?: ({
|
|
1085
|
-
variant?: "
|
|
1086
|
-
size?: "
|
|
1087
|
-
radius?: "
|
|
1085
|
+
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
1086
|
+
size?: "default" | "small" | "large" | null | undefined;
|
|
1087
|
+
radius?: "default" | "small" | "large" | "full" | null | undefined;
|
|
1088
1088
|
resize?: "default" | "both" | "horizontal" | "vertical" | "vertical-limited" | null | undefined;
|
|
1089
1089
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1090
1090
|
interface TextareaProps extends React$1.ComponentProps<'textarea'>, VariantProps<typeof textareaVariants> {
|