@inntechcorp/it-design 2.1.101 → 2.2.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.
package/dist/index.d.mts CHANGED
@@ -615,7 +615,7 @@ export * from './icons';
615
615
  export { default as Select } from './select';
616
616
  export { default as Form } from './form';
617
617
  export { default as Checkbox } from './checkbox';
618
- export { default as Accordion } from './accordion';
618
+ export { default as Accordion } from './accordion/index';
619
619
  export { default as Calendar } from './calendar';
620
620
  export { default as DatePicker } from './datepicker';
621
621
  export { default as Input } from './input';
@@ -636,7 +636,7 @@ export { default as InlineSelect } from './inlineselect';
636
636
  export { default as Image } from './image';
637
637
  export { default as ConsoleLog } from './logger';
638
638
  export { default as Button } from './button';
639
- export { default as Alert } from './alert';
639
+ export { default as Alert } from './alert/index';
640
640
  export { default as Result } from './result';
641
641
  export { default as ALink } from './alink';
642
642
  export { default as Spin } from './spin';
package/dist/index.d.ts CHANGED
@@ -726,8 +726,9 @@ declare function Progress({ status, percent, alwaysShowPercent, showInfo, classN
726
726
  type TinyScrollbarProps = {
727
727
  className: string;
728
728
  children: ChildrenProps$1;
729
+ style?: React.CSSProperties;
729
730
  };
730
- declare function TinyScrollbar({ className, children }: TinyScrollbarProps): react_jsx_runtime.JSX.Element;
731
+ declare function TinyScrollbar({ className, children, style }: TinyScrollbarProps): react_jsx_runtime.JSX.Element;
731
732
 
732
733
  declare const Tabs: ({ tabs, activeTabKey, className, variant, height, onTabChange }: TabsProps) => react_jsx_runtime.JSX.Element;
733
734
 
@@ -1020,6 +1021,7 @@ type SelectOptionProps = {
1020
1021
  icon?: ChildrenProps;
1021
1022
  image?: string;
1022
1023
  disabled?: boolean;
1024
+ searchText?: string;
1023
1025
  };
1024
1026
  type SelectValue = string | number | (string | number)[];
1025
1027
  type SelectVariant = "default" | "solid" | "filled" | "outline" | "custom";