bfg-common 1.4.782 → 1.4.783

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.
@@ -187,7 +187,7 @@ watch(isHide, (newValue) => {
187
187
  }
188
188
  })
189
189
  watch(
190
- props.showValidation,
190
+ () => props.showValidation,
191
191
  (newValue: boolean) => {
192
192
  isInitFieldValidation.value = newValue
193
193
  },
@@ -277,5 +277,22 @@ watch(
277
277
  }
278
278
  }
279
279
  }
280
+ .form-group {
281
+ &__input {
282
+ display: flex;
283
+ .form-validate {
284
+ svg {
285
+ width: 24px;
286
+ height: 24px;
287
+ }
288
+ }
289
+ input {
290
+ width: 100%;
291
+ }
292
+ &-error {
293
+ margin-top: 0;
294
+ }
295
+ }
296
+ }
280
297
  }
281
298
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.782",
4
+ "version": "1.4.783",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",