@monoui/vuejs 1.1.24 → 1.1.26

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": "@monoui/vuejs",
3
- "version": "1.1.24",
3
+ "version": "1.1.26",
4
4
  "description": "This project will contain MonoFor UI Framework",
5
5
  "main": "./dist/main.js",
6
6
  "repository": "git@gitlab.com:monoui/vuejs.git",
@@ -234,7 +234,11 @@
234
234
  </slot>
235
235
  <slot name="pagination-center" v-bind="settings">
236
236
  <div>
237
- <span v-show="!isDataEmpty">
237
+ <span
238
+ v-show="
239
+ settings.totalItemCount && !refreshButton
240
+ "
241
+ >
238
242
  {{ settings.totalItemCount }} rows
239
243
  </span>
240
244
  <mui-button
@@ -245,7 +249,10 @@
245
249
  @click="refresh"
246
250
  >
247
251
  <i class="fas fa-sync"></i>
248
- Refresh</mui-button
252
+ Refresh
253
+ <span v-show="settings.totalItemCount">
254
+ {{ settings.totalItemCount }} Rows
255
+ </span></mui-button
249
256
  >
250
257
  </div>
251
258
  </slot>
@@ -354,7 +361,7 @@ export default {
354
361
  refreshButton: {
355
362
  type: Boolean,
356
363
  required: false,
357
- default: false
364
+ default: true
358
365
  },
359
366
  pagination: {
360
367
  type: Object,