Version update

pull/4452/head
Tuğçe Küçükoğlu 2023-08-15 11:34:59 +03:00
parent a708ab9080
commit e259b9510d
5 changed files with 25 additions and 8 deletions

View File

@ -1,5 +1,22 @@
# Changelog
## [2.10.2](https://github.com/primefaces/primevue/tree/2.10.2) (2023-08-15)
[Full Changelog](https://github.com/primefaces/primevue/compare/2.10.1...2.10.2)
**Implemented New Features and Enhancements:**
- Password: id props is passed to container [\#4143](https://github.com/primefaces/primevue/issues/4143)
- OverlayPanel: Backport events to v2.x [\#3733](https://github.com/primefaces/primevue/issues/3733)
**Fixed bugs:**
- Calendar: updateFocus called on unmounted instance [\#3962](https://github.com/primefaces/primevue/issues/3962)
- DataTable: row group header colspan doesn't span full row when table has selection column [\#3685](https://github.com/primefaces/primevue/issues/3685)
- \[2.\] Tooltip: "escape" option is always false when tooltip is updated [\#3529](https://github.com/primefaces/primevue/issues/3529)
- CascadeSelect: "TypeError: Cannot set properties of undefined \(setting 'minWidth'\)" when using appendTo=body [\#3479](https://github.com/primefaces/primevue/issues/3479)
- TabMenu: First tab is always highlighted even when selected other tabs [\#3368](https://github.com/primefaces/primevue/issues/3368)
## [2.10.1](https://github.com/primefaces/primevue/tree/2.10.1) (2022-11-18)
[Full Changelog](https://github.com/primefaces/primevue/compare/2.10.0...2.10.1)

View File

@ -1,6 +1,6 @@
{
"name": "primevue",
"version": "2.10.1",
"version": "2.10.2",
"homepage": "https://www.primefaces.org/primevue",
"repository": {
"type": "git",

View File

@ -1,6 +1,6 @@
{
"name": "primevue",
"version": "2.10.1",
"version": "2.10.2",
"homepage": "https://www.primefaces.org/primevue",
"repository": {
"type": "git",
@ -26,7 +26,7 @@
],
"devDependencies": {
"core-js": "^2.6.5",
"vue": "^2.6.10",
"vue": "^2.7.14",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.21",
"@babel/cli": "^7.4.4",
@ -44,7 +44,7 @@
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-uglifycss": "^1.0.6",
"primeflex": "3.3.0",
"primeflex": "3.3.1",
"primeicons": "6.0.1",
"prismjs": "1.9.0",
"quill": "1.3.3",

View File

@ -1,7 +1,7 @@
<template>
<div class="layout-footer">
<div class="layout-footer-left">
<span>PrimeVue 2.10.1 on Vue 2 by </span>
<span>PrimeVue 2.10.2 on Vue 2 by </span>
<a href="https://www.primetek.com.tr">PrimeTek</a>
</div>

View File

@ -113,11 +113,11 @@
<a href="https://www.primefaces.org/primeblocks-vue/#/" target="_blank"><span>Blocks</span></a>
</li>
<li class="topbar-submenu">
<a tabindex="0" @click="toggleMenu($event, 3)">v2.10.1</a>
<a tabindex="0" @click="toggleMenu($event, 3)">v2.10.2</a>
<transition name="p-connected-overlay" @enter="onMenuEnter">
<ul v-show="activeMenuIndex === 3" style="width: 100%">
<li><router-link to="/"><span class="m-0">v2.10.1</span></router-link></li>
<li><a href="https://www.primefaces.org/primevue"><span class="m-0">v3.20.0</span></a></li>
<li><router-link to="/"><span class="m-0">v2.10.2</span></router-link></li>
<li><a href="https://www.primefaces.org/primevue"><span class="m-0">v3</span></a></li>
</ul>
</transition>
</li>