@apptegy/nuxt-navigation 0.1.31 → 0.1.32
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/dist/module.json
CHANGED
|
@@ -80,7 +80,7 @@ function handleSelectedOrg($event: KeyboardEvent | MouseEvent, orgId: number) {
|
|
|
80
80
|
aria-haspopup="listbox"
|
|
81
81
|
role="combobox"
|
|
82
82
|
class="dropdown-trigger"
|
|
83
|
-
>
|
|
83
|
+
>
|
|
84
84
|
<input
|
|
85
85
|
ref="inputRef"
|
|
86
86
|
type="text"
|
|
@@ -95,6 +95,12 @@ function handleSelectedOrg($event: KeyboardEvent | MouseEvent, orgId: number) {
|
|
|
95
95
|
<a-icon icon="16:lock-locked" />
|
|
96
96
|
{{ $t("navigation.orgBadge") }}
|
|
97
97
|
</span>
|
|
98
|
+
<a-icon
|
|
99
|
+
:icon="active ? '16:carret-up': '16:carret-down'"
|
|
100
|
+
@keydown="keydownActionsOnTrigger"
|
|
101
|
+
@click.prevent="toggleDropdown"
|
|
102
|
+
@input="handleDropdownSearch"
|
|
103
|
+
/>
|
|
98
104
|
</div>
|
|
99
105
|
<div
|
|
100
106
|
v-show="active"
|
|
@@ -185,6 +191,9 @@ function handleSelectedOrg($event: KeyboardEvent | MouseEvent, orgId: number) {
|
|
|
185
191
|
position: relative;
|
|
186
192
|
cursor: pointer;
|
|
187
193
|
}
|
|
194
|
+
.org-selection .dropdown .org-option.selected {
|
|
195
|
+
background-color: #f8f6fc;
|
|
196
|
+
}
|
|
188
197
|
.org-selection .dropdown .org-option:focus-visible, .org-selection .dropdown .org-option:hover {
|
|
189
198
|
background-color: #f8f6fc;
|
|
190
199
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apptegy/nuxt-navigation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"vue": "^3.5.13",
|
|
48
48
|
"vue-tsc": "^2.2.0"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "2cae18aa5c59f577acb9a77ae270286c2a0c59ad"
|
|
51
51
|
}
|