@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nixweb/nixloc-ui",
3
- "version": "0.0.82",
3
+ "version": "0.0.83",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -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: 34px;
301
- border-bottom: 1px solid #d6d6d6;
302
- border-radius: 2px !important;
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;
@@ -39,7 +39,7 @@ export default {
39
39
 
40
40
  <style scoped>
41
41
  .barra {
42
- background-color: #fafafc;
42
+ background-color: white;
43
43
  position: fixed;
44
44
  width: 100%;
45
45
  overflow: hidden;