Merge remote-tracking branch 'origin/prod'
commit
a15dd23e6c
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,6 +1,14 @@
|
||||||
# Changelog
|
# 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)
|
[Full Changelog](https://github.com/primefaces/primevue/compare/3.29.0...3.29.1)
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ import pkg from '../../../package.json';
|
||||||
import { services } from './services';
|
import { services } from './services';
|
||||||
|
|
||||||
const PrimeVue = {
|
const PrimeVue = {
|
||||||
version: '^3.29.1',
|
version: '^3.29.2',
|
||||||
description:
|
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.'
|
'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.'
|
||||||
};
|
};
|
||||||
|
|
|
@ -2375,10 +2375,10 @@ export default {
|
||||||
cell = DomHandler.findSingle(this.overlay, 'span[data-p-highlight="true"]');
|
cell = DomHandler.findSingle(this.overlay, 'span[data-p-highlight="true"]');
|
||||||
|
|
||||||
if (!cell) {
|
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;
|
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)');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "primevue",
|
"name": "primevue",
|
||||||
"version": "3.30.0-SNAPSHOT",
|
"version": "3.29.2",
|
||||||
"homepage": "https://primevue.org/",
|
"homepage": "https://primevue.org/",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "primevue",
|
"name": "primevue",
|
||||||
"version": "3.30.0-SNAPSHOT",
|
"version": "3.29.2",
|
||||||
"homepage": "https://primevue.org/",
|
"homepage": "https://primevue.org/",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
Loading…
Reference in New Issue