Skip to content

Commit

Permalink
Merge pull request primefaces#6344 from gucal/master
Browse files Browse the repository at this point in the history
Set new version and changelog update
  • Loading branch information
gucal authored Apr 9, 2024
2 parents 0780477 + d79df61 commit 3dafe3b
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 13 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# Changelog

## [10.6.3](https://github.com/primefaces/primereact/tree/10.6.3) (2024-04-09)

[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.2...10.6.3)

**New Features:**

- New component InputOtp [\#6327](https://github.com/primefaces/primereact/issues/6327)

**Enhancements:**

- Unable to select item in Autcomplete with keyboard [\#6308](https://github.com/primefaces/primereact/issues/6308)
- Core: p-hidden-accessible modernization [\#6163](https://github.com/primefaces/primereact/issues/6163)
- Multiselect: must hit TAB key twice to move focus to next dropdown element [\#6288](https://github.com/primefaces/primereact/issues/6288)

**Fixed bugs:**

- Dropdown filter : Filter Field Resets to Empty String on Empty Filter Result when uing onFilterEvent to fetch options dynamically [\#6265](https://github.com/primefaces/primereact/issues/6265)
- Multiselect scroll position reset bug [\#6305](https://github.com/primefaces/primereact/issues/6305)
- InputNumber: does not work with czech and slovak keyboard layout [\#6237](https://github.com/primefaces/primereact/issues/6237)
- InputNumber: Cannot insert value on Android [\#6275](https://github.com/primefaces/primereact/issues/6275)
- InputNumber: cannot shift + num key [\#6257](https://github.com/primefaces/primereact/issues/6257)
- ButtonGroup: missing children prop [\#6333](https://github.com/primefaces/primereact/issues/6333)
- InputText: It doesn't take classNames when unstyled is true [\#6274](https://github.com/primefaces/primereact/issues/6274)
- Dropdown: Focus change when editable and filter enabled [\#6297](https://github.com/primefaces/primereact/issues/6297)
- DataTable: Drag Selection Highlight Doesn't Appear in 10.6.2 [\#6272](https://github.com/primefaces/primereact/issues/6272)
- Core: Merging PT props only respects lower-case props [\#6289](https://github.com/primefaces/primereact/issues/6289)
- Calendar: Incorrect year with numberOfMonths and yearNavigator [\#6285](https://github.com/primefaces/primereact/issues/6285)
- Core: Unstyled property does not inherit to children [\#6142](https://github.com/primefaces/primereact/issues/6142)
- Vite: Build issues [\#6276](https://github.com/primefaces/primereact/issues/6276)
- ButtonGroup: forwardRef render functions accept exactly two parameters [\#6263](https://github.com/primefaces/primereact/issues/6263)
- MeterGroup: Component is not exported from the library [\#6268](https://github.com/primefaces/primereact/issues/6268)
- Tree: row selection checkbox not getting checked [\#6216](https://github.com/primefaces/primereact/issues/6216)
- Multiple Components: classnames not being set in unstyled mode [\#6329](https://github.com/primefaces/primereact/issues/6329)
- ToggleButton: Checkboxes showing before button [\#6222](https://github.com/primefaces/primereact/issues/6222)


## [10.6.2](https://github.com/primefaces/primereact/tree/10.6.2) (2024-03-29)

[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.1...10.6.2)
Expand Down
4 changes: 2 additions & 2 deletions components/doc/inputotp/basicdoc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import { DocSectionCode } from '@/components/doc/common/docsectioncode';
import { DocSectionText } from '@/components/doc/common/docsectiontext';
import { InputOtp } from '@/components/lib/inputotp/inputotp';
import { InputOtp } from '@/components/lib/inputotp/InputOtp';
import { useState } from 'react';

export function BasicDoc(props) {
const [token, setTokens] = useState();
Expand Down
4 changes: 2 additions & 2 deletions components/doc/inputotp/integeronlydoc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import { DocSectionCode } from '@/components/doc/common/docsectioncode';
import { DocSectionText } from '@/components/doc/common/docsectiontext';
import { InputOtp } from '@/components/lib/inputotp/inputotp';
import { InputOtp } from '@/components/lib/inputotp/InputOtp';
import { useState } from 'react';

export function IntegerOnlyDoc(props) {
const [token, setTokens] = useState();
Expand Down
4 changes: 2 additions & 2 deletions components/doc/inputotp/maskdoc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import { DocSectionCode } from '@/components/doc/common/docsectioncode';
import { DocSectionText } from '@/components/doc/common/docsectiontext';
import { InputOtp } from '@/components/lib/inputotp/inputotp';
import { InputOtp } from '@/components/lib/inputotp/InputOtp';
import { useState } from 'react';

export function MaskDoc(props) {
const [token, setTokens] = useState();
Expand Down
4 changes: 2 additions & 2 deletions components/doc/inputotp/sampledoc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { useState } from 'react';
import { DocSectionCode } from '@/components/doc/common/docsectioncode';
import { DocSectionText } from '@/components/doc/common/docsectiontext';
import { InputOtp } from '@/components/lib/inputotp/inputotp';
import { Button } from '@/components/lib/button/Button';
import { InputOtp } from '@/components/lib/inputotp/InputOtp';
import { useState } from 'react';

export function SampleDoc(props) {
const [token, setTokens] = useState();
Expand Down
4 changes: 2 additions & 2 deletions components/doc/inputotp/templatedoc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react';
import { DocSectionCode } from '@/components/doc/common/docsectioncode';
import { DocSectionText } from '@/components/doc/common/docsectiontext';
import { InputOtp } from '@/components/lib/inputotp/inputotp';
import { InputOtp } from '@/components/lib/inputotp/InputOtp';
import { useState } from 'react';

export function TemplateDoc(props) {
const [token, setTokens] = useState();
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "primereact",
"private": false,
"version": "10.6.2",
"version": "10.6.3",
"scripts": {
"dev": "next dev",
"start": "next start",
Expand Down

0 comments on commit 3dafe3b

Please sign in to comment.