lecom-ui 5.3.21 → 5.3.22
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.
|
@@ -97,8 +97,7 @@ function buildColumns({
|
|
|
97
97
|
className: cn(
|
|
98
98
|
"group flex items-center gap-1",
|
|
99
99
|
hasSort && "hover:cursor-pointer"
|
|
100
|
-
)
|
|
101
|
-
onClick: () => externalColumn.onSort?.({ table, column })
|
|
100
|
+
)
|
|
102
101
|
},
|
|
103
102
|
typeof externalColumn.title === "string" ? /* @__PURE__ */ React.createElement(
|
|
104
103
|
Typography,
|
package/dist/index.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<Accordion
|
|
|
69
69
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
70
70
|
|
|
71
71
|
declare const buttonVariants: (props?: ({
|
|
72
|
-
variant?: "
|
|
72
|
+
variant?: "filled" | "outlined" | "tonal" | "ghost" | null | undefined;
|
|
73
73
|
size?: "small" | "medium" | "large" | "extraLarge" | null | undefined;
|
|
74
74
|
color?: "blue" | "grey" | "destructive" | null | undefined;
|
|
75
75
|
iconButton?: boolean | null | undefined;
|
|
@@ -737,9 +737,9 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
737
737
|
}
|
|
738
738
|
|
|
739
739
|
declare const inputVariants: (props?: ({
|
|
740
|
-
variant?: "
|
|
741
|
-
size?: "
|
|
742
|
-
radius?: "
|
|
740
|
+
variant?: "filled" | "default" | "borderless" | null | undefined;
|
|
741
|
+
size?: "small" | "large" | "default" | null | undefined;
|
|
742
|
+
radius?: "small" | "large" | "default" | "full" | null | undefined;
|
|
743
743
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
744
744
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'sufix' | 'prefix'>, VariantProps<typeof inputVariants> {
|
|
745
745
|
sufix?: React$1.ReactNode;
|
|
@@ -898,7 +898,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
898
898
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
899
899
|
|
|
900
900
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
901
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<
|
|
901
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement | HTMLDivElement | HTMLButtonElement | HTMLHeadingElement | HTMLParagraphElement | HTMLLabelElement | 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 | HTMLInputElement | 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"> & {
|
|
902
902
|
className?: string;
|
|
903
903
|
collapsedSize?: number | undefined;
|
|
904
904
|
collapsible?: boolean | undefined;
|
|
@@ -1053,8 +1053,8 @@ declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.
|
|
|
1053
1053
|
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1054
1054
|
|
|
1055
1055
|
declare const textareaVariants: (props?: ({
|
|
1056
|
-
variant?: "
|
|
1057
|
-
radius?: "
|
|
1056
|
+
variant?: "filled" | "default" | "borderless" | null | undefined;
|
|
1057
|
+
radius?: "small" | "large" | "default" | null | undefined;
|
|
1058
1058
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1059
1059
|
interface TextareaProps extends React$1.ComponentProps<'textarea'>, VariantProps<typeof textareaVariants> {
|
|
1060
1060
|
resize?: 'none' | 'both' | 'horizontal' | 'vertical';
|