lecom-ui 5.3.99 → 5.4.0
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.
|
@@ -39,7 +39,10 @@ function ToggleGroup({
|
|
|
39
39
|
children,
|
|
40
40
|
...props
|
|
41
41
|
}) {
|
|
42
|
-
const valueProps = React.useMemo(
|
|
42
|
+
const valueProps = React.useMemo(
|
|
43
|
+
() => ({ variant: "outline", size, color }),
|
|
44
|
+
[color, size]
|
|
45
|
+
);
|
|
43
46
|
return /* @__PURE__ */ React.createElement(
|
|
44
47
|
ToggleGroupPrimitive.Root,
|
|
45
48
|
{
|
|
@@ -60,12 +63,14 @@ function ToggleGroupItem({
|
|
|
60
63
|
children,
|
|
61
64
|
size,
|
|
62
65
|
color,
|
|
66
|
+
asChild,
|
|
63
67
|
...props
|
|
64
68
|
}) {
|
|
65
69
|
const context = React.useContext(ToggleGroupContext);
|
|
66
70
|
return /* @__PURE__ */ React.createElement(
|
|
67
71
|
ToggleGroupPrimitive.Item,
|
|
68
72
|
{
|
|
73
|
+
asChild,
|
|
69
74
|
"data-slot": "toggle-group-item",
|
|
70
75
|
"data-variant": "outline",
|
|
71
76
|
"data-size": context.size || size,
|
package/dist/index.d.ts
CHANGED
|
@@ -963,7 +963,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
963
963
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
964
964
|
|
|
965
965
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
966
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement |
|
|
966
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement | 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"> & {
|
|
967
967
|
className?: string;
|
|
968
968
|
collapsedSize?: number | undefined;
|
|
969
969
|
collapsible?: boolean | undefined;
|
|
@@ -1050,7 +1050,7 @@ declare const toggleVariants: (props?: ({
|
|
|
1050
1050
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1051
1051
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1052
1052
|
declare function ToggleGroup({ className, size, color, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): React$1.JSX.Element;
|
|
1053
|
-
declare function ToggleGroupItem({ className, children, size, color, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): React$1.JSX.Element;
|
|
1053
|
+
declare function ToggleGroupItem({ className, children, size, color, asChild, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): React$1.JSX.Element;
|
|
1054
1054
|
|
|
1055
1055
|
declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
1056
1056
|
declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
|