lecom-ui 5.3.72 → 5.3.73
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.
|
@@ -300,7 +300,6 @@ function Combobox({
|
|
|
300
300
|
`[data-combobox-value="${value}"]`
|
|
301
301
|
);
|
|
302
302
|
if (el) {
|
|
303
|
-
el.focus();
|
|
304
303
|
el.scrollIntoView({ block: "nearest" });
|
|
305
304
|
}
|
|
306
305
|
});
|
|
@@ -340,7 +339,7 @@ function Combobox({
|
|
|
340
339
|
onValueChange: setSearch
|
|
341
340
|
}
|
|
342
341
|
), /* @__PURE__ */ React.createElement(
|
|
343
|
-
|
|
342
|
+
"div",
|
|
344
343
|
{
|
|
345
344
|
ref: commandListRef,
|
|
346
345
|
key: search,
|
|
@@ -354,8 +353,7 @@ function Combobox({
|
|
|
354
353
|
contentClassName
|
|
355
354
|
)
|
|
356
355
|
},
|
|
357
|
-
/* @__PURE__ */ React.createElement(CommandEmpty, null, notFoundContent),
|
|
358
|
-
/* @__PURE__ */ React.createElement(
|
|
356
|
+
/* @__PURE__ */ React.createElement(CommandList, null, /* @__PURE__ */ React.createElement(CommandEmpty, null, notFoundContent), /* @__PURE__ */ React.createElement(
|
|
359
357
|
ComboboxOptionsList,
|
|
360
358
|
{
|
|
361
359
|
items: filteredOptions,
|
|
@@ -365,7 +363,7 @@ function Combobox({
|
|
|
365
363
|
itemsClassName,
|
|
366
364
|
size
|
|
367
365
|
}
|
|
368
|
-
)
|
|
366
|
+
))
|
|
369
367
|
))
|
|
370
368
|
));
|
|
371
369
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -961,7 +961,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
961
961
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
962
962
|
|
|
963
963
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
964
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement |
|
|
964
|
+
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"> & {
|
|
965
965
|
className?: string;
|
|
966
966
|
collapsedSize?: number | undefined;
|
|
967
967
|
collapsible?: boolean | undefined;
|