mayak-common-library 0.0.771 → 0.0.772

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
@@ -1475,7 +1475,7 @@ interface ListItemProps {
1475
1475
  icon?: ReactElement;
1476
1476
  subTitle?: string;
1477
1477
  bold?: boolean;
1478
- onClick: (value?: MACHINE_NAME | string) => void;
1478
+ onClickHandler: (value?: MACHINE_NAME | string) => void;
1479
1479
  }
1480
1480
  declare const ListItem: FC<ListItemProps>;
1481
1481
 
@@ -1489,7 +1489,7 @@ interface TermListProps {
1489
1489
  currentValue?: string;
1490
1490
  label?: string;
1491
1491
  collapseParent?: any;
1492
- onChange?: (value?: string) => void;
1492
+ onChange: (value?: string) => void;
1493
1493
  }
1494
1494
  declare const TermList: (props: TermListProps) => react_jsx_runtime.JSX.Element;
1495
1495
 
package/dist/index.d.ts CHANGED
@@ -1475,7 +1475,7 @@ interface ListItemProps {
1475
1475
  icon?: ReactElement;
1476
1476
  subTitle?: string;
1477
1477
  bold?: boolean;
1478
- onClick: (value?: MACHINE_NAME | string) => void;
1478
+ onClickHandler: (value?: MACHINE_NAME | string) => void;
1479
1479
  }
1480
1480
  declare const ListItem: FC<ListItemProps>;
1481
1481
 
@@ -1489,7 +1489,7 @@ interface TermListProps {
1489
1489
  currentValue?: string;
1490
1490
  label?: string;
1491
1491
  collapseParent?: any;
1492
- onChange?: (value?: string) => void;
1492
+ onChange: (value?: string) => void;
1493
1493
  }
1494
1494
  declare const TermList: (props: TermListProps) => react_jsx_runtime.JSX.Element;
1495
1495