Skip to content

Commit

Permalink
feat(input): changed size L (72 → 64), added size XL (72)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: size L changed to size XL
  • Loading branch information
SiebenSieben committed Mar 2, 2021
1 parent ea43560 commit 79699e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/input/src/Component.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { name, version } from '../package.json';
)}
block={boolean('block', false)}
clear={boolean('clear', false)}
size={select('size', ['s', 'm', 'l'], 's')}
size={select('size', ['s', 'm', 'l', 'xl'], 's')}
disabled={boolean('disabled', false)}
placeholder={text('placeholder', '')}
label={text('label', '')}
Expand Down
2 changes: 1 addition & 1 deletion packages/input/src/Component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export type InputProps = Omit<
/**
* Размер компонента
*/
size?: 's' | 'm' | 'l';
size?: 's' | 'm' | 'l' | 'xl';

/**
* Отображение ошибки
Expand Down

0 comments on commit 79699e3

Please sign in to comment.