@redseed/redseed-ui-vue3 2.17.6 → 2.18.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/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './src/components/Avatar'
1
2
  export * from './src/components/Badge'
2
3
  export * from './src/components/BodyText'
3
4
  export * from './src/components/Breadcrumbs'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-vue3",
3
- "version": "2.17.6",
3
+ "version": "2.18.0",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -0,0 +1,12 @@
1
+ <script setup>
2
+ </script>
3
+ <template>
4
+ <div class="rsui-avatar-circle">
5
+ <slot></slot>
6
+ </div>
7
+ </template>
8
+ <style scoped lang='scss'>
9
+ .rsui-avatar-circle {
10
+ @apply w-full h-full rounded-full bg-gray-200 flex items-center justify-center text-gray-500;
11
+ }
12
+ </style>
@@ -0,0 +1,5 @@
1
+ import AvatarText from './AvatarText.vue'
2
+
3
+ export {
4
+ AvatarText,
5
+ }