Skip to content

Commit e635f1d

Browse files
authored
Merge branch 'dev' into feature/#214-Create-videoconference-widget
2 parents a127952 + 54e7d18 commit e635f1d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/common/components/mock-components/front-components/combobox-shape.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { BASIC_SHAPE, DISABLED_COLOR_VALUES } from './shape.const';
88
import { useGroupShapeProps } from '../mock-components.utils';
99

1010
const comboBoxShapeRestrictions: ShapeSizeRestrictions = {
11-
minWidth: 100,
11+
minWidth: 85,
1212
minHeight: BASIC_SHAPE.DEFAULT_TEXT_HEIGHT,
1313
maxWidth: -1,
1414
maxHeight: BASIC_SHAPE.DEFAULT_TEXT_HEIGHT,

src/common/components/mock-components/front-components/input-shape.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { useShapeProps } from '../../shapes/use-shape-props.hook';
88
import { useGroupShapeProps } from '../mock-components.utils';
99

1010
const inputShapeRestrictions: ShapeSizeRestrictions = {
11-
minWidth: 60,
11+
minWidth: 38,
1212
minHeight: 38,
1313
maxWidth: -1,
1414
maxHeight: 38,

src/common/components/mock-components/front-components/textarea-shape.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import { useShapeProps } from '../../shapes/use-shape-props.hook';
88
import { useGroupShapeProps } from '../mock-components.utils';
99

1010
const textAreaShapeRestrictions: ShapeSizeRestrictions = {
11-
minWidth: 80,
12-
minHeight: 70,
11+
minWidth: 70,
12+
minHeight: 44,
1313
maxWidth: -1,
14-
maxHeight: 500,
15-
defaultWidth: 190,
16-
defaultHeight: 100,
14+
maxHeight: 120,
15+
defaultWidth: 200,
16+
defaultHeight: 55,
1717
};
1818

1919
export const getTextAreaSizeRestrictions = (): ShapeSizeRestrictions =>

0 commit comments

Comments
 (0)