@inntechcorp/it-design 2.0.265 → 2.0.266

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
@@ -408,6 +408,7 @@ type IconProps = {
408
408
  declare const NoData: ({ className, height, width }: IconProps) => react_jsx_runtime.JSX.Element;
409
409
 
410
410
  type OptionsTypeProps = {
411
+ customKey?: string;
411
412
  icon?: ChildrenProps$1;
412
413
  image?: string;
413
414
  label?: ChildrenProps$1;
@@ -417,7 +418,7 @@ type OptionsTypeProps = {
417
418
  onChange?: (value: SelectValue$1, checked: boolean, label: ChildrenProps$1) => null;
418
419
  };
419
420
  declare const _default$3: react.MemoExoticComponent<{
420
- ({ multi, checked, icon, image, value, onChange, label }: OptionsTypeProps): react_jsx_runtime.JSX.Element;
421
+ ({ multi, checked, icon, image, value, customKey, onChange, label }: OptionsTypeProps): react_jsx_runtime.JSX.Element;
421
422
  displayName: string;
422
423
  }>;
423
424
 
@@ -1008,6 +1009,7 @@ type SelectToggleProps = {
1008
1009
  onChange: (open: boolean) => void;
1009
1010
  };
1010
1011
  type SelectOptionProps = {
1012
+ key?: string;
1011
1013
  label: string | number | ChildrenProps;
1012
1014
  value: SelectValue;
1013
1015
  icon?: ChildrenProps;