@usssa/component-library 1.0.0-alpha.271 → 1.0.0-alpha.272

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.271
1
+ # Component Library v1.0.0-alpha.272
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.271",
3
+ "version": "1.0.0-alpha.272",
4
4
  "description": "A Quasar component library project",
5
5
  "productName": "Quasar component library app",
6
6
  "author": "Engineering Team <engineering@usssa.com>",
@@ -91,9 +91,9 @@ const menuWidth = ref(0)
91
91
  const predictions = ref([])
92
92
  const resultItem = ref(
93
93
  props.selectedAddress?.length
94
- ? { street_address: props.selectedAddress }
94
+ ? { displayName: props.selectedAddress }
95
95
  : modelValue.value?.length
96
- ? { street_address: modelValue.value }
96
+ ? { displayName: modelValue.value }
97
97
  : {}
98
98
  )
99
99
  const resultsMenuRef = ref(null)
@@ -420,7 +420,7 @@ watch(
420
420
 
421
421
  <UInputTextStd
422
422
  v-if="JSON.stringify(resultItem) !== '{}'"
423
- v-model="resultItem.street_address"
423
+ v-model="resultItem.displayName"
424
424
  :dataTestId="dataTestId"
425
425
  :label="label"
426
426
  :size="size"