@saasmakers/ui 0.1.105 → 0.1.106

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.
@@ -61,6 +61,9 @@ const statusColor = computed<BaseColor | undefined>(() => {
61
61
  else if (props.status === 'warning') {
62
62
  return 'orange'
63
63
  }
64
+ else {
65
+ return undefined
66
+ }
64
67
  })
65
68
 
66
69
  const finalIcon = computed(() => {
@@ -111,7 +111,7 @@ const status = computed(() => {
111
111
  if (validationMessage.value && !props.hideError) {
112
112
  return 'error'
113
113
  }
114
- else if (props.description) {
114
+ else {
115
115
  return 'default'
116
116
  }
117
117
  })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saasmakers/ui",
3
3
  "type": "module",
4
- "version": "0.1.105",
4
+ "version": "0.1.106",
5
5
  "private": false,
6
6
  "description": "Reusable Nuxt UI components for SaaS Makers projects",
7
7
  "license": "MIT",