@inntechcorp/it-design 2.0.43 → 2.0.45

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
@@ -436,9 +436,9 @@ type CheckboxSubComponentProps = {
436
436
  type CheckboxComponentProps = ForwardRefExoticComponent<PropsWithoutRef<CheckboxProps> & RefAttributes<ITDImperativeFuncProps>> & CheckboxSubComponentProps;
437
437
  declare const Checkbox: CheckboxComponentProps;
438
438
 
439
- declare function SubMenu({ id, link, icon, title, isSelected, useLink, onlyOne, subMenuLinkArrow, subMenuHeight, itemHeight, iconSize, arrowSize, onChange, children }: AccordionSubMenuProps): react_jsx_runtime.JSX.Element;
439
+ declare function SubMenu({ id, link, icon, title, isSelected, useLink, onlyOne, subMenuLinkArrow, end, subMenuHeight, itemHeight, iconSize, arrowSize, onChange, children }: AccordionSubMenuProps): react_jsx_runtime.JSX.Element;
440
440
 
441
- declare const Item: ({ link, itemHeight, arrowSize, active, children }: AccordionItemProps) => react_jsx_runtime.JSX.Element;
441
+ declare const Item: ({ link, itemHeight, arrowSize, active, end, children }: AccordionItemProps) => react_jsx_runtime.JSX.Element;
442
442
 
443
443
  type AccordionMenuSubComponents = {
444
444
  SubMenu: typeof SubMenu;
@@ -668,6 +668,7 @@ type AccordionSubMenuProps = {
668
668
  itemHeight?: number;
669
669
  iconSize?: number;
670
670
  arrowSize?: number;
671
+ end?: boolean;
671
672
  onChange?: (id: string) => void;
672
673
  children?: ChildrenProps;
673
674
  };
@@ -677,6 +678,7 @@ type AccordionItemProps = {
677
678
  itemHeight?: number;
678
679
  arrowSize?: number;
679
680
  active?: boolean;
681
+ end?: boolean;
680
682
  children?: null | ChildrenProps;
681
683
  };
682
684