@usssa/component-library 1.0.0-alpha.252 → 1.0.0-alpha.253

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Component Library v1.0.0-alpha.252
1
+ # Component Library v1.0.0-alpha.253
2
2
 
3
3
  **This library provides custom UI components for USSSA applications**
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usssa/component-library",
3
- "version": "1.0.0-alpha.252",
3
+ "version": "1.0.0-alpha.253",
4
4
  "description": "A Quasar component library project",
5
5
  "productName": "Quasar component library App",
6
6
  "author": "Engineering Team <engineering@usssa.com>",
@@ -49,10 +49,13 @@ const props = defineProps({
49
49
  type: String,
50
50
  default: 'center end',
51
51
  },
52
+ showIconBorder: {
53
+ type: Boolean,
54
+ default: false,
55
+ },
52
56
  size: {
53
57
  type: String,
54
58
  default: 'md',
55
- validator: (val) => ['sm', 'md', 'lg'].includes(val),
56
59
  },
57
60
  tooltip: {
58
61
  type: String,
@@ -65,8 +68,8 @@ const props = defineProps({
65
68
  })
66
69
 
67
70
  const btnAriaLabel = computed(() => {
68
- if(props.badge) {
69
- return props.ariaLabel + " " + props.badgeLabel
71
+ if (props.badge) {
72
+ return props.ariaLabel + ' ' + props.badgeLabel
70
73
  }
71
74
  return props.ariaLabel
72
75
  })
@@ -140,6 +143,7 @@ const handleClick = () => {
140
143
  :offset="offset"
141
144
  :self="self"
142
145
  />
146
+
143
147
  <slot name="menu" />
144
148
  </template>
145
149
  </q-btn>