@nixweb/nixloc-ui 0.0.82 → 0.0.83
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
|
@@ -28,6 +28,10 @@ export default {
|
|
|
28
28
|
type: Boolean,
|
|
29
29
|
default: false,
|
|
30
30
|
},
|
|
31
|
+
marcarFormSujo: {
|
|
32
|
+
type: Boolean,
|
|
33
|
+
default: true,
|
|
34
|
+
},
|
|
31
35
|
},
|
|
32
36
|
data() {
|
|
33
37
|
return {
|
|
@@ -40,7 +44,7 @@ export default {
|
|
|
40
44
|
methods: {
|
|
41
45
|
...mapMutations("validation", ["insereFormSujo"]),
|
|
42
46
|
executar(event) {
|
|
43
|
-
this.insereFormSujo(true);
|
|
47
|
+
if (this.marcarFormSujo) this.insereFormSujo(true);
|
|
44
48
|
this.$emit("input", this.selecionado);
|
|
45
49
|
let self = this;
|
|
46
50
|
setTimeout(function () {
|
|
@@ -297,11 +297,11 @@ div.depois-lista {
|
|
|
297
297
|
}
|
|
298
298
|
|
|
299
299
|
.selecione {
|
|
300
|
-
height:
|
|
301
|
-
border-bottom: 1px solid #
|
|
302
|
-
border-radius:
|
|
300
|
+
height: 36px;
|
|
301
|
+
border-bottom: 1px solid #d6dadf;
|
|
302
|
+
border-radius: 0px !important;
|
|
303
303
|
margin-bottom: 20px;
|
|
304
|
-
}
|
|
304
|
+
}
|
|
305
305
|
|
|
306
306
|
.selecione-invalido {
|
|
307
307
|
border-bottom: 1px solid #ff5454;
|