@inntechcorp/it-design 2.0.82 → 2.0.84

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.
package/dist/index.d.ts CHANGED
@@ -325,6 +325,9 @@ type IconProps = {
325
325
  };
326
326
  declare const NoData: ({ className, height, width }: IconProps) => react_jsx_runtime.JSX.Element;
327
327
 
328
+ type OptionsRefProps = {
329
+ getValue: () => string;
330
+ };
328
331
  type OptionsProps = {
329
332
  icon?: string;
330
333
  image?: string;
@@ -334,10 +337,7 @@ type OptionsProps = {
334
337
  onChange?: (value: string, checked: boolean, children: ChildrenProps$1) => null;
335
338
  children?: ChildrenProps$1;
336
339
  };
337
- declare const _default$3: react.MemoExoticComponent<{
338
- ({ icon, image, value, mode, checked, onChange, children }: OptionsProps): react_jsx_runtime.JSX.Element;
339
- displayName: string;
340
- }>;
340
+ declare const _default$3: react.MemoExoticComponent<react.ForwardRefExoticComponent<OptionsProps & react.RefAttributes<OptionsRefProps>>>;
341
341
 
342
342
  type SelectSubComponentProps = {
343
343
  Option: typeof _default$3;
@@ -782,6 +782,8 @@ type SelectToggleProps = {
782
782
  selected: SelectOptionProps;
783
783
  onFocus: () => void;
784
784
  onBlur: () => void;
785
+ onShow: (value: boolean) => void;
786
+ onFilter: (value: string) => void;
785
787
  onChange: (open: boolean) => void;
786
788
  };
787
789
  type SelectVariant = "default" | "solid" | "filled" | "outline" | "custom";