@veritree/ui 0.97.0 → 0.97.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.97.0",
3
+ "version": "0.97.1",
4
4
  "description": "veritree ui library",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -186,6 +186,8 @@ export default {
186
186
  classes.push(this.isIcon ? 'h-8 w-8' : 'button--large');
187
187
  } else if (this.size === 'small') {
188
188
  classes.push(this.isIcon ? 'h-6 w-6 p-1' : 'button--small');
189
+ } else if (this.size === 'medium') {
190
+ classes.push(this.isIcon ? 'h-8 w-8' : 'button--medium');
189
191
  }
190
192
 
191
193
  if (this.version && this.version !== '1') {