@community-release/nx-ui 0.0.60 → 0.0.62
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
|
@@ -5,7 +5,13 @@
|
|
|
5
5
|
v-for="item in impulseArray"
|
|
6
6
|
:key="item.id"
|
|
7
7
|
class="impulse"
|
|
8
|
-
:style="{
|
|
8
|
+
:style="{
|
|
9
|
+
top: item.top,
|
|
10
|
+
left: item.left,
|
|
11
|
+
background: item.background,
|
|
12
|
+
'animation-duration': item?.duration || 0.8,
|
|
13
|
+
'animation-timing-function': item?.ease || 'ease-in-out',
|
|
14
|
+
}"
|
|
9
15
|
></span>
|
|
10
16
|
</transition-group>
|
|
11
17
|
</div>
|
|
@@ -335,7 +335,7 @@
|
|
|
335
335
|
* - focus <input />
|
|
336
336
|
*/
|
|
337
337
|
function handleListItemClick(item) {
|
|
338
|
-
emit('update:modelValue',
|
|
338
|
+
emit('update:modelValue', item.name);
|
|
339
339
|
listHide();
|
|
340
340
|
|
|
341
341
|
selectInput();
|
|
@@ -441,7 +441,7 @@
|
|
|
441
441
|
watch(filteredList, (v) => {
|
|
442
442
|
clearTimeout(tA11y);
|
|
443
443
|
tA11y = setTimeout(() => {
|
|
444
|
-
a11yAnnotation.value = v.length ? props.dictionary['itemsFound'] +': '+ v.length : props.dictionary['noItemsFound'];
|
|
444
|
+
a11yAnnotation.value = v.length ? (props.dictionary['itemsFound'] +': '+ v.length) : props.dictionary['noItemsFound'];
|
|
445
445
|
}, 500);
|
|
446
446
|
});
|
|
447
447
|
|