@nixweb/nixloc-ui 0.0.204 → 0.0.205
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 +1 -1
- package/src/component/forms/Color.vue +12 -0
- package/src/component/shared/Collapse.vue +4 -17
- package/src/component/shared/ExportExcel.vue +2 -7
- package/src/component/shared/Report.vue +0 -2
- package/src/component/shared/TableItem.vue +7 -0
- package/src/component/template/ViewTemplateImportFile.vue +1 -1
package/package.json
CHANGED
|
@@ -36,3 +36,15 @@ export default {
|
|
|
36
36
|
},
|
|
37
37
|
};
|
|
38
38
|
</script>
|
|
39
|
+
<style>
|
|
40
|
+
.vc-chrome-fields .vc-input__input {
|
|
41
|
+
font-size: 14px !important;
|
|
42
|
+
color: #333;
|
|
43
|
+
width: 100%;
|
|
44
|
+
border-radius: 2px;
|
|
45
|
+
border: none;
|
|
46
|
+
box-shadow: inset 0 0 0 1px #dadada;
|
|
47
|
+
height: 21px;
|
|
48
|
+
text-align: center;
|
|
49
|
+
}
|
|
50
|
+
</style>
|
|
@@ -29,29 +29,16 @@
|
|
|
29
29
|
<b-row>
|
|
30
30
|
<b-col sm="12">
|
|
31
31
|
<div class="text-center">
|
|
32
|
-
<Button
|
|
33
|
-
|
|
34
|
-
:title="buttonShow.title"
|
|
35
|
-
:classIcon="buttonShow.icon"
|
|
36
|
-
:type="buttonShow.type"
|
|
37
|
-
size="small"
|
|
38
|
-
:clicked="show"
|
|
39
|
-
/>
|
|
32
|
+
<Button v-if="!showCollapse" :title="buttonShow.title" :classIcon="buttonShow.icon" :type="buttonShow.type"
|
|
33
|
+
size="small" :clicked="show" />
|
|
40
34
|
</div>
|
|
41
35
|
</b-col>
|
|
42
36
|
</b-row>
|
|
43
37
|
<b-row>
|
|
44
38
|
<b-col>
|
|
45
39
|
<div class="text-center">
|
|
46
|
-
<Button
|
|
47
|
-
|
|
48
|
-
key="hideCollapse"
|
|
49
|
-
:title="buttonHide.title"
|
|
50
|
-
:classIcon="buttonHide.icon"
|
|
51
|
-
:type="buttonHide.type"
|
|
52
|
-
size="small"
|
|
53
|
-
:clicked="hide"
|
|
54
|
-
/>
|
|
40
|
+
<Button v-if="showCollapse" key="hideCollapse" :title="buttonHide.title" :classIcon="buttonHide.icon"
|
|
41
|
+
:type="buttonHide.type" size="small" :clicked="hide" />
|
|
55
42
|
</div>
|
|
56
43
|
</b-col>
|
|
57
44
|
</b-row>
|
|
@@ -1,12 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
|
-
<download-excel
|
|
4
|
-
:
|
|
5
|
-
:data="data"
|
|
6
|
-
:before-finish="exportFinished"
|
|
7
|
-
worksheet="Planilha"
|
|
8
|
-
:name="`${fileName}.xls`"
|
|
9
|
-
>
|
|
3
|
+
<download-excel :fields="column" :data="data" :before-finish="exportFinished" worksheet="Planilha"
|
|
4
|
+
:name="`${fileName}.xls`">
|
|
10
5
|
<i class="fas fa-file-excel"></i>
|
|
11
6
|
</download-excel>
|
|
12
7
|
</div>
|
|
@@ -68,8 +68,6 @@ import TotalizationReport from "../shared/TotalizationReport.vue";
|
|
|
68
68
|
import ExportExcel from "@nixweb/nixloc-ui/src/component/shared/ExportExcel";
|
|
69
69
|
import print from "vue-print-nb";
|
|
70
70
|
|
|
71
|
-
import { mapState, mapMutations, mapActions } from "vuex";
|
|
72
|
-
|
|
73
71
|
export default {
|
|
74
72
|
directives: {
|
|
75
73
|
print,
|
|
@@ -133,7 +133,7 @@ import ViewTemplateConfiguration from "@nixweb/nixloc-ui/src/component/template/
|
|
|
133
133
|
import TableImport from "@nixweb/nixloc-ui/src/component/shared/TableImport.vue";
|
|
134
134
|
import ListNotifications from "@nixweb/nixloc-ui/src/component/shared/ListNotifications.vue";
|
|
135
135
|
|
|
136
|
-
import {
|
|
136
|
+
import { mapActions, mapMutations, mapGetters } from "vuex";
|
|
137
137
|
|
|
138
138
|
export default {
|
|
139
139
|
name: "ViewTemplateImportFileView",
|