Skip to content
This repository has been archived by the owner on Dec 23, 2022. It is now read-only.

Commit

Permalink
Set classes property to optional in typings (#274)
Browse files Browse the repository at this point in the history
Changed *classes* prop to optional in typings to optional as it is not required while using in production.
  • Loading branch information
ron4stoppable authored and leMaik committed May 23, 2019
1 parent b3dc6a6 commit e545b13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export interface Props extends Omit<FormControlProps, 'onChange'> {
alwaysShowPlaceholder?: boolean;
blurBehavior?: 'clear' | 'add' | 'ignore';
chipRenderer?: ChipRenderer;
classes: Record<string, string>;
classes?: Record<string, string>;
clearInputValueOnChange?: boolean;
dataSource?: any[];
dataSourceConfig?: {
Expand Down

0 comments on commit e545b13

Please sign in to comment.