master-components-react-ts 2.11.24 → 2.11.25

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.
@@ -2,7 +2,7 @@ import { FormInputProps } from '../FormInput/FormInput.types';
2
2
  import { TreeNodeProps } from '../TreeNode/TreeNode.types';
3
3
  import { MainButtonProps } from '../MainButton/MainButton.types';
4
4
  export type DropdownItemType = {
5
- id: string | number;
5
+ id?: string | number;
6
6
  label?: string;
7
7
  customLabel?: React.ReactNode | ((item: any) => React.ReactNode);
8
8
  selected?: boolean;
package/dist/index.d.ts CHANGED
@@ -12,7 +12,7 @@ export type { ToggleProps } from './components/Toggle/Toggle.types';
12
12
  export { default as Checkbox } from './components/Checkbox/CheckBox';
13
13
  export type { CheckboxProps } from './components/Checkbox/Checkbox.types';
14
14
  export { default as Dropdown } from './components/Dropdown/DropDown';
15
- export type { DropdownItemType } from './components/Dropdown/DropDown.types';
15
+ export type { DropdownProps, DropdownItemType } from './components/Dropdown/DropDown.types';
16
16
  export { default as Radio } from './components/Radio/Radio';
17
17
  export type { RadioProps } from './components/Radio/Radio.types';
18
18
  export { default as Tooltip } from './components/Tooltip/Tooltip';