@nixweb/nixloc-ui 0.0.32 → 0.0.36

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.32",
3
+ "version": "0.0.36",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -18,6 +18,7 @@
18
18
  "vue2-datepicker": "^2.13.0",
19
19
  "vue2-editor": "^2.6.6",
20
20
  "vue-loading-template": "^1.3.0",
21
+ "vue-moment": "^4.0.0",
21
22
  "vue-multiselect": "^2.1.0",
22
23
  "vue-numeric": "^2.4.1",
23
24
  "vue-toasted": "^1.1.28",
@@ -65,6 +65,7 @@ export default {
65
65
  <style scoped>
66
66
  .c-div-botao {
67
67
  display: inline-block;
68
+ margin-left: 5px;
68
69
  }
69
70
 
70
71
  .titulo {
@@ -49,7 +49,7 @@ export default {
49
49
  };
50
50
  </script>
51
51
 
52
- <style lang="scss" scoped>
52
+ <style scoped>
53
53
  .carregando {
54
54
  position: absolute;
55
55
  left: 50%;
@@ -196,6 +196,11 @@ export default {
196
196
  </script>
197
197
 
198
198
  <style scoped>
199
+
200
+ table {
201
+ border-collapse: initial !important;
202
+ }
203
+
199
204
  table tbody tr td {
200
205
  max-width: 350px;
201
206
  }
@@ -207,6 +212,7 @@ table tbody tr td {
207
212
  padding-top: 7px !important;
208
213
  padding-bottom: 5px !important;
209
214
  padding-right: 5px !important;
215
+ border-bottom: 0px !important;
210
216
  }
211
217
 
212
218
  .td-checkbox {
@@ -1,14 +1,15 @@
1
1
  export default class Token {
2
+
2
3
  tokenHeaders() {
3
4
  return {
4
5
  "Content-Type": "application/json",
5
- Authorization: "Bearer " + sessionStorage.token
6
+ Authorization: "Bearer " + JSON.parse(sessionStorage.vuex).usuario.usuarioLogado.token
6
7
  };
7
8
  }
8
9
  tokenHeadersFormData() {
9
10
  return {
10
11
  "Content-Type": "multipart/form-data",
11
- Authorization: "Bearer " + sessionStorage.token
12
+ Authorization: "Bearer " + JSON.parse(sessionStorage.vuex).usuario.usuarioLogado.token
12
13
  };
13
14
  }
14
15
  }
@@ -1,6 +1,7 @@
1
1
  import axios from "@/config/axios";
2
2
  import dicas from "@/config/dicas";
3
- import Token from "@/config/token";
3
+ import Token from "@nixweb/nixloc-ui/src/config/token";
4
+
4
5
 
5
6
  export default {
6
7
  namespaced: true,