quasar-ui-sellmate-ui-kit 3.14.33 → 3.14.35

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": "quasar-ui-sellmate-ui-kit",
3
- "version": "3.14.33",
3
+ "version": "3.14.35",
4
4
  "author": "Sellmate Dev Team <dev@sellmate.co.kr>",
5
5
  "description": "Sellmate UI Kit",
6
6
  "license": "MIT",
@@ -77,7 +77,10 @@
77
77
  </template>
78
78
  </q-table>
79
79
  <div
80
- v-if="paginationModel.rowsPerPage !== 0 && ((!hideBottom && pagesNumber > 1) || showBottom)"
80
+ v-if="
81
+ paginationModel.rowsPerPage !== 0 &&
82
+ ((!hideBottom && pagesNumber > 1) || showBottom || usePerPageSelect)
83
+ "
81
84
  class="bg-grey_05 s-border-radius-sm s-border-top-none s-border-grey_30 s-pagination-wrapper relative-position"
82
85
  >
83
86
  <s-pagination
@@ -91,7 +94,8 @@
91
94
  v-model="paginationModel.rowsPerPage"
92
95
  emit-value
93
96
  map-options
94
- class="absolute s-width-120 rows-per-page"
97
+ class="absolute rows-per-page"
98
+ :class="rowsPerPageClass"
95
99
  @update:model-value="updateRowsPerPage"
96
100
  />
97
101
  </div>
@@ -191,6 +195,10 @@
191
195
  { label: '200개씩 보기', value: 200 },
192
196
  ],
193
197
  },
198
+ rowsPerPageClass: {
199
+ type: String,
200
+ default: '',
201
+ },
194
202
  },
195
203
  setup(props, { emit, attrs }) {
196
204
  const tablePagination = ref(props.pagination);
@@ -608,7 +616,8 @@
608
616
  }
609
617
  }
610
618
  .rows-per-page {
611
- right: 20px;
619
+ width: 128px;
620
+ right: 50px;
612
621
  top: 50%;
613
622
  transform: translateY(-50%);
614
623
  }