@nixweb/nixloc-ui 0.0.252 → 0.0.253

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.252",
3
+ "version": "0.0.253",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -26,7 +26,7 @@
26
26
  <i class="icon-dropdown" :class="item.classIcon"></i>
27
27
  </b-col>
28
28
  <b-col sm="10">
29
- <span class="title"> {{ item.title }}</span>
29
+ <span class="title-dropdown"> {{ item.title }}</span>
30
30
  </b-col>
31
31
  </b-row>
32
32
  </div>
@@ -8,17 +8,8 @@
8
8
  <br />
9
9
  </b-col>
10
10
  <b-col xs="6" sm="6" md="6" lg="4" xl="4">
11
- <VueToggles
12
- height="23"
13
- width="60"
14
- checkedText="Sim"
15
- uncheckedText="Não"
16
- :checkedBg="color"
17
- uncheckedBg="lightgrey"
18
- :disabled="disabled"
19
- :value="value"
20
- @click="clicked"
21
- />
11
+ <VueToggles height="23" width="60" checkedText="Sim" uncheckedText="Não" :checkedBg="color"
12
+ uncheckedBg="lightgrey" :disabled="disabled" :value="value" @click="clicked" />
22
13
  </b-col>
23
14
  </b-row>
24
15
  </div>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div class="div-header">
3
- <div class="title">Relatório {{ $route.params.name }}</span></div>
3
+ <div class="title-report-header">Relatório {{ $route.params.name }}</span></div>
4
4
  <div class="side-by-side div-tag" v-for="tag in tags" :key="tag.id">
5
5
  <span>{{ tag.title }}</span> <span>{{ tag.value }}</span>
6
6
  <span>,</span>
@@ -30,7 +30,7 @@ export default {
30
30
  margin-right: 10px;
31
31
  }
32
32
 
33
- .title {
33
+ .title-report-header {
34
34
  font-size: 18px;
35
35
  }
36
36
  </style>
@@ -2,14 +2,14 @@
2
2
  <div>
3
3
  <hr class="hr-report" />
4
4
  <div class="text-right">
5
- <span class="title"> Total de Registro(s) </span>
6
- <span class="title value"> {{ totalRecords }} </span>
5
+ <span class="title-report-header"> Total de Registro(s) </span>
6
+ <span class="title-report-header value-report-header"> {{ totalRecords }} </span>
7
7
  </div>
8
8
  <div class="text-right" v-for="item in totalization" :key="item.title">
9
9
  <span :class="convertName(item[0]).classCss">
10
- <span class="title">
10
+ <span class="title-report-header">
11
11
  {{ convertName(item[0]).title }}
12
- <span class="title value">
12
+ <span class="title-report-header value-report-header">
13
13
  <span v-if="convertName(item[0]).type == 'currency'">
14
14
  {{ item[1] | currency }}
15
15
  </span>
@@ -23,7 +23,7 @@
23
23
  </div>
24
24
  </template>
25
25
  <script>
26
- import { mapState, mapGetters, mapActions, mapMutations } from "vuex";
26
+ import { mapState } from "vuex";
27
27
 
28
28
  export default {
29
29
  name: "TotalizationReport",
@@ -43,12 +43,12 @@ export default {
43
43
  </script>
44
44
 
45
45
  <style scoped>
46
- .title {
46
+ .title-report-header {
47
47
  font-size: 15px;
48
48
  font-weight: 400;
49
49
  }
50
50
 
51
- .value {
51
+ .value-report-header {
52
52
  margin-left: 50px;
53
53
  }
54
54