@fluidattacks/design 3.6.0 → 3.6.1

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.
@@ -1,4 +1,3 @@
1
- import { Key } from 'react-aria';
2
1
  import { ComboBoxState } from 'react-stately';
3
2
  import { IOutlineContainerProps } from '../../types';
4
3
  /**
@@ -27,15 +26,11 @@ interface IOptionProps<T> {
27
26
  * @property { boolean } [disabled] - Whether the Select is disabled.
28
27
  * @property { string } name - The name of the Select.
29
28
  * @property { IItem[] } items - The items to be rendered as options.
30
- * @property { Function } onChange - The callback function to be called when the value of the Select changes.
31
- * @property { string } value - The value of the Select.
32
29
  */
33
30
  interface IComboBoxProps extends Partial<Omit<IOutlineContainerProps, "maxLength" | "value">> {
34
31
  disabled?: boolean;
35
32
  name: string;
36
33
  items: IItem[];
37
- onChange: (key: Key | null) => void;
38
34
  placeholder?: string;
39
- value: string;
40
35
  }
41
36
  export type { IItem, IOptionProps, IComboBoxProps };
package/package.json CHANGED
@@ -113,5 +113,5 @@
113
113
  "test-storybook": "test-storybook"
114
114
  },
115
115
  "typings": "./dist/index.d.ts",
116
- "version": "3.6.0"
116
+ "version": "3.6.1"
117
117
  }