@veritree/ui 0.41.0 → 0.42.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": "@veritree/ui",
3
- "version": "0.41.0",
3
+ "version": "0.42.1",
4
4
  "description": "veritree ui library",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -19,7 +19,7 @@
19
19
  : isPrimary
20
20
  ? 'bg-secondary-400 hover:bg-secondary-500 focus:bg-secondary-600 active:bg-secondary-600 border-transparent text-white disabled:bg-gray-200 disabled:text-gray-400'
21
21
  : isSecondary
22
- ? 'border-gray-400 bg-white text-gray-700 hover:bg-gray-100 hover:bg-gray-200 active:bg-gray-200 disabled:border-gray-300 disabled:text-gray-400'
22
+ ? 'border-gray-400 bg-white text-gray-700 hover:bg-gray-100 focus:bg-gray-200 active:bg-gray-200 disabled:border-gray-300 disabled:text-gray-400'
23
23
  : isTertiary
24
24
  ? 'text-secondary-400 hover:text-secondary-500 focus:text-secondary-600 active:text-secondary-600 border-transparent disabled:text-gray-400'
25
25
  : isIcon
@@ -2,7 +2,7 @@
2
2
  <component
3
3
  :is="as"
4
4
  :id="id"
5
- :class="[headless ? 'dialog-body' : 'h-full flex-1 overflow-y-auto']"
5
+ :class="[headless ? 'dialog-body' : 'h-full flex-1']"
6
6
  >
7
7
  <slot></slot>
8
8
  </component>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <legend class="text-body mb-1 block w-full font-normal text-gray-500">
2
+ <legend class="text-body mb-2 block w-full font-normal text-gray-500">
3
3
  <slot />
4
4
  </legend>
5
5
  </template>