@steroidsjs/bootstrap 3.0.0-beta.54 → 3.0.0-beta.55

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.
@@ -65,9 +65,9 @@ function InputFieldView(props) {
65
65
  tabIndex: -1
66
66
  }),
67
67
  props.maskProps
68
- ? (React.createElement("input", __assign({ onBlur: props.onBlur, onFocus: props.onFocus, onMouseDown: props.onMouseDown, className: bem(bem.element('input', {
68
+ ? (React.createElement("input", { onBlur: props.onBlur, onFocus: props.onFocus, onMouseDown: props.onMouseDown, className: bem(bem.element('input', {
69
69
  size: props.size
70
- })) }, props.inputProps, { type: props.type, placeholder: props.placeholder, disabled: props.disabled, required: props.required, id: props.id })))
70
+ })), type: props.type, placeholder: props.placeholder, disabled: props.disabled, required: props.required, id: props.id }))
71
71
  : (React.createElement("input", __assign({ className: bem(bem.element('input', {
72
72
  size: props.size
73
73
  })) }, props.inputProps, { onChange: function (e) { return props.input.onChange(e.target.value); }, type: props.type, placeholder: props.placeholder, disabled: props.disabled, required: props.required, id: props.id }))),
@@ -18,7 +18,7 @@
18
18
 
19
19
  &__body {
20
20
  margin: auto;
21
- overflow: hidden;
21
+ overflow: visible;
22
22
  background-color: $element-background-color;
23
23
  color: $text-color;
24
24
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steroidsjs/bootstrap",
3
- "version": "3.0.0-beta.54",
3
+ "version": "3.0.0-beta.55",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "author": "Vladimir Kozhin <hello@kozhindev.com>",