@modul/mbui 0.0.1-beta-pv-50534-962f5f9d → 0.0.1-beta-pv-50534-fc27fe54

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modul/mbui",
3
- "version": "0.0.1-beta-pv-50534-962f5f9d",
3
+ "version": "0.0.1-beta-pv-50534-fc27fe54",
4
4
  "packageManager": "yarn@3.5.1",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -16,6 +16,7 @@ const InputClearable = React.forwardRef<HTMLInputElement, IInputProps>(
16
16
  setInputValue('')
17
17
  }
18
18
 
19
+ //TODO: fix style
19
20
  return (
20
21
  <div className="input_wrap_clear">
21
22
  <IMaskInput
@@ -29,6 +30,7 @@ const InputClearable = React.forwardRef<HTMLInputElement, IInputProps>(
29
30
  <a
30
31
  className="input_clear icon-cancel"
31
32
  onClick={handleClearClick}
33
+ style={{ visibility: 'initial' }}
32
34
  />
33
35
  )}
34
36
  </div>
@@ -1,4 +1,4 @@
1
1
  import Input from './Input'
2
- import InputClearable from './Input'
2
+ import InputClearable from './InputClearable'
3
3
 
4
4
  export { Input, InputClearable }