@tracktor/design-system 3.0.1 → 3.0.2

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,5 +1,7 @@
1
+ import { SxProps } from '@mui/material';
1
2
  interface CloseIconProps {
2
3
  color?: string;
4
+ sx?: SxProps;
3
5
  }
4
- declare const CloseIcon: ({ color }: CloseIconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
6
+ declare const CloseIcon: ({ sx, color }: CloseIconProps) => import("@emotion/react/jsx-runtime").JSX.Element;
5
7
  export default CloseIcon;
@@ -46,7 +46,7 @@ export interface AutocompleteFilterProps<Multiple extends boolean | undefined, D
46
46
  * @param reason
47
47
  * @param details
48
48
  */
49
- onChange?: (event: SyntheticEvent, value: AutocompleteFilterOption<OptionValue>[], reason?: AutocompleteChangeReason, details?: AutocompleteChangeDetails<AutocompleteFilterOption<OptionValue>>) => void;
49
+ onChange?: (event: SyntheticEvent, value: any, reason?: AutocompleteChangeReason, details?: AutocompleteChangeDetails<AutocompleteFilterOption<OptionValue>>) => void;
50
50
  /**
51
51
  * Locale text
52
52
  */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@tracktor/design-system",
3
3
  "description": "Tracktor Design System",
4
4
  "sideEffects": false,
5
- "version": "3.0.1",
5
+ "version": "3.0.2",
6
6
  "license": "ISC",
7
7
  "type": "module",
8
8
  "types": "./dist/src/main.d.ts",