@nixweb/nixloc-ui 0.0.84 → 0.0.85

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.84",
3
+ "version": "0.0.85",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -153,7 +153,7 @@ export default {
153
153
  width: 35px;
154
154
  height: 35px;
155
155
  padding-top: 5px;
156
- margin-left: 25px;
156
+ margin-left: 38px;
157
157
  }
158
158
 
159
159
  .icone-fechar {
@@ -170,6 +170,7 @@ export default {
170
170
  font-weight: 400;
171
171
  margin-top: -6px;
172
172
  text-align: center;
173
+ width: 100%;
173
174
  }
174
175
  .titulo-sub {
175
176
  margin-left: 5px;
@@ -23,7 +23,7 @@ import Painel from "@nixweb/nixloc-ui/src/component/layout/Painel";
23
23
  import SalvarCancelar from "@nixweb/nixloc-ui/src/component/shared/SalvarCancelar";
24
24
 
25
25
  export default {
26
- name: "InserirEditarModeloView",
26
+ name: "ModeloAdicionarModificarView",
27
27
  components: { Painel, SalvarCancelar },
28
28
  props: {
29
29
  painel: Object,
@@ -0,0 +1,36 @@
1
+ <template>
2
+ <div>
3
+ <slot name="conteudo-botoes"></slot>
4
+ <Pesquisa />
5
+ <br />
6
+ <ModeloLista :modeloLista="modeloLista" :botaoExcluir="botaoExcluir">
7
+ <div slot="conteudo-botoes-tabela-cabecalho">
8
+ <slot name="conteudo-botoes-tabela-cabecalho"></slot>
9
+ </div>
10
+ <div slot="conteudo-filtro-horizontal">
11
+ <slot name="conteudo-filtro-horizontal"></slot>
12
+ </div>
13
+ <div slot="conteudo-botoes-tabela">
14
+ <slot name="conteudo-botoes-tabela"></slot>
15
+ </div>
16
+ </ModeloLista>
17
+ </div>
18
+ </template>
19
+
20
+ <script>
21
+ import Pesquisa from "../shared/Pesquisa.vue";
22
+
23
+ import ModeloLista from "@nixweb/nixloc-ui/src/component/template/ModeloLista.vue";
24
+
25
+ export default {
26
+ name: "ModeloView",
27
+ components: { Pesquisa, ModeloLista },
28
+ props: {
29
+ modeloLista: Object,
30
+ botaoExcluir: {
31
+ type: Boolean,
32
+ default: true,
33
+ },
34
+ },
35
+ };
36
+ </script>