@redseed/redseed-ui-vue3 2.15.0 → 2.15.2

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": "@redseed/redseed-ui-vue3",
3
- "version": "2.15.0",
3
+ "version": "2.15.2",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,6 +21,10 @@ const props = defineProps({
21
21
  type: Number,
22
22
  default: 1
23
23
  },
24
+ pagination: {
25
+ type: Boolean,
26
+ default: true
27
+ }
24
28
  })
25
29
 
26
30
  const cardGroupElement = ref(null)
@@ -68,7 +72,7 @@ const showNotFoundMessage = computed(() => !props.totalItems && props.controlApp
68
72
  </script>
69
73
  <template>
70
74
  <div ref="cardGroupElement" :class="cardGroupClasses">
71
- <div class="rsui-card-group__pagination">
75
+ <div class="rsui-card-group__pagination" v-if="pagination">
72
76
  <Pagination v-if="totalItems > perPage"
73
77
  :totalItems="totalItems"
74
78
  :perPage="perPage"
@@ -15,7 +15,6 @@ const isClosed = ref(props.closed)
15
15
 
16
16
  function close() {
17
17
  isClosed.value = true
18
-
19
18
  emit('close')
20
19
  }
21
20
  </script>
@@ -13,6 +13,6 @@
13
13
  </template>
14
14
  <style lang="scss">
15
15
  .rsui-section-heading {
16
- @apply text-lg flex justify-between items-center;
16
+ @apply text-lg flex justify-between items-center font-semibold;
17
17
  }
18
18
  </style>