@nixweb/nixloc-ui 0.0.83 → 0.0.84

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.83",
3
+ "version": "0.0.84",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -118,6 +118,10 @@ export default {
118
118
  cadastrarNovoTitulo: String,
119
119
  cadastrarNovoLargura: Number,
120
120
  cadastrarNovoAltura: Number,
121
+ marcarFormSujo: {
122
+ type: Boolean,
123
+ default: true,
124
+ },
121
125
  },
122
126
  components: {
123
127
  Multiselect,
@@ -169,11 +173,13 @@ export default {
169
173
  "insereValidacao",
170
174
  "removeValidacao",
171
175
  "reiniciaValidacao",
176
+ "insereFormSujo",
172
177
  ]),
173
178
  aoAbrir() {
174
179
  this.obterTodos();
175
180
  },
176
181
  aoSelecionar(value) {
182
+ if (this.marcarFormSujo) this.insereFormSujo(true);
177
183
  this.$emit("input", value);
178
184
  if (this.alterou) this.alterou();
179
185
  if (this.campoAlvo) {
@@ -301,7 +307,7 @@ div.depois-lista {
301
307
  border-bottom: 1px solid #d6dadf;
302
308
  border-radius: 0px !important;
303
309
  margin-bottom: 20px;
304
- }
310
+ }
305
311
 
306
312
  .selecione-invalido {
307
313
  border-bottom: 1px solid #ff5454;
@@ -15,7 +15,7 @@
15
15
  <div class="div-icone lado-a-lado">
16
16
  <i class="fas fa-chart-area icone-dash" :style="'color:' + corBase"></i>
17
17
  </div>
18
- <div class="lado-a-lado titulo">Dashboard</div>
18
+ <div class="titulo">Dashboard</div>
19
19
  </a>
20
20
  </li>
21
21
 
@@ -28,10 +28,10 @@
28
28
  <div class="div-icone lado-a-lado">
29
29
  <i :class="item.icone" class="icone" :style="'color:' + corBase"></i>
30
30
  </div>
31
- <div class="lado-a-lado titulo">{{ item.modulo }}</div>
32
- <div class="lado-a-lado seta menu__arrow-icon">
31
+ <div class="titulo">{{ item.titulo }}</div>
32
+ <!-- <div class="lado-a-lado seta menu__arrow-icon">
33
33
  <i class="fas fa-angle-right"></i>
34
- </div>
34
+ </div> -->
35
35
  </a>
36
36
  </li>
37
37
  </ul>
@@ -153,20 +153,23 @@ export default {
153
153
  width: 35px;
154
154
  height: 35px;
155
155
  padding-top: 5px;
156
+ margin-left: 25px;
156
157
  }
157
158
 
158
159
  .icone-fechar {
159
160
  margin-right: 20px;
160
161
  }
161
162
  .icone {
162
- font-size: 18px;
163
+ font-size: 20px;
163
164
  }
164
165
  .icone-dash {
165
- font-size: 20px;
166
+ font-size: 22px;
166
167
  }
167
168
  .titulo {
168
- font-size: 14px;
169
+ font-size: 13px;
169
170
  font-weight: 400;
171
+ margin-top: -6px;
172
+ text-align: center;
170
173
  }
171
174
  .titulo-sub {
172
175
  margin-left: 5px;
@@ -13,7 +13,7 @@ export default {
13
13
  .moldura {
14
14
  border: 1px solid #dbdfe9;
15
15
  background-color: white;
16
- border-radius: 6px;
16
+ border-radius: 3px;
17
17
  padding: 15px;
18
18
  }
19
19
  </style>
@@ -98,7 +98,7 @@ export default {
98
98
  <style scoped>
99
99
  .c-container {
100
100
  margin: auto;
101
- padding-left: 220px;
101
+ padding-left: 110px;
102
102
  max-width: 1400px;
103
103
  }
104
104
 
@@ -29,7 +29,7 @@ export default {
29
29
  width: 100%;
30
30
  position: fixed;
31
31
  top: 0;
32
- left: 220px;
32
+ left: 100px;
33
33
  z-index: 20;
34
34
  }
35
35
  </style>