Merge remote-tracking branch 'origin/prod'

pull/4016/head
mertsincan 2023-06-01 11:58:16 +01:00
commit a15dd23e6c
6 changed files with 910 additions and 899 deletions

View File

@ -1,6 +1,14 @@
# Changelog
## [3.29.1](https://github.com/primefaces/primevue/tree/3.29.1) (2023-05-15)
[3.29.2](https://github.com/primefaces/primevue/tree/3.29.2) (2023-05-31)
[Full Changelog](https://github.com/primefaces/primevue/compare/3.29.1...3.29.2)
**Fixed bugs:**
- Datatable: Custom checkbox render issue [\#4003](https://github.com/primefaces/primevue/issues/4003)
[3.29.1](https://github.com/primefaces/primevue/tree/3.29.1) (2023-05-15)
[Full Changelog](https://github.com/primefaces/primevue/compare/3.29.0...3.29.1)

View File

@ -2,7 +2,7 @@ import pkg from '../../../package.json';
import { services } from './services';
const PrimeVue = {
version: '^3.29.1',
version: '^3.29.2',
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 400+ ready to use UI blocks to build spectacular applications in no time.'
};

View File

@ -2375,10 +2375,10 @@ export default {
cell = DomHandler.findSingle(this.overlay, 'span[data-p-highlight="true"]');
if (!cell) {
let todayCell = DomHandler.findSingle(this.overlay, 'td[data-p-today="true"] span:not([data-p-disabled="true"]):not([data-p-ink="true"]');
let todayCell = DomHandler.findSingle(this.overlay, 'td.p-datepicker-today span:not(.p-disabled):not(.p-ink)');
if (todayCell) cell = todayCell;
else cell = DomHandler.findSingle(this.overlay, 'table td span:not([data-p-disabled="true"]):not([data-p-ink="true"]');
else cell = DomHandler.findSingle(this.overlay, '.p-datepicker-calendar td span:not(.p-disabled):not(.p-ink)');
}
}

View File

@ -1,6 +1,6 @@
{
"name": "primevue",
"version": "3.30.0-SNAPSHOT",
"version": "3.29.2",
"homepage": "https://primevue.org/",
"repository": {
"type": "git",

1789
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "primevue",
"version": "3.30.0-SNAPSHOT",
"version": "3.29.2",
"homepage": "https://primevue.org/",
"repository": {
"type": "git",