@veritree/ui 0.95.1 → 0.95.3

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": "@veritree/ui",
3
- "version": "0.95.1",
3
+ "version": "0.95.3",
4
4
  "description": "veritree ui library",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -150,11 +150,10 @@ export default {
150
150
 
151
151
  <style scoped type="postcss">
152
152
  div {
153
- scrollbar-width: 0;
153
+ scrollbar-width: none;
154
154
 
155
155
  &::-webkit-scrollbar {
156
- width: 0;
157
- height: 0;
156
+ display: none;
158
157
  }
159
158
  }
160
159
  </style>
@@ -10,7 +10,7 @@
10
10
  <slot>
11
11
  <!-- Default icons based on variant -->
12
12
  <IconCheck v-if="isSuccess" :class="iconColorClass" />
13
- <IconWarning v-else-if="isError" :class="iconColorClass" />
13
+ <IconWarning v-else-if="isError || isWarning" :class="iconColorClass" />
14
14
  <IconInfo v-else :class="iconColorClass" />
15
15
  </slot>
16
16
  </component>
@@ -63,7 +63,7 @@ export default {
63
63
 
64
64
  if (this.isSuccess) return 'text-secondary-200';
65
65
  if (this.isError) return 'text-error-500';
66
- if (this.isWarning) return 'text-warning-200';
66
+ if (this.isWarning) return 'text-warning-500';
67
67
 
68
68
  return 'h-5 w-5';
69
69
  },
@@ -167,7 +167,7 @@ export default {
167
167
  },
168
168
 
169
169
  dismiss() {
170
- this.visible = false;
170
+ // this.visible = false;
171
171
  this.$emit('close');
172
172
  },
173
173