@hipay/hipay-material-ui 3.5.1 → 3.6.0
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/HiCell/CellTextStyled.js +2 -1
- package/HiForm/HiUploadField.js +6 -3
- package/HiPaymentMeans/HiPaymentMeans.js +341 -369
- package/HiSelect/HiDynamicSelectField.js +18 -5
- package/HiSelect/HiNestedSelect.js +0 -1
- package/HiSelect/HiNestedSelectField.js +18 -5
- package/HiSelect/HiSelect.js +0 -1
- package/HiSelect/HiSelectField.js +18 -5
- package/HiSelect/HiSelectInput.js +1 -3
- package/HiSelect/HiSuggestSelect.js +0 -1
- package/HiSelect/HiSuggestSelectField.js +18 -5
- package/es/HiCell/CellTextStyled.js +2 -1
- package/es/HiForm/HiUploadField.js +6 -3
- package/es/HiPaymentMeans/HiPaymentMeans.js +341 -369
- package/es/HiSelect/HiDynamicSelectField.js +18 -5
- package/es/HiSelect/HiNestedSelect.js +0 -1
- package/es/HiSelect/HiNestedSelectField.js +18 -5
- package/es/HiSelect/HiSelect.js +0 -1
- package/es/HiSelect/HiSelectField.js +18 -5
- package/es/HiSelect/HiSelectInput.js +1 -3
- package/es/HiSelect/HiSuggestSelect.js +0 -1
- package/es/HiSelect/HiSuggestSelectField.js +18 -5
- package/es/hi-svg-icons/HiAccount.js +1 -1
- package/es/hi-svg-icons/HiBusiness.js +52 -0
- package/es/hi-svg-icons/index.js +8 -0
- package/hi-svg-icons/HiAccount.js +1 -1
- package/hi-svg-icons/HiBusiness.js +52 -0
- package/hi-svg-icons/index.js +8 -0
- package/package.json +2 -2
    
        package/HiCell/CellTextStyled.js
    CHANGED
    
    
    
        package/HiForm/HiUploadField.js
    CHANGED
    
    | @@ -47,7 +47,8 @@ function (_React$PureComponent) { | |
| 47 47 | 
             
                      helperText = _this$props.helperText,
         | 
| 48 48 | 
             
                      values = _this$props.values,
         | 
| 49 49 | 
             
                      fullWidth = _this$props.fullWidth,
         | 
| 50 | 
            -
                       | 
| 50 | 
            +
                      required = _this$props.required,
         | 
| 51 | 
            +
                      others = (0, _objectWithoutProperties2.default)(_this$props, ["className", "label", "helperIcon", "helperText", "values", "fullWidth", "required"]);
         | 
| 51 52 | 
             
                  var empty = true;
         | 
| 52 53 | 
             
                  var error = false;
         | 
| 53 54 | 
             
                  var errorText = '';
         | 
| @@ -69,7 +70,8 @@ function (_React$PureComponent) { | |
| 69 70 | 
             
                    error: error,
         | 
| 70 71 | 
             
                    helperIcon: helperIcon,
         | 
| 71 72 | 
             
                    helperText: helperText,
         | 
| 72 | 
            -
                    fullWidth: fullWidth
         | 
| 73 | 
            +
                    fullWidth: fullWidth,
         | 
| 74 | 
            +
                    required: required
         | 
| 73 75 | 
             
                  }, _react.default.createElement(_HiUpload.default, (0, _extends2.default)({
         | 
| 74 76 | 
             
                    values: values
         | 
| 75 77 | 
             
                  }, others)));
         | 
| @@ -82,7 +84,8 @@ HiUploadField.defaultProps = { | |
| 82 84 | 
             
              helperText: '',
         | 
| 83 85 | 
             
              helperIcon: false,
         | 
| 84 86 | 
             
              seeFile: true,
         | 
| 85 | 
            -
              fullWidth: false
         | 
| 87 | 
            +
              fullWidth: false,
         | 
| 88 | 
            +
              required: true
         | 
| 86 89 | 
             
            };
         | 
| 87 90 | 
             
            var _default = HiUploadField;
         | 
| 88 91 | 
             
            exports.default = _default;
         |