@community-release/nx-ui 0.0.60 → 0.0.61

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
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "ui",
3
3
  "configKey": "ui",
4
- "version": "0.0.60"
4
+ "version": "0.0.61"
5
5
  }
@@ -335,7 +335,7 @@
335
335
  * - focus <input />
336
336
  */
337
337
  function handleListItemClick(item) {
338
- emit('update:modelValue', `${item.name} (${item.value})`);
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@community-release/nx-ui",
3
- "version": "0.0.60",
3
+ "version": "0.0.61",
4
4
  "packageManager": "pnpm@10.14.0",
5
5
  "description": "nx-ui - Nuxt UI library",
6
6
  "repository": {