@redseed/redseed-ui-vue3 7.3.0 → 7.4.1

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": "7.3.0",
3
+ "version": "7.4.1",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/redseedtraining/redseed-ui",
@@ -12,8 +12,8 @@
12
12
  "license": "ISC",
13
13
  "dependencies": {
14
14
  "@heroicons/vue": "^2.2.0",
15
- "@vueuse/components": "^13.9.0",
16
- "@vueuse/core": "^13.9.0",
15
+ "@vueuse/components": "^14.0.0",
16
+ "@vueuse/core": "^14.0.0",
17
17
  "lodash": "^4.17.21",
18
18
  "lottie-web": "^5.13.0",
19
19
  "vue": "^3.5.22"
@@ -4,6 +4,7 @@ import ButtonSecondary from './ButtonSecondary.vue'
4
4
  import ButtonSecondaryFull from './ButtonSecondaryFull.vue'
5
5
  import ButtonTertiary from './ButtonTertiary.vue'
6
6
  import ButtonTertiaryFull from './ButtonTertiaryFull.vue'
7
+ import ButtonSlot from './ButtonSlot.vue'
7
8
 
8
9
  export {
9
10
  ButtonPrimary,
@@ -12,4 +13,5 @@ export {
12
13
  ButtonSecondaryFull,
13
14
  ButtonTertiary,
14
15
  ButtonTertiaryFull,
15
- }
16
+ ButtonSlot,
17
+ }
@@ -13,19 +13,22 @@ const showMetaModal = ref(false)
13
13
  <slot name="avatar"></slot>
14
14
  </div>
15
15
  <div class="rsui-page-header__title-text">
16
- <h1>
17
- <slot name="title"></slot>
18
- </h1>
16
+ <div class="rsui-page-header__title-text-container">
17
+ <h1>
18
+ <slot name="title"></slot>
19
+ </h1>
20
+ <div v-if="$slots.status" class="rsui-page-header__status">
21
+ <slot name="status"></slot>
22
+ </div>
23
+ </div>
19
24
  <div v-if="$slots.subtitle" class="rsui-page-header__subtitle">
20
25
  <slot name="subtitle"></slot>
21
26
  </div>
22
27
  </div>
23
28
  </div>
24
29
 
25
- <div v-if="$slots.status || $slots.actions" class="rsui-page-header__status-actions">
26
- <div v-if="$slots.status" class="rsui-page-header__status">
27
- <slot name="status"></slot>
28
- </div>
30
+ <div v-if="$slots.actions" class="rsui-page-header__status-actions">
31
+
29
32
 
30
33
  <div class="rsui-page-header__actions">
31
34
  <div v-if="$slots['meta-action-label'] && $slots['meta']" class="rsui-page-header__meta-action">
@@ -3,6 +3,7 @@ import PaginationItem from './PaginationItem.vue'
3
3
  import PaginationItemCollapsed from './PaginationItemCollapsed.vue'
4
4
  import PaginationItemNext from './PaginationItemNext.vue'
5
5
  import PaginationItemPrevious from './PaginationItemPrevious.vue'
6
+ import RecordCount from './RecordCount.vue'
6
7
 
7
8
  export {
8
9
  Pagination,
@@ -10,4 +11,5 @@ export {
10
11
  PaginationItemCollapsed,
11
12
  PaginationItemNext,
12
13
  PaginationItemPrevious,
13
- }
14
+ RecordCount,
15
+ }
@@ -1,7 +1,13 @@
1
1
  import Table from './Table.vue'
2
+ import Td from './Td.vue'
2
3
  import TdUser from './TdUser.vue'
4
+ import Th from './Th.vue'
5
+ import Tr from './Tr.vue'
3
6
 
4
7
  export {
5
8
  Table,
9
+ Td,
6
10
  TdUser,
7
- }
11
+ Th,
12
+ Tr,
13
+ }