@nixweb/nixloc-ui 0.0.148 → 0.0.149

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.148",
3
+ "version": "0.0.149",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -234,8 +234,9 @@ img {
234
234
  margin-left: 10px;
235
235
  padding: 5px;
236
236
  padding-bottom: 1px !important;
237
- background-color: white !important;
237
+ background-color: #ebedf0 !important;
238
238
  border: 1px solid #e8eaed;
239
239
  border-radius: 12px !important;
240
240
  }
241
+
241
242
  </style>
@@ -26,7 +26,7 @@
26
26
  import ScrollBar from "@nixweb/nixloc-ui/src/component/layout/ScrollBar.vue";
27
27
 
28
28
  export default {
29
- name: "ListErrorImport",
29
+ name: "ListNotifications",
30
30
  props: {
31
31
  listError: Array,
32
32
  },
@@ -116,7 +116,7 @@
116
116
  :height="750"
117
117
  v-show="showModal('listError')"
118
118
  >
119
- <ListErrorImport :listError="listError" />
119
+ <ListNotifications :listError="listError" />
120
120
  </Modal>
121
121
  </div>
122
122
  </template>
@@ -131,7 +131,7 @@ import Alert from "@nixweb/nixloc-ui/src/component/layout/Alert";
131
131
  import Modal from "@nixweb/nixloc-ui/src/component/forms/Modal";
132
132
 
133
133
  import TableImport from "@nixweb/nixloc-ui/src/component/shared/TableImport.vue";
134
- import ListErrorImport from "@nixweb/nixloc-ui/src/component/shared/ListErrorImport.vue";
134
+ import ListNotifications from "@nixweb/nixloc-ui/src/component/shared/ListNotifications.vue";
135
135
 
136
136
  import { mapState, mapActions, mapMutations, mapGetters } from "vuex";
137
137
 
@@ -143,7 +143,7 @@ export default {
143
143
  Molded,
144
144
  FileUpload,
145
145
  Loading,
146
- ListErrorImport,
146
+ ListNotifications,
147
147
  TableImport,
148
148
  Alert,
149
149
  Modal,