lecom-ui 5.4.6 → 5.4.8
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.
|
@@ -9,6 +9,7 @@ const SearchInput = ({
|
|
|
9
9
|
customStyles,
|
|
10
10
|
placeholder,
|
|
11
11
|
isActiveButton,
|
|
12
|
+
value,
|
|
12
13
|
onChangeValue,
|
|
13
14
|
onClickButton
|
|
14
15
|
}) => {
|
|
@@ -46,6 +47,7 @@ const SearchInput = ({
|
|
|
46
47
|
placeholder,
|
|
47
48
|
size: "small",
|
|
48
49
|
radius: "full",
|
|
50
|
+
value,
|
|
49
51
|
prefixInset: /* @__PURE__ */ React.createElement(Search, { size: 20, color: mappedCustomStyles.color }),
|
|
50
52
|
className: "body-small-400 border-none h-8",
|
|
51
53
|
containerClassName: "grow",
|
package/dist/index.d.ts
CHANGED
|
@@ -726,6 +726,7 @@ interface SearchInputProps {
|
|
|
726
726
|
customStyles: CustomStyles$2;
|
|
727
727
|
placeholder?: string;
|
|
728
728
|
isActiveButton?: boolean;
|
|
729
|
+
value?: string;
|
|
729
730
|
onChangeValue?: (value: string) => void;
|
|
730
731
|
onClickButton?: () => void;
|
|
731
732
|
}
|
|
@@ -990,7 +991,7 @@ declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimi
|
|
|
990
991
|
declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
991
992
|
|
|
992
993
|
declare const ResizablePanelGroup: ({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>) => React$1.JSX.Element;
|
|
993
|
-
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement | HTMLHeadingElement | HTMLParagraphElement |
|
|
994
|
+
declare const ResizablePanel: React$1.ForwardRefExoticComponent<Omit<React$1.HTMLAttributes<HTMLDivElement | HTMLElement | HTMLButtonElement | HTMLOListElement | HTMLLIElement | HTMLAnchorElement | HTMLSpanElement | HTMLHeadingElement | HTMLParagraphElement | HTMLInputElement | 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 | 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"> & {
|
|
994
995
|
className?: string;
|
|
995
996
|
collapsedSize?: number | undefined;
|
|
996
997
|
collapsible?: boolean | undefined;
|