@redseed/redseed-ui-vue3 7.3.0 → 7.4.0

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.0",
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
+ }
@@ -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
+ }