@usssa/component-library 1.0.0-alpha.92 → 1.0.0-alpha.93
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
|
@@ -188,8 +188,13 @@ const handleTabChange = (val) => {
|
|
|
188
188
|
search()
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
-
const onItemActionClick = (item) => {
|
|
192
|
-
return emit(
|
|
191
|
+
const onItemActionClick = (item, isRecentSearchAction) => {
|
|
192
|
+
return emit(
|
|
193
|
+
'onItemActionClick',
|
|
194
|
+
item,
|
|
195
|
+
isRecentSearchAction,
|
|
196
|
+
searchMenuRef.value
|
|
197
|
+
)
|
|
193
198
|
}
|
|
194
199
|
|
|
195
200
|
const specialContextHandler = (results) => {
|
|
@@ -572,7 +577,7 @@ watch(
|
|
|
572
577
|
label="Invite"
|
|
573
578
|
outline
|
|
574
579
|
size="sm"
|
|
575
|
-
@click.stop="onInvitePerson(item)"
|
|
580
|
+
@click.stop="onInvitePerson(item, false)"
|
|
576
581
|
/>
|
|
577
582
|
</div>
|
|
578
583
|
</div>
|
|
@@ -656,7 +661,7 @@ watch(
|
|
|
656
661
|
:loading="actionButtonLoading"
|
|
657
662
|
outline
|
|
658
663
|
size="sm"
|
|
659
|
-
@click.stop="onItemActionClick(item)"
|
|
664
|
+
@click.stop="onItemActionClick(item, true)"
|
|
660
665
|
>
|
|
661
666
|
<template v-if="item.tooltip && item.disable" #tooltip>
|
|
662
667
|
<UTooltip
|