lecom-ui 5.3.56 → 5.3.57
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.
|
@@ -43,8 +43,8 @@ const NumberControl = ({
|
|
|
43
43
|
const labelElement = /* @__PURE__ */ React__default.createElement(
|
|
44
44
|
Typography,
|
|
45
45
|
{
|
|
46
|
-
variant: "body-
|
|
47
|
-
textColor: "text-grey-
|
|
46
|
+
variant: "body-small-400",
|
|
47
|
+
textColor: "text-grey-700",
|
|
48
48
|
className: twMerge(clsx("flex items-center gap-1", labelClassName))
|
|
49
49
|
},
|
|
50
50
|
label,
|
package/dist/index.d.ts
CHANGED
|
@@ -756,8 +756,8 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
756
756
|
|
|
757
757
|
declare const inputVariants: (props?: ({
|
|
758
758
|
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
759
|
-
size?: "
|
|
760
|
-
radius?: "
|
|
759
|
+
size?: "small" | "default" | "large" | null | undefined;
|
|
760
|
+
radius?: "small" | "default" | "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;
|
|
@@ -958,7 +958,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
958
958
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
959
959
|
|
|
960
960
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
961
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement |
|
|
961
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement | HTMLButtonElement | HTMLHeadingElement | HTMLParagraphElement | HTMLLabelElement | HTMLInputElement | HTMLUListElement | 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"> & {
|
|
962
962
|
className?: string;
|
|
963
963
|
collapsedSize?: number | undefined;
|
|
964
964
|
collapsible?: boolean | undefined;
|
|
@@ -1114,8 +1114,8 @@ declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.
|
|
|
1114
1114
|
|
|
1115
1115
|
declare const textareaVariants: (props?: ({
|
|
1116
1116
|
variant?: "default" | "filled" | "borderless" | null | undefined;
|
|
1117
|
-
size?: "
|
|
1118
|
-
radius?: "
|
|
1117
|
+
size?: "small" | "default" | "large" | null | undefined;
|
|
1118
|
+
radius?: "small" | "default" | "large" | "full" | null | undefined;
|
|
1119
1119
|
resize?: "default" | "both" | "horizontal" | "vertical" | "vertical-limited" | null | undefined;
|
|
1120
1120
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1121
1121
|
interface TextareaProps extends React$1.ComponentProps<'textarea'>, VariantProps<typeof textareaVariants> {
|