@capillarytech/creatives-library 7.17.219 → 7.17.220

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@capillarytech/creatives-library",
3
3
  "author": "meharaj",
4
- "version": "7.17.219",
4
+ "version": "7.17.220",
5
5
  "description": "Capillary creatives ui",
6
6
  "main": "./index.js",
7
7
  "module": "./index.es.js",
@@ -50,7 +50,7 @@
50
50
  .hide{
51
51
  display: none;
52
52
  }
53
- .error{
53
+ .error-form-builder {
54
54
  color : #F34F56;
55
55
  }
56
56
 
@@ -2478,7 +2478,7 @@ class FormBuilder extends React.Component { // eslint-disable-line react/prefer-
2478
2478
  <TextArea
2479
2479
  id={val.id}
2480
2480
  placeholder={val.placeholder ? val.placeholder : ''}
2481
- className={`${ifError ? 'error' : ''}`}
2481
+ className={`${ifError ? 'error-form-builder' : ''}`}
2482
2482
  errorMessage={errorMessageText}
2483
2483
  label={val.label}
2484
2484
  autosize={val.autosize ? val.autosizeParams : false}