@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.
|
|
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",
|
|
@@ -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 {
|
package/src/config/token.js
CHANGED
|
@@ -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
|
}
|