@veritree/ui 0.65.0 → 0.65.2

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.
@@ -73,7 +73,7 @@ export const formControlStyleMixin = {
73
73
  return [
74
74
  this.headless
75
75
  ? `${this.name}`
76
- : 'leading-0 bg-white disabled:bg-gray-200 flex w-full max-w-full relative appearance-none placeholder:font-light placeholder:text-gray-500 items-center justify-between rounded border border-solid px-3 py-2 font-inherit text-sm text-inherit file:hidden focus:border-gray-600 focus:placeholder:text-gray-400',
76
+ : 'leading-0 bg-white disabled:bg-gray-200 flex w-full max-w-full relative appearance-none placeholder:font-light placeholder:text-gray-500 items-center justify-between rounded border border-solid px-3 py-2 font-inherit text-inherit file:hidden focus:border-gray-600 focus:placeholder:text-gray-400',
77
77
  // variant styles
78
78
  this.headless
79
79
  ? `${this.name}--${this.variant}`
@@ -87,7 +87,7 @@ export const formControlStyleMixin = {
87
87
  ? null
88
88
  : this.name === 'textarea'
89
89
  ? 'min-h-10' // limit it because input type number height can be different from other input types
90
- : this.size === 'small' ? 'h-8' : 'h-10',
90
+ : this.size === 'small' ? 'h-8 text-sm' : 'h-10 text-base',
91
91
  // disabled styles
92
92
  this.disabled
93
93
  ? this.headless
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veritree/ui",
3
- "version": "0.65.0",
3
+ "version": "0.65.2",
4
4
  "description": "veritree ui library",
5
5
  "type": "module",
6
6
  "main": "index.js",