primevue 4.3.7 → 4.3.8

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "primevue",
3
- "version": "4.3.7",
3
+ "version": "4.3.8",
4
4
  "author": "PrimeTek Informatics",
5
5
  "description": "PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock, which has 370+ ready to use UI blocks to build spectacular applications in no time.",
6
6
  "homepage": "https://primevue.org/",
@@ -60,8 +60,8 @@
60
60
  "@primeuix/styled": "^0.7.2",
61
61
  "@primeuix/utils": "^0.6.1",
62
62
  "@primeuix/styles": "^1.2.3",
63
- "@primevue/icons": "4.3.7",
64
- "@primevue/core": "4.3.7"
63
+ "@primevue/core": "4.3.8",
64
+ "@primevue/icons": "4.3.8"
65
65
  },
66
66
  "engines": {
67
67
  "node": ">=12.11.0"
package/select/Select.vue CHANGED
@@ -552,7 +552,7 @@ export default {
552
552
  break;
553
553
 
554
554
  case 'Tab':
555
- this.onTabKey(event, true);
555
+ this.onTabKey(event);
556
556
  break;
557
557
 
558
558
  default:
package/select/index.mjs CHANGED
@@ -508,7 +508,7 @@ var script = {
508
508
  this.onEscapeKey(event);
509
509
  break;
510
510
  case 'Tab':
511
- this.onTabKey(event, true);
511
+ this.onTabKey(event);
512
512
  break;
513
513
  }
514
514
  },