@nixweb/nixloc-ui 0.0.276 → 0.0.277

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.276",
3
+ "version": "0.0.277",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -1,17 +1,16 @@
1
1
  <template>
2
2
  <div class="filter-horizontal">
3
- <b-row>
4
- <b-col :sm="showTotalPerPage ? 10 : 12"></b-col>
5
- <b-col xs="12" sm="12" md="12" lg="2" xl="2" v-if="showTotalPerPage">
6
- <SelectStatic title="Mostrar" fieldTarget="totalPerPage" :initialValue="initialValue" :data="[
7
- { content: '10', id: 10 },
3
+ <div class="side-by-side div-title">
4
+ <span class="title-page"> Mostrar</span>
5
+ </div>
6
+ <div class="side-by-side div-select">
7
+ <SelectStatic fieldTarget="totalPerPage" :initialValue="initialValue" :data="[
8
8
  { content: '20', id: 20 },
9
- { content: '30', id: 30 },
10
9
  { content: '50', id: 50 },
11
10
  { content: '100', id: 100 },
12
11
  ]" v-model="totalPerPage" />
13
- </b-col>
14
- </b-row>
12
+ </div>
13
+
15
14
  </div>
16
15
  </template>
17
16
 
@@ -58,6 +57,21 @@ export default {
58
57
 
59
58
  <style scoped>
60
59
  .filter-horizontal {
61
- margin-bottom: 5px;
60
+ display: flex;
61
+ justify-content: flex-end;
62
+ margin-bottom: -30px;
63
+ }
64
+
65
+ .div-title {
66
+ margin-right: 20px;
67
+ margin-top: 35px;
68
+ }
69
+
70
+ .div-select {
71
+ width: 100px;
72
+ }
73
+
74
+ .title-page {
75
+ font-size: 13px;
62
76
  }
63
77
  </style>
@@ -8,9 +8,8 @@
8
8
  <div slot="content-filter-horizontal">
9
9
  <slot name="content-filter-horizontal"></slot>
10
10
  </div>
11
- </HorizontalFilter>
11
+ </HorizontalFilter> -->
12
12
  <TableTotalPerPage />
13
- -->
14
13
  </div>
15
14
  </b-col>
16
15
  </b-row>