diff --git a/.eslintignore b/.eslintignore
new file mode 100644
index 0000000000..8b13789179
--- /dev/null
+++ b/.eslintignore
@@ -0,0 +1 @@
+
diff --git a/.eslintrc.json b/.eslintrc.json
new file mode 100644
index 0000000000..ca204e42a6
--- /dev/null
+++ b/.eslintrc.json
@@ -0,0 +1,273 @@
+{
+ "plugins": ["@typescript-eslint", "jest-dom"],
+ "extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended", "prettier"],
+ "rules": {
+ "@next/next/no-img-element": "off",
+ "react/display-name": "off",
+ "react/no-unescaped-entities": "off",
+ "@typescript-eslint/no-empty-function": "off",
+ "@typescript-eslint/no-empty-interface": "off",
+ "@typescript-eslint/no-unused-vars": "off",
+ "@typescript-eslint/no-explicit-any": "off",
+ "no-console": 2,
+ "padding-line-between-statements": [
+ "error",
+ { "blankLine": "always", "prev": ["const", "let", "var"], "next": "*" },
+ { "blankLine": "any", "prev": ["const", "let", "var"], "next": ["const", "let", "var"] },
+ { "blankLine": "any", "prev": ["case", "default"], "next": "break" },
+ { "blankLine": "any", "prev": "case", "next": "case" },
+ { "blankLine": "always", "prev": "*", "next": "return" },
+ { "blankLine": "always", "prev": "block", "next": "*" },
+ { "blankLine": "always", "prev": "*", "next": "block" },
+ { "blankLine": "always", "prev": "block-like", "next": "*" },
+ { "blankLine": "always", "prev": "*", "next": "block-like" }
+ ]
+ }
+}
+// USE THE CONFIG BELOW DURING THE DEVELOPMENT
+// {
+// "env": {
+// "browser": true,
+// "node": true,
+// "es6": true
+// },
+
+// "plugins": ["@typescript-eslint", "jest-dom"],
+// "extends": ["next/core-web-vitals", "plugin:@typescript-eslint/recommended", "prettier"],
+
+// "ecmaFeatures": {
+// "arrowFunctions": true,
+// "binaryLiterals": true,
+// "blockBindings": true,
+// "classes": true,
+// "defaultParams": true,
+// "destructuring": true,
+// "forOf": true,
+// "generators": true,
+// "modules": true,
+// "objectLiteralComputedProperties": true,
+// "objectLiteralDuplicateProperties": true,
+// "objectLiteralShorthandMethods": true,
+// "objectLiteralShorthandProperties": true,
+// "octalLiterals": true,
+// "regexUFlag": true,
+// "regexYFlag": true,
+// "spread": true,
+// "superInFunctions": true,
+// "templateStrings": true,
+// "unicodeCodePointEscapes": true,
+// "globalReturn": true,
+// "jsx": true
+// },
+
+// "rules": {
+// //
+// //Possible Errors
+// //
+// // The following rules point out areas where you might have made mistakes.
+// //
+// "no-cond-assign": 2, // disallow assignment in conditional expressions
+// "no-console": 1, // disallow use of console (off by default in the node environment)
+// "no-constant-condition": 2, // disallow use of constant expressions in conditions
+// "no-control-regex": 2, // disallow control characters in regular expressions
+// "no-debugger": 2, // disallow use of debugger
+// "no-dupe-args": 2, // disallow duplicate arguments in functions
+// "no-dupe-keys": 2, // disallow duplicate keys when creating object literals
+// "no-duplicate-case": 2, // disallow a duplicate case label.
+// "no-empty": 2, // disallow empty statements
+// "no-empty-class": 2, // disallow the use of empty character classes in regular expressions
+// "no-ex-assign": 2, // disallow assigning to the exception in a catch block
+// "no-extra-boolean-cast": 2, // disallow double-negation boolean casts in a boolean context
+// "no-extra-parens": 0, // disallow unnecessary parentheses (off by default)
+// "no-extra-semi": 2, // disallow unnecessary semicolons
+// "no-func-assign": 2, // disallow overwriting functions written as function declarations
+// "no-inner-declarations": 2, // disallow function or variable declarations in nested blocks
+// "no-invalid-regexp": 2, // disallow invalid regular expression strings in the RegExp constructor
+// "no-irregular-whitespace": 2, // disallow irregular whitespace outside of strings and comments
+// "no-negated-in-lhs": 2, // disallow negation of the left operand of an in expression
+// "no-obj-calls": 2, // disallow the use of object properties of the global object (Math and JSON) as functions
+// "no-regex-spaces": 2, // disallow multiple spaces in a regular expression literal
+// "no-reserved-keys": 2, // disallow reserved words being used as object literal keys (off by default)
+// "no-sparse-arrays": 2, // disallow sparse arrays
+// "no-unreachable": 2, // disallow unreachable statements after a return, throw, continue, or break statement
+// "use-isnan": 2, // disallow comparisons with the value NaN
+// "valid-jsdoc": 2, // Ensure JSDoc comments are valid (off by default)
+// "valid-typeof": 2, // Ensure that the results of typeof are compared against a valid string
+
+// //
+// // Best Practices
+// //
+// // These are rules designed to prevent you from making mistakes.
+// // They either prescribe a better way of doing something or help you avoid footguns.
+// //
+// "block-scoped-var": 0, // treat var statements as if they were block scoped (off by default). 0: deep destructuring is not compatible https://github.com/eslint/eslint/issues/1863
+// "complexity": 0, // specify the maximum cyclomatic complexity allowed in a program (off by default)
+// "consistent-return": 2, // require return statements to either always or never specify values
+// "curly": 2, // specify curly brace conventions for all control statements
+// "default-case": 2, // require default case in switch statements (off by default)
+// "dot-notation": 2, // encourages use of dot notation whenever possible
+// "eqeqeq": 2, // require the use of === and !==
+// "guard-for-in": 2, // make sure for-in loops have an if statement (off by default)
+// "no-alert": 2, // disallow the use of alert, confirm, and prompt
+// "no-caller": 2, // disallow use of arguments.caller or arguments.callee
+// "no-div-regex": 2, // disallow division operators explicitly at beginning of regular expression (off by default)
+// "no-else-return": 2, // disallow else after a return in an if (off by default)
+// "no-empty-label": 2, // disallow use of labels for anything other then loops and switches
+// "no-eq-null": 2, // disallow comparisons to null without a type-checking operator (off by default)
+// "no-eval": 2, // disallow use of eval()
+// "no-extend-native": 2, // disallow adding to native types
+// "no-extra-bind": 2, // disallow unnecessary function binding
+// "no-fallthrough": 2, // disallow fallthrough of case statements
+// "no-floating-decimal": 2, // disallow the use of leading or trailing decimal points in numeric literals (off by default)
+// "no-implied-eval": 2, // disallow use of eval()-like methods
+// "no-iterator": 2, // disallow usage of __iterator__ property
+// "no-labels": 2, // disallow use of labeled statements
+// "no-lone-blocks": 2, // disallow unnecessary nested blocks
+// "no-loop-func": 2, // disallow creation of functions within loops
+// "no-multi-spaces": 2, // disallow use of multiple spaces
+// "no-multi-str": 2, // disallow use of multiline strings
+// "no-native-reassign": 2, // disallow reassignments of native objects
+// "no-new": 2, // disallow use of new operator when not part of the assignment or comparison
+// "no-new-func": 2, // disallow use of new operator for Function object
+// "no-new-wrappers": 2, // disallows creating new instances of String,Number, and Boolean
+// "no-octal": 2, // disallow use of octal literals
+// "no-octal-escape": 2, // disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251";
+// "no-param-reassign": 2, // disallow reassignment of function parameters (off by default)
+// "no-process-env": 2, // disallow use of process.env (off by default)
+// "no-proto": 2, // disallow usage of __proto__ property
+// "no-redeclare": 2, // disallow declaring the same variable more then once
+// "no-return-assign": 2, // disallow use of assignment in return statement
+// "no-script-url": 2, // disallow use of javascript: urls.
+// "no-self-compare": 2, // disallow comparisons where both sides are exactly the same (off by default)
+// "no-sequences": 2, // disallow use of comma operator
+// "no-throw-literal": 2, // restrict what can be thrown as an exception (off by default)
+// "no-void": 2, // disallow use of void operator (off by default)
+// "no-warning-comments": [0, { "terms": ["todo", "fixme"], "location": "start" }], // disallow usage of configurable warning terms in comments": 2, // e.g. TODO or FIXME (off by default)
+// "no-with": 2, // disallow use of the with statement
+// "radix": 2, // require use of the second argument for parseInt() (off by default)
+// "vars-on-top": 2, // requires to declare all vars on top of their containing scope (off by default)
+// "wrap-iife": 2, // require immediate function invocation to be wrapped in parentheses (off by default)
+// "yoda": 2, // require or disallow Yoda conditions
+
+// //
+// // Strict Mode
+// //
+// // These rules relate to using strict mode.
+// //
+// "strict": 0, // controls location of Use Strict Directives. 0: required by `babel-eslint`
+
+// //
+// // Variables
+// //
+// // These rules have to do with variable declarations.
+// //
+// "no-catch-shadow": 2, // disallow the catch clause parameter name being the same as a variable in the outer scope (off by default in the node environment)
+// "no-delete-var": 2, // disallow deletion of variables
+// "no-label-var": 2, // disallow labels that share a name with a variable
+// "no-shadow": 2, // disallow declaration of variables already declared in the outer scope
+// "no-shadow-restricted-names": 2, // disallow shadowing of names such as arguments
+// "no-undef": 2, // disallow use of undeclared variables unless mentioned in a /*global */ block
+// "no-undef-init": 2, // disallow use of undefined when initializing variables
+// "no-undefined": 2, // disallow use of undefined variable (off by default)
+// "no-unused-vars": 2, // disallow declaration of variables that are not used in the code
+// "no-use-before-define": 2, // disallow use of variables before they are defined
+
+// //
+// //Stylistic Issues
+// //
+// // These rules are purely matters of style and are quite subjective.
+// //
+// "indent": [1, 4], // this option sets a specific tab width for your code (off by default)
+// "brace-style": 1, // enforce one true brace style (off by default)
+// "camelcase": 1, // require camel case names
+// "comma-spacing": [1, { "before": false, "after": true }], // enforce spacing before and after comma
+// "comma-style": [1, "last"], // enforce one true comma style (off by default)
+// "consistent-this": [1, "_this"], // enforces consistent naming when capturing the current execution context (off by default)
+// "eol-last": 1, // enforce newline at the end of file, with no multiple empty lines
+// "func-names": 0, // require function expressions to have a name (off by default)
+// "func-style": 0, // enforces use of function declarations or expressions (off by default)
+// "key-spacing": [1, { "beforeColon": false, "afterColon": true }], // enforces spacing between keys and values in object literal properties
+// "max-nested-callbacks": [1, 3], // specify the maximum depth callbacks can be nested (off by default)
+// "new-cap": [1, { "newIsCap": true, "capIsNew": false }], // require a capital letter for constructors
+// "new-parens": 1, // disallow the omission of parentheses when invoking a constructor with no arguments
+// "newline-after-var": 0, // allow/disallow an empty newline after var statement (off by default)
+// "no-array-constructor": 1, // disallow use of the Array constructor
+// "no-inline-comments": 1, // disallow comments inline after code (off by default)
+// "no-lonely-if": 1, // disallow if as the only statement in an else block (off by default)
+// "no-mixed-spaces-and-tabs": 1, // disallow mixed spaces and tabs for indentation
+// "no-multiple-empty-lines": [1, { "max": 2 }], // disallow multiple empty lines (off by default)
+// "no-new-object": 1, // disallow use of the Object constructor
+// "no-spaced-func": 1, // disallow space between function identifier and application
+// "no-trailing-spaces": 1, // disallow trailing whitespace at the end of lines
+// "no-wrap-func": 1, // disallow wrapping of non-IIFE statements in parens
+// "one-var": [1, "never"], // allow just one var statement per function (off by default)
+// "operator-assignment": [1, "never"], // require assignment operator shorthand where possible or prohibit it entirely (off by default)
+// "padded-blocks": [1, "never"], // enforce padding within blocks (off by default)
+// "quote-props": [1, "as-needed"], // require quotes around object literal property names (off by default)
+// "quotes": [1, "single"], // specify whether double or single quotes should be used
+// "semi": [1, "always"], // require or disallow use of semicolons instead of ASI
+// "semi-spacing": [1, { "before": false, "after": true }], // enforce spacing before and after semicolons
+// "sort-vars": 0, // sort variables within the same declaration block (off by default)
+// "space-after-keywords": [1, "always"], // require a space after certain keywords (off by default)
+// "space-before-blocks": [1, "always"], // require or disallow space before blocks (off by default)
+// "space-before-function-paren": [1, { "anonymous": "always", "named": "never" }], // require or disallow space before function opening parenthesis (off by default)
+// "space-in-brackets": [1, "never"], // require or disallow spaces inside brackets (off by default)
+// "space-in-parens": [1, "never"], // require or disallow spaces inside parentheses (off by default)
+// "space-return-throw-case": [1, "always"], // require a space after return, throw, and case
+// "space-unary-ops": [1, { "words": true, "nonwords": false }], // Require or disallow spaces before/after unary operators (words on by default, nonwords off by default)
+// "spaced-line-comment": [1, "always"], // require or disallow a space immediately following the // in a line comment (off by default)
+// "wrap-regex": 0, // require regex literals to be wrapped in parentheses (off by default)
+
+// //
+// // ECMAScript 6
+// //
+// // These rules are only relevant to ES6 environments and are off by default.
+// //
+// "no-var": 2, // require let or const instead of var (off by default)
+// "generator-star-spacing": [2, "before"], // enforce the spacing around the * in generator functions (off by default)
+
+// //
+// // Legacy
+// //
+// // The following rules are included for compatibility with JSHint and JSLint.
+// // While the names of the rules may not match up with the JSHint/JSLint counterpart,
+// // the functionality is the same.
+// //
+// "max-depth": [2, 3], // specify the maximum depth that blocks can be nested (off by default)
+// "max-params": [2, 5], // limits the number of parameters that can be used in the function declaration. (off by default)
+// "max-statements": 0, // specify the maximum number of statement allowed in a function (off by default)
+// "no-bitwise": 0, // disallow use of bitwise operators (off by default)
+// "no-plusplus": 2, // disallow use of unary operators, ++ and -- (off by default)
+
+// //
+// // eslint-plugin-react
+// //
+// // React specific linting rules for ESLint
+// //
+// "react/display-name": 0, // Prevent missing displayName in a React component definition
+// "react/jsx-quotes": [2, "double", "avoid-escape"], // Enforce quote style for JSX attributes
+// "react/jsx-no-undef": 2, // Disallow undeclared variables in JSX
+// "react/jsx-sort-props": 0, // Enforce props alphabetical sorting
+// "react/jsx-uses-react": 2, // Prevent React to be incorrectly marked as unused
+// "react/jsx-uses-vars": 2, // Prevent variables used in JSX to be incorrectly marked as unused
+// "react/no-did-mount-set-state": 2, // Prevent usage of setState in componentDidMount
+// "react/no-did-update-set-state": 2, // Prevent usage of setState in componentDidUpdate
+// "react/no-multi-comp": 0, // Prevent multiple component definition per file
+// "react/no-unknown-property": 2, // Prevent usage of unknown DOM property
+// "react/react-in-jsx-scope": 2, // Prevent missing React when using JSX
+// "react/self-closing-comp": 2, // Prevent extra closing tags for components without children
+// "react/wrap-multilines": 2, // Prevent missing parentheses around multilines JSX
+// "padding-line-between-statements": [
+// "error",
+// { "blankLine": "always", "prev": ["const", "let", "var"], "next": "*" },
+// { "blankLine": "any", "prev": ["const", "let", "var"], "next": ["const", "let", "var"] },
+// { "blankLine": "any", "prev": ["case", "default"], "next": "break" },
+// { "blankLine": "any", "prev": "case", "next": "case" },
+// { "blankLine": "always", "prev": "*", "next": "return" },
+// { "blankLine": "always", "prev": "block", "next": "*" },
+// { "blankLine": "always", "prev": "*", "next": "block" },
+// { "blankLine": "always", "prev": "block-like", "next": "*" },
+// { "blankLine": "always", "prev": "*", "next": "block-like" }
+// ]
+// }
+// }
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000000..94f480de94
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+* text=auto eol=lf
\ No newline at end of file
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
deleted file mode 100644
index ab36a17487..0000000000
--- a/.github/ISSUE_TEMPLATE.md
+++ /dev/null
@@ -1,40 +0,0 @@
-### There is no guarantee in receiving an immediate response in GitHub Issue Tracker, If you'd like to secure our response, you may consider *PrimeReact PRO Support* where support is provided within 4 business hours
-
-**I'm submitting a ...** (check one with "x")
-```
-[ ] bug report
-[ ] feature request
-[ ] support request => Please do not submit support request here, instead see https://forum.primefaces.org/viewforum.php?f=57
-```
-
-**Codesandbox Case (Bug Reports)**
-Please fork the codesandbox below and create a case demonstrating your bug report. Issues without a codesandbox have much less possibility to be reviewed.
-
-https://codesandbox.io/s/qjx332qq4
-
-**Current behavior**
-
-
-**Expected behavior**
-
-
-**Minimal reproduction of the problem with instructions**
-
-
-**Please tell us about your environment:**
-
-
-* **React version:**
-
-
-* **PrimeReact version:**
-
-
-* **Browser:** [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
-
-
-* **Language:** [all | TypeScript X.X | ES6/7 | ES5]
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 0000000000..bcd6b6626a
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,61 @@
+name: Bug report
+description: Create a report to help PrimeReact improve.
+title: 'Replace_With_Component_Name: Brief_Bug_Description'
+labels: ['Status: Needs Triage']
+body:
+ - type: markdown
+ attributes:
+ # yamllint disable rule:line-length
+ value: >
+ ### There is no guarantee in receiving an immediate response in GitHub Issue Tracker, If you'd like to secure our response, you may consider *PrimeReact PRO Support* where support is provided within 4 business hours
+ # yamllint enable rule:line-length
+ - type: textarea
+ id: description
+ attributes:
+ label: Describe the bug
+ description: A clear and concise description of what the bug is.
+ validations:
+ required: true
+ - type: input
+ id: reproducer
+ attributes:
+ label: Reproducer
+ placeholder: https://stackblitz.com/edit/vitejs-vite-pekean1c
+ description: |
+ Please fork [Stackblitz project](https://stackblitz.com/edit/vitejs-vite-pekean1c?file=src%2FApp.tsx) and create a case demonstrating your bug report. Issues **without** a CodeSandbox have much less possibility to be reviewed.
+ validations:
+ required: false
+ - type: textarea
+ id: system-info
+ attributes:
+ label: System Information
+ description: Output of `npx envinfo --system --npmPackages primereact,react,tailwindcss --binaries --browsers`
+ render: Shell
+ placeholder: >
+ System:...
+ Binaries:...
+ Browsers: ...
+ npmPackages:
+ primereact: 10.7.0 => 10.7.0
+ react: 18.3.1 => 18.3.1
+ validations:
+ required: true
+ - type: textarea
+ id: reproduce-steps
+ attributes:
+ label: Steps to reproduce the behavior
+ description: A clear and concise description of how to make the issue happen.
+ placeholder: >
+ 1. Go to '...'
+ 2. Click on '....'
+ 3. Scroll down to '....'
+ 4. See error
+ validations:
+ required: false
+ - type: textarea
+ id: expected-behavior
+ attributes:
+ label: Expected behavior
+ description: A clear and concise description of what you expected to happen.
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml
new file mode 100644
index 0000000000..c0d83c5d78
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,7 @@
+contact_links:
+ - name: Feature request
+ url: https://github.com/orgs/primefaces/discussions/categories/primereact
+ about: Propose an enhancement at discussions.
+ - name: Support
+ url: https://primereact.org/support/
+ about: Professional support for the open source innovation.
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index da86c58a8c..2d51c7d228 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,6 +1,6 @@
-###Defect Fixes
-When submitting a PR, please also create an issue documenting the error.
+### Defect Fixes
+When submitting a PR, please also **create an issue** documenting the error and [manually link to an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#manually-linking-a-pull-request-or-branch-to-an-issue-using-the-issue-sidebar) or mention it in the description using #.
-###Feature Requests
+### Feature Requests
Due to company policy, we are unable to accept feature request PRs with significant changes as such cases has to be implemented by our team following our own processes.
-Smaller scaled feature implementations such as adding a property to a component will be considered for merging.
\ No newline at end of file
+Smaller scaled feature implementations such as adding a property to a component will be considered for merging.
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000000..acc23b333e
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,14 @@
+version: 2
+updates:
+ - package-ecosystem: "npm"
+ directory: "/"
+ schedule:
+ interval: "monthly"
+ ignore:
+ - dependency-name: "react"
+ - dependency-name: "react-dom"
+ - dependency-name: "typedoc"
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "monthly"
diff --git a/.github/workflows/comment_by_label.yml b/.github/workflows/comment_by_label.yml
new file mode 100644
index 0000000000..518ae1f6aa
--- /dev/null
+++ b/.github/workflows/comment_by_label.yml
@@ -0,0 +1,23 @@
+name: Comment By Label In Issues and PRs
+
+on:
+ issues:
+ types: [labeled]
+
+permissions:
+ contents: read
+
+jobs:
+ add-comment:
+ if: contains(github.event.label.name, 'Help Wanted')
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - name: Add comment
+ uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9
+ with:
+ issue-number: ${{ github.event.issue.number }}
+ body: |
+ This issue is available for anyone to work on. **Make sure to reference this issue in your pull request.** :sparkles: Thank you for your contribution! :sparkles:
diff --git a/.github/workflows/generate_api_doc.yml b/.github/workflows/generate_api_doc.yml
new file mode 100644
index 0000000000..035a707e4d
--- /dev/null
+++ b/.github/workflows/generate_api_doc.yml
@@ -0,0 +1,42 @@
+name: Generate API DOC
+
+on:
+ push:
+ branches: [ master ]
+ paths:
+ - '**/**/*.d.ts'
+ - 'api-generator/build-apidoc.js'
+
+permissions:
+ contents: write
+
+jobs:
+ build:
+ if: github.repository == 'primefaces/primereact' && github.ref == 'refs/heads/master'
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [18.x]
+
+ steps:
+ - uses: actions/checkout@v6
+
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v6
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: 'npm'
+
+ - name: Install node packages
+ run: npm install
+
+ - name: Generate api doc
+ run: npm run apidoc
+
+ - name: Commit doc
+ run: |
+ git config user.name "GitHub Actions Bot"
+ git config user.email "<>"
+ git commit -a -m "Update API doc"
+ git push
diff --git a/.github/workflows/issue-inactive-checker.yml b/.github/workflows/issue-inactive-checker.yml
new file mode 100644
index 0000000000..c96f3d3067
--- /dev/null
+++ b/.github/workflows/issue-inactive-checker.yml
@@ -0,0 +1,34 @@
+name: Issue Inactive Checker
+
+on:
+ schedule:
+ - cron: "0 13 * * *" # Every Monday at 1PM UTC (9AM EST)
+
+permissions:
+ contents: read
+
+jobs:
+ issue-close-require:
+ permissions:
+ issues: write
+ pull-requests: write
+ runs-on: ubuntu-latest
+ steps:
+ - name: Cannot Replicate
+ uses: actions-cool/issues-helper@v3
+ with:
+ actions: "close-issues"
+ labels: "Resolution: Cannot Replicate"
+ inactive-day: 20
+ - name: Needs Reproducer
+ uses: actions-cool/issues-helper@v3
+ with:
+ actions: "close-issues"
+ labels: "Status: Needs Reproducer"
+ inactive-day: 20
+ - name: Duplicate
+ uses: actions-cool/issues-helper@v3
+ with:
+ actions: "close-issues"
+ labels: "Resolution: Duplicate"
+ inactive-day: 20
diff --git a/.github/workflows/issue-labeled.yml b/.github/workflows/issue-labeled.yml
new file mode 100644
index 0000000000..5b74ac2c0c
--- /dev/null
+++ b/.github/workflows/issue-labeled.yml
@@ -0,0 +1,43 @@
+name: Issue Labeled
+
+on:
+ issues:
+ types: [labeled]
+
+permissions:
+ contents: read
+
+jobs:
+ issue-labeled:
+ permissions:
+ issues: write # for actions-cool/issues-helper to update issues
+ pull-requests: write # for actions-cool/issues-helper to update PRs
+ runs-on: ubuntu-latest
+ steps:
+ - name: Cannot Replicate
+ if: "${{ github.event.label.name == 'Resolution: Cannot Replicate'}}"
+ uses: actions-cool/issues-helper@v3
+ with:
+ actions: 'create-comment'
+ token: ${{ secrets.GITHUB_TOKEN }}
+ issue-number: ${{ github.event.issue.number }}
+ body: |
+ We're unable to replicate your issue, if you are able to create a reproducer or add details please edit this issue. This issue will be closed if no activities in 20 days.
+ - name: Duplicate
+ if: "${{ github.event.label.name == 'Resolution: Duplicate'}}"
+ uses: actions-cool/issues-helper@v3
+ with:
+ actions: 'create-comment'
+ token: ${{ secrets.GITHUB_TOKEN }}
+ issue-number: ${{ github.event.issue.number }}
+ body: |
+ This issue is a duplicate and has already been reported and possibly fixed. Please review other issues both open and closed for a similar issue to this one.
+ - name: Needs Reproducer
+ if: "${{ github.event.label.name == 'Status: Needs Reproducer'}}"
+ uses: actions-cool/issues-helper@v3
+ with:
+ actions: 'create-comment'
+ token: ${{ secrets.GITHUB_TOKEN }}
+ issue-number: ${{ github.event.issue.number }}
+ body: |
+ Please fork the [Stackblitz project](https://stackblitz.com/edit/vitejs-vite-pekean1c?file=src%2FApp.tsx) and create a case demonstrating your bug report. This issue will be closed if no activities in 20 days.
diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml
new file mode 100644
index 0000000000..1820731e68
--- /dev/null
+++ b/.github/workflows/label.yml
@@ -0,0 +1,23 @@
+name: Label To Issues and PRs
+
+on:
+ issues:
+ types: [opened,reopened]
+ pull_request:
+ types: [opened,reopened]
+
+permissions:
+ contents: read
+
+jobs:
+ label_issues:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ steps:
+ - name: Label issues
+ uses: andymckay/labeler@1.0.4
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ add-labels: 'Status: Needs Triage'
+ remove-labels: 'Resolution: By Design,Resolution: Cannot Replicate,Resolution: Duplicate,Resolution: Help Wanted,Resolution: Invalid,Resolution: Needs Issue,Resolution: Needs More Information,Resolution: Needs Revision,Resolution: Wontfix'
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
new file mode 100644
index 0000000000..eea30f7d3f
--- /dev/null
+++ b/.github/workflows/nightly.yml
@@ -0,0 +1,32 @@
+name: Daily Build
+
+on:
+ schedule:
+ - cron: '0 6 * * *'
+
+permissions:
+ contents: read
+
+jobs:
+ nightly:
+ if: github.repository == 'primefaces/primereact' && github.ref == 'refs/heads/master'
+ runs-on: ubuntu-latest
+ name: Node ${{ matrix.node-version }}
+
+ strategy:
+ matrix:
+ node-version: [16.x, 18.x]
+
+ steps:
+ - uses: actions/checkout@v6
+
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v6
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: 'npm'
+
+ - name: Build
+ run: |
+ npm install
+ npm run build:lib
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml
new file mode 100644
index 0000000000..faa6689116
--- /dev/null
+++ b/.github/workflows/node.js.yml
@@ -0,0 +1,56 @@
+name: NodeJS CI
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+permissions:
+ contents: read
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [20.x]
+
+ steps:
+ - uses: actions/checkout@v6
+
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v6
+ with:
+ node-version: ${{ matrix.node-version }}
+ cache: 'npm'
+
+ - name: Build
+ run: |
+ npm install
+
+ - name: Code Format
+ if: ${{ success() }}
+ run: |
+ npm run format:check
+
+ - name: Lint Check
+ if: ${{ success() }}
+ run: |
+ npm run lint
+
+ - name: TypeScript Check
+ if: ${{ success() }}
+ run: |
+ npm run type:check
+
+ - name: Security Check
+ if: ${{ success() }}
+ run: |
+ npm run security:check
+
+ - name: Unit Tests Check
+ if: ${{ success() }}
+ run: |
+ npm run test:check
diff --git a/.github/workflows/pr_verify_linked_issue.yml b/.github/workflows/pr_verify_linked_issue.yml
new file mode 100644
index 0000000000..4745b4509c
--- /dev/null
+++ b/.github/workflows/pr_verify_linked_issue.yml
@@ -0,0 +1,25 @@
+name: Verify Linked Issue In PRs
+
+on:
+ pull_request_target:
+ types: [edited, synchronize, opened, reopened]
+ check_run:
+
+permissions:
+ contents: read
+
+jobs:
+ verify_linked_issue:
+ runs-on: ubuntu-latest
+ env:
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - name: Verify Linked Issue
+ uses: hattan/verify-linked-issue-action@v1.1.5
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ with:
+ message: 'Thanks a lot for your contribution! But, PR does not seem to be linked to any issues. Please [manually link to an issue](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#manually-linking-a-pull-request-or-branch-to-an-issue-using-the-issue-sidebar) or mention it in the description using #.'
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 0000000000..e5a69e23c6
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,29 @@
+name: Stale Issues and PRs
+on:
+ schedule:
+ - cron: '0 0 * * *'
+permissions:
+ contents: read
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+ steps:
+ - uses: actions/stale@v10
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ stale-issue-label: 'Resolution: Stale'
+ stale-pr-label: 'Resolution: Stale'
+ exempt-issue-labels: 'Core Team,PRO Support,good first issue,question,Resolution: Help Wanted,Resolution: Workaround,Status: Discussion,Status: In Progress,Status: Needs Triage,Status: Pending Review,Type: Enhancement,Type: New Feature'
+ exempt-pr-labels: 'Core Team,Resolution: Help Wanted,Resolution: Workaround,Status: Discussion,Status: In Progress,Status: Pending Review'
+ exempt-all-milestones: true
+ days-before-stale: 360
+ days-before-close: 7
+ close-issue-reason: 'not_planned'
+ stale-issue-message: 'This issue has been automatically marked as stale. **If this issue is still affecting you with the latest version, please leave any comment**, and we will keep it open. We are sorry that we have not been able to prioritize it yet. If you have any new additional information, please include it with your comment!'
+ close-issue-message: 'Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please create a new issue with up-to-date information. Thank you for your understanding!'
+ stale-pr-message: 'This pull request has been automatically marked as stale. **If this pull request is still relevant, please leave any comment**, and we will keep it open. We are sorry that we have not been able to prioritize reviewing it yet. Your contribution is very much appreciated.'
+ close-pr-message: 'Closing this pull request after a prolonged period of inactivity. If this issue is still present in the latest release, please ask for this pull request to be reopened. Thank you for your understanding!'
diff --git a/.gitignore b/.gitignore
index 9a59e731ce..d65a72f731 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,17 +1,46 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
/node_modules
-/public/resources/primereact.css
-/public/resources/primereact.min.css
-/public/resources/**/*.map
-/public/resources/images/
-.DS_Store
-/build
+/.pnp
+.pnp.js
/vscode
/.vscode
/idea
/.idea
/.sass-cache
-/resources
-/components
-/src/sass/App.css
-/src/sass/App.css.map
-package-lock.json
\ No newline at end of file
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+tsconfig.tsbuildinfo
+
+# production
+/dist
+/build
+
+# misc
+.DS_Store
+*.pem
+*.code-workspace
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+# vercel
+.vercel
+
+# next version
+/apps
+/packages
diff --git a/.npmignore b/.npmignore
index c813fa8674..a78787661b 100644
--- a/.npmignore
+++ b/.npmignore
@@ -1,5 +1,6 @@
.sass-cache
node_modules
+/dist
public
src
.gitignore
@@ -10,4 +11,7 @@ yarn.lock
.github
exports
vscode
-.vscode
\ No newline at end of file
+.vscode
+.editorconfig
+package-lock.json
+npm-shrinkwrap.json
diff --git a/.nvmrc b/.nvmrc
deleted file mode 100644
index 9773998bc1..0000000000
--- a/.nvmrc
+++ /dev/null
@@ -1 +0,0 @@
-v6.0.0
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 0000000000..728fc9f8a7
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,9 @@
+# Ignore artifacts:
+build
+coverage
+dist
+out
+public
+styles
+node_modules
+.vscode
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 0000000000..281eb9c283
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,10 @@
+{
+ "useTabs": false,
+ "tabWidth": 4,
+ "trailingComma": "none",
+ "semi": true,
+ "singleQuote": true,
+ "jsxSingleQuote": false,
+ "printWidth": 250,
+ "bracketSameLine": false
+}
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000000..b650dca594
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,7 @@
+{
+ "recommendations": [
+ "dbaeumer.vscode-eslint",
+ "esbenp.prettier-vscode",
+ "sibiraj-s.vscode-scss-formatter"
+ ]
+}
diff --git a/.vscode/settings.team.json b/.vscode/settings.team.json
new file mode 100644
index 0000000000..6e322b1adf
--- /dev/null
+++ b/.vscode/settings.team.json
@@ -0,0 +1,27 @@
+{
+ "editor.codeActionsOnSave": {
+ "source.fixAll.eslint": true,
+ "source.organizeImports": true
+ },
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
+ "[javascript]": {
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
+ "editor.formatOnSave": true
+ },
+ "[typescript]": {
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
+ "editor.formatOnSave": true
+ },
+ "[typescriptreact]": {
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
+ "editor.formatOnSave": true
+ },
+ "[css]": {
+ "editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter",
+ "editor.formatOnSave": true
+ },
+ "[scss]": {
+ "editor.defaultFormatter": "sibiraj-s.vscode-scss-formatter",
+ "editor.formatOnSave": true
+ }
+}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 257b796589..dbbe608717 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,1347 +1,1081 @@
# Changelog
-## [4.2.0](https://github.com/primefaces/primereact/tree/4.2.0) (2020-04-17)
-[Full Changelog](https://github.com/primefaces/primereact/compare/4.1.2...4.2.0)
-
-**Implemented New Features and Enhancements:**
-- New Component: InputNumber [\#1311](https://github.com/primefaces/primereact/issues/1311)
-- Add filterLocale property to Tree [\#1338](https://github.com/primefaces/primereact/issues/1338)
-- Add filterLocale property to TreeTable [\#1337](https://github.com/primefaces/primereact/issues/1337)
-- Add filterLocale property to MultiSelect [\#1336](https://github.com/primefaces/primereact/issues/1336)
-- Add filterLocale property to ListBox [\#1335](https://github.com/primefaces/primereact/issues/1335)
-- Add filterLocale property to Dropdown [\#1334](https://github.com/primefaces/primereact/issues/1334)
-- Add filterLocale property to DataTable [\#1333](https://github.com/primefaces/primereact/issues/1333)
-- Add checkValidity method to MultiSelect [\#1332](https://github.com/primefaces/primereact/issues/1332)
-- onFocus - onBlur for ToggleButton [\#1330](https://github.com/primefaces/primereact/issues/1330)
-- Update sortIcons [\#1329](https://github.com/primefaces/primereact/issues/1329)
-- Disabled prop for TriStateCheckbox [\#1325](https://github.com/primefaces/primereact/issues/1325)
-- Refactor OverlayPanel outside click detection [\#1320](https://github.com/primefaces/primereact/issues/1320)
-- Refactor MultiSelect outside click detection [\#1319](https://github.com/primefaces/primereact/issues/1319)
-- Refactor Menu outside click detection [\#1318](https://github.com/primefaces/primereact/issues/1318)
-- Refactor ColorPicker outside click detection [\#1317](https://github.com/primefaces/primereact/issues/1317)
-- Refactor Dropdown outside click detection [\#1310](https://github.com/primefaces/primereact/issues/1310)
-- Refactor AutoComplete outside click detection [\#1308](https://github.com/primefaces/primereact/issues/1308)
-- MultiSelect/Dropdown expose input attributes for labeling and validation purposes [\#1306](https://github.com/primefaces/primereact/issues/1306)
-- Autocomplete dropdown button close behavior enhancement [\#1305](https://github.com/primefaces/primereact/issues/1305)
-- Improve timepicker style on Calendar [\#1294](https://github.com/primefaces/primereact/issues/1294)
-- Add milliseconds support to Calendar [\#1293](https://github.com/primefaces/primereact/issues/1293)
-- Not nullable `dataKey` in DropDown break `selectedOption` property [\#1286](https://github.com/primefaces/primereact/issues/1286)
-- Separator for Chips [\#1285](https://github.com/primefaces/primereact/issues/1285)
+## [10.9.7](https://github.com/primefaces/primereact/tree/10.9.7) (2025-08-15)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.9.6...10.9.7)
+
+**Enhancements:**
+
+- Add in Multiselect filterInputKeyDown to filterTemplate options for consistency with Dropdown [#8199](https://github.com/primefaces/primereact/pull/8199)
+
+**Fixed Bugs:**
+
+- Dropdown: show emptyMessage when Dropdown with VirtualScroller has no data [#8125](https://github.com/primefaces/primereact/pull/8125)
+- fix(menubar): clicking submenu header inside dropdown [#8175](https://github.com/primefaces/primereact/pull/8175)
+- Datatable: onRowSelect and onRowUnselect callbacks inconsistent when clicking checkbox in DataTable (v10.9.5) [#8096](https://github.com/primefaces/primereact/issues/8096)
+- Missing Icons in API [#8095](https://github.com/primefaces/primereact/issues/8095)
+- SplitButton: Null id and custom menu items id [#8075](https://github.com/primefaces/primereact/issues/8075)
+- Data Table: Custom Fields documentation example is wrong [#8121](https://github.com/primefaces/primereact/issues/8121)
+- Datatable ignores Column sortFunction on initial sort [#7405](https://github.com/primefaces/primereact/issues/7405)
+- ToggleButton - Accessibility bug [#8021](https://github.com/primefaces/primereact/issues/8021)
+- Dialog: When out of the viewport, dialog cannot be esaily dragged back [#8090](https://github.com/primefaces/primereact/issues/8090)
+- MultiStateCheckbox: missing invalid and variant props in TypeScript interface [#8085](https://github.com/primefaces/primereact/issues/8085)
+- DataTable: Wrong TypeScript definition for cell selection [#8115](https://github.com/primefaces/primereact/issues/8115)
+- DataTable: Cell Editing and Dropdown Filter Interaction [#7158](https://github.com/primefaces/primereact/issues/7158)
+- Dropdown: Item list immediately closes after opening [#8080](https://github.com/primefaces/primereact/issues/8080)
+- Clear filter button not working when filters prop is not provided [#8138](https://github.com/primefaces/primereact/issues/8138)
+- InputNumber: wrong internal value for decimal numbers using the spin [#8132](https://github.com/primefaces/primereact/issues/8132)
+- DataTable changes data in another row when you changes something in a row [#8079](https://github.com/primefaces/primereact/issues/8079)
+- DataTable: Memo props leak to DOM - React does not recognize the ... prop on DOM element. [#8120](https://github.com/primefaces/primereact/issues/8120)
+- Button: When using a Button inside of a OrderList itemTemplate component, only outside of icon is clickable [#8145](https://github.com/primefaces/primereact/issues/8145)
+- Carousel: Broken when running without React.StrictMode [#3985](https://github.com/primefaces/primereact/issues/3985)
+- TreeSelect Filter Mode not Lenient [#8005](https://github.com/primefaces/primereact/issues/8005)
+- TreeSelect: Wrong position openning upward and using filter [#8089](https://github.com/primefaces/primereact/issues/8089)
+- DatePicker setting seconds when showTime is true and showSeconds is false [#8140](https://github.com/primefaces/primereact/issues/8140)
+- DataTable: Multiple frozen columns - Headers freeze but data columns don't align properly [#8107](https://github.com/primefaces/primereact/issues/8107)
+- TreeSelect: Collapse/Expand not working if filter is applied [#8197](https://github.com/primefaces/primereact/issues/8197)
+- Calendar: incorrect value via arrorws and month picker when use callback onMonthChange [#8201](https://github.com/primefaces/primereact/issues/8201)
+- DataTable: dissapearing values when clicking quickly [#8099](https://github.com/primefaces/primereact/issues/8099)
+- MultiSelect: missing filterInputKeyDown handler in filterTemplate options (unlike Dropdown) [#8152](https://github.com/primefaces/primereact/issues/8145)
+- Column Filter Accessibility issue in DataTable [#8219](https://github.com/primefaces/primereact/issues/8219)
+
+## [10.9.6](https://github.com/primefaces/primereact/tree/10.9.6) (2025-06-02)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.9.5...10.9.6)
+
+**Enhancements:**
+
+- CascadeSelect: Missing panelClassName and panelStyle props [#8000](https://github.com/primefaces/primereact/issues/8000)
+- CascadeSelect: Missing showClear prop [#8006](https://github.com/primefaces/primereact/issues/8006)
+- MultiStateCheckbox: Missing id prop [#7997](https://github.com/primefaces/primereact/issues/7997)
+- TreeSelect is missing onNodeClick and onNodeDoubleClick callbacks [#6778](https://github.com/primefaces/primereact/issues/6778)
+- MultiStateCheckbox: Missing support for invalid and variant props [#8019](https://github.com/primefaces/primereact/issues/8019)
+- Add showCloseIcon props to Dialog [#8053](https://github.com/primefaces/primereact/issues/8053)
+
+**Fixed Bugs:**
+
+- Datatable: CellEdit and general issues with portal editors [#7405](https://github.com/primefaces/primereact/issues/7405)
+- InputNumber: numpad decimal separator for locales that use comma as decimal separator [#7809](https://github.com/primefaces/primereact/issues/7809)
+- Calendar: When text input is focused the date cannot be selected from the first click on the panel [#7992](https://github.com/primefaces/primereact/issues/7992)
+- MultiSelect: keyboard down event does not pass to MultiSelectPanel component [#7756](https://github.com/primefaces/primereact/issues/7756)
+- File Upload: selecting the same file twice removes the file [#7989](https://github.com/primefaces/primereact/issues/7989)
+- DataTable: RowTogglerButton has no accessible name due to missing expandLabel and collapseLabel in locale config [#8023](https://github.com/primefaces/primereact/issues/8023)
+- MultiStateCheckbox: Conflicting aria-checked usage on both custom container and native input [#8022](https://github.com/primefaces/primereact/issues/8022)
+- FilterMatchMode: Missing enumeration case notIn [#8026](https://github.com/primefaces/primereact/issues/8026)
+- MenuItem: template property causes p-focus on the first item in the list [#7979](https://github.com/primefaces/primereact/issues/7979)
+- DataTable: Incorrect grouping of rows when using the Paginator [#8011](https://github.com/primefaces/primereact/issues/8011)
+- TriStateCheckbox: Missing id prop [#8018](https://github.com/primefaces/primereact/issues/8018)
+- AutoComplete: Bad type when using custom template definitions [#7984](https://github.com/primefaces/primereact/issues/7984)
+- Calendar: Manual Input breaking with dd M yy date format [#7675](https://github.com/primefaces/primereact/issues/7675)
+- Galleria: doesn't work correctly if value is set dynamically [#7450](https://github.com/primefaces/primereact/issues/7450)
+- Dropdown: onClick is called twice [#7941](https://github.com/primefaces/primereact/issues/7941)
+- File Upload: Shows Nan undefined text when trying to clear the uploaded file [#7949](https://github.com/primefaces/primereact/issues/7949)
+- DataTable: CSV export includes empty trailing column [#7953](https://github.com/primefaces/primereact/issues/7953)
+- PickList: Incorrect types in the documentation [#7938](https://github.com/primefaces/primereact/issues/7938)
+- HELP ! DataTable : Column body component dropdown doesn't update options when the source changes in the parent [#7987](https://github.com/primefaces/primereact/issues/7987)
+- InputNumber: PR #7868 (10.9.5) breaks existing code [#7977](https://github.com/primefaces/primereact/issues/7977)
+- ListBox: Inconsistent casing in component interface: ListboxPassThroughOptions should be ListBoxPassThroughOptions [#8020](https://github.com/primefaces/primereact/issues/8020)
+- File Upload: Remove icon only works with double click when using removeIcon prop [#8033](https://github.com/primefaces/primereact/issues/8033)
+- DataTable: bugs when updating data [#7942](https://github.com/primefaces/primereact/issues/7942)
+- Datatable: Expanding is erratic [#8031](https://github.com/primefaces/primereact/issues/8031)
+- DataTable: Cancel edit row causes undefined error [#8043](https://github.com/primefaces/primereact/issues/8043)
+- Calendar: invalid prevPropValue caused an error: Uncaught TypeError: prevPropValue.getTime is not a function [#8042](https://github.com/primefaces/primereact/issues/8042)
+- Column body function not re-executed when state value used inside changes [#8055](https://github.com/primefaces/primereact/issues/8055)
+- MultiSelect: A component is changing an uncontrolled input to be controlled. [#7896](https://github.com/primefaces/primereact/issues/7896)
+- MultiSelect has non-unique key warning [#8049](https://github.com/primefaces/primereact/issues/8049)
+
+## [10.9.5](https://github.com/primefaces/primereact/tree/10.9.5) (2025-04-25)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.9.4...10.9.5)
+
+**Fixed Bugs:**
+
+- OrderList: Scroll Not Updating with Item Movement [#7229](https://github.com/primefaces/primereact/issues/7229)
+- Dropdown component: onLazyLoad triggers on every open, and onFilter re-renders with empty search results, clearing typed input [#7337](https://github.com/primefaces/primereact/issues/7337)
+- InputNumber: No possibility to prevent decimal values [#7455](https://github.com/primefaces/primereact/issues/7455)
+- TreeSelect: Delayed character display when typing [#7805](https://github.com/primefaces/primereact/issues/7805)
+- InputOtp: autoFocus prop on InputOtp doesn't do anything [#7806](https://github.com/primefaces/primereact/issues/7806)
+- Dropdown: selecting the option when esc key pressed [#7828](https://github.com/primefaces/primereact/issues/7828)
+- TriStateCheckbox: spurious empty string given as value [#7844](https://github.com/primefaces/primereact/issues/7844)
+- Accessibility Issue: Readonly Components React to Keyboard Control [#7849](https://github.com/primefaces/primereact/issues/7849)
+- InputMask: Value not displayed when set directly in state [#7851](https://github.com/primefaces/primereact/issues/7851)
+- Mention: Component does not accept variant prop [#7864](https://github.com/primefaces/primereact/issues/7864)
+- TreeSelect: filterDelay issue [#7867](https://github.com/primefaces/primereact/issues/7867)
+- Dropdown - missing typescript definition for filterClearIcon pt options [#7887](https://github.com/primefaces/primereact/issues/7887)
+- AutoComplete/Dropdown: in props panelFooterTemplate, the hide() method is not being called as expected [#7881](https://github.com/primefaces/primereact/issues/7881)
+- Calendar (Accessibility issue): Component loses focus when closing popup using escape key [#7890](https://github.com/primefaces/primereact/issues/7890)
+- CascadeSelect: Problem with loading prop in typescript [#7892](https://github.com/primefaces/primereact/issues/7892)
+- Autocomplete: Can still remove values when readOnly is enabled [#7894](https://github.com/primefaces/primereact/issues/7894)
+- OverlayPanel: invalid position when on the edge [#7901](https://github.com/primefaces/primereact/issues/7901)
+- OverlayPanel: Position is not updated on scroll from wrapper element [#7903](https://github.com/primefaces/primereact/issues/7903)
+- Chip: When I use a React component as the value in the template prop of the Chip component, the template component unmounts and remounts whenever the state updates [#7911](https://github.com/primefaces/primereact/issues/7911)
+- Chip: Chip close icon click is not working properly in Menu component [#7912](https://github.com/primefaces/primereact/issues/7912)
+- TriStateCheckbox: 'null' state is an empty string, not null [#7914](https://github.com/primefaces/primereact/issues/7914)
+- MenuBar : remove aria-level attribute from list item [#7922](https://github.com/primefaces/primereact/issues/7922)
+- Datatable: takes long time to response upon grid selection on 1000+ rows [#7926](https://github.com/primefaces/primereact/issues/7926)
+- Breadcrumb: disabled item receives keyboard focus [#7929](https://github.com/primefaces/primereact/issues/7929)
+- Menubar: Clicking on different Menubar component items doesn't close Menu itself [#7931](https://github.com/primefaces/primereact/issues/7931)
+
+## [10.9.2](https://github.com/primefaces/primereact/tree/10.9.2) (2025-01-24)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.9.1...10.9.2)
+
+**Fixed Bugs:**
+
+- className Prop Doesn't Apply to Button Element in ToggleButton [#7630](https://github.com/primefaces/primereact/issues/7630)
+- checkboxElement in MultiSelectPanelHeaderTemplateEvent has wrong interface [#7622](https://github.com/primefaces/primereact/issues/7622)
+- AutoComplete: Typo in the empty message pass through [#7618](https://github.com/primefaces/primereact/issues/7618)
+- MultiSelect showClear Keyboard Trap [#7613](https://github.com/primefaces/primereact/issues/7613)
+- Setting RowReorderIcon breaks drag styles [#7612](https://github.com/primefaces/primereact/issues/7612)
+- Calendar KeyBoard Accessibility Issue When Showed Two Months And Pressed the ArrowRight [#7604](https://github.com/primefaces/primereact/issues/7604)
+- Today Button not visible for maxDate [#7602](https://github.com/primefaces/primereact/issues/7602)
+- Tree: Incorrect props and types in documentation [#7599](https://github.com/primefaces/primereact/issues/7599)
+- Today Button is hidden for maxDate with value as new Date() [#7598](https://github.com/primefaces/primereact/issues/7598)
+- MultiSelect: it recognised the group options as standalone groups because of the “group“ key appearance [#7595](https://github.com/primefaces/primereact/issues/7595)
+- Calendar: year is not getting updated on Clear button [#7581](https://github.com/primefaces/primereact/issues/7581)
+- Dropdown: The selected option is not unselected from the list on clear action [#7576](https://github.com/primefaces/primereact/issues/7576)
+- ListBox: No item is displayed when virtualScrollerOptions is used [#7574](https://github.com/primefaces/primereact/issues/7574)
+- Core: Allow hideOverlaysOnDocumentScrolling to also work in dialogs [#7566](https://github.com/primefaces/primereact/issues/7566)
+- KeyFilter: Incorrect handling of dash and dot in numeric inputs [#7557](https://github.com/primefaces/primereact/issues/7557)
+- Calendar: Improve type declaration using generic types with default parameters [#7555](https://github.com/primefaces/primereact/issues/7555)
+- Calendar: onSelect is forcing date while typing [#7553](https://github.com/primefaces/primereact/issues/7553)
+- Fix #7180 Screenreader improve hidden accessible [#7180](https://github.com/primefaces/primereact/issues/7180)
+- Dropdown/MultiSelect: Add filterDelay property for debounce [#7547](https://github.com/primefaces/primereact/issues/7547)
+- Datatable: Sort with multiselect - wrong selection [#7546](https://github.com/primefaces/primereact/issues/7546)
+- DataTable: Frozen alignRight not working [#7545](https://github.com/primefaces/primereact/issues/7545)
+- How to format the selected item in Autocomplete [#7522](https://github.com/primefaces/primereact/issues/7522)
+- TreeTable using stripedRows: children rows are not striped correctly [#7513](https://github.com/primefaces/primereact/issues/7513)
+- TreeTable: Wrong data format in the docs [#7504](https://github.com/primefaces/primereact/issues/7504)
+- InputTextarea: autoResize not working when disabled [#7502](https://github.com/primefaces/primereact/issues/7502)
+
+## [10.9.1](https://github.com/primefaces/primereact/tree/10.9.1) (2025-01-02)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.9.0...10.9.1)
+
+**Fixed Bugs:**
+
+- All (with icons) - react is not defined [#7544](https://github.com/primefaces/primereact/issues/7544)
+
+## [10.9.0](https://github.com/primefaces/primereact/tree/10.9.0) (2025-01-02)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.5...10.9.0)
+
+**Fixed Bugs:**
+
+- Filter: Does not work with space [#7529](https://github.com/primefaces/primereact/issues/7529)
+- Dropdown: Editable Dropdown search not working as expected. [#7527](https://github.com/primefaces/primereact/issues/7527)
+- ConfirmDialog: refs issue for react 19 [#7523](https://github.com/primefaces/primereact/issues/7523)
+- How to format the selected item in Autocomplete [#7522](https://github.com/primefaces/primereact/issues/7522)
+- Theming docs: configurator icon in the text does not match the referenced toolbar icon [#7518](https://github.com/primefaces/primereact/issues/7518)
+- The InputTextarea component with the autoResize property shrinks within the TabView when renderActiveOnly={false} is set. [#7517](https://github.com/primefaces/primereact/issues/7517)
+- DataTable is not displayed within the TabView when renderActiveOnly={false} is set. [#7516](https://github.com/primefaces/primereact/issues/7516)
+- Dropdown: Lack of the p-inputwrapper-filled class for the null value [#7515](https://github.com/primefaces/primereact/issues/7515)
+- [Dialog component] Warning: Accessing element.ref was removed in React 19 [#7510](https://github.com/primefaces/primereact/issues/7510)
+- Calendar: yearNavigator + view="month" doesn't work [#7496](https://github.com/primefaces/primereact/issues/7496)
+- ConfirmDialog: onHide prop is triggered immediately [#7494](https://github.com/primefaces/primereact/issues/7494)
+- TreeTable : Console warning when customizing the toggler [#7490](https://github.com/primefaces/primereact/issues/7490)
+- ScrollPanel: Null Reference Error in iOS Safari/WKWebView [#7489](https://github.com/primefaces/primereact/issues/7489)
+- Toast remove function removes all toasts with the same message when action is done on toast with pId = 0 [#7483](https://github.com/primefaces/primereact/issues/7483)
+- DataTable: Drag Selection Issue with Grouped Rows [#7480](https://github.com/primefaces/primereact/issues/7480)
+- Password: Warning message related to aria-hidden displayed when clicking the toggleMask icon [#7473](https://github.com/primefaces/primereact/issues/7473)
+- TreeTable: Multiple filters set at once only keeps the last applied [#7469](https://github.com/primefaces/primereact/issues/7469)
+- Datatable: Sort with multiselect - wrong selection [#7468](https://github.com/primefaces/primereact/issues/7468)
+- Accordion: Incorrect imports in templatedoc [#7466](https://github.com/primefaces/primereact/issues/7466)
+- DataTable HeaderCell: menu-type text filter does not accept spaces if the column is sortable [#7459](https://github.com/primefaces/primereact/issues/7459)
+- Checkbox: onBlur does not forward event object [#7440](https://github.com/primefaces/primereact/issues/7440)
+- TabView: Unable to select closable icon of tabs through keyboard [#7437](https://github.com/primefaces/primereact/issues/7437)
+- Button: Global esc key listener with priority [1200, 0] already exists [#7436](https://github.com/primefaces/primereact/issues/7436)
+- Dropdown: warning when using useOptionAsValue [#7409](https://github.com/primefaces/primereact/issues/7409)
+- Issue with PrimeReact Dialog on Next.js 15 and React 19 [#7403](https://github.com/primefaces/primereact/issues/7403)
+- TreeTable: selected rows are not highlighted [#7387](https://github.com/primefaces/primereact/issues/7387)
+- Accessibility: Improve Screenreader support [#7180](https://github.com/primefaces/primereact/issues/7180)
+
+## [10.8.5](https://github.com/primefaces/primereact/tree/10.8.5) (2024-11-28)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.4...10.8.5)
+
+**Fixed Bugs:**
+
+- The dropdown options panel stays open on focus lost [#7313](https://github.com/primefaces/primereact/issues/7313)
+- DataTable - Sort cannot be triggered via keyboard [#7451](https://github.com/primefaces/primereact/issues/7451)
+- Calendars docs are inaccurate about aria-labels [#7452](https://github.com/primefaces/primereact/issues/7452)
+- ToggleButton : nbsp; when label is empty [#7330](https://github.com/primefaces/primereact/issues/7330)
+- DropdownItem: Error: "key" prop is being spread into JSX [#7423](https://github.com/primefaces/primereact/issues/7423)
+- DataTable 10.8.4: Drag Selection is still broken [#7321](https://github.com/primefaces/primereact/issues/7321)
+- PrimeReactProvider: cssTransition false does not disable animations globally [#7395](https://github.com/primefaces/primereact/issues/7395)
+- Calendar component in DataTable PrimeReact 10.x: Date selection sets value to null, Clear button works as expected [#7389](https://github.com/primefaces/primereact/issues/7389)
+- Fixed Typo in Sidebar gteMask to getMask [#7398](https://github.com/primefaces/primereact/issues/7398)
+- Need event inside the onHide callback [#7393](https://github.com/primefaces/primereact/issues/7393)
+- Row component does not receive className and style property [#7329](https://github.com/primefaces/primereact/issues/7329)
+- MultiSelect: Unable to select remove icon of chips through keyboard [#7349](https://github.com/primefaces/primereact/issues/7349)
+- MultiSelect: Cannot access the close Icon and clear the input using keyboard in Filled mode [#7377](https://github.com/primefaces/primereact/issues/7377)
+- Mention: Auto resize feature is not working [#7367](https://github.com/primefaces/primereact/issues/7367)
+- Dropdown: Allow null / "" / [] / {} again as option values [#7370](https://github.com/primefaces/primereact/issues/7370)
+- Mention - autoResize [#6296](https://github.com/primefaces/primereact/issues/6296)
+- Chip: unique "key" prop warning [#7368](https://github.com/primefaces/primereact/issues/7368)
+- TreeTable: Unable to custom columns' filter [#5382](https://github.com/primefaces/primereact/issues/5382)
+- Messages: aria-label not included in close button attributes [#7364](https://github.com/primefaces/primereact/issues/7364)
+- TreeSelect errors on render in storybook due to treeRef.current being null [#7362](https://github.com/primefaces/primereact/issues/7362)
+- Multiselect: All items at the same index in a group are marked focused [#6678](https://github.com/primefaces/primereact/issues/6678)
+- InputMask: Classname p-filled not works fine [#7354](https://github.com/primefaces/primereact/issues/7354)
+- Documentation for CSS Modules: Cascaded classes [#7347](https://github.com/primefaces/primereact/issues/7347)
+- AutoComplete: selectedItemTemplate displays [Object object] [#6633](https://github.com/primefaces/primereact/issues/6633)
+- MultiSelect: Inline is not working on tables filter anymore [#6838](https://github.com/primefaces/primereact/issues/6838)
+- InputTextarea: Duplicated class in DOM using className [#7345](https://github.com/primefaces/primereact/issues/7345)
+- MultiSelect: inline can't be used at first render [#7341](https://github.com/primefaces/primereact/issues/7341)
+- AutoComplete: Selected item is not getting highlighted when visited again unlike Dropdown component [#7330](https://github.com/primefaces/primereact/issues/7330)
+- Multiselect: Сhip options can be closed outside of overflow [#7125](https://github.com/primefaces/primereact/issues/7125)
+- Dropdown: Arrows select not working when using optionValue [#7318](https://github.com/primefaces/primereact/issues/7318)
+- InputNumber: Infinite Loop When Unmount Component [#7323](https://github.com/primefaces/primereact/issues/7323)
+
+## [10.8.4](https://github.com/primefaces/primereact/tree/10.8.4) (2024-09-09)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.3...10.8.4)
+
+**Fixed Bugs:**
+
+- TriStateCheckbox: Warning: value prop on input should not be null. Consider using an empty string to clear the component or undefined for uncontrolled components. [#7313](https://github.com/primefaces/primereact/issues/7313)
+- DataTable: onSelectionChange getting fired on column element click also [#7309](https://github.com/primefaces/primereact/issues/7309)
+- DOCS: Theme switcher don't show Material design indigo themes. Shows purple instead [#7304](https://github.com/primefaces/primereact/issues/7304)
+- Dialog : use the locale property aria.close [#7301](https://github.com/primefaces/primereact/issues/7301)
+- Steps component: Unable to control the active step using activeIndex prop [#7298](https://github.com/primefaces/primereact/issues/7298)
+- Dropdown: OptionGroup using optionGroupLabel is blank [#7285](https://github.com/primefaces/primereact/issues/7285)
+- InputText: props.invalid does not work correctly in Passthrough (Tailwind) [#7275](https://github.com/primefaces/primereact/issues/7275)
+- TreeTable: alignHeader takes no effect [#7270](https://github.com/primefaces/primereact/issues/7270)
+- TreeTable: size prop not working, even in official StackBlitz example [#7269](https://github.com/primefaces/primereact/issues/7269)
+- Menu: separators cannot be hidden [#7261](https://github.com/primefaces/primereact/issues/7261)
+- Tooltip event="both" does not work if element get focus state by clicking on it [#7260](https://github.com/primefaces/primereact/issues/7260)
+- SplitButton: menu pass-through not working [#7259](https://github.com/primefaces/primereact/issues/7259)
+- DataTable: Select all checkbox on header row not working properly when scrollable is true [#7258](https://github.com/primefaces/primereact/issues/7258)
+- Sidebar: closeIconRef parameter error [#7255](https://github.com/primefaces/primereact/issues/7255)
+- Calendar: selecting a new year is not being reflected when transitioning to the month view. [#7254](https://github.com/primefaces/primereact/issues/7254)
+- Mention: Add show/hide to typescript and docs [#7242](https://github.com/primefaces/primereact/pull/7242)
+- DataTable incorrectly indicates drop functionality for unrelated draggable elements [#7239](https://github.com/primefaces/primereact/issues/7239)
+- Calendar: The yearNavigator does not update the displayed year after selecting a new year. [#7234](https://github.com/primefaces/primereact/issues/7234)
+
+## [10.8.3](https://github.com/primefaces/primereact/tree/10.8.3) (2024-09-16)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.2...10.8.3)
+
+**Fixed Bugs:**
+
+- Fix #6987: Dropdown filter freezes screen [#6987](https://github.com/primefaces/primereact/pull/6991)
+- Fix #6997: MenuBar re-render on props.model changes [#6997](https://github.com/primefaces/primereact/pull/6999)
+- Fix #6993: fix Editor bullet issue when using Quill 2.0.2 [#6993](https://github.com/primefaces/primereact/pull/7004)
+- Fix #7002: Dropdown improve Android key handling [#7002](https://github.com/primefaces/primereact/pull/7003)
+- Fix #6995: Key should be reference on element and not spread [#6995](https://github.com/primefaces/primereact/pull/7000)
+- Fix #7005: Avoid droppoints within undroppable node, not around [#7005](https://github.com/primefaces/primereact/pull/7005)
+- Fix #7006: typos in DataTable documentation [#7006](https://github.com/primefaces/primereact/pull/7006)
+- Fix #7008: calendar not closing on escape key press [#7008](https://github.com/primefaces/primereact/pull/7008)
+- Fix #7016: Revert CascadeSelect type for input [#7016](https://github.com/primefaces/primereact/pull/7019)
+- Fix #7014: inserting mentions results in duplicated text [#7014](https://github.com/primefaces/primereact/pull/7017)
+- Fix #7015: Calendar passthrough type definition and docs [#7015](https://github.com/primefaces/primereact/pull/7021)
+- Fix #7016: CascadeSelect passthrough type definition and docs [#7016](https://github.com/primefaces/primereact/pull/7020)
+- Fix #6996: keep the selected row in its position when it gets focused [#6996](https://github.com/primefaces/primereact/pull/7022)
+- Fix #7023: Toast typescript def for content [#7023](https://github.com/primefaces/primereact/pull/7024)
+- Fix #7027: remove v-model example from iconfield documentation [#7027](https://github.com/primefaces/primereact/pull/7027)
+- Fix #7029: remove v-model example from iconfield documentation [#7029](https://github.com/primefaces/primereact/pull/7029)
+- Fix #7030: missing commas in PrimeReact message examples [#7030](https://github.com/primefaces/primereact/pull/7030)
+- Fix #7032: Passthrough options type and missing docs [#7032](https://github.com/primefaces/primereact/pull/7033)
+- Fix #7035: Dropdown: Remove unused depreciated code [#7035](https://github.com/primefaces/primereact/pull/7036)
+- Fix #7013: Fix RadioButton appearing without tailwind style [#7013](https://github.com/primefaces/primereact/pull/7047)
+- Fix #7046: TreeTable typescript for PT row/column [#7046](https://github.com/primefaces/primereact/pull/7048)
+- Fix #7050: HeaderCheckbox passthrough [#7050](https://github.com/primefaces/primereact/pull/7053)
+- Fix #6998: add closest check condition to detect handle icon drag [#6998](https://github.com/primefaces/primereact/pull/7051)
+- Fix #6868: Refactor location of tailwind styles [#6868](https://github.com/primefaces/primereact/pull/7057)
+- Fix #7037: Dropdown: Cannot change icon when expanding or collapsing options [#7037](https://github.com/primefaces/primereact/pull/7038)
+- Fix #7061: Typo in Tailwind secondary button style [#7061](https://github.com/primefaces/primereact/pull/7062)
+- Fix #7040: Stepper: add header position [#7040](https://github.com/primefaces/primereact/pull/7040)
+- Fix #7042: Add Tailwind styling for IconField [#7042](https://github.com/primefaces/primereact/pull/7066)
+- Fix #6855: ConfirmDialog group missing from typescript [#6855](https://github.com/primefaces/primereact/pull/7068)
+- Fix #7074: ConfirmDialog - RejectButton classes in unstyled mode are not applied [#7074](https://github.com/primefaces/primereact/pull/7075)
+- Fix #7069: Correct passthrough (pt) implementation for Stepperpanel [#7069](https://github.com/primefaces/primereact/pull/7069)
+- Fix #7078: Typo in tailwinddoc of splitter [#7078](https://github.com/primefaces/primereact/pull/7078)
+- Fix #7079: allow zero value using nullish coalescing operator(Slider) [#7079](https://github.com/primefaces/primereact/pull/7079)
+- Fix #7084: formatting [#7084](https://github.com/primefaces/primereact/pull/7084)
+- Fix #7086: add build project in window os [#7086](https://github.com/primefaces/primereact/pull/7086)
+- Fix #7098: chore(deps): bump chart.js from 4.4.3 to 4.4.4 [#7098](https://github.com/primefaces/primereact/pull/7098)
+- Fix #7099: chore(deps-dev): bump @types/node from 20.14.2 to 22.5.2 [#7099](https://github.com/primefaces/primereact/pull/7099)
+- Fix #7100: chore(deps-dev): bump @testing-library/jest-dom from 6.4.8 to 6.5.0 [#7100](https://github.com/primefaces/primereact/pull/7100)
+- Fix #7101: Ensure steps can be programmatically styled [#7101](https://github.com/primefaces/primereact/pull/7101)
+- Fix #7104: Don't mix controlled and uncontrolled filter [#7104](https://github.com/primefaces/primereact/pull/7104)
+- Fix #7102: DataView fix listTemplate typescript def [#7102](https://github.com/primefaces/primereact/pull/7105)
+- Fix #7113: Multiselect focus problem [#7113](https://github.com/primefaces/primereact/pull/7113)
+- Fix #7073: Add missing focused context [#7073](https://github.com/primefaces/primereact/pull/7107)
+- Fix #7109: SplitterPanel pass onClick through [#7109](https://github.com/primefaces/primereact/pull/7114)
+- Fix #6784: Toast onRemove message [#6784](https://github.com/primefaces/primereact/pull/7108)
+- Fix #7110: SpeedDial : Fix aria-controls values [#7110](https://github.com/primefaces/primereact/pull/7111)
+- Fix #7118: Updating Chart accessibility documentation [#7118](https://github.com/primefaces/primereact/pull/7119)
+- Fix #6093: Fix Tailwind styles in unstyled mode [#6093](https://github.com/primefaces/primereact/pull/7124)
+- Fix #7039: Correct Event handling for Cut Command [#7039](https://github.com/primefaces/primereact/pull/7127)
+- Fix #7120: Breadcrumb shows a trailing separator when there [#7120](https://github.com/primefaces/primereact/pull/7133)
+- Fix #7128: document undocumented start and end options, add types & improve [#7128](https://github.com/primefaces/primereact/pull/7128)
+- Fix #5644: Add missing tailwind styles [#5644](https://github.com/primefaces/primereact/pull/7123)
+- Fix #7134: Refactor Dropdown component to support using option as value [#7134](https://github.com/primefaces/primereact/pull/7141)
+- Fix #7137: MultiSelect template docs [#7137](https://github.com/primefaces/primereact/pull/7143)
+- Fix #7136: Defines a new File type extended with custom objectURL property [#7136](https://github.com/primefaces/primereact/pull/7145)
+- Fix #6857: Adjust top up by 1px when gridlines are active [#6857](https://github.com/primefaces/primereact/pull/7151)
+- Fix #7149: make AdditionalProps argument in IconOptions type optional [#7149](https://github.com/primefaces/primereact/pull/7149)
+- Fix #7126: update Tree TypeScript documentation [#7126](https://github.com/primefaces/primereact/pull/7160)
+- Fix #7161: replace src value in DataTable typescript documentation [#7161](https://github.com/primefaces/primereact/pull/7162)
+- Fix #7166: Datatable : fix ColumnFilter aria-controls [#7166](https://github.com/primefaces/primereact/pull/7167)
+- Fix #7163: Refactor AutoComplete.js to fix the group selection [#7163](https://github.com/primefaces/primereact/pull/7164)
+- Fix #7155: prevent onselect event when prev, next calendar button [#7155](https://github.com/primefaces/primereact/pull/7155)
+- Fix #7165: Badge/Tag typescript add secondary and contrast [#7165](https://github.com/primefaces/primereact/pull/7168)
+- Fix #7171: TabMenu - resolve rendering issue of stackblitz apps for Command and Template examples [#7171](https://github.com/primefaces/primereact/pull/7171)
+- Fix #7174: Datatable frozen columns bug [#7174](https://github.com/primefaces/primereact/pull/7174)
+- Fix #7175: Fixing accessibility issue of dropdown [#7175](https://github.com/primefaces/primereact/pull/7175)
+- Fix #7178: Panel Menu Component highlights bug [#7178](https://github.com/primefaces/primereact/pull/7178)
+- Fix #7139: InputOtp IntegerOnly mode accepts "space" [#7139](https://github.com/primefaces/primereact/pull/7139)
+- Fix #7181: Tree missing drag drop functionality [#7181](https://github.com/primefaces/primereact/pull/7181)
+- Fix #7183: FloatLabel proper SPAN attributes [#7183](https://github.com/primefaces/primereact/pull/7183)
+- Fix #7189: Pressing buttons on touch devices will not focus InputText in turn Keyboard [#7189](https://github.com/primefaces/primereact/pull/7189)
+- Fix #7190: ContextMenu import error [#7190](https://github.com/primefaces/primereact/pull/7191)
+- Fix #7188: Provide readable input value based on selected option labels [#7188](https://github.com/primefaces/primereact/pull/7188)
+
+## [10.8.2](https://github.com/primefaces/primereact/tree/10.8.2) (2024-08-06)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.1...10.8.2)
+
+**Fixed Bugs:**
+
+- Fixes Font Issues
+- Fix #6989: Datatable errors in console by @melloware [#6990](https://github.com/primefaces/primereact/pull/6990)
+- Fixes to undroppable tree nodes by @rpiaggio [#6988](https://github.com/primefaces/primereact/pull/6988)
+
+## [10.8.1](https://github.com/primefaces/primereact/tree/10.8.1) (2024-08-05)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.8.0...10.8.1)
+
+**Fixed Bugs:**
+
+- Fixed typo VUE => React by @sja-cslab [#6947](https://github.com/primefaces/primereact/pull/6947)
+- Editor doesn't show initial value in some cases by @avasuro [#6951](https://github.com/primefaces/primereact/pull/6951)
+- Update Transitions for unstyled Accordion in tailwinddoc.js by @samy-mssi [#6954](https://github.com/primefaces/primereact/pull/6954)
+- Autocomplete autoHighlight prop is inconsistent by @nitrogenous [#6958](https://github.com/primefaces/primereact/pull/6958)
+- Inplace update doc for active and controlled mode by @melloware [#6959](https://github.com/primefaces/primereact/pull/6959)
+- Added ((data: any) => string) to dataKey property definition by @sja-cslab [#6960](https://github.com/primefaces/primereact/pull/6960)
+- InputOtp passthrough input correctly by @melloware [#6965](https://github.com/primefaces/primereact/pull/6965)
+- Bump eslint-config-next from 14.2.4 to 14.2.5 by @dependabot [#6966](https://github.com/primefaces/primereact/pull/6966)
+- Bump @docsearch/react from 3.6.0 to 3.6.1 by @dependabot [#6968](https://github.com/primefaces/primereact/pull/6968)
+- Bump @stackblitz/sdk from 1.10.0 to 1.11.0 by @dependabot [#6969](https://github.com/primefaces/primereact/pull/6969)
+- Bump @testing-library/jest-dom from 6.4.6 to 6.4.8 by @dependabot [#6970](https://github.com/primefaces/primereact/pull/6970)
+- Fix calendar overlay requiring double click on date to select a value when mask is present by @frle10 [#6972](https://github.com/primefaces/primereact/pull/6972)
+- Show how to preserve filter object when mixing column and row by @Et7f3 [#6974](https://github.com/primefaces/primereact/pull/6974)
+- Fix failed to decode font by @KOliver94 [#6977](https://github.com/primefaces/primereact/pull/6977)
+- Make sure header checkbox pt gets set properly in datatable by @peconomou929 [#6979](https://github.com/primefaces/primereact/pull/6979)
+- DT HeaderCheckbox passthrough by @melloware [#6981](https://github.com/primefaces/primereact/pull/6981)
+- Fix(InputNumber): Remove styled true option in useHandleStyle by @KumJungMin [#6980](https://github.com/primefaces/primereact/pull/6980)
+- Stepper onChangeStep function not initially set by @meddvedev [#6982](https://github.com/primefaces/primereact/pull/6982)
+- DataTable with Virtual Scroller and Multiselect; onSelection by @kl-nevermore [#6985](https://github.com/primefaces/primereact/pull/6985)
+- Calendar does not display up-to-date value if date is manually entered by @avasuro [#6986](https://github.com/primefaces/primereact/pull/6986)
+
+## [10.8.0](https://github.com/primefaces/primereact/tree/10.8.0) (2024-07-29)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.7.0...10.8.0)
+
+**Fixed Bugs:**
+
+- Refactor Dropdown.js to improve optionLabel and optionValue retrieval by @Rekl0w [#6831](https://github.com/primefaces/primereact/pull/6831)
+- Update ToastMessage severity options by @Rekl0w [#6832](https://github.com/primefaces/primereact/pull/6832)
+- TreeTable onFilter type def by @melloware [#6837](https://github.com/primefaces/primereact/pull/6837)
+- Add 'contrast' style option to ButtonProps by @Rekl0w [#6839](https://github.com/primefaces/primereact/pull/6839)
+- Updating activeStep does not actually change the active step by @PuppetFoam [#6841](https://github.com/primefaces/primereact/pull/6841)
+- TreeTableSelectionKeys type def by @melloware [#6847](https://github.com/primefaces/primereact/pull/6847)
+- TreeTable Typescript for page event by @melloware [#6848](https://github.com/primefaces/primereact/pull/6848)
+- Datatable loader unstyled non-boolean attribute warning by @meddvedev [#6849](https://github.com/primefaces/primereact/pull/6849)
+- PanelMenu typedef for onOpen/onClose by @melloware [#6850](https://github.com/primefaces/primereact/pull/6850)
+- Sort icons match PrimeVue by @melloware [#6853](https://github.com/primefaces/primereact/pull/6853)
+- Fix panel style in DropdownBase.js by @Rekl0w [#6856](https://github.com/primefaces/primereact/pull/6856)
+- Update z-index for submenu list in MenubarBase.js by @Rekl0w [#6869](https://github.com/primefaces/primereact/pull/6869)
+- Re-rendering of Sidebar component by @jpranays [#6860](https://github.com/primefaces/primereact/pull/6860)
+- Dropdown crashes when label is an empty string by @VytautasLozickas [#6871](https://github.com/primefaces/primereact/pull/6871)
+- Return scalar values directly as a label for Dropdown by @VytautasLozickas [#6872](https://github.com/primefaces/primereact/pull/6872)
+- Change the order of applying default values to props by @KumJungMin [#6879](https://github.com/primefaces/primereact/pull/6879)
+- Hide clear button when options is empty in Dropdown by @KumJungMin [#6880](https://github.com/primefaces/primereact/pull/6880)
+- Revert #6058 by @melloware [#6885](https://github.com/primefaces/primereact/pull/6885)
+- Fix: Combine the className props in the Menu separator by @jijiseong [#6884](https://github.com/primefaces/primereact/pull/6884)
+- TreeTable onResizeEnd incorrect column value by @melloware [#6886](https://github.com/primefaces/primereact/pull/6886)
+- Update onDateSelect function to include isUpdateViewDate parameter by @Rekl0w [#6890](https://github.com/primefaces/primereact/pull/6890)
+- Tree inputText's onChange in nodeTemplate does not respond to a space key by @akshayaqburst [#6891](https://github.com/primefaces/primereact/pull/6891)
+- MultiSelect emptyMessage prop is not working by @ivanpajon [#6894](https://github.com/primefaces/primereact/pull/6894)
+- MultiSelect internal value is never updated by @ivanpajon [#6896](https://github.com/primefaces/primereact/pull/6896)
+- Related to PR #6896 by @ivanpajon [#6897](https://github.com/primefaces/primereact/pull/6897)
+- FocusOnShow prop in Dialog component by @ivanpajon [#6899](https://github.com/primefaces/primereact/pull/6899)
+- Custom passthrough options for bodyRow by @ivanpajon [#6902](https://github.com/primefaces/primereact/pull/6902)
+- Missing rowGroupToggler and rowGroupTogglerIcon by @ivanpajon [#6904](https://github.com/primefaces/primereact/pull/6904)
+- Missing props in MessagesPassThroughMethodOptions and MessagesProps by @ivanpajon [#6909](https://github.com/primefaces/primereact/pull/6909)
+- Improve changeTheme logic and javadoc by @melloware [#6913](https://github.com/primefaces/primereact/pull/6913)
+- Fix(Calendar): Reset the isOverlayClicked value after overlayVisibleState is set to false by @KumJungMin [#6921](https://github.com/primefaces/primereact/pull/6921)
+- Fix(Calendar): Allow the end date to be the same as the start date using input by @KumJungMin [#6919](https://github.com/primefaces/primereact/pull/6919)
+- Fix: Listbox crash in CI by @avasuro [#6925](https://github.com/primefaces/primereact/pull/6925)
+- Autocomplete fix input passthrough TS by @melloware [#6926](https://github.com/primefaces/primereact/pull/6926)
+- Unstyled prop forwarded to InputText by @melloware [#6930](https://github.com/primefaces/primereact/pull/6930)
+- Removing chips in multiselect cause open/close multiselect by @meddvedev [#6933](https://github.com/primefaces/primereact/pull/6933)
+- Radio Button Pass Through Options by @peconomou929 [#6935](https://github.com/primefaces/primereact/pull/6935)
+- Editor get focus on init and on every value change by @avasuro [#6937](https://github.com/primefaces/primereact/pull/6937)
+- Fix: Overlap icons in the dropdown filter component by @nitrogenous [#6865](https://github.com/primefaces/primereact/pull/6865)
+- Fix input passthrough TS by @melloware [#6938](https://github.com/primefaces/primereact/pull/6938)
+- Datatable fix row checkbox/radiobutton PT by @melloware [#6941](https://github.com/primefaces/primereact/pull/6941)
+- Datatable reorderable rows in unstyled mode by @gcko [#6943](https://github.com/primefaces/primereact/pull/6943)
+
+## [10.7.0](https://github.com/primefaces/primereact/tree/10.7.0) (2024-07-03)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.6...10.7.0)
+
+**Fixed Bugs:**
+
+- Error in type definition [\#6670](https://github.com/primefaces/primereact/pull/6670)
+- emptyMessage prop and default label in unstyled mode [\#6672](https://github.com/primefaces/primereact/pull/6672)
+- Bump quill from 2.0.0 to 2.0.2 [\#6673](https://github.com/primefaces/primereact/pull/6673)
+- Types in CalendarPassThroughOptions [\#6676](https://github.com/primefaces/primereact/pull/6676)
+- Bump sass from 1.69.5 to 1.77.2 [\#6674](https://github.com/primefaces/primereact/pull/6674)
+- Missing prop in SidebarPassThroughMethodOptions [\#6689](https://github.com/primefaces/primereact/pull/6689)
+- Tooltip: Escape key not dismissing tooltip (WCAG 2.1 1.4.13) [\#6687](https://github.com/primefaces/primereact/pull/6687)
+- onEditorCallback row data not being updated [\#6685](https://github.com/primefaces/primereact/pull/6685)
+- colorpicker: Color picker popup not closing on escape button click in some specific scenarios [\#6694](https://github.com/primefaces/primereact/pull/6694)
+- fix default editMode value [\#6692](https://github.com/primefaces/primereact/pull/6692)
+- metergroup typos [\#6699](https://github.com/primefaces/primereact/pull/6699)
+- TieredMenu remove aria-level [\#6705](https://github.com/primefaces/primereact/pull/6705)
+- Datatable selection aria locale label [\#6707](https://github.com/primefaces/primereact/pull/6707)
+- Dropdown: Select value with Enter when optionValue is set [\#6703](https://github.com/primefaces/primereact/pull/6703)
+- DataTable: Tabulation is not working properly [\#6710](https://github.com/primefaces/primereact/pull/6710)
+- escape key not working in dialog [\#6719](https://github.com/primefaces/primereact/pull/6719)
+- InputNumber keydown bugfix [\#6728](https://github.com/primefaces/primereact/pull/6728)
+- fix InputOtp keyDown [\#6731](https://github.com/primefaces/primereact/pull/6731)
+- Datatable respect editMode to determine if editable [\#6736](https://github.com/primefaces/primereact/pull/6736)
+- Calendar month navigator [\#6739](https://github.com/primefaces/primereact/pull/6739)
+- Add content prop to Menubar component [\#6742](https://github.com/primefaces/primereact/pull/6742)
+- Fix Calendar onDateSelect function [\#6748](https://github.com/primefaces/primereact/pull/6748)
+- package.json security updates for braces [\#6750](https://github.com/primefaces/primereact/pull/6750)
+- Bump @testing-library/jest-dom from 6.4.2 to 6.4.6 [\#6752](https://github.com/primefaces/primereact/pull/6752)
+- Bump gulp from 4.0.2 to 5.0.0 [\#6713](https://github.com/primefaces/primereact/pull/6713)
+- Fix TreeSelect filter for space key [\#6754](https://github.com/primefaces/primereact/pull/6754)
+- React 19 support [\#6725](https://github.com/primefaces/primereact/pull/6725)
+- incorrect default value for minFractionDigits when set to null [\#6762](https://github.com/primefaces/primereact/pull/6762)
+- highlight range of month in datePicker [\#6759](https://github.com/primefaces/primereact/pull/6759)
+- highlight range of year in datePicker [\#6760](https://github.com/primefaces/primereact/pull/6760)
+- (Tooltip): not dynamically update align when position is mouse [\#6764](https://github.com/primefaces/primereact/pull/6764)
+- Added checks for dragdropScope being defined before conversion [\#6767](https://github.com/primefaces/primereact/pull/6767)
+- Rename previousButton to prevButton [\#6775](https://github.com/primefaces/primereact/pull/6775)
+- (ColorPicker): apply s and b of previous hsb to hsbValue [\#6788](https://github.com/primefaces/primereact/pull/6788)
+- apply year change in Calendar when input changed [\#6794](https://github.com/primefaces/primereact/pull/6794)
+- check for visibleOptions existing before looking up the index [\#6797](https://github.com/primefaces/primereact/pull/6797)
+- onMonthChange prop not being called when user increments / decrements month using arrow buttons [\#6799](https://github.com/primefaces/primereact/pull/6799)
+- Fix a few typos in markdown files [\#6801](https://github.com/primefaces/primereact/pull/6801)
+- Make sure editable dropdown opens when user types [\#6810](https://github.com/primefaces/primereact/pull/6810)
+- DataTable column resize on touchscreens [\#6726](https://github.com/primefaces/primereact/pull/6726)
+- Calendar's monthNavigatorTemplate Not Working [\#6818](https://github.com/primefaces/primereact/pull/6818)
+- FocusTrap better handling of autoFocus property [\#6721](https://github.com/primefaces/primereact/pull/6721)
+- Datatable radiobuttons and types [\#6698](https://github.com/primefaces/primereact/pull/6698)
+- ListBox keyboard navigation like primevue [\#6570](https://github.com/primefaces/primereact/pull/6570)
+- Checkbox: Component fail to render [\#6679](https://github.com/primefaces/primereact/pull/6679)
+
+## [10.6.6](https://github.com/primefaces/primereact/tree/10.6.6) (2024-05-24)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.5...10.6.6)
+
+**Fixed Bugs:**
+
+- Add ariaLabel method to Typescript [\#6582](https://github.com/primefaces/primereact/pull/6582)
+- Locale fix [\#6586](https://github.com/primefaces/primereact/pull/6586)
+- Row reorder icon image won't break drag 'ghost' [\#6581](https://github.com/primefaces/primereact/pull/6581)
+- Add paste key [\#6577](https://github.com/primefaces/primereact/pull/6577)
+- Check meta key for MacOS [\#6588](https://github.com/primefaces/primereact/pull/6588)
+- InputOtp respect props.value change [\#6595](https://github.com/primefaces/primereact/pull/6595)
+- Fix typo in Scale doc [\#6596](https://github.com/primefaces/primereact/pull/6596)
+- Fix typo in PrimeFlex doc [\#6597](https://github.com/primefaces/primereact/pull/6597)
+- Password fix tab ordering of toggle mask [\#6598](https://github.com/primefaces/primereact/pull/6598)
+- Fix typo [\#6601](https://github.com/primefaces/primereact/pull/6601)
+- Show headless sidebar in all window sizes [\#6605](https://github.com/primefaces/primereact/pull/6605)
+- IconOptions typescript updated for FontAwesome [\#6579](https://github.com/primefaces/primereact/pull/6579)
+- PanelMenu MenuItem Id Prop Not Passed [\#6607](https://github.com/primefaces/primereact/pull/6607)
+- MeterGroup render items in percentage [\#6612](https://github.com/primefaces/primereact/pull/6612)
+- Minus sign after all selection - InputNumber [\#6566](https://github.com/primefaces/primereact/pull/6566)
+- Tabview Core Styles Moved to SASS Theme and Removed Inkbar for Lara [\#6616](https://github.com/primefaces/primereact/pull/6616)
+- Chart update TypeScript to inherit DIV [\#6618](https://github.com/primefaces/primereact/pull/6618)
+- Fix: Cannot npm link primereact on local project [\#6619](https://github.com/primefaces/primereact/pull/6619)
+- Added new capabilities and properties to Column and Dialog [\#6611](https://github.com/primefaces/primereact/pull/6611)
+- Dropdown fix checkIcon [\#6630](https://github.com/primefaces/primereact/pull/6630)
+- Feat: Stateful TreeTable [\#6384](https://github.com/primefaces/primereact/pull/6384)
+- InputOtp keyboard navigation [\#6638](https://github.com/primefaces/primereact/pull/6638)
+- DataTable: Column: onCellEditComplete is fired twice [\#6641](https://github.com/primefaces/primereact/pull/6641)
+- VirtualScroller improve useUpdate comparison [\#6643](https://github.com/primefaces/primereact/pull/6643)
+- Fixed typo [\#6654](https://github.com/primefaces/primereact/pull/6654)
+- BodyRow tab key handling [\#6658](https://github.com/primefaces/primereact/pull/6658)
+- Multiselect use unique label key [\#6652](https://github.com/primefaces/primereact/pull/6652)
+- Tooltip default position to 'right' if undefined [\#6651](https://github.com/primefaces/primereact/pull/6651)
+- PageLinks use totalPages [\#6649](https://github.com/primefaces/primereact/pull/6649)
+- Add missing components to primereact.all.js [\#6637](https://github.com/primefaces/primereact/pull/6637)
+- autocomplete value selection fix [\#6664](https://github.com/primefaces/primereact/pull/6664)
+- Galleria image in fullscreen mode not closing on escape button click [\#6645](https://github.com/primefaces/primereact/pull/6645)
+- DragDrop Tree keyboard navigation [\#6646](https://github.com/primefaces/primereact/pull/6646)
+
+## [10.6.5](https://github.com/primefaces/primereact/tree/10.6.5) (2024-05-03)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.4...10.6.5)
+
+**Fixed Bugs:**
+
+- pt headerContent fix in [\#6529](https://github.com/primefaces/primereact/pull/6529)
+- fix optionLabel in [\#6520](https://github.com/primefaces/primereact/pull/6520)
+- remove unused codes in [\#6509](https://github.com/primefaces/primereact/pull/6509)
+- remove unused code in [\#6511](https://github.com/primefaces/primereact/pull/6511)
+- fix unexpected type coercion and removed unused code in [\#6513](https://github.com/primefaces/primereact/pull/6513)
+- removed unused code in [\#6515](https://github.com/primefaces/primereact/pull/6515)
+- removed unused codes in [\#6517](https://github.com/primefaces/primereact/pull/6517)
+- Multiselect checkbox CSS class in [\#6532](https://github.com/primefaces/primereact/pull/6532)
+- Datatable expose sorts and filters in ref in [\#6533](https://github.com/primefaces/primereact/pull/6533)
+- MeterGroup correct CSS handle style in [\#6534](https://github.com/primefaces/primereact/pull/6534)
+- Stepper fix TS docs to onChangeStep in [\#6546](https://github.com/primefaces/primereact/pull/6546)
+- Button as link docs in [\#6547](https://github.com/primefaces/primereact/pull/6547)
+- pt submenu fix in [\#6544](https://github.com/primefaces/primereact/pull/6544)
+- AccordionTab PT error in [\#6549](https://github.com/primefaces/primereact/pull/6549)
+- Remove setTokens in onPaste on InputOtp to avoid duplicate values in [\#6526](https://github.com/primefaces/primereact/pull/6526)
+- dropdown filter fix in [\#6551](https://github.com/primefaces/primereact/pull/6551)
+- fix updateViewDate event in [\#6559](https://github.com/primefaces/primereact/pull/6559)
+- Missing PT Option for IconField in Password in [\#6560](https://github.com/primefaces/primereact/pull/6560)
+
+## [10.6.4](https://github.com/primefaces/primereact/tree/10.6.4) (2024-04-3O)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.3...10.6.4)
+
+**Enhancements:**
+
+- remove unused codes in [\#6504](https://github.com/primefaces/primereact/pull/6504)
+- add menu context to menu in [\#6488](https://github.com/primefaces/primereact/pull/6488)
+- OverlayPanel add isVisible method to external API in [\#6453](https://github.com/primefaces/primereact/pull/6453)
+
+**Fixed Bugs:**
+
+- unit tests in [\#6348](https://github.com/primefaces/primereact/pull/6348)
+- fix Tailwind classes for inputswitch and checkbox as styling is broken in [\#6347](https://github.com/primefaces/primereact/pull/6347)
+- Locale update to use ariaLabel method in [\#6313](https://github.com/primefaces/primereact/pull/6313)
+- Sidebar doc fix in [\#6354](https://github.com/primefaces/primereact/pull/6354)
+- InputOtp fix typescript case in [\#6361](https://github.com/primefaces/primereact/pull/6361)
+- Stepper proper forwardRef in [\#6362](https://github.com/primefaces/primereact/pull/6362)
+- Stepper demos in [\#6363](https://github.com/primefaces/primereact/pull/6363)
+- Revert typedoc in [\#6368](https://github.com/primefaces/primereact/pull/6368)
+- Bump chart.js from 4.4.1 to 4.4.2 in [\#6282](https://github.com/primefaces/primereact/pull/6282)
+- Bump @testing-library/user-event from 14.5.1 to 14.5.2 in [\#6280](https://github.com/primefaces/primereact/pull/6280)
+- Bump prettier from 3.1.0 to 3.2.5 in [\#6372](https://github.com/primefaces/primereact/pull/6372)
+- Bump @types/react-transition-group from 4.4.9 to 4.4.10 in [\#6373](https://github.com/primefaces/primereact/pull/6373)
+- Bump eslint-config-next from 14.1.0 to 14.1.4 in [\#6369](https://github.com/primefaces/primereact/pull/6369)
+- InputOtp wrong import in [\#6383](https://github.com/primefaces/primereact/pull/6383)
+- Add missing children prop in FloatLabel.d.ts in [\#6388](https://github.com/primefaces/primereact/pull/6388)
+- MultiSelect - SelectionLimit issue in [\#6218](https://github.com/primefaces/primereact/pull/6218)
+- fixed issue on selecting option by key event when using optionValue prop in [\#6374](https://github.com/primefaces/primereact/pull/6374)
+- typescript definition for ButtonGroup in [\#6360](https://github.com/primefaces/primereact/pull/6360)
+- Locale prevent prototype pollution in [\#6395](https://github.com/primefaces/primereact/pull/6395)
+- Showcase examples use IconField in [\#6386](https://github.com/primefaces/primereact/pull/6386)
+- Calendar inputClassName missing in [\#6398](https://github.com/primefaces/primereact/pull/6398)
+- FileUpload: add missing type definition for cancelIcon in [\#6400](https://github.com/primefaces/primereact/pull/6400)
+- DataTable custom filter example in [\#6401](https://github.com/primefaces/primereact/pull/6401)
+- DataTable - onContextMenu does not return row data in [\#6403](https://github.com/primefaces/primereact/pull/6403)
+- typescript definition for Stepper and StepperPanel in [\#6356](https://github.com/primefaces/primereact/pull/6356)
+- AutoComplete: Fix the issue of passing an undefined key while rendering lists. in [\#6365](https://github.com/primefaces/primereact/pull/6365)
+- Fix Tailwind theme for TriStateCheckbox in [\#6406](https://github.com/primefaces/primereact/pull/6406)
+- Password removed invalid props from PT in [\#6409](https://github.com/primefaces/primereact/pull/6409)
+- Password fix invalid/variant props in [\#6412](https://github.com/primefaces/primereact/pull/6412)
+- Megamenu single array fix in [\#6416](https://github.com/primefaces/primereact/pull/6416)
+- Added Fragment at doc in [\#6421](https://github.com/primefaces/primereact/pull/6421)
+- Calendar updateViewDate fix in [\#6425](https://github.com/primefaces/primereact/pull/6425)
+- InputOtp updateTokens fix in [\#6433](https://github.com/primefaces/primereact/pull/6433)
+- InputOtp import fix in [\#6441](https://github.com/primefaces/primereact/pull/6441)
+- FloatLabel prop fix in [\#6440](https://github.com/primefaces/primereact/pull/6440)
+- Variable names fix in [\#6444](https://github.com/primefaces/primereact/pull/6444)
+- TabView round scrollLeft like PrimeVue in [\#6449](https://github.com/primefaces/primereact/pull/6449)
+- TreeTable: call customer sortFunction for column set as sortField in [\#6436](https://github.com/primefaces/primereact/pull/6436)
+- Typescript boolean instead of false in [\#6378](https://github.com/primefaces/primereact/pull/6378)
+- Toast close by id fix in [\#6457](https://github.com/primefaces/primereact/pull/6457)
+- Dialog onHide prop call in [\#6458](https://github.com/primefaces/primereact/pull/6458)
+- PrimeIcons v7 constants in [\#6465](https://github.com/primefaces/primereact/pull/6465)
+- PrimeIcons v7 constants in [\#6466](https://github.com/primefaces/primereact/pull/6466)
+- PrimeIcons v7 constants in [\#6467](https://github.com/primefaces/primereact/pull/6467)
+- Ripple doc fix in [\#6470](https://github.com/primefaces/primereact/pull/6470)
+- VirtualScroller/Ripple TS updates in [\#6472](https://github.com/primefaces/primereact/pull/6472)
+- TreeSelect header fix in [\#6471](https://github.com/primefaces/primereact/pull/6471)
+- StepperHeader add type button in [\#6463](https://github.com/primefaces/primereact/pull/6463)
+- Chips respect removable function in [\#6428](https://github.com/primefaces/primereact/pull/6428)
+- TreeSelect pass emptyMessage to Tree in [\#6411](https://github.com/primefaces/primereact/pull/6411)
+- Passthrough accordiontab not tab in [\#6390](https://github.com/primefaces/primereact/pull/6390)
+- ColumnFilter proper ID handling in [\#6367](https://github.com/primefaces/primereact/pull/6367)
+- MeterGroup minor refactor similar to other components in [\#6355](https://github.com/primefaces/primereact/pull/6355)
+- DataScroller pt doc img fix in [\#6480](https://github.com/primefaces/primereact/pull/6480)
+- Checkbox onClick TS def in [\#6485](https://github.com/primefaces/primereact/pull/6485)
+- Stepper add p-component to Stepper action in [\#6350](https://github.com/primefaces/primereact/pull/6350)
+- date picker value entering in [\#6478](https://github.com/primefaces/primereact/pull/6478)
+- KeyFilter handle AZERTY and dead keys in [\#6484](https://github.com/primefaces/primereact/pull/6484)
+- fixed the issue with the home separator if home prop is null/undefined in [\#6375](https://github.com/primefaces/primereact/pull/6375)
+- InputNumber allowing accent/dead characters in [\#6352](https://github.com/primefaces/primereact/pull/6352)
+- Quill 2.0.0 support in [\#6429](https://github.com/primefaces/primereact/pull/6429)
+- Dropdown navigation like PrimeVue in [\#6430](https://github.com/primefaces/primereact/pull/6430)
+- Dropdown scroll into view on focus in [\#6452](https://github.com/primefaces/primereact/pull/6452)
+- Menu align focus with PrimeVue in [\#6381](https://github.com/primefaces/primereact/pull/6381)
+- Calendar updateViewDate fix in [\#6447](https://github.com/primefaces/primereact/pull/6447)
+- Autocomplete Not able to delete a manually added chip in [\#6474](https://github.com/primefaces/primereact/pull/6474)
+- primefaces #6234, TreeSelect: (accessiblility) cannot access and clear the selected input using using keyboard in [\#6235](https://github.com/primefaces/primereact/pull/6235)
+- Stepper add get/set active step in [\#6486](https://github.com/primefaces/primereact/pull/6486)
+- Update templatedoc.js with correct reference in [\#6495](https://github.com/primefaces/primereact/pull/6495)
+- Dialog refactor using FocusTrap in [\#6435](https://github.com/primefaces/primereact/pull/6435)
+- Listbox focused option index fix in [\#6500](https://github.com/primefaces/primereact/pull/6500)
+- Splitter can work with multiple panels in [\#6490](https://github.com/primefaces/primereact/pull/6490)
+- Password use IconField for toggle mask in [\#6493](https://github.com/primefaces/primereact/pull/6493)
+- PanelMenu isItemActive Update in [\#6502](https://github.com/primefaces/primereact/pull/6502)
+- Fix formatting in [\#6505](https://github.com/primefaces/primereact/pull/6505)
+
+## [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 checkValidity fails [\#1331](https://github.com/primefaces/primereact/issues/1331)
-- Calendar.showOtherMonths property not being used [\#1328](https://github.com/primefaces/primereact/issues/1328)
-- Disable prop on ToggleButton not working [\#1321](https://github.com/primefaces/primereact/issues/1321)
-- IE11: Autocomplete with dropdown and multiple selection requires doubleclick [\#1316](https://github.com/primefaces/primereact/issues/1316)
-- InputMask displayed value does not change when value changes to undefined or null [\#1309](https://github.com/primefaces/primereact/issues/1309)
-- multiSortMeta depends on single sort [\#1307](https://github.com/primefaces/primereact/issues/1307)
-- Carousel - Button inside carousel-item is not clickable in mobile phones [\#1300](https://github.com/primefaces/primereact/issues/1300)
-- AutoComplete: selectedItemTemplate ts binding claims to expect JSX.Element in return, but at runtime a string is expected [\#1297](https://github.com/primefaces/primereact/issues/1297)
-- FileUpload in auto mode sends two post requests in IE11 [\#1282](https://github.com/primefaces/primereact/issues/1282)
-- Today Button doesn't work on prefilled Calendar with timeonly [\#1281](https://github.com/primefaces/primereact/issues/1281)
-- TreeTable goes to edit mode when expanded [\#1276](https://github.com/primefaces/primereact/issues/1276)
-- Tree drag&drop not working if dragdropScope contains upper case letter [\#1182](https://github.com/primefaces/primereact/issues/1182)
-## [4.1.2](https://github.com/primefaces/primereact/tree/4.1.2) (2020-03-20)
+- 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)
-[Full Changelog](https://github.com/primefaces/primereact/compare/4.1.1...4.1.2)
+## [10.6.2](https://github.com/primefaces/primereact/tree/10.6.2) (2024-03-29)
-**Implemented New Features and Enhancements:**
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.1...10.6.2)
-- DataView: lazy loading implementation [\#1264](https://github.com/primefaces/primereact/issues/1264)
+## [10.6.1](https://github.com/primefaces/primereact/tree/10.6.1) (2024-03-29)
-**Fixed bugs:**
-
-- Multiple Sort doesn't work as expected in the DataTable if a sortable column has sortField and field properties [\#1279](https://github.com/primefaces/primereact/issues/1279)
-- Chips in disabled Autocomplete are not disabled [\#1278](https://github.com/primefaces/primereact/issues/1278)
-- Calendar display not update when value change. [\#1277](https://github.com/primefaces/primereact/issues/1277)
-- Calendar closes right away in Chrome when it has showTime={true} [\#1272](https://github.com/primefaces/primereact/issues/1272)
-- Setting state in onFocus of Datatable Editors crashes app [\#1271](https://github.com/primefaces/primereact/issues/1271)
-- Invalid Date in Calendar in IE11 crashes the app [\#1270](https://github.com/primefaces/primereact/issues/1270)
-- Tab-Key doesn't work in Datatable with cell editing on IE11 and Edge [\#1269](https://github.com/primefaces/primereact/issues/1269)
-- IE11: Autocomplete with dropdown requires doubleclick [\#1267](https://github.com/primefaces/primereact/issues/1267)
-- OnComplete callback has wrong property params on InputMask.d.ts [\#1265](https://github.com/primefaces/primereact/issues/1265)
-- Fix InputSwitch documentation for onLabel-offLabel [\#1263](https://github.com/primefaces/primereact/issues/1263)
-
-## [4.1.1](https://github.com/primefaces/primereact/tree/4.1.1) (2020-03-12)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/4.1.0...4.1.1)
-
-**Implemented New Features and Enhancements:**
-
-- Add onFocus-onBlur to Dropdown [\#1260](https://github.com/primefaces/primereact/issues/1260)
-- InputMask OnComplete does not contain the new value [\#1255](https://github.com/primefaces/primereact/issues/1255)
-- resetFilter function for Dropdown [\#1249](https://github.com/primefaces/primereact/issues/1249)
-- Improve type definition for onChange of form components [\#1199](https://github.com/primefaces/primereact/issues/1199)
-
-**Fixed bugs:**
-
-- DataTable scrollHeight doesn't calculate correctly with frozen columns and header groups [\#1261](https://github.com/primefaces/primereact/issues/1261)
-- Disabled TabPanel focussable with TAB-Key [\#1254](https://github.com/primefaces/primereact/issues/1254)
-- Error on TreeTable docs about responsive [\#1253](https://github.com/primefaces/primereact/issues/1253)
-- Select components don't correctly return value [\#1252](https://github.com/primefaces/primereact/issues/1252)
-- currentPageReport should check for {last} boundary [\#1251](https://github.com/primefaces/primereact/issues/1251)
-- onClose of GrowlMessage is also allowing onClick to fire. [\#1248](https://github.com/primefaces/primereact/issues/1248)
-- loadingBody type is different to Documentation [\#1111](https://github.com/primefaces/primereact/issues/1111)
-
-## [4.1.0](https://github.com/primefaces/primereact/tree/4.1.0) (2020-03-10)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/4.0.0...4.1.0)
-
-**Implemented New Features and Enhancements:**
-
-- Add reorderable to Column [\#1246](https://github.com/primefaces/primereact/issues/1246)
-- Implement filterBy and filterMatchMode for ListBox [\#1245](https://github.com/primefaces/primereact/issues/1245)
-- Implement filterBy and filterMatchMode for MultiSelect [\#1244](https://github.com/primefaces/primereact/issues/1244)
-- Add filterPlaceholder to MultiSelect [\#1242](https://github.com/primefaces/primereact/issues/1242)
-- Deprecate icon of SelectItem API [\#1239](https://github.com/primefaces/primereact/issues/1239)
-- Templating support to SelectButton [\#1238](https://github.com/primefaces/primereact/issues/1238)
-- Document SelectItem [\#1237](https://github.com/primefaces/primereact/issues/1237)
-- Change the type of emptyMessage property on DataTable [\#1236](https://github.com/primefaces/primereact/issues/1236)
-- Deprecate Lightbox [\#1235](https://github.com/primefaces/primereact/issues/1235)
-- Add optionValue to Select components [\#1230](https://github.com/primefaces/primereact/issues/1230)
-- Placeholder colors are not same [\#1229](https://github.com/primefaces/primereact/issues/1229)
-- Primitive values support in Select components [\#1228](https://github.com/primefaces/primereact/issues/1228)
-- Add filterHeaderStyle and filterHeaderClassName to Column [\#1227](https://github.com/primefaces/primereact/issues/1227)
-- Add rowHover to DataTable [\#1226](https://github.com/primefaces/primereact/issues/1226)
-- New options for CurrentPageReport [\#1225](https://github.com/primefaces/primereact/issues/1225)
-- New DataTable Customer Demo [\#1224](https://github.com/primefaces/primereact/issues/1224)
-- New filtering modes for Table [\#1223](https://github.com/primefaces/primereact/issues/1223)
-- Accents support in Table filtering [\#1222](https://github.com/primefaces/primereact/issues/1222)
-- Add filterField to column [\#1221](https://github.com/primefaces/primereact/issues/1221)
-- Move column filters to their own row [\#1220](https://github.com/primefaces/primereact/issues/1220)
-- Time support for min date or max date in calendar component [\#1217](https://github.com/primefaces/primereact/issues/1217)
-- Add filterPlaceholder to Listbox [\#1215](https://github.com/primefaces/primereact/issues/1215)
-- Improve style of p-link component [\#1213](https://github.com/primefaces/primereact/issues/1213)
-- Implement className in MultiSelect, Dropdown, SelectButton, ListBox options [\#1175](https://github.com/primefaces/primereact/issues/1175)
-- Allow Dialogs already maximized [\#1170](https://github.com/primefaces/primereact/issues/1170)
-- Implement filterBy and filterMatchMode for Dropdown [\#1149](https://github.com/primefaces/primereact/issues/1149)
-- Change the type of the 'header' property on TabPanel [\#1079](https://github.com/primefaces/primereact/issues/1079)
-- DataTable Columns: Conditional reorder [\#1032](https://github.com/primefaces/primereact/issues/1032)
-- Datatable Columns: Conditional select [\#1031](https://github.com/primefaces/primereact/issues/1031)
-
-**Fixed bugs:**
-
-- Chips cover 100% although input is visually smaller [\#1241](https://github.com/primefaces/primereact/issues/1241)
-- Datatable doesn't change page when the last element on a page is removed. [\#1233](https://github.com/primefaces/primereact/issues/1233)
-- Filter does not work after adding a new node to the root node on Tree [\#1232](https://github.com/primefaces/primereact/issues/1232)
-- Clear Button does not clear the input value on Calendar [\#1231](https://github.com/primefaces/primereact/issues/1231)
-- Remove tabIndex from the headers of the non-sortable dataTable. [\#1219](https://github.com/primefaces/primereact/issues/1219)
-- The virtualScroll height is always added to rows on DataTable [\#1218](https://github.com/primefaces/primereact/issues/1218)
-- ContextMenu hide/onHide triggers even though already hidden [\#1189](https://github.com/primefaces/primereact/issues/1189)
-- Tree does not support Font Awesome icons [\#1187](https://github.com/primefaces/primereact/issues/1187)
-- Reset filter textbox of dropdown if options changes [\#1179](https://github.com/primefaces/primereact/issues/1179)
-- Deadlock situation in range slider [\#1094](https://github.com/primefaces/primereact/issues/1094)
-
-## [4.0.0](https://github.com/primefaces/primereact/tree/4.0.0) (2020-02-27)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.4.0...4.0.0)
-
-**Implemented New Features and Enhancements:**
-
-- Add keepInvalid property to Calendar [\#1204](https://github.com/primefaces/primereact/issues/1204)
-- Add position property to Dialog [\#1203](https://github.com/primefaces/primereact/issues/1203)
-- Add FocusTrap support to Dialog [\#1202](https://github.com/primefaces/primereact/issues/1202)
-- Add sortFunction support to DataTable with multiple column sorting [\#1201](https://github.com/primefaces/primereact/issues/1201)
-- Remove min-width style from Dropdown [\#1196](https://github.com/primefaces/primereact/issues/1196)
-- Add maskClassName property to Dialog [\#1194](https://github.com/primefaces/primereact/issues/1194)
-- ReImplemented Steps styles [\#1191](https://github.com/primefaces/primereact/issues/1191)
-- Leave animation for Dialog [\#1181](https://github.com/primefaces/primereact/issues/1181)
-- Dialog header not visible [\#1174](https://github.com/primefaces/primereact/issues/1174)
-- Dialog is not displayed correctly in mobile view [\#1165](https://github.com/primefaces/primereact/issues/1165)
-- Add sort number feature to sortable columns on DataTable and TreeTable with multi sorting [\#1164](https://github.com/primefaces/primereact/issues/1164)
-- Add onRemove callback to FileUpload [\#1152](https://github.com/primefaces/primereact/issues/1152)
-- Add editing support to the input field on Calendar [\#1141](https://github.com/primefaces/primereact/issues/1141)
-- New Component: Galleria [\#1105](https://github.com/primefaces/primereact/issues/1105)
-
-**Fixed bugs:**
-
-- Remove the legacy lifecycle method from Lightbox component [\#1200](https://github.com/primefaces/primereact/issues/1200)
-- The disabled items can be focused in the Steps [\#1192](https://github.com/primefaces/primereact/issues/1192)
-- Alignment problem on Growl message without details [\#1190](https://github.com/primefaces/primereact/issues/1190)
-- Maximizable property is not working correctly on dialog [\#1169](https://github.com/primefaces/primereact/issues/1169)
-- Dismissable mask behaves over dialog [\#1167](https://github.com/primefaces/primereact/issues/1167)
-- Typedefinition for DataTable OnFilter is wrong. [\#1163](https://github.com/primefaces/primereact/issues/1163)
-
-## [3.4.0](https://github.com/primefaces/primereact/tree/3.4.0) (2020-01-17)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.3.3...3.4.0)
-
-**Implemented New Features and Enhancements:**
-
-- Calendar component keyboard support [\#1157](https://github.com/primefaces/primereact/issues/1157)
-- Add expandableRowGroups property to DataTable [\#1148](https://github.com/primefaces/primereact/issues/1148)
-- Add removableSort property to DataTable [\#1142](https://github.com/primefaces/primereact/issues/1142)
-- Enhance Dialog Positioning [\#1138](https://github.com/primefaces/primereact/issues/1138)
-
-**Fixed bugs:**
-
-- Wrong property name on the propTypes definition of Dropdown [\#1158](https://github.com/primefaces/primereact/issues/1158)
-- When the InputMask is focused, the mask disappears [\#1156](https://github.com/primefaces/primereact/issues/1156)
-- When the buttons inside the components are clicked, they submit the form [\#1155](https://github.com/primefaces/primereact/issues/1155)
-- The icon of the next button has wrong class name on Carousel [\#1154](https://github.com/primefaces/primereact/issues/1154)
-- Some DataView lazy and loading types missing [\#1131](https://github.com/primefaces/primereact/issues/1131)
-- TreeTable default filter value is not showing in the filter widget [\#1129](https://github.com/primefaces/primereact/issues/1129)
-- InputTextarea does not render props like cols and rows [\#1127](https://github.com/primefaces/primereact/issues/1127)
-- PanelMenu Icon does not show for entries without sub children [\#1121](https://github.com/primefaces/primereact/issues/1121)
-- ContextMenu.d.ts has wrong property name [\#1118](https://github.com/primefaces/primereact/issues/1118)
-- Dropdown cannot open the panel after double clicking an option [\#1053](https://github.com/primefaces/primereact/issues/1053)
-- InputMask is not changing the mask at runtime. [\#1021](https://github.com/primefaces/primereact/issues/1021)
-
-## [3.3.3](https://github.com/primefaces/primereact/tree/3.3.3) (2019-11-29)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.3.2...3.3.3)
-
-**Implemented New Features and Enhancements:**
-
-- Add exportable property to Column [\#1103](https://github.com/primefaces/primereact/issues/1103)
-- Add exportFunction property to DataTable [\#1102](https://github.com/primefaces/primereact/issues/1102)
-- Add repeat functionality to timer buttons on Calendar [\#1101](https://github.com/primefaces/primereact/issues/1101)
-- Add reset method to DataTable [\#1088](https://github.com/primefaces/primereact/issues/1088)
-- onColReorder in Datatable parameter missing [\#1080](https://github.com/primefaces/primereact/issues/1080)
-- Add disabled property to Tree [\#1078](https://github.com/primefaces/primereact/issues/1078)
-- Add selectedItemsLabel property to MultiSelect [\#1075](https://github.com/primefaces/primereact/issues/1075)
-- Add maxSelectedLabels property to MultiSelect [\#1074](https://github.com/primefaces/primereact/issues/1074)
-- Passing of data-\* Attributes as Props [\#1073](https://github.com/primefaces/primereact/issues/1073)
-
-**Fixed bugs:**
-
-- DomHandler functions throw NPE on components [\#1104](https://github.com/primefaces/primereact/issues/1104)
-- Growl messages from "bottom\*" is not displaying as expected [\#1095](https://github.com/primefaces/primereact/issues/1095)
-- Properties of TreeNodes on TreeTable not Working [\#1085](https://github.com/primefaces/primereact/issues/1085)
-- className property of Message component not working [\#1076](https://github.com/primefaces/primereact/issues/1076)
-- Tree className property not working [\#1068](https://github.com/primefaces/primereact/issues/1068)
-- Sidebar dismissable is only updating whenever the visible prop updates [\#1065](https://github.com/primefaces/primereact/issues/1065)
-- selectDate\(\) set date to undefined when minDate is set and selected date is \<= minDate [\#1056](https://github.com/primefaces/primereact/issues/1056)
-- Datatable multisort broken [\#617](https://github.com/primefaces/primereact/issues/617)
-
-## [3.3.2](https://github.com/primefaces/primereact/tree/3.3.2) (2019-10-22)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.3.1...3.3.2)
-
-**Fixed bugs:**
-
-- Table state is not working with columnResizeMode="expand" on DataTable [\#1061](https://github.com/primefaces/primereact/issues/1061)
-- Calendar component throws NPE after updating the value [\#1060](https://github.com/primefaces/primereact/issues/1060)
-
-## [3.3.1](https://github.com/primefaces/primereact/tree/3.3.1) (2019-10-18)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.3.0...3.3.1)
-
-**Implemented New Features and Enhancements:**
-
-- Improve component styles on Luna, Nova and Rhea Themes [\#1052](https://github.com/primefaces/primereact/issues/1052)
-- Improve Carousel styles [\#1051](https://github.com/primefaces/primereact/issues/1051)
-
-**Fixed bugs:**
-
-- Carousel is not working with 'primereact/carousel' shortcut [\#1049](https://github.com/primefaces/primereact/issues/1049)
-
-## [3.3.0](https://github.com/primefaces/primereact/tree/3.3.0) (2019-10-16)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.2.0...3.3.0)
-
-**Implemented New Features and Enhancements:**
-
-- Add closeOnEscape property to Sidebar [\#1046](https://github.com/primefaces/primereact/issues/1046)
-- InputTextarea: Floating Label [\#1040](https://github.com/primefaces/primereact/issues/1040)
-- Upgrade QuillJS 1.3.7 [\#1037](https://github.com/primefaces/primereact/issues/1037)
-- Add filterInputAutoFocus property to Dropdown [\#1036](https://github.com/primefaces/primereact/issues/1036)
-- New Component: Carousel [\#1030](https://github.com/primefaces/primereact/issues/1030)
-- Add className support to SelectButtonItems [\#1019](https://github.com/primefaces/primereact/issues/1019)
-
-**Fixed bugs:**
-
-- AutoComplete mode multiple ignores maxlength property [\#1045](https://github.com/primefaces/primereact/issues/1045)
-- The datatable is broken with scrollable and no columns settings [\#1044](https://github.com/primefaces/primereact/issues/1044)
-- Calendar Overlay doesnt open with current date after value update [\#999](https://github.com/primefaces/primereact/issues/999)
-
-## [3.2.0](https://github.com/primefaces/primereact/tree/3.2.0) (2019-09-12)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.9...3.2.0)
-
-**Implemented New Features and Enhancements:**
-
-- Add type property to AutoComplete [\#1010](https://github.com/primefaces/primereact/issues/1010)
-- Add customUpload property to FileUpload [\#1008](https://github.com/primefaces/primereact/issues/1008)
-- Improve columns' editor option on editing mode [\#1007](https://github.com/primefaces/primereact/issues/1007)
-- Add keyboard support to DataTable with Checkbox selection [\#1005](https://github.com/primefaces/primereact/issues/1005)
-- Add row edit support to DataTable [\#809](https://github.com/primefaces/primereact/issues/809)
-
-**Fixed bugs:**
-
-- DataTable with global filter and header checkbox selection select all records [\#1012](https://github.com/primefaces/primereact/issues/1012)
-- DataTable column headers not displaying in nested table [\#1009](https://github.com/primefaces/primereact/issues/1009)
-- DataTable has null state under certain conditions [\#1003](https://github.com/primefaces/primereact/issues/1003)
-- Value doesnt change on Input mask when unmask is enabled [\#998](https://github.com/primefaces/primereact/issues/998)
-
-## [3.1.9](https://github.com/primefaces/primereact/tree/3.1.9) (2019-08-28)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.8...3.1.9)
-
-**Implemented New Features and Enhancements:**
-
-- Datatable EditRow [\#935](https://github.com/primefaces/primereact/issues/935)
-- Add className option to Tooltip [\#994](https://github.com/primefaces/primereact/issues/994)
-- Add focusOnShow property to Dialog [\#988](https://github.com/primefaces/primereact/issues/988)
-- Add displayValueTemplate property to ProgressBar [\#978](https://github.com/primefaces/primereact/issues/978)
-- Add tabIndex prop to Spinner [\#976](https://github.com/primefaces/primereact/issues/976)
-- Add tabIndex prop to RadioButton [\#975](https://github.com/primefaces/primereact/issues/975)
-
-**Fixed bugs:**
-
-- Wrong typings for the property of Spinner [\#1001](https://github.com/primefaces/primereact/issues/1001)
-- Export hide\(\) for ContextMenu in type definition file [\#1000](https://github.com/primefaces/primereact/issues/1000)
-- Style props doesnt update after re-rendering with Inputmask [\#996](https://github.com/primefaces/primereact/issues/996)
-- Nested originalEvent in DataTable header RowCheckbox event [\#986](https://github.com/primefaces/primereact/issues/986)
-- Typings missing in DataTable: resetColumnOrder [\#980](https://github.com/primefaces/primereact/issues/980)
-- ProgressBar does not show value for 0% [\#973](https://github.com/primefaces/primereact/issues/973)
-- Tooltips appear with old contents after being undefined [\#972](https://github.com/primefaces/primereact/issues/972)
-
-## [3.1.8](https://github.com/primefaces/primereact/tree/3.1.8) (2019-07-25)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.7...3.1.8)
-
-**Implemented New Features and Enhancements:**
-
-- Resizable columns support with column groups [\#518](https://github.com/primefaces/primereact/issues/518)
-- Update to PrimeIcons 2.0.0 [\#970](https://github.com/primefaces/primereact/issues/970)
-- Datatable rowGroup with rowSpan mode: row separator line style on group break [\#967](https://github.com/primefaces/primereact/issues/967)
-- Growl detail should be placed in \
not \
[\#965](https://github.com/primefaces/primereact/issues/965)
-- Add autoFocus attribute to Autocomplete [\#963](https://github.com/primefaces/primereact/issues/963)
-- Add onTargetSelect and onSourceSelect props to Picklist [\#962](https://github.com/primefaces/primereact/issues/962)
-- Add tabIndex prop to ToggleButton [\#957](https://github.com/primefaces/primereact/issues/957)
-- Add required prop to RadioButton [\#953](https://github.com/primefaces/primereact/issues/953)
-- Add required prop to Checkbox [\#952](https://github.com/primefaces/primereact/issues/952)
-- Add shift key selection support to DataTable with multiple mode [\#934](https://github.com/primefaces/primereact/issues/934)
-
-**Fixed bugs:**
-
-- Calendar ButtonBar Clear button does not use clearButtonStyleClass prop [\#968](https://github.com/primefaces/primereact/issues/968)
-- Datatable rowGroup with rowSpan mode and pagination fails on page break [\#961](https://github.com/primefaces/primereact/issues/961)
-- DataTable fails to render if columns are mapped and has a static column [\#959](https://github.com/primefaces/primereact/issues/959)
-- Month View shows a redundant week on the calendar [\#956](https://github.com/primefaces/primereact/issues/956)
-- Simple DataScroller does not display items. [\#955](https://github.com/primefaces/primereact/issues/955)
-- The DataTable will sort a column when shrinking it on resize [\#944](https://github.com/primefaces/primereact/issues/944)
-
-## [3.1.7](https://github.com/primefaces/primereact/tree/3.1.7) (2019-06-25)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.6...3.1.7)
-
-**Fixed bugs:**
-
-- Charts always redraw when they are updated [\#946](https://github.com/primefaces/primereact/issues/946)
-
-## [3.1.6](https://github.com/primefaces/primereact/tree/3.1.6) (2019-06-25)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.5...3.1.6)
-
-**Fixed bugs:**
-
-- The ChartJs API is not imported correctly [\#945](https://github.com/primefaces/primereact/issues/945)
-- Inplace is not working with 'primereact/inplace' shortcut [\#943](https://github.com/primefaces/primereact/issues/943)
-
-## [3.1.5](https://github.com/primefaces/primereact/tree/3.1.5) (2019-06-24)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.4...3.1.5)
-
-**Implemented New Features and Enhancements:**
-
-- Add theme prop to Editor [\#938](https://github.com/primefaces/primereact/issues/938)
-- Add "replace" method in Messages component [\#930](https://github.com/primefaces/primereact/issues/930)
-- Add decimalSeparator and thousandSeparator props to Spinner [\#925](https://github.com/primefaces/primereact/issues/925)
-- Add formatInput prop to Spinner [\#924](https://github.com/primefaces/primereact/issues/924)
-- Add required, pattern and placeholder props to Spinner. [\#920](https://github.com/primefaces/primereact/issues/920)
-- Add ariaCloseIconLabel prop to Dialog [\#916](https://github.com/primefaces/primereact/issues/916)
-
-**Fixed bugs:**
-
-- When components are placed placed inside a label element clicking on the component fires the click event twice [\#940](https://github.com/primefaces/primereact/issues/940)
-- The hide method of Dropdown throws an exception on console [\#937](https://github.com/primefaces/primereact/issues/937)
-- The "required" prop is not working on Dropdown [\#933](https://github.com/primefaces/primereact/issues/933)
-- Tooltip in chips does not work properly [\#932](https://github.com/primefaces/primereact/issues/932)
-- Empty array crashes Messages component [\#928](https://github.com/primefaces/primereact/issues/928)
-- The 'showWeek' prop throws an error with TypedScript on Calendar [\#926](https://github.com/primefaces/primereact/issues/926)
-- Close icon is still active on the disabled Chips [\#918](https://github.com/primefaces/primereact/issues/918)
-- onRemove event does not exists on Growl component [\#914](https://github.com/primefaces/primereact/issues/914)
-- Can't resolve 'chart.js/src/chart.js' [\#913](https://github.com/primefaces/primereact/issues/913)
-- Second Sidebar reset blockScroll [\#910](https://github.com/primefaces/primereact/issues/910)
-- ProgressSpinner not visible in IE11 [\#908](https://github.com/primefaces/primereact/issues/908)
-- Wrong type for showWeek in Calendar.d.ts [\#907](https://github.com/primefaces/primereact/issues/907)
-
-## [3.1.4](https://github.com/primefaces/primereact/tree/3.1.4) (2019-05-30)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.3...3.1.4)
-
-**Implemented New Features and Enhancements:**
-
-- Add iconsTemplate to Dialog [\#905](https://github.com/primefaces/primereact/issues/905)
-- Modules property for Editor [\#904](https://github.com/primefaces/primereact/issues/904)
-- The ability to reset columnOrder in DataTable [\#899](https://github.com/primefaces/primereact/issues/899)
-- onFocus and onBlur for Chips [\#897](https://github.com/primefaces/primereact/issues/897)
-- Show week numbers for Calendar [\#894](https://github.com/primefaces/primereact/issues/894)
-- CellEditor should have onSubmit and onCancel method. [\#891](https://github.com/primefaces/primereact/issues/891)
-- Add expandIcon and collapseIcon props to Panel component [\#888](https://github.com/primefaces/primereact/issues/888)
-- Support for disabling dropdown item\(s\). [\#874](https://github.com/primefaces/primereact/issues/874)
-- Editable Dropdown should support maxLength [\#844](https://github.com/primefaces/primereact/issues/844)
-
-**Fixed bugs:**
-
-- Not able to set focus on Dropdown component [\#903](https://github.com/primefaces/primereact/issues/903)
-- Calendar time parsing broken for showSeconds == false [\#901](https://github.com/primefaces/primereact/issues/901)
-- DataTable sortFunction Typescript definition wrong [\#898](https://github.com/primefaces/primereact/issues/898)
-- Data\*: alwaysShowPaginator prop not used [\#896](https://github.com/primefaces/primereact/issues/896)
-- DataTable expanded rows collapse when modifying one property of a record [\#884](https://github.com/primefaces/primereact/issues/884)
-- The scroll bar is not moving correctly on the DataTable with resizeMode="expand" [\#881](https://github.com/primefaces/primereact/issues/881)
-- Dropdown showClear not always displayed [\#875](https://github.com/primefaces/primereact/issues/875)
-- Unlogical editor navigation with shift+tab in DataTable [\#843](https://github.com/primefaces/primereact/issues/843)
-- Cannot read property 'show' of undefined at FileUpload.validate [\#802](https://github.com/primefaces/primereact/issues/802)
-- DataTable onValueChange callback one key press behind when using custom InputText filter [\#777](https://github.com/primefaces/primereact/issues/777)
-
-## [3.1.3](https://github.com/primefaces/primereact/tree/3.1.3) (2019-05-06)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.2...3.1.3)
-
-**Implemented New Features and Enhancements:**
-
-- Multiple target support to OverlayPanel [\#873](https://github.com/primefaces/primereact/issues/873)
-- Improve outside click on OverlayPanel [\#872](https://github.com/primefaces/primereact/issues/872)
-- Calendar panel is not aligned correctly on window resize [\#870](https://github.com/primefaces/primereact/issues/870)
-- Improve outside click on Calendar [\#869](https://github.com/primefaces/primereact/issues/869)
-- The min/max date support is added to Calendar for monthNavigation and yearNavigation [\#859](https://github.com/primefaces/primereact/issues/859)
-- Add ariaLabel and ariaLabelledBy properties to DropDown [\#855](https://github.com/primefaces/primereact/issues/855)
-- Add contentStyle and contentClassName props to Tree [\#842](https://github.com/primefaces/primereact/issues/842)
-
-**Fixed bugs:**
-
-- OverlayPanel's icon is in the wrong position after window is resized [\#871](https://github.com/primefaces/primereact/issues/871)
-- Flipped OverlayPanel rendered behind browser [\#868](https://github.com/primefaces/primereact/issues/868)
-- Missing method typings for OverlayPanel [\#865](https://github.com/primefaces/primereact/issues/865)
-- Calendar used in DataTable is unable to switch months [\#860](https://github.com/primefaces/primereact/issues/860)
-- Calendar view="month" does not allow typing [\#856](https://github.com/primefaces/primereact/issues/856)
-- OnHide callback is not called when visibility property is changed [\#854](https://github.com/primefaces/primereact/issues/854)
-- Add stateStorage property to DataTable.d.ts [\#851](https://github.com/primefaces/primereact/issues/851)
-- The tableStyle and tableClassName props have no effect on Scrollable DataTable [\#849](https://github.com/primefaces/primereact/issues/849)
-- Calendar is rendering behind the browser window. [\#840](https://github.com/primefaces/primereact/issues/840)
-- onRowSelect called instead of onRowUnselect [\#835](https://github.com/primefaces/primereact/issues/835)
-- Chart doesn't reload when new data is added to it [\#834](https://github.com/primefaces/primereact/issues/834)
-- Datatable scrollHeight can't be changed [\#662](https://github.com/primefaces/primereact/issues/662)
-
-## [3.1.2](https://github.com/primefaces/primereact/tree/3.1.2) (2019-04-03)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.1...3.1.2)
-
-**Fixed bugs:**
-
-- DataTable selection with uncontrolled sorting broken [\#830](https://github.com/primefaces/primereact/issues/830)
-
-## [3.1.1](https://github.com/primefaces/primereact/tree/3.1.1) (2019-03-31)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.0...3.1.1)
-
-**Implemented New Features and Enhancements:**
-
-- Improve disabled header style on Accordion [\#828](https://github.com/primefaces/primereact/issues/828)
-- Update to FullCalendar 4.0.1 [\#827](https://github.com/primefaces/primereact/issues/827)
-- Remove autoWidth from Dropdown [\#826](https://github.com/primefaces/primereact/issues/826)
-- Improve DataTable VirtualScrolling [\#825](https://github.com/primefaces/primereact/issues/825)
-- Update dialog animations [\#823](https://github.com/primefaces/primereact/issues/823)
-- Close datatable cell editor programmatically [\#822](https://github.com/primefaces/primereact/issues/822)
-- DataTable row selection slow with sortable columns [\#813](https://github.com/primefaces/primereact/issues/813)
-- Add onBlur and onFocus events to multiselect and chips [\#782](https://github.com/primefaces/primereact/issues/782)
-
-**Fixed bugs:**
-
-- On Accordion, the disabled head can be focused on [\#829](https://github.com/primefaces/primereact/issues/829)
-- Datatable property 'stateKey' is missing in types file [\#817](https://github.com/primefaces/primereact/issues/817)
-- Datatable row onClick typescript definition does not match the function or documentation [\#815](https://github.com/primefaces/primereact/issues/815)
-- Overlays wrong position on initial/first render [\#814](https://github.com/primefaces/primereact/issues/814)
-- Chart with latest chart.js does not build [\#812](https://github.com/primefaces/primereact/issues/812)
-- FileUpload thows JS exception in Edge [\#808](https://github.com/primefaces/primereact/issues/808)
-- SlideMenu empty after model change [\#807](https://github.com/primefaces/primereact/issues/807)
-- Dropdown duplicated IDs [\#805](https://github.com/primefaces/primereact/issues/805)
-- DataTable crashes with a "Cannot read property 'xxx' of undefined" for nested objects [\#791](https://github.com/primefaces/primereact/issues/791)
-- Syntax error in optional typescript function interface [\#790](https://github.com/primefaces/primereact/issues/790)
-- Using "maxlength" of Spinner causes errors [\#787](https://github.com/primefaces/primereact/issues/787)
-- "propTypes" incorrectly named as "propsTypes" [\#784](https://github.com/primefaces/primereact/issues/784)
-- Changes to prop does not render ProgressBar [\#783](https://github.com/primefaces/primereact/issues/783)
-- Dropdown - TypeError: Cannot read property 'element' of null [\#781](https://github.com/primefaces/primereact/issues/781)
-- propTypes error using new iconsTemplate [\#780](https://github.com/primefaces/primereact/issues/780)
-- Datatable does not scroll horizontally when there is no data [\#635](https://github.com/primefaces/primereact/issues/635)
-
-## [3.1.0](https://github.com/primefaces/primereact/tree/3.1.0) (2019-02-19)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.0.0...3.1.0)
-
-**Implemented New Features and Enhancements:**
-
-- Filtering for Tree [\#769](https://github.com/primefaces/primereact/issues/769)
-- onClose event for OverlayPanel [\#763](https://github.com/primefaces/primereact/issues/763)
-- Arrow for OverlayPanel [\#762](https://github.com/primefaces/primereact/issues/762)
-- Improve style of p-link component [\#760](https://github.com/primefaces/primereact/issues/760)
-- TableState for DataTable [\#736](https://github.com/primefaces/primereact/issues/736)
-- Filtering for TreeTable [\#380](https://github.com/primefaces/primereact/issues/380)
-
-**Fixed bugs:**
-
-- Datatable toggle issue after reordering [\#774](https://github.com/primefaces/primereact/issues/774)
-- Inputtextarea autoresize invalid height issue after render [\#773](https://github.com/primefaces/primereact/issues/773)
-- TreeTableBodyCell.js: Uncaught TypeError: Cannot read property 'removeAttribute' of null [\#772](https://github.com/primefaces/primereact/issues/772)
-- Dropdown with dataKey attribute throws console errors. [\#768](https://github.com/primefaces/primereact/issues/768)
-- Multiple selection in a table without data is selected by default [\#766](https://github.com/primefaces/primereact/issues/766)
-- InputGroup border issue for using with other components [\#761](https://github.com/primefaces/primereact/issues/761)
-- code debugger in production mode "component input calendar" [\#751](https://github.com/primefaces/primereact/issues/751)
-
-## [3.0.0](https://github.com/primefaces/primereact/tree/3.0.0) (2019-01-22)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.0.0-rc.1...3.0.0)
-
-**Implemented New Features and Enhancements:**
-
-- Customizable editorValidatorEvent for IncellEditing [\#746](https://github.com/primefaces/primereact/issues/746)
-
-**Fixed bugs:**
-
-- Spinner arrow keys not working [\#743](https://github.com/primefaces/primereact/issues/743)
-- Toolbar of Editor Component with nova-dark theme does not render properly. [\#740](https://github.com/primefaces/primereact/issues/740)
-- Paginator - Uncaught TypeError: this.getOptionLabel\(...\).toLowerCase is not a function [\#739](https://github.com/primefaces/primereact/issues/739)
-
-## [3.0.0-rc.1](https://github.com/primefaces/primereact/tree/3.0.0-rc.1) (2019-01-10)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/3.0.0-beta.1...3.0.0-rc.1)
-
-**Implemented New Features and Enhancements:**
-
-- Rename defaultLabel to placeholder in MultiSelect [\#733](https://github.com/primefaces/primereact/issues/733)
-- Enhance accessibility for Checkbox with ARIA roles [\#729](https://github.com/primefaces/primereact/issues/729)
-- Ability to use dataKey as the key in Dropdown [\#727](https://github.com/primefaces/primereact/issues/727)
-- Focused editable Dropdown looks different than non-editable [\#725](https://github.com/primefaces/primereact/issues/725)
-- Header and Footer templates for Calendar component [\#706](https://github.com/primefaces/primereact/issues/706)
-- MultiSelect - Support a fixed defaultLabel [\#674](https://github.com/primefaces/primereact/issues/674)
-
-**Fixed bugs:**
-
-- InputSwitch focus visuals are missing [\#735](https://github.com/primefaces/primereact/issues/735)
-- DataTable edit throws error on route change [\#734](https://github.com/primefaces/primereact/issues/734)
-- Incorrect column sortable prop type definition [\#730](https://github.com/primefaces/primereact/issues/730)
-- ScrollPanel: Cannot read property 'classList' of null [\#726](https://github.com/primefaces/primereact/issues/726)
-- Editor component cannot refresh it's value when the state change [\#724](https://github.com/primefaces/primereact/issues/724)
-- Editor active item is not highlighted in toolbar [\#722](https://github.com/primefaces/primereact/issues/722)
-- InputMask doesn't update the value according to state [\#686](https://github.com/primefaces/primereact/issues/686)
-- DataTable: hide column after reordering columns throws exception [\#668](https://github.com/primefaces/primereact/issues/668)
-- Form validity is true, even though no Dropdown selection has been made. [\#665](https://github.com/primefaces/primereact/issues/665)
-
-## [3.0.0-beta.1](https://github.com/primefaces/primereact/tree/3.0.0-beta.1) (2018-12-24)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.1...3.0.0-beta.1)
-
-**Implemented New Features and Enhancements:**
-
-- Reimplement Menubar [\#721](https://github.com/primefaces/primereact/issues/721)
-- Reimplement TieredMenu [\#720](https://github.com/primefaces/primereact/issues/720)
-- Keyboard Accessibility for Menu [\#719](https://github.com/primefaces/primereact/issues/719)
-- Reimplement PanelMenu Animation with CSSTransition [\#718](https://github.com/primefaces/primereact/issues/718)
-- Remove certain props from Dialog [\#717](https://github.com/primefaces/primereact/issues/717)
-- Reimplement Dialog Positioning [\#715](https://github.com/primefaces/primereact/issues/715)
-- Reimplement Accordion Animation with CSSTransition [\#714](https://github.com/primefaces/primereact/issues/714)
-- Reimplement Fieldset Animation with CSSTransition [\#712](https://github.com/primefaces/primereact/issues/712)
-- Enhance Dialog Animation [\#711](https://github.com/primefaces/primereact/issues/711)
-- Reimplement Panel Animation with CSSTransition [\#710](https://github.com/primefaces/primereact/issues/710)
-- Unify focus visuals in themes [\#709](https://github.com/primefaces/primereact/issues/709)
-- Keyboard Accessibility for PanelMenu [\#703](https://github.com/primefaces/primereact/issues/703)
-- Keyboard Accessibility for MegaMenu [\#702](https://github.com/primefaces/primereact/issues/702)
-- Keyboard Accessibility for Menubar [\#701](https://github.com/primefaces/primereact/issues/701)
-- Keyboard Accessibility for TieredMenu [\#700](https://github.com/primefaces/primereact/issues/700)
-- Improve Lightbox [\#699](https://github.com/primefaces/primereact/issues/699)
-- Keyboard Accessibility for Inplace [\#698](https://github.com/primefaces/primereact/issues/698)
-- Keyboard accessibility for PickList [\#697](https://github.com/primefaces/primereact/issues/697)
-- Keyboard Accessibility for OrderList [\#696](https://github.com/primefaces/primereact/issues/696)
-- Keyboard Accessibility for InputSwitch [\#695](https://github.com/primefaces/primereact/issues/695)
-- DataTable/TreeTable sort headers should be keyboard accessible [\#693](https://github.com/primefaces/primereact/issues/693)
-- Sidebar close icon should receive focus on open [\#692](https://github.com/primefaces/primereact/issues/692)
-- Keyboard Accessibility for MultiSelect [\#691](https://github.com/primefaces/primereact/issues/691)
-- Improve Listbox Accessibility [\#690](https://github.com/primefaces/primereact/issues/690)
-- Improve ToggleButton Accessibility [\#689](https://github.com/primefaces/primereact/issues/689)
-- Improve SelectButton Accessibility [\#687](https://github.com/primefaces/primereact/issues/687)
-- Keyboard navigation support for Showcsse [\#684](https://github.com/primefaces/primereact/issues/684)
-- Replace anchors without href with buttons [\#683](https://github.com/primefaces/primereact/issues/683)
-- Update to Babel 7 [\#682](https://github.com/primefaces/primereact/issues/682)
-- Improve Radio/Checkbox Accessibility [\#681](https://github.com/primefaces/primereact/issues/681)
-
-**Fixed bugs:**
-
-- AutoComplete in multiple mode does not receive focus [\#713](https://github.com/primefaces/primereact/issues/713)
-- OrderList droppoints are not highlighted [\#708](https://github.com/primefaces/primereact/issues/708)
-- TreeTable Pagination Error [\#685](https://github.com/primefaces/primereact/issues/685)
-- Problem TextArea component "Disabled" [\#679](https://github.com/primefaces/primereact/issues/679)
-- Datatable horizontal scroll trigger onVirtualScroll [\#677](https://github.com/primefaces/primereact/issues/677)
-- Spinner does not show the value 0 [\#675](https://github.com/primefaces/primereact/issues/675)
-- KeyFilter uses static instance of the regex [\#672](https://github.com/primefaces/primereact/issues/672)
-- slider.d.ts has wrong import syntax [\#671](https://github.com/primefaces/primereact/issues/671)
-
-## [2.0.1](https://github.com/primefaces/primereact/tree/2.0.1) (2018-12-06)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0...2.0.1)
-
-**Fixed bugs:**
-
-- Align SplitButton Overlay with other overlays [\#667](https://github.com/primefaces/primereact/issues/667)
-- Standalone paginator causes replace is undefined error [\#666](https://github.com/primefaces/primereact/issues/666)
-- onRowCollapse doesn't work on expanded row [\#664](https://github.com/primefaces/primereact/issues/664)
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.6.0...10.6.1)
-## [2.0.0](https://github.com/primefaces/primereact/tree/2.0.0) (2018-12-05)
+## [10.6.0](https://github.com/primefaces/primereact/tree/10.6.0) (2024-03-29)
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-rc.1...2.0.0)
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.5.3...10.6.0)
-**Implemented New Features and Enhancements:**
+**New Features:**
-- More paginator options to DataView [\#657](https://github.com/primefaces/primereact/issues/657)
-- Filtered Dropdown does not close after pressing Enter [\#649](https://github.com/primefaces/primereact/issues/649)
-- Ability to get filtered and/or sorted data in DataTable [\#643](https://github.com/primefaces/primereact/issues/643)
-- Add modal prop to Sidebar [\#639](https://github.com/primefaces/primereact/issues/639)
-- Add currentPageReportTemplate property to Paginator [\#636](https://github.com/primefaces/primereact/issues/636)
-- ProgressBar avoidable re-renders [\#597](https://github.com/primefaces/primereact/issues/597)
-- Feature request: Allow us to choose a different optionLabel to display selected items in MultiSelect [\#451](https://github.com/primefaces/primereact/issues/451)
+- New Component - Stepper [\#6250](https://github.com/primefaces/primereact/issues/6250)
+- New Component - ButtonGroup [\#6251](https://github.com/primefaces/primereact/issues/6251)
+- New Component - FloatLabel [\#6190](https://github.com/primefaces/primereact/issues/6190)
+- New Component - IconField | InputIcon [\#6229](https://github.com/primefaces/primereact/issues/6229)
+- Datatable: "not-in" mode for filter function [\#6252](https://github.com/primefaces/primereact/issues/6252)
-**Fixed bugs:**
+**Enhancements:**
-- Today cell is not highlighed in Calendar when selected [\#660](https://github.com/primefaces/primereact/issues/660)
-- Header checkbox fails with filtering [\#659](https://github.com/primefaces/primereact/issues/659)
-- Data Table resize: disable rightmost border [\#656](https://github.com/primefaces/primereact/issues/656)
-- DataTable Column sortField is ignored [\#653](https://github.com/primefaces/primereact/issues/653)
-- TreeTable: propagateSelectionUp Defect [\#650](https://github.com/primefaces/primereact/issues/650)
-- cannot read property 'dayNamesShort' of undefined [\#647](https://github.com/primefaces/primereact/issues/647)
-- this.props.onSelectionChange is not a function in DataTable [\#641](https://github.com/primefaces/primereact/issues/641)
-- viewDate.getMonth\(\) is not a function [\#612](https://github.com/primefaces/primereact/issues/612)
-
-## [2.0.0-rc.1](https://github.com/primefaces/primereact/tree/2.0.0-rc.1) (2018-11-12)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.9...2.0.0-rc.1)
-
-**Implemented New Features and Enhancements:**
-
-- Dialog default prop values [\#638](https://github.com/primefaces/primereact/issues/638)
-- Reimplement InputTextarea Resize [\#629](https://github.com/primefaces/primereact/issues/629)
-- Remove Schedule [\#628](https://github.com/primefaces/primereact/issues/628)
-- Replace event.data with event.value at onSelectionChange of DataTable [\#626](https://github.com/primefaces/primereact/issues/626)
-- Reimplement ContextMenu Selection of DataTable [\#625](https://github.com/primefaces/primereact/issues/625)
-- Enter key should select a Tree node [\#624](https://github.com/primefaces/primereact/issues/624)
-- Remove defaultExpanded from TreeNode [\#623](https://github.com/primefaces/primereact/issues/623)
-- renderActiveOnly prop for Tabs [\#618](https://github.com/primefaces/primereact/issues/618)
-- virtualRowHeight attribute in Table component [\#616](https://github.com/primefaces/primereact/issues/616)
-- Remove defaultExpanded from TreeNode API [\#606](https://github.com/primefaces/primereact/issues/606)
-- Keyboard Support for Table Row Selection [\#605](https://github.com/primefaces/primereact/issues/605)
-- Select a tree node with enter key [\#604](https://github.com/primefaces/primereact/issues/604)
-- Improve button focus visuals on Nova and Luna [\#602](https://github.com/primefaces/primereact/issues/602)
+- Component structure enhancement - Tree TreeTable [\#6240](https://github.com/primefaces/primereact/issues/6240)
+- MultistateCheckbox update [\#6249](https://github.com/primefaces/primereact/issues/6249)
+- Enhancement focusOnHover Prop [\#6230](https://github.com/primefaces/primereact/issues/6230)
+- TreeSelect: can't change default text "No results found" when not find data in filter TreeSelect [\#6173](https://github.com/primefaces/primereact/issues/6173)
+- Listbox - focusOnHover prop [\#6171](https://github.com/primefaces/primereact/issues/6171)
+- Upgrade PrimeIcons 7.0.0 [\#6255](https://github.com/primefaces/primereact/issues/6255)
**Fixed bugs:**
-- Dropdown throws error on hide [\#631](https://github.com/primefaces/primereact/issues/631)
-- AccordionTab title with custom HTML gives error [\#615](https://github.com/primefaces/primereact/issues/615)
-- Datatable autoLayout not working [\#599](https://github.com/primefaces/primereact/issues/599)
-- Tooltips not updating [\#598](https://github.com/primefaces/primereact/issues/598)
-- Dialog z-index [\#596](https://github.com/primefaces/primereact/issues/596)
-
-## [2.0.0-beta.9](https://github.com/primefaces/primereact/tree/2.0.0-beta.9) (2018-10-08)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.8...2.0.0-beta.9)
-
-**Implemented New Features and Enhancements:**
-
-- Reimplement Slider [\#592](https://github.com/primefaces/primereact/issues/592)
-- New Component: DeferredContent [\#591](https://github.com/primefaces/primereact/issues/591)
+- Paginator: JumpToPageInput is broken by latest changes in Paginator [\#6226](https://github.com/primefaces/primereact/issues/6226)
+- RadioButton: onChange is being triggered twice. [\#6223](https://github.com/primefaces/primereact/issues/6223)
+- MultiSelect: selectionMessage not changing using locales [\#6220](https://github.com/primefaces/primereact/issues/6220)
+- DataTable: NumpadEnter ignored during cell editing (and many other cases) [\#6023](https://github.com/primefaces/primereact/issues/6023)
+- InputNumber: Does not allow copy/pasting [\#6192](https://github.com/primefaces/primereact/issues/6192)
+- DataTable: RowClass conditional styling not working [\#6194](https://github.com/primefaces/primereact/issues/6194)
+- Calendar: AM/PM does not work properly if minDate and maxDate validations are provided as prop [\#6151](https://github.com/primefaces/primereact/issues/6151)
+- Calendar: When using timeonly and stepMinute prop together, minute is not showing correctly in the input field [\#5998](https://github.com/primefaces/primereact/issues/5998)
+- DataTable 10.5.3: Drag to select doesn't work on any page past page 1 when paginated [\#6211](https://github.com/primefaces/primereact/issues/6211)
+- Checkbox: Warning: specify either the checked prop, or the defaultChecked prop, but not both [\#6197](https://github.com/primefaces/primereact/issues/6197)
+- Dropdown: missing hover style [\#6196](https://github.com/primefaces/primereact/issues/6196)
+- TabView: Id doubles at root and nav elements [\#6201](https://github.com/primefaces/primereact/issues/6201)
+- RadioButton, ToggleButton: Warning: Invalid DOM property readonly. Did you mean readOnly? [\#6186](https://github.com/primefaces/primereact/issues/6186)
+- RadioButtoCheckBox wrong display [\#6181](https://github.com/primefaces/primereact/issues/6181)
+- Checkbox: prop onClick changes the event type in 10.5.3 [\#6231](https://github.com/primefaces/primereact/issues/6231)
+- TabView: TabPanel doesn't close if the 'closeIcon' prop is used [\#6165](https://github.com/primefaces/primereact/issues/6165)
+- DataTable: Column Filter Typescript fix [\#6233](https://github.com/primefaces/primereact/issues/6233)
+- ListBox: throw undefined error calling preventDefault() when running jest tests. [\#6184](https://github.com/primefaces/primereact/issues/6184)
+
+## [10.5.3](https://github.com/primefaces/primereact/tree/10.5.3) (2024-03-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.5.2...10.5.3)
**Fixed bugs:**
-- Add disabled property to Slider [\#593](https://github.com/primefaces/primereact/issues/593)
-- Floating label for TextInput with number value fails [\#588](https://github.com/primefaces/primereact/issues/588)
-- Sidebar component not working when visible by default [\#587](https://github.com/primefaces/primereact/issues/587)
-- Presence of step prop will slow down reactivity of the Slider component [\#586](https://github.com/primefaces/primereact/issues/586)
+- Messages Missing MergeProps [\#6179](https://github.com/primefaces/primereact/issues/6179)
-## [2.0.0-beta.8](https://github.com/primefaces/primereact/tree/2.0.0-beta.8) (2018-09-24)
+## [10.5.2](https://github.com/primefaces/primereact/tree/10.5.2) (2024-03-19)
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.7...2.0.0-beta.8)
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.5.1...10.5.2)
-**Implemented New Features and Enhancements:**
+**New Features:**
-- PrimeReact input events are not compatible with React forms libraries [\#537](https://github.com/primefaces/primereact/issues/537)
-- Aria roles and attributes for Tree [\#580](https://github.com/primefaces/primereact/issues/580)
-- New Luna Free Dark Theme Family [\#579](https://github.com/primefaces/primereact/issues/579)
-- Keyboard navigation for Tree [\#578](https://github.com/primefaces/primereact/issues/578)
-- Enhanced keyboard search for dropdown [\#577](https://github.com/primefaces/primereact/issues/577)
+- Calendar: add 'hideOnRangeSelection' from PrimeVue [\#5970](https://github.com/primefaces/primereact/issues/5970)
+- New MeterGroup Component [\#5977](https://github.com/primefaces/primereact/issues/5977)
+- New invalid properties [\#6139](https://github.com/primefaces/primereact/issues/6139)
-**Fixed bugs:**
-
-- DataTable sort issue with sortIcon [\#585](https://github.com/primefaces/primereact/issues/585)
-- AutoComplete does not update input when value prop changes [\#576](https://github.com/primefaces/primereact/issues/576)
-- Typos in Tree.d.ts [\#573](https://github.com/primefaces/primereact/issues/573)
+**Enhancements:**
-## [2.0.0-beta.7](https://github.com/primefaces/primereact/tree/2.0.0-beta.7) (2018-09-18)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.6...2.0.0-beta.7)
+- Primereact uses document.getElementById(undefined) for appending component styles [\#6079](https://github.com/primefaces/primereact/issues/6079)
+- InputNumber: onChange and onValueChange events are not triggered when using keyboard shortcut for "cut" action [\#6047](https://github.com/primefaces/primereact/issues/6047)
+- StyleClass: deprecate enterClassName/leaveClassName use enterFromClassName/leaveFromClassName [\#6105](https://github.com/primefaces/primereact/issues/6105)
+- Contrast and Secondary Variants for Badge/Tag/Message/Toast [\#5985](https://github.com/primefaces/primereact/issues/5985)
+- LastPageLink in Paginator: doesn't give "totalPages" in options [\#5978](https://github.com/primefaces/primereact/issues/5978)
+- Toast: onRemove's message changes its data structure [\#5972](https://github.com/primefaces/primereact/issues/5972)
+- Password: (accessiblility) cannot access toggle button using keyboard [\#6046](https://github.com/primefaces/primereact/issues/6046)
+- DataTable_BodyCell: Duplicate key "aria-label" in object literal [\#6168](https://github.com/primefaces/primereact/issues/6168)
+- Splitter: Accessibility updates [\#6039](https://github.com/primefaces/primereact/issues/6039)
+- Tree : Accessibility issues [\#5426](https://github.com/primefaces/primereact/issues/5426)
+- Primereact Dropdown accessibility. Value isn't being read by VoiceOver screen reader. [\#5836](https://github.com/primefaces/primereact/issues/5836)
+- Multiselect: Accessibility issue aria-allowed-role - list-box role not allowed [\#5446](https://github.com/primefaces/primereact/issues/5446)
+- ListBox: options not focusable using keyboard [\#3672](https://github.com/primefaces/primereact/issues/3672)
+- Dropdown: NVDA failed to read correctly readonly [\#1413](https://github.com/primefaces/primereact/issues/1413)
**Fixed bugs:**
-- Uncontrolled input text does not support floating labels [\#572](https://github.com/primefaces/primereact/issues/572)
-- VirtualScroll is broken [\#560](https://github.com/primefaces/primereact/issues/560)
-
-## [2.0.0-beta.6](https://github.com/primefaces/primereact/tree/2.0.0-beta.6) (2018-09-17)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.5...2.0.0-beta.6)
-
-**Fixed bugs:**
-
-- Dialog mask has no index at initial display [\#571](https://github.com/primefaces/primereact/issues/571)
-- New Tree component: duplicate key error when 2 TreeNodes has same label [\#570](https://github.com/primefaces/primereact/issues/570)
-
-## [2.0.0-beta.5](https://github.com/primefaces/primereact/tree/2.0.0-beta.5) (2018-09-11)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.4...2.0.0-beta.5)
+- MultiStateCheckbox: unstyled prop doesnt work properly [\#6061](https://github.com/primefaces/primereact/issues/6061)
+- Dropdown: unselects option when loses focus [\#6035](https://github.com/primefaces/primereact/issues/6035)
+- Image: Preview toolbar buttons only close the preview in unstyled NextJS 14 [\#6037](https://github.com/primefaces/primereact/issues/6037)
+- Dropdown component fails to expand the dropdown box after adding the filter and editable properties. [\#6027](https://github.com/primefaces/primereact/issues/6027)
+- Tree: Lazy loaded tree crashes when using keyboard navigation (right arrow) to expand [\#6049](https://github.com/primefaces/primereact/issues/6049)
+- DomHandler.js: getComputedStyle getPropertyValue should be in hyphen case. [\#6055](https://github.com/primefaces/primereact/issues/6055)
+- AutoComplete: Resetting value doesn't work [\#6044](https://github.com/primefaces/primereact/issues/6044)
+- Chips: the component doesn't function properly on mobile devices [\#6086](https://github.com/primefaces/primereact/issues/6086)
+- MultiSelect: selectedOption undefined on MultiSelectChangeEvent [\#6097](https://github.com/primefaces/primereact/issues/6097)
+- Documentation: Problem with Dark Theme in Default column on Components API section [\#6125](https://github.com/primefaces/primereact/issues/6125)
+- Datatable: Horizontal scroller with selection/checkbox resets to initial position on clicking row [\#3155](https://github.com/primefaces/primereact/issues/3155)
+- Password: the feedback bar does not reset when I clear the field [\#6119](https://github.com/primefaces/primereact/issues/6119)
+- Slider: Null event.value within the onSlideEnd [\#6101](https://github.com/primefaces/primereact/issues/6101)
+- Typescript: update LocaleOptions interface [\#6050](https://github.com/primefaces/primereact/issues/6050)
+- Accordion/PanelMenu: (Tailwind) animation issues [\#5540](https://github.com/primefaces/primereact/issues/5540)
+- InputNumber onValueChange ignores Numpad Enter [\#6107](https://github.com/primefaces/primereact/issues/6107)
+- Dialog: inconsistency between theming documentation and used classnames (from source code) [\#6024](https://github.com/primefaces/primereact/issues/6024)
+- OrganizationChart: Documentation issue in Basic and Template sections. [\#6070](https://github.com/primefaces/primereact/issues/6070)
+- TreeTable: Documentation issues [\#6078](https://github.com/primefaces/primereact/issues/6078)
+- Sidebar: "Pass Through" documentation corrections [\#6068](https://github.com/primefaces/primereact/issues/6068)
+- Speed Dial: TypeError: Cannot read properties of undefined (reading 'visible') [\#6156](https://github.com/primefaces/primereact/issues/6156)
+- TextInput: className property is written two times into the class attribute in DOM [\#6160](https://github.com/primefaces/primereact/issues/6160)
+- Typo error in the DataTable documentation [\#6147](https://github.com/primefaces/primereact/issues/6147)
+- MultiSelect: loading prop in typescript shows error when called [\#6113](https://github.com/primefaces/primereact/issues/6113)
+- Documentation: Duplicate useState in HeadlessSidebar Demo Full Code Example [\#6033](https://github.com/primefaces/primereact/issues/6033)
+- Tailwind: content does not exist in MenuPassThroughOption [\#6063](https://github.com/primefaces/primereact/issues/6063)
+- Tooltip component shows unstyled error [\#6080](https://github.com/primefaces/primereact/issues/6080)
+- Calendar: TypeScript Definitions do not match with actual PT props [\#6094](https://github.com/primefaces/primereact/issues/6094)
+- Tree_Drag and Drop: validateDropPoint function is throwing error [\#6048](https://github.com/primefaces/primereact/issues/6048)
+- Tree: Custom icon assignation is not working [\#6116](https://github.com/primefaces/primereact/issues/6116)
+- ConfirmDialog. Error message: "Warning: Invalid value for prop content on div tag. [\#6111](https://github.com/primefaces/primereact/issues/6111)
+- Accordion: Wrong prop in TailwindDoc [\#6132](https://github.com/primefaces/primereact/issues/6132)
+- AutoComplete: event type in onInput prop is FormEvent-HtmlSpanElement [\#6145](https://github.com/primefaces/primereact/issues/6145)
+- Dropdown: editable prop requires optionLabel to be exactly "name" and options object to contain a "name" key [\#6076](https://github.com/primefaces/primereact/issues/6076)
+- TreeTable: Accessibility navigation is triggered when editing a cell following 10.3.3 update [\#6018](https://github.com/primefaces/primereact/issues/6018)
+- DataTable: Memory leak when data updated continuously [\#5927](https://github.com/primefaces/primereact/issues/5927)
+- DataTable: Virtual Scroller position resets upon lazy loaded [\#6015](https://github.com/primefaces/primereact/issues/6015)
+- Knobs: Wrong component shown in basic code example for React Hook Form [\#6013](https://github.com/primefaces/primereact/issues/6013)
+- Showcase: Problem For DataTable in TS [\#6002](https://github.com/primefaces/primereact/issues/6002)
+- useDisplayOrder: clears incorrect [\#6000](https://github.com/primefaces/primereact/issues/6000)
+- DataTable: Virtual Scroll error in dev mode [\#6006](https://github.com/primefaces/primereact/issues/6006)
+- Datatable + Virtual Scroller: Multiselect passes undefined to onSelectionChange [\#5870](https://github.com/primefaces/primereact/issues/5870)
+- Dropdown: editable input get console error when optionValue is not 'name' [\#6004](https://github.com/primefaces/primereact/issues/6004)
+- DataTable: rowClassName don't take prevalence over passthrough tailwind [\#5983](https://github.com/primefaces/primereact/issues/5983)
+- TabMenu is not updating its style when using unstyled mode and controlled mode [\#5992](https://github.com/primefaces/primereact/issues/5992)
+- SelectButton: Inappropriate UI [\#5841](https://github.com/primefaces/primereact/issues/5841)
+- Calendar: using yearNavigator cause exception error [\#5973](https://github.com/primefaces/primereact/issues/5973)
+- MenubarSub: Each child in a list should have a unique "key" prop. [\#5976](https://github.com/primefaces/primereact/issues/5976)
+- Sidebar: Unable to write unit test: groupToDisplayedElements'group'.findLastIndex is not a function [\#5954](https://github.com/primefaces/primereact/issues/5954)
+- BlockUI: setting blocked to false has no effect [\#5889](https://github.com/primefaces/primereact/issues/5889)
+- Select button accepts children but doesnt render them [\#5888](https://github.com/primefaces/primereact/issues/5888)
+- DataTableColReorderEvent.columns has a wrong type [\#5962](https://github.com/primefaces/primereact/issues/5962)
+
+## [10.5.1](https://github.com/primefaces/primereact/tree/10.5.1) (2024-02-14)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.5.0...10.5.1)
+
+**New Features:**
+
+- Icon: BlankIcon [\#5957](https://github.com/primefaces/primereact/issues/5957)
+
+**Enhancements:**
+
+- Tree: Missing emptyMessage prop [\#5950](https://github.com/primefaces/primereact/issues/5950)
+- MultiSelect: no way to change MultiSelect chips appearence [\#5935](https://github.com/primefaces/primereact/issues/5935)
**Fixed bugs:**
-- Calendar warning with omission of onChange from InputText [\#569](https://github.com/primefaces/primereact/issues/569)
+- metaKeySelection default type is changed as false [\#5956](https://github.com/primefaces/primereact/issues/5956)
+- Hydration attribute mismatch on Icons [\#5955](https://github.com/primefaces/primereact/issues/5955)
+- Dropdown component is triggering onChange when tabbing over [\#5942](https://github.com/primefaces/primereact/issues/5942)
+- Menu component with routes rerenders all the components on every route [\#5941](https://github.com/primefaces/primereact/issues/5941)
+- Remove CodeSandbox Demos [\#5946](https://github.com/primefaces/primereact/issues/5946)
+- Multi-select / Dropdown will not lose focus [\#5929](https://github.com/primefaces/primereact/issues/5929)
+- Add ID to menubar top level prevents focus [\#5930](https://github.com/primefaces/primereact/issues/5930)
+- Splitter: local storage sync is not working [\#5916](https://github.com/primefaces/primereact/issues/5916)
+- DataTable: onRowEditValidator rowData is old value not newly updated value [\#2424](https://github.com/primefaces/primereact/issues/2424)
+- Tooltip Passthrough Options Not Styling [\#5932](https://github.com/primefaces/primereact/issues/5932)
+- PanelMenu: "activeItems" is read-only [\#5928](https://github.com/primefaces/primereact/issues/5928)
+- SplitButton appendTo="self" placement is wrong [\#5921](https://github.com/primefaces/primereact/issues/5921)
+- MultiSelect: Enter | Space Overlay Closes [\#5914](https://github.com/primefaces/primereact/issues/5914)
+- Calendar: Panel width too small with default Tailwind [\#5830](https://github.com/primefaces/primereact/issues/5830)
+- Password: Hand/Pointer icon not displayed while hovering over the eye icon in password ToggleMask mode [\#5905](https://github.com/primefaces/primereact/issues/5905)
-## [2.0.0-beta.4](https://github.com/primefaces/primereact/tree/2.0.0-beta.4) (2018-09-11)
+## [10.5.0](https://github.com/primefaces/primereact/tree/10.5.0) (2024-02-06)
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.3...2.0.0-beta.4)
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.4.0...10.5.0)
-**Implemented New Features and Enhancements:**
+**Enhancements:**
-- Keyboard support for Dialog Icons [\#568](https://github.com/primefaces/primereact/issues/568)
-- Pass column props to columnResizeEnd [\#564](https://github.com/primefaces/primereact/issues/564)
-- New Tree Component [\#559](https://github.com/primefaces/primereact/issues/559)
-- Integrate PrimeFlex Grid System [\#556](https://github.com/primefaces/primereact/issues/556)
-- className parameter unsupported by Spinner component [\#548](https://github.com/primefaces/primereact/issues/548)
+- TabView/TabPanel: Can't have TabPanels in a JSX fragment [\#5900](https://github.com/primefaces/primereact/issues/5900)
+- Input Accessibility [\#5991](https://github.com/primefaces/primereact/issues/5991)
**Fixed bugs:**
-- Dialog resize fails [\#567](https://github.com/primefaces/primereact/issues/567)
-- Dialog resizer css is broken [\#566](https://github.com/primefaces/primereact/issues/566)
-- OverlayPanel has no shadow [\#558](https://github.com/primefaces/primereact/issues/558)
-- Border radius missing in panel components [\#557](https://github.com/primefaces/primereact/issues/557)
-- Spinner does not recognize outside changes for value prop [\#555](https://github.com/primefaces/primereact/issues/555)
-- DataTable in IE: TypeError: Object expected [\#554](https://github.com/primefaces/primereact/issues/554)
-- DataTable's onRowUnselect causes exception [\#552](https://github.com/primefaces/primereact/issues/552)
-- Optimize functionality of filtered dropdowns [\#551](https://github.com/primefaces/primereact/issues/551)
-- Dialog blockScroll is undocumented [\#550](https://github.com/primefaces/primereact/issues/550)
-- Body text is selected during Dialog drag [\#549](https://github.com/primefaces/primereact/issues/549)
-- ui-float-label does not work properly for AutoComplete [\#517](https://github.com/primefaces/primereact/issues/517)
-- Float-label does not work properly for InputMask [\#516](https://github.com/primefaces/primereact/issues/516)
-
-## [2.0.0-beta.3](https://github.com/primefaces/primereact/tree/2.0.0-beta.3) (2018-08-26)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.2...2.0.0-beta.3)
+- Menu: No ripple effect [\#5901](https://github.com/primefaces/primereact/issues/5901)
+- FilterMatchMode.CUSTOM & filterFunction broken + custom filter type errors [\#3325](https://github.com/primefaces/primereact/issues/3325)
+- Calendar: Panel width too small with default Tailwind [\#5830](https://github.com/primefaces/primereact/issues/5830)
+- Menu: separator style missing in default Tailwind [\#5890](https://github.com/primefaces/primereact/issues/5890)
+- Paginator JumpToPageInput not working [\#5893](https://github.com/primefaces/primereact/issues/5893)
+- Primereact Splitter resize [\#5892](https://github.com/primefaces/primereact/issues/5892)
+- Password component hide/show button shouldnt be wrapped with [\#5880](https://github.com/primefaces/primereact/issues/5880)
+- Menu: Unhandled Runtime Error with Nextjs and Tailwind passthrough [\#5885](https://github.com/primefaces/primereact/issues/5885)
+- Dock: Sample code missing DockDemo.css [\#5882](https://github.com/primefaces/primereact/issues/5882)
+- Prevent multiselect/dropdown box from closing on page scroll [\#5872](https://github.com/primefaces/primereact/issues/5872)
+- Calendar : enabledDates is not evaluated with disabledDays [\#5863](https://github.com/primefaces/primereact/issues/5863)
-## [2.0.0-beta.2](https://github.com/primefaces/primereact/tree/2.0.0-beta.2) (2018-08-25)
+## [10.4.0](https://github.com/primefaces/primereact/tree/10.4.0) (2024-02-01)
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.1...2.0.0-beta.2)
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.3.3...10.4.0)
-**Implemented New Features and Enhancements:**
+**Enhancements:**
-- Reimplement Tooltip [\#547](https://github.com/primefaces/primereact/issues/547)
-- Keyboard support for toggle button [\#545](https://github.com/primefaces/primereact/issues/545)
-- Remove font-awesome from Demos [\#544](https://github.com/primefaces/primereact/issues/544)
-- Remove DataGrid and DataList [\#543](https://github.com/primefaces/primereact/issues/543)
-- New styling engine [\#539](https://github.com/primefaces/primereact/issues/539)
-- Property appendTo in menus [\#535](https://github.com/primefaces/primereact/issues/535)
-- Deprecate Free Themes in favor of Nova Free Theme Family [\#527](https://github.com/primefaces/primereact/issues/527)
+- Splitter: missing/incorrect accessibility features [\#5849](https://github.com/primefaces/primereact/issues/5849)
+- New Component | FocusTrap [\#5829](https://github.com/primefaces/primereact/issues/5829)
+- Enhancement: DataTable accessibility [\#5839](https://github.com/primefaces/primereact/issues/5839)
**Fixed bugs:**
-- Tooltip does not remove event listeners [\#542](https://github.com/primefaces/primereact/issues/542)
-- Accordion does not work with multiple controlled tabs [\#540](https://github.com/primefaces/primereact/issues/540)
-- Menubar import is not working [\#531](https://github.com/primefaces/primereact/issues/531)
-- ColumnGroup can't be imported [\#530](https://github.com/primefaces/primereact/issues/530)
-- InputTextProps not type correctly [\#529](https://github.com/primefaces/primereact/issues/529)
-- originalEvent in TabView has swapped typing/variable name in TabView.d.ts [\#528](https://github.com/primefaces/primereact/issues/528)
-- Calendar manual input doesn't work with time [\#526](https://github.com/primefaces/primereact/issues/526)
-- Breadcrumb component throws warning [\#522](https://github.com/primefaces/primereact/issues/522)
-
-## [2.0.0-beta.1](https://github.com/primefaces/primereact/tree/2.0.0-beta.1) (2018-07-19)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-alpha.1...2.0.0-beta.1)
-
-**Implemented New Features and Enhancements:**
-
-- Improve input overlay animations [\#514](https://github.com/primefaces/primereact/issues/514)
-- Reimplement InputSwitch UI [\#513](https://github.com/primefaces/primereact/issues/513)
-- Common Props for AutoComplete and Spinner [\#512](https://github.com/primefaces/primereact/issues/512)
-- Reimplement Calendar [\#504](https://github.com/primefaces/primereact/issues/504)
-- Update Schedule component to remove jQuery [\#476](https://github.com/primefaces/primereact/issues/476)
+- Divider (Tailwind): className not used [\#5862](https://github.com/primefaces/primereact/issues/5862)
+- Calendar : enabledDates is not evaluated with disabledDays [\#5863](https://github.com/primefaces/primereact/issues/5863)
+- Tree : Need "no results found" message if no matches found in the filter [\#5813](https://github.com/primefaces/primereact/issues/5813)
+- Showcase: TypeScript demos are failing in StackBlitz/CodeSandbox [\#5800](https://github.com/primefaces/primereact/issues/5800)
+- Dropdown: items focused when pressing letters in contexts where they shouldn't [\#5855](https://github.com/primefaces/primereact/issues/5855)
+- Unnecessary Javascript-Warning in Galleria onShow and onHide [\#5854](https://github.com/primefaces/primereact/issues/5854)
+- Calendar blur not working [\#5850](https://github.com/primefaces/primereact/issues/5850)
+- Dropdown: Missing property loading in DropdownProps Interface [\#5847](https://github.com/primefaces/primereact/issues/5847)
+- Carousel: Visual bugs when loading carousel with responsiveCarouselOptions [\#5166](https://github.com/primefaces/primereact/issues/5166)
+- Sidebar with content prop gives console warning [\#5834](https://github.com/primefaces/primereact/issues/5834)
+- Menubar: Does not respect the MenuItem id property [\#5827](https://github.com/primefaces/primereact/issues/5827)
+- Chips: Separator by new line doesn't work by pasting value [\#5824](https://github.com/primefaces/primereact/issues/5824)
+- Editor: Editor missing unordered list in the header [\#5818](https://github.com/primefaces/primereact/issues/5818)
+- Threshold not working useIntersectionObserver hook [\#5809](https://github.com/primefaces/primereact/issues/5809)
+- Accordion (Tailwind): Cannot read properties of undefined (reading 'disabled') [\#5804](https://github.com/primefaces/primereact/issues/5804)
+- Datatable Column Filter: Clear Button will not show if filter menu button is hidden [\#5802](https://github.com/primefaces/primereact/issues/5802)
+- className is not passes to TieredMenu items [\#5868](https://github.com/primefaces/primereact/issues/5868)
+
+## [10.3.3](https://github.com/primefaces/primereact/tree/10.3.3) (2024-01-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.3.2...10.3.3)
+
+**Enhancements:**
+
+- Accessibility | Data Components (Part 1) [\#5675](https://github.com/primefaces/primereact/issues/5675)
+- Accessibility | Input Components (Part 1) [\#5720](https://github.com/primefaces/primereact/issues/5720)
+- Calendar: timeOnly Today button should be Now [\#5722](https://github.com/primefaces/primereact/issues/5722)
+- Remove primeflex dependency from DataView [\#5798](https://github.com/primefaces/primereact/issues/5798)
**Fixed bugs:**
-- Slider shorthand import fails [\#511](https://github.com/primefaces/primereact/issues/511)
-- Error importing Column component [\#509](https://github.com/primefaces/primereact/issues/509)
-- Typescript definition for Column's editor property [\#505](https://github.com/primefaces/primereact/issues/505)
-- Path to primereact/components/common/common.css not correct case [\#500](https://github.com/primefaces/primereact/issues/500)
-- InputText class ui-state-filled fails [\#499](https://github.com/primefaces/primereact/issues/499)
-- Calendar: popup translation not updating [\#478](https://github.com/primefaces/primereact/issues/478)
-- InputSwitch doesn't update programmatically [\#461](https://github.com/primefaces/primereact/issues/461)
-- preventDefault\(\) and stopPropagation\(\) appear to be missing from drag and drop of DataTable - Reorder and causes redirect to 'www.b.com' [\#460](https://github.com/primefaces/primereact/issues/460)
-
-## [2.0.0-alpha.1](https://github.com/primefaces/primereact/tree/2.0.0-alpha.1) (2018-07-06)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.6.2...2.0.0-alpha.1)
-
-**Implemented New Features and Enhancements:**
-
-- Review/Enhance all documentation [\#497](https://github.com/primefaces/primereact/issues/497)
-- Review all type definition files [\#496](https://github.com/primefaces/primereact/issues/496)
-- Reimplement Chips [\#494](https://github.com/primefaces/primereact/issues/494)
-- Chips should not keep value in state [\#493](https://github.com/primefaces/primereact/issues/493)
-- Controlled/Uncontrolled behavior support for DataTable Features [\#492](https://github.com/primefaces/primereact/issues/492)
-- Reimplement DataTable Lazy Loading [\#491](https://github.com/primefaces/primereact/issues/491)
-- onClick for Fieldset [\#487](https://github.com/primefaces/primereact/issues/487)
-- Refactor Sidebar [\#486](https://github.com/primefaces/primereact/issues/486)
-- Horizontal scroll support to ScrollPanel [\#485](https://github.com/primefaces/primereact/issues/485)
-- Reimplement DataView [\#484](https://github.com/primefaces/primereact/issues/484)
-- Add name prop to Chips [\#483](https://github.com/primefaces/primereact/issues/483)
-- Controlled/Uncontrolled modes for Toggleable Fieldset [\#480](https://github.com/primefaces/primereact/issues/480)
-- Controlled/Uncontrolled modes for Toggleable Panel [\#479](https://github.com/primefaces/primereact/issues/479)
-- Controlled/Uncontrolled modes for TabView [\#475](https://github.com/primefaces/primereact/issues/475)
-- Controlled/Uncontrolled modes for Accordion [\#474](https://github.com/primefaces/primereact/issues/474)
-- New Component: Inplace [\#471](https://github.com/primefaces/primereact/issues/471)
-- Shorter Imports [\#470](https://github.com/primefaces/primereact/issues/470)
-- Rewrite SlideMenu [\#469](https://github.com/primefaces/primereact/issues/469)
-- Rewrite PanelMenu [\#468](https://github.com/primefaces/primereact/issues/468)
-- Rewrite MegaMenu [\#467](https://github.com/primefaces/primereact/issues/467)
-- Rewrite ContextMenu [\#466](https://github.com/primefaces/primereact/issues/466)
-- Rewrite MenuBar [\#465](https://github.com/primefaces/primereact/issues/465)
-- Rewrite TieredMenu [\#464](https://github.com/primefaces/primereact/issues/464)
-- Rewrite Breadcrumb [\#463](https://github.com/primefaces/primereact/issues/463)
-- Rewrite Steps [\#462](https://github.com/primefaces/primereact/issues/462)
-- Controlled/Uncontrolled modes for TabMenu [\#459](https://github.com/primefaces/primereact/issues/459)
-- Rewrite Menu [\#458](https://github.com/primefaces/primereact/issues/458)
-- Maximizable Dialog [\#453](https://github.com/primefaces/primereact/issues/453)
-- Dialog should not derive visible state from props [\#452](https://github.com/primefaces/primereact/issues/452)
-- Add a 'closable' or 'dismissable' property to Sidebar for 'click outside' control. [\#377](https://github.com/primefaces/primereact/issues/377)
-
-**Fixed bugs:**
-
-- InputMask can not read property 'bind' of undefined [\#490](https://github.com/primefaces/primereact/issues/490)
-- Dropdown with autoFocus prop throws a JS error [\#489](https://github.com/primefaces/primereact/issues/489)
-- InputMask fail when unmask is true [\#488](https://github.com/primefaces/primereact/issues/488)
-- Toggleable Panel Icon Misaligned [\#481](https://github.com/primefaces/primereact/issues/481)
-- Calendar dateFormat day name or month name gives error [\#455](https://github.com/primefaces/primereact/issues/455)
-- wrong typings for itemTemplate property [\#454](https://github.com/primefaces/primereact/issues/454)
-- optionLabel prop is missing in MultiSelect [\#450](https://github.com/primefaces/primereact/issues/450)
-- Unable to change rows per page \(Paginator/DataTable\) [\#449](https://github.com/primefaces/primereact/issues/449)
-
-## [1.6.2](https://github.com/primefaces/primereact/tree/1.6.2) (2018-06-19)
+- Menu items are not rendered when the page is opened with a router [\#5794](https://github.com/primefaces/primereact/issues/5794)
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.6.1...1.6.2)
+## [10.3.2](https://github.com/primefaces/primereact/tree/10.3.2) (2024-01-17)
-**Implemented New Features and Enhancements:**
-
-- Refactor Rating to remove usage of state [\#447](https://github.com/primefaces/primereact/issues/447)
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.3.1...10.3.2)
**Fixed bugs:**
-- Accordion onTabOpen-onTabClose does not trigger correctly [\#448](https://github.com/primefaces/primereact/issues/448)
-
-## [1.6.1](https://github.com/primefaces/primereact/tree/1.6.1) (2018-06-18)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.6.0...1.6.1)
-
-**Implemented New Features and Enhancements:**
-
-- Migrate to PrimeIcons [\#446](https://github.com/primefaces/primereact/issues/446)
+- FileUpload component, file content for non-image file types [\#5786](https://github.com/primefaces/primereact/issues/5786)
+- Mega Menu is not working on mobile devices [\#5788](https://github.com/primefaces/primereact/issues/5788)
+- Megamenu demo pages should sync with primevue megamenu demos [\#5791](https://github.com/primefaces/primereact/issues/5791)
+- Panel Menu opens empty item [\#5789](https://github.com/primefaces/primereact/issues/5789)
+- Menubar demo classname typo [\#5790](https://github.com/primefaces/primereact/issues/5790)
+- Float Label demo is broken in mobile mode [\#5781](https://github.com/primefaces/primereact/issues/5781)
+- Megamenu demo pages should sync with primevue megamenu demos [\#5791](https://github.com/primefaces/primereact/issues/5791)
+- PanelMenu:Items not displaying correctly [\#5777](https://github.com/primefaces/primereact/issues/5777)
+- ConfirmDialog:confirmDialog method in unstyled mode, the pop-up window style not apply [\#5656](https://github.com/primefaces/primereact/issues/5656)
+- Image: image zoomed out when opening second time [\#5771](https://github.com/primefaces/primereact/issues/5771)
+- Global Escape Key Listener Already Exists Error When Opening Multiple Dialogs [\#5767](https://github.com/primefaces/primereact/issues/5767)
+- Calendar: Month does not change when the onViewDateChange property is used [\#5754](https://github.com/primefaces/primereact/issues/5754)
+- TieredMenu and Megamenu: not rendering content [\#5766](https://github.com/primefaces/primereact/issues/5766)
+- InputMask: cannot test component with @testing-library/user-event >= 14.0.0 [\#5747](https://github.com/primefaces/primereact/issues/5747)
+- Locale: Clarify configuration [\#5760](https://github.com/primefaces/primereact/issues/5760)
+- Accordion: Error reading disabled [\#5757](https://github.com/primefaces/primereact/issues/5757)
+- DataTable: cell editing can't be cancelled when invalid [\#5750](https://github.com/primefaces/primereact/issues/5750)
+- Panel: Passthrough not working for header [\#5570](https://github.com/primefaces/primereact/issues/5570)
+- Calendar input pt [\#5564](https://github.com/primefaces/primereact/issues/5564)
+- ConfirmDialog pt prop style doesn't work with tailwind classes [\#5144](https://github.com/primefaces/primereact/issues/5144)
+- InputNumber: format error after the decimal point when Locale set de-DE [\#5745](https://github.com/primefaces/primereact/issues/5745)
+- TieredMenu: Reference error - create Submenu [\#5751](https://github.com/primefaces/primereact/issues/5751)
+- PrimeReactPTOptions: typo for multi state checkbox [\#5752](https://github.com/primefaces/primereact/issues/5752)
+- DataTable: Cannot update a component while rendering a different component warning [\#5556](https://github.com/primefaces/primereact/issues/5556)
+- TreeTable: column align header is not working [\#5315](https://github.com/primefaces/primereact/issues/5315)
+- TabView: the right scrollable is always true even if there is only one Tab [\#5743](https://github.com/primefaces/primereact/issues/5743)
+- Menu: click on menu item with url does nothing [\#5785](https://github.com/primefaces/primereact/issues/5785)
+- OrderList: Behavior when using spread syntax in onChange [\#4089](https://github.com/primefaces/primereact/issues/4089)
+- PickList: Behavior when using spread syntax in onChange [\#5739](https://github.com/primefaces/primereact/issues/5739)
+- InputNumber: Pos1/End places caret before/after prefix/postfix [\#5730](https://github.com/primefaces/primereact/issues/5730)
+- Documentation (Sidebar): fullScreen not visible by default [\#5741](https://github.com/primefaces/primereact/issues/5741)
+- DataTable: ResizeableColumns doesnt work with unstyled [\#5706](https://github.com/primefaces/primereact/issues/5706)
+- Dropdown: After selecting an option, clearing the value using close icon should clear the filter input [\#5735](https://github.com/primefaces/primereact/issues/5735)
+- InputNumber: 0 Decimal Entry Issue using Currency Mode [\#5728](https://github.com/primefaces/primereact/issues/5728)
+- Calendar - Pasting a datetime value with AM in it results in PM time instead [\#5719](https://github.com/primefaces/primereact/issues/5719)
+- Form Components: Convert class selector to data selector [\#5686](https://github.com/primefaces/primereact/issues/5686)
+- TieredMenu appears broken? - "ReferenceError: item is not defined" even on your own demo page [\#5724](https://github.com/primefaces/primereact/issues/5724)
+
+## [10.3.1](https://github.com/primefaces/primereact/tree/10.3.1) (2024-01-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.3.0...10.3.1)
**Fixed bugs:**
-- DataTable props updating issue [\#443](https://github.com/primefaces/primereact/issues/443)
-- OrganizationChart is not working with React 16.4+ [\#441](https://github.com/primefaces/primereact/issues/441)
-- Sortable TreeTable is not working with React 16.4+ [\#440](https://github.com/primefaces/primereact/issues/440)
-- Calendar Toggle AM/PM is broken [\#438](https://github.com/primefaces/primereact/issues/438)
-- Keyboard navigation is not working on DataTable [\#425](https://github.com/primefaces/primereact/issues/425)
-
-## [1.6.0](https://github.com/primefaces/primereact/tree/1.6.0) (2018-06-07)
+- Port missing fixes [\#5707](https://github.com/primefaces/primereact/issues/5707)
+- Image: ReferenceError: rotate is not defined image.esm.js (948:0) [\#5704](https://github.com/primefaces/primereact/issues/5704)
+- 'content' property now required for several components [\#5701](https://github.com/primefaces/primereact/issues/5701)
+- MegaMenu: Menu Items not showing without StrictMode (production) only after a stateupdate [\#5699](https://github.com/primefaces/primereact/issues/5699)
+- Confirm Dialog: Demo opening dialog 3 times [\#5697](https://github.com/primefaces/primereact/issues/5697)
+- Primereact in the Shadow DOM has problems with the Dropdown component style [\#5246](https://github.com/primefaces/primereact/issues/5246)
+- TypeScript: 10.3.0 Components complaining content is required [\#5692](https://github.com/primefaces/primereact/issues/5692)
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.6.0-rc.1...1.6.0)
+## [10.3.0](https://github.com/primefaces/primereact/tree/10.3.0) (2024-01-05)
-**Implemented New Features and Enhancements:**
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.2.1...10.3.0)
-- Improve sort property on DataView [\#420](https://github.com/primefaces/primereact/issues/420)
-
-**Fixed bugs:**
+**New Features:**
-- slotChar issue on InputMask [\#439](https://github.com/primefaces/primereact/issues/439)
-- Missing type definition for DropDownProps [\#436](https://github.com/primefaces/primereact/issues/436)
-- Sidebar throws a JS exception on componentWillUnmount hook [\#435](https://github.com/primefaces/primereact/issues/435)
-- Can't set csv export filename in DataTable.js using Internet Explorer, it returns undefined.csv [\#433](https://github.com/primefaces/primereact/issues/433)
-- Missing optionsLabel property in interface ListBoxProps in ListBox.d.ts [\#431](https://github.com/primefaces/primereact/issues/431)
-- Width & Height props of Charts are not working [\#430](https://github.com/primefaces/primereact/issues/430)
-- After a sub node is selected on Tree, its parent node is closing [\#429](https://github.com/primefaces/primereact/issues/429)
-- Rating not being enabled on change from disabled=true to disabled=false [\#428](https://github.com/primefaces/primereact/issues/428)
-- The 'selection' property is not working on Tree [\#426](https://github.com/primefaces/primereact/issues/426)
-- Datatable missing definitions [\#423](https://github.com/primefaces/primereact/issues/423)
-- Improve sort property on DataTable [\#421](https://github.com/primefaces/primereact/issues/421)
-- Remove old overlay events on GMap after map is updated [\#419](https://github.com/primefaces/primereact/issues/419)
-- Growl types Failed to compile. [\#414](https://github.com/primefaces/primereact/issues/414)
-- InputMask is not updated if value property is changed [\#413](https://github.com/primefaces/primereact/issues/413)
-- ColorPicker is not updated if value property is changed [\#412](https://github.com/primefaces/primereact/issues/412)
-- Editable Dropdown content does not reflect input value [\#408](https://github.com/primefaces/primereact/issues/408)
+- ConfirmDialog/ConfirmPopup: Add defaultFocus option like PrimeVue [\#4051](https://github.com/primefaces/primereact/issues/4051)
-## [1.6.0-rc.1](https://github.com/primefaces/primereact/tree/1.6.0-rc.1) (2018-06-04)
+**Enhancements:**
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.5.3...1.6.0-rc.1)
-
-## [1.5.3](https://github.com/primefaces/primereact/tree/1.5.3) (2018-05-22)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.5.2...1.5.3)
-
-**Fixed bugs:**
-
-- onRowReorder missing from DataTable type definition [\#411](https://github.com/primefaces/primereact/issues/411)
-- Duplicate identifier 'number': DataScroller.d.ts [\#410](https://github.com/primefaces/primereact/issues/410)
-
-## [1.5.2](https://github.com/primefaces/primereact/tree/1.5.2) (2018-05-11)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.5.1...1.5.2)
-
-**Implemented New Features and Enhancements:**
-
-- Add metaKeySelection property to PickList [\#404](https://github.com/primefaces/primereact/issues/404)
-- Add sorting feature to TreeTable [\#400](https://github.com/primefaces/primereact/issues/400)
-- New mode to keyfilter to validate whole value [\#391](https://github.com/primefaces/primereact/issues/391)
-
-**Fixed bugs:**
-
-- BodyCell className using headerClassName prop [\#407](https://github.com/primefaces/primereact/issues/407)
-- Typings missing for colorPicker component [\#405](https://github.com/primefaces/primereact/issues/405)
-- Radio Button default selection throws warnings [\#403](https://github.com/primefaces/primereact/issues/403)
-- Container element has wrong width on Scrollable Datatable [\#402](https://github.com/primefaces/primereact/issues/402)
-- Warning when using Checkbox [\#399](https://github.com/primefaces/primereact/issues/399)
-- itemTemplate is declared as void [\#397](https://github.com/primefaces/primereact/issues/397)
-- FileUpload does not accept multiple files dropped or selected [\#395](https://github.com/primefaces/primereact/issues/395)
-- TabView activeIndex setting programmatically will not work the second time after manually choosing another tab [\#393](https://github.com/primefaces/primereact/issues/393)
-- ReadOnly attribute is not passed to the checkbox input [\#392](https://github.com/primefaces/primereact/issues/392)
-- onColReorder return columns: undefined [\#389](https://github.com/primefaces/primereact/issues/389)
-- onClick event doesn't work on Messages component [\#387](https://github.com/primefaces/primereact/issues/387)
-- Typings missing for messages component [\#386](https://github.com/primefaces/primereact/issues/386)
-- InputMask runtime error [\#385](https://github.com/primefaces/primereact/issues/385)
-- Slider component not always provide the originalEvent [\#384](https://github.com/primefaces/primereact/issues/384)
-- Org chart does not update when value property changes [\#382](https://github.com/primefaces/primereact/issues/382)
-- Bug in DataTable selection and Column [\#381](https://github.com/primefaces/primereact/issues/381)
-- Calendar min date does not work after primereact@1.3.0 [\#379](https://github.com/primefaces/primereact/issues/379)
-
-## [1.5.1](https://github.com/primefaces/primereact/tree/1.5.1) (2018-04-10)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.5.0...1.5.1)
-
-**Fixed bugs:**
-
-- placeholder not working on Chips component [\#374](https://github.com/primefaces/primereact/issues/374)
-- Tree doesn't update on external change [\#372](https://github.com/primefaces/primereact/issues/372)
-- Slider component does not support real values/step [\#371](https://github.com/primefaces/primereact/issues/371)
-- AutoResize for InputTextarea doesn't work without cols property [\#370](https://github.com/primefaces/primereact/issues/370)
-- Bug: incorrect highlight of dates in range Calendar [\#367](https://github.com/primefaces/primereact/issues/367)
-- TypeDefinitions for Message Control missing [\#366](https://github.com/primefaces/primereact/issues/366)
-- Dropdown autowidth is not working when it used inside the TabView [\#362](https://github.com/primefaces/primereact/issues/362)
-- Calendar as cell editor is not closed after selecting value [\#358](https://github.com/primefaces/primereact/issues/358)
-- Cannot format selection for single-value AutoComplete field [\#353](https://github.com/primefaces/primereact/issues/353)
-- Bug: Type definition for the Column component [\#350](https://github.com/primefaces/primereact/issues/350)
-- DataTable export doesn't respect filters and sorting [\#349](https://github.com/primefaces/primereact/issues/349)
-- sortFunction doesn't work for DataTable [\#348](https://github.com/primefaces/primereact/issues/348)
-
-## [1.5.0](https://github.com/primefaces/primereact/tree/1.5.0) (2018-03-15)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.4.1...1.5.0)
-
-**Implemented New Features and Enhancements:**
-
-- Clear icon to Dropdown [\#345](https://github.com/primefaces/primereact/issues/345)
-- Add event onRowDoubleClick for DataTable [\#341](https://github.com/primefaces/primereact/issues/341)
-- Add minX and minY to Dialog [\#339](https://github.com/primefaces/primereact/issues/339)
-- DragDrop based reorder for Table [\#337](https://github.com/primefaces/primereact/issues/337)
-- DataView Component [\#334](https://github.com/primefaces/primereact/issues/334)
-- InputMask required [\#321](https://github.com/primefaces/primereact/issues/321)
-- Improve dialog positioning with Dynamic content [\#320](https://github.com/primefaces/primereact/issues/320)
-- Custom filter for Column of the DataTable [\#312](https://github.com/primefaces/primereact/issues/312)
-
-**Fixed bugs:**
-
-- Datatable column reorder may not always work correctly [\#338](https://github.com/primefaces/primereact/issues/338)
-- Ultima theme 1.4.2: icon buttons are cutted [\#317](https://github.com/primefaces/primereact/issues/317)
-- Autocomplete input label is undefined [\#347](https://github.com/primefaces/primereact/issues/347)
-- DataTable TypeScript definition error [\#346](https://github.com/primefaces/primereact/issues/346)
-- Default filters not rendered at DataTable [\#344](https://github.com/primefaces/primereact/issues/344)
-- Dialog selects text during dragging or resizing [\#343](https://github.com/primefaces/primereact/issues/343)
-- TabView activeIndex ignored [\#342](https://github.com/primefaces/primereact/issues/342)
-- Dialog dragging may stuck [\#336](https://github.com/primefaces/primereact/issues/336)
-- ToolTip crashes in IE 11 [\#332](https://github.com/primefaces/primereact/issues/332)
-- Pagination dropdown resets for lazy loading dataTable [\#331](https://github.com/primefaces/primereact/issues/331)
-- DataTable onLazyLoad not called for advanced filter options [\#330](https://github.com/primefaces/primereact/issues/330)
-- Calendar : Enable/Highlight the date of adjacent month when selectOtherMonths is true [\#329](https://github.com/primefaces/primereact/issues/329)
-- Resizable DataTable rowsCountSelector not visible [\#318](https://github.com/primefaces/primereact/issues/318)
-- Dropdown list inside Dialog is only partially visible and creates scroll on dialog [\#316](https://github.com/primefaces/primereact/issues/316)
-- Cannot enter Values into Spinner [\#314](https://github.com/primefaces/primereact/issues/314)
-
-## [1.4.1](https://github.com/primefaces/primereact/tree/1.4.1) (2018-02-14)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.4.0...1.4.1)
-
-**Implemented New Features and Enhancements:**
-
-- Filtering for OrderList [\#311](https://github.com/primefaces/primereact/issues/311)
-- autoLayout mode for DataTable [\#310](https://github.com/primefaces/primereact/issues/310)
-- Add baseZIndex to Dialog [\#309](https://github.com/primefaces/primereact/issues/309)
-- Refactor OrderList [\#308](https://github.com/primefaces/primereact/issues/308)
-- Disabled/readonly prop for Checkbox and RadioButton [\#302](https://github.com/primefaces/primereact/issues/302)
-- Checkbox and Radio should mark checked/onChange props as required [\#287](https://github.com/primefaces/primereact/issues/287)
-- DataTable pageLinkSize [\#276](https://github.com/primefaces/primereact/issues/276)
-
-**Fixed bugs:**
-
-- Dialog is displayed below topbar in showcase [\#284](https://github.com/primefaces/primereact/issues/284)
-- ResizableColumns fail inside Dialog [\#281](https://github.com/primefaces/primereact/issues/281)
-- File Upload Dialog opens only once if set to Auto [\#306](https://github.com/primefaces/primereact/issues/306)
-- rowsPerPage missing from DataTable d.ts file [\#304](https://github.com/primefaces/primereact/issues/304)
-- Dropdown does not show selected value when editable is true [\#301](https://github.com/primefaces/primereact/issues/301)
-- Calendar d.ts marks all props as required [\#296](https://github.com/primefaces/primereact/issues/296)
-- Dialog: closeOnEscape doesn't work [\#295](https://github.com/primefaces/primereact/issues/295)
-- Calendar yearNavigator fails [\#294](https://github.com/primefaces/primereact/issues/294)
-- Spinner shows weird Values [\#293](https://github.com/primefaces/primereact/issues/293)
-- OrderList error [\#291](https://github.com/primefaces/primereact/issues/291)
-- Duplicate identifier 'any': PickList.d.ts [\#290](https://github.com/primefaces/primereact/issues/290)
-- In Lazy load mode selection highlight doesn't work properly [\#283](https://github.com/primefaces/primereact/issues/283)
-- Type Definitions incomplete for FileUpload [\#277](https://github.com/primefaces/primereact/issues/277)
-- Growl does not clear timeout on unmount [\#272](https://github.com/primefaces/primereact/issues/272)
-- Calender select day in adjacent month [\#266](https://github.com/primefaces/primereact/issues/266)
-
-## [1.4.0](https://github.com/primefaces/primereact/tree/1.4.0) (2018-01-04)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.4.0-rc.2...1.4.0)
-
-**Implemented New Features and Enhancements:**
-
-- Improve DataTable.d.ts RowExpansion config [\#269](https://github.com/primefaces/primereact/issues/269)
-- KeyFilter attribute [\#265](https://github.com/primefaces/primereact/issues/265)
-- Card Component [\#264](https://github.com/primefaces/primereact/issues/264)
-- Migrate to react-transition-group [\#259](https://github.com/primefaces/primereact/issues/259)
-- Calendar should consider props.disabled in shouldComponentUpdate [\#258](https://github.com/primefaces/primereact/issues/258)
+- Dialog: DialogProps missing footerClassName [\#5661](https://github.com/primefaces/primereact/issues/5661)
+- DataTable: disable the rowEditor prop dynamically, as is done in rowExpansion [\#5640](https://github.com/primefaces/primereact/issues/5640)
+- TreeSelect: TreeSelect component is not supporting tooltips and is an issue in multiple select mode. [\#5613](https://github.com/primefaces/primereact/issues/5613)
+- Calendar:about disabled logic [\#5581](https://github.com/primefaces/primereact/issues/5581)
+- TreeTable: Incorrect typing for sortable prop [\#5591](https://github.com/primefaces/primereact/issues/5591)
+- InputNumber: Support roundingMode for the InputNumber [\#5528](https://github.com/primefaces/primereact/issues/5528)
+- Chip: onRemove callback function doesn't return the removed value [\#5530](https://github.com/primefaces/primereact/issues/5530)
+- confirmPopup: Remove deprecated code imports [\#5520](https://github.com/primefaces/primereact/issues/5520)
+- confirmPopup: Remove deprecated code imports [\#5520](https://github.com/primefaces/primereact/issues/5520)
+- Accessibility | Messages [\#5428](https://github.com/primefaces/primereact/issues/5428)
+- Accessibility | Media Section [\#5422](https://github.com/primefaces/primereact/issues/5422)
+- Headless Mode Update
+ - Dialog, ConfirmDialog, ConfirmPopup, Sidebar, Toast
+- Showcase Updates
**Fixed bugs:**
-- Spinner does not accept decimal or thousand separator as input [\#270](https://github.com/primefaces/primereact/issues/270)
-- Calendar does not rerender when we change "disabled" prop [\#263](https://github.com/primefaces/primereact/issues/263)
-- Calendar may reset date on update [\#262](https://github.com/primefaces/primereact/issues/262)
-- ExportCSV ignores headers in DataTable [\#261](https://github.com/primefaces/primereact/issues/261)
-- Spinner binds invalid event [\#260](https://github.com/primefaces/primereact/issues/260)
-- Autocomplete dropdown no longer working [\#254](https://github.com/primefaces/primereact/issues/254)
-
-## [1.4.0-rc.2](https://github.com/primefaces/primereact/tree/1.4.0-rc.2) (2018-01-04)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.4.0-rc.1...1.4.0-rc.2)
-
-## [1.4.0-rc.1](https://github.com/primefaces/primereact/tree/1.4.0-rc.1) (2018-01-04)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.3.1...1.4.0-rc.1)
-
-## [1.3.1](https://github.com/primefaces/primereact/tree/1.3.1) (2017-12-22)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.3.0...1.3.1)
-
-## [1.3.0](https://github.com/primefaces/primereact/tree/1.3.0) (2017-12-13)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.3.0-rc.1...1.3.0)
-
-**Implemented New Features and Enhancements:**
-
-- New Component: ScrollPanel [\#251](https://github.com/primefaces/primereact/issues/251)
-- Keyboard accessibility for Panel components [\#250](https://github.com/primefaces/primereact/issues/250)
-- Refactor FileUpload [\#247](https://github.com/primefaces/primereact/issues/247)
-
-**Fixed bugs:**
-
-- Missing dependency in primereact npm artifcat: 'react-addons-css-transition-group' [\#242](https://github.com/primefaces/primereact/issues/242)
-- AutoComplete dosn't accept spaces [\#249](https://github.com/primefaces/primereact/issues/249)
-- Calendar title month and year has no margin [\#248](https://github.com/primefaces/primereact/issues/248)
-- Toggleable fieldset resets if parent is updated [\#246](https://github.com/primefaces/primereact/issues/246)
-- Accordion resets if parent is updated [\#245](https://github.com/primefaces/primereact/issues/245)
-- Toggleable panel resets if parent is updated [\#244](https://github.com/primefaces/primereact/issues/244)
-- Growl.d.ts allow GrowlMessage.detail to be Element [\#241](https://github.com/primefaces/primereact/issues/241)
-- Password's 'inputProps' missing in d.ts file [\#240](https://github.com/primefaces/primereact/issues/240)
-- feedback={false} not working for Password [\#239](https://github.com/primefaces/primereact/issues/239)
-- AutoCompleteProps: Missing data object in itemTemplate [\#237](https://github.com/primefaces/primereact/issues/237)
-- Missing param name in d.ts-files [\#236](https://github.com/primefaces/primereact/issues/236)
-- Spinner d.ts missing onChange [\#235](https://github.com/primefaces/primereact/issues/235)
-
-## [1.3.0-rc.1](https://github.com/primefaces/primereact/tree/1.3.0-rc.1) (2017-12-07)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.2.0...1.3.0-rc.1)
-
-**Implemented New Features and Enhancements:**
-
-- Add style/classname props to Radio and Checkbox [\#233](https://github.com/primefaces/primereact/issues/233)
-- New properties to TriStateCheckbox [\#232](https://github.com/primefaces/primereact/issues/232)
-- Keyboard Accessibility for TriStateCheckbox [\#230](https://github.com/primefaces/primereact/issues/230)
-- Keyboard accessibility for Spinner [\#229](https://github.com/primefaces/primereact/issues/229)
-- Refactor Spinner [\#228](https://github.com/primefaces/primereact/issues/228)
-- Animation for FieldSet [\#223](https://github.com/primefaces/primereact/issues/223)
-- Refactor Calendar [\#222](https://github.com/primefaces/primereact/issues/222)
-- Resize support for Scrollable Table [\#219](https://github.com/primefaces/primereact/issues/219)
-- Password does not pass all input parameters [\#216](https://github.com/primefaces/primereact/issues/216)
-- Reimplement ColorPicker [\#214](https://github.com/primefaces/primereact/issues/214)
-- Rewrite Button CSS [\#213](https://github.com/primefaces/primereact/issues/213)
-- appendTo for MultiSelect [\#212](https://github.com/primefaces/primereact/issues/212)
-- Use Portal API in Dropdown appendTo [\#211](https://github.com/primefaces/primereact/issues/211)
-- Use Portal API in AutoComplete appendTo [\#210](https://github.com/primefaces/primereact/issues/210)
-- Use Portal API in Overlay appendTo [\#209](https://github.com/primefaces/primereact/issues/209)
-- Add inputId to Checkbox and Radio [\#208](https://github.com/primefaces/primereact/issues/208)
-- Keyboard accessibility for Checkbox and RadioButton [\#207](https://github.com/primefaces/primereact/issues/207)
-- Floating Labels for Inputs [\#205](https://github.com/primefaces/primereact/issues/205)
-- Add appendTo to Dialog [\#204](https://github.com/primefaces/primereact/issues/204)
-- Reimplement Messages [\#203](https://github.com/primefaces/primereact/issues/203)
-- Reimplement Growl [\#202](https://github.com/primefaces/primereact/issues/202)
-- Screen Reader and Keyboard Accessibility support for Fieldset [\#201](https://github.com/primefaces/primereact/issues/201)
-- Screen Reader support for Panel [\#200](https://github.com/primefaces/primereact/issues/200)
-- Screen Reader support for Dialog [\#199](https://github.com/primefaces/primereact/issues/199)
-- Screen Reader support for TabView [\#198](https://github.com/primefaces/primereact/issues/198)
-- Screen Reader and Keyboard Accessibility for Accordion [\#197](https://github.com/primefaces/primereact/issues/197)
-- Loading status for AutoComplete [\#193](https://github.com/primefaces/primereact/issues/193)
-- Custom content for paginator [\#189](https://github.com/primefaces/primereact/issues/189)
-- Animation for Accordion [\#182](https://github.com/primefaces/primereact/issues/182)
-- Unsortable option for DataTable columns [\#179](https://github.com/primefaces/primereact/issues/179)
-
-**Fixed bugs:**
-
-- Radio and Checkbox does pass props to super [\#231](https://github.com/primefaces/primereact/issues/231)
-- Dropdown Filter blocks keyboard navigation of items [\#227](https://github.com/primefaces/primereact/issues/227)
-- Dropdown keyboard navigation does not scroll items [\#226](https://github.com/primefaces/primereact/issues/226)
-- InputTextarea ignores focus, blur, input and keyup [\#225](https://github.com/primefaces/primereact/issues/225)
-- Browser textarea resize breaks autoResize of textarea [\#224](https://github.com/primefaces/primereact/issues/224)
-- DataTable dataKey ignored [\#221](https://github.com/primefaces/primereact/issues/221)
-- AutoComplete does not reflect model binding [\#220](https://github.com/primefaces/primereact/issues/220)
-- Clicking table header throws exception [\#218](https://github.com/primefaces/primereact/issues/218)
-- Resizing last column gives error on DataTable [\#217](https://github.com/primefaces/primereact/issues/217)
-- OverlayPanel: appendTo="body" throws exception [\#206](https://github.com/primefaces/primereact/issues/206)
-- Growl: messages appears again on any change state [\#196](https://github.com/primefaces/primereact/issues/196)
-- InputText: ui-state-filled class is not added, if value chaged in parent component [\#195](https://github.com/primefaces/primereact/issues/195)
-- AutoComplete Dropdown select not hiding [\#191](https://github.com/primefaces/primereact/issues/191)
-- Menu components\(menu,menubar...\) reload problem [\#190](https://github.com/primefaces/primereact/issues/190)
-- Datatable - not propagate prop filterMatchMode when lazyload is on [\#187](https://github.com/primefaces/primereact/issues/187)
-- datatable- Not Adjusted columns with expander [\#186](https://github.com/primefaces/primereact/issues/186)
-- DataTable: page is not reseted after global filtering [\#184](https://github.com/primefaces/primereact/issues/184)
-- onNodeExpand and onNodeCollapse events are not working on Tree [\#183](https://github.com/primefaces/primereact/issues/183)
-- Panel Header and Dropdown problem [\#175](https://github.com/primefaces/primereact/issues/175)
-
-## [1.2.0](https://github.com/primefaces/primereact/tree/1.2.0) (2017-11-01)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.1.0...1.2.0)
-
-**Implemented New Features and Enhancements:**
-
-- Improve typings of some components [\#172](https://github.com/primefaces/primereact/issues/172)
-- Add rowsPerPageOptions to DataTable [\#171](https://github.com/primefaces/primereact/issues/171)
-- Animation for Panel toggle [\#170](https://github.com/primefaces/primereact/issues/170)
-- Disabled tabs for Accordion [\#169](https://github.com/primefaces/primereact/issues/169)
-- New style properties for Accordion Tab [\#168](https://github.com/primefaces/primereact/issues/168)
-- Disabled tabs in TabView [\#167](https://github.com/primefaces/primereact/issues/167)
-- Add style properties to TabView and TabPanel [\#166](https://github.com/primefaces/primereact/issues/166)
-- Disabled prop for TabPanel [\#164](https://github.com/primefaces/primereact/issues/164)
-- Use Dropdown component for Paginator rowsPerPage select [\#163](https://github.com/primefaces/primereact/issues/163)
-- Support any type of object as a select option [\#162](https://github.com/primefaces/primereact/issues/162)
-- Undeterminate ProgressBar [\#160](https://github.com/primefaces/primereact/issues/160)
-- New Message component [\#159](https://github.com/primefaces/primereact/issues/159)
-- New ProgressSpinner Component [\#143](https://github.com/primefaces/primereact/issues/143)
-
-**Fixed bugs:**
-
-- DataTable: `onLazyLoad` does not support `sortMode="multiple"` [\#157](https://github.com/primefaces/primereact/issues/157)
-- Password not trigger onChange event [\#177](https://github.com/primefaces/primereact/issues/177)
-- Virtual Scrolling Flickers [\#173](https://github.com/primefaces/primereact/issues/173)
-- Type definition missing from TabPanel [\#165](https://github.com/primefaces/primereact/issues/165)
-- DataTable: Changing a filter does not trigger `onLazyLoad` for async tables [\#158](https://github.com/primefaces/primereact/issues/158)
-- Growl throws error [\#149](https://github.com/primefaces/primereact/issues/149)
-- MultiSelect: onClick: event.stopPropagation is not a function [\#147](https://github.com/primefaces/primereact/issues/147)
-- utc parameter is not working when keying in the date [\#146](https://github.com/primefaces/primereact/issues/146)
-- Click on input filter causes sort [\#133](https://github.com/primefaces/primereact/issues/133)
-
-## [1.1.0](https://github.com/primefaces/primereact/tree/1.1.0) (2017-10-18)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.1...1.1.0)
-
-**Implemented New Features and Enhancements:**
-
-- Sidebar component [\#122](https://github.com/primefaces/primereact/issues/122)
-- Expose show\(\),hide\(\) and toggle\(\) in props of ContextMenu [\#113](https://github.com/primefaces/primereact/issues/113)
-- Reimplement AutoComplete [\#141](https://github.com/primefaces/primereact/issues/141)
-- Specific styles for header, body and footer [\#140](https://github.com/primefaces/primereact/issues/140)
-- Sticky mode for Growl [\#139](https://github.com/primefaces/primereact/issues/139)
-- Add onClick to Growl [\#138](https://github.com/primefaces/primereact/issues/138)
-- rowClassName for DataTable [\#137](https://github.com/primefaces/primereact/issues/137)
-- Typescript Support [\#131](https://github.com/primefaces/primereact/issues/131)
-- New Component: GMap [\#130](https://github.com/primefaces/primereact/issues/130)
-- Keyboard support for SelectButton [\#129](https://github.com/primefaces/primereact/issues/129)
-- Reimplement SelectButton [\#128](https://github.com/primefaces/primereact/issues/128)
-- license file [\#117](https://github.com/primefaces/primereact/issues/117)
-- Frozen Columns support for Column Groups [\#107](https://github.com/primefaces/primereact/issues/107)
-- Loading status for DataTable [\#94](https://github.com/primefaces/primereact/issues/94)
-- Editable Cells for DataTable [\#80](https://github.com/primefaces/primereact/issues/80)
-- Virtual Scrolling For DataTable [\#79](https://github.com/primefaces/primereact/issues/79)
-- Percentage support for DataTable ScrollWidth and ScrollHeight [\#77](https://github.com/primefaces/primereact/issues/77)
-
-**Fixed bugs:**
-
-- Dropdown Menu in DataTable with resizableColumns [\#123](https://github.com/primefaces/primereact/issues/123)
-- Sorting does not work when you are using Column Group feature [\#115](https://github.com/primefaces/primereact/issues/115)
-- TimeOnly calendar fails [\#144](https://github.com/primefaces/primereact/issues/144)
-- DataTable: OnLazyLoad repeatedly calling function / infinite loop [\#132](https://github.com/primefaces/primereact/issues/132)
-- Dropdown menu sits behind grid [\#126](https://github.com/primefaces/primereact/issues/126)
-- SelectButton cannot have initial State [\#121](https://github.com/primefaces/primereact/issues/121)
-- Calendar minDate and maxDate property does not reload dynamically [\#119](https://github.com/primefaces/primereact/issues/119)
-- Growl doesn't call onClear method [\#112](https://github.com/primefaces/primereact/issues/112)
-- AutoComplete completeMethod triggered twice / delay does not work as expected [\#111](https://github.com/primefaces/primereact/issues/111)
-- Calendar is not updated according when props.value is changed [\#110](https://github.com/primefaces/primereact/issues/110)
-
-## [1.0.1](https://github.com/primefaces/primereact/tree/1.0.1) (2017-09-21)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0...1.0.1)
-
-**Implemented New Features and Enhancements:**
-
-- appendTo for OverlayPanel [\#96](https://github.com/primefaces/primereact/issues/96)
-- Update demo to Router v4 [\#93](https://github.com/primefaces/primereact/issues/93)
-- Refactor InputText filled state implementation [\#91](https://github.com/primefaces/primereact/issues/91)
-- Missing event for components [\#90](https://github.com/primefaces/primereact/issues/90)
-- Customizable Paginator using Templating [\#88](https://github.com/primefaces/primereact/issues/88)
-- Column Reordering for DataTable [\#81](https://github.com/primefaces/primereact/issues/81)
-
-**Fixed bugs:**
-
-- Wrong documentation for BreadCrumb component [\#100](https://github.com/primefaces/primereact/issues/100)
-- Relative Position calculation is wrong [\#109](https://github.com/primefaces/primereact/issues/109)
-- Dropdown options does not update when props is changed [\#108](https://github.com/primefaces/primereact/issues/108)
-- Dynamic and Static Columns cause error [\#106](https://github.com/primefaces/primereact/issues/106)
-- Broken css in Version 1.0 [\#105](https://github.com/primefaces/primereact/issues/105)
-- Dropdown selected option not updated after value property changes [\#103](https://github.com/primefaces/primereact/issues/103)
-- Chart is not updated when data changes [\#102](https://github.com/primefaces/primereact/issues/102)
-- The value of AutoComplete is not reset after changing state [\#101](https://github.com/primefaces/primereact/issues/101)
-- FileUpload does not allow multiple files [\#99](https://github.com/primefaces/primereact/issues/99)
-- Dialog contentStyle doesn't work [\#92](https://github.com/primefaces/primereact/issues/92)
-- InputText disabled behavior missing readonly functionality [\#89](https://github.com/primefaces/primereact/issues/89)
-
-## [1.0.0](https://github.com/primefaces/primereact/tree/1.0.0) (2017-09-10)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-rc.3...1.0.0)
-
-**Implemented New Features and Enhancements:**
-
-- Reimplement Listbox [\#87](https://github.com/primefaces/primereact/issues/87)
-- Reimplement PickList [\#86](https://github.com/primefaces/primereact/issues/86)
-- Reimplement Rating [\#84](https://github.com/primefaces/primereact/issues/84)
-- Reimplement Calendar [\#83](https://github.com/primefaces/primereact/issues/83)
-- Disabled Dates for Calendar [\#82](https://github.com/primefaces/primereact/issues/82)
-
-## [1.0.0-rc.3](https://github.com/primefaces/primereact/tree/1.0.0-rc.3) (2017-09-09)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-rc.2...1.0.0-rc.3)
-
-## [1.0.0-rc.2](https://github.com/primefaces/primereact/tree/1.0.0-rc.2) (2017-09-08)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-rc.1...1.0.0-rc.2)
-
-## [1.0.0-rc.1](https://github.com/primefaces/primereact/tree/1.0.0-rc.1) (2017-08-31)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.6...1.0.0-rc.1)
-
-**Implemented New Features and Enhancements:**
-
-- Re implemented Dropdown component [\#76](https://github.com/primefaces/primereact/issues/76)
-- Re-implemented Dialog Component [\#75](https://github.com/primefaces/primereact/issues/75)
-
-**Fixed bugs:**
-
-- PickList callbacks reference error [\#74](https://github.com/primefaces/primereact/issues/74)
-- The state of user is not updated after closing dialog [\#72](https://github.com/primefaces/primereact/issues/72)
-- The onClick event of Choose button is fired twice on FileUpload [\#71](https://github.com/primefaces/primereact/issues/71)
-
-## [1.0.0-beta.6](https://github.com/primefaces/primereact/tree/1.0.0-beta.6) (2017-08-21)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.5...1.0.0-beta.6)
-
-## [1.0.0-beta.5](https://github.com/primefaces/primereact/tree/1.0.0-beta.5) (2017-08-21)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.4...1.0.0-beta.5)
-
-**Implemented New Features and Enhancements:**
-
-- Add id attribute to all components [\#70](https://github.com/primefaces/primereact/issues/70)
-- Inconsistent API to add CSS class with certain of your component [\#68](https://github.com/primefaces/primereact/issues/68)
-
-**Fixed bugs:**
-
-- InputText and InputTextarea components aren't re-rendered when props are updated [\#69](https://github.com/primefaces/primereact/issues/69)
-
-## [1.0.0-beta.4](https://github.com/primefaces/primereact/tree/1.0.0-beta.4) (2017-08-16)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.3...1.0.0-beta.4)
-
-**Implemented New Features and Enhancements:**
-
-- Text Editor [\#66](https://github.com/primefaces/primereact/issues/66)
-
-## [1.0.0-beta.3](https://github.com/primefaces/primereact/tree/1.0.0-beta.3) (2017-08-10)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.2...1.0.0-beta.3)
-
-## [1.0.0-beta.2](https://github.com/primefaces/primereact/tree/1.0.0-beta.2) (2017-08-10)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.1...1.0.0-beta.2)
-
-## [1.0.0-beta.1](https://github.com/primefaces/primereact/tree/1.0.0-beta.1) (2017-08-09)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-alpha.2...1.0.0-beta.1)
-
-**Implemented New Features and Enhancements:**
-
-- DataTable Crud [\#63](https://github.com/primefaces/primereact/issues/63)
-- MegaMenu component [\#62](https://github.com/primefaces/primereact/issues/62)
-- Steps component [\#61](https://github.com/primefaces/primereact/issues/61)
-- PanelMenu component [\#59](https://github.com/primefaces/primereact/issues/59)
-- ContextMenu component [\#58](https://github.com/primefaces/primereact/issues/58)
-- Menubar component [\#57](https://github.com/primefaces/primereact/issues/57)
-- TieredMenu component [\#56](https://github.com/primefaces/primereact/issues/56)
-- Breadcrumb component [\#54](https://github.com/primefaces/primereact/issues/54)
-- Add tabmenu component [\#53](https://github.com/primefaces/primereact/issues/53)
-- Add menu component [\#51](https://github.com/primefaces/primereact/issues/51)
-- Add lightbox component [\#46](https://github.com/primefaces/primereact/issues/46)
-- Add toolbar component [\#44](https://github.com/primefaces/primereact/issues/44)
-- Add password component [\#43](https://github.com/primefaces/primereact/issues/43)
-- Add keyboard support to dropdown [\#39](https://github.com/primefaces/primereact/issues/39)
-- Implemented DataScroller component [\#37](https://github.com/primefaces/primereact/issues/37)
-- Implemented Rating component [\#36](https://github.com/primefaces/primereact/issues/36)
-- Implemented ColorPicker component [\#35](https://github.com/primefaces/primereact/issues/35)
-
-## [1.0.0-alpha.2](https://github.com/primefaces/primereact/tree/1.0.0-alpha.2) (2017-05-25)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-alpha.1...1.0.0-alpha.2)
-
-**Implemented New Features and Enhancements:**
-
-- TreeTable Component [\#34](https://github.com/primefaces/primereact/issues/34)
-- Mobile Touch support to Slider Component [\#33](https://github.com/primefaces/primereact/issues/33)
-- Implemented Captcha Component [\#32](https://github.com/primefaces/primereact/issues/32)
-- Tree Component [\#31](https://github.com/primefaces/primereact/issues/31)
-
-**Fixed bugs:**
-
-- Accordion activeIndex doesn't work [\#30](https://github.com/primefaces/primereact/issues/30)
-- Dropdown onChange invoked on same item selection [\#28](https://github.com/primefaces/primereact/issues/28)
-- activeIndex property on TabView doesn't work [\#26](https://github.com/primefaces/primereact/issues/26)
-- Dropdown is missing input focus [\#21](https://github.com/primefaces/primereact/issues/21)
-- Spinner controls are not user friendly [\#20](https://github.com/primefaces/primereact/issues/20)
-- MultiSelect Input focus is missing [\#19](https://github.com/primefaces/primereact/issues/19)
-- Accordion Tab Caret icons are not toggleable [\#18](https://github.com/primefaces/primereact/issues/18)
-- Radio button label toggle state is missing [\#14](https://github.com/primefaces/primereact/issues/14)
-- Chips need input focus [\#13](https://github.com/primefaces/primereact/issues/13)
-- Checkbox label toggle state is not working [\#12](https://github.com/primefaces/primereact/issues/12)
-- Autocomplete Multiple feature missing input focus [\#10](https://github.com/primefaces/primereact/issues/10)
-
-## [1.0.0-alpha.1](https://github.com/primefaces/primereact/tree/1.0.0-alpha.1) (2017-03-28)
-
-[Full Changelog](https://github.com/primefaces/primereact/compare/2eb760f17382a3b3a47d70f6f6076e21f5c90cfb...1.0.0-alpha.1)
-
+- PrimeReactProvider: Error next14 app router [\#5127](https://github.com/primefaces/primereact/issues/5127)
+- TabView: Doesn't render in NextJS 14 [\#5395](https://github.com/primefaces/primereact/issues/5395)
+- Issue with fileUpload progressBarTemplate [\#5664](https://github.com/primefaces/primereact/issues/5664)
+- Calendar: When enabledDates array is set, user will get stuck on month/year selection [\#5662](https://github.com/primefaces/primereact/issues/5662)
+- DataTable: Subheader row group along with date sorting not working as intended [\#5651](https://github.com/primefaces/primereact/issues/5651)
+- Ripple effect is not working on buttons inside the sidebar [\#5652](https://github.com/primefaces/primereact/issues/5652)
+- Input Number: Value pasted by the user is not entered when suffix and decimals are used. [\#4802](https://github.com/primefaces/primereact/issues/4802)
+- SideBar: aria-label disappear on close button [\#5637](https://github.com/primefaces/primereact/issues/5637)
+- A maximizable dialog cannot be maximized properly after its position has been changed [\#5635](https://github.com/primefaces/primereact/issues/5635)
+- InputNumber:format error when Locale set de-DE [\#5633](https://github.com/primefaces/primereact/issues/5633)
+- TreeTable/Datatable: Calendar not showing correctly [\#5529](https://github.com/primefaces/primereact/issues/5529)
+- Image preview zoom in bug [\#5627](https://github.com/primefaces/primereact/issues/5627)
+- Otherprops not working for InputSwitch [\#5623](https://github.com/primefaces/primereact/issues/5623)
+- InputNumber: (Germany) second step of currency can't changed [\#5589](https://github.com/primefaces/primereact/issues/5589)
+- InputNumber: Incorrect duplication of fractional part of number [\#5607](https://github.com/primefaces/primereact/issues/5607)
+- InputNumber: Cursor stuck when using minFractionDigits and comma as decimal separator [\#5548](https://github.com/primefaces/primereact/issues/5548)
+- When RadioButton is selected, clicking on it does not trigger the onClick event. [\#5610](https://github.com/primefaces/primereact/issues/5610)
+- TreeTable: missing import [\#5600](https://github.com/primefaces/primereact/issues/5600)
+- TreeTable: Column "align" prop aligns the header rather than the content [\#5597](https://github.com/primefaces/primereact/issues/5597)
+- Dialog: breakpoints are janky [\#5551](https://github.com/primefaces/primereact/issues/5551)
+- TreeTable: sorting not triggered when clicking header with custom HTML [\#5584](https://github.com/primefaces/primereact/issues/5584)
+- Calendar: After the currentview changed, the panel position is wrong [\#5577](https://github.com/primefaces/primereact/issues/5577)
+- DataTable: appendTo on HTML element doesn't work [\#5266](https://github.com/primefaces/primereact/issues/5266)
+- Calendar position error when appendTo: 'self' is set [\#5058](https://github.com/primefaces/primereact/issues/5058)
+- select components: props appendTo Incorrect first time mount [\#5311](https://github.com/primefaces/primereact/issues/5311)
+- MultiSelect: selectAllLabel property error inside React Router [\#5572](https://github.com/primefaces/primereact/issues/5572)
+- Inplace: active prop not working [\#5561](https://github.com/primefaces/primereact/issues/5561)
+- DataTable: Error when updating a cell [\#5556](https://github.com/primefaces/primereact/issues/5556)
+- Calender: even with the viewDate prop the user can scroll past viewable dates [\#5558](https://github.com/primefaces/primereact/issues/5558)
+- InputNumber: Text selection not working on input focus when using a suffix or prefix [\#5537](https://github.com/primefaces/primereact/issues/5537)
+- TreeTable: Plenty of warnings in codesandbox demos [\#5542](https://github.com/primefaces/primereact/issues/5542)
+- DataTable: Resize "fit" doesnt work with unstyled [\#5489](https://github.com/primefaces/primereact/issues/5489)
+- Calendar: viewDate change does not update displayed year [\#4147](https://github.com/primefaces/primereact/issues/4147)
+- Incorrect year display in Calendar after navigating to next year [\#5533](https://github.com/primefaces/primereact/issues/5533)
+- Calendar: InputText does not immediately reflect locale changes [\#5535](https://github.com/primefaces/primereact/issues/5535)
+- BlockUI lost focus [\#5523](https://github.com/primefaces/primereact/issues/5523)
+- TreeTable: Header's columns not aligned with body's columns in scrollable mode [\#5487](https://github.com/primefaces/primereact/issues/5487)
+- TreeTable: Rows are not aligned when frozen [\#5508](https://github.com/primefaces/primereact/issues/5508)
+- useDebounce is wrong [\#5490](https://github.com/primefaces/primereact/issues/5490)
+- Messages: No animations in v10 [\#5485](https://github.com/primefaces/primereact/issues/5485)
+- ComponentBase: fkey used before declaration [\#5477](https://github.com/primefaces/primereact/issues/5477)
+- Tabview: There is No style when use PrimeReact & Tailwind [\#5445](https://github.com/primefaces/primereact/issues/5445)
+- Dialog: "esc" close dialogs in wrong order [\#5019](https://github.com/primefaces/primereact/issues/5019)
+- CascadeSelect: activeOptionState not working as expected [\#5425](https://github.com/primefaces/primereact/issues/5425)
+- Calendar: Size of picker panel when in month view [\#5435](https://github.com/primefaces/primereact/issues/5435)
+- DataTable demo performance | Add DeferredDemo component [\#5688](https://github.com/primefaces/primereact/issues/5688)
+- TreeSelect: panel hide after uncheck [\#5447](https://github.com/primefaces/primereact/issues/5447)
+- InputText: className is added twice [\#5440](https://github.com/primefaces/primereact/issues/5440)
+- TreeTable: Errors "React does not recognize the xxx prop on a DOM element" on rendering TreeTable component [\#5427](https://github.com/primefaces/primereact/issues/5427)
+- CascadeSelect: onInputKeyDown error in unstyled model [\#5424](https://github.com/primefaces/primereact/issues/5424)
+- Datatable: Cell editor ColumnEditorOptions param is broken [\#5233](https://github.com/primefaces/primereact/issues/5233)
+- Dropdown: component interactable in disabled div [\#5414](https://github.com/primefaces/primereact/issues/5414)
+- Dropdown: Tailwind optionDisabled with function not working [\#5676](https://github.com/primefaces/primereact/issues/5676)
+- ConfirmDialog:confirmDialog method in unstyled mode, the pop-up window style not apply [\#5656](https://github.com/primefaces/primereact/issues/5656)
+- ConfirmDialog: acceptButton's pt don't respect button [\#5653](https://github.com/primefaces/primereact/issues/5653)
+- ToggleButton (Tailwind): Imported theming from documentation crashes button [\#5609](https://github.com/primefaces/primereact/issues/5609)
+- Calendar (Tailwind): Calendar Input border rounded when showIcon is set [\#5590](https://github.com/primefaces/primereact/issues/5590)
+- Calendar (Tailwind): Calendar missing styling [\#5579](https://github.com/primefaces/primereact/issues/5579)
+- MultiSelect: PT filterInput not work [\#5568](https://github.com/primefaces/primereact/issues/5568)
+- DataTable (Tailwind): frozen is undefined when data is empty array [\#5555](https://github.com/primefaces/primereact/issues/5555)
+- TreeTable: need to be converted to data- lookups instead of className lookups [\#5553](https://github.com/primefaces/primereact/issues/5553)
+- Accordion (Tailwind): Prop type error in console [\#5546](https://github.com/primefaces/primereact/issues/5546)
+- OverlayPanel (Tailwind): showCloseIcon is at wrong position [\#5543](https://github.com/primefaces/primereact/issues/5543)
+- DataTable: need to be converted to data- lookups instead of className lookups [\#5524](https://github.com/primefaces/primereact/issues/5524)
+- Dropdown (Tailwind): Focus shadow not working [\#5512](https://github.com/primefaces/primereact/issues/5512)
+- FileUpload: Missing basicButton theming in Tailwind [\#5515](https://github.com/primefaces/primereact/issues/5515)
+- Button: Loading Spinner has no margin by default (Tailwind) [\#5509](https://github.com/primefaces/primereact/issues/5509)
+- CascadeSelect: missing some values in pt [\#5479](https://github.com/primefaces/primereact/issues/5479)
+- Picklist Tailwind is not responsive [\#5417](https://github.com/primefaces/primereact/issues/5417)
+- Tailwind: Chips camelCase properties [\#5500](https://github.com/primefaces/primereact/issues/5500)
+- Tailwind: Autocomplete camelCase [\#5499](https://github.com/primefaces/primereact/issues/5499)
+- Tailwind: Multiselect issues and camelCase on properties [\#5493](https://github.com/primefaces/primereact/issues/5493)
+- Tailwind: Listbox camelCase properties and Context property focused is missing [\#5492](https://github.com/primefaces/primereact/issues/5492)
+- Tailwind: Calendar dropdownbutton [\#5471](https://github.com/primefaces/primereact/issues/5471)
+- Tailwind: Button in Speedial does not have access to parent [\#5467](https://github.com/primefaces/primereact/issues/5467)
+- Tailwind: InputNumber input is not a function [\#5464](https://github.com/primefaces/primereact/issues/5464)
+- Tailwind: Tooltip missing context [\#5468](https://github.com/primefaces/primereact/issues/5468)
+- Tailwind: Slider starthandler and endhandler, deprecated? [\#5466](https://github.com/primefaces/primereact/issues/5466)
+- Tailwind: SidebarPassThroughOptions closeButtonIcon property missing [\#5465](https://github.com/primefaces/primereact/issues/5465)
+- Tailwind: Dropdown itemGroup camelCase missing [\#5469](https://github.com/primefaces/primereact/issues/5469)
+- Tailwind: ConfirmDialogPassThroughOptions does not a transition property [\#5463](https://github.com/primefaces/primereact/issues/5463)
+- Tailwind: Card subtitle vs subTitle and similar issues [\#5461](https://github.com/primefaces/primereact/issues/5461)
+- Tailwind: CascadeSelectPassThroughOptions is missing sublist [\#5462](https://github.com/primefaces/primereact/issues/5462)
+- TabMenu: activeIndex not rerendering tabs with Tailwind [\#5457](https://github.com/primefaces/primereact/issues/5457)
+- Tailwind: Rating readOnly property seems incorrect [\#5443](https://github.com/primefaces/primereact/issues/5443)
+- Tailwind: modelValue property [\#5444](https://github.com/primefaces/primereact/issues/5444)
+- RadioButton: data selector and Hook Form doc display error [\#5679](https://github.com/primefaces/primereact/issues/5679)
+- ScrollPanel: test failed [\#5672](https://github.com/primefaces/primereact/issues/5672)
+- Table: Sort icons are not showing correct amount directions [\#5617](https://github.com/primefaces/primereact/issues/5617)
+- TreeTable: Wrong typing for emptyMessage [\#5588](https://github.com/primefaces/primereact/issues/5588)
+- Button (Tailwind): Theming Documentation is missing attributes for button without label [\#5526](https://github.com/primefaces/primereact/issues/5526)
+- Updating demo environments to Vite [\#5455](https://github.com/primefaces/primereact/issues/5455)
+- Animated Text Highlight Problem [\#5480](https://github.com/primefaces/primereact/issues/5480)
+- RowEdit: Programmatic Demo [\#5452](https://github.com/primefaces/primereact/issues/5452)
+- Calendar: lag when navigating between months [\#5202](https://github.com/primefaces/primereact/issues/5202)
+- Datatable: CRUD Filter but [\#5691](https://github.com/primefaces/primereact/pull/5691)
diff --git a/CHANGELOG_ARCHIVE.md b/CHANGELOG_ARCHIVE.md
new file mode 100644
index 0000000000..8012c9172f
--- /dev/null
+++ b/CHANGELOG_ARCHIVE.md
@@ -0,0 +1,3641 @@
+
+## [10.2.1](https://github.com/primefaces/primereact/tree/10.2.1) (2023-11-27)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.2.0...10.2.1)
+
+**Fixed bugs:**
+
+- Tree Table Header Bug [\#5412](https://github.com/primefaces/primereact/issues/5412)
+
+## [10.2.0](https://github.com/primefaces/primereact/tree/10.2.0) (2023-11-27)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.1.1...10.2.0)
+
+**Enhancements:**
+
+- MISC Section | Accessibility [\#5356](https://github.com/primefaces/primereact/issues/5356)
+- Chip Removable Icon to have button role [\#4190](https://github.com/primefaces/primereact/issues/4190)
+- TreeTable: selected rows are not highlighted [\#5370](https://github.com/primefaces/primereact/issues/5370)
+- CascadeSelect: Popup does not close on escape key press [\#5360](https://github.com/primefaces/primereact/issues/5360)
+- SplitButton: SplitButton popup not closing on escape button click [\#5365](https://github.com/primefaces/primereact/issues/5365)
+- Speed Dial: Speed Dial Menu does not close on escape key press [\#5367](https://github.com/primefaces/primereact/issues/5367)
+- PanelMenu: Menu items with no sub-items toggling border [\#5349](https://github.com/primefaces/primereact/issues/5349)
+
+**Fixed bugs:**
+
+- DataTable: Cell editing with Dropdown doesn't work [\#3079](https://github.com/primefaces/primereact/issues/3079)
+- DataTable editor with 3rd party dropdown / overlay [\#2097](https://github.com/primefaces/primereact/issues/2097)
+- Mention: Page Breaks when navigating to Mention component [\#5363](https://github.com/primefaces/primereact/issues/5363)
+- TabView: Closes all tabs on click [\#5369](https://github.com/primefaces/primereact/issues/5369)
+- DataTable: Cell edit support Dropdown [\#2666](https://github.com/primefaces/primereact/issues/2666)
+- DataTable: editMode="cell" and Dropdown z-Index issue [\#5320](https://github.com/primefaces/primereact/issues/5320)
+- AccordionTab: Invalid values for props $$typeof, type on div tag [\#5379](https://github.com/primefaces/primereact/issues/5379)
+- Password: inputClassName doesn't work with Tailwind [\#5385](https://github.com/primefaces/primereact/issues/5385)
+- TreeTable: Unable to hide a column with hidden prop [\#5384](https://github.com/primefaces/primereact/issues/5384)
+- Calendar: monthNavigator={true} with numberOfMonths={>1} shows controls for the first month only [\#5390](https://github.com/primefaces/primereact/issues/5390)
+- TreeTable: column align header is not working [\#5315](https://github.com/primefaces/primereact/issues/5315)
+- Tree: Custom collapseIcon/expandIcon is not applied on children [\#5393](https://github.com/primefaces/primereact/issues/5393)
+- Slider: Setting min boundary value component is breaking the component. [\#5398](https://github.com/primefaces/primereact/issues/5398)
+- MultiSelect emptyMessage prop results in error [\#5340](https://github.com/primefaces/primereact/issues/5340)
+- SplitButton: pt attribute doesn't behave as described in documentation [\#4883](https://github.com/primefaces/primereact/issues/4883)
+- Tailwind: Button tailwind/index.js [\#5407](https://github.com/primefaces/primereact/issues/5407)
+- DataTable: memory leak when data updated continuously [\#4656](https://github.com/primefaces/primereact/issues/4656)
+- Removing style section from pages [\#5354](https://github.com/primefaces/primereact/issues/5354)
+- Missing type definition in for hideOverlaysOnDocumentScrolling in APIOptions [\#5378](https://github.com/primefaces/primereact/issues/5378)
+- Misc Demos Refactor [\#5357](https://github.com/primefaces/primereact/issues/5357)
+- Tailwind: Documentation transition: TRANSITIONS.overlay [\#5387](https://github.com/primefaces/primereact/issues/5387)
+- Mention: Component not rendering [\#5374](https://github.com/primefaces/primereact/issues/5374)
+- Primereact Tooltip props children and content have different types [\#5376](https://github.com/primefaces/primereact/issues/5376)
+- Slider: Setting min boundary value component is breaking the component. [\#5398](https://github.com/primefaces/primereact/issues/5398)
+
+## [10.1.1](https://github.com/primefaces/primereact/tree/10.1.1) (2023-11-21)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.1.0...10.1.1)
+
+**Fixed bugs:**
+
+- Calendar with touchUI prop always adds p-overflow-hidden to body in the mounted phase [\#5352](https://github.com/primefaces/primereact/issues/5352)
+- DataTable: Moving selection up with keyboard not working [\#5347](https://github.com/primefaces/primereact/issues/5347)
+- DataTable: fire onRowClickwhen unselect row [\#5342](https://github.com/primefaces/primereact/issues/5342)
+
+## [10.1.0](https://github.com/primefaces/primereact/tree/10.1.0) (2023-11-20)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.9...10.1.0)
+
+**Enhancements:**
+
+- MultiSelect: Add onRemove callback function, the same as in the Chip component [\#5247](https://github.com/primefaces/primereact/issues/5247)
+- Dropdown: Allow control of dropdownIcon based on state [\#5308](https://github.com/primefaces/primereact/issues/5308)
+- Password: Strength meter does not close on escape key press [\#5321](https://github.com/primefaces/primereact/issues/5321)
+- MultiSelect: Add onRemove callback function, the same as in the Chip component [\#5329](https://github.com/primefaces/primereact/issues/5329)
+- Lara theme enhancements [\#5343](https://github.com/primefaces/primereact/issues/5343)
+- New Showcase Implementation [\#5258](https://github.com/primefaces/primereact/issues/5258)
+
+**Fixed bugs:**
+
+- Slider - Prop style did not match [\#5346](https://github.com/primefaces/primereact/issues/5346)
+- Bootstrap: Example is broken [\#5310](https://github.com/primefaces/primereact/issues/5310)
+- Datatable: Setting rowEditorInitIcon has no effect. [\#4430](https://github.com/primefaces/primereact/issues/4430)
+- InputNumber: unable to input a decimal point [\#5338](https://github.com/primefaces/primereact/issues/5338)
+- Missing icons [\#5333](https://github.com/primefaces/primereact/issues/5333)
+- PrimeReactProvider: Panels closing on scroll even with hideOverlaysOnDocumentScrolling: false [\#5332](https://github.com/primefaces/primereact/issues/5332)
+- HeroSection:import case sensitive [\#5328](https://github.com/primefaces/primereact/issues/5328)
+- Tooltip: tooltip does not close when cpu throttled x6 [\#5312](https://github.com/primefaces/primereact/issues/5312)
+- Tooltip: Stuck after hovering when used in complex page [\#3965](https://github.com/primefaces/primereact/issues/3965)
+- select components: props appendTo Incorrect first time mount [\#5311](https://github.com/primefaces/primereact/issues/5311)
+- InputMask: Pasting does not respect the cursor selection [\#5285](https://github.com/primefaces/primereact/issues/5285)
+- Documentation: Ripple needs to be enable, docs says false [\#5316](https://github.com/primefaces/primereact/issues/5316)
+- Tailwind: Dialog - mask: modal property is undefined [\#5296](https://github.com/primefaces/primereact/issues/5296)
+- Tooltip with showOnDisabled prop breaks some input component style [\#5300](https://github.com/primefaces/primereact/issues/5300)
+- Fix with showondisabled prop breaks some input component style [\#5301](https://github.com/primefaces/primereact/issues/5301)
+- Code Display spacing [\#5303](https://github.com/primefaces/primereact/issues/5303)
+- Tailwind: CSS fixes from PrimeVue [\#5294](https://github.com/primefaces/primereact/issues/5294)
+- Tailwind: Under DataTable theming props.frozenRow but are not DataTableProps [\#5288](https://github.com/primefaces/primereact/issues/5288)
+- InputText inherits size from HTMLInputElement and size is number [\#5283](https://github.com/primefaces/primereact/issues/5283)
+- DataTable: Infinite loop onValueChange [\#5160](https://github.com/primefaces/primereact/issues/5160)
+- DataTable: onValueChange fires if the selection if updated [\#5281](https://github.com/primefaces/primereact/issues/5281)
+- InputNumer: PageSpeed Accessibility: ARIA IDs are unique [\#5270](https://github.com/primefaces/primereact/issues/5270)
+- Added plain text [\#5278](https://github.com/primefaces/primereact/issues/5278)
+- InputNumber: PageSpeed Accessibility - Buttons do not have an accessible name [\#5269](https://github.com/primefaces/primereact/issues/5269)
+- Splitter: stateString is undefined [\#5276](https://github.com/primefaces/primereact/issues/5276)
+- Tailwind Theming for Button uses a property plain but plain is not part of ButtonProps [\#5273](https://github.com/primefaces/primereact/issues/5273)
+- Tailwind CSS issue [\#4987](https://github.com/primefaces/primereact/issues/4987)
+- Component Styles: Remove use of !important now that @layer is used [\#5096](https://github.com/primefaces/primereact/issues/5096)
+- Sidebar fullscreen unnecessary class assignments fix [\#5271](https://github.com/primefaces/primereact/issues/5271)
+- Updating documentation under theming [\#5276](https://github.com/primefaces/primereact/issues/5276)
+- SplitButton: Outlined SplitButton right border duplication on hover [\#5264](https://github.com/primefaces/primereact/issues/5264)
+- PanelMenu: command of MenuItem without child cannot be triggered [\#5255](https://github.com/primefaces/primereact/issues/5255)
+- TreeSelect: In unstyled mode, the selected and checked style not work [\#5254](https://github.com/primefaces/primereact/issues/5254)
+- TabView: Dynamically created TabPanels and onTabClose closes more than one Tab [\#2842](https://github.com/primefaces/primereact/issues/2842)
+- TreeTable: filter row ignored when frozen column enabled [\#5252](https://github.com/primefaces/primereact/issues/5252)
+- MultiSelect: stopPropgation on multiSelect items [\#5250](https://github.com/primefaces/primereact/issues/5250)
+- Add support for faster progressive and incremental builds [\#5231](https://github.com/primefaces/primereact/issues/5231)
+- InputNumber: button event repeats infinitely if input is disabled [\#5245](https://github.com/primefaces/primereact/issues/5245)
+- AutoComplete: Primitive value 0 does not display correctly [\#5241](https://github.com/primefaces/primereact/issues/5241)
+- Calendar: Wrong docs in Pass Through [\#5243](https://github.com/primefaces/primereact/issues/5243)
+- TabView: Dynamic Tabs not working [\#5229](https://github.com/primefaces/primereact/issues/5229)
+- OverlayPanel: Toast is appearing when page is loaded [\#5235](https://github.com/primefaces/primereact/issues/5235)
+- InputNumber: Enter leading 0 when using prefix/suffix [\#5234](https://github.com/primefaces/primereact/issues/5234)
+- FileUpload: Uploaded file is cleared in advanced mode [\#5226](https://github.com/primefaces/primereact/issues/5226)
+- Mention: Mentioning someone keeps the search text [\#5216](https://github.com/primefaces/primereact/issues/5216)
+- ComponentBase: TypeError: Cannot read properties of undefined (reading 'unstyled') [\#5168](https://github.com/primefaces/primereact/issues/5168)
+- TypeError: Cannot read properties of undefined (reading 'unstyled') [\#5203](https://github.com/primefaces/primereact/issues/5203)
+
+## [10.0.9](https://github.com/primefaces/primereact/tree/10.0.9) (2023-11-01)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.8...10.0.9)
+
+**Fixed bugs:**
+
+- useHandleStyle Broken: Styles not loading [\#5213](https://github.com/primefaces/primereact/issues/5213)
+
+## [10.0.8](https://github.com/primefaces/primereact/tree/10.0.8) (2023-11-01)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.7...10.0.8)
+
+**Fixed bugs:**
+
+- MultiSelect: Dropdown body detaches from dropdown head/button [\#5210](https://github.com/primefaces/primereact/issues/5210)
+- "Command" docs are missing [\#5205](https://github.com/primefaces/primereact/issues/5205)
+- Tailwind: Panelmenu: Some classes not being picked up during Styling [\#5206](https://github.com/primefaces/primereact/issues/5206)
+- ComponentBase: TypeError: Cannot read properties of undefined (reading 'unstyled') [\#5168](https://github.com/primefaces/primereact/issues/5168)
+- TypeError: Cannot read properties of undefined (reading 'unstyled') [\#5203](https://github.com/primefaces/primereact/issues/5203)
+- Tailwind: MultiSelect: multiple conflicting classname keys [\#5200](https://github.com/primefaces/primereact/issues/5200)
+- Tailwind: PanelMenu: Documentation Pointing to Incorrect TRANSITION [\#5198](https://github.com/primefaces/primereact/issues/5198)
+- Datatable: Missing rowEditorSaveButton and rowEditorSaveIcon on ColumnPassThroughOptions [\#5196](https://github.com/primefaces/primereact/issues/5196)
+- DataTable: Redefine column width after resizing a column manually [\#5123](https://github.com/primefaces/primereact/issues/5123)
+- DataTable: When using InputTextarea as editor, pressing Ctrl + Enter or Shift + Enter results in a submission [\#5193](https://github.com/primefaces/primereact/issues/5193)
+- InputNumber: Minus Sign not working for Currency INR [\#5185](https://github.com/primefaces/primereact/issues/5185)
+- PanelMenu: Visual defect [\#5190](https://github.com/primefaces/primereact/issues/5190)
+- Tailwind with Menubar end attribute does not align-right [\#5181](https://github.com/primefaces/primereact/issues/5181)
+- DataTable with frozen columns and displayFilter 'row' doesn't freeze filter cell [\#5164](https://github.com/primefaces/primereact/issues/5164)
+- Add missing pi-file-edit icon [\#5179](https://github.com/primefaces/primereact/issues/5179)
+- OrderList: order of selection reversed when moving multiple items to top or bottom [\#5177](https://github.com/primefaces/primereact/issues/5177)
+- 10.0.7: forwardRef Warning [\#5172](https://github.com/primefaces/primereact/issues/5172)
+- id not passed to SplitterPanel [\#5169](https://github.com/primefaces/primereact/issues/5169)
+
+## [10.0.7](https://github.com/primefaces/primereact/tree/10.0.7) (2023-10-26)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.6...10.0.7)
+
+**Fixed bugs:**
+
+- SplitButton: Missing styles [\#5163](https://github.com/primefaces/primereact/issues/5163)
+
+## [10.0.6](https://github.com/primefaces/primereact/tree/10.0.6) (2023-10-26)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.5...10.0.6)
+
+**Fixed bugs:**
+
+- FileUpload: Adding pending text to localization in component [\#5161](https://github.com/primefaces/primereact/issues/5161)
+- AvatarGroup -> Avatar Hover tooltip [\#4181](https://github.com/primefaces/primereact/issues/4181)
+- MultiSelect: Clicking on "selectAll" checkbox closes options dropdown [\#5151](https://github.com/primefaces/primereact/issues/5151)
+- AccordionTab cannot be used in custom wrapper [\#2052](https://github.com/primefaces/primereact/issues/2052)
+- SpeedDial: className property not being applied to list items [\#5148](https://github.com/primefaces/primereact/issues/5148)
+- MultiSelect: Clear button marks variable as undefined [\#5142](https://github.com/primefaces/primereact/issues/5142)
+- Mispell of 'inteface' instead of 'interface' [\#5138](https://github.com/primefaces/primereact/issues/5138)
+- Calendar with mask does not work as expected when editing input. [\#5137](https://github.com/primefaces/primereact/issues/5137)
+- DataTable: passthrough styling is ignored [\#5131](https://github.com/primefaces/primereact/issues/5131)
+- Column: Pass Through does not apply header classes correctly [\#5125](https://github.com/primefaces/primereact/issues/5125)
+- InputNumber: Typescript type definition for 'incrementButtonIcon' and 'decrementButtonIcon' errorneous [\#5132](https://github.com/primefaces/primereact/issues/5132)
+- Mention: Mentioning someone deletes the first word of the comment [\#5114](https://github.com/primefaces/primereact/issues/5114)
+
+**New Features:**
+
+- Password with ability to toggle mask via a method and a unmasked property [\#5135](https://github.com/primefaces/primereact/issues/5135)
+
+## [10.0.5](https://github.com/primefaces/primereact/tree/10.0.5) (2023-10-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.4...10.0.5)
+
+**Fixed bugs:**
+
+- Overlay animations are not working with Tailwind preset [\#5117](https://github.com/primefaces/primereact/issues/5117)
+
+## [10.0.4](https://github.com/primefaces/primereact/tree/10.0.4) (2023-10-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.3...10.0.4)
+
+**Implemented New Features and Enhancements:**
+
+- MultiSelect: Formatting selected items with spaces after the commas [\#5100](https://github.com/primefaces/primereact/issues/5100)
+- Tree: onDrop should not attempt a copy of node values [\#5080](https://github.com/primefaces/primereact/issues/5080)
+
+**Fixed bugs:**
+
+- Tailwind preset animations are not working as expected [\#5110](https://github.com/primefaces/primereact/issues/5110)
+- Slider (range): Warning: NaN is an invalid value for the left css style property. [\#5111](https://github.com/primefaces/primereact/issues/5111)
+- Inplace Component Doc Image Responsive Issue [\#5103](https://github.com/primefaces/primereact/issues/5103)
+- TreeSelect: Incorrect TypeScript types for filterTemplate options [\#5102](https://github.com/primefaces/primereact/issues/5102)
+- TreeSelect: With selected value, close icon looks cluttered [\#5012](https://github.com/primefaces/primereact/issues/5012)
+- TreeSelect: Clear Icon Misplacement [\#5020](https://github.com/primefaces/primereact/issues/5020)
+- SelectButton: AllowEmpty not working [\#5094](https://github.com/primefaces/primereact/issues/5094)
+- Toast/Messages: remove not working [\#5083](https://github.com/primefaces/primereact/issues/5083)
+- Fieldset: Missing root className pass [\#5088](https://github.com/primefaces/primereact/issues/5088)
+- Panel: Missing props.className passthrough [\#5087](https://github.com/primefaces/primereact/issues/5087)
+- useDebounce: Missing type [\#5085](https://github.com/primefaces/primereact/issues/5085)
+- Message: Icon shrinks as text in message grows larger [\#5078](https://github.com/primefaces/primereact/issues/5078)
+
+## [9.6.3](https://github.com/primefaces/primereact/tree/9.6.3) (2023-10-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.6.2...9.6.3)
+
+**Fixed bugs:**
+
+- DataTable: Invalid attribute warning when passing custom icon to rowReorderIcon [\#5109](https://github.com/primefaces/primereact/issues/5109)
+
+## [10.0.3](https://github.com/primefaces/primereact/tree/10.0.3) (2023-10-11)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.2...10.0.3)
+
+**Deprecated:**
+
+- SlideMenu: Deprecate from PrimeReact [\#5063](https://github.com/primefaces/primereact/issues/5063)
+- Remove FullCalendar theme support [\#5062](https://github.com/primefaces/primereact/issues/5062)
+
+**Implemented New Features and Enhancements:**
+
+- Improve block/unblockScroll architecture [\#5077](https://github.com/primefaces/primereact/issues/5077)
+- SelectButton: Add allowEmpty property [\#5073](https://github.com/primefaces/primereact/issues/5073)
+- DataTable: Clicking the center mouse button on a row should open the row item in a new tab [\#5051](https://github.com/primefaces/primereact/issues/5051)
+- Dropdown: Allow to pass "className" with a group as well [\#5047](https://github.com/primefaces/primereact/issues/5047)
+
+**Fixed bugs:**
+
+- Dock: Toast Component not working properly [\#5076](https://github.com/primefaces/primereact/issues/5076)
+- DataTable bug when clicked in rowExpansion icon with selectionMode="single". [\#5074](https://github.com/primefaces/primereact/issues/5074)
+- Editor layer defect [\#5065](https://github.com/primefaces/primereact/issues/5065)
+- ContextMenu: Broken with nested items \(10.0\) [\#5064](https://github.com/primefaces/primereact/issues/5064)
+- Menu: Menu with popup prop passed doesnot close on Escape keypress. [\#5044](https://github.com/primefaces/primereact/issues/5044)
+- DataTable: Checkbox onChange stops propagation [\#5039](https://github.com/primefaces/primereact/issues/5039)
+- Scroll Panel: Scroll Panel does not scroll with mouse [\#5038](https://github.com/primefaces/primereact/issues/5038)
+- Context Menu In Datatable [\#5035](https://github.com/primefaces/primereact/issues/5035)
+- MultiSelect: FilterTemplate prop not working, execution error [\#5028](https://github.com/primefaces/primereact/issues/5028)
+- Calendar: When stepMinute is set, the time value does not "snap" on initial date change [\#5027](https://github.com/primefaces/primereact/issues/5027)
+- UseStorage hook window listener does not parse JSON [\#5026](https://github.com/primefaces/primereact/issues/5026)
+- Fixed lara blue state colors [\#5015](https://github.com/primefaces/primereact/issues/5015)
+- Progress bar determinate type doesnt apply classNames passed through props [\#5003](https://github.com/primefaces/primereact/issues/5003)
+- DataTable: Filter Menu Icon disappeared after sorting [\#4994](https://github.com/primefaces/primereact/issues/4994)
+- Column: headerClassName [\#4993](https://github.com/primefaces/primereact/issues/4993)
+- MultiSelect: Doesn't render items [\#4988](https://github.com/primefaces/primereact/issues/4988)
+- InputMask does not fire onComplete method when a slotChar is present [\#3240](https://github.com/primefaces/primereact/issues/3240)
+
+## [10.0.2](https://github.com/primefaces/primereact/tree/10.0.2) (2023-09-29)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.1...10.0.2)
+
+**Fixed bugs:**
+
+- The .esm builds not working as expected. [\#4984](https://github.com/primefaces/primereact/issues/4984)
+- Improve Tailwind import [\#4985](https://github.com/primefaces/primereact/issues/4985)
+
+## [10.0.1](https://github.com/primefaces/primereact/tree/10.0.1) (2023-09-28)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/10.0.0...10.0.1)
+
+**Fixed bugs:**
+
+- Base styles are not loading [\#4982](https://github.com/primefaces/primereact/issues/4982)
+
+## [10.0.0](https://github.com/primefaces/primereact/tree/10.0.0) (2023-09-28)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.6.2...10.0.0)
+
+**Breaking Changes:**
+
+- Theme updates: change `:focus` to `:focus-visible` [\#4972](https://github.com/primefaces/primereact/issues/4972)
+- New @layer implementation [\#4959](https://github.com/primefaces/primereact/issues/4959)
+- Core: Drop Internet Explorer Support [\#3238](https://github.com/primefaces/primereact/issues/3238)
+
+**Implemented New Features and Enhancements:**
+
+- Add / Update OG Image [\#4970](https://github.com/primefaces/primereact/issues/4970)
+- SlideMenu: SlideMenu with `popup` prop passed doesnot close on Escape keypress. [\#4961](https://github.com/primefaces/primereact/issues/4961)
+- Dialog: component scrollbar shift [\#4958](https://github.com/primefaces/primereact/issues/4958)
+- ConfirmPopup: Escape key does not close the popup. [\#4952](https://github.com/primefaces/primereact/issues/4952)
+- Multiselect: Display labels of selected items in filtered component [\#4944](https://github.com/primefaces/primereact/issues/4944)
+- Update Lara theme font to Inter Var [\#4942](https://github.com/primefaces/primereact/issues/4942)
+- Dialog: blockScroll + visible + fullscreen mode gives unexpected behavior if dialog is unmounted while visible [\#4940](https://github.com/primefaces/primereact/issues/4940)
+- Add gtag manager [\#4900](https://github.com/primefaces/primereact/issues/4900)
+- Dropdown: allow to set label's class name via the api [\#4877](https://github.com/primefaces/primereact/issues/4877)
+- FileUpload: Localize pending and file sizes [\#4872](https://github.com/primefaces/primereact/issues/4872)
+- Calendar: Missing `slotChar` prop [\#4866](https://github.com/primefaces/primereact/issues/4866)
+- AutoComplete: required property doesn't exist [\#4858](https://github.com/primefaces/primereact/issues/4858)
+- OverlayPanel: does not reposition itself when its content forces its size to change [\#4819](https://github.com/primefaces/primereact/issues/4819)
+- TreeTable: There's not a way to get the data after a change [\#4816](https://github.com/primefaces/primereact/issues/4816)
+- Autocomplete: selectionLimit ux enhancement [\#4784](https://github.com/primefaces/primereact/issues/4784)
+- SSR: Support Server Component [\#4634](https://github.com/primefaces/primereact/issues/4634)
+- Add `unstyled` mode for all components [\#4602](https://github.com/primefaces/primereact/issues/4602)
+
+**Fixed bugs:**
+
+- Messages: Icon shrinks as text in message grows larger [\#4977](https://github.com/primefaces/primereact/issues/4977)
+- Image: Image Preview shows a browser scrollbar. [\#4963](https://github.com/primefaces/primereact/issues/4963)
+- Tree Table: Footer is defined as a function but it doesn't work [\#4960](https://github.com/primefaces/primereact/issues/4960)
+- MegaMenu: click not navigating to `url` [\#4956](https://github.com/primefaces/primereact/issues/4956)
+- FileUpload: Input Triggered on Any Mouse Click [\#4948](https://github.com/primefaces/primereact/issues/4948)
+- Dialog: When using blockScroll and the dialog is unmounted while being visible, scrolling continues to be blocked [\#4938](https://github.com/primefaces/primereact/issues/4938)
+- Password: onKeyDown event is triggered twice. [\#4934](https://github.com/primefaces/primereact/issues/4934)
+- Menu | MenuItem API id property is ignored [\#4932](https://github.com/primefaces/primereact/issues/4932)
+- Ripple: Has no effect on touch enabled desktop screens [\#4909](https://github.com/primefaces/primereact/issues/4909)
+- Slider error on mobile devices [\#4906](https://github.com/primefaces/primereact/issues/4906)
+- Calendar: Multiple Month/Year selection mode not highlighting selected month [\#4892](https://github.com/primefaces/primereact/issues/4892)
+- Build: missing `components/lib/common/Common.css` [\#4889](https://github.com/primefaces/primereact/issues/4889)
+- InputMask: Autofocus crashes [\#4882](https://github.com/primefaces/primereact/issues/4882)
+- InputNumber: Doesn't allow minus sign in currency mode [\#4875](https://github.com/primefaces/primereact/issues/4875)
+- Toast: Toast Icon is too small when there is long text [\#4873](https://github.com/primefaces/primereact/issues/4873)
+- DataTable: conditional row reorder shows "false" instead of hiding reorder icon [\#4854](https://github.com/primefaces/primereact/issues/4854)
+- AutoComplete: can't remove item [\#4848](https://github.com/primefaces/primereact/issues/4848)
+- DataTable filterDisplay="menu", Uncaught TypeError [\#4845](https://github.com/primefaces/primereact/issues/4845)
+- Avatar: shape="circle" is not working [\#4839](https://github.com/primefaces/primereact/issues/4839)
+- Password: tabIndex duplication [\#4836](https://github.com/primefaces/primereact/issues/4836)
+- Calendar: Class ".p-inputwrapper-focus" is not removed when the input is unfocused [\#4834](https://github.com/primefaces/primereact/issues/4834)
+- DataTable: editorCallback does not update a value if the field name of column has nested elements [\#4814](https://github.com/primefaces/primereact/issues/4814)
+- Calendar: disabledDays do affect year to be also disabled [\#4803](https://github.com/primefaces/primereact/issues/4803)
+- Context: setInputStyle\("filled"\) doesn't switch the style [\#4799](https://github.com/primefaces/primereact/issues/4799)
+- Ripple: Ripple effect not working in some instances [\#4153](https://github.com/primefaces/primereact/issues/4153)
+- Calendar: Changing Calendar input \(with mask\) clears the rest of the form's state [\#4030](https://github.com/primefaces/primereact/issues/4030)
+- Datatable: onValueChange with Removable Sort [\#3133](https://github.com/primefaces/primereact/issues/3133)
+
+## [9.6.2](https://github.com/primefaces/primereact/tree/9.6.2) (2023-08-17)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.6.1...9.6.2)
+
+**Implemented New Features and Enhancements:**
+
+- DataTable: Type issue for Selection Mode [\#4777](https://github.com/primefaces/primereact/issues/4777)
+
+**Fixed bugs:**
+
+- Carousel: created style lifecycle issue [\#4779](https://github.com/primefaces/primereact/issues/4779)
+- Dropdown: MenuItem not respecting style attribute [\#4766](https://github.com/primefaces/primereact/issues/4766)
+- Slider: onSlideEnd behaviour has changed [\#4680](https://github.com/primefaces/primereact/issues/4680)
+- Tooltip: autoHide={false} broken on version 9 [\#4604](https://github.com/primefaces/primereact/issues/4604)
+- Calendar: Mask is not displayed [\#4579](https://github.com/primefaces/primereact/issues/4579)
+- Calendar: The date cannot be selected from the first click in the opened popup [\#4568](https://github.com/primefaces/primereact/issues/4568)
+- DataTable: Column resize is not working properly. [\#4471](https://github.com/primefaces/primereact/issues/4471)
+- Carousel: Swipe functionality [\#3788](https://github.com/primefaces/primereact/issues/3788)
+
+## [9.6.1](https://github.com/primefaces/primereact/tree/9.6.1) (2023-08-01)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.6.0...9.6.1)
+
+**Fixed bugs:**
+
+- FileUpload: Uploading file issue in multiple= false [\#4665](https://github.com/primefaces/primereact/issues/4665)
+- DataTable: Unexpected Behavior in Production Mode for ColumnResize [\#4655](https://github.com/primefaces/primereact/issues/4655)
+
+## [9.6.0](https://github.com/primefaces/primereact/tree/9.6.0) (2023-06-27)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.5.0...9.6.0)
+
+**Implemented New Features and Enhancements:**
+
+- TreeSelect: Support custom expand/collapse icons [\#4525](https://github.com/primefaces/primereact/issues/4525)
+- FileUpload: Uploaded files ref methods [\#4516](https://github.com/primefaces/primereact/issues/4516)
+- Carousel: Add start/stop autoplay to exposed methods [\#4513](https://github.com/primefaces/primereact/issues/4513)
+- TreeTable: Row hover event [\#4502](https://github.com/primefaces/primereact/issues/4502)
+- TreeTable: Add toggler template \(same as Tree component\) [\#4499](https://github.com/primefaces/primereact/issues/4499)
+- Dropdown: VirtualScrollerRef access for scrollToIndex [\#4489](https://github.com/primefaces/primereact/issues/4489)
+- New passthrough\(pt\) property implementation for Data Components [\#4432](https://github.com/primefaces/primereact/issues/4432)
+- New passthrough\(pt\) property implementation for Form Components [\#4431](https://github.com/primefaces/primereact/issues/4431)
+- InputNumber should support global locale [\#4291](https://github.com/primefaces/primereact/issues/4291)
+- TreeSelect: `nodeTemplate` property [\#3678](https://github.com/primefaces/primereact/issues/3678)
+
+**Fixed bugs:**
+
+- FileUpload component does not pass file information in the onSelect event [\#4557](https://github.com/primefaces/primereact/issues/4557)
+- Calendar: Mask prop does not work [\#4548](https://github.com/primefaces/primereact/issues/4548)
+- ContextMenu: Global not working in Strict Mode [\#4543](https://github.com/primefaces/primereact/issues/4543)
+- PickList: Error when Transferring Unselected Values in Pick List Functionality [\#4540](https://github.com/primefaces/primereact/issues/4540)
+- MultiSelect \(group\) SelectAll checked when all items in first group are selected [\#4535](https://github.com/primefaces/primereact/issues/4535)
+- FileUpload: input passthrough not working when mode="basic" [\#4533](https://github.com/primefaces/primereact/issues/4533)
+- MultiSelect: Dropdown closes on deselect [\#4523](https://github.com/primefaces/primereact/issues/4523)
+- Skeleton: children prop not rendering [\#4512](https://github.com/primefaces/primereact/issues/4512)
+- ScrollTop: doesn't work [\#4505](https://github.com/primefaces/primereact/issues/4505)
+- BreadCrumb: label home prop doesn't work [\#4504](https://github.com/primefaces/primereact/issues/4504)
+- DataTable: Checkbox/Radio not respecting isDataSelectable [\#4492](https://github.com/primefaces/primereact/issues/4492)
+- SplitButton: menu icon not visible in large size [\#4483](https://github.com/primefaces/primereact/issues/4483)
+- Menubar: Cannot use useRef [\#4467](https://github.com/primefaces/primereact/issues/4467)
+- TabView: On initial load, the page will scroll down to the Tab if it's below the scroll window [\#4462](https://github.com/primefaces/primereact/issues/4462)
+- Calendar: showMinMaxRange property is broken in multiple ways [\#4456](https://github.com/primefaces/primereact/issues/4456)
+- Calendar: Navigation broken when defining min and max values [\#4449](https://github.com/primefaces/primereact/issues/4449)
+
+## [9.5.0](https://github.com/primefaces/primereact/tree/9.5.0) (2023-05-24)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.4.0...9.5.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add `hideOverlaysOnDocumentScrolling` option to PrimeReact config [\#4448](https://github.com/primefaces/primereact/issues/4448)
+- Icons: clipPath improvements [\#4441](https://github.com/primefaces/primereact/issues/4441)
+- AutoComplete: panelFooterTemplate prop [\#4426](https://github.com/primefaces/primereact/issues/4426)
+- MultiSelect: No way to disable filter auto focus [\#4423](https://github.com/primefaces/primereact/issues/4423)
+- New passthrough\(pt\) property implementation for Media Components [\#4393](https://github.com/primefaces/primereact/issues/4393)
+- New passthrough\(pt\) property implementation for Chart & FileUpload & Message Components [\#4392](https://github.com/primefaces/primereact/issues/4392)
+- New passthrough\(pt\) property implementation for Menu Components [\#4391](https://github.com/primefaces/primereact/issues/4391)
+- Mention: suggestion panel to hide when scrolling away [\#4223](https://github.com/primefaces/primereact/issues/4223)
+- Messages-Toast: Inconsistency [\#4077](https://github.com/primefaces/primereact/issues/4077)
+- Menu: Add ability to right align [\#3753](https://github.com/primefaces/primereact/issues/3753)
+
+**Fixed bugs:**
+
+- Dropdown: Footer using incorrect style name [\#4446](https://github.com/primefaces/primereact/issues/4446)
+- InputNumber: preventing ripple on buttons [\#4443](https://github.com/primefaces/primereact/issues/4443)
+- Datatable: filterIcon and filterClearIcon not propagated [\#4439](https://github.com/primefaces/primereact/issues/4439)
+- BreadCrumb: SVG location of the DOM [\#4438](https://github.com/primefaces/primereact/issues/4438)
+- DataTable: Filter Clear icon is missing [\#4437](https://github.com/primefaces/primereact/issues/4437)
+- Datatable: Setting rowEditorInitIcon has no effect. [\#4430](https://github.com/primefaces/primereact/issues/4430)
+- MultiSelect clear icon not aligned correctly [\#4427](https://github.com/primefaces/primereact/issues/4427)
+- TriStateCheckbox: "undefined" value render checkbox highlighted but without value [\#4422](https://github.com/primefaces/primereact/issues/4422)
+- Checkbox: Toggling value by clicking the label broken [\#4402](https://github.com/primefaces/primereact/issues/4402)
+- Image: Zoom out action disabled when fully zoomed in [\#4400](https://github.com/primefaces/primereact/issues/4400)
+- ConfirmDialog: Missing dialog header [\#4397](https://github.com/primefaces/primereact/issues/4397)
+- Autocomplete: multiple + forceSelection [\#4363](https://github.com/primefaces/primereact/issues/4363)
+- DataTable: resizableColumns with stateStorage will not adjust saved column width after refresh. [\#4211](https://github.com/primefaces/primereact/issues/4211)
+- Autocomplete clears selected values onBlur when forceSelection and multiple are true [\#4203](https://github.com/primefaces/primereact/issues/4203)
+- Dropdown: rendering problem when used in a Dialog [\#2683](https://github.com/primefaces/primereact/issues/2683)
+
+## [9.4.0](https://github.com/primefaces/primereact/tree/9.4.0) (2023-05-12)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.3.1...9.4.0)
+
+**Implemented New Features and Enhancements:**
+
+- New passthrough\(pt\) property implementation for Button Components [\#4360](https://github.com/primefaces/primereact/issues/4360)
+- New passthrough\(pt\) property implementation for Overlay Components [\#4359](https://github.com/primefaces/primereact/issues/4359)
+- New passthrough\(pt\) property implementation for Misc Components [\#4352](https://github.com/primefaces/primereact/issues/4352)
+- New passthrough\(pt\) property implementation for Panel Components [\#4293](https://github.com/primefaces/primereact/issues/4293)
+- Events: Forward preventDefault, stopPropagation from original event [\#4375](https://github.com/primefaces/primereact/issues/4375)
+- MultiSelect: expose selected value in onChange event [\#4366](https://github.com/primefaces/primereact/issues/4366)
+- RadioButton/Checkbox: Add `onClick` event [\#4356](https://github.com/primefaces/primereact/issues/4356)
+- Toast/Messages: Fix updates incorrectly updating older version of the state [\#4350](https://github.com/primefaces/primereact/issues/4350)
+- DataTable: event.preventDefault\(\) not working in cell edit events [\#4339](https://github.com/primefaces/primereact/issues/4339)
+- DataTable: `showHeaders={false}` option [\#4337](https://github.com/primefaces/primereact/issues/4337)
+- DataTable: Custom icon prop for filter icon [\#4327](https://github.com/primefaces/primereact/issues/4327)
+- Dialog: Maximized should not have rounded borders? [\#4310](https://github.com/primefaces/primereact/issues/4310)
+- ColorPicker: Styling the Input [\#4267](https://github.com/primefaces/primereact/issues/4267)
+- Panel: Footer Option [\#4200](https://github.com/primefaces/primereact/issues/4200)
+- EmptyFilterMessage does not work on Dropdown with virtualscroll [\#4193](https://github.com/primefaces/primereact/issues/4193)
+- Dropdown: Footer Template [\#4026](https://github.com/primefaces/primereact/issues/4026)
+- Toast+Sidebar: Closing toast closes sidebar [\#3977](https://github.com/primefaces/primereact/issues/3977)
+- Datatable : Export custom header export to CSV [\#3975](https://github.com/primefaces/primereact/issues/3975)
+- DataTable - Impossible to implement Expandable Row Groups with Row Expansion [\#2213](https://github.com/primefaces/primereact/issues/2213)
+
+**Fixed bugs:**
+
+- Calendar: disabledDates prop not working for month [\#4370](https://github.com/primefaces/primereact/issues/4370)
+- useSessionStorage Hook: initialization issue [\#4353](https://github.com/primefaces/primereact/issues/4353)
+- InputText/InputTextArea: .p-filled class/isFilled bool not resetting after setValue\(""\) [\#4351](https://github.com/primefaces/primereact/issues/4351)
+- Dropdown: When using groups and filter options, if optionGroupChildren is set to a different name other than items, filter stops working properly [\#4348](https://github.com/primefaces/primereact/issues/4348)
+- DIalog: modal prop is not always respected [\#4334](https://github.com/primefaces/primereact/issues/4334)
+- DataTable preventDefault NOT WORKING [\#4333](https://github.com/primefaces/primereact/issues/4333)
+- Button: No margin/padding between button text and loading spinner [\#4320](https://github.com/primefaces/primereact/issues/4320)
+- Dialog: body scroll is not restored when closing maximized Dialog [\#4313](https://github.com/primefaces/primereact/issues/4313)
+- SpeedDial: `buttonTemplate` not working [\#4305](https://github.com/primefaces/primereact/issues/4305)
+- Carousel: onPageChange and autoplayInterval does not work together [\#4301](https://github.com/primefaces/primereact/issues/4301)
+- Image: Properties e.g. crossOrigin are only applied to the preview and not the full image [\#4300](https://github.com/primefaces/primereact/issues/4300)
+- Calendar: time select updates the parent component state through props.value [\#4298](https://github.com/primefaces/primereact/issues/4298)
+- FileUpload: console error [\#4294](https://github.com/primefaces/primereact/issues/4294)
+- DataTable: sort icon will be resized if the column title is multiline. [\#4283](https://github.com/primefaces/primereact/issues/4283)
+- ConfirmDialog: Event triggers multiple times if users spam Enter / Double click on button [\#4168](https://github.com/primefaces/primereact/issues/4168)
+- Calendar: disabledDays prop also disable months [\#4015](https://github.com/primefaces/primereact/issues/4015)
+- Galleria: Undefined imgSrc if `autoplay` with `circular={false}` [\#3973](https://github.com/primefaces/primereact/issues/3973)
+- DataTable: Resizing headers in expand mode does not work correctly [\#3970](https://github.com/primefaces/primereact/issues/3970)
+- Dialog: Performing "onMouseDown" inside the Dialog and "onMouseUp" outside of it closes the dialog when "dismissableMask" is true [\#3962](https://github.com/primefaces/primereact/issues/3962)
+- TreeTable : Support Custom Templating in Header [\#3946](https://github.com/primefaces/primereact/issues/3946)
+- DataTable: Resize column place is not correct [\#3795](https://github.com/primefaces/primereact/issues/3795)
+- Tooltip: registering show/hide events twice on each target [\#3701](https://github.com/primefaces/primereact/issues/3701)
+
+## [9.3.1](https://github.com/primefaces/primereact/tree/9.3.1) (2023-04-26)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.3.0...9.3.1)
+
+**Implemented New Features and Enhancements:**
+
+- Messages: Cannot pass Id property [\#4281](https://github.com/primefaces/primereact/issues/4281)
+- Image: missing `crossOrigin`, `referrerPolicy`, `loading` and `useMap` [\#4273](https://github.com/primefaces/primereact/issues/4273)
+- Mention: autoResize wont resize back to starting height [\#4197](https://github.com/primefaces/primereact/issues/4197)
+- DataTable: Cell edit support Dropdown. [\#2666](https://github.com/primefaces/primereact/issues/2666)
+
+**Fixed bugs:**
+
+- DataTable: Correct "Select All" behavior in checkbox selection mode [\#4284](https://github.com/primefaces/primereact/issues/4284)
+- DataTable: multisortField - Cannot read properties of undefined \(reading 'field'\) [\#4269](https://github.com/primefaces/primereact/issues/4269)
+- Image: No overload matches this call. [\#4268](https://github.com/primefaces/primereact/issues/4268)
+- Uncaught reference error for icons. [\#4264](https://github.com/primefaces/primereact/issues/4264)
+- Calendar: `numberOfMonths` \> 12 issue [\#4259](https://github.com/primefaces/primereact/issues/4259)
+- DataTable: paginator with alwaysShowPaginator: false is displayed for empty table [\#4254](https://github.com/primefaces/primereact/issues/4254)
+- PickList: source/target filterTemplate not working [\#4249](https://github.com/primefaces/primereact/issues/4249)
+- DataTable: Data are not displayed when "Column" has no "field" attributes [\#4248](https://github.com/primefaces/primereact/issues/4248)
+- Tooltip: Does not work if target is dynamic [\#4243](https://github.com/primefaces/primereact/issues/4243)
+- TabView: Conditionally render TabPanel under TabView [\#4235](https://github.com/primefaces/primereact/issues/4235)
+- Mention: wrong value when clicking on suggestion [\#4221](https://github.com/primefaces/primereact/issues/4221)
+- Dropdown: with react-hook-form . Control prop doesn't exist [\#4215](https://github.com/primefaces/primereact/issues/4215)
+- TieredMenu: Menu items in are assigned with id attribute with a value of \[object Object\] [\#4011](https://github.com/primefaces/primereact/issues/4011)
+
+## [9.3.0](https://github.com/primefaces/primereact/tree/9.3.0) (2023-04-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.2.3...9.3.0)
+
+**Implemented New Features and Enhancements:**
+
+- Improve icon implementation in core [\#4220](https://github.com/primefaces/primereact/issues/4220)
+- Add icon templating support to components [\#4226](https://github.com/primefaces/primereact/issues/4226)
+- Add new Icon components [\#4227](https://github.com/primefaces/primereact/issues/4227)
+
+## [9.2.3](https://github.com/primefaces/primereact/tree/9.2.3) (2023-04-11)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.2.2...9.2.3)
+
+**Fixed bugs:**
+
+- Type missing for PrimeReact.changeTheme [\#4240](https://github.com/primefaces/primereact/issues/4240)
+
+## [9.2.2](https://github.com/primefaces/primereact/tree/9.2.2) (2023-03-28)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.2.1...9.2.2)
+
+**Implemented New Features and Enhancements:**
+
+- Slider: Change positioning of handles in range mode [\#4184](https://github.com/primefaces/primereact/issues/4184)
+
+**Fixed bugs:**
+
+- OverlayEventOptions type inccorrect [\#4189](https://github.com/primefaces/primereact/issues/4189)
+- Mention: selected result to replace the search query [\#4188](https://github.com/primefaces/primereact/issues/4188)
+- Tree: Missing property `dropNode` in type signature of `TreeDragDropEvent` [\#4179](https://github.com/primefaces/primereact/issues/4179)
+- CodeSandbox demos are broken [\#4172](https://github.com/primefaces/primereact/issues/4172)
+- Sidebar: Unexpected component hide [\#4170](https://github.com/primefaces/primereact/issues/4170)
+- Calendar: `view` typescript missing `year` [\#4163](https://github.com/primefaces/primereact/issues/4163)
+- Ripple: first click on component has incorrect location [\#4160](https://github.com/primefaces/primereact/issues/4160)
+- primereact.min.css Error at background:transparent URL\(\) with base64 image [\#4097](https://github.com/primefaces/primereact/issues/4097)
+- ConfirmDialog: is not loading inside a Shadow DOM [\#4096](https://github.com/primefaces/primereact/issues/4096)
+
+## [9.2.1](https://github.com/primefaces/primereact/tree/9.2.1) (2023-03-15)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.2.0...9.2.1)
+
+**Implemented New Features and Enhancements:**
+
+- Timeline: subgroups [\#4154](https://github.com/primefaces/primereact/issues/4154)
+- Add new style props to SplitButton component [\#4144](https://github.com/primefaces/primereact/issues/4144)
+- Using the tooltip attribute inside the Shadow Dom crashes Primereact on hover [\#4143](https://github.com/primefaces/primereact/issues/4143)
+- DataTable: responsiveLayout="stack" and scrollable not working together [\#3693](https://github.com/primefaces/primereact/issues/3693)
+
+**Fixed bugs:**
+
+- Showcase: multiple pages have a typo of the word 'archive' [\#4146](https://github.com/primefaces/primereact/issues/4146)
+- MegaMenu: does not hide menuItem when visible = false [\#4140](https://github.com/primefaces/primereact/issues/4140)
+- Multiselect: Errors on types and behaviour not as documented [\#4129](https://github.com/primefaces/primereact/issues/4129)
+- DataTable with VirtualScroller: multi selection bug [\#4120](https://github.com/primefaces/primereact/issues/4120)
+- InputText: Tooltip and float-label incompatibility when using showOnDisabled [\#4110](https://github.com/primefaces/primereact/issues/4110)
+- useIntersectionObserver: Make the options parameter optional [\#4109](https://github.com/primefaces/primereact/issues/4109)
+- Button: Severity 'help' missing in TypeScript definition [\#4108](https://github.com/primefaces/primereact/issues/4108)
+- DataTable Virtual Scroller: Column Resize Not Working [\#4102](https://github.com/primefaces/primereact/issues/4102)
+- Dataview: Callback Documentation Typo [\#4099](https://github.com/primefaces/primereact/issues/4099)
+- Datatable: Duplicate events fire in `paginatorPosition=both` [\#4095](https://github.com/primefaces/primereact/issues/4095)
+- Button: Size 'large' vs 'lg' [\#4093](https://github.com/primefaces/primereact/issues/4093)
+- Theme: `vela-blue` TreeSelect inconsistent theming [\#3669](https://github.com/primefaces/primereact/issues/3669)
+
+## [9.2.0](https://github.com/primefaces/primereact/tree/9.2.0) (2023-02-21)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.1.1...9.2.0)
+
+**Breaking Changes:**
+
+- DataTable CSS and responsive structure improvements [\#4078](https://github.com/primefaces/primereact/issues/4078)
+
+**Implemented New Features and Enhancements:**
+
+- New Hook: useMatchMedia [\#4090](https://github.com/primefaces/primereact/issues/4090)
+- Add breakpoint and scrollHeight props to ContextMenu, MegaMenu and TieredMenu components. [\#4082](https://github.com/primefaces/primereact/issues/4082)
+- TreeTable CSS improvements [\#4081](https://github.com/primefaces/primereact/issues/4081)
+- Add `when` option to useResizeListener hook [\#4080](https://github.com/primefaces/primereact/issues/4080)
+- Add tabIndex, appendOnly and inline properties to VirtualScroller [\#4079](https://github.com/primefaces/primereact/issues/4079)
+
+**Fixed bugs:**
+
+- Toast: Flick issue on toast-message-exit-active class [\#4084](https://github.com/primefaces/primereact/issues/4084)
+- Inplace is not working as expected [\#4070](https://github.com/primefaces/primereact/issues/4070)
+- PrimeIcons: can't use pi-arrow-right-arrow-left [\#4062](https://github.com/primefaces/primereact/issues/4062)
+- Calendar: Popup incorrect year in multiple month [\#4058](https://github.com/primefaces/primereact/issues/4058)
+- Avatar: Wrong className is getting used when image is undefined [\#4049](https://github.com/primefaces/primereact/issues/4049)
+- Inline Calendar inside DataTable filter error [\#4042](https://github.com/primefaces/primereact/issues/4042)
+- Toast: Summary Overflow Bug [\#4023](https://github.com/primefaces/primereact/issues/4023)
+
+## [9.1.1](https://github.com/primefaces/primereact/tree/9.1.1) (2023-02-15)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.1.0...9.1.1)
+
+**Fixed bugs:**
+
+- primereact 9.1.0 it is not loaded using vite [\#4064](https://github.com/primefaces/primereact/issues/4064)
+
+## [9.1.0](https://github.com/primefaces/primereact/tree/9.1.0) (2023-02-15)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.0.0...9.1.0)
+
+**Implemented New Features and Enhancements:**
+
+- Improve responsive styling on Menubar [\#4060](https://github.com/primefaces/primereact/issues/4060)
+- FileUpload: Advanced Section same as PrimeVue FileUpload section [\#4059](https://github.com/primefaces/primereact/issues/4059)
+- Add breakpoint and scrollHeight properties to CascadeSelect [\#4052](https://github.com/primefaces/primereact/issues/4052)
+- Add breakpoint property to PickList and OrderList [\#4050](https://github.com/primefaces/primereact/issues/4050)
+
+## [9.0.0](https://github.com/primefaces/primereact/tree/9.0.0) (2023-02-13)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.0.0-rc.1...9.0.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add sideEffects: false to nested package.json files on components [\#4028](https://github.com/primefaces/primereact/issues/4028)
+- Remove GMap and Captcha [\#4025](https://github.com/primefaces/primereact/issues/4025)
+- Core: Deprecated defaultProps still used [\#3786](https://github.com/primefaces/primereact/issues/3786)
+
+**Fixed bugs:**
+
+- DataTable: Export Function Newline Separator [\#4001](https://github.com/primefaces/primereact/issues/4001)
+
+## [9.0.0-rc.1](https://github.com/primefaces/primereact/tree/9.0.0-rc.1) (2023-02-09)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/9.0.0-beta.1...9.0.0-rc.1)
+
+**Breaking Changes:**
+
+- Remove Maps [\#4038](https://github.com/primefaces/primereact/issues/4038)
+- Remove Recaptcha [\#4037](https://github.com/primefaces/primereact/issues/4037)
+
+**Implemented New Features and Enhancements:**
+
+- New Hooks [\#4039](https://github.com/primefaces/primereact/issues/4039)
+
+## [9.0.0-beta.1](https://github.com/primefaces/primereact/tree/9.0.0-beta.1) (2023-01-26)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.7.3...9.0.0-beta.1)
+
+**Breaking Changes:**
+
+- TypeScript: Improve definitions on all components [\#2734](https://github.com/primefaces/primereact/issues/2734)
+
+**Implemented New Features and Enhancements:**
+
+- Autocomplete: disable issue [\#3953](https://github.com/primefaces/primereact/issues/3953)
+- Dropdown button icon [\#3952](https://github.com/primefaces/primereact/issues/3952)
+- Dropdown: support `onClick` event to intercept the event propagation [\#3935](https://github.com/primefaces/primereact/issues/3935)
+- ReCaptcha: Allow for custom URL [\#3921](https://github.com/primefaces/primereact/issues/3921)
+- Sidebar: `dismissible` not working immediately while sidebar is visible [\#3811](https://github.com/primefaces/primereact/issues/3811)
+- Inputs: expose focus\(\) method on all input components [\#3806](https://github.com/primefaces/primereact/issues/3806)
+- FileUpload: Control internal files state [\#3750](https://github.com/primefaces/primereact/issues/3750)
+- Dropdown Item list responsive issue [\#2574](https://github.com/primefaces/primereact/issues/2574)
+- DataTable/TreeTable: stricter generically typed API [\#2523](https://github.com/primefaces/primereact/issues/2523)
+- TreeTable: accessibility improvements for keyboard navigation [\#2153](https://github.com/primefaces/primereact/issues/2153)
+- DataTable features in PickList lists [\#1374](https://github.com/primefaces/primereact/issues/1374)
+
+**Fixed bugs:**
+
+- Calendar: Year incorrectly disabled in navigator view due to minDate [\#3967](https://github.com/primefaces/primereact/issues/3967)
+- InputNumber : In Mobile mode value are getting trigger two times [\#3951](https://github.com/primefaces/primereact/issues/3951)
+- DataTable: CellEdit Filtering and NOT_EQUALS [\#3928](https://github.com/primefaces/primereact/issues/3928)
+- Dialog: breakpoints not working in \ [\#3922](https://github.com/primefaces/primereact/issues/3922)
+- InputNumber: When using the InputNumber with the built in spinner buttons, "onValueChange" is called before "onChange". [\#3913](https://github.com/primefaces/primereact/issues/3913)
+- Chips separator not working on mobile [\#3885](https://github.com/primefaces/primereact/issues/3885)
+- DataTable: Global search won't reset when the field is empty on react 17 [\#3819](https://github.com/primefaces/primereact/issues/3819)
+- DataTable: RowReorder fails in case of pagination on page other than first & last [\#3817](https://github.com/primefaces/primereact/issues/3817)
+- DataTable: 'virtualScroll' + selection [\#3804](https://github.com/primefaces/primereact/issues/3804)
+- DataTable: Error when 'virtualScrollerOptions.showLoader' + 'dataKey' are enabled [\#3803](https://github.com/primefaces/primereact/issues/3803)
+- DataTable: Virtual Scroll with Loading template + frozen columns [\#3800](https://github.com/primefaces/primereact/issues/3800)
+- TreeTable: Error in resize mode expand [\#3796](https://github.com/primefaces/primereact/issues/3796)
+- File Upload: itemTemplate missing props [\#3792](https://github.com/primefaces/primereact/issues/3792)
+- SelectButton: Submit with React Hook Form [\#3790](https://github.com/primefaces/primereact/issues/3790)
+- Calendar: Inline display issue if more than one month [\#3789](https://github.com/primefaces/primereact/issues/3789)
+- DataTable: Edit Programmatic all row cannot read properties of undefined \(reading 'data'\) [\#3783](https://github.com/primefaces/primereact/issues/3783)
+- ConfirmPopup: Using Tag, when popup is dismissed it stops working forever [\#3779](https://github.com/primefaces/primereact/issues/3779)
+- Calendar: Console warning using ParseDateTime [\#3777](https://github.com/primefaces/primereact/issues/3777)
+- Calendar: StepMinute should initialize value [\#3770](https://github.com/primefaces/primereact/issues/3770)
+- ToggleButton: Received `false` for a non-boolean attribute `tabIndex` [\#3768](https://github.com/primefaces/primereact/issues/3768)
+- Hook: useOverlayListener incorrectly passing target [\#3766](https://github.com/primefaces/primereact/issues/3766)
+- SplitButton: className in menu api does not work [\#3757](https://github.com/primefaces/primereact/issues/3757)
+- Password: Eye icon problem in MS Edge and IE [\#3756](https://github.com/primefaces/primereact/issues/3756)
+- Dialog: Unintended margins [\#3755](https://github.com/primefaces/primereact/issues/3755)
+- DataTable: row reordering in lazy mode [\#3618](https://github.com/primefaces/primereact/issues/3618)
+- AutoComplete: space between overlay panel and the component [\#3463](https://github.com/primefaces/primereact/issues/3463)
+- InputStyle gets ignored within overlays bound to body [\#3428](https://github.com/primefaces/primereact/issues/3428)
+- Datatable: Virtualscroll and frozenvalue \(frozen rows\) hide first rows [\#3361](https://github.com/primefaces/primereact/issues/3361)
+- Dropdown: Incorrect flipFit detection when using filter [\#3203](https://github.com/primefaces/primereact/issues/3203)
+- DataTable: Edit Programmatic all row cannot read properties of undefined \(reading 'data'\) [\#3013](https://github.com/primefaces/primereact/issues/3013)
+- Menu: Popup menu positioning - appendTo [\#2980](https://github.com/primefaces/primereact/issues/2980)
+
+## [8.7.3](https://github.com/primefaces/primereact/tree/8.7.3) (2022-12-05)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.7.2...8.7.3)
+
+**Implemented New Features and Enhancements:**
+
+- MultiSelect vs Dropdown has different focus behaviour [\#3721](https://github.com/primefaces/primereact/issues/3721)
+- Datatable: Get the values from the table when the filter is done [\#3720](https://github.com/primefaces/primereact/issues/3720)
+- Carousel: Marquee animation [\#3710](https://github.com/primefaces/primereact/issues/3710)
+- Datatable: onRowMouseEnter callback [\#3703](https://github.com/primefaces/primereact/issues/3703)
+- DataTable: createResponsiveStyle not called on scrollable property change [\#3694](https://github.com/primefaces/primereact/issues/3694)
+- TreeSelect: allow focus in React Hook Form [\#3685](https://github.com/primefaces/primereact/issues/3685)
+- BlockUI: Add `style` and `className` to container [\#3683](https://github.com/primefaces/primereact/issues/3683)
+- Image: imageStyle prop is of type string instead of React.CSSProperties [\#3668](https://github.com/primefaces/primereact/issues/3668)
+- Datatable FilterDisplay as menu: Apply with 'Enter' [\#3655](https://github.com/primefaces/primereact/issues/3655)
+- ColorPicker: Allow to set the panel's className [\#3654](https://github.com/primefaces/primereact/issues/3654)
+- Listbox: Add emptyMessage like in Dropdown [\#3649](https://github.com/primefaces/primereact/issues/3649)
+- Avatar: Fallback to label or icon variant when image loading fails [\#3647](https://github.com/primefaces/primereact/issues/3647)
+- DataTable: RowGrouping Header Template allow control of colspan [\#3643](https://github.com/primefaces/primereact/issues/3643)
+- TreeNode: Add `id` property [\#3616](https://github.com/primefaces/primereact/issues/3616)
+- MultiSelect: not selecting correct value when "options" objects contain property "value" [\#3392](https://github.com/primefaces/primereact/issues/3392)
+- MultiSelect: Add "overlayVisible" property [\#3302](https://github.com/primefaces/primereact/issues/3302)
+- InputNumber just perform the onChange when blur [\#3003](https://github.com/primefaces/primereact/issues/3003)
+- Tooltip: incorrectly positioned [\#2796](https://github.com/primefaces/primereact/issues/2796)
+- MultiSelect: Enable more display options [\#2745](https://github.com/primefaces/primereact/issues/2745)
+- Showcase: Save theme setting in localStorage [\#2671](https://github.com/primefaces/primereact/issues/2671)
+- Tooltip: show at mouse position without following the mouse [\#2588](https://github.com/primefaces/primereact/issues/2588)
+- Multiple groupField issue [\#2333](https://github.com/primefaces/primereact/issues/2333)
+- ContextMenu: Submenu overflowing the page [\#2318](https://github.com/primefaces/primereact/issues/2318)
+- DataTable onRowBlur and onRowMouseLeave events [\#1945](https://github.com/primefaces/primereact/issues/1945)
+- DataTable grouping rows with similar names, more than one field at a time [\#1039](https://github.com/primefaces/primereact/issues/1039)
+- Multi Row Grouping for DataTable [\#728](https://github.com/primefaces/primereact/issues/728)
+
+**Fixed bugs:**
+
+- Slider with range and max=10 - initial right slider position is 1000 [\#3738](https://github.com/primefaces/primereact/issues/3738)
+- Chart initialized in unmounted component [\#3725](https://github.com/primefaces/primereact/issues/3725)
+- Messages/Toast: The messages.current.show\(\[\]\) method causes the browser to crash [\#3716](https://github.com/primefaces/primereact/issues/3716)
+- Core: PrimeReact.nullSortOrder not working correctly [\#3712](https://github.com/primefaces/primereact/issues/3712)
+- Button: Tooltip remains displayed after button is disabled [\#3692](https://github.com/primefaces/primereact/issues/3692)
+- TreeTable: cellClose throwing error [\#3689](https://github.com/primefaces/primereact/issues/3689)
+- Tooltip: Vertical scrollbar appears when tooltip shows the first time [\#3687](https://github.com/primefaces/primereact/issues/3687)
+- Dropdown: Expose focusInputRef for React Hook Form [\#3662](https://github.com/primefaces/primereact/issues/3662)
+- AutoComplete: Reusing references for suggestions prop bug [\#3659](https://github.com/primefaces/primereact/issues/3659)
+- Tristate and Multicheckbox: Unable to change disabled checkbox cursor [\#3641](https://github.com/primefaces/primereact/issues/3641)
+- RadioButton: onChange event is called for each click [\#3636](https://github.com/primefaces/primereact/issues/3636)
+- nmp run dev fails under Linux [\#3631](https://github.com/primefaces/primereact/issues/3631)
+- DataTable: TypeError when adding and starting editing a new row [\#3476](https://github.com/primefaces/primereact/issues/3476)
+- Dialog/Overlay: Flickering in Vite [\#3122](https://github.com/primefaces/primereact/issues/3122)
+- InputNumber: Value typed by the user is not entered, when suffix used [\#3029](https://github.com/primefaces/primereact/issues/3029)
+- TieredMenu: sub-items are not visible when there's not enough space at the bottom [\#2837](https://github.com/primefaces/primereact/issues/2837)
+- InputNumber: input content can desync from value prop after blur [\#2527](https://github.com/primefaces/primereact/issues/2527)
+- DataTable: ContextMenu showcase/theme doesn't highlight selection [\#2526](https://github.com/primefaces/primereact/issues/2526)
+- OrderList: Drag & drop is not working [\#1883](https://github.com/primefaces/primereact/issues/1883)
+- InputNumber: Arrow keys not working properly [\#1866](https://github.com/primefaces/primereact/issues/1866)
+- DataTable: onValueChange not called when setting filter state programmatically [\#1396](https://github.com/primefaces/primereact/issues/1396)
+- Cell editor with sort-filter fails [\#1257](https://github.com/primefaces/primereact/issues/1257)
+- Cell Editor reapplies focus to invalid field [\#1247](https://github.com/primefaces/primereact/issues/1247)
+
+## [8.7.2](https://github.com/primefaces/primereact/tree/8.7.2) (2022-11-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.7.1...8.7.2)
+
+**Implemented New Features and Enhancements:**
+
+- Skeleton: Jest test [\#3603](https://github.com/primefaces/primereact/issues/3603)
+- Avatar/AvatarGroup: Jest test [\#3601](https://github.com/primefaces/primereact/issues/3601)
+- Tag: Jest test [\#3599](https://github.com/primefaces/primereact/issues/3599)
+- InputNumber: Add maxLength Property [\#3595](https://github.com/primefaces/primereact/issues/3595)
+- InputTextarea: Jest Tests [\#3582](https://github.com/primefaces/primereact/issues/3582)
+- InputText: Jest tests [\#3580](https://github.com/primefaces/primereact/issues/3580)
+- Divider: Add jest unit testing to the Divider component [\#3577](https://github.com/primefaces/primereact/issues/3577)
+- InputTextArea: Add KeyFilter [\#3575](https://github.com/primefaces/primereact/issues/3575)
+- InputText/InputTextArea: Typescript won't allow setting `value` [\#3573](https://github.com/primefaces/primereact/issues/3573)
+- Tooltip: Add Jest testing [\#3569](https://github.com/primefaces/primereact/issues/3569)
+- Badge: Add jest unit testing to the Badge component [\#3567](https://github.com/primefaces/primereact/issues/3567)
+- Chip: Add test specifications [\#3557](https://github.com/primefaces/primereact/issues/3557)
+- Column: exportField missing from TypeScript parameters [\#3540](https://github.com/primefaces/primereact/issues/3540)
+- Autocomplete: add selectionLimit [\#2949](https://github.com/primefaces/primereact/issues/2949)
+
+**Fixed bugs:**
+
+- Ripple: Uncaught ReferenceError: isTouching is not defined [\#3593](https://github.com/primefaces/primereact/issues/3593)
+- TieredMenu: Close menu on selection \(like PrimeVue\) [\#3590](https://github.com/primefaces/primereact/issues/3590)
+- Calendar : `keepInvalid` no longer works [\#3559](https://github.com/primefaces/primereact/issues/3559)
+- DataTable : column name with dot [\#3548](https://github.com/primefaces/primereact/issues/3548)
+- Splitter: Error with only 1 panel [\#3546](https://github.com/primefaces/primereact/issues/3546)
+- Calendar: Setting value in range mode [\#3545](https://github.com/primefaces/primereact/issues/3545)
+- TreeTableHeader: Warning: Each child in a list should have a unique "key" prop. [\#3543](https://github.com/primefaces/primereact/issues/3543)
+- Calendar: Changing a value removes the entire value [\#2927](https://github.com/primefaces/primereact/issues/2927)
+
+## [8.7.1](https://github.com/primefaces/primereact/tree/8.7.1)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.7.0...8.7.1)
+
+**Implemented New Features and Enhancements:**
+
+- Image: Update default properties [\#3536](https://github.com/primefaces/primereact/issues/3536)
+- Button: Add test specifications [\#3533](https://github.com/primefaces/primereact/issues/3533)
+- Remove index.d.ts from primereact library [\#3513](https://github.com/primefaces/primereact/issues/3513)
+- Timeline: Add missing type of align as enum. [\#3509](https://github.com/primefaces/primereact/issues/3509)
+
+**Fixed bugs:**
+
+- Splitter: widths provided to SplitterPanel.size are not correctly applied [\#3534](https://github.com/primefaces/primereact/issues/3534)
+- Datatable doesn't render boolean values. [\#3529](https://github.com/primefaces/primereact/issues/3529)
+- Splitter: esm build throws TypeError due to improper use of const in a for loop [\#3527](https://github.com/primefaces/primereact/issues/3527)
+- Ripple: ripple start point is not init in mobile env [\#3526](https://github.com/primefaces/primereact/issues/3526)
+- Calendar: Inconsistent behaviour around viewDate and changed value. [\#3516](https://github.com/primefaces/primereact/issues/3516)
+- Calendar: Value does not update on external change [\#3515](https://github.com/primefaces/primereact/issues/3515)
+- tabIndex prop can be optional on Accordion [\#3512](https://github.com/primefaces/primereact/issues/3512)
+- Toast: non-responsive toast [\#3498](https://github.com/primefaces/primereact/issues/3498)
+
+## [8.7.0](https://github.com/primefaces/primereact/tree/8.7.0)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.6.1...8.7.0)
+
+**Implemented New Features and Enhancements:**
+
+- Paginator: `PaginatorTemplateOptions` interface elements should be optional \(TypeScript\) [\#3503](https://github.com/primefaces/primereact/issues/3503)
+- Tooltip: programmatic control show/hide [\#3500](https://github.com/primefaces/primereact/issues/3500)
+- Button: Ripple animation missing on touch down [\#3497](https://github.com/primefaces/primereact/issues/3497)
+- Calendar : Does not detection changes value in footer template [\#3484](https://github.com/primefaces/primereact/issues/3484)
+- Splitter: Non optimal handling of splitter sizing [\#3483](https://github.com/primefaces/primereact/issues/3483)
+- Core: Add Jest unit tests [\#3477](https://github.com/primefaces/primereact/issues/3477)
+- Toast: Delete Toast by Id [\#3455](https://github.com/primefaces/primereact/issues/3455)
+- Editor: respect maxLength property [\#3454](https://github.com/primefaces/primereact/issues/3454)
+- Implement the new PRO Support Page [\#3449](https://github.com/primefaces/primereact/issues/3449)
+- TypeScript: All `style` declarations should be `React.CSSProperties` [\#3440](https://github.com/primefaces/primereact/issues/3440)
+- Progressbar: Dynamic ProgressBar [\#3433](https://github.com/primefaces/primereact/issues/3433)
+- MultiSelect: Allow primitives in filter [\#3420](https://github.com/primefaces/primereact/issues/3420)
+- SlideMenu: Pass information about levelState [\#3407](https://github.com/primefaces/primereact/issues/3407)
+- SlideMenu: Issue with scrollbar [\#3398](https://github.com/primefaces/primereact/issues/3398)
+- SlideMenu: Add navigateBack to ref [\#3397](https://github.com/primefaces/primereact/issues/3397)
+- Image: Allow `zoomSrc` different than `src` [\#3390](https://github.com/primefaces/primereact/issues/3390)
+- Autocomplete: show\(\) and hide\(\) missing in ref [\#3387](https://github.com/primefaces/primereact/issues/3387)
+- DataTable: Expose restoreColumnWidths+ in ref [\#3384](https://github.com/primefaces/primereact/issues/3384)
+- Calendar: Overwrite formatDateTime and parseDateTime functions [\#3381](https://github.com/primefaces/primereact/issues/3381)
+- Data Attribute: Fix \#3321 [\#3378](https://github.com/primefaces/primereact/issues/3378)
+- DataTable: crash during third party drag and drop handling [\#3376](https://github.com/primefaces/primereact/issues/3376)
+- Filters: Allow filters on primitive arrays [\#3375](https://github.com/primefaces/primereact/issues/3375)
+- Column: Add tooltip to header [\#3368](https://github.com/primefaces/primereact/issues/3368)
+- Paginator: RowsPerPageDropdown fix ARIA label [\#3365](https://github.com/primefaces/primereact/issues/3365)
+- Toast: Pin a specific message on User Click [\#3260](https://github.com/primefaces/primereact/issues/3260)
+- Column: bodyClassName could accept a function with the corresponding DataTable value as a param, returning a string [\#3215](https://github.com/primefaces/primereact/issues/3215)
+- DataTable: Custom expander according to the rowData [\#2918](https://github.com/primefaces/primereact/issues/2918)
+- DataTable/TreeTable: global filter customization [\#1450](https://github.com/primefaces/primereact/issues/1450)
+- Calendar using locale date format [\#993](https://github.com/primefaces/primereact/issues/993)
+- Support custom date format function for the input element [\#852](https://github.com/primefaces/primereact/issues/852)
+
+**Fixed bugs:**
+
+- CONTRIBUTING: Fix forum URL [\#3492](https://github.com/primefaces/primereact/issues/3492)
+- DataTable: in controlled pagination mode onPage always called initially with first=0 [\#3489](https://github.com/primefaces/primereact/issues/3489)
+- Calendar: Year selection ignores maxDate [\#3488](https://github.com/primefaces/primereact/issues/3488)
+- TabView: Missing onKeyDown in header template [\#3479](https://github.com/primefaces/primereact/issues/3479)
+- Column: onCellEditComplete incorrect Typescript def [\#3469](https://github.com/primefaces/primereact/issues/3469)
+- AutoComplete: Missing dropdownAriaLabel property [\#3467](https://github.com/primefaces/primereact/issues/3467)
+- Mention: Some properties doesn't exist on type [\#3461](https://github.com/primefaces/primereact/issues/3461)
+- Button: getElement is undefined [\#3453](https://github.com/primefaces/primereact/issues/3453)
+- Dialog - Maximizable [\#3432](https://github.com/primefaces/primereact/issues/3432)
+- DataTable: Filter is not matching using globalFilter attribute [\#3430](https://github.com/primefaces/primereact/issues/3430)
+- InputNumber: Typing the minus sign at the start of the number does not work the first time [\#3426](https://github.com/primefaces/primereact/issues/3426)
+- Autocomplete: readOnly not working when 'multiple' prop is set [\#3423](https://github.com/primefaces/primereact/issues/3423)
+- Mention: Some properties doesn't exist on type [\#3419](https://github.com/primefaces/primereact/issues/3419)
+- Splitter state is not saved in StrictMode [\#3413](https://github.com/primefaces/primereact/issues/3413)
+- Dock: Showcase example broken [\#3393](https://github.com/primefaces/primereact/issues/3393)
+- Datatable: onSelectionChange event returns wrong rowIndex with shiftKey selection [\#3388](https://github.com/primefaces/primereact/issues/3388)
+- Button: bad rendering for button with icon and children [\#3382](https://github.com/primefaces/primereact/issues/3382)
+- DataTable: custom filter icon is not updating [\#3373](https://github.com/primefaces/primereact/issues/3373)
+- Gallaria: localeOption is not defined. Bug introduced in 8.6.0 [\#3370](https://github.com/primefaces/primereact/issues/3370)
+- Toast: Close button decreases as size increases [\#3116](https://github.com/primefaces/primereact/issues/3116)
+- Datatable: globalFilter option triggered with old value [\#2996](https://github.com/primefaces/primereact/issues/2996)
+- DataScroller: "first" is always 0 on OnLazyLoad [\#2987](https://github.com/primefaces/primereact/issues/2987)
+- AccordionTab: keyboard navigation not working when inside a Dialog [\#2864](https://github.com/primefaces/primereact/issues/2864)
+- InputNumber: delete numbers with decimal mode - bug [\#2677](https://github.com/primefaces/primereact/issues/2677)
+
+## [8.6.1](https://github.com/primefaces/primereact/tree/8.6.1) (2022-09-25)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.6.0...8.6.1)
+
+**Fixed bugs:**
+
+- Material Theme breaks in some components [\#3364](https://github.com/primefaces/primereact/issues/3364)
+- TreeTable filter behavior is not consistent between global and local filtering when using filterMatchMode `contains` [\#1288](https://github.com/primefaces/primereact/issues/1288)
+
+## [8.6.0](https://github.com/primefaces/primereact/tree/8.6.0) (2022-09-23)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.5.0...8.6.0)
+
+**Breaking Changes:**
+
+- Add data and multiSortMeta options to sortFunction on DataTable [\#3352](https://github.com/primefaces/primereact/issues/3352)
+- FullCalendar: Remove [\#3344](https://github.com/primefaces/primereact/issues/3344)
+
+**Implemented New Features and Enhancements:**
+
+- PrimeIcons: Update to v6 [\#3347](https://github.com/primefaces/primereact/issues/3347)
+- Knob/Rating/TriStateCheckbox: Ref Type Incompatibility [\#3334](https://github.com/primefaces/primereact/issues/3334)
+- Datatable: Add Typescript SortOrder constants [\#3327](https://github.com/primefaces/primereact/issues/3327)
+- InputNumber: missing data attribute [\#3321](https://github.com/primefaces/primereact/issues/3321)
+- Dropdown: Support aria-describedby [\#3319](https://github.com/primefaces/primereact/issues/3319)
+- TabView: Add 'beforeTabClose' event [\#3312](https://github.com/primefaces/primereact/issues/3312)
+- Datatable: Remove Expanded 'td' element returned with 'tr' [\#3310](https://github.com/primefaces/primereact/issues/3310)
+- ARIA: Standardize expand/collapse labels [\#3292](https://github.com/primefaces/primereact/issues/3292)
+- Password: Add KeyFilter [\#3290](https://github.com/primefaces/primereact/issues/3290)
+- TypeScript: Add index.d.ts to main libary [\#3288](https://github.com/primefaces/primereact/issues/3288)
+- ARIA: Standardize close/clear button labels [\#3280](https://github.com/primefaces/primereact/issues/3280)
+- Strange logging when linting [\#3277](https://github.com/primefaces/primereact/issues/3277)
+- AutoComplete: Accessibility Improvement [\#3275](https://github.com/primefaces/primereact/issues/3275)
+- Toast: Pause / resume timeout if hovered [\#3272](https://github.com/primefaces/primereact/issues/3272)
+- Accordion: No id causes remounting of AccordionTabs. [\#3270](https://github.com/primefaces/primereact/issues/3270)
+- DataTable: Aria-label issues [\#3263](https://github.com/primefaces/primereact/issues/3263)
+- TabView: allow aria-label attribute for scrollable buttons [\#3259](https://github.com/primefaces/primereact/issues/3259)
+- SpeedDial: allow aria-label attribute [\#3254](https://github.com/primefaces/primereact/issues/3254)
+- AutoComplete: Add EmptyMessage property [\#3244](https://github.com/primefaces/primereact/issues/3244)
+- Password: Add same color to label of password info [\#2913](https://github.com/primefaces/primereact/issues/2913)
+- TreeTable/DataTable: Callback similar to onFilter for global search [\#2028](https://github.com/primefaces/primereact/issues/2028)
+- Additional props for keyboard helpers \(input components with "hidden accessible" elements\) [\#1852](https://github.com/primefaces/primereact/issues/1852)
+- DataTable RowCheckbox/RowRadioButton input lacks title, label or aria attributes [\#1178](https://github.com/primefaces/primereact/issues/1178)
+- Allow aria-label and aria-labelledby attributes on all input components. [\#839](https://github.com/primefaces/primereact/issues/839)
+
+**Fixed bugs:**
+
+- SortFunction throws a exception on DataTable [\#3353](https://github.com/primefaces/primereact/issues/3353)
+- DataTable: error occurs when the field corresponding to the column is an Map, and the editor is not specified [\#3332](https://github.com/primefaces/primereact/issues/3332)
+- Dialog: Restore dialog size after maximize it close dialog keeping modal background active [\#3331](https://github.com/primefaces/primereact/issues/3331)
+- Editor: Ref Type Incompatibility [\#3329](https://github.com/primefaces/primereact/issues/3329)
+- Calendar: viewStateChanged minor bug [\#3315](https://github.com/primefaces/primereact/issues/3315)
+- DataTable: Multiple sorting with Date field as first sort [\#3284](https://github.com/primefaces/primereact/issues/3284)
+- Calendar \> When set two times value, calendar view is not updated [\#3258](https://github.com/primefaces/primereact/issues/3258)
+- Dialog: Focus trap issue with multiple dialogs [\#3256](https://github.com/primefaces/primereact/issues/3256)
+- InputTextarea: wrong ref type [\#3252](https://github.com/primefaces/primereact/issues/3252)
+- Toast/Messages: Replace method is broken in 8.5.0 [\#3250](https://github.com/primefaces/primereact/issues/3250)
+- ScrollPanel: Cannot scroll inside dialog [\#3171](https://github.com/primefaces/primereact/issues/3171)
+
+## [8.5.0](https://github.com/primefaces/primereact/tree/8.5.0) (2022-09-07)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.4.0...8.5.0)
+
+**Implemented New Features and Enhancements:**
+
+- Tooltip: Both 'focus' and 'hover' events cannot be set at the same time [\#3241](https://github.com/primefaces/primereact/issues/3241)
+- Carousel : Add new showIndicators/showNavigators attributes [\#3232](https://github.com/primefaces/primereact/issues/3232)
+- Checkbox/RadioButton: No support for selecting option with keyboard [\#3221](https://github.com/primefaces/primereact/issues/3221)
+- Rating: Add icon templates [\#3219](https://github.com/primefaces/primereact/issues/3219)
+- Message: Override Icon using icon attribute [\#3196](https://github.com/primefaces/primereact/issues/3196)
+- Button: Add visible property to remove from DOM [\#3193](https://github.com/primefaces/primereact/issues/3193)
+- Keyfilter: refactor to use event.key [\#3189](https://github.com/primefaces/primereact/issues/3189)
+- Add prettier to standardize formatting [\#3188](https://github.com/primefaces/primereact/issues/3188)
+- FileUpload: Access to files in the FileUpload Component [\#3174](https://github.com/primefaces/primereact/issues/3174)
+- MenuModel property for visibility like in Vue [\#3169](https://github.com/primefaces/primereact/issues/3169)
+- TreeSelect: Add collapseAll and expandAll methods [\#2964](https://github.com/primefaces/primereact/issues/2964)
+
+**Fixed bugs:**
+
+- Column: ColumnBodyRowEditorOptions type is missing "element" in type definition [\#3245](https://github.com/primefaces/primereact/issues/3245)
+- ConfirmPopup: dismissable property not working [\#3233](https://github.com/primefaces/primereact/issues/3233)
+- Split Button throws error when expanding the menu. [\#3228](https://github.com/primefaces/primereact/issues/3228)
+- RadioButton/Checkbox: label no longer works to select item [\#3220](https://github.com/primefaces/primereact/issues/3220)
+- Toast: Allow us to specify our own ids for each ToastMessage [\#3209](https://github.com/primefaces/primereact/issues/3209)
+- ConfirmPopup: Сomponent is not hidden when using the hide function [\#3202](https://github.com/primefaces/primereact/issues/3202)
+- ConfirmDialog and ConfirmPopup: onHide event bug [\#3197](https://github.com/primefaces/primereact/issues/3197)
+- Calendar: monthpicker disabled using min/max [\#3192](https://github.com/primefaces/primereact/issues/3192)
+- Menubar: hide menu if no items in model [\#3190](https://github.com/primefaces/primereact/issues/3190)
+- Dialog: Responsive breakpoints no longer working [\#3184](https://github.com/primefaces/primereact/issues/3184)
+- Animation of the floating label doesn't work in Chips [\#3181](https://github.com/primefaces/primereact/issues/3181)
+- Dropdown: Unmounting focused dropdown throws TypeError [\#3179](https://github.com/primefaces/primereact/issues/3179)
+- InputTextarea: wrong ref type [\#3172](https://github.com/primefaces/primereact/issues/3172)
+- Dialog: blockScroll not working [\#3166](https://github.com/primefaces/primereact/issues/3166)
+- Dialog: Flickering [\#3122](https://github.com/primefaces/primereact/issues/3122)
+- AutoComplete: shows "\[object Object\]" if value object instance is not one of suggestions [\#1392](https://github.com/primefaces/primereact/issues/1392)
+- Messages: Add content to TypeScript [\#3246](https://github.com/primefaces/primereact/issues/3246)
+- FileUpload: Fix TypeScript FileUploadSelectParams [\#3235](https://github.com/primefaces/primereact/issues/3235)
+
+## [8.4.0](https://github.com/primefaces/primereact/tree/8.4.0) (2022-08-22)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.3.0...8.4.0)
+
+**Implemented New Features and Enhancements:**
+
+- FileUpload: Needed Event: onBeforeSelect [\#3134](https://github.com/primefaces/primereact/issues/3134)
+- DataTable: Add setting to sort null records at the beginning when in ascending order like old versions of PrimeReact [\#3114](https://github.com/primefaces/primereact/issues/3114)
+
+**Fixed bugs:**
+
+- Dialog: blockScroll not working [\#3166](https://github.com/primefaces/primereact/issues/3166)
+- InputNumber: getInput\(\) returns the wrong reference [\#3161](https://github.com/primefaces/primereact/issues/3161)
+- Calendar: does not change "view" dynamicly [\#3153](https://github.com/primefaces/primereact/issues/3153)
+- DataTable.restoreTableState does not restore column width [\#3150](https://github.com/primefaces/primereact/issues/3150)
+- RadioButton/Checkbox: onChange event is called for each click [\#3148](https://github.com/primefaces/primereact/issues/3148)
+- PickList - Selection Change properties throw errors [\#3147](https://github.com/primefaces/primereact/issues/3147)
+- Calendar: Min/Max fixes ported from PrimeFaces [\#3125](https://github.com/primefaces/primereact/issues/3125)
+- Calendar: TouchUI dismissal issues [\#3111](https://github.com/primefaces/primereact/issues/3111)
+- InputNumber: Tab does not fire update events, meaning inputNumbers do not call callbacks in datatables [\#3109](https://github.com/primefaces/primereact/issues/3109)
+- Tree: Custom filter broken due to overwritten props in useImperativeHandle hook. [\#3107](https://github.com/primefaces/primereact/issues/3107)
+- Chips: keyfilter [\#3100](https://github.com/primefaces/primereact/issues/3100)
+- Editor: Explicit import of quill.js dependency doesn't allow for single pages with inline scripting [\#3097](https://github.com/primefaces/primereact/issues/3097)
+- Dropdown: Required attribute doesn't work [\#3092](https://github.com/primefaces/primereact/issues/3092)
+- TreeSelect: props.panelFooterTemplate doesn't work [\#3088](https://github.com/primefaces/primereact/issues/3088)
+- Tooltip: If the mouse hover ends before showDelay is reached, then the tooltip won't go away. [\#3083](https://github.com/primefaces/primereact/issues/3083)
+- Mention, InputText, InputTextArea and Password do not maintain p-filled properly [\#3081](https://github.com/primefaces/primereact/issues/3081)
+- StyleClass: Bug with "position: fixed" on chromium family only, firefox works OK [\#3080](https://github.com/primefaces/primereact/issues/3080)
+- OverlayPanel: Dismissable is ignored [\#3070](https://github.com/primefaces/primereact/issues/3070)
+- FileUpload: Ability to add file from variable [\#3044](https://github.com/primefaces/primereact/issues/3044)
+- Editor: 'Maximum update depth exceeded' on pasting formatted text [\#2271](https://github.com/primefaces/primereact/issues/2271)
+- Dropdown: Wrong event value on OnBlur [\#2224](https://github.com/primefaces/primereact/issues/2224)
+- Dropdown: search functionality can't find item starting with "+" key [\#2202](https://github.com/primefaces/primereact/issues/2202)
+
+## [8.3.0](https://github.com/primefaces/primereact/tree/8.3.0) (2022-07-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.2.0...8.3.0)
+
+**Implemented New Features and Enhancements:**
+
+- Charts: Explicit import of chart.js dependency doesn't allow for single pages with inline scripting [\#3059](https://github.com/primefaces/primereact/issues/3059)
+- FilterTemplate support for components [\#3039](https://github.com/primefaces/primereact/issues/3039)
+
+**Fixed bugs:**
+
+- maxDate & minDate are broken in month-picker on Calendar [\#3076](https://github.com/primefaces/primereact/issues/3076)
+- Chips: UX issue [\#3072](https://github.com/primefaces/primereact/issues/3072)
+- Tooltip: positioned incorrectly in React 18 [\#3065](https://github.com/primefaces/primereact/issues/3065)
+- Calendar: decade selection can't be changed [\#3064](https://github.com/primefaces/primereact/issues/3064)
+- ConfirmDialog: mismatch in new version [\#3063](https://github.com/primefaces/primereact/issues/3063)
+- Calendar triggers onChange event twice when typing in React 18 Strict Mode [\#3062](https://github.com/primefaces/primereact/issues/3062)
+- Tag/Badge: SeverityType incorrect [\#3056](https://github.com/primefaces/primereact/issues/3056)
+- Checkbox/RadioButton: stops working in labels [\#3054](https://github.com/primefaces/primereact/issues/3054)
+- DataTable: Checkbox Row Selection and VirtualScroller not working simultaneously [\#3053](https://github.com/primefaces/primereact/issues/3053)
+- Datatable: Filter icon gets highlighted without even applying the filter [\#3051](https://github.com/primefaces/primereact/issues/3051)
+- SplitButton: TypeScript Error "Cannot Find Name 'ButtonProps'" [\#3048](https://github.com/primefaces/primereact/issues/3048)
+- DataTable: DataTable row reorder is not working [\#3046](https://github.com/primefaces/primereact/issues/3046)
+- FileUpload: ref property does not show all the props [\#3045](https://github.com/primefaces/primereact/issues/3045)
+- Dropdown: hard to identify error on non matching label [\#3038](https://github.com/primefaces/primereact/issues/3038)
+- DataTable: custom filter icon is not updating [\#2976](https://github.com/primefaces/primereact/issues/2976)
+- Components: Cannot access ref [\#2963](https://github.com/primefaces/primereact/issues/2963)
+- InputNumber : Id not available in the OnChange [\#2908](https://github.com/primefaces/primereact/issues/2908)
+- Hooks: useImperativeHandle is preventing the default behaviour of useRef hook [\#2893](https://github.com/primefaces/primereact/issues/2893)
+- DataTable ignores sortFunction and sortField for initial sorting [\#2514](https://github.com/primefaces/primereact/issues/2514)
+
+## [8.2.0](https://github.com/primefaces/primereact/tree/8.2.0) (2022-07-06)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.1.1...8.2.0)
+
+**Implemented New Features and Enhancements:**
+
+- Improve virtualScroller implementation on components [\#3037](https://github.com/primefaces/primereact/issues/3037)
+- Add autoSize, resizeDelay and loaderIconTemplate properties to VirtualScroller [\#3036](https://github.com/primefaces/primereact/issues/3036)
+- Add filter feature to PickList [\#3035](https://github.com/primefaces/primereact/issues/3035)
+- Autocomplete: Submit form when hitting enter on input field [\#3033](https://github.com/primefaces/primereact/issues/3033)
+- Image: Add 'onError' property [\#3031](https://github.com/primefaces/primereact/issues/3031)
+- DataTable: Incorrect order by ASC \(empty values are at the beginning\) [\#3023](https://github.com/primefaces/primereact/issues/3023)
+- Placeholder for float label inputs [\#3020](https://github.com/primefaces/primereact/issues/3020)
+- Datatable: Can not get table data for Column sortFunction and sortFunction calls only by click in header [\#3019](https://github.com/primefaces/primereact/issues/3019)
+- Add color-scheme style to Themes [\#3010](https://github.com/primefaces/primereact/issues/3010)
+- Datatable: Add reference to virtualScroller [\#3009](https://github.com/primefaces/primereact/issues/3009)
+- Splitter: should support dynamic size prop [\#3006](https://github.com/primefaces/primereact/issues/3006)
+- SplitButton: "loading" and "loadingIcon" [\#2995](https://github.com/primefaces/primereact/issues/2995)
+- InputMask: Remove `inputRef` for just normal `ref` [\#2971](https://github.com/primefaces/primereact/issues/2971)
+- Add id option to MenuItem API [\#2914](https://github.com/primefaces/primereact/issues/2914)
+- Improve p-invalid class for InputSwitch [\#2909](https://github.com/primefaces/primereact/issues/2909)
+- MegaMenu: Start and End templates like MenuBar [\#2808](https://github.com/primefaces/primereact/issues/2808)
+- Chips: Add onKeyDown and KeyFilter [\#2797](https://github.com/primefaces/primereact/issues/2797)
+- Calendar: shows future and/or past dates even when minDate and/or maxDate props are set [\#1661](https://github.com/primefaces/primereact/issues/1661)
+
+**Fixed bugs:**
+
+- Restrict Toast/Message SeverityType to the only four valid values [\#3021](https://github.com/primefaces/primereact/issues/3021)
+- InputMask: Initial value not displayed when inside \ in React 18 [\#3016](https://github.com/primefaces/primereact/issues/3016)
+- Tree: Can't switch between nodes with arrow up and arrow down keys if drag feature is enabled [\#3004](https://github.com/primefaces/primereact/issues/3004)
+- Editor/Charts: not usable with parceljs [\#2999](https://github.com/primefaces/primereact/issues/2999)
+- Badge: 0 as a value passed to a badge does not render properly [\#2997](https://github.com/primefaces/primereact/issues/2997)
+- Dialog bottom has no border radius when footer does not exist [\#2990](https://github.com/primefaces/primereact/issues/2990)
+- Dialog: Scrolling remains disabled for document even after dialog unmount [\#2981](https://github.com/primefaces/primereact/issues/2981)
+- DataTable: Scrollable headers out of sync on column resize [\#2978](https://github.com/primefaces/primereact/issues/2978)
+- MultiSelect treats a value of zero for maxSelectedLabels as null [\#2966](https://github.com/primefaces/primereact/issues/2966)
+- Calendar: After selecting Today from ButtonBar, Year is not set to current year [\#2961](https://github.com/primefaces/primereact/issues/2961)
+- Image: Preview mode do not hide buttons [\#2957](https://github.com/primefaces/primereact/issues/2957)
+- ConfirmationDialog: throws TS error in prod build [\#2953](https://github.com/primefaces/primereact/issues/2953)
+- Calendar: Selection Month DropDown Item at Index 1 for the first time, Selects Item at Index 2 [\#2948](https://github.com/primefaces/primereact/issues/2948)
+- Global Tooltip is not working with data-pr-classname [\#2946](https://github.com/primefaces/primereact/issues/2946)
+- DataTable with custom footer cell throws a JS exception [\#2943](https://github.com/primefaces/primereact/issues/2943)
+- DataTable: RowReorder handle displayed when table is not set for reordering [\#2935](https://github.com/primefaces/primereact/issues/2935)
+- When Toast component is closed, its zIndex does not clear. [\#2928](https://github.com/primefaces/primereact/issues/2928)
+- Toast: Long text does not display correctly [\#2926](https://github.com/primefaces/primereact/issues/2926)
+- Messages/Toast: fix/add replace\(newMessages\) method [\#2925](https://github.com/primefaces/primereact/issues/2925)
+- Frozen columns and non-frozen columns can be reordered with each other in DataTable [\#2923](https://github.com/primefaces/primereact/issues/2923)
+- FloatLabel: Incorrect position when using browser autofill [\#2921](https://github.com/primefaces/primereact/issues/2921)
+- Avatar: Wrong priority [\#2919](https://github.com/primefaces/primereact/issues/2919)
+- The default selected item does not appear in the view on VirtualScroller Listbox [\#2915](https://github.com/primefaces/primereact/issues/2915)
+- Inplace: Initial state not reflected when active is provided as true [\#2904](https://github.com/primefaces/primereact/issues/2904)
+- Tooltip: data-pr-position doesn't change where the tooltip goes [\#2878](https://github.com/primefaces/primereact/issues/2878)
+- DataTable: Filter Menu not displayed when inside \ in React 18 [\#2777](https://github.com/primefaces/primereact/issues/2777)
+- Calendar: Does not respect minDate in format 12h with timeOnly=true. [\#2607](https://github.com/primefaces/primereact/issues/2607)
+- DataTable with scrollHeight="flex" and virtualScrollerOptions shows nothing [\#2531](https://github.com/primefaces/primereact/issues/2531)
+- DataTable resize visual bugs [\#2433](https://github.com/primefaces/primereact/issues/2433)
+- Calendar triggers onChange event twice when mask property is set [\#2018](https://github.com/primefaces/primereact/issues/2018)
+- Checkbox/Radio: Do not scroll page on click [\#1879](https://github.com/primefaces/primereact/issues/1879)
+
+## [8.1.1](https://github.com/primefaces/primereact/tree/8.1.1) (2022-05-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.1.0...8.1.1)
+
+**Implemented New Features and Enhancements:**
+
+- Hooks: useStorage hook multi tab awareness [\#2887](https://github.com/primefaces/primereact/issues/2887)
+
+**Fixed bugs:**
+
+- The headerStyle and headerClassName are not applied to the Dialog [\#2905](https://github.com/primefaces/primereact/issues/2905)
+- StyleClass is not working as expected on PrimeBlocks pages [\#2900](https://github.com/primefaces/primereact/issues/2900)
+- Dropdown: Causes horizontal scroll to align with multiselect option panel when opening panel when an item is selected [\#2898](https://github.com/primefaces/primereact/issues/2898)
+- Autocomplete: Virtual Scroller incompatible with arrow keys navigation [\#2894](https://github.com/primefaces/primereact/issues/2894)
+- Autocomplete: Virtual Scroller incompatible with autoHighlight [\#2891](https://github.com/primefaces/primereact/issues/2891)
+- TreeTable: resizeableColumns stopped working in 8.1 [\#2889](https://github.com/primefaces/primereact/issues/2889)
+- TreeTableProps: type error in treetable.d.ts file [\#2881](https://github.com/primefaces/primereact/issues/2881)
+- Calendar: footer is displayed above year and month picker panels [\#2880](https://github.com/primefaces/primereact/issues/2880)
+
+## [8.1.0](https://github.com/primefaces/primereact/tree/8.1.0) (2022-05-12)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.0.0...8.1.0)
+
+**Implemented New Features and Enhancements:**
+
+- Paginator: Accessible buttons [\#2827](https://github.com/primefaces/primereact/issues/2827)
+- FileUpload: Validate files before adding on drop [\#2690](https://github.com/primefaces/primereact/issues/2690)
+- PickList : Add itemTemplate for target and source lists [\#2606](https://github.com/primefaces/primereact/issues/2606)
+- Breadcrumb: home icon is not acccessible [\#2226](https://github.com/primefaces/primereact/issues/2226)
+- DataTable : Edit, save and cancel button do not have accessible names [\#2128](https://github.com/primefaces/primereact/issues/2128)
+- SlideMenu: Performance enhancement [\#2060](https://github.com/primefaces/primereact/issues/2060)
+- Dropdown: once focused to the field Enter key is not displaying list [\#1929](https://github.com/primefaces/primereact/issues/1929)
+- DataTable: drop p-resizable-column for expander columns [\#1862](https://github.com/primefaces/primereact/issues/1862)
+- FileUpload: Disable buttons while uploading [\#1525](https://github.com/primefaces/primereact/issues/1525)
+- Carousel: Improve button accessibility [\#1432](https://github.com/primefaces/primereact/issues/1432)
+- Column: resizable/reorderable for individual column level [\#1367](https://github.com/primefaces/primereact/issues/1367)
+
+**Fixed bugs:**
+
+- Datatable: reorderableColumns isn't working [\#2784](https://github.com/primefaces/primereact/issues/2784)
+- InputSwitch: InputSwitchProps says incompatible type [\#2876](https://github.com/primefaces/primereact/issues/2876)
+- StyleClass: may fail to enter the element [\#2873](https://github.com/primefaces/primereact/issues/2873)
+- TreeTable: column parameter not passed to ColumnBodyOptions [\#2870](https://github.com/primefaces/primereact/issues/2870)
+- \[v8\] Importing CSS omitted from bundle when using import syntax [\#2868](https://github.com/primefaces/primereact/issues/2868)
+- Paginator: Wrong check triggers on example [\#2866](https://github.com/primefaces/primereact/issues/2866)
+- Header elements in DataTable with virtualScroller are not in the correct position on the scroll. [\#2861](https://github.com/primefaces/primereact/issues/2861)
+- MultiSelect: Does not properly filter with groups if not using children name "items" [\#2856](https://github.com/primefaces/primereact/issues/2856)
+- MultiSelect: Causes horizontal scroll to align with multiselect option panel when opening panel when an item is selected [\#2855](https://github.com/primefaces/primereact/issues/2855)
+- OverlayPanel: breakpoints property breaks app [\#2852](https://github.com/primefaces/primereact/issues/2852)
+- InputNumber: Touch and hold button spin doesn't work on iOS browser [\#2849](https://github.com/primefaces/primereact/issues/2849)
+- Calendar: Wrong month names in multiple months view [\#2845](https://github.com/primefaces/primereact/issues/2845)
+- Calendar: wrong typing for onClick event of navigatorTemplate [\#2844](https://github.com/primefaces/primereact/issues/2844)
+- InputNumber: On mobile, the focus on input makes using increment / decrement buttons difficult [\#2843](https://github.com/primefaces/primereact/issues/2843)
+- FileUploader: Converts event.files into SyntheticBaseEvent when in advanced mode [\#2836](https://github.com/primefaces/primereact/issues/2836)
+- Splitter: Changed behavior in 8.x, when more than two panels are are used [\#2830](https://github.com/primefaces/primereact/issues/2830)
+- DataTable: Custom sort functions throw errors in single sort mode [\#2821](https://github.com/primefaces/primereact/issues/2821)
+- ARIA: Lint Failures [\#2819](https://github.com/primefaces/primereact/issues/2819)
+- Carousel: Display issues when loading less items that the allocated slots [\#2814](https://github.com/primefaces/primereact/issues/2814)
+- PanelMenu: is closing and opening again when menu is reloaded [\#2804](https://github.com/primefaces/primereact/issues/2804)
+- FileUpload when multiple false, can still add more than 1 file [\#2792](https://github.com/primefaces/primereact/issues/2792)
+- FileUpload: removing the "multiple" tag drag and drop [\#2782](https://github.com/primefaces/primereact/issues/2782)
+- Checkbox does not work as expected when pressing the space key [\#2781](https://github.com/primefaces/primereact/issues/2781)
+- Calendar's navigator template onChange param not working [\#2646](https://github.com/primefaces/primereact/issues/2646)
+- Drag & drop is not working on FileUploader when multiple is false [\#2624](https://github.com/primefaces/primereact/issues/2624)
+- CascadeSelect shows nothing on selection if optionValue is given [\#2601](https://github.com/primefaces/primereact/issues/2601)
+
+## [8.0.1](https://github.com/primefaces/primereact/tree/8.0.1) (2022-04-26)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.0.0...8.0.1)
+
+**Fixed bugs:**
+
+- Datatable: reorderableColumns isn't working [\#2784](https://github.com/primefaces/primereact/issues/2784)
+
+## [8.0.0](https://github.com/primefaces/primereact/tree/8.0.0)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.0.0-rc.2...8.0.0)
+
+**Implemented New Features and Enhancements:**
+
+- Hooks: add useStorage hook [\#2773](https://github.com/primefaces/primereact/issues/2773)
+- Chips onAdd should check Input before added to value list [\#2232](https://github.com/primefaces/primereact/issues/2232)
+
+**Fixed bugs:**
+
+- Carousel v8.0.0-rc.2 Data and Navigation Unusable [\#2769](https://github.com/primefaces/primereact/issues/2769)
+- Calendar: onMonthChange is marked as required [\#2767](https://github.com/primefaces/primereact/issues/2767)
+- TreeSelect onSelect/onNodeUnselect wrong types and not firing [\#2768](https://github.com/primefaces/primereact/issues/2768)
+
+## [8.0.0-rc.2](https://github.com/primefaces/primereact/tree/8.0.0-rc.2) (2022-04-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/8.0.0-rc.1...8.0.0-rc.2)
+
+**Implemented New Features and Enhancements:**
+
+- Calendar - Year and month picker enhancement [\#2748](https://github.com/primefaces/primereact/issues/2748)
+- Add icon template to Menu components [\#2733](https://github.com/primefaces/primereact/issues/2733)
+- Toast - Clear and then show doesn't clear existing messages [\#2668](https://github.com/primefaces/primereact/issues/2668)
+- No default jsDelivr CDN file set [\#1426](https://github.com/primefaces/primereact/issues/1426)
+
+**Fixed bugs:**
+
+- TreeSelect - problem with scroll jumping [\#2752](https://github.com/primefaces/primereact/issues/2752)
+- If the item's className option is null, Dropdown will throw a JS exception. [\#2749](https://github.com/primefaces/primereact/issues/2749)
+- Dialog typescript error [\#2747](https://github.com/primefaces/primereact/issues/2747)
+- Accordion Multiple Tabs Opened [\#2739](https://github.com/primefaces/primereact/issues/2739)
+- Dropdown throws a JS exception related to searchIndex [\#2737](https://github.com/primefaces/primereact/issues/2737)
+- Attribute 'children' is missing in primereact 8.0.0-rc.1 [\#2732](https://github.com/primefaces/primereact/issues/2732)
+- InputNumber crash on onInputBlur [\#2729](https://github.com/primefaces/primereact/issues/2729)
+- Cannot edit DataTable row with the pencil button when onRowEditChange is set [\#2726](https://github.com/primefaces/primereact/issues/2726)
+- Custom component properties override remove `ref` [\#2721](https://github.com/primefaces/primereact/issues/2721)
+- DataTable: if custom filter is used then clear/reset filter functionality is not working. [\#2715](https://github.com/primefaces/primereact/issues/2715)
+- GMap onOverlayDragEnd event callback has access to outdated react states [\#2714](https://github.com/primefaces/primereact/issues/2714)
+- DataTable custom filter function breaks table [\#2702](https://github.com/primefaces/primereact/issues/2702)
+- InputMask: on Android does not fire onChange until focus lost [\#2686](https://github.com/primefaces/primereact/issues/2686)
+- \[BUG\] InputText keyfilter [\#2214](https://github.com/primefaces/primereact/issues/2214)
+- Galleria Advanced sandbox links are wrong [\#2204](https://github.com/primefaces/primereact/issues/2204)
+- Toast component stale messages state issue, while quickly calling toastRef.show [\#1804](https://github.com/primefaces/primereact/issues/1804)
+
+## [8.0.0-rc.1](https://github.com/primefaces/primereact/tree/8.0.0-rc.1) (2022-04-04)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/7.2.1...8.0.0-rc.1)
+
+**Breaking Changes:**
+
+- Converted Class components to functional Hooks components [\#2704](https://github.com/primefaces/primereact/issues/2704)
+- Improve confirmDialog and confirmPopup methods [\#2718](https://github.com/primefaces/primereact/issues/2718)
+
+**Implemented New Features and Enhancements:**
+
+- React 18 support [\#2360](https://github.com/primefaces/primereact/issues/2360)
+- Pass other standard element attributes to all components [\#2716](https://github.com/primefaces/primereact/issues/2716)
+- forwardRef is not implemented at Card and Panel [\#2709](https://github.com/primefaces/primereact/issues/2709)
+- Add panelContainerStyle and panelContainerClassName properties to TabView [\#2706](https://github.com/primefaces/primereact/issues/2706)
+- Add gutter property to DataView [\#2705](https://github.com/primefaces/primereact/issues/2705)
+- Calendar: show/hide TypeScript declarations [\#2685](https://github.com/primefaces/primereact/issues/2685)
+- AutoComplete: option to not focus input on dropdown click [\#2679](https://github.com/primefaces/primereact/issues/2679)
+- Tooltip: onBeforeShow should be able to cancel showing [\#2653](https://github.com/primefaces/primereact/issues/2653)
+- Pass other standard element attributes to form components [\#2620](https://github.com/primefaces/primereact/issues/2620)
+- DataTable editingMeta is bound to row index, instead of row key [\#2609](https://github.com/primefaces/primereact/issues/2609)
+- Add inputId property to Chips [\#2717](https://github.com/primefaces/primereact/issues/2717)
+
+**Fixed bugs:**
+
+- The texts inside the cells are not copied in the dataTable [\#2710](https://github.com/primefaces/primereact/issues/2710)
+- Datatable re-order rows: can't reorder to last row when page is scrolled \(event.pageY \> 0\) [\#2703](https://github.com/primefaces/primereact/issues/2703)
+- Toast component throws error on show [\#2696](https://github.com/primefaces/primereact/issues/2696)
+- Tooltips crashing Chrome [\#2695](https://github.com/primefaces/primereact/issues/2695)
+- Row component does not pass down `className` and `style` props [\#2693](https://github.com/primefaces/primereact/issues/2693)
+- Issue with type definition of fileupload interface FileUploadRemoveParams [\#2681](https://github.com/primefaces/primereact/issues/2681)
+- v7.2.1 introduces "ReferenceError: PrimeReact is not defined" on sorting a DataView [\#2663](https://github.com/primefaces/primereact/issues/2663)
+- Tooltip autohide false not working on zIndexed parent [\#2658](https://github.com/primefaces/primereact/issues/2658)
+- Sidebar: onHide - closing on peripheral actions [\#2652](https://github.com/primefaces/primereact/issues/2652)
+- Typo in PrimeIcons Enum for ARROWS_H and ARROWS_V [\#2649](https://github.com/primefaces/primereact/issues/2649)
+- rowEditValidator validates the original data rather than the new one [\#2618](https://github.com/primefaces/primereact/issues/2618)
+- Tree component bug with functions onNodeClick and onNodeDoubleClick. Both of them not working [\#2599](https://github.com/primefaces/primereact/issues/2599)
+
+## [7.2.1](https://github.com/primefaces/primereact/tree/7.2.1) (2022-02-22)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/7.2.0...7.2.1)
+
+**Implemented New Features and Enhancements:**
+
+- Add p-button-\* class support to SplitButton [\#2647](https://github.com/primefaces/primereact/issues/2647)
+- Change lara to use system font [\#2645](https://github.com/primefaces/primereact/issues/2645)
+- Knob | replace surface letters with new surface variables [\#2643](https://github.com/primefaces/primereact/issues/2643)
+- Bug: When calendar is closed by clicking cancel button, It should be focus out [\#2638](https://github.com/primefaces/primereact/issues/2638)
+- Add possibility to reset scroll in DataTable [\#2636](https://github.com/primefaces/primereact/issues/2636)
+- The SplitButton type declarations are missing the "show" and "hide" methods [\#2625](https://github.com/primefaces/primereact/issues/2625)
+- Automated tests throw "TypeError: highlightItem.scrollIntoView is not a function" [\#2616](https://github.com/primefaces/primereact/issues/2616)
+- DataTable sorting lacks collation support [\#2604](https://github.com/primefaces/primereact/issues/2604)
+
+**Fixed bugs:**
+
+- TreeSelect templateHeader doesn't work [\#2641](https://github.com/primefaces/primereact/issues/2641)
+- dropIndex returns same index for different nodes in Tree component [\#2632](https://github.com/primefaces/primereact/issues/2632)
+- InputNumber editor in Datatable doesn't accept only numbers as input values anymore [\#2631](https://github.com/primefaces/primereact/issues/2631)
+- Bug on Dark Themes related with fixed columns [\#2630](https://github.com/primefaces/primereact/issues/2630)
+- DataTable with paginator and selection [\#2612](https://github.com/primefaces/primereact/issues/2612)
+- Datatable: Responsive broken in 7.2.0 [\#2594](https://github.com/primefaces/primereact/issues/2594)
+- TabMenu with MenuItem template function does not work properly [\#2590](https://github.com/primefaces/primereact/issues/2590)
+
+## [7.2.0](https://github.com/primefaces/primereact/tree/7.2.0) (2022-01-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/7.1.0...7.2.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add files and index options to itemTemplate on FileUpload [\#2584](https://github.com/primefaces/primereact/issues/2584)
+- Add rowHover property to TreeTable [\#2582](https://github.com/primefaces/primereact/issues/2582)
+- Improve resizable structure on DataTable [\#2581](https://github.com/primefaces/primereact/issues/2581)
+- Add appendTo property to Toast [\#2578](https://github.com/primefaces/primereact/issues/2578)
+- Add selectionAutoFocus property to DataTable [\#2575](https://github.com/primefaces/primereact/issues/2575)
+- Add align and alignHeader property to Column [\#2572](https://github.com/primefaces/primereact/issues/2572)
+- Keyboard click for TabView [\#2569](https://github.com/primefaces/primereact/issues/2569)
+- Column property for cellClassName function [\#2553](https://github.com/primefaces/primereact/issues/2553)
+- New Feature: 'downloadable' prop of 'Image' [\#2552](https://github.com/primefaces/primereact/issues/2552)
+- Add exportField property to DataTable [\#2544](https://github.com/primefaces/primereact/issues/2544)
+- Improve table row reorder highlight [\#2519](https://github.com/primefaces/primereact/issues/2519)
+- ColorPicker | Add border for Dark Themes [\#2516](https://github.com/primefaces/primereact/issues/2516)
+- Add isDataSelectable property to DataTable [\#1303](https://github.com/primefaces/primereact/issues/1303)
+
+**Fixed bugs:**
+
+- tailwind theme - wrong styles [\#2587](https://github.com/primefaces/primereact/issues/2587)
+- Body cell is not assigned with the className property of Column [\#2576](https://github.com/primefaces/primereact/issues/2576)
+- TabView programmatically set activeIndex is ignored in onTabClose function. [\#2573](https://github.com/primefaces/primereact/issues/2573)
+- Calendar as editor inside DataTable in row edit mode [\#2561](https://github.com/primefaces/primereact/issues/2561)
+- Dropdown with VirtualScroll not rendering items. [\#2560](https://github.com/primefaces/primereact/issues/2560)
+- \ Minutes - increment and decrement operations do not work with stepMinute = 1 [\#2557](https://github.com/primefaces/primereact/issues/2557)
+- TreeNode: TypeScript def missing expanded property [\#2548](https://github.com/primefaces/primereact/issues/2548)
+- Row grouping breaking with pagination [\#2545](https://github.com/primefaces/primereact/issues/2545)
+- Styling of TabMenu is broken for multi line headings [\#2540](https://github.com/primefaces/primereact/issues/2540)
+- \[Bug\] Next.js - `document is not defined` when using Dialog and Sidebar component [\#2538](https://github.com/primefaces/primereact/issues/2538)
+- `progress` is not a part of state but using in multiple places. [\#2537](https://github.com/primefaces/primereact/issues/2537)
+- DataTable: ReferenceError: process is not defined regression in 7.1 [\#2536](https://github.com/primefaces/primereact/issues/2536)
+- DataTable: When scrollable and virtual scroller are enabled, scroll to the right to display blank [\#2534](https://github.com/primefaces/primereact/issues/2534)
+- DataTable, TreeTable | Checkbox and RadioButton Focus Missing on Material [\#2522](https://github.com/primefaces/primereact/issues/2522)
+- DataTable | scrollable-sortable header hover on dark themes [\#2517](https://github.com/primefaces/primereact/issues/2517)
+- DataTable with resizable property is not working as expected [\#2448](https://github.com/primefaces/primereact/issues/2448)
+
+## [7.1.0](https://github.com/primefaces/primereact/tree/7.1.0) (2021-12-13)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/7.0.1...7.1.0)
+
+**Breaking Changes:**
+
+- InputMask/AutoComplete: maxlength property [\#2408](https://github.com/primefaces/primereact/issues/2408)
+
+**Implemented New Features and Enhancements:**
+
+- Tree DragDrop inconsistent styling on drag hover [\#2501](https://github.com/primefaces/primereact/issues/2501)
+- Typescript DataTables with filters don't import or compile correctly. [\#2467](https://github.com/primefaces/primereact/issues/2467)
+- InputNumber Critical Issue [\#2465](https://github.com/primefaces/primereact/issues/2465)
+- Improve lazy loading on DataTable [\#2457](https://github.com/primefaces/primereact/issues/2457)
+- Add showSelectAll, selectAll and onSelectAll properties to DataTable [\#2455](https://github.com/primefaces/primereact/issues/2455)
+- Add selectionPageOnly property to DataTable [\#2454](https://github.com/primefaces/primereact/issues/2454)
+- Add style and className properties to TabPanel and AccordionPanel [\#2449](https://github.com/primefaces/primereact/issues/2449)
+- Improve resize listeners for Overlay Components [\#2446](https://github.com/primefaces/primereact/issues/2446)
+- AutoComplete Show Dropdown When Clicked [\#2445](https://github.com/primefaces/primereact/issues/2445)
+- Panel's expandIcon and collapseIcon Properties Accept Only Strings, Not Elements [\#2437](https://github.com/primefaces/primereact/issues/2437)
+- Add options to control CSSTransition in all overlay components [\#2426](https://github.com/primefaces/primereact/issues/2426)
+- CSP: Violating Inline Style Policy [\#2423](https://github.com/primefaces/primereact/issues/2423)
+- TabPanel onClose Event [\#2418](https://github.com/primefaces/primereact/issues/2418)
+- Tooltip not displayed for disabled components [\#2221](https://github.com/primefaces/primereact/issues/2221)
+- SplitButton does not carry through the classname [\#1939](https://github.com/primefaces/primereact/issues/1939)
+- Add "p-button-outlined" class for SplitButton [\#1882](https://github.com/primefaces/primereact/issues/1882)
+- Editor's header cannot be hidden no matter what [\#1567](https://github.com/primefaces/primereact/issues/1567)
+
+**Fixed bugs:**
+
+- There is typo in Image description [\#2512](https://github.com/primefaces/primereact/issues/2512)
+- Type definition issue with utils import [\#2506](https://github.com/primefaces/primereact/issues/2506)
+- Using the transition property on elements inside Carousel causes items become hidden [\#2499](https://github.com/primefaces/primereact/issues/2499)
+- MultiSelect - breaking when options is empty array [\#2496](https://github.com/primefaces/primereact/issues/2496)
+- ConfirmPopup crashes the app when using Next.js [\#2495](https://github.com/primefaces/primereact/issues/2495)
+- DataTable issue related to restoreState with nextjs [\#2493](https://github.com/primefaces/primereact/issues/2493)
+- Dropdown: Property selectedIndex being referenced from null current inputRef [\#2491](https://github.com/primefaces/primereact/issues/2491)
+- \[DataTable\] Row expander customization isn't working [\#2487](https://github.com/primefaces/primereact/issues/2487)
+- Docs for PrimeReact not working properly for v6 [\#2484](https://github.com/primefaces/primereact/issues/2484)
+- DataTable error when filters become available dynamically [\#2478](https://github.com/primefaces/primereact/issues/2478)
+- Tree selection types \(pt. 2\) [\#2473](https://github.com/primefaces/primereact/issues/2473)
+- DOMException in DataTable after React fast refresh [\#2469](https://github.com/primefaces/primereact/issues/2469)
+- ColumnFilterConstraintAddParams: constraint is mispelled [\#2463](https://github.com/primefaces/primereact/issues/2463)
+- When scrollable and virtual Scroller are enabled at the same time, the scroll style is incorrect when the scrollHeight is changed [\#2456](https://github.com/primefaces/primereact/issues/2456)
+- Menubar Component needs CSS styles for "text-decoration: none;" [\#2439](https://github.com/primefaces/primereact/issues/2439)
+- DataTable virtualScroll index bug [\#2431](https://github.com/primefaces/primereact/issues/2431)
+- Dropdown auto close in mobile when keyboard is open [\#2422](https://github.com/primefaces/primereact/issues/2422)
+- InputNumber value type should include null [\#2417](https://github.com/primefaces/primereact/issues/2417)
+- BlockUI: rapid blocking-unblocking leads to TypeError this.mask is null [\#2412](https://github.com/primefaces/primereact/issues/2412)
+- Calendar timepicker stepMinute should show zero-based multiples of step [\#2301](https://github.com/primefaces/primereact/issues/2301)
+- Issue in Grid sorting, null values not handled in sortMultiple function \(when sortMode=multiple\) [\#2157](https://github.com/primefaces/primereact/issues/2157)
+- ColorPicker: wrong value type definitions when using rgb or hsb format, part 2 [\#2045](https://github.com/primefaces/primereact/issues/2045)
+
+## [7.0.1](https://github.com/primefaces/primereact/tree/7.0.1) (2021-10-15)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/7.0.0...7.0.1)
+
+**Implemented New Features and Enhancements:**
+
+- New Themes with dark modes: Lara-Blue and Lara-Teal [\#2435](https://github.com/primefaces/primereact/issues/2435)
+- Remove default max-width style from Tooltip [\#2414](https://github.com/primefaces/primereact/issues/2414)
+
+**Fixed bugs:**
+
+- Button icon classes listed twice [\#2415](https://github.com/primefaces/primereact/issues/2415)
+- MultiSelect with transitionOptions property throws an exception [\#2413](https://github.com/primefaces/primereact/issues/2413)
+- Tooltip positioned incorrectly when target is an SVG [\#2406](https://github.com/primefaces/primereact/issues/2406)
+- ConfirmDialogProps breaks the build on Typescript due to double semicolon [\#2429](https://github.com/primefaces/primereact/issues/2429)
+
+## [7.0.0](https://github.com/primefaces/primereact/tree/7.0.0) (2021-10-09)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/7.0.0-rc.2...7.0.0)
+
+**Breaking Changes:**
+
+- Change default value of maxSelectedLabels property on MultiSelect [\#2389](https://github.com/primefaces/primereact/issues/2389)
+
+**Implemented New Features and Enhancements:**
+
+- New Theme: Lara [\#2409](https://github.com/primefaces/primereact/issues/2409)
+- Add maskStyle property to Dialog [\#2404](https://github.com/primefaces/primereact/issues/2404)
+- Material | Use box-shadow for outlined Buttons [\#2401](https://github.com/primefaces/primereact/issues/2401)
+- Material Focus Improvements [\#2400](https://github.com/primefaces/primereact/issues/2400)
+- Update PrimeIcons to 5.0 [\#2399](https://github.com/primefaces/primereact/issues/2399)
+- Improve custom icon support [\#2397](https://github.com/primefaces/primereact/issues/2397)
+- Improve FileUpload drop mode [\#2385](https://github.com/primefaces/primereact/issues/2385)
+- Add header, footer and magnification properties to Dock [\#2362](https://github.com/primefaces/primereact/issues/2362)
+- \(Yarn PnP\) Add react-transition-group as optional peer dependency [\#2346](https://github.com/primefaces/primereact/issues/2346)
+- Support locale for emptyMessage and emptyFilterMessage default value [\#2337](https://github.com/primefaces/primereact/issues/2337)
+- Chips component: add 'readOnly' property [\#2334](https://github.com/primefaces/primereact/issues/2334)
+- Message content hides icon [\#2321](https://github.com/primefaces/primereact/issues/2321)
+- The Menu type declaration is missing the "show" and "hide" methods [\#2295](https://github.com/primefaces/primereact/issues/2295)
+- Date gets deselected in Calendar with selection mode range [\#2279](https://github.com/primefaces/primereact/issues/2279)
+- Add closeable property to TabPanel [\#2278](https://github.com/primefaces/primereact/issues/2278)
+- Add removeIcon property to AutoComplete and MultiSelect components [\#2270](https://github.com/primefaces/primereact/issues/2270)
+- Slider - onSlideEnd not called when clicking on Slider rail [\#2265](https://github.com/primefaces/primereact/issues/2265)
+- Add iconPos property to Calendar [\#2239](https://github.com/primefaces/primereact/issues/2239)
+- Improve Sidebar component [\#2233](https://github.com/primefaces/primereact/issues/2233)
+- Extend exportFunction \(csv\) with the whole record [\#2209](https://github.com/primefaces/primereact/issues/2209)
+- Multiple Selection Using Shift Key for TreeTable [\#1120](https://github.com/primefaces/primereact/issues/1120)
+
+**Fixed Bugs:**
+
+- Splitter component always adds p-splitter-panel-nested class [\#2396](https://github.com/primefaces/primereact/issues/2396)
+- DataTable VirtualScroll alignment issue [\#2392](https://github.com/primefaces/primereact/issues/2392)
+- TabView with scrollable throws an exception [\#2391](https://github.com/primefaces/primereact/issues/2391)
+- Ripple is not working on Nextjs [\#2390](https://github.com/primefaces/primereact/issues/2390)
+- FileUpload not be directly mutated component’s state [\#2387](https://github.com/primefaces/primereact/issues/2387)
+- isSelectableTime checks value array instead of any value on Calendar [\#2386](https://github.com/primefaces/primereact/issues/2386)
+- Clicking the Clear Filter Button Should Clear the Filter But Leave the Dropdown Open [\#2384](https://github.com/primefaces/primereact/issues/2384)
+- DataTable filter mode is not working after filters are cleared [\#2383](https://github.com/primefaces/primereact/issues/2383)
+- \[Editor\] quill Invalid Quill container null [\#2381](https://github.com/primefaces/primereact/issues/2381)
+- Treeselect doesn't select the first node of the list [\#2372](https://github.com/primefaces/primereact/issues/2372)
+- Virtual Scroller Does Not React Properly When Underlying Array Changes Size [\#2366](https://github.com/primefaces/primereact/issues/2366)
+- Bug - FileUpload allows multiple even if "multiple" prop is not set [\#2363](https://github.com/primefaces/primereact/issues/2363)
+- Floating label is not yet on top of the inputbox when prefilled by Chrome [\#2358](https://github.com/primefaces/primereact/issues/2358)
+- Dropdown breaks in shadowRoot when getScrollableParent\(\) encounters document fragment [\#2352](https://github.com/primefaces/primereact/issues/2352)
+- Dropdown: Primitive values [\#2349](https://github.com/primefaces/primereact/issues/2349)
+- Add removable property to Chips [\#2345](https://github.com/primefaces/primereact/issues/2345)
+- InputNumber doesn't submit a form [\#2344](https://github.com/primefaces/primereact/issues/2344)
+- Multiselect adds items previously selected by clicking on the "select all" toggle \('Advanced with Templating and Filtering'\) [\#2341](https://github.com/primefaces/primereact/issues/2341)
+- TabView does not support dynamic panel visibility [\#2339](https://github.com/primefaces/primereact/issues/2339)
+- OverlayPanel - Uncaught TypeError: this is undefined [\#2338](https://github.com/primefaces/primereact/issues/2338)
+- MultiSelect should also limit the number of displayed chips [\#2331](https://github.com/primefaces/primereact/issues/2331)
+- Expander of ColumnProps has wrong in colums.td.d [\#2328](https://github.com/primefaces/primereact/issues/2328)
+- Lazy loaded menu overflowing the page [\#2320](https://github.com/primefaces/primereact/issues/2320)
+- InputSwitch inside Label doesn't toggle correctly. [\#2300](https://github.com/primefaces/primereact/issues/2300)
+- When Multiselect inside of label tag, click on it is not showing dropdown panel [\#2299](https://github.com/primefaces/primereact/issues/2299)
+- TreeSelect.value should be an array in multiselect mode [\#2276](https://github.com/primefaces/primereact/issues/2276)
+- TS2769: No overload matches this call. Overload 1 of 2, '\(props: InputTextProps | Readonly\\): InputText', gave the following error. [\#2274](https://github.com/primefaces/primereact/issues/2274)
+- Auto z-index isn't generating correctly [\#2266](https://github.com/primefaces/primereact/issues/2266)
+- Calendar prop \(tabIndex\) never passed into InputText element. [\#2260](https://github.com/primefaces/primereact/issues/2260)
+- DataTable: regression in single mode Space and Enter keys are catched and are not usable into cells [\#2259](https://github.com/primefaces/primereact/issues/2259)
+- Failed prop type: Invalid prop `appendTo` of type `string` supplied to `DropdownPanel`, expected `object`. [\#2258](https://github.com/primefaces/primereact/issues/2258)
+- Calendar throws exception when have the onViewDateChange property [\#2254](https://github.com/primefaces/primereact/issues/2254)
+- DataTable checked all rows does not honor ShowSelectionElement [\#2251](https://github.com/primefaces/primereact/issues/2251)
+- PickList not working webpack 5.5 [\#2250](https://github.com/primefaces/primereact/issues/2250)
+- Dialog: pressing escape in a nested dialog closes the parent dialog [\#2241](https://github.com/primefaces/primereact/issues/2241)
+- \[Bug\]: ReadOnly InputNumber is editable [\#2238](https://github.com/primefaces/primereact/issues/2238)
+- Tree DragDrop doesn't allow drag and drop between nodes [\#2177](https://github.com/primefaces/primereact/issues/2177)
+- DataTable cell editor only validates on enter [\#1024](https://github.com/primefaces/primereact/issues/1024)
+
+## [7.0.0-rc.2](https://github.com/primefaces/primereact/tree/7.0.0-rc.2) (2021-11-01)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/7.0.0-rc.1...7.0.0-rc.2)
+
+**Fixed Bugs:**
+
+- Table columns not visible on Prod [\#2380](https://github.com/primefaces/primereact/issues/2380)
+
+## [7.0.0-rc.1](https://github.com/primefaces/primereact/tree/7.0.0-rc.1) (2021-11-01)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.6.0...7.0.0-rc.1)
+
+**Breaking Changes:**
+
+- Improve DataTable implementation [\#2368](https://github.com/primefaces/primereact/issues/2368)
+- Remove FilterUtils class [\#2376](https://github.com/primefaces/primereact/issues/2376)
+- Improve Column attributes for Data components [\#2374](https://github.com/primefaces/primereact/issues/2374)
+- Improve VirtualScroller component [\#2373](https://github.com/primefaces/primereact/issues/2373)
+- Implemented new VirtualScroll feature for DataTable [\#2371](https://github.com/primefaces/primereact/issues/2371)
+- Implemented New Filter modes on DataTable [\#2370](https://github.com/primefaces/primereact/issues/2370)
+
+**Implemented New Features and Enhancements:**
+
+- Improve modal animation on Dialog [\#2378](https://github.com/primefaces/primereact/issues/2378)
+
+**Fixed Bugs:**
+
+- Calendar Panel closes on the panel's mouseup event [\#2369](https://github.com/primefaces/primereact/issues/2369)
+
+## [6.6.0](https://github.com/primefaces/primereact/tree/6.6.0) (2021-10-01)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.6.0-rc.1...6.6.0)
+
+**Implemented New Features and Enhancements:**
+
+- PrimeFlex 3 support for DataView [\#2332](https://github.com/primefaces/primereact/issues/2332)
+- Improve scrollbar style on BreadCrumb and TabMenu [\#2330](https://github.com/primefaces/primereact/issues/2330)
+
+**Fixed Bugs:**
+
+- Image component is missing in primereact.all.js [\#2329](https://github.com/primefaces/primereact/issues/2329)
+
+## [6.6.0-rc.1](https://github.com/primefaces/primereact/tree/6.6.0-rc.1) (2021-09-27)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.5.1...6.6.0-rc.1)
+
+**Implemented New Features and Enhancements:**
+
+- Improve Galleria Thumbnail animation [\#2326](https://github.com/primefaces/primereact/issues/2326)
+- Add trueValue-falseValue to Checkbox [\#2323](https://github.com/primefaces/primereact/issues/2323)
+- Add trueValue-falseValue to InputSwitch [\#2317](https://github.com/primefaces/primereact/issues/2317)
+- Modal layer enter-leave transition [\#2316](https://github.com/primefaces/primereact/issues/2316)
+- Make Dock component mobile friendly [\#2312](https://github.com/primefaces/primereact/issues/2312)
+- Set Paginator Page from InputNumber [\#2310](https://github.com/primefaces/primereact/issues/2310)
+- Tooltip: word wrap [\#2307](https://github.com/primefaces/primereact/issues/2307)
+- Tailwind Theme [\#2302](https://github.com/primefaces/primereact/issues/2302)
+- Scrollable feature for TabView Component [\#2298](https://github.com/primefaces/primereact/issues/2298)
+- New Component: Image [\#2297](https://github.com/primefaces/primereact/issues/2297)
+- Add p-inputwrapper class to InputNumber [\#2289](https://github.com/primefaces/primereact/issues/2289)
+- Add getFormatter method to InputNumber [\#2287](https://github.com/primefaces/primereact/issues/2287)
+- Add allowEmpty property to InputNumber [\#2285](https://github.com/primefaces/primereact/issues/2285)
+- InputNumber behaves odd when trying to insert fracitonal digits [\#2284](https://github.com/primefaces/primereact/issues/2284)
+- InputNumber: cannot insert fractional digits when minFractionDigits=0 [\#2283](https://github.com/primefaces/primereact/issues/2283)
+
+**Fixed Bugs:**
+
+- CurrentPageReport displays wrong value [\#2314](https://github.com/primefaces/primereact/issues/2314)
+- Filtered Dropdown unusable on Windows Tablet [\#2311](https://github.com/primefaces/primereact/issues/2311)
+- Material themes Surface Border Issue [\#2309](https://github.com/primefaces/primereact/issues/2309)
+- Dropdown scrolls top after reopened [\#2308](https://github.com/primefaces/primereact/issues/2308)
+- Dropdown with filter bug selecting with arrow keys [\#2306](https://github.com/primefaces/primereact/issues/2306)
+- Incorrect Sizing due to filter input width of dropdown [\#2305](https://github.com/primefaces/primereact/issues/2305)
+- Overlay panel hide when clicking on a label inside of it [\#2304](https://github.com/primefaces/primereact/issues/2304)
+- Thumbnails are not displayed correctly on Galleria if numVisible is greater than the length of value [\#2293](https://github.com/primefaces/primereact/issues/2293)
+- InputNumber: issues with decimal separator for some locales, 0s are added to input [\#2292](https://github.com/primefaces/primereact/issues/2292)
+- Negative sign in front of number is not possible for Finnish or Swedish locale [\#2291](https://github.com/primefaces/primereact/issues/2291)
+- Input number caret issue with negatives [\#2290](https://github.com/primefaces/primereact/issues/2290)
+- inputnumber : both prefix and currency Input error [\#2288](https://github.com/primefaces/primereact/issues/2288)
+- InputNumber: setting "min" to anything greater than 0 implies "required" [\#2286](https://github.com/primefaces/primereact/issues/2286)
+- InputNumber input event returns wrong value [\#2282](https://github.com/primefaces/primereact/issues/2282)
+- Checkbox causes layout issues when used inside an overflow: auto div [\#2281](https://github.com/primefaces/primereact/issues/2281)
+- Table Header Checkbox not working when lazy loading enabled [\#2253](https://github.com/primefaces/primereact/issues/2253)
+- \[BUG\] 6.5.1 Toast - ContentClassName prop should be optional [\#2247](https://github.com/primefaces/primereact/issues/2247)
+- InputNumber with min triggers onValueChange immediately if value is nully [\#2136](https://github.com/primefaces/primereact/issues/2136)
+
+## [6.5.1](https://github.com/primefaces/primereact/tree/6.5.1) (2021-08-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.5.0...6.5.1)
+
+**Implemented New Features and Enhancements:**
+
+- Add StyleClass Component [\#2242](https://github.com/primefaces/primereact/issues/2242)
+- Inline style and style class for ToastMessage and its content [\#2236](https://github.com/primefaces/primereact/issues/2236)
+
+**Fixed Bugs:**
+
+- Ripple animation is not working on components [\#2240](https://github.com/primefaces/primereact/issues/2240)
+- Dropdown keypress doesn't support Turkish characters [\#2217](https://github.com/primefaces/primereact/issues/2217)
+- TreeSelect Typescript error [\#2211](https://github.com/primefaces/primereact/issues/2211)
+- Typo in `Menu.d.ts` & `TieredMenu.d.ts` [\#2210](https://github.com/primefaces/primereact/issues/2210)
+- DataScroller increases the first index value even when there are no rows [\#1902](https://github.com/primefaces/primereact/issues/1902)
+
+## [6.5.0](https://github.com/primefaces/primereact/tree/6.5.0) (2021-07-16)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.5.0-rc.2...6.5.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add empty property to MultiStateCheckbox [\#2195](https://github.com/primefaces/primereact/issues/2195)
+- Add filter parameter to the lazyLoad method of VirtualScroller on Dropdown, MultiSelect and Listbox [\#2192](https://github.com/primefaces/primereact/issues/2192)
+- Add dataKey property to OrderList and PickList components [\#2187](https://github.com/primefaces/primereact/issues/2187)
+- Add support for using plugins in the Chart component [\#2186](https://github.com/primefaces/primereact/issues/2186)
+- New Component: Mention [\#2178](https://github.com/primefaces/primereact/issues/2178)
+- Add icon property to Checkbox [\#2173](https://github.com/primefaces/primereact/issues/2173)
+- Add onClick and onMaskClick events to Dialog [\#2163](https://github.com/primefaces/primereact/issues/2163)
+- Rename OverlayEventBus to OverlayService [\#2162](https://github.com/primefaces/primereact/issues/2162)
+- Add cellClassName property to DataTable [\#2160](https://github.com/primefaces/primereact/issues/2160)
+- Add inputMode property to Calendar [\#2158](https://github.com/primefaces/primereact/issues/2158)
+- New Component: Dock [\#2017](https://github.com/primefaces/primereact/issues/2017)
+- New Component: SpeedDial [\#1975](https://github.com/primefaces/primereact/issues/1975)
+- New Component: BlockUI [\#1268](https://github.com/primefaces/primereact/issues/1268)
+- Add dataKey property to DataView [\#1115](https://github.com/primefaces/primereact/issues/1115)
+- Add onNodeClick and onNodeDoubleClick events to Tree [\#1099](https://github.com/primefaces/primereact/issues/1099)
+- Primereact should not act on the global style [\#1082](https://github.com/primefaces/primereact/issues/1082)
+- New Component: Terminal [\#472](https://github.com/primefaces/primereact/issues/472)
+
+**Fixed Bugs:**
+
+- When the container is scrolled using the keyboard on VirtualScroller, this behavior does not continue when new elements are loaded. [\#2196](https://github.com/primefaces/primereact/issues/2196)
+- \[bug\] Sidebar Close button ripple effect on opposite side rather than on the button [\#2185](https://github.com/primefaces/primereact/issues/2185)
+- localeOption return type definition should be an any, not void [\#2181](https://github.com/primefaces/primereact/issues/2181)
+- Changing month with monthNavigator issue on Inline Calendar [\#2174](https://github.com/primefaces/primereact/issues/2174)
+- Dropdown filter closing issue [\#2171](https://github.com/primefaces/primereact/issues/2171)
+- Calendar min max doesn't work with showTime show second [\#2130](https://github.com/primefaces/primereact/issues/2130)
+- No whitespace when cell editing in DataTable [\#2124](https://github.com/primefaces/primereact/issues/2124)
+- OnPage datatable call api twice [\#2030](https://github.com/primefaces/primereact/issues/2030)
+
+## [6.5.0-rc.2](https://github.com/primefaces/primereact/tree/6.5.0-rc.2) (2021-06-28)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.5.0-rc.1...6.5.0-rc.2)
+
+**Implemented New Features and Enhancements:**
+
+- Webpack moduleFederation throws warning for micro front end apps [\#2146](https://github.com/primefaces/primereact/issues/2146)
+- Add onLoad property to Editor [\#2145](https://github.com/primefaces/primereact/issues/2145)
+- Add progressBarTemplate property to FileUpload [\#2144](https://github.com/primefaces/primereact/issues/2144)
+- Improve forwardRef structure on Button [\#2143](https://github.com/primefaces/primereact/issues/2143)
+- Add emptyMessage property to DataScroller [\#2141](https://github.com/primefaces/primereact/issues/2141)
+- Access to Quill object when using the Editor component [\#2122](https://github.com/primefaces/primereact/issues/2122)
+
+**Fixed Bugs:**
+
+- When clicking on the target element to open the confirmPopup, the browser's scroll moves [\#2142](https://github.com/primefaces/primereact/issues/2142)
+- Colors vars are not working [\#2126](https://github.com/primefaces/primereact/issues/2126)
+- Move cursor not showing if Dialog is not resizable [\#2064](https://github.com/primefaces/primereact/issues/2064)
+
+## [6.5.0-rc.1](https://github.com/primefaces/primereact/tree/6.5.0-rc1)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.4.1...6.5.0-rc1)
+
+**Implemented New Features and Enhancements:**
+
+- New PrimeReact Build [\#2135](https://github.com/primefaces/primereact/issues/2135)
+
+**Fixed Bugs:**
+
+- Tooltips closed on window resize after system keyboard appears on mobile devices [\#2140](https://github.com/primefaces/primereact/issues/2140)
+- Overlay components are not aligned correctly [\#2139](https://github.com/primefaces/primereact/issues/2139)
+- PickList crashes Application when using SourceSelection [\#2133](https://github.com/primefaces/primereact/issues/2133)
+- Calendar yearNavigator not working [\#2131](https://github.com/primefaces/primereact/issues/2131)
+- Building against primereact 6.4.1 generates TS1036 error against VirtualScroller.d.ts:38 [\#2123](https://github.com/primefaces/primereact/issues/2123)
+
+## [6.4.1](https://github.com/primefaces/primereact/tree/6.4.1) (2021-06-16)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.4.0...6.4.1)
+
+**Implemented New Features and Enhancements:**
+
+- Responsive TabMenu and Breadcrumb [\#2120](https://github.com/primefaces/primereact/issues/2120)
+- Add visible and onVisibleChange properties to Calendar [\#2119](https://github.com/primefaces/primereact/issues/2119)
+- Add monthNavigatorTemplate and yearNavigatorTemplate properties to Calendar [\#2116](https://github.com/primefaces/primereact/issues/2116)
+- Toast center positioning enhancement [\#2108](https://github.com/primefaces/primereact/issues/2108)
+
+**Fixed Bugs:**
+
+- InputMask cannot read property 'length' of null [\#2113](https://github.com/primefaces/primereact/issues/2113)
+- Dropdown search crashes when no match with VirtualScrollar [\#2112](https://github.com/primefaces/primereact/issues/2112)
+- The panel of Calendar is not aligned inside editable DataTable [\#2111](https://github.com/primefaces/primereact/issues/2111)
+- MultiSelect filtering broken in v6.4.0 [\#2110](https://github.com/primefaces/primereact/issues/2110)
+- DataTable - Headers of Columns with exportable at false are exported [\#2107](https://github.com/primefaces/primereact/issues/2107)
+- ColorPicker doesn't change its color \(react-hook-form\) [\#2071](https://github.com/primefaces/primereact/issues/2071)
+
+## [6.4.0](https://github.com/primefaces/primereact/tree/6.4.0) (2021-06-11)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.3.2...6.4.0)
+
+**Breaking Changes:**
+
+- Improve onFilterValueChange event on Tree [\#2037](https://github.com/primefaces/primereact/issues/2037)
+- FullCalendar component is deprecated [\#2092](https://github.com/primefaces/primereact/issues/2092)
+- Remove hidden select tag and required property from MultiSelect [\#2099](https://github.com/primefaces/primereact/issues/2099)
+- Update to Chart.js 3.3.2 [\#1802](https://github.com/primefaces/primereact/issues/1802)
+
+**Implemented New Features and Enhancements:**
+
+- New Component: VirtualScroller [\#2063](https://github.com/primefaces/primereact/issues/2063)
+- Add virtualScrollerOptions property to components [\#2075](https://github.com/primefaces/primereact/issues/2075)
+- Improve resize feature of Dialog [\#2102](https://github.com/primefaces/primereact/issues/2102)
+- Add showSelectAll, selectAll and onSelectAll properties to MultiSelect [\#2098](https://github.com/primefaces/primereact/issues/2098)
+- Add inputId property to Password [\#2096](https://github.com/primefaces/primereact/issues/2096)
+- Add onAllRowsSelect and onAllRowsUnselect callbacks to DataTable [\#2093](https://github.com/primefaces/primereact/issues/2093)
+- TieredMenu sub-items are not visible when there's not enough space on the right side [\#2091](https://github.com/primefaces/primereact/issues/2091)
+- Add 'toast' key to ZIndex option on PrimeReact api [\#2089](https://github.com/primefaces/primereact/issues/2089)
+- Add autoZIndex option to PrimReact api [\#2088](https://github.com/primefaces/primereact/issues/2088)
+- Add Vite support [\#2087](https://github.com/primefaces/primereact/issues/2087)
+- Add p-sidebar-view and p-sidebar-content classes to Sidebar [\#2081](https://github.com/primefaces/primereact/issues/2081)
+- Add unselectable property to SelectButton [\#2077](https://github.com/primefaces/primereact/issues/2077)
+- Add dropdownIcon property to components [\#2074](https://github.com/primefaces/primereact/issues/2074)
+- Add emptyMessage property to Dropdown [\#2062](https://github.com/primefaces/primereact/issues/2062)
+- Add showGridlines and stripedRows props to DataTable [\#2054](https://github.com/primefaces/primereact/issues/2054)
+- Rangepicker for Date and Time [\#2051](https://github.com/primefaces/primereact/issues/2051)
+- Add onColumnResizerClick and onColumnResizerDoubleClick callbacks for column resizers on DataTable [\#2047](https://github.com/primefaces/primereact/issues/2047)
+- Improve header element on Dialog [\#2044](https://github.com/primefaces/primereact/issues/2044)
+- ScrollPanel pushes content to the left in order to show scrollbar [\#2039](https://github.com/primefaces/primereact/issues/2039)
+- Add appendTo property to Sidebar [\#2038](https://github.com/primefaces/primereact/issues/2038)
+- Add filterValue and onFilterValueChange properties to TreeSelect [\#2033](https://github.com/primefaces/primereact/issues/2033)
+- Improve Tooltip alignment [\#1973](https://github.com/primefaces/primereact/issues/1973)
+
+**Fixed Bugs:**
+
+- The id property has no effect on Card [\#2105](https://github.com/primefaces/primereact/issues/2105)
+- Items are not aligned on BreadCrumb [\#2104](https://github.com/primefaces/primereact/issues/2104)
+- Drag and drop not working properly with frozen columns on TreeTable [\#2100](https://github.com/primefaces/primereact/issues/2100)
+- \(Datatable\) EmptyMessage is not 'No records found' but null [\#2094](https://github.com/primefaces/primereact/issues/2094)
+- Freezing Columns leads to wrong order on Column reorder of DataTable [\#2086](https://github.com/primefaces/primereact/issues/2086)
+- Resizing of splitter panels doesn't work on touch devices [\#2083](https://github.com/primefaces/primereact/issues/2083)
+- validateResize in splitter doesn't validate sizes if there are more than two panels [\#2082](https://github.com/primefaces/primereact/issues/2082)
+- Tooltip: wrong arrow position and orientation for certain combinations of my, at, position [\#2073](https://github.com/primefaces/primereact/issues/2073)
+- PageParams TypeScript interface improvement on DataTable, TreeTable and DataView [\#2070](https://github.com/primefaces/primereact/issues/2070)
+- Splitter considers the height as the size of the container irrespective of the layout [\#2067](https://github.com/primefaces/primereact/issues/2067)
+- DataView throws an exception when the last page is reached using Paginator [\#2066](https://github.com/primefaces/primereact/issues/2066)
+- Calender Component Type Error [\#2057](https://github.com/primefaces/primereact/issues/2057)
+- FileUpload - long filename [\#2055](https://github.com/primefaces/primereact/issues/2055)
+- Slider doesn't work with decimal step value [\#2036](https://github.com/primefaces/primereact/issues/2036)
+- PickList type definition is not in line with proptypes [\#2035](https://github.com/primefaces/primereact/issues/2035)
+- Sidebar content overflows its container [\#2034](https://github.com/primefaces/primereact/issues/2034)
+- options.clear\(\) NOT works in FileUpload [\#2026](https://github.com/primefaces/primereact/issues/2026)
+- Edit and Sort combination support for DataTable [\#878](https://github.com/primefaces/primereact/issues/878)
+
+**Deprecated:**
+
+- FullCalendar component is deprecated [\#2092](https://github.com/primefaces/primereact/issues/2092)
+
+## [6.3.2](https://github.com/primefaces/primereact/tree/6.3.2) (2021-05-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.3.1...6.3.2)
+
+**Breaking Changes:**
+
+- Remove activeItem property from TabMenu [\#2015](https://github.com/primefaces/primereact/issues/2015)
+- Replace 'data' params name with 'value' for onContextMenuSelectionChange on DataTable [\#2021](https://github.com/primefaces/primereact/issues/2021)
+- Improve nodeTemplate property on Tree [\#2019](https://github.com/primefaces/primereact/issues/2019)
+
+**Implemented New Features and Enhancements:**
+
+- Add options parameter to uploadHandler callback on FileUpload [\#2024](https://github.com/primefaces/primereact/issues/2024)
+- Improve footer template on ConfirmDialog and ConfirmPopup [\#2020](https://github.com/primefaces/primereact/issues/2020)
+- Add activeIndex property to TabMenu [\#2014](https://github.com/primefaces/primereact/issues/2014)
+- onBlur/onFocus's event argument should be typed as FocusEvent [\#2009](https://github.com/primefaces/primereact/issues/2009)
+- Add togglerTemplate property to Tree [\#2005](https://github.com/primefaces/primereact/issues/2005)
+- ColorPicker: wrong value type definitions when using rgb or hsb format [\#2004](https://github.com/primefaces/primereact/issues/2004)
+- Expand the root of filtered nodes on Tree [\#2001](https://github.com/primefaces/primereact/issues/2001)
+- Export classNames function from 'primereact/utils' package [\#1990](https://github.com/primefaces/primereact/issues/1990)
+- Striped class is not applied to expanded rows on DataTable [\#1987](https://github.com/primefaces/primereact/issues/1987)
+- Improve type definitions for IDEs [\#1986](https://github.com/primefaces/primereact/issues/1986)
+
+**Fixed Bugs:**
+
+- Multiselect item on 0 index is getting selected [\#2012](https://github.com/primefaces/primereact/issues/2012)
+- MultiSelect is not working nested value option [\#2011](https://github.com/primefaces/primereact/issues/2011)
+- DataTable checkbox-only selection:: behave as "single" mode. [\#2008](https://github.com/primefaces/primereact/issues/2008)
+- ColorPicker: add missing input attributes, part 2: type definitions [\#2006](https://github.com/primefaces/primereact/issues/2006)
+- ListBox fails on tap item in mobile [\#2000](https://github.com/primefaces/primereact/issues/2000)
+- InputTextarea with auto resize isn't sized correctly when initially populated with a long string [\#1999](https://github.com/primefaces/primereact/issues/1999)
+- The Toast component missed the 'top-center' and 'bottom-center' positions in the typings [\#1996](https://github.com/primefaces/primereact/issues/1996)
+- TreeSelect onNodeExpand Event Never Fires [\#1995](https://github.com/primefaces/primereact/issues/1995)
+- AccordionTab cannot be rendered conditionally [\#1992](https://github.com/primefaces/primereact/issues/1992)
+- When a selected date is deselected, the inputfield is not updated. [\#1991](https://github.com/primefaces/primereact/issues/1991)
+- Non-sortable columns call onSort callback in DataTable [\#1989](https://github.com/primefaces/primereact/issues/1989)
+- Treetable break after toggle columns [\#1988](https://github.com/primefaces/primereact/issues/1988)
+- Tooltip: Fixed tooltip doesnt work with elements inside Tooltip children \( autoHide = false \) [\#1985](https://github.com/primefaces/primereact/issues/1985)
+- The emptyFilterMessage no longer working on Dropdown/MuliSelect components [\#1984](https://github.com/primefaces/primereact/issues/1984)
+- InputNumber's onValueChange is called unconditionally when the onBlur event occurs. [\#1842](https://github.com/primefaces/primereact/issues/1842)
+- Overlay Components not working for Mobile devices [\#1694](https://github.com/primefaces/primereact/issues/1694)
+
+## [6.3.1](https://github.com/primefaces/primereact/tree/6.3.1) (2021-04-25)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.3.0...6.3.1)
+
+**Implemented New Features and Enhancements:**
+
+- Improve filled control on InputText [\#1977](https://github.com/primefaces/primereact/issues/1977)
+
+**Fixed Bugs:**
+
+- DataTable - EventParams - wrong interface attribute [\#1983](https://github.com/primefaces/primereact/issues/1983)
+- The optionDisabled property is wrongly typed [\#1982](https://github.com/primefaces/primereact/issues/1982)
+- Galleria and Carousel is not working as expected [\#1981](https://github.com/primefaces/primereact/issues/1981)
+- Typescript: Props aren't exported anymore [\#1979](https://github.com/primefaces/primereact/issues/1979)
+- The panel always stays open with browser's autofill feature on Password [\#1978](https://github.com/primefaces/primereact/issues/1978)
+- The rowData has wrong type on DataTable [\#1976](https://github.com/primefaces/primereact/issues/1976)
+
+## [6.3.0](https://github.com/primefaces/primereact/tree/6.3.0) (2021-04-22)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.2.1...6.3.0)
+
+**Breaking Changes:**
+
+- Improve type definitions on all components [\#1877](https://github.com/primefaces/primereact/issues/1877)
+
+**Implemented New Features and Enhancements:**
+
+- New Component: TreeSelect [\#1971](https://github.com/primefaces/primereact/issues/1971)
+- New Component: MultiStateCheckbox [\#1812](https://github.com/primefaces/primereact/issues/1812)
+- Add cellSelection property to DataTable [\#1942](https://github.com/primefaces/primereact/issues/1942)
+- Add dragSelection property to DataTable [\#1932](https://github.com/primefaces/primereact/issues/1932)
+- Improve selectionMode property on DataTable [\#1926](https://github.com/primefaces/primereact/issues/1926)
+- Add zIndex option to PrimeReact api [\#1924](https://github.com/primefaces/primereact/issues/1924)
+- Add appendTo option to PrimeReact api [\#1964](https://github.com/primefaces/primereact/issues/1964)
+- Improve ref property on Form components [\#1920](https://github.com/primefaces/primereact/issues/1920)
+- Add transitionOptions property to Components that use CSSTransition API [\#1917](https://github.com/primefaces/primereact/issues/1917)
+- Add showHeader property to Tree [\#1970](https://github.com/primefaces/primereact/issues/1970)
+- Add filterValue and onFilterValueChange property to Tree [\#1968](https://github.com/primefaces/primereact/issues/1968)
+- Add header and footer to Tree [\#1967](https://github.com/primefaces/primereact/issues/1967)
+- Constants for Message Severities [\#1962](https://github.com/primefaces/primereact/issues/1962)
+- Reimplement EventBus [\#1961](https://github.com/primefaces/primereact/issues/1961)
+- Add new params to filterFunction on Column [\#1956](https://github.com/primefaces/primereact/issues/1956)
+- Add headerTemplate property to TabPanel on TabView [\#1955](https://github.com/primefaces/primereact/issues/1955)
+- Add showOnFocus property to Dropdown [\#1954](https://github.com/primefaces/primereact/issues/1954)
+- Add onShow and onHide callbacks to Overlay and Modal Components [\#1951](https://github.com/primefaces/primereact/issues/1951)
+- Add 'self' value to appendTo property on Components [\#1949](https://github.com/primefaces/primereact/issues/1949)
+- Add autoHide property to Tooltip [\#1946](https://github.com/primefaces/primereact/issues/1946)
+- Improve Typing for ToolTips [\#1916](https://github.com/primefaces/primereact/issues/1916)
+- InputNumber with required property doesn't behave the same as html \ element. [\#1912](https://github.com/primefaces/primereact/issues/1912)
+- Add sortableDisabled property to Column [\#1911](https://github.com/primefaces/primereact/issues/1911)
+- Add headerTemplate property to FileUplaod [\#1907](https://github.com/primefaces/primereact/issues/1907)
+- Add headerClassName, headerStyle, contentClassName and contentStyle properties to FileUpload [\#1905](https://github.com/primefaces/primereact/issues/1905)
+- Add itemTemplate property to FileUpload [\#1904](https://github.com/primefaces/primereact/issues/1904)
+- Add chooseOptions, uploadOptions and cancelOptions properties to FileUpload [\#1903](https://github.com/primefaces/primereact/issues/1903)
+- Close multiselect dropdown on button click of panelFooterTemplate / Add onShow & onHide event [\#1891](https://github.com/primefaces/primereact/issues/1891)
+- Add loading property to Button [\#1876](https://github.com/primefaces/primereact/issues/1876)
+- Can't use multiple file upload when mode is set to "basic" [\#1649](https://github.com/primefaces/primereact/issues/1649)
+- Use of "\[key: string\]: any;" in type definitions circumvents type safety [\#1615](https://github.com/primefaces/primereact/issues/1615)
+- OverlayPanel: incorrect type definitions for show/hide arguments [\#1356](https://github.com/primefaces/primereact/issues/1356)
+
+**Fixed Bugs:**
+
+- Striped class is not working as expected on DataTable with expanded rows [\#1972](https://github.com/primefaces/primereact/issues/1972)
+- Touch event is not working on ColorPicker [\#1960](https://github.com/primefaces/primereact/issues/1960)
+- The root menuitem does not support template option on PanelMenu [\#1953](https://github.com/primefaces/primereact/issues/1953)
+- Dialog can't close when you press ESC key [\#1947](https://github.com/primefaces/primereact/issues/1947)
+- MultiSelect Button disabled issue [\#1943](https://github.com/primefaces/primereact/issues/1943)
+- Dialog minWidth and minHeight issue [\#1940](https://github.com/primefaces/primereact/issues/1940)
+- Dropdown, MultiSelect, Listbox option that has disabled property is not disabled [\#1936](https://github.com/primefaces/primereact/issues/1936)
+- MultiSelect, selecting disabled options [\#1934](https://github.com/primefaces/primereact/issues/1934)
+- Uncaught Error: Cannot find module './images/color.png' [\#1931](https://github.com/primefaces/primereact/issues/1931)
+- Randomly generated IDs in components throw a warning on SSR [\#1922](https://github.com/primefaces/primereact/issues/1922)
+- Dropdown 'optionDisabled' is wrongly typed as boolean [\#1921](https://github.com/primefaces/primereact/issues/1921)
+- "scrollHeight" for autocomplete doesn't work [\#1918](https://github.com/primefaces/primereact/issues/1918)
+- DataTable and TreeTable Typing is wrong [\#1914](https://github.com/primefaces/primereact/issues/1914)
+- Incorrect types for CascadeSelectProps and ConfirmDialogProps [\#1908](https://github.com/primefaces/primereact/issues/1908)
+- Tooltip is not working with 'disabled' attribute of HTML element as expected. [\#1906](https://github.com/primefaces/primereact/issues/1906)
+- Slider does not work with fractional step values [\#1901](https://github.com/primefaces/primereact/issues/1901)
+- Animation "none" not working for Skeleton [\#1900](https://github.com/primefaces/primereact/issues/1900)
+- PickList transfer buttons disable and items selection issue [\#1898](https://github.com/primefaces/primereact/issues/1898)
+- Multiselect malfunction with 'optionValue' prop setted [\#1897](https://github.com/primefaces/primereact/issues/1897)
+- SlideMenu menu model template has wrong classname [\#1894](https://github.com/primefaces/primereact/issues/1894)
+- SlideMenu does not correctly accept className prop [\#1893](https://github.com/primefaces/primereact/issues/1893)
+- A maximizable dialog cannot be maximized properly after its size or position has been changed [\#1888](https://github.com/primefaces/primereact/issues/1888)
+- Password component doesn't visualize properly the value of the variable serving as it's value when it is programmatically changed [\#1885](https://github.com/primefaces/primereact/issues/1885)
+- FullCalendar, Editor and Chart are not working with NEXT.js [\#1884](https://github.com/primefaces/primereact/issues/1884)
+- editor automatically gains focus when intializing model with data [\#1851](https://github.com/primefaces/primereact/issues/1851)
+- TreeTable does not account for changes in scrollHeight [\#1850](https://github.com/primefaces/primereact/issues/1850)
+- Picklist reorder causes high level error. [\#1843](https://github.com/primefaces/primereact/issues/1843)
+- Fieldset shows empty legend over its border [\#1433](https://github.com/primefaces/primereact/issues/1433)
+
+## [6.2.1](https://github.com/primefaces/primereact/tree/6.2.1) (2021-03-17)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.2.0...6.2.1)
+
+**Fixed Bugs:**
+
+- Overlay Components throw an exception with Next.js [\#1880](https://github.com/primefaces/primereact/issues/1880)
+
+## [6.2.0](https://github.com/primefaces/primereact/tree/6.2.0) (2021-03-16)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.1.0...6.2.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add zIndex options to PrimeReact api [\#1878](https://github.com/primefaces/primereact/issues/1878)
+- Set appendTo as body by default [\#1875](https://github.com/primefaces/primereact/issues/1875)
+- Add option group support to Dropdown [\#1874](https://github.com/primefaces/primereact/issues/1874)
+- Add option group support to MultiSelect [\#1873](https://github.com/primefaces/primereact/issues/1873)
+- Add option group support to Listbox [\#1872](https://github.com/primefaces/primereact/issues/1872)
+- Add option group support to Autocomplete [\#1871](https://github.com/primefaces/primereact/issues/1871)
+- Improve close button style on Inplace [\#1861](https://github.com/primefaces/primereact/issues/1861)
+- Improve type definition of completeMethod event on AutoComplete [\#1680](https://github.com/primefaces/primereact/issues/1680)
+
+**Fixed Bugs:**
+
+- Datatable rows per page doesn't work [\#1870](https://github.com/primefaces/primereact/issues/1870)
+- Server side error because OverlayEventBus [\#1869](https://github.com/primefaces/primereact/issues/1869)
+- Cell Editing doesn't work on child nodes in TreeTable [\#1865](https://github.com/primefaces/primereact/issues/1865)
+- Ability to clear password \(set value of password to blank\) [\#1854](https://github.com/primefaces/primereact/issues/1854)
+
+## [6.1.0](https://github.com/primefaces/primereact/tree/6.1.0) (2021-03-09)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.0.2...6.1.0)
+
+**Implemented New Features and Enhancements:**
+
+- Color Palettes for Each Theme [\#1860](https://github.com/primefaces/primereact/issues/1860)
+- Add touch support to ColorPicker [\#1857](https://github.com/primefaces/primereact/issues/1857)
+- Add breakpoints property to Dialog, ConfirmDialog and OverlayPanel [\#1856](https://github.com/primefaces/primereact/issues/1856)
+- Add selectionOnly options to CSV export on DataTable [\#1853](https://github.com/primefaces/primereact/issues/1853)
+- Add multiple property to PanelMenu [\#1846](https://github.com/primefaces/primereact/issues/1846)
+- Add expanded option to MenuModel [\#1845](https://github.com/primefaces/primereact/issues/1845)
+- Add panelHeaderTemplate and panelFooterTemplate properties to MultiSelect [\#1841](https://github.com/primefaces/primereact/issues/1841)
+- Add paginatorClassName to DataTable, TreeTable and DataView [\#1840](https://github.com/primefaces/primereact/issues/1840)
+- Improve template option on Paginator [\#1839](https://github.com/primefaces/primereact/issues/1839)
+- Improve the interaction of nested overlays [\#1832](https://github.com/primefaces/primereact/issues/1832)
+- Add disabled option to Tooltip [\#1827](https://github.com/primefaces/primereact/issues/1827)
+- Add onClick event to Avatar [\#1819](https://github.com/primefaces/primereact/issues/1819)
+- Improve checkbox selection on DataTable [\#1817](https://github.com/primefaces/primereact/issues/1817)
+- \[Multiselect\] Feature request: Configure Maximum allowed number of items selectable in Multiselect [\#1815](https://github.com/primefaces/primereact/issues/1815)
+- data-pr-{options} on Global Tooltip doesn't work [\#1811](https://github.com/primefaces/primereact/issues/1811)
+- Menubar and Toolbar, start/end wrong prop types, that don't accept JSX.Element type [\#1809](https://github.com/primefaces/primereact/issues/1809)
+- Tooltip does not disappear when components are disabled [\#1806](https://github.com/primefaces/primereact/issues/1806)
+- Add onClose callback to custom content on ToastMessage [\#1805](https://github.com/primefaces/primereact/issues/1805)
+- Add draggable and resizable features to Dialog [\#1616](https://github.com/primefaces/primereact/issues/1616)
+- DataTable/TreeTable: implement configurable filterDelay [\#1440](https://github.com/primefaces/primereact/issues/1440)
+- Disabling a Menu Item doesnt add aria-disabled label [\#1434](https://github.com/primefaces/primereact/issues/1434)
+- TreeTable/DataTable goes to edit mode when selected \(single click\) [\#1292](https://github.com/primefaces/primereact/issues/1292)
+- Add removableSort property on TreeTable component [\#1275](https://github.com/primefaces/primereact/issues/1275)
+- Change row navigation structure on DataTable with selection [\#1162](https://github.com/primefaces/primereact/issues/1162)
+- Trigger row editing on datatable programmatically [\#1135](https://github.com/primefaces/primereact/issues/1135)
+- Add showFilterClear proprty to Dropdown [\#1081](https://github.com/primefaces/primereact/issues/1081)
+- Improve the parameters of onDragDrop callback on Tree [\#1020](https://github.com/primefaces/primereact/issues/1020)
+- PanelMenu collapses on clicking the menu link instead of being in expanded state [\#1011](https://github.com/primefaces/primereact/issues/1011)
+- Support for svg element in icon properties [\#971](https://github.com/primefaces/primereact/issues/971)
+- Accessibility of the DataTable expander cell button [\#921](https://github.com/primefaces/primereact/issues/921)
+- Accessibility issues in Tooltip and Dialog components [\#862](https://github.com/primefaces/primereact/issues/862)
+- Add mask property to Calendar [\#765](https://github.com/primefaces/primereact/issues/765)
+- Keyboard Accessibility for Slider [\#694](https://github.com/primefaces/primereact/issues/694)
+- Add onBeforeEditorShow and onBeforeEditorHide callbacks to Column on DataTable with cell editing [\#589](https://github.com/primefaces/primereact/issues/589)
+- Add headerTemplate property to Panel [\#1858](https://github.com/primefaces/primereact/issues/1858)
+
+**Fixed Bugs:**
+
+- DataTable is not working with defaultSortOrder={-1} [\#1855](https://github.com/primefaces/primereact/issues/1855)
+- PanelMenu animation is not working as expected [\#1844](https://github.com/primefaces/primereact/issues/1844)
+- CascadeSelect is not working with appendTo property [\#1833](https://github.com/primefaces/primereact/issues/1833)
+- Editing DataTable and TreeTable are not working as expected on React/ReactDOM ^17.0.1 [\#1828](https://github.com/primefaces/primereact/issues/1828)
+- MenuItem interface missing template property [\#1823](https://github.com/primefaces/primereact/issues/1823)
+- When the 'rows' property changes, Pagination component does not update [\#1820](https://github.com/primefaces/primereact/issues/1820)
+- InputText component reference returns Invalid prop forwardRef [\#1818](https://github.com/primefaces/primereact/issues/1818)
+- PickList: Move Up \(Single\) and Move Down buttons are not working [\#1814](https://github.com/primefaces/primereact/issues/1814)
+- DataTable - accessibility of sorting buttons [\#1813](https://github.com/primefaces/primereact/issues/1813)
+- Dropdown menu is separate from the input field [\#1808](https://github.com/primefaces/primereact/issues/1808)
+- DataTable csv export fails in chrome but is working in IE [\#1098](https://github.com/primefaces/primereact/issues/1098)
+- The toggler icon of Tree/TreeTable is not displaying correctly in mobile mode [\#1859](https://github.com/primefaces/primereact/issues/1859)
+
+## [6.0.2](https://github.com/primefaces/primereact/tree/6.0.2) (2021-02-04)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.0.1...6.0.2)
+
+**Implemented New Features and Enhancements:**
+
+- Add autoHighlight property to AutoComplete [\#1801](https://github.com/primefaces/primereact/issues/1801)
+- Add forceSelection to AutoComplete [\#1800](https://github.com/primefaces/primereact/issues/1800)
+- Improve Password implementation [\#1799](https://github.com/primefaces/primereact/issues/1799)
+- InplaceDisplay has no ariaLabel property [\#1796](https://github.com/primefaces/primereact/issues/1796)
+- Add autoFocus property to InputNumber [\#1794](https://github.com/primefaces/primereact/issues/1794)
+- Change the type of loader property on DataScroller [\#1791](https://github.com/primefaces/primereact/issues/1791)
+- Improve PrimeReact components for React.StrictMode [\#1790](https://github.com/primefaces/primereact/issues/1790)
+- Improve rowEditor buttons on DataTable with editMode="row" [\#1788](https://github.com/primefaces/primereact/issues/1788)
+
+**Fixed Bugs:**
+
+- AutoComplete in FireFox does not pass focus on Tab [\#1798](https://github.com/primefaces/primereact/issues/1798)
+- Fullcalendar Week View Missing Vertical Lines [\#1797](https://github.com/primefaces/primereact/issues/1797)
+- SplitterPanel is not exported in TypeScript [\#1795](https://github.com/primefaces/primereact/issues/1795)
+- Navigator Calendar taking current year when yearRange property is less than current year [\#1793](https://github.com/primefaces/primereact/issues/1793)
+- Datatable doesn't change page when the last element on a page is removed. [\#1792](https://github.com/primefaces/primereact/issues/1792)
+- DataTable ContextMenu Third Reposition [\#1789](https://github.com/primefaces/primereact/issues/1789)
+- TreeTable tabbing between editable cells not working [\#1617](https://github.com/primefaces/primereact/issues/1617)
+
+## [6.0.1](https://github.com/primefaces/primereact/tree/6.0.1) (2021-01-28)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/6.0.0...6.0.1)
+
+**Implemented New Features and Enhancements:**
+
+- Clearing Dropdown returns null instead of undefined [\#1784](https://github.com/primefaces/primereact/issues/1784)
+- Improve template property on MenuModel API [\#1783](https://github.com/primefaces/primereact/issues/1783)
+- Add CascadeSelect to FloatLabelDemo [\#1781](https://github.com/primefaces/primereact/issues/1781)
+- Add imageAlt and onImageError to Avatar [\#1779](https://github.com/primefaces/primereact/issues/1779)
+- Add imageAlt and onImageError property to Chip [\#1778](https://github.com/primefaces/primereact/issues/1778)
+- Improve custom content option on Button [\#1777](https://github.com/primefaces/primereact/issues/1777)
+- Add restoreTableState method to DataTable [\#1776](https://github.com/primefaces/primereact/issues/1776)
+- If Tooltip's content is empty, the tooltip may not be rendered. [\#1770](https://github.com/primefaces/primereact/issues/1770)
+- Controlled Knob does not react to value changes on props [\#1766](https://github.com/primefaces/primereact/issues/1766)
+- Get filtered rows from global filter action [\#1763](https://github.com/primefaces/primereact/issues/1763)
+- Feature Request: DataTable hide expander when there are no children rows [\#1762](https://github.com/primefaces/primereact/issues/1762)
+- Change the type of content property in ToastMessage [\#1761](https://github.com/primefaces/primereact/issues/1761)
+- Add p-component class to Calendar [\#1756](https://github.com/primefaces/primereact/issues/1756)
+- Improve dynamic mask on InputMask [\#1718](https://github.com/primefaces/primereact/issues/1718)
+- MultiSelect implement SelectItem disabled [\#1698](https://github.com/primefaces/primereact/issues/1698)
+- Do not hide overlays on body scroll [\#1655](https://github.com/primefaces/primereact/issues/1655)
+- Add template property support to MenuModel API in all menu components [\#1635](https://github.com/primefaces/primereact/issues/1635)
+
+**Fixed Bugs:**
+
+- Button link is invisible in material themes [\#1786](https://github.com/primefaces/primereact/issues/1786)
+- Inline Calendar doesn't display correctly with time/button bar [\#1782](https://github.com/primefaces/primereact/issues/1782)
+- Improve float label support in overlay selects [\#1780](https://github.com/primefaces/primereact/issues/1780)
+- Avatar with image and shape="circle" doesn't have border-radius style [\#1773](https://github.com/primefaces/primereact/issues/1773)
+- Primereact 6 doesn't work once compiled with Webpack [\#1771](https://github.com/primefaces/primereact/issues/1771)
+- No typing for confirmPopup and confirmDialog [\#1765](https://github.com/primefaces/primereact/issues/1765)
+- Cascade Select material theming is inconsistent [\#1757](https://github.com/primefaces/primereact/issues/1757)
+- DataTable with editMode="cell" doesn't work as expected [\#1752](https://github.com/primefaces/primereact/issues/1752)
+- Problem in entering negative value in INPUTNUMBER. [\#1746](https://github.com/primefaces/primereact/issues/1746)
+- Calendar input does not update view when hourFormat changes [\#1711](https://github.com/primefaces/primereact/issues/1711)
+
+## [6.0.0](https://github.com/primefaces/primereact/tree/6.0.0) (2021-01-12)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/5.0.2...6.0.0)
+
+**Breaking Changes:**
+
+- Change the type of locale property on Calendar [\#1750](https://github.com/primefaces/primereact/issues/1750)
+- Change the import of PrimeReact class [\#1751](https://github.com/primefaces/primereact/issues/1751)
+- Rename 'readonly' property with 'readOnly' on all components [\#1738](https://github.com/primefaces/primereact/issues/1738)
+- Remove onSourceSelect and onTargetSelect callbacks from PickList [\#1707](https://github.com/primefaces/primereact/issues/1707)
+- Change the type of tabIndex property on all components [\#1566](https://github.com/primefaces/primereact/issues/1566)
+
+**Implemented New Features and Enhancements:**
+
+- Locale API [\#1749](https://github.com/primefaces/primereact/issues/1749)
+- New Component: CascadeSelect [\#1736](https://github.com/primefaces/primereact/issues/1736)
+- New Component: Chip [\#1734](https://github.com/primefaces/primereact/issues/1734)
+- New Component: ScrollTop [\#1733](https://github.com/primefaces/primereact/issues/1733)
+- New Component: ConfirmPopup [\#1731](https://github.com/primefaces/primereact/issues/1731)
+- New Component: ConfirmDialog [\#1730](https://github.com/primefaces/primereact/issues/1730)
+- New Component: Splitter [\#1729](https://github.com/primefaces/primereact/issues/1729)
+- New Component: Knob [\#1727](https://github.com/primefaces/primereact/issues/1727)
+- New Component: Divider [\#1726](https://github.com/primefaces/primereact/issues/1726)
+- New Component: Skeleton [\#1725](https://github.com/primefaces/primereact/issues/1725)
+- New Component: Tag [\#1723](https://github.com/primefaces/primereact/issues/1723)
+- New Component: Badge [\#1719](https://github.com/primefaces/primereact/issues/1719)
+- New Component: Avatar [\#1717](https://github.com/primefaces/primereact/issues/1717)
+- Add icons property to Panel [\#1748](https://github.com/primefaces/primereact/issues/1748)
+- Change the type of header property on Panel [\#1747](https://github.com/primefaces/primereact/issues/1747)
+- Dialog dismissableMask didn't work if hide the close icon [\#1745](https://github.com/primefaces/primereact/issues/1745)
+- Chips and AutoComplete\(multiple mode\) support multiline input mode [\#1740](https://github.com/primefaces/primereact/issues/1740)
+- Improving the initial focus of the Dialog [\#1737](https://github.com/primefaces/primereact/issues/1737)
+- Improve Dialog implementation for ConfirmDialog [\#1732](https://github.com/primefaces/primereact/issues/1732)
+- Add tabIndex property to Checkbox [\#1716](https://github.com/primefaces/primereact/issues/1716)
+- Add sourceSelection and targetSelection properties to PickList [\#1708](https://github.com/primefaces/primereact/issues/1708)
+- Add filterValue and onFilterValueChange properties to ListBox [\#1706](https://github.com/primefaces/primereact/issues/1706)
+- Add onKeyDown event to InputNumber [\#1695](https://github.com/primefaces/primereact/issues/1695)
+- Constants for PrimeIcons [\#1625](https://github.com/primefaces/primereact/issues/1625)
+
+**Fixed Bugs:**
+
+- Chips throws a JS exception [\#1754](https://github.com/primefaces/primereact/issues/1754)
+- Typo in tabIndex property name [\#1710](https://github.com/primefaces/primereact/issues/1710)
+- DataTable with empty frozen column throws a JS exception [\#1703](https://github.com/primefaces/primereact/issues/1703)
+- Prop type incorrect for Timeline [\#1700](https://github.com/primefaces/primereact/issues/1700)
+- Datatable with stateStorage property saves filterheader as extra columnwidth [\#1697](https://github.com/primefaces/primereact/issues/1697)
+- DataTable edit not work \(Input disappears immediately after clicking cell\) in react-dom@17.0.1 [\#1685](https://github.com/primefaces/primereact/issues/1685)
+
+## [5.0.2](https://github.com/primefaces/primereact/tree/5.0.2) (2020-11-30)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/5.0.1...5.0.2)
+
+**Breaking Changes:**
+
+- Change params of onEditorInit, onEditorSubmit, onEditorCancel and editorValidator callbacks on Column [\#1692](https://github.com/primefaces/primereact/issues/1692)
+
+**Implemented New Features and Enhancements:**
+
+- Remove PrimeFlex dependency from MegaMenu [\#1690](https://github.com/primefaces/primereact/issues/1690)
+- Chips display for MultiSelect [\#1689](https://github.com/primefaces/primereact/issues/1689)
+- Add the 'enter' key support to InputNumber [\#1688](https://github.com/primefaces/primereact/issues/1688)
+- New Component: Timeline [\#1687](https://github.com/primefaces/primereact/issues/1687)
+- Improve Password implementation [\#1684](https://github.com/primefaces/primereact/issues/1684)
+- Improve Tooltip implementation [\#1683](https://github.com/primefaces/primereact/issues/1683)
+- Add onFocus and onBlur events on InputMask [\#1677](https://github.com/primefaces/primereact/issues/1677)
+- OverlayPanel - arrow always on the left side of the panel. [\#1671](https://github.com/primefaces/primereact/issues/1671)
+- Change the types of header, footer, title, subTitle properties on Card [\#1658](https://github.com/primefaces/primereact/issues/1658)
+- Add separator support to SplitButton [\#1656](https://github.com/primefaces/primereact/issues/1656)
+- Do not hide overlays on body scroll [\#1655](https://github.com/primefaces/primereact/issues/1655)
+- Remove 'classnames' dependency from PrimeReact components [\#1653](https://github.com/primefaces/primereact/issues/1653)
+- Add showClear property to MultiSelect [\#1627](https://github.com/primefaces/primereact/issues/1627)
+- Add mediumRegex and strongRegex property to Password [\#1623](https://github.com/primefaces/primereact/issues/1623)
+- Add browser event param to editor callbacks on Datatable [\#1577](https://github.com/primefaces/primereact/issues/1577)
+
+**Fixed Bugs:**
+
+- DataView throws an exception when the last page is reached using Paginator [\#1691](https://github.com/primefaces/primereact/issues/1691)
+- DataTable edit not work \(Input disappears immediately after clicking cell\) in react-dom@17.0.1 [\#1685](https://github.com/primefaces/primereact/issues/1685)
+- Chips is not working when the initial value sets 'null' [\#1678](https://github.com/primefaces/primereact/issues/1678)
+- Global tooltip documentation missing [\#1676](https://github.com/primefaces/primereact/issues/1676)
+- Calendar value change does not update UI [\#1672](https://github.com/primefaces/primereact/issues/1672)
+- Tooltip with `showDelay` appears despite cursor has already left the Input [\#1667](https://github.com/primefaces/primereact/issues/1667)
+- When a partial selection is made among children of a node, the minus icon doesn't appear in the checkbox of that node. [\#1657](https://github.com/primefaces/primereact/issues/1657)
+- Float label is not working on Chips [\#1654](https://github.com/primefaces/primereact/issues/1654)
+- DataTable with lazy mode and multiple selection doesn't work as expected [\#1636](https://github.com/primefaces/primereact/issues/1636)
+- pRipple working when disabled\(etc menuitem\) [\#1634](https://github.com/primefaces/primereact/issues/1634)
+- DataTable Context Menu doesn't reposition [\#1574](https://github.com/primefaces/primereact/issues/1574)
+- Multiple sort in TreeTable is not working when passing multisortmeta props [\#1442](https://github.com/primefaces/primereact/issues/1442)
+
+## [5.0.1](https://github.com/primefaces/primereact/tree/5.0.1) (2020-10-12)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/5.0.0...5.0.1)
+
+**Implemented New Features and Enhancements:**
+
+- Soho Theme [\#1632](https://github.com/primefaces/primereact/issues/1632)
+- FluentUI Theme [\#1631](https://github.com/primefaces/primereact/issues/1631)
+- Accordion border radius visual on PrimeOne themes [\#1629](https://github.com/primefaces/primereact/issues/1629)
+- Galleria and Carousel highlight item visual improvement on PrimeOne Themes [\#1626](https://github.com/primefaces/primereact/issues/1626)
+- Add dropdownAppendTo property to Paginator [\#1622](https://github.com/primefaces/primereact/issues/1622)
+- Add paginatorDropdownAppendTo property to DataTable, TreeTable and DataView [\#1621](https://github.com/primefaces/primereact/issues/1621)
+- Tooltip doesn't close in scrollable containers [\#1607](https://github.com/primefaces/primereact/issues/1607)
+
+**Fixed Bugs:**
+
+- Fullcalendar button styling issues [\#1633](https://github.com/primefaces/primereact/issues/1633)
+- TriStateCheckbox X icon not visible on Material themes [\#1630](https://github.com/primefaces/primereact/issues/1630)
+- TreeNode toggler is not readable on hover when highlighted on bootstrap theme [\#1628](https://github.com/primefaces/primereact/issues/1628)
+- Dropdown items throws a JS exception [\#1624](https://github.com/primefaces/primereact/issues/1624)
+- TypeScript applications cannot find the 'Tooltip' module [\#1618](https://github.com/primefaces/primereact/issues/1618)
+- InputNumber with spinner mode throws a JS exception [\#1614](https://github.com/primefaces/primereact/issues/1614)
+- inputNumber with numeric prefix is not working as expected [\#1613](https://github.com/primefaces/primereact/issues/1613)
+- Problems when typing or pasting numbers into InputNumber [\#1612](https://github.com/primefaces/primereact/issues/1612)
+
+## [5.0.0](https://github.com/primefaces/primereact/tree/5.0.0) (2020-10-01)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/5.0.0-rc.2...5.0.0)
+
+**Implemented New Features and Enhancements:**
+
+- Lighter Highlight Color for PrimeOne Themes [\#1605](https://github.com/primefaces/primereact/issues/1605)
+- Add template property support to MenuModel API [\#1597](https://github.com/primefaces/primereact/issues/1597)
+- Add buttonTemplate property to SplitButton [\#1596](https://github.com/primefaces/primereact/issues/1596)
+- Add headerTemplate property to AccordionTab on Accordion [\#1594](https://github.com/primefaces/primereact/issues/1594)
+- Add expandIcon and collapseIcon properties to Accordion [\#1593](https://github.com/primefaces/primereact/issues/1593)
+- Add id property to Password [\#1590](https://github.com/primefaces/primereact/issues/1590)
+- Improvement in behavior of components that have overlay panels in scrollable containers [\#1589](https://github.com/primefaces/primereact/issues/1589)
+- InputNumber feature - allow negative values [\#1585](https://github.com/primefaces/primereact/issues/1585)
+- Add panelClassName and panelStyle properties for appendable overlays [\#1459](https://github.com/primefaces/primereact/issues/1459)
+- TreeTable: expose the filter method for TypeScript [\#1435](https://github.com/primefaces/primereact/issues/1435)
+
+**Fixed Bugs:**
+
+- Alignment issue on Scrollable TreeTable [\#1599](https://github.com/primefaces/primereact/issues/1599)
+- Alignment issue on Scrollable Datatable [\#1598](https://github.com/primefaces/primereact/issues/1598)
+- Button shows " " text if the label property is empty [\#1595](https://github.com/primefaces/primereact/issues/1595)
+- InputNumber cannot set value when format property is false [\#1582](https://github.com/primefaces/primereact/issues/1582)
+- Carousel page prop not detecting changes to prop value. [\#1464](https://github.com/primefaces/primereact/issues/1464)
+- Pagination \(currentPageReportTemplate\) is not showing correct page no for first [\#1453](https://github.com/primefaces/primereact/issues/1453)
+- MultiSelect: error when selecting option with null value [\#1446](https://github.com/primefaces/primereact/issues/1446)
+- MultiSelect: warning in console when using string array as options [\#1445](https://github.com/primefaces/primereact/issues/1445)
+
+## [5.0.0-rc.2](https://github.com/primefaces/primereact/tree/5.0.0-rc.2) (2020-09-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/5.0.0-rc.1...5.0.0-rc.2)
+
+**Implemented New Features and Enhancements:**
+
+- Add resetFilterOnHide property to MultiSelect [\#1565](https://github.com/primefaces/primereact/issues/1565)
+- Add resetFilterOnHide property to Dropdown [\#1564](https://github.com/primefaces/primereact/issues/1564)
+- Add keyboard support to MultiSelect [\#1563](https://github.com/primefaces/primereact/issues/1563)
+- Improve SelectButton implementation [\#1561](https://github.com/primefaces/primereact/issues/1561)
+- Add optionDisabled property to SelectButton [\#1560](https://github.com/primefaces/primereact/issues/1560)
+- Add emptyFilterMessage property to MultiSelect [\#1556](https://github.com/primefaces/primereact/issues/1556)
+- Add emptyFilterMessage property to Dropdown [\#1554](https://github.com/primefaces/primereact/issues/1554)
+- Negative sign with InputNumber [\#1551](https://github.com/primefaces/primereact/issues/1551)
+- InputNumber: pasting doesn't work correctly [\#1549](https://github.com/primefaces/primereact/issues/1549)
+- InputGroup support for input components with wrappers [\#1548](https://github.com/primefaces/primereact/issues/1548)
+- Update PrimeFlex documentation to 2.0.0 [\#1542](https://github.com/primefaces/primereact/issues/1542)
+- Scrollable Table alignment improvement [\#1541](https://github.com/primefaces/primereact/issues/1541)
+- DataTable onRowClick executes when multiple selection mode is enabled and user clicks on selection checkbox column cell [\#1534](https://github.com/primefaces/primereact/issues/1534)
+- Add content property to Message component [\#1463](https://github.com/primefaces/primereact/issues/1463)
+- Add color property to ProgressBar [\#1457](https://github.com/primefaces/primereact/issues/1457)
+- NumberInput does not pass down validation attributes to input element. [\#1444](https://github.com/primefaces/primereact/issues/1444)
+
+**Fixed Bugs:**
+
+- The left and right arrow keys not working on input elements inside Tree [\#1559](https://github.com/primefaces/primereact/issues/1559)
+- Items in PanelMenu are highlighted wrongly with Material dark themes [\#1557](https://github.com/primefaces/primereact/issues/1557)
+- Calendar misplaced layout if more than one month is shown [\#1553](https://github.com/primefaces/primereact/issues/1553)
+- inputNumber cannot set value bigger than 99.999 for an ES locale [\#1552](https://github.com/primefaces/primereact/issues/1552)
+- inputNumber with numeric prefix is not working as expected [\#1550](https://github.com/primefaces/primereact/issues/1550)
+- Item selection does not work on Dropdown with scrollable panel [\#1544](https://github.com/primefaces/primereact/issues/1544)
+- Dialog with Long Content does not scroll in IE11 [\#1538](https://github.com/primefaces/primereact/issues/1538)
+- Pill Text not centered [\#1532](https://github.com/primefaces/primereact/issues/1532)
+- Ripple effect with typescript [\#1530](https://github.com/primefaces/primereact/issues/1530)
+- Component TreeTable doesn't added props className [\#1473](https://github.com/primefaces/primereact/issues/1473)
+- Dialog aria-labelledby references an unexisting id [\#1405](https://github.com/primefaces/primereact/issues/1405)
+
+## [5.0.0-rc.1](https://github.com/primefaces/primereact/tree/5.0.0-rc.1) (2020-08-20)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/4.2.2...5.0.0-rc.1)
+
+**Breaking Changes:**
+
+- Change the values of position property on Dialog [\#1516](https://github.com/primefaces/primereact/issues/1516)
+- Rename iconsTemplate property to icons property on Dialog [\#1514](https://github.com/primefaces/primereact/issues/1514)
+- Rename iconsTemplate property to icons property on Sidebar [\#1513](https://github.com/primefaces/primereact/issues/1513)
+- Rename Growl component to Toast component [\#1512](https://github.com/primefaces/primereact/issues/1512)
+- Change some property names on Galleria [\#1503](https://github.com/primefaces/primereact/issues/1503)
+- Label Nova, Luna and Rhea as Legacy Themes [\#1501](https://github.com/primefaces/primereact/issues/1501)
+- Change the values of position property on Growl [\#1497](https://github.com/primefaces/primereact/issues/1497)
+- Remove responsive property from OrderList [\#1494](https://github.com/primefaces/primereact/issues/1494)
+- Remove responsive property from PickList [\#1493](https://github.com/primefaces/primereact/issues/1493)
+- Replace dotsContainerClassName with indicatorsContentClassName property on Carousel [\#1491](https://github.com/primefaces/primereact/issues/1491)
+- Remove Spinner Component [\#1488](https://github.com/primefaces/primereact/issues/1488)
+- Remove Lightbox component [\#1487](https://github.com/primefaces/primereact/issues/1487)
+- Migrate to PrimeOne Design Architecture [\#1484](https://github.com/primefaces/primereact/issues/1484)
+- Remove responsive attribute from DataTable [\#1250](https://github.com/primefaces/primereact/issues/1250)
+
+**Implemented New Features and Enhancements:**
+
+- Add emptyTemplate property to FileUpload [\#1508](https://github.com/primefaces/primereact/issues/1508)
+- New Component: Ripple [\#1507](https://github.com/primefaces/primereact/issues/1507)
+- Add index parameter to onRowEditInit and onRowSave callbacks on DataTable [\#1505](https://github.com/primefaces/primereact/issues/1505)
+- Add onEditorInit callback for cell editing mode to Column [\#1504](https://github.com/primefaces/primereact/issues/1504)
+- Add left and right properties to Toolbar [\#1502](https://github.com/primefaces/primereact/issues/1502)
+- Material Theme [\#1500](https://github.com/primefaces/primereact/issues/1500)
+- Bootstrap Theme [\#1499](https://github.com/primefaces/primereact/issues/1499)
+- Add start and end properties to Menubar [\#1498](https://github.com/primefaces/primereact/issues/1498)
+- Add valueTemplate property to Dropdown [\#1496](https://github.com/primefaces/primereact/issues/1496)
+- Add iconPos property to ToggleButton [\#1495](https://github.com/primefaces/primereact/issues/1495)
+- Add badge and badgeClassName properties to Button [\#1490](https://github.com/primefaces/primereact/issues/1490)
+- Add Badge styles to core css [\#1489](https://github.com/primefaces/primereact/issues/1489)
+- Improved Overlay Animations [\#1486](https://github.com/primefaces/primereact/issues/1486)
+- PrimeOne Themes [\#1485](https://github.com/primefaces/primereact/issues/1485)
+- Label Nova, Luna and Rhea as Legacy Themes [\#1483](https://github.com/primefaces/primereact/issues/1483)
+- Add contentClassName property to Dialog [\#1455](https://github.com/primefaces/primereact/issues/1455)
+- Add listClassName property to Listbox [\#1454](https://github.com/primefaces/primereact/issues/1454)
+- Change onSlideEnd callback param on Slider [\#1437](https://github.com/primefaces/primereact/issues/1437)
+- Improve Tooltip implementation [\#1436](https://github.com/primefaces/primereact/issues/1436)
+- Add onValueChange property to InputNumber [\#1418](https://github.com/primefaces/primereact/issues/1418)
+- It is impossible to type fractional digits on InputNumber [\#1380](https://github.com/primefaces/primereact/issues/1380)
+- Remove browserslist, leave processing and transpilation to applications [\#1312](https://github.com/primefaces/primereact/issues/1312)
+- Custom content support for Button [\#1258](https://github.com/primefaces/primereact/issues/1258)
+
+**Fixed Bugs:**
+
+- Global filter is not working with invalid values on TreeTable [\#1517](https://github.com/primefaces/primereact/issues/1517)
+- Captcha throws a JS exception [\#1509](https://github.com/primefaces/primereact/issues/1509)
+- Calendar with appendTo property isn't working as expected [\#1506](https://github.com/primefaces/primereact/issues/1506)
+- Chart does not update when its options and type properties change [\#1492](https://github.com/primefaces/primereact/issues/1492)
+- Dynamic options breaks InputNumber [\#1470](https://github.com/primefaces/primereact/issues/1470)
+- DatePicker Milliseconds jumps from 000 to 199 [\#1456](https://github.com/primefaces/primereact/issues/1456)
+- Typing for selectedItemTemplate in AutoComplete is wrong [\#1428](https://github.com/primefaces/primereact/issues/1428)
+- Can't type - as first symbol into an Inputnumber [\#1427](https://github.com/primefaces/primereact/issues/1427)
+- If the invalid value is entered to Calendar with keepInvalid property, the onChange event returns null [\#1422](https://github.com/primefaces/primereact/issues/1422)
+- Calling clearTimeout is required before unmounting AutoComplete [\#1421](https://github.com/primefaces/primereact/issues/1421)
+- Clear button is not closing Calendar [\#1416](https://github.com/primefaces/primereact/issues/1416)
+- File selection does not work after validation fails [\#1415](https://github.com/primefaces/primereact/issues/1415)
+- InputNumber prevents min key number [\#1412](https://github.com/primefaces/primereact/issues/1412)
+- ListBox, Dropdown: Using non-unique key [\#1397](https://github.com/primefaces/primereact/issues/1397)
+
+## [4.2.2](https://github.com/primefaces/primereact/tree/4.2.2) (2020-06-09)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/4.2.1...4.2.2)
+
+**Implemented New Features and Enhancements:**
+
+- Add onStateSave and onStateRestore callbacks to DataTable with stateStorage [\#1389](https://github.com/primefaces/primereact/issues/1389)
+- Change the type of iconsTemplate property on Dialog [\#1386](https://github.com/primefaces/primereact/issues/1386)
+- Calendar uses : instead of . as seperator for milliseconds [\#1385](https://github.com/primefaces/primereact/issues/1385)
+- Add custom mode to stateStorage [\#1382](https://github.com/primefaces/primereact/issues/1382)
+- ColorPicker: add missing input attributes [\#1323](https://github.com/primefaces/primereact/issues/1323)
+- Deprecate \*styleClass props in favor of \*className [\#1262](https://github.com/primefaces/primereact/issues/1262)
+
+**Fixed Bugs:**
+
+- Tree filter with onToggle method doesn't work as expected [\#1390](https://github.com/primefaces/primereact/issues/1390)
+- Calendar navigator skips one month [\#1388](https://github.com/primefaces/primereact/issues/1388)
+- Incorrect work page parameter in carousel [\#1387](https://github.com/primefaces/primereact/issues/1387)
+- The className property of Column is not set to \
element [\#1384](https://github.com/primefaces/primereact/issues/1384)
+- EmptyMessage property is not working with empty string on DataTable [\#1383](https://github.com/primefaces/primereact/issues/1383)
+- When the month is changed in Calendar inside OverlayPanel, the panel automatically closes. [\#1381](https://github.com/primefaces/primereact/issues/1381)
+- TreeTable column body prop function does not contain column argument [\#1366](https://github.com/primefaces/primereact/issues/1366)
+- When the input filter element is clicked, the panel closes on DropDown [\#1360](https://github.com/primefaces/primereact/issues/1360)
+
+## [4.2.1](https://github.com/primefaces/primereact/tree/4.2.1) (2020-05-11)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/4.2.0...4.2.1)
+
+**Implemented New Features and Enhancements:**
+
+- Remove filter method from ObjectUtils [\#1343](https://github.com/primefaces/primereact/issues/1343)
+- AutoComplete: selectedItemTemplate gets called for query [\#1296](https://github.com/primefaces/primereact/issues/1296)
+
+**Fixed Bugs:**
+
+- Editable Dropdown is not working as expected [\#1359](https://github.com/primefaces/primereact/issues/1359)
+- Dropdown throws an exception on console after filtering and keyboard navigation [\#1358](https://github.com/primefaces/primereact/issues/1358)
+- DataTable: filters are not rerendered when their state is changed [\#1352](https://github.com/primefaces/primereact/issues/1352)
+- DataTable: wrong type definition for onFilter [\#1351](https://github.com/primefaces/primereact/issues/1351)
+- Autofocus property doesn't work as expected on Textarea [\#1350](https://github.com/primefaces/primereact/issues/1350)
+- Editor Component readOnly property name wrong [\#1346](https://github.com/primefaces/primereact/issues/1346)
+- React multiselect defaultValue warning [\#1344](https://github.com/primefaces/primereact/issues/1344)
+- InputMask displayed value does not change when value changes to undefined or null [\#1342](https://github.com/primefaces/primereact/issues/1342)
+- Wrong import for FilterUtils [\#1339](https://github.com/primefaces/primereact/issues/1339)
+
+## [4.2.0](https://github.com/primefaces/primereact/tree/4.2.0) (2020-04-17)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/4.1.2...4.2.0)
+
+**Implemented New Features and Enhancements:**
+
+- New Component: InputNumber [\#1311](https://github.com/primefaces/primereact/issues/1311)
+- Add filterLocale property to Tree [\#1338](https://github.com/primefaces/primereact/issues/1338)
+- Add filterLocale property to TreeTable [\#1337](https://github.com/primefaces/primereact/issues/1337)
+- Add filterLocale property to MultiSelect [\#1336](https://github.com/primefaces/primereact/issues/1336)
+- Add filterLocale property to ListBox [\#1335](https://github.com/primefaces/primereact/issues/1335)
+- Add filterLocale property to Dropdown [\#1334](https://github.com/primefaces/primereact/issues/1334)
+- Add filterLocale property to DataTable [\#1333](https://github.com/primefaces/primereact/issues/1333)
+- Add checkValidity method to MultiSelect [\#1332](https://github.com/primefaces/primereact/issues/1332)
+- onFocus - onBlur for ToggleButton [\#1330](https://github.com/primefaces/primereact/issues/1330)
+- Update sortIcons [\#1329](https://github.com/primefaces/primereact/issues/1329)
+- Disabled prop for TriStateCheckbox [\#1325](https://github.com/primefaces/primereact/issues/1325)
+- Refactor OverlayPanel outside click detection [\#1320](https://github.com/primefaces/primereact/issues/1320)
+- Refactor MultiSelect outside click detection [\#1319](https://github.com/primefaces/primereact/issues/1319)
+- Refactor Menu outside click detection [\#1318](https://github.com/primefaces/primereact/issues/1318)
+- Refactor ColorPicker outside click detection [\#1317](https://github.com/primefaces/primereact/issues/1317)
+- Refactor Dropdown outside click detection [\#1310](https://github.com/primefaces/primereact/issues/1310)
+- Refactor AutoComplete outside click detection [\#1308](https://github.com/primefaces/primereact/issues/1308)
+- MultiSelect/Dropdown expose input attributes for labeling and validation purposes [\#1306](https://github.com/primefaces/primereact/issues/1306)
+- Autocomplete dropdown button close behavior enhancement [\#1305](https://github.com/primefaces/primereact/issues/1305)
+- Improve timepicker style on Calendar [\#1294](https://github.com/primefaces/primereact/issues/1294)
+- Add milliseconds support to Calendar [\#1293](https://github.com/primefaces/primereact/issues/1293)
+- Not nullable `dataKey` in DropDown break `selectedOption` property [\#1286](https://github.com/primefaces/primereact/issues/1286)
+- Separator for Chips [\#1285](https://github.com/primefaces/primereact/issues/1285)
+
+**Fixed Bugs:**
+
+- Dropdown checkValidity fails [\#1331](https://github.com/primefaces/primereact/issues/1331)
+- Calendar.showOtherMonths property not being used [\#1328](https://github.com/primefaces/primereact/issues/1328)
+- Disable prop on ToggleButton not working [\#1321](https://github.com/primefaces/primereact/issues/1321)
+- IE11: Autocomplete with dropdown and multiple selection requires doubleclick [\#1316](https://github.com/primefaces/primereact/issues/1316)
+- InputMask displayed value does not change when value changes to undefined or null [\#1309](https://github.com/primefaces/primereact/issues/1309)
+- multiSortMeta depends on single sort [\#1307](https://github.com/primefaces/primereact/issues/1307)
+- Carousel - Button inside carousel-item is not clickable in mobile phones [\#1300](https://github.com/primefaces/primereact/issues/1300)
+- AutoComplete: selectedItemTemplate ts binding claims to expect JSX.Element in return, but at runtime a string is expected [\#1297](https://github.com/primefaces/primereact/issues/1297)
+- FileUpload in auto mode sends two post requests in IE11 [\#1282](https://github.com/primefaces/primereact/issues/1282)
+- Today Button doesn't work on prefilled Calendar with timeonly [\#1281](https://github.com/primefaces/primereact/issues/1281)
+- TreeTable goes to edit mode when expanded [\#1276](https://github.com/primefaces/primereact/issues/1276)
+- Tree drag&drop not working if dragdropScope contains upper case letter [\#1182](https://github.com/primefaces/primereact/issues/1182)
+
+## [4.1.2](https://github.com/primefaces/primereact/tree/4.1.2) (2020-03-20)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/4.1.1...4.1.2)
+
+**Implemented New Features and Enhancements:**
+
+- DataView: lazy loading implementation [\#1264](https://github.com/primefaces/primereact/issues/1264)
+
+**Fixed Bugs:**
+
+- Multiple Sort doesn't work as expected in the DataTable if a sortable column has sortField and field properties [\#1279](https://github.com/primefaces/primereact/issues/1279)
+- Chips in disabled Autocomplete are not disabled [\#1278](https://github.com/primefaces/primereact/issues/1278)
+- Calendar display not update when value change. [\#1277](https://github.com/primefaces/primereact/issues/1277)
+- Calendar closes right away in Chrome when it has showTime={true} [\#1272](https://github.com/primefaces/primereact/issues/1272)
+- Setting state in onFocus of Datatable Editors crashes app [\#1271](https://github.com/primefaces/primereact/issues/1271)
+- Invalid Date in Calendar in IE11 crashes the app [\#1270](https://github.com/primefaces/primereact/issues/1270)
+- Tab-Key doesn't work in Datatable with cell editing on IE11 and Edge [\#1269](https://github.com/primefaces/primereact/issues/1269)
+- IE11: Autocomplete with dropdown requires doubleclick [\#1267](https://github.com/primefaces/primereact/issues/1267)
+- OnComplete callback has wrong property params on InputMask.d.ts [\#1265](https://github.com/primefaces/primereact/issues/1265)
+- Fix InputSwitch documentation for onLabel-offLabel [\#1263](https://github.com/primefaces/primereact/issues/1263)
+
+## [4.1.1](https://github.com/primefaces/primereact/tree/4.1.1) (2020-03-12)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/4.1.0...4.1.1)
+
+**Implemented New Features and Enhancements:**
+
+- Add onFocus-onBlur to Dropdown [\#1260](https://github.com/primefaces/primereact/issues/1260)
+- InputMask OnComplete does not contain the new value [\#1255](https://github.com/primefaces/primereact/issues/1255)
+- resetFilter function for Dropdown [\#1249](https://github.com/primefaces/primereact/issues/1249)
+- Improve type definition for onChange of form components [\#1199](https://github.com/primefaces/primereact/issues/1199)
+
+**Fixed Bugs:**
+
+- DataTable scrollHeight doesn't calculate correctly with frozen columns and header groups [\#1261](https://github.com/primefaces/primereact/issues/1261)
+- Disabled TabPanel focussable with TAB-Key [\#1254](https://github.com/primefaces/primereact/issues/1254)
+- Error on TreeTable docs about responsive [\#1253](https://github.com/primefaces/primereact/issues/1253)
+- Select components don't correctly return value [\#1252](https://github.com/primefaces/primereact/issues/1252)
+- currentPageReport should check for {last} boundary [\#1251](https://github.com/primefaces/primereact/issues/1251)
+- onClose of GrowlMessage is also allowing onClick to fire. [\#1248](https://github.com/primefaces/primereact/issues/1248)
+- loadingBody type is different to Documentation [\#1111](https://github.com/primefaces/primereact/issues/1111)
+
+## [4.1.0](https://github.com/primefaces/primereact/tree/4.1.0) (2020-03-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/4.0.0...4.1.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add reorderable to Column [\#1246](https://github.com/primefaces/primereact/issues/1246)
+- Implement filterBy and filterMatchMode for ListBox [\#1245](https://github.com/primefaces/primereact/issues/1245)
+- Implement filterBy and filterMatchMode for MultiSelect [\#1244](https://github.com/primefaces/primereact/issues/1244)
+- Add filterPlaceholder to MultiSelect [\#1242](https://github.com/primefaces/primereact/issues/1242)
+- Deprecate icon of SelectItem API [\#1239](https://github.com/primefaces/primereact/issues/1239)
+- Templating support to SelectButton [\#1238](https://github.com/primefaces/primereact/issues/1238)
+- Document SelectItem [\#1237](https://github.com/primefaces/primereact/issues/1237)
+- Change the type of emptyMessage property on DataTable [\#1236](https://github.com/primefaces/primereact/issues/1236)
+- Deprecate Lightbox [\#1235](https://github.com/primefaces/primereact/issues/1235)
+- Add optionValue to Select components [\#1230](https://github.com/primefaces/primereact/issues/1230)
+- Placeholder colors are not same [\#1229](https://github.com/primefaces/primereact/issues/1229)
+- Primitive values support in Select components [\#1228](https://github.com/primefaces/primereact/issues/1228)
+- Add filterHeaderStyle and filterHeaderClassName to Column [\#1227](https://github.com/primefaces/primereact/issues/1227)
+- Add rowHover to DataTable [\#1226](https://github.com/primefaces/primereact/issues/1226)
+- New options for CurrentPageReport [\#1225](https://github.com/primefaces/primereact/issues/1225)
+- New DataTable Customer Demo [\#1224](https://github.com/primefaces/primereact/issues/1224)
+- New filtering modes for Table [\#1223](https://github.com/primefaces/primereact/issues/1223)
+- Accents support in Table filtering [\#1222](https://github.com/primefaces/primereact/issues/1222)
+- Add filterField to column [\#1221](https://github.com/primefaces/primereact/issues/1221)
+- Move column filters to their own row [\#1220](https://github.com/primefaces/primereact/issues/1220)
+- Time support for min date or max date in calendar component [\#1217](https://github.com/primefaces/primereact/issues/1217)
+- Add filterPlaceholder to Listbox [\#1215](https://github.com/primefaces/primereact/issues/1215)
+- Improve style of p-link component [\#1213](https://github.com/primefaces/primereact/issues/1213)
+- Implement className in MultiSelect, Dropdown, SelectButton, ListBox options [\#1175](https://github.com/primefaces/primereact/issues/1175)
+- Allow Dialogs already maximized [\#1170](https://github.com/primefaces/primereact/issues/1170)
+- Implement filterBy and filterMatchMode for Dropdown [\#1149](https://github.com/primefaces/primereact/issues/1149)
+- Change the type of the 'header' property on TabPanel [\#1079](https://github.com/primefaces/primereact/issues/1079)
+- DataTable Columns: Conditional reorder [\#1032](https://github.com/primefaces/primereact/issues/1032)
+- Datatable Columns: Conditional select [\#1031](https://github.com/primefaces/primereact/issues/1031)
+
+**Fixed Bugs:**
+
+- Chips cover 100% although input is visually smaller [\#1241](https://github.com/primefaces/primereact/issues/1241)
+- Datatable doesn't change page when the last element on a page is removed. [\#1233](https://github.com/primefaces/primereact/issues/1233)
+- Filter does not work after adding a new node to the root node on Tree [\#1232](https://github.com/primefaces/primereact/issues/1232)
+- Clear Button does not clear the input value on Calendar [\#1231](https://github.com/primefaces/primereact/issues/1231)
+- Remove tabIndex from the headers of the non-sortable dataTable. [\#1219](https://github.com/primefaces/primereact/issues/1219)
+- The virtualScroll height is always added to rows on DataTable [\#1218](https://github.com/primefaces/primereact/issues/1218)
+- ContextMenu hide/onHide triggers even though already hidden [\#1189](https://github.com/primefaces/primereact/issues/1189)
+- Tree does not support Font Awesome icons [\#1187](https://github.com/primefaces/primereact/issues/1187)
+- Reset filter textbox of dropdown if options changes [\#1179](https://github.com/primefaces/primereact/issues/1179)
+- Deadlock situation in range slider [\#1094](https://github.com/primefaces/primereact/issues/1094)
+
+## [4.0.0](https://github.com/primefaces/primereact/tree/4.0.0) (2020-02-27)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.4.0...4.0.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add keepInvalid property to Calendar [\#1204](https://github.com/primefaces/primereact/issues/1204)
+- Add position property to Dialog [\#1203](https://github.com/primefaces/primereact/issues/1203)
+- Add FocusTrap support to Dialog [\#1202](https://github.com/primefaces/primereact/issues/1202)
+- Add sortFunction support to DataTable with multiple column sorting [\#1201](https://github.com/primefaces/primereact/issues/1201)
+- Remove min-width style from Dropdown [\#1196](https://github.com/primefaces/primereact/issues/1196)
+- Add maskClassName property to Dialog [\#1194](https://github.com/primefaces/primereact/issues/1194)
+- ReImplemented Steps styles [\#1191](https://github.com/primefaces/primereact/issues/1191)
+- Leave animation for Dialog [\#1181](https://github.com/primefaces/primereact/issues/1181)
+- Dialog header not visible [\#1174](https://github.com/primefaces/primereact/issues/1174)
+- Dialog is not displayed correctly in mobile view [\#1165](https://github.com/primefaces/primereact/issues/1165)
+- Add sort number feature to sortable columns on DataTable and TreeTable with multi sorting [\#1164](https://github.com/primefaces/primereact/issues/1164)
+- Add onRemove callback to FileUpload [\#1152](https://github.com/primefaces/primereact/issues/1152)
+- Add editing support to the input field on Calendar [\#1141](https://github.com/primefaces/primereact/issues/1141)
+- New Component: Galleria [\#1105](https://github.com/primefaces/primereact/issues/1105)
+
+**Fixed Bugs:**
+
+- Remove the legacy lifecycle method from Lightbox component [\#1200](https://github.com/primefaces/primereact/issues/1200)
+- The disabled items can be focused in the Steps [\#1192](https://github.com/primefaces/primereact/issues/1192)
+- Alignment problem on Growl message without details [\#1190](https://github.com/primefaces/primereact/issues/1190)
+- Maximizable property is not working correctly on dialog [\#1169](https://github.com/primefaces/primereact/issues/1169)
+- Dismissable mask behaves over dialog [\#1167](https://github.com/primefaces/primereact/issues/1167)
+- Typedefinition for DataTable OnFilter is wrong. [\#1163](https://github.com/primefaces/primereact/issues/1163)
+
+## [3.4.0](https://github.com/primefaces/primereact/tree/3.4.0) (2020-01-17)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.3.3...3.4.0)
+
+**Implemented New Features and Enhancements:**
+
+- Calendar component keyboard support [\#1157](https://github.com/primefaces/primereact/issues/1157)
+- Add expandableRowGroups property to DataTable [\#1148](https://github.com/primefaces/primereact/issues/1148)
+- Add removableSort property to DataTable [\#1142](https://github.com/primefaces/primereact/issues/1142)
+- Enhance Dialog Positioning [\#1138](https://github.com/primefaces/primereact/issues/1138)
+
+**Fixed Bugs:**
+
+- Wrong property name on the propTypes definition of Dropdown [\#1158](https://github.com/primefaces/primereact/issues/1158)
+- When the InputMask is focused, the mask disappears [\#1156](https://github.com/primefaces/primereact/issues/1156)
+- When the buttons inside the components are clicked, they submit the form [\#1155](https://github.com/primefaces/primereact/issues/1155)
+- The icon of the next button has wrong class name on Carousel [\#1154](https://github.com/primefaces/primereact/issues/1154)
+- Some DataView lazy and loading types missing [\#1131](https://github.com/primefaces/primereact/issues/1131)
+- TreeTable default filter value is not showing in the filter widget [\#1129](https://github.com/primefaces/primereact/issues/1129)
+- InputTextarea does not render props like cols and rows [\#1127](https://github.com/primefaces/primereact/issues/1127)
+- PanelMenu Icon does not show for entries without sub children [\#1121](https://github.com/primefaces/primereact/issues/1121)
+- ContextMenu.d.ts has wrong property name [\#1118](https://github.com/primefaces/primereact/issues/1118)
+- Dropdown cannot open the panel after double clicking an option [\#1053](https://github.com/primefaces/primereact/issues/1053)
+- InputMask is not changing the mask at runtime. [\#1021](https://github.com/primefaces/primereact/issues/1021)
+
+## [3.3.3](https://github.com/primefaces/primereact/tree/3.3.3) (2019-11-29)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.3.2...3.3.3)
+
+**Implemented New Features and Enhancements:**
+
+- Add exportable property to Column [\#1103](https://github.com/primefaces/primereact/issues/1103)
+- Add exportFunction property to DataTable [\#1102](https://github.com/primefaces/primereact/issues/1102)
+- Add repeat functionality to timer buttons on Calendar [\#1101](https://github.com/primefaces/primereact/issues/1101)
+- Add reset method to DataTable [\#1088](https://github.com/primefaces/primereact/issues/1088)
+- onColReorder in Datatable parameter missing [\#1080](https://github.com/primefaces/primereact/issues/1080)
+- Add disabled property to Tree [\#1078](https://github.com/primefaces/primereact/issues/1078)
+- Add selectedItemsLabel property to MultiSelect [\#1075](https://github.com/primefaces/primereact/issues/1075)
+- Add maxSelectedLabels property to MultiSelect [\#1074](https://github.com/primefaces/primereact/issues/1074)
+- Passing of data-\* Attributes as Props [\#1073](https://github.com/primefaces/primereact/issues/1073)
+
+**Fixed Bugs:**
+
+- DomHandler functions throw NPE on components [\#1104](https://github.com/primefaces/primereact/issues/1104)
+- Growl messages from "bottom\*" is not displaying as expected [\#1095](https://github.com/primefaces/primereact/issues/1095)
+- Properties of TreeNodes on TreeTable not Working [\#1085](https://github.com/primefaces/primereact/issues/1085)
+- className property of Message component not working [\#1076](https://github.com/primefaces/primereact/issues/1076)
+- Tree className property not working [\#1068](https://github.com/primefaces/primereact/issues/1068)
+- Sidebar dismissable is only updating whenever the visible prop updates [\#1065](https://github.com/primefaces/primereact/issues/1065)
+- selectDate\(\) set date to undefined when minDate is set and selected date is \<= minDate [\#1056](https://github.com/primefaces/primereact/issues/1056)
+- Datatable multisort broken [\#617](https://github.com/primefaces/primereact/issues/617)
+
+## [3.3.2](https://github.com/primefaces/primereact/tree/3.3.2) (2019-10-22)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.3.1...3.3.2)
+
+**Fixed Bugs:**
+
+- Table state is not working with columnResizeMode="expand" on DataTable [\#1061](https://github.com/primefaces/primereact/issues/1061)
+- Calendar component throws NPE after updating the value [\#1060](https://github.com/primefaces/primereact/issues/1060)
+
+## [3.3.1](https://github.com/primefaces/primereact/tree/3.3.1) (2019-10-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.3.0...3.3.1)
+
+**Implemented New Features and Enhancements:**
+
+- Improve component styles on Luna, Nova and Rhea Themes [\#1052](https://github.com/primefaces/primereact/issues/1052)
+- Improve Carousel styles [\#1051](https://github.com/primefaces/primereact/issues/1051)
+
+**Fixed Bugs:**
+
+- Carousel is not working with 'primereact/carousel' shortcut [\#1049](https://github.com/primefaces/primereact/issues/1049)
+
+## [3.3.0](https://github.com/primefaces/primereact/tree/3.3.0) (2019-10-16)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.2.0...3.3.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add closeOnEscape property to Sidebar [\#1046](https://github.com/primefaces/primereact/issues/1046)
+- InputTextarea: Floating Label [\#1040](https://github.com/primefaces/primereact/issues/1040)
+- Upgrade QuillJS 1.3.7 [\#1037](https://github.com/primefaces/primereact/issues/1037)
+- Add filterInputAutoFocus property to Dropdown [\#1036](https://github.com/primefaces/primereact/issues/1036)
+- New Component: Carousel [\#1030](https://github.com/primefaces/primereact/issues/1030)
+- Add className support to SelectButtonItems [\#1019](https://github.com/primefaces/primereact/issues/1019)
+
+**Fixed Bugs:**
+
+- AutoComplete mode multiple ignores maxlength property [\#1045](https://github.com/primefaces/primereact/issues/1045)
+- The datatable is broken with scrollable and no columns settings [\#1044](https://github.com/primefaces/primereact/issues/1044)
+- Calendar Overlay doesnt open with current date after value update [\#999](https://github.com/primefaces/primereact/issues/999)
+
+## [3.2.0](https://github.com/primefaces/primereact/tree/3.2.0) (2019-09-12)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.9...3.2.0)
+
+**Implemented New Features and Enhancements:**
+
+- Add type property to AutoComplete [\#1010](https://github.com/primefaces/primereact/issues/1010)
+- Add customUpload property to FileUpload [\#1008](https://github.com/primefaces/primereact/issues/1008)
+- Improve columns' editor option on editing mode [\#1007](https://github.com/primefaces/primereact/issues/1007)
+- Add keyboard support to DataTable with Checkbox selection [\#1005](https://github.com/primefaces/primereact/issues/1005)
+- Add row edit support to DataTable [\#809](https://github.com/primefaces/primereact/issues/809)
+
+**Fixed Bugs:**
+
+- DataTable with global filter and header checkbox selection select all records [\#1012](https://github.com/primefaces/primereact/issues/1012)
+- DataTable column headers not displaying in nested table [\#1009](https://github.com/primefaces/primereact/issues/1009)
+- DataTable has null state under certain conditions [\#1003](https://github.com/primefaces/primereact/issues/1003)
+- Value doesnt change on Input mask when unmask is enabled [\#998](https://github.com/primefaces/primereact/issues/998)
+
+## [3.1.9](https://github.com/primefaces/primereact/tree/3.1.9) (2019-08-28)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.8...3.1.9)
+
+**Implemented New Features and Enhancements:**
+
+- Datatable EditRow [\#935](https://github.com/primefaces/primereact/issues/935)
+- Add className option to Tooltip [\#994](https://github.com/primefaces/primereact/issues/994)
+- Add focusOnShow property to Dialog [\#988](https://github.com/primefaces/primereact/issues/988)
+- Add displayValueTemplate property to ProgressBar [\#978](https://github.com/primefaces/primereact/issues/978)
+- Add tabIndex prop to Spinner [\#976](https://github.com/primefaces/primereact/issues/976)
+- Add tabIndex prop to RadioButton [\#975](https://github.com/primefaces/primereact/issues/975)
+
+**Fixed Bugs:**
+
+- Wrong typings for the property of Spinner [\#1001](https://github.com/primefaces/primereact/issues/1001)
+- Export hide\(\) for ContextMenu in type definition file [\#1000](https://github.com/primefaces/primereact/issues/1000)
+- Style props doesnt update after re-rendering with Inputmask [\#996](https://github.com/primefaces/primereact/issues/996)
+- Nested originalEvent in DataTable header RowCheckbox event [\#986](https://github.com/primefaces/primereact/issues/986)
+- Typings missing in DataTable: resetColumnOrder [\#980](https://github.com/primefaces/primereact/issues/980)
+- ProgressBar does not show value for 0% [\#973](https://github.com/primefaces/primereact/issues/973)
+- Tooltips appear with old contents after being undefined [\#972](https://github.com/primefaces/primereact/issues/972)
+
+## [3.1.8](https://github.com/primefaces/primereact/tree/3.1.8) (2019-07-25)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.7...3.1.8)
+
+**Implemented New Features and Enhancements:**
+
+- Resizable columns support with column groups [\#518](https://github.com/primefaces/primereact/issues/518)
+- Update to PrimeIcons 2.0.0 [\#970](https://github.com/primefaces/primereact/issues/970)
+- Datatable rowGroup with rowSpan mode: row separator line style on group break [\#967](https://github.com/primefaces/primereact/issues/967)
+- Growl detail should be placed in \
not \
[\#965](https://github.com/primefaces/primereact/issues/965)
+- Add autoFocus attribute to Autocomplete [\#963](https://github.com/primefaces/primereact/issues/963)
+- Add onTargetSelect and onSourceSelect props to Picklist [\#962](https://github.com/primefaces/primereact/issues/962)
+- Add tabIndex prop to ToggleButton [\#957](https://github.com/primefaces/primereact/issues/957)
+- Add required prop to RadioButton [\#953](https://github.com/primefaces/primereact/issues/953)
+- Add required prop to Checkbox [\#952](https://github.com/primefaces/primereact/issues/952)
+- Add shift key selection support to DataTable with multiple mode [\#934](https://github.com/primefaces/primereact/issues/934)
+
+**Fixed Bugs:**
+
+- Calendar ButtonBar Clear button does not use clearButtonStyleClass prop [\#968](https://github.com/primefaces/primereact/issues/968)
+- Datatable rowGroup with rowSpan mode and pagination fails on page break [\#961](https://github.com/primefaces/primereact/issues/961)
+- DataTable fails to render if columns are mapped and has a static column [\#959](https://github.com/primefaces/primereact/issues/959)
+- Month View shows a redundant week on the calendar [\#956](https://github.com/primefaces/primereact/issues/956)
+- Simple DataScroller does not display items. [\#955](https://github.com/primefaces/primereact/issues/955)
+- The DataTable will sort a column when shrinking it on resize [\#944](https://github.com/primefaces/primereact/issues/944)
+
+## [3.1.7](https://github.com/primefaces/primereact/tree/3.1.7) (2019-06-25)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.6...3.1.7)
+
+**Fixed Bugs:**
+
+- Charts always redraw when they are updated [\#946](https://github.com/primefaces/primereact/issues/946)
+
+## [3.1.6](https://github.com/primefaces/primereact/tree/3.1.6) (2019-06-25)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.5...3.1.6)
+
+**Fixed Bugs:**
+
+- The ChartJs API is not imported correctly [\#945](https://github.com/primefaces/primereact/issues/945)
+- Inplace is not working with 'primereact/inplace' shortcut [\#943](https://github.com/primefaces/primereact/issues/943)
+
+## [3.1.5](https://github.com/primefaces/primereact/tree/3.1.5) (2019-06-24)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.4...3.1.5)
+
+**Implemented New Features and Enhancements:**
+
+- Add theme prop to Editor [\#938](https://github.com/primefaces/primereact/issues/938)
+- Add "replace" method in Messages component [\#930](https://github.com/primefaces/primereact/issues/930)
+- Add decimalSeparator and thousandSeparator props to Spinner [\#925](https://github.com/primefaces/primereact/issues/925)
+- Add formatInput prop to Spinner [\#924](https://github.com/primefaces/primereact/issues/924)
+- Add required, pattern and placeholder props to Spinner. [\#920](https://github.com/primefaces/primereact/issues/920)
+- Add ariaCloseIconLabel prop to Dialog [\#916](https://github.com/primefaces/primereact/issues/916)
+
+**Fixed Bugs:**
+
+- When components are placed placed inside a label element clicking on the component fires the click event twice [\#940](https://github.com/primefaces/primereact/issues/940)
+- The hide method of Dropdown throws an exception on console [\#937](https://github.com/primefaces/primereact/issues/937)
+- The "required" prop is not working on Dropdown [\#933](https://github.com/primefaces/primereact/issues/933)
+- Tooltip in chips does not work properly [\#932](https://github.com/primefaces/primereact/issues/932)
+- Empty array crashes Messages component [\#928](https://github.com/primefaces/primereact/issues/928)
+- The 'showWeek' prop throws an error with TypedScript on Calendar [\#926](https://github.com/primefaces/primereact/issues/926)
+- Close icon is still active on the disabled Chips [\#918](https://github.com/primefaces/primereact/issues/918)
+- onRemove event does not exists on Growl component [\#914](https://github.com/primefaces/primereact/issues/914)
+- Can't resolve 'chart.js/src/chart.js' [\#913](https://github.com/primefaces/primereact/issues/913)
+- Second Sidebar reset blockScroll [\#910](https://github.com/primefaces/primereact/issues/910)
+- ProgressSpinner not visible in IE11 [\#908](https://github.com/primefaces/primereact/issues/908)
+- Wrong type for showWeek in Calendar.d.ts [\#907](https://github.com/primefaces/primereact/issues/907)
+
+## [3.1.4](https://github.com/primefaces/primereact/tree/3.1.4) (2019-05-30)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.3...3.1.4)
+
+**Implemented New Features and Enhancements:**
+
+- Add iconsTemplate to Dialog [\#905](https://github.com/primefaces/primereact/issues/905)
+- Modules property for Editor [\#904](https://github.com/primefaces/primereact/issues/904)
+- The ability to reset columnOrder in DataTable [\#899](https://github.com/primefaces/primereact/issues/899)
+- onFocus and onBlur for Chips [\#897](https://github.com/primefaces/primereact/issues/897)
+- Show week numbers for Calendar [\#894](https://github.com/primefaces/primereact/issues/894)
+- CellEditor should have onSubmit and onCancel method. [\#891](https://github.com/primefaces/primereact/issues/891)
+- Add expandIcon and collapseIcon props to Panel component [\#888](https://github.com/primefaces/primereact/issues/888)
+- Support for disabling dropdown item\(s\). [\#874](https://github.com/primefaces/primereact/issues/874)
+- Editable Dropdown should support maxLength [\#844](https://github.com/primefaces/primereact/issues/844)
+
+**Fixed Bugs:**
+
+- Not able to set focus on Dropdown component [\#903](https://github.com/primefaces/primereact/issues/903)
+- Calendar time parsing broken for showSeconds == false [\#901](https://github.com/primefaces/primereact/issues/901)
+- DataTable sortFunction Typescript definition wrong [\#898](https://github.com/primefaces/primereact/issues/898)
+- Data\*: alwaysShowPaginator prop not used [\#896](https://github.com/primefaces/primereact/issues/896)
+- DataTable expanded rows collapse when modifying one property of a record [\#884](https://github.com/primefaces/primereact/issues/884)
+- The scroll bar is not moving correctly on the DataTable with resizeMode="expand" [\#881](https://github.com/primefaces/primereact/issues/881)
+- Dropdown showClear not always displayed [\#875](https://github.com/primefaces/primereact/issues/875)
+- Unlogical editor navigation with shift+tab in DataTable [\#843](https://github.com/primefaces/primereact/issues/843)
+- Cannot read property 'show' of undefined at FileUpload.validate [\#802](https://github.com/primefaces/primereact/issues/802)
+- DataTable onValueChange callback one key press behind when using custom InputText filter [\#777](https://github.com/primefaces/primereact/issues/777)
+
+## [3.1.3](https://github.com/primefaces/primereact/tree/3.1.3) (2019-05-06)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.2...3.1.3)
+
+**Implemented New Features and Enhancements:**
+
+- Multiple target support to OverlayPanel [\#873](https://github.com/primefaces/primereact/issues/873)
+- Improve outside click on OverlayPanel [\#872](https://github.com/primefaces/primereact/issues/872)
+- Calendar panel is not aligned correctly on window resize [\#870](https://github.com/primefaces/primereact/issues/870)
+- Improve outside click on Calendar [\#869](https://github.com/primefaces/primereact/issues/869)
+- The min/max date support is added to Calendar for monthNavigation and yearNavigation [\#859](https://github.com/primefaces/primereact/issues/859)
+- Add ariaLabel and ariaLabelledBy properties to DropDown [\#855](https://github.com/primefaces/primereact/issues/855)
+- Add contentStyle and contentClassName props to Tree [\#842](https://github.com/primefaces/primereact/issues/842)
+
+**Fixed Bugs:**
+
+- OverlayPanel's icon is in the wrong position after window is resized [\#871](https://github.com/primefaces/primereact/issues/871)
+- Flipped OverlayPanel rendered behind browser [\#868](https://github.com/primefaces/primereact/issues/868)
+- Missing method typings for OverlayPanel [\#865](https://github.com/primefaces/primereact/issues/865)
+- Calendar used in DataTable is unable to switch months [\#860](https://github.com/primefaces/primereact/issues/860)
+- Calendar view="month" does not allow typing [\#856](https://github.com/primefaces/primereact/issues/856)
+- OnHide callback is not called when visibility property is changed [\#854](https://github.com/primefaces/primereact/issues/854)
+- Add stateStorage property to DataTable.d.ts [\#851](https://github.com/primefaces/primereact/issues/851)
+- The tableStyle and tableClassName props have no effect on Scrollable DataTable [\#849](https://github.com/primefaces/primereact/issues/849)
+- Calendar is rendering behind the browser window. [\#840](https://github.com/primefaces/primereact/issues/840)
+- onRowSelect called instead of onRowUnselect [\#835](https://github.com/primefaces/primereact/issues/835)
+- Chart doesn't reload when new data is added to it [\#834](https://github.com/primefaces/primereact/issues/834)
+- Datatable scrollHeight can't be changed [\#662](https://github.com/primefaces/primereact/issues/662)
+
+## [3.1.2](https://github.com/primefaces/primereact/tree/3.1.2) (2019-04-03)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.1...3.1.2)
+
+**Fixed Bugs:**
+
+- DataTable selection with uncontrolled sorting broken [\#830](https://github.com/primefaces/primereact/issues/830)
+
+## [3.1.1](https://github.com/primefaces/primereact/tree/3.1.1) (2019-03-31)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.1.0...3.1.1)
+
+**Implemented New Features and Enhancements:**
+
+- Improve disabled header style on Accordion [\#828](https://github.com/primefaces/primereact/issues/828)
+- Update to FullCalendar 4.0.1 [\#827](https://github.com/primefaces/primereact/issues/827)
+- Remove autoWidth from Dropdown [\#826](https://github.com/primefaces/primereact/issues/826)
+- Improve DataTable VirtualScrolling [\#825](https://github.com/primefaces/primereact/issues/825)
+- Update dialog animations [\#823](https://github.com/primefaces/primereact/issues/823)
+- Close datatable cell editor programmatically [\#822](https://github.com/primefaces/primereact/issues/822)
+- DataTable row selection slow with sortable columns [\#813](https://github.com/primefaces/primereact/issues/813)
+- Add onBlur and onFocus events to multiselect and chips [\#782](https://github.com/primefaces/primereact/issues/782)
+
+**Fixed Bugs:**
+
+- On Accordion, the disabled head can be focused on [\#829](https://github.com/primefaces/primereact/issues/829)
+- Datatable property 'stateKey' is missing in types file [\#817](https://github.com/primefaces/primereact/issues/817)
+- Datatable row onClick typescript definition does not match the function or documentation [\#815](https://github.com/primefaces/primereact/issues/815)
+- Overlays wrong position on initial/first render [\#814](https://github.com/primefaces/primereact/issues/814)
+- Chart with latest chart.js does not build [\#812](https://github.com/primefaces/primereact/issues/812)
+- FileUpload thows JS exception in Edge [\#808](https://github.com/primefaces/primereact/issues/808)
+- SlideMenu empty after model change [\#807](https://github.com/primefaces/primereact/issues/807)
+- Dropdown duplicated IDs [\#805](https://github.com/primefaces/primereact/issues/805)
+- DataTable crashes with a "Cannot read property 'xxx' of undefined" for nested objects [\#791](https://github.com/primefaces/primereact/issues/791)
+- Syntax error in optional typescript function interface [\#790](https://github.com/primefaces/primereact/issues/790)
+- Using "maxlength" of Spinner causes errors [\#787](https://github.com/primefaces/primereact/issues/787)
+- "propTypes" incorrectly named as "propsTypes" [\#784](https://github.com/primefaces/primereact/issues/784)
+- Changes to prop does not render ProgressBar [\#783](https://github.com/primefaces/primereact/issues/783)
+- Dropdown - TypeError: Cannot read property 'element' of null [\#781](https://github.com/primefaces/primereact/issues/781)
+- propTypes error using new iconsTemplate [\#780](https://github.com/primefaces/primereact/issues/780)
+- Datatable does not scroll horizontally when there is no data [\#635](https://github.com/primefaces/primereact/issues/635)
+
+## [3.1.0](https://github.com/primefaces/primereact/tree/3.1.0) (2019-02-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.0.0...3.1.0)
+
+**Implemented New Features and Enhancements:**
+
+- Filtering for Tree [\#769](https://github.com/primefaces/primereact/issues/769)
+- onClose event for OverlayPanel [\#763](https://github.com/primefaces/primereact/issues/763)
+- Arrow for OverlayPanel [\#762](https://github.com/primefaces/primereact/issues/762)
+- Improve style of p-link component [\#760](https://github.com/primefaces/primereact/issues/760)
+- TableState for DataTable [\#736](https://github.com/primefaces/primereact/issues/736)
+- Filtering for TreeTable [\#380](https://github.com/primefaces/primereact/issues/380)
+
+**Fixed Bugs:**
+
+- Datatable toggle issue after reordering [\#774](https://github.com/primefaces/primereact/issues/774)
+- Inputtextarea autoresize invalid height issue after render [\#773](https://github.com/primefaces/primereact/issues/773)
+- TreeTableBodyCell.js: Uncaught TypeError: Cannot read property 'removeAttribute' of null [\#772](https://github.com/primefaces/primereact/issues/772)
+- Dropdown with dataKey attribute throws console errors. [\#768](https://github.com/primefaces/primereact/issues/768)
+- Multiple selection in a table without data is selected by default [\#766](https://github.com/primefaces/primereact/issues/766)
+- InputGroup border issue for using with other components [\#761](https://github.com/primefaces/primereact/issues/761)
+- code debugger in production mode "component input calendar" [\#751](https://github.com/primefaces/primereact/issues/751)
+
+## [3.0.0](https://github.com/primefaces/primereact/tree/3.0.0) (2019-01-22)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.0.0-rc.1...3.0.0)
+
+**Implemented New Features and Enhancements:**
+
+- Customizable editorValidatorEvent for IncellEditing [\#746](https://github.com/primefaces/primereact/issues/746)
+
+**Fixed Bugs:**
+
+- Spinner arrow keys not working [\#743](https://github.com/primefaces/primereact/issues/743)
+- Toolbar of Editor Component with nova-dark theme does not render properly. [\#740](https://github.com/primefaces/primereact/issues/740)
+- Paginator - Uncaught TypeError: this.getOptionLabel\(...\).toLowerCase is not a function [\#739](https://github.com/primefaces/primereact/issues/739)
+
+## [3.0.0-rc.1](https://github.com/primefaces/primereact/tree/3.0.0-rc.1) (2019-01-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/3.0.0-beta.1...3.0.0-rc.1)
+
+**Implemented New Features and Enhancements:**
+
+- Rename defaultLabel to placeholder in MultiSelect [\#733](https://github.com/primefaces/primereact/issues/733)
+- Enhance accessibility for Checkbox with ARIA roles [\#729](https://github.com/primefaces/primereact/issues/729)
+- Ability to use dataKey as the key in Dropdown [\#727](https://github.com/primefaces/primereact/issues/727)
+- Focused editable Dropdown looks different than non-editable [\#725](https://github.com/primefaces/primereact/issues/725)
+- Header and Footer templates for Calendar component [\#706](https://github.com/primefaces/primereact/issues/706)
+- MultiSelect - Support a fixed defaultLabel [\#674](https://github.com/primefaces/primereact/issues/674)
+
+**Fixed Bugs:**
+
+- InputSwitch focus visuals are missing [\#735](https://github.com/primefaces/primereact/issues/735)
+- DataTable edit throws error on route change [\#734](https://github.com/primefaces/primereact/issues/734)
+- Incorrect column sortable prop type definition [\#730](https://github.com/primefaces/primereact/issues/730)
+- ScrollPanel: Cannot read property 'classList' of null [\#726](https://github.com/primefaces/primereact/issues/726)
+- Editor component cannot refresh it's value when the state change [\#724](https://github.com/primefaces/primereact/issues/724)
+- Editor active item is not highlighted in toolbar [\#722](https://github.com/primefaces/primereact/issues/722)
+- InputMask doesn't update the value according to state [\#686](https://github.com/primefaces/primereact/issues/686)
+- DataTable: hide column after reordering columns throws exception [\#668](https://github.com/primefaces/primereact/issues/668)
+- Form validity is true, even though no Dropdown selection has been made. [\#665](https://github.com/primefaces/primereact/issues/665)
+
+## [3.0.0-beta.1](https://github.com/primefaces/primereact/tree/3.0.0-beta.1) (2018-12-24)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.1...3.0.0-beta.1)
+
+**Implemented New Features and Enhancements:**
+
+- Reimplement Menubar [\#721](https://github.com/primefaces/primereact/issues/721)
+- Reimplement TieredMenu [\#720](https://github.com/primefaces/primereact/issues/720)
+- Keyboard Accessibility for Menu [\#719](https://github.com/primefaces/primereact/issues/719)
+- Reimplement PanelMenu Animation with CSSTransition [\#718](https://github.com/primefaces/primereact/issues/718)
+- Remove certain props from Dialog [\#717](https://github.com/primefaces/primereact/issues/717)
+- Reimplement Dialog Positioning [\#715](https://github.com/primefaces/primereact/issues/715)
+- Reimplement Accordion Animation with CSSTransition [\#714](https://github.com/primefaces/primereact/issues/714)
+- Reimplement Fieldset Animation with CSSTransition [\#712](https://github.com/primefaces/primereact/issues/712)
+- Enhance Dialog Animation [\#711](https://github.com/primefaces/primereact/issues/711)
+- Reimplement Panel Animation with CSSTransition [\#710](https://github.com/primefaces/primereact/issues/710)
+- Unify focus visuals in themes [\#709](https://github.com/primefaces/primereact/issues/709)
+- Keyboard Accessibility for PanelMenu [\#703](https://github.com/primefaces/primereact/issues/703)
+- Keyboard Accessibility for MegaMenu [\#702](https://github.com/primefaces/primereact/issues/702)
+- Keyboard Accessibility for Menubar [\#701](https://github.com/primefaces/primereact/issues/701)
+- Keyboard Accessibility for TieredMenu [\#700](https://github.com/primefaces/primereact/issues/700)
+- Improve Lightbox [\#699](https://github.com/primefaces/primereact/issues/699)
+- Keyboard Accessibility for Inplace [\#698](https://github.com/primefaces/primereact/issues/698)
+- Keyboard accessibility for PickList [\#697](https://github.com/primefaces/primereact/issues/697)
+- Keyboard Accessibility for OrderList [\#696](https://github.com/primefaces/primereact/issues/696)
+- Keyboard Accessibility for InputSwitch [\#695](https://github.com/primefaces/primereact/issues/695)
+- DataTable/TreeTable sort headers should be keyboard accessible [\#693](https://github.com/primefaces/primereact/issues/693)
+- Sidebar close icon should receive focus on open [\#692](https://github.com/primefaces/primereact/issues/692)
+- Keyboard Accessibility for MultiSelect [\#691](https://github.com/primefaces/primereact/issues/691)
+- Improve Listbox Accessibility [\#690](https://github.com/primefaces/primereact/issues/690)
+- Improve ToggleButton Accessibility [\#689](https://github.com/primefaces/primereact/issues/689)
+- Improve SelectButton Accessibility [\#687](https://github.com/primefaces/primereact/issues/687)
+- Keyboard navigation support for Showcsse [\#684](https://github.com/primefaces/primereact/issues/684)
+- Replace anchors without href with buttons [\#683](https://github.com/primefaces/primereact/issues/683)
+- Update to Babel 7 [\#682](https://github.com/primefaces/primereact/issues/682)
+- Improve Radio/Checkbox Accessibility [\#681](https://github.com/primefaces/primereact/issues/681)
+
+**Fixed Bugs:**
+
+- AutoComplete in multiple mode does not receive focus [\#713](https://github.com/primefaces/primereact/issues/713)
+- OrderList droppoints are not highlighted [\#708](https://github.com/primefaces/primereact/issues/708)
+- TreeTable Pagination Error [\#685](https://github.com/primefaces/primereact/issues/685)
+- Problem TextArea component "Disabled" [\#679](https://github.com/primefaces/primereact/issues/679)
+- Datatable horizontal scroll trigger onVirtualScroll [\#677](https://github.com/primefaces/primereact/issues/677)
+- Spinner does not show the value 0 [\#675](https://github.com/primefaces/primereact/issues/675)
+- KeyFilter uses static instance of the regex [\#672](https://github.com/primefaces/primereact/issues/672)
+- slider.d.ts has wrong import syntax [\#671](https://github.com/primefaces/primereact/issues/671)
+
+## [2.0.1](https://github.com/primefaces/primereact/tree/2.0.1) (2018-12-06)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0...2.0.1)
+
+**Fixed Bugs:**
+
+- Align SplitButton Overlay with other overlays [\#667](https://github.com/primefaces/primereact/issues/667)
+- Standalone paginator causes replace is undefined error [\#666](https://github.com/primefaces/primereact/issues/666)
+- onRowCollapse doesn't work on expanded row [\#664](https://github.com/primefaces/primereact/issues/664)
+
+## [2.0.0](https://github.com/primefaces/primereact/tree/2.0.0) (2018-12-05)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-rc.1...2.0.0)
+
+**Implemented New Features and Enhancements:**
+
+- More paginator options to DataView [\#657](https://github.com/primefaces/primereact/issues/657)
+- Filtered Dropdown does not close after pressing Enter [\#649](https://github.com/primefaces/primereact/issues/649)
+- Ability to get filtered and/or sorted data in DataTable [\#643](https://github.com/primefaces/primereact/issues/643)
+- Add modal prop to Sidebar [\#639](https://github.com/primefaces/primereact/issues/639)
+- Add currentPageReportTemplate property to Paginator [\#636](https://github.com/primefaces/primereact/issues/636)
+- ProgressBar avoidable re-renders [\#597](https://github.com/primefaces/primereact/issues/597)
+- Feature request: Allow us to choose a different optionLabel to display selected items in MultiSelect [\#451](https://github.com/primefaces/primereact/issues/451)
+
+**Fixed Bugs:**
+
+- Today cell is not highlighed in Calendar when selected [\#660](https://github.com/primefaces/primereact/issues/660)
+- Header checkbox fails with filtering [\#659](https://github.com/primefaces/primereact/issues/659)
+- Data Table resize: disable rightmost border [\#656](https://github.com/primefaces/primereact/issues/656)
+- DataTable Column sortField is ignored [\#653](https://github.com/primefaces/primereact/issues/653)
+- TreeTable: propagateSelectionUp Defect [\#650](https://github.com/primefaces/primereact/issues/650)
+- cannot read property 'dayNamesShort' of undefined [\#647](https://github.com/primefaces/primereact/issues/647)
+- this.props.onSelectionChange is not a function in DataTable [\#641](https://github.com/primefaces/primereact/issues/641)
+- viewDate.getMonth\(\) is not a function [\#612](https://github.com/primefaces/primereact/issues/612)
+
+## [2.0.0-rc.1](https://github.com/primefaces/primereact/tree/2.0.0-rc.1) (2018-11-12)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.9...2.0.0-rc.1)
+
+**Implemented New Features and Enhancements:**
+
+- Dialog default prop values [\#638](https://github.com/primefaces/primereact/issues/638)
+- Reimplement InputTextarea Resize [\#629](https://github.com/primefaces/primereact/issues/629)
+- Remove Schedule [\#628](https://github.com/primefaces/primereact/issues/628)
+- Replace event.data with event.value at onSelectionChange of DataTable [\#626](https://github.com/primefaces/primereact/issues/626)
+- Reimplement ContextMenu Selection of DataTable [\#625](https://github.com/primefaces/primereact/issues/625)
+- Enter key should select a Tree node [\#624](https://github.com/primefaces/primereact/issues/624)
+- Remove defaultExpanded from TreeNode [\#623](https://github.com/primefaces/primereact/issues/623)
+- renderActiveOnly prop for Tabs [\#618](https://github.com/primefaces/primereact/issues/618)
+- virtualRowHeight attribute in Table component [\#616](https://github.com/primefaces/primereact/issues/616)
+- Remove defaultExpanded from TreeNode API [\#606](https://github.com/primefaces/primereact/issues/606)
+- Keyboard Support for Table Row Selection [\#605](https://github.com/primefaces/primereact/issues/605)
+- Select a tree node with enter key [\#604](https://github.com/primefaces/primereact/issues/604)
+- Improve button focus visuals on Nova and Luna [\#602](https://github.com/primefaces/primereact/issues/602)
+
+**Fixed Bugs:**
+
+- Dropdown throws error on hide [\#631](https://github.com/primefaces/primereact/issues/631)
+- AccordionTab title with custom HTML gives error [\#615](https://github.com/primefaces/primereact/issues/615)
+- Datatable autoLayout not working [\#599](https://github.com/primefaces/primereact/issues/599)
+- Tooltips not updating [\#598](https://github.com/primefaces/primereact/issues/598)
+- Dialog z-index [\#596](https://github.com/primefaces/primereact/issues/596)
+
+## [2.0.0-beta.9](https://github.com/primefaces/primereact/tree/2.0.0-beta.9) (2018-10-08)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.8...2.0.0-beta.9)
+
+**Implemented New Features and Enhancements:**
+
+- Reimplement Slider [\#592](https://github.com/primefaces/primereact/issues/592)
+- New Component: DeferredContent [\#591](https://github.com/primefaces/primereact/issues/591)
+
+**Fixed Bugs:**
+
+- Add disabled property to Slider [\#593](https://github.com/primefaces/primereact/issues/593)
+- Floating label for TextInput with number value fails [\#588](https://github.com/primefaces/primereact/issues/588)
+- Sidebar component not working when visible by default [\#587](https://github.com/primefaces/primereact/issues/587)
+- Presence of step prop will slow down reactivity of the Slider component [\#586](https://github.com/primefaces/primereact/issues/586)
+
+## [2.0.0-beta.8](https://github.com/primefaces/primereact/tree/2.0.0-beta.8) (2018-09-24)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.7...2.0.0-beta.8)
+
+**Implemented New Features and Enhancements:**
+
+- PrimeReact input events are not compatible with React forms libraries [\#537](https://github.com/primefaces/primereact/issues/537)
+- Aria roles and attributes for Tree [\#580](https://github.com/primefaces/primereact/issues/580)
+- New Luna Free Dark Theme Family [\#579](https://github.com/primefaces/primereact/issues/579)
+- Keyboard navigation for Tree [\#578](https://github.com/primefaces/primereact/issues/578)
+- Enhanced keyboard search for dropdown [\#577](https://github.com/primefaces/primereact/issues/577)
+
+**Fixed Bugs:**
+
+- DataTable sort issue with sortIcon [\#585](https://github.com/primefaces/primereact/issues/585)
+- AutoComplete does not update input when value prop changes [\#576](https://github.com/primefaces/primereact/issues/576)
+- Typos in Tree.d.ts [\#573](https://github.com/primefaces/primereact/issues/573)
+
+## [2.0.0-beta.7](https://github.com/primefaces/primereact/tree/2.0.0-beta.7) (2018-09-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.6...2.0.0-beta.7)
+
+**Fixed Bugs:**
+
+- Uncontrolled input text does not support floating labels [\#572](https://github.com/primefaces/primereact/issues/572)
+- VirtualScroll is broken [\#560](https://github.com/primefaces/primereact/issues/560)
+
+## [2.0.0-beta.6](https://github.com/primefaces/primereact/tree/2.0.0-beta.6) (2018-09-17)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.5...2.0.0-beta.6)
+
+**Fixed Bugs:**
+
+- Dialog mask has no index at initial display [\#571](https://github.com/primefaces/primereact/issues/571)
+- New Tree component: duplicate key error when 2 TreeNodes has same label [\#570](https://github.com/primefaces/primereact/issues/570)
+
+## [2.0.0-beta.5](https://github.com/primefaces/primereact/tree/2.0.0-beta.5) (2018-09-11)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.4...2.0.0-beta.5)
+
+**Fixed Bugs:**
+
+- Calendar warning with omission of onChange from InputText [\#569](https://github.com/primefaces/primereact/issues/569)
+
+## [2.0.0-beta.4](https://github.com/primefaces/primereact/tree/2.0.0-beta.4) (2018-09-11)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.3...2.0.0-beta.4)
+
+**Implemented New Features and Enhancements:**
+
+- Keyboard support for Dialog Icons [\#568](https://github.com/primefaces/primereact/issues/568)
+- Pass column props to columnResizeEnd [\#564](https://github.com/primefaces/primereact/issues/564)
+- New Tree Component [\#559](https://github.com/primefaces/primereact/issues/559)
+- Integrate PrimeFlex Grid System [\#556](https://github.com/primefaces/primereact/issues/556)
+- className parameter unsupported by Spinner component [\#548](https://github.com/primefaces/primereact/issues/548)
+
+**Fixed Bugs:**
+
+- Dialog resize fails [\#567](https://github.com/primefaces/primereact/issues/567)
+- Dialog resizer css is broken [\#566](https://github.com/primefaces/primereact/issues/566)
+- OverlayPanel has no shadow [\#558](https://github.com/primefaces/primereact/issues/558)
+- Border radius missing in panel components [\#557](https://github.com/primefaces/primereact/issues/557)
+- Spinner does not recognize outside changes for value prop [\#555](https://github.com/primefaces/primereact/issues/555)
+- DataTable in IE: TypeError: Object expected [\#554](https://github.com/primefaces/primereact/issues/554)
+- DataTable's onRowUnselect causes exception [\#552](https://github.com/primefaces/primereact/issues/552)
+- Optimize functionality of filtered dropdowns [\#551](https://github.com/primefaces/primereact/issues/551)
+- Dialog blockScroll is undocumented [\#550](https://github.com/primefaces/primereact/issues/550)
+- Body text is selected during Dialog drag [\#549](https://github.com/primefaces/primereact/issues/549)
+- ui-float-label does not work properly for AutoComplete [\#517](https://github.com/primefaces/primereact/issues/517)
+- Float-label does not work properly for InputMask [\#516](https://github.com/primefaces/primereact/issues/516)
+
+## [2.0.0-beta.3](https://github.com/primefaces/primereact/tree/2.0.0-beta.3) (2018-08-26)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.2...2.0.0-beta.3)
+
+## [2.0.0-beta.2](https://github.com/primefaces/primereact/tree/2.0.0-beta.2) (2018-08-25)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-beta.1...2.0.0-beta.2)
+
+**Implemented New Features and Enhancements:**
+
+- Reimplement Tooltip [\#547](https://github.com/primefaces/primereact/issues/547)
+- Keyboard support for toggle button [\#545](https://github.com/primefaces/primereact/issues/545)
+- Remove font-awesome from Demos [\#544](https://github.com/primefaces/primereact/issues/544)
+- Remove DataGrid and DataList [\#543](https://github.com/primefaces/primereact/issues/543)
+- New styling engine [\#539](https://github.com/primefaces/primereact/issues/539)
+- Property appendTo in menus [\#535](https://github.com/primefaces/primereact/issues/535)
+- Deprecate Free Themes in favor of Nova Free Theme Family [\#527](https://github.com/primefaces/primereact/issues/527)
+
+**Fixed Bugs:**
+
+- Tooltip does not remove event listeners [\#542](https://github.com/primefaces/primereact/issues/542)
+- Accordion does not work with multiple controlled tabs [\#540](https://github.com/primefaces/primereact/issues/540)
+- Menubar import is not working [\#531](https://github.com/primefaces/primereact/issues/531)
+- ColumnGroup can't be imported [\#530](https://github.com/primefaces/primereact/issues/530)
+- InputTextProps not type correctly [\#529](https://github.com/primefaces/primereact/issues/529)
+- originalEvent in TabView has swapped typing/variable name in TabView.d.ts [\#528](https://github.com/primefaces/primereact/issues/528)
+- Calendar manual input doesn't work with time [\#526](https://github.com/primefaces/primereact/issues/526)
+- Breadcrumb component throws warning [\#522](https://github.com/primefaces/primereact/issues/522)
+
+## [2.0.0-beta.1](https://github.com/primefaces/primereact/tree/2.0.0-beta.1) (2018-07-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2.0.0-alpha.1...2.0.0-beta.1)
+
+**Implemented New Features and Enhancements:**
+
+- Improve input overlay animations [\#514](https://github.com/primefaces/primereact/issues/514)
+- Reimplement InputSwitch UI [\#513](https://github.com/primefaces/primereact/issues/513)
+- Common Props for AutoComplete and Spinner [\#512](https://github.com/primefaces/primereact/issues/512)
+- Reimplement Calendar [\#504](https://github.com/primefaces/primereact/issues/504)
+- Update Schedule component to remove jQuery [\#476](https://github.com/primefaces/primereact/issues/476)
+
+**Fixed Bugs:**
+
+- Slider shorthand import fails [\#511](https://github.com/primefaces/primereact/issues/511)
+- Error importing Column component [\#509](https://github.com/primefaces/primereact/issues/509)
+- Typescript definition for Column's editor property [\#505](https://github.com/primefaces/primereact/issues/505)
+- Path to primereact/components/common/common.css not correct case [\#500](https://github.com/primefaces/primereact/issues/500)
+- InputText class ui-state-filled fails [\#499](https://github.com/primefaces/primereact/issues/499)
+- Calendar: popup translation not updating [\#478](https://github.com/primefaces/primereact/issues/478)
+- InputSwitch doesn't update programmatically [\#461](https://github.com/primefaces/primereact/issues/461)
+- preventDefault\(\) and stopPropagation\(\) appear to be missing from drag and drop of DataTable - Reorder and causes redirect to 'www.b.com' [\#460](https://github.com/primefaces/primereact/issues/460)
+
+## [2.0.0-alpha.1](https://github.com/primefaces/primereact/tree/2.0.0-alpha.1) (2018-07-06)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.6.2...2.0.0-alpha.1)
+
+**Implemented New Features and Enhancements:**
+
+- Review/Enhance all documentation [\#497](https://github.com/primefaces/primereact/issues/497)
+- Review all type definition files [\#496](https://github.com/primefaces/primereact/issues/496)
+- Reimplement Chips [\#494](https://github.com/primefaces/primereact/issues/494)
+- Chips should not keep value in state [\#493](https://github.com/primefaces/primereact/issues/493)
+- Controlled/Uncontrolled behavior support for DataTable Features [\#492](https://github.com/primefaces/primereact/issues/492)
+- Reimplement DataTable Lazy Loading [\#491](https://github.com/primefaces/primereact/issues/491)
+- onClick for Fieldset [\#487](https://github.com/primefaces/primereact/issues/487)
+- Refactor Sidebar [\#486](https://github.com/primefaces/primereact/issues/486)
+- Horizontal scroll support to ScrollPanel [\#485](https://github.com/primefaces/primereact/issues/485)
+- Reimplement DataView [\#484](https://github.com/primefaces/primereact/issues/484)
+- Add name prop to Chips [\#483](https://github.com/primefaces/primereact/issues/483)
+- Controlled/Uncontrolled modes for Toggleable Fieldset [\#480](https://github.com/primefaces/primereact/issues/480)
+- Controlled/Uncontrolled modes for Toggleable Panel [\#479](https://github.com/primefaces/primereact/issues/479)
+- Controlled/Uncontrolled modes for TabView [\#475](https://github.com/primefaces/primereact/issues/475)
+- Controlled/Uncontrolled modes for Accordion [\#474](https://github.com/primefaces/primereact/issues/474)
+- New Component: Inplace [\#471](https://github.com/primefaces/primereact/issues/471)
+- Shorter Imports [\#470](https://github.com/primefaces/primereact/issues/470)
+- Rewrite SlideMenu [\#469](https://github.com/primefaces/primereact/issues/469)
+- Rewrite PanelMenu [\#468](https://github.com/primefaces/primereact/issues/468)
+- Rewrite MegaMenu [\#467](https://github.com/primefaces/primereact/issues/467)
+- Rewrite ContextMenu [\#466](https://github.com/primefaces/primereact/issues/466)
+- Rewrite MenuBar [\#465](https://github.com/primefaces/primereact/issues/465)
+- Rewrite TieredMenu [\#464](https://github.com/primefaces/primereact/issues/464)
+- Rewrite Breadcrumb [\#463](https://github.com/primefaces/primereact/issues/463)
+- Rewrite Steps [\#462](https://github.com/primefaces/primereact/issues/462)
+- Controlled/Uncontrolled modes for TabMenu [\#459](https://github.com/primefaces/primereact/issues/459)
+- Rewrite Menu [\#458](https://github.com/primefaces/primereact/issues/458)
+- Maximizable Dialog [\#453](https://github.com/primefaces/primereact/issues/453)
+- Dialog should not derive visible state from props [\#452](https://github.com/primefaces/primereact/issues/452)
+- Add a 'closable' or 'dismissable' property to Sidebar for 'click outside' control. [\#377](https://github.com/primefaces/primereact/issues/377)
+
+**Fixed Bugs:**
+
+- InputMask can not read property 'bind' of undefined [\#490](https://github.com/primefaces/primereact/issues/490)
+- Dropdown with autoFocus prop throws a JS error [\#489](https://github.com/primefaces/primereact/issues/489)
+- InputMask fail when unmask is true [\#488](https://github.com/primefaces/primereact/issues/488)
+- Toggleable Panel Icon Misaligned [\#481](https://github.com/primefaces/primereact/issues/481)
+- Calendar dateFormat day name or month name gives error [\#455](https://github.com/primefaces/primereact/issues/455)
+- wrong typings for itemTemplate property [\#454](https://github.com/primefaces/primereact/issues/454)
+- optionLabel prop is missing in MultiSelect [\#450](https://github.com/primefaces/primereact/issues/450)
+- Unable to change rows per page \(Paginator/DataTable\) [\#449](https://github.com/primefaces/primereact/issues/449)
+
+## [1.6.2](https://github.com/primefaces/primereact/tree/1.6.2) (2018-06-19)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.6.1...1.6.2)
+
+**Implemented New Features and Enhancements:**
+
+- Refactor Rating to remove usage of state [\#447](https://github.com/primefaces/primereact/issues/447)
+
+**Fixed Bugs:**
+
+- Accordion onTabOpen-onTabClose does not trigger correctly [\#448](https://github.com/primefaces/primereact/issues/448)
+
+## [1.6.1](https://github.com/primefaces/primereact/tree/1.6.1) (2018-06-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.6.0...1.6.1)
+
+**Implemented New Features and Enhancements:**
+
+- Migrate to PrimeIcons [\#446](https://github.com/primefaces/primereact/issues/446)
+
+**Fixed Bugs:**
+
+- DataTable props updating issue [\#443](https://github.com/primefaces/primereact/issues/443)
+- OrganizationChart is not working with React 16.4+ [\#441](https://github.com/primefaces/primereact/issues/441)
+- Sortable TreeTable is not working with React 16.4+ [\#440](https://github.com/primefaces/primereact/issues/440)
+- Calendar Toggle AM/PM is broken [\#438](https://github.com/primefaces/primereact/issues/438)
+- Keyboard navigation is not working on DataTable [\#425](https://github.com/primefaces/primereact/issues/425)
+
+## [1.6.0](https://github.com/primefaces/primereact/tree/1.6.0) (2018-06-07)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.6.0-rc.1...1.6.0)
+
+**Implemented New Features and Enhancements:**
+
+- Improve sort property on DataView [\#420](https://github.com/primefaces/primereact/issues/420)
+
+**Fixed Bugs:**
+
+- slotChar issue on InputMask [\#439](https://github.com/primefaces/primereact/issues/439)
+- Missing type definition for DropDownProps [\#436](https://github.com/primefaces/primereact/issues/436)
+- Sidebar throws a JS exception on componentWillUnmount hook [\#435](https://github.com/primefaces/primereact/issues/435)
+- Can't set csv export filename in DataTable.js using Internet Explorer, it returns undefined.csv [\#433](https://github.com/primefaces/primereact/issues/433)
+- Missing optionsLabel property in interface ListBoxProps in ListBox.d.ts [\#431](https://github.com/primefaces/primereact/issues/431)
+- Width & Height props of Charts are not working [\#430](https://github.com/primefaces/primereact/issues/430)
+- After a sub node is selected on Tree, its parent node is closing [\#429](https://github.com/primefaces/primereact/issues/429)
+- Rating not being enabled on change from disabled=true to disabled=false [\#428](https://github.com/primefaces/primereact/issues/428)
+- The 'selection' property is not working on Tree [\#426](https://github.com/primefaces/primereact/issues/426)
+- Datatable missing definitions [\#423](https://github.com/primefaces/primereact/issues/423)
+- Improve sort property on DataTable [\#421](https://github.com/primefaces/primereact/issues/421)
+- Remove old overlay events on GMap after map is updated [\#419](https://github.com/primefaces/primereact/issues/419)
+- Growl types Failed to compile. [\#414](https://github.com/primefaces/primereact/issues/414)
+- InputMask is not updated if value property is changed [\#413](https://github.com/primefaces/primereact/issues/413)
+- ColorPicker is not updated if value property is changed [\#412](https://github.com/primefaces/primereact/issues/412)
+- Editable Dropdown content does not reflect input value [\#408](https://github.com/primefaces/primereact/issues/408)
+
+## [1.6.0-rc.1](https://github.com/primefaces/primereact/tree/1.6.0-rc.1) (2018-06-04)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.5.3...1.6.0-rc.1)
+
+## [1.5.3](https://github.com/primefaces/primereact/tree/1.5.3) (2018-05-22)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.5.2...1.5.3)
+
+**Fixed Bugs:**
+
+- onRowReorder missing from DataTable type definition [\#411](https://github.com/primefaces/primereact/issues/411)
+- Duplicate identifier 'number': DataScroller.d.ts [\#410](https://github.com/primefaces/primereact/issues/410)
+
+## [1.5.2](https://github.com/primefaces/primereact/tree/1.5.2) (2018-05-11)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.5.1...1.5.2)
+
+**Implemented New Features and Enhancements:**
+
+- Add metaKeySelection property to PickList [\#404](https://github.com/primefaces/primereact/issues/404)
+- Add sorting feature to TreeTable [\#400](https://github.com/primefaces/primereact/issues/400)
+- New mode to keyfilter to validate whole value [\#391](https://github.com/primefaces/primereact/issues/391)
+
+**Fixed Bugs:**
+
+- BodyCell className using headerClassName prop [\#407](https://github.com/primefaces/primereact/issues/407)
+- Typings missing for colorPicker component [\#405](https://github.com/primefaces/primereact/issues/405)
+- Radio Button default selection throws warnings [\#403](https://github.com/primefaces/primereact/issues/403)
+- Container element has wrong width on Scrollable Datatable [\#402](https://github.com/primefaces/primereact/issues/402)
+- Warning when using Checkbox [\#399](https://github.com/primefaces/primereact/issues/399)
+- itemTemplate is declared as void [\#397](https://github.com/primefaces/primereact/issues/397)
+- FileUpload does not accept multiple files dropped or selected [\#395](https://github.com/primefaces/primereact/issues/395)
+- TabView activeIndex setting programmatically will not work the second time after manually choosing another tab [\#393](https://github.com/primefaces/primereact/issues/393)
+- ReadOnly attribute is not passed to the checkbox input [\#392](https://github.com/primefaces/primereact/issues/392)
+- onColReorder return columns: undefined [\#389](https://github.com/primefaces/primereact/issues/389)
+- onClick event doesn't work on Messages component [\#387](https://github.com/primefaces/primereact/issues/387)
+- Typings missing for messages component [\#386](https://github.com/primefaces/primereact/issues/386)
+- InputMask runtime error [\#385](https://github.com/primefaces/primereact/issues/385)
+- Slider component not always provide the originalEvent [\#384](https://github.com/primefaces/primereact/issues/384)
+- Org chart does not update when value property changes [\#382](https://github.com/primefaces/primereact/issues/382)
+- Bug in DataTable selection and Column [\#381](https://github.com/primefaces/primereact/issues/381)
+- Calendar min date does not work after primereact@1.3.0 [\#379](https://github.com/primefaces/primereact/issues/379)
+
+## [1.5.1](https://github.com/primefaces/primereact/tree/1.5.1) (2018-04-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.5.0...1.5.1)
+
+**Fixed Bugs:**
+
+- placeholder not working on Chips component [\#374](https://github.com/primefaces/primereact/issues/374)
+- Tree doesn't update on external change [\#372](https://github.com/primefaces/primereact/issues/372)
+- Slider component does not support real values/step [\#371](https://github.com/primefaces/primereact/issues/371)
+- AutoResize for InputTextarea doesn't work without cols property [\#370](https://github.com/primefaces/primereact/issues/370)
+- Bug: incorrect highlight of dates in range Calendar [\#367](https://github.com/primefaces/primereact/issues/367)
+- TypeDefinitions for Message Control missing [\#366](https://github.com/primefaces/primereact/issues/366)
+- Dropdown autowidth is not working when it used inside the TabView [\#362](https://github.com/primefaces/primereact/issues/362)
+- Calendar as cell editor is not closed after selecting value [\#358](https://github.com/primefaces/primereact/issues/358)
+- Cannot format selection for single-value AutoComplete field [\#353](https://github.com/primefaces/primereact/issues/353)
+- Bug: Type definition for the Column component [\#350](https://github.com/primefaces/primereact/issues/350)
+- DataTable export doesn't respect filters and sorting [\#349](https://github.com/primefaces/primereact/issues/349)
+- sortFunction doesn't work for DataTable [\#348](https://github.com/primefaces/primereact/issues/348)
+
+## [1.5.0](https://github.com/primefaces/primereact/tree/1.5.0) (2018-03-15)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.4.1...1.5.0)
+
+**Implemented New Features and Enhancements:**
+
+- Clear icon to Dropdown [\#345](https://github.com/primefaces/primereact/issues/345)
+- Add event onRowDoubleClick for DataTable [\#341](https://github.com/primefaces/primereact/issues/341)
+- Add minX and minY to Dialog [\#339](https://github.com/primefaces/primereact/issues/339)
+- DragDrop based reorder for Table [\#337](https://github.com/primefaces/primereact/issues/337)
+- DataView Component [\#334](https://github.com/primefaces/primereact/issues/334)
+- InputMask required [\#321](https://github.com/primefaces/primereact/issues/321)
+- Improve dialog positioning with Dynamic content [\#320](https://github.com/primefaces/primereact/issues/320)
+- Custom filter for Column of the DataTable [\#312](https://github.com/primefaces/primereact/issues/312)
+
+**Fixed Bugs:**
+
+- Datatable column reorder may not always work correctly [\#338](https://github.com/primefaces/primereact/issues/338)
+- Ultima theme 1.4.2: icon buttons are cutted [\#317](https://github.com/primefaces/primereact/issues/317)
+- Autocomplete input label is undefined [\#347](https://github.com/primefaces/primereact/issues/347)
+- DataTable TypeScript definition error [\#346](https://github.com/primefaces/primereact/issues/346)
+- Default filters not rendered at DataTable [\#344](https://github.com/primefaces/primereact/issues/344)
+- Dialog selects text during dragging or resizing [\#343](https://github.com/primefaces/primereact/issues/343)
+- TabView activeIndex ignored [\#342](https://github.com/primefaces/primereact/issues/342)
+- Dialog dragging may stuck [\#336](https://github.com/primefaces/primereact/issues/336)
+- ToolTip crashes in IE 11 [\#332](https://github.com/primefaces/primereact/issues/332)
+- Pagination dropdown resets for lazy loading dataTable [\#331](https://github.com/primefaces/primereact/issues/331)
+- DataTable onLazyLoad not called for advanced filter options [\#330](https://github.com/primefaces/primereact/issues/330)
+- Calendar : Enable/Highlight the date of adjacent month when selectOtherMonths is true [\#329](https://github.com/primefaces/primereact/issues/329)
+- Resizable DataTable rowsCountSelector not visible [\#318](https://github.com/primefaces/primereact/issues/318)
+- Dropdown list inside Dialog is only partially visible and creates scroll on dialog [\#316](https://github.com/primefaces/primereact/issues/316)
+- Cannot enter Values into Spinner [\#314](https://github.com/primefaces/primereact/issues/314)
+
+## [1.4.1](https://github.com/primefaces/primereact/tree/1.4.1) (2018-02-14)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.4.0...1.4.1)
+
+**Implemented New Features and Enhancements:**
+
+- Filtering for OrderList [\#311](https://github.com/primefaces/primereact/issues/311)
+- autoLayout mode for DataTable [\#310](https://github.com/primefaces/primereact/issues/310)
+- Add baseZIndex to Dialog [\#309](https://github.com/primefaces/primereact/issues/309)
+- Refactor OrderList [\#308](https://github.com/primefaces/primereact/issues/308)
+- Disabled/readonly prop for Checkbox and RadioButton [\#302](https://github.com/primefaces/primereact/issues/302)
+- Checkbox and Radio should mark checked/onChange props as required [\#287](https://github.com/primefaces/primereact/issues/287)
+- DataTable pageLinkSize [\#276](https://github.com/primefaces/primereact/issues/276)
+
+**Fixed Bugs:**
+
+- Dialog is displayed below topbar in showcase [\#284](https://github.com/primefaces/primereact/issues/284)
+- ResizableColumns fail inside Dialog [\#281](https://github.com/primefaces/primereact/issues/281)
+- File Upload Dialog opens only once if set to Auto [\#306](https://github.com/primefaces/primereact/issues/306)
+- rowsPerPage missing from DataTable d.ts file [\#304](https://github.com/primefaces/primereact/issues/304)
+- Dropdown does not show selected value when editable is true [\#301](https://github.com/primefaces/primereact/issues/301)
+- Calendar d.ts marks all props as required [\#296](https://github.com/primefaces/primereact/issues/296)
+- Dialog: closeOnEscape doesn't work [\#295](https://github.com/primefaces/primereact/issues/295)
+- Calendar yearNavigator fails [\#294](https://github.com/primefaces/primereact/issues/294)
+- Spinner shows weird Values [\#293](https://github.com/primefaces/primereact/issues/293)
+- OrderList error [\#291](https://github.com/primefaces/primereact/issues/291)
+- Duplicate identifier 'any': PickList.d.ts [\#290](https://github.com/primefaces/primereact/issues/290)
+- In Lazy load mode selection highlight doesn't work properly [\#283](https://github.com/primefaces/primereact/issues/283)
+- Type Definitions incomplete for FileUpload [\#277](https://github.com/primefaces/primereact/issues/277)
+- Growl does not clear timeout on unmount [\#272](https://github.com/primefaces/primereact/issues/272)
+- Calender select day in adjacent month [\#266](https://github.com/primefaces/primereact/issues/266)
+
+## [1.4.0](https://github.com/primefaces/primereact/tree/1.4.0) (2018-01-04)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.4.0-rc.2...1.4.0)
+
+**Implemented New Features and Enhancements:**
+
+- Improve DataTable.d.ts RowExpansion config [\#269](https://github.com/primefaces/primereact/issues/269)
+- KeyFilter attribute [\#265](https://github.com/primefaces/primereact/issues/265)
+- Card Component [\#264](https://github.com/primefaces/primereact/issues/264)
+- Migrate to react-transition-group [\#259](https://github.com/primefaces/primereact/issues/259)
+- Calendar should consider props.disabled in shouldComponentUpdate [\#258](https://github.com/primefaces/primereact/issues/258)
+
+**Fixed Bugs:**
+
+- Spinner does not accept decimal or thousand separator as input [\#270](https://github.com/primefaces/primereact/issues/270)
+- Calendar does not rerender when we change "disabled" prop [\#263](https://github.com/primefaces/primereact/issues/263)
+- Calendar may reset date on update [\#262](https://github.com/primefaces/primereact/issues/262)
+- ExportCSV ignores headers in DataTable [\#261](https://github.com/primefaces/primereact/issues/261)
+- Spinner binds invalid event [\#260](https://github.com/primefaces/primereact/issues/260)
+- Autocomplete dropdown no longer working [\#254](https://github.com/primefaces/primereact/issues/254)
+
+## [1.4.0-rc.2](https://github.com/primefaces/primereact/tree/1.4.0-rc.2) (2018-01-04)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.4.0-rc.1...1.4.0-rc.2)
+
+## [1.4.0-rc.1](https://github.com/primefaces/primereact/tree/1.4.0-rc.1) (2018-01-04)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.3.1...1.4.0-rc.1)
+
+## [1.3.1](https://github.com/primefaces/primereact/tree/1.3.1) (2017-12-22)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.3.0...1.3.1)
+
+## [1.3.0](https://github.com/primefaces/primereact/tree/1.3.0) (2017-12-13)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.3.0-rc.1...1.3.0)
+
+**Implemented New Features and Enhancements:**
+
+- New Component: ScrollPanel [\#251](https://github.com/primefaces/primereact/issues/251)
+- Keyboard accessibility for Panel components [\#250](https://github.com/primefaces/primereact/issues/250)
+- Refactor FileUpload [\#247](https://github.com/primefaces/primereact/issues/247)
+
+**Fixed Bugs:**
+
+- Missing dependency in primereact npm artifcat: 'react-addons-css-transition-group' [\#242](https://github.com/primefaces/primereact/issues/242)
+- AutoComplete dosn't accept spaces [\#249](https://github.com/primefaces/primereact/issues/249)
+- Calendar title month and year has no margin [\#248](https://github.com/primefaces/primereact/issues/248)
+- Toggleable fieldset resets if parent is updated [\#246](https://github.com/primefaces/primereact/issues/246)
+- Accordion resets if parent is updated [\#245](https://github.com/primefaces/primereact/issues/245)
+- Toggleable panel resets if parent is updated [\#244](https://github.com/primefaces/primereact/issues/244)
+- Growl.d.ts allow GrowlMessage.detail to be Element [\#241](https://github.com/primefaces/primereact/issues/241)
+- Password's 'inputProps' missing in d.ts file [\#240](https://github.com/primefaces/primereact/issues/240)
+- feedback={false} not working for Password [\#239](https://github.com/primefaces/primereact/issues/239)
+- AutoCompleteProps: Missing data object in itemTemplate [\#237](https://github.com/primefaces/primereact/issues/237)
+- Missing param name in d.ts-files [\#236](https://github.com/primefaces/primereact/issues/236)
+- Spinner d.ts missing onChange [\#235](https://github.com/primefaces/primereact/issues/235)
+
+## [1.3.0-rc.1](https://github.com/primefaces/primereact/tree/1.3.0-rc.1) (2017-12-07)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.2.0...1.3.0-rc.1)
+
+**Implemented New Features and Enhancements:**
+
+- Add style/classname props to Radio and Checkbox [\#233](https://github.com/primefaces/primereact/issues/233)
+- New properties to TriStateCheckbox [\#232](https://github.com/primefaces/primereact/issues/232)
+- Keyboard Accessibility for TriStateCheckbox [\#230](https://github.com/primefaces/primereact/issues/230)
+- Keyboard accessibility for Spinner [\#229](https://github.com/primefaces/primereact/issues/229)
+- Refactor Spinner [\#228](https://github.com/primefaces/primereact/issues/228)
+- Animation for FieldSet [\#223](https://github.com/primefaces/primereact/issues/223)
+- Refactor Calendar [\#222](https://github.com/primefaces/primereact/issues/222)
+- Resize support for Scrollable Table [\#219](https://github.com/primefaces/primereact/issues/219)
+- Password does not pass all input parameters [\#216](https://github.com/primefaces/primereact/issues/216)
+- Reimplement ColorPicker [\#214](https://github.com/primefaces/primereact/issues/214)
+- Rewrite Button CSS [\#213](https://github.com/primefaces/primereact/issues/213)
+- appendTo for MultiSelect [\#212](https://github.com/primefaces/primereact/issues/212)
+- Use Portal API in Dropdown appendTo [\#211](https://github.com/primefaces/primereact/issues/211)
+- Use Portal API in AutoComplete appendTo [\#210](https://github.com/primefaces/primereact/issues/210)
+- Use Portal API in Overlay appendTo [\#209](https://github.com/primefaces/primereact/issues/209)
+- Add inputId to Checkbox and Radio [\#208](https://github.com/primefaces/primereact/issues/208)
+- Keyboard accessibility for Checkbox and RadioButton [\#207](https://github.com/primefaces/primereact/issues/207)
+- Floating Labels for Inputs [\#205](https://github.com/primefaces/primereact/issues/205)
+- Add appendTo to Dialog [\#204](https://github.com/primefaces/primereact/issues/204)
+- Reimplement Messages [\#203](https://github.com/primefaces/primereact/issues/203)
+- Reimplement Growl [\#202](https://github.com/primefaces/primereact/issues/202)
+- Screen Reader and Keyboard Accessibility support for Fieldset [\#201](https://github.com/primefaces/primereact/issues/201)
+- Screen Reader support for Panel [\#200](https://github.com/primefaces/primereact/issues/200)
+- Screen Reader support for Dialog [\#199](https://github.com/primefaces/primereact/issues/199)
+- Screen Reader support for TabView [\#198](https://github.com/primefaces/primereact/issues/198)
+- Screen Reader and Keyboard Accessibility for Accordion [\#197](https://github.com/primefaces/primereact/issues/197)
+- Loading status for AutoComplete [\#193](https://github.com/primefaces/primereact/issues/193)
+- Custom content for paginator [\#189](https://github.com/primefaces/primereact/issues/189)
+- Animation for Accordion [\#182](https://github.com/primefaces/primereact/issues/182)
+- Unsortable option for DataTable columns [\#179](https://github.com/primefaces/primereact/issues/179)
+
+**Fixed Bugs:**
+
+- Radio and Checkbox does pass props to super [\#231](https://github.com/primefaces/primereact/issues/231)
+- Dropdown Filter blocks keyboard navigation of items [\#227](https://github.com/primefaces/primereact/issues/227)
+- Dropdown keyboard navigation does not scroll items [\#226](https://github.com/primefaces/primereact/issues/226)
+- InputTextarea ignores focus, blur, input and keyup [\#225](https://github.com/primefaces/primereact/issues/225)
+- Browser textarea resize breaks autoResize of textarea [\#224](https://github.com/primefaces/primereact/issues/224)
+- DataTable dataKey ignored [\#221](https://github.com/primefaces/primereact/issues/221)
+- AutoComplete does not reflect model binding [\#220](https://github.com/primefaces/primereact/issues/220)
+- Clicking table header throws exception [\#218](https://github.com/primefaces/primereact/issues/218)
+- Resizing last column gives error on DataTable [\#217](https://github.com/primefaces/primereact/issues/217)
+- OverlayPanel: appendTo="body" throws exception [\#206](https://github.com/primefaces/primereact/issues/206)
+- Growl: messages appears again on any change state [\#196](https://github.com/primefaces/primereact/issues/196)
+- InputText: ui-state-filled class is not added, if value chaged in parent component [\#195](https://github.com/primefaces/primereact/issues/195)
+- AutoComplete Dropdown select not hiding [\#191](https://github.com/primefaces/primereact/issues/191)
+- Menu components\(menu,menubar...\) reload problem [\#190](https://github.com/primefaces/primereact/issues/190)
+- Datatable - not propagate prop filterMatchMode when lazyload is on [\#187](https://github.com/primefaces/primereact/issues/187)
+- datatable- Not Adjusted columns with expander [\#186](https://github.com/primefaces/primereact/issues/186)
+- DataTable: page is not reseted after global filtering [\#184](https://github.com/primefaces/primereact/issues/184)
+- onNodeExpand and onNodeCollapse events are not working on Tree [\#183](https://github.com/primefaces/primereact/issues/183)
+- Panel Header and Dropdown problem [\#175](https://github.com/primefaces/primereact/issues/175)
+
+## [1.2.0](https://github.com/primefaces/primereact/tree/1.2.0) (2017-11-01)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.1.0...1.2.0)
+
+**Implemented New Features and Enhancements:**
+
+- Improve typings of some components [\#172](https://github.com/primefaces/primereact/issues/172)
+- Add rowsPerPageOptions to DataTable [\#171](https://github.com/primefaces/primereact/issues/171)
+- Animation for Panel toggle [\#170](https://github.com/primefaces/primereact/issues/170)
+- Disabled tabs for Accordion [\#169](https://github.com/primefaces/primereact/issues/169)
+- New style properties for Accordion Tab [\#168](https://github.com/primefaces/primereact/issues/168)
+- Disabled tabs in TabView [\#167](https://github.com/primefaces/primereact/issues/167)
+- Add style properties to TabView and TabPanel [\#166](https://github.com/primefaces/primereact/issues/166)
+- Disabled prop for TabPanel [\#164](https://github.com/primefaces/primereact/issues/164)
+- Use Dropdown component for Paginator rowsPerPage select [\#163](https://github.com/primefaces/primereact/issues/163)
+- Support any type of object as a select option [\#162](https://github.com/primefaces/primereact/issues/162)
+- Undeterminate ProgressBar [\#160](https://github.com/primefaces/primereact/issues/160)
+- New Message component [\#159](https://github.com/primefaces/primereact/issues/159)
+- New ProgressSpinner Component [\#143](https://github.com/primefaces/primereact/issues/143)
+
+**Fixed Bugs:**
+
+- DataTable: `onLazyLoad` does not support `sortMode="multiple"` [\#157](https://github.com/primefaces/primereact/issues/157)
+- Password not trigger onChange event [\#177](https://github.com/primefaces/primereact/issues/177)
+- Virtual Scrolling Flickers [\#173](https://github.com/primefaces/primereact/issues/173)
+- Type definition missing from TabPanel [\#165](https://github.com/primefaces/primereact/issues/165)
+- DataTable: Changing a filter does not trigger `onLazyLoad` for async tables [\#158](https://github.com/primefaces/primereact/issues/158)
+- Growl throws error [\#149](https://github.com/primefaces/primereact/issues/149)
+- MultiSelect: onClick: event.stopPropagation is not a function [\#147](https://github.com/primefaces/primereact/issues/147)
+- utc parameter is not working when keying in the date [\#146](https://github.com/primefaces/primereact/issues/146)
+- Click on input filter causes sort [\#133](https://github.com/primefaces/primereact/issues/133)
+
+## [1.1.0](https://github.com/primefaces/primereact/tree/1.1.0) (2017-10-18)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.1...1.1.0)
+
+**Implemented New Features and Enhancements:**
+
+- Sidebar component [\#122](https://github.com/primefaces/primereact/issues/122)
+- Expose show\(\),hide\(\) and toggle\(\) in props of ContextMenu [\#113](https://github.com/primefaces/primereact/issues/113)
+- Reimplement AutoComplete [\#141](https://github.com/primefaces/primereact/issues/141)
+- Specific styles for header, body and footer [\#140](https://github.com/primefaces/primereact/issues/140)
+- Sticky mode for Growl [\#139](https://github.com/primefaces/primereact/issues/139)
+- Add onClick to Growl [\#138](https://github.com/primefaces/primereact/issues/138)
+- rowClassName for DataTable [\#137](https://github.com/primefaces/primereact/issues/137)
+- Typescript Support [\#131](https://github.com/primefaces/primereact/issues/131)
+- New Component: GMap [\#130](https://github.com/primefaces/primereact/issues/130)
+- Keyboard support for SelectButton [\#129](https://github.com/primefaces/primereact/issues/129)
+- Reimplement SelectButton [\#128](https://github.com/primefaces/primereact/issues/128)
+- license file [\#117](https://github.com/primefaces/primereact/issues/117)
+- Frozen Columns support for Column Groups [\#107](https://github.com/primefaces/primereact/issues/107)
+- Loading status for DataTable [\#94](https://github.com/primefaces/primereact/issues/94)
+- Editable Cells for DataTable [\#80](https://github.com/primefaces/primereact/issues/80)
+- Virtual Scrolling For DataTable [\#79](https://github.com/primefaces/primereact/issues/79)
+- Percentage support for DataTable ScrollWidth and ScrollHeight [\#77](https://github.com/primefaces/primereact/issues/77)
+
+**Fixed Bugs:**
+
+- Dropdown Menu in DataTable with resizableColumns [\#123](https://github.com/primefaces/primereact/issues/123)
+- Sorting does not work when you are using Column Group feature [\#115](https://github.com/primefaces/primereact/issues/115)
+- TimeOnly calendar fails [\#144](https://github.com/primefaces/primereact/issues/144)
+- DataTable: OnLazyLoad repeatedly calling function / infinite loop [\#132](https://github.com/primefaces/primereact/issues/132)
+- Dropdown menu sits behind grid [\#126](https://github.com/primefaces/primereact/issues/126)
+- SelectButton cannot have initial State [\#121](https://github.com/primefaces/primereact/issues/121)
+- Calendar minDate and maxDate property does not reload dynamically [\#119](https://github.com/primefaces/primereact/issues/119)
+- Growl doesn't call onClear method [\#112](https://github.com/primefaces/primereact/issues/112)
+- AutoComplete completeMethod triggered twice / delay does not work as expected [\#111](https://github.com/primefaces/primereact/issues/111)
+- Calendar is not updated according when props.value is changed [\#110](https://github.com/primefaces/primereact/issues/110)
+
+## [1.0.1](https://github.com/primefaces/primereact/tree/1.0.1) (2017-09-21)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0...1.0.1)
+
+**Implemented New Features and Enhancements:**
+
+- appendTo for OverlayPanel [\#96](https://github.com/primefaces/primereact/issues/96)
+- Update demo to Router v4 [\#93](https://github.com/primefaces/primereact/issues/93)
+- Refactor InputText filled state implementation [\#91](https://github.com/primefaces/primereact/issues/91)
+- Missing event for components [\#90](https://github.com/primefaces/primereact/issues/90)
+- Customizable Paginator using Templating [\#88](https://github.com/primefaces/primereact/issues/88)
+- Column Reordering for DataTable [\#81](https://github.com/primefaces/primereact/issues/81)
+
+**Fixed Bugs:**
+
+- Wrong documentation for BreadCrumb component [\#100](https://github.com/primefaces/primereact/issues/100)
+- Relative Position calculation is wrong [\#109](https://github.com/primefaces/primereact/issues/109)
+- Dropdown options does not update when props is changed [\#108](https://github.com/primefaces/primereact/issues/108)
+- Dynamic and Static Columns cause error [\#106](https://github.com/primefaces/primereact/issues/106)
+- Broken css in Version 1.0 [\#105](https://github.com/primefaces/primereact/issues/105)
+- Dropdown selected option not updated after value property changes [\#103](https://github.com/primefaces/primereact/issues/103)
+- Chart is not updated when data changes [\#102](https://github.com/primefaces/primereact/issues/102)
+- The value of AutoComplete is not reset after changing state [\#101](https://github.com/primefaces/primereact/issues/101)
+- FileUpload does not allow multiple files [\#99](https://github.com/primefaces/primereact/issues/99)
+- Dialog contentStyle doesn't work [\#92](https://github.com/primefaces/primereact/issues/92)
+- InputText disabled behavior missing readonly functionality [\#89](https://github.com/primefaces/primereact/issues/89)
+
+## [1.0.0](https://github.com/primefaces/primereact/tree/1.0.0) (2017-09-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-rc.3...1.0.0)
+
+**Implemented New Features and Enhancements:**
+
+- Reimplement Listbox [\#87](https://github.com/primefaces/primereact/issues/87)
+- Reimplement PickList [\#86](https://github.com/primefaces/primereact/issues/86)
+- Reimplement Rating [\#84](https://github.com/primefaces/primereact/issues/84)
+- Reimplement Calendar [\#83](https://github.com/primefaces/primereact/issues/83)
+- Disabled Dates for Calendar [\#82](https://github.com/primefaces/primereact/issues/82)
+
+## [1.0.0-rc.3](https://github.com/primefaces/primereact/tree/1.0.0-rc.3) (2017-09-09)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-rc.2...1.0.0-rc.3)
+
+## [1.0.0-rc.2](https://github.com/primefaces/primereact/tree/1.0.0-rc.2) (2017-09-08)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-rc.1...1.0.0-rc.2)
+
+## [1.0.0-rc.1](https://github.com/primefaces/primereact/tree/1.0.0-rc.1) (2017-08-31)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.6...1.0.0-rc.1)
+
+**Implemented New Features and Enhancements:**
+
+- Re implemented Dropdown component [\#76](https://github.com/primefaces/primereact/issues/76)
+- Re-implemented Dialog Component [\#75](https://github.com/primefaces/primereact/issues/75)
+
+**Fixed Bugs:**
+
+- PickList callbacks reference error [\#74](https://github.com/primefaces/primereact/issues/74)
+- The state of user is not updated after closing dialog [\#72](https://github.com/primefaces/primereact/issues/72)
+- The onClick event of Choose button is fired twice on FileUpload [\#71](https://github.com/primefaces/primereact/issues/71)
+
+## [1.0.0-beta.6](https://github.com/primefaces/primereact/tree/1.0.0-beta.6) (2017-08-21)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.5...1.0.0-beta.6)
+
+## [1.0.0-beta.5](https://github.com/primefaces/primereact/tree/1.0.0-beta.5) (2017-08-21)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.4...1.0.0-beta.5)
+
+**Implemented New Features and Enhancements:**
+
+- Add id attribute to all components [\#70](https://github.com/primefaces/primereact/issues/70)
+- Inconsistent API to add CSS class with certain of your component [\#68](https://github.com/primefaces/primereact/issues/68)
+
+**Fixed Bugs:**
+
+- InputText and InputTextarea components aren't re-rendered when props are updated [\#69](https://github.com/primefaces/primereact/issues/69)
+
+## [1.0.0-beta.4](https://github.com/primefaces/primereact/tree/1.0.0-beta.4) (2017-08-16)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.3...1.0.0-beta.4)
+
+**Implemented New Features and Enhancements:**
+
+- Text Editor [\#66](https://github.com/primefaces/primereact/issues/66)
+
+## [1.0.0-beta.3](https://github.com/primefaces/primereact/tree/1.0.0-beta.3) (2017-08-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.2...1.0.0-beta.3)
+
+## [1.0.0-beta.2](https://github.com/primefaces/primereact/tree/1.0.0-beta.2) (2017-08-10)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-beta.1...1.0.0-beta.2)
+
+## [1.0.0-beta.1](https://github.com/primefaces/primereact/tree/1.0.0-beta.1) (2017-08-09)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-alpha.2...1.0.0-beta.1)
+
+**Implemented New Features and Enhancements:**
+
+- DataTable Crud [\#63](https://github.com/primefaces/primereact/issues/63)
+- MegaMenu component [\#62](https://github.com/primefaces/primereact/issues/62)
+- Steps component [\#61](https://github.com/primefaces/primereact/issues/61)
+- PanelMenu component [\#59](https://github.com/primefaces/primereact/issues/59)
+- ContextMenu component [\#58](https://github.com/primefaces/primereact/issues/58)
+- Menubar component [\#57](https://github.com/primefaces/primereact/issues/57)
+- TieredMenu component [\#56](https://github.com/primefaces/primereact/issues/56)
+- Breadcrumb component [\#54](https://github.com/primefaces/primereact/issues/54)
+- Add tabmenu component [\#53](https://github.com/primefaces/primereact/issues/53)
+- Add menu component [\#51](https://github.com/primefaces/primereact/issues/51)
+- Add lightbox component [\#46](https://github.com/primefaces/primereact/issues/46)
+- Add toolbar component [\#44](https://github.com/primefaces/primereact/issues/44)
+- Add password component [\#43](https://github.com/primefaces/primereact/issues/43)
+- Add keyboard support to dropdown [\#39](https://github.com/primefaces/primereact/issues/39)
+- Implemented DataScroller component [\#37](https://github.com/primefaces/primereact/issues/37)
+- Implemented Rating component [\#36](https://github.com/primefaces/primereact/issues/36)
+- Implemented ColorPicker component [\#35](https://github.com/primefaces/primereact/issues/35)
+
+## [1.0.0-alpha.2](https://github.com/primefaces/primereact/tree/1.0.0-alpha.2) (2017-05-25)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/1.0.0-alpha.1...1.0.0-alpha.2)
+
+**Implemented New Features and Enhancements:**
+
+- TreeTable Component [\#34](https://github.com/primefaces/primereact/issues/34)
+- Mobile Touch support to Slider Component [\#33](https://github.com/primefaces/primereact/issues/33)
+- Implemented Captcha Component [\#32](https://github.com/primefaces/primereact/issues/32)
+- Tree Component [\#31](https://github.com/primefaces/primereact/issues/31)
+
+**Fixed Bugs:**
+
+- Accordion activeIndex doesn't work [\#30](https://github.com/primefaces/primereact/issues/30)
+- Dropdown onChange invoked on same item selection [\#28](https://github.com/primefaces/primereact/issues/28)
+- activeIndex property on TabView doesn't work [\#26](https://github.com/primefaces/primereact/issues/26)
+- Dropdown is missing input focus [\#21](https://github.com/primefaces/primereact/issues/21)
+- Spinner controls are not user friendly [\#20](https://github.com/primefaces/primereact/issues/20)
+- MultiSelect Input focus is missing [\#19](https://github.com/primefaces/primereact/issues/19)
+- Accordion Tab Caret icons are not toggleable [\#18](https://github.com/primefaces/primereact/issues/18)
+- Radio button label toggle state is missing [\#14](https://github.com/primefaces/primereact/issues/14)
+- Chips need input focus [\#13](https://github.com/primefaces/primereact/issues/13)
+- Checkbox label toggle state is not working [\#12](https://github.com/primefaces/primereact/issues/12)
+- Autocomplete Multiple feature missing input focus [\#10](https://github.com/primefaces/primereact/issues/10)
+
+## [1.0.0-alpha.1](https://github.com/primefaces/primereact/tree/1.0.0-alpha.1) (2017-03-28)
+
+[Full Changelog](https://github.com/primefaces/primereact/compare/2eb760f17382a3b3a47d70f6f6076e21f5c90cfb...1.0.0-alpha.1)
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 0000000000..56699aa980
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,128 @@
+# Contributor Covenant Code of Conduct
+
+## Our Pledge
+
+We as members, contributors, and leaders pledge to make participation in our
+community a harassment-free experience for everyone, regardless of age, body
+size, visible or invisible disability, ethnicity, sex characteristics, gender
+identity and expression, level of experience, education, socio-economic status,
+nationality, personal appearance, race, religion, or sexual identity
+and orientation.
+
+We pledge to act and interact in ways that contribute to an open, welcoming,
+diverse, inclusive, and healthy community.
+
+## Our Standards
+
+Examples of behavior that contributes to a positive environment for our
+community include:
+
+* Demonstrating empathy and kindness toward other people
+* Being respectful of differing opinions, viewpoints, and experiences
+* Giving and gracefully accepting constructive feedback
+* Accepting responsibility and apologizing to those affected by our mistakes,
+ and learning from the experience
+* Focusing on what is best not just for us as individuals, but for the
+ overall community
+
+Examples of unacceptable behavior include:
+
+* The use of sexualized language or imagery, and sexual attention or
+ advances of any kind
+* Trolling, insulting or derogatory comments, and personal or political attacks
+* Public or private harassment
+* Publishing others' private information, such as a physical or email
+ address, without their explicit permission
+* Other conduct which could reasonably be considered inappropriate in a
+ professional setting
+
+## Enforcement Responsibilities
+
+Community leaders are responsible for clarifying and enforcing our standards of
+acceptable behavior and will take appropriate and fair corrective action in
+response to any behavior that they deem inappropriate, threatening, offensive,
+or harmful.
+
+Community leaders have the right and responsibility to remove, edit, or reject
+comments, commits, code, wiki edits, issues, and other contributions that are
+not aligned to this Code of Conduct, and will communicate reasons for moderation
+decisions when appropriate.
+
+## Scope
+
+This Code of Conduct applies within all community spaces, and also applies when
+an individual is officially representing the community in public spaces.
+Examples of representing our community include using an official e-mail address,
+posting via an official social media account, or acting as an appointed
+representative at an online or offline event.
+
+## Enforcement
+
+Instances of abusive, harassing, or otherwise unacceptable behavior may be
+reported to the community leaders responsible for enforcement at
+contact@primetek.com.tr.
+All complaints will be reviewed and investigated promptly and fairly.
+
+All community leaders are obligated to respect the privacy and security of the
+reporter of any incident.
+
+## Enforcement Guidelines
+
+Community leaders will follow these Community Impact Guidelines in determining
+the consequences for any action they deem in violation of this Code of Conduct:
+
+### 1. Correction
+
+**Community Impact**: Use of inappropriate language or other behavior deemed
+unprofessional or unwelcome in the community.
+
+**Consequence**: A private, written warning from community leaders, providing
+clarity around the nature of the violation and an explanation of why the
+behavior was inappropriate. A public apology may be requested.
+
+### 2. Warning
+
+**Community Impact**: A violation through a single incident or series
+of actions.
+
+**Consequence**: A warning with consequences for continued behavior. No
+interaction with the people involved, including unsolicited interaction with
+those enforcing the Code of Conduct, for a specified period of time. This
+includes avoiding interactions in community spaces as well as external channels
+like social media. Violating these terms may lead to a temporary or
+permanent ban.
+
+### 3. Temporary Ban
+
+**Community Impact**: A serious violation of community standards, including
+sustained inappropriate behavior.
+
+**Consequence**: A temporary ban from any sort of interaction or public
+communication with the community for a specified period of time. No public or
+private interaction with the people involved, including unsolicited interaction
+with those enforcing the Code of Conduct, is allowed during this period.
+Violating these terms may lead to a permanent ban.
+
+### 4. Permanent Ban
+
+**Community Impact**: Demonstrating a pattern of violation of community
+standards, including sustained inappropriate behavior, harassment of an
+individual, or aggression toward or disparagement of classes of individuals.
+
+**Consequence**: A permanent ban from any sort of public interaction within
+the community.
+
+## Attribution
+
+This Code of Conduct is adapted from the [Contributor Covenant][homepage],
+version 2.0, available at
+https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
+
+Community Impact Guidelines were inspired by [Mozilla's code of conduct
+enforcement ladder](https://github.com/mozilla/diversity).
+
+[homepage]: https://www.contributor-covenant.org
+
+For answers to common questions about this code of conduct, see the FAQ at
+https://www.contributor-covenant.org/faq. Translations are available at
+https://www.contributor-covenant.org/translations.
diff --git a/CODING_STANDARDS.md b/CODING_STANDARDS.md
new file mode 100644
index 0000000000..64c8677441
--- /dev/null
+++ b/CODING_STANDARDS.md
@@ -0,0 +1,265 @@
+# Coding Standards
+
+## Declaration Rules
+
+### Using Explanatory Names for Variables
+
+ // Bad
+ let x = 10; // What does "x" represent?
+
+ // Good
+ let numberOfUsers = 10; // Clearly states what the variable represents
+
+ // Bad
+ let y = true; // What does "y" represent?
+
+ // Good
+ let isLoggedIn = true; // Clearly states the user's login status
+
+### Using Verbs for Boolean Variables
+
+ // Bad
+ let loggedIn = false;
+ let userAccess = true;
+
+ // Good
+ let isLoggedIn = false;
+ let canAccess = true;
+ let isActive = true;
+ let hasPermission = false;
+
+### Declarations on Top
+
+ function exampleFunction() {
+ let x; // Declare variable at the top
+ let y; // Declare variable at the top
+
+ // Function body
+ // Code that uses variables x and y
+ }
+
+### One Declaration per Line
+
+ \\Bad
+ let x,y,z;
+
+ \\Good
+ let x;
+ let y;
+ let z;
+
+### Initialize Variables
+
+ let hasBorder = false;
+ let repeatedTimes = 0;
+ let images = [];
+
+### Declare Arrays with Const
+
+ \\Bad
+ let images = ['img1', 'img2', 'img3'];
+ images = 3; \\Converted images to number
+
+ \\Good
+ const images = ['img1', 'img2', 'img3'];
+
+### End Switch Case's with Defaults
+
+ switch (new Date().getDay()) {
+ case 0:
+ day = "Sunday";
+ break;
+ case 1:
+ day = "Monday";
+ break;
+ default:
+ day = "Unknown";
+ }
+
+### Avoid Number, String, and Boolean as Objects
+
+Always treat numbers, strings, or booleans as primitive values. Not as objects.
+Declaring these types as objects, slows down execution speed, and produces nasty side effects:
+
+ // Example
+ let x = "John";
+ let y = new String("John");
+ (x === y) // is false because x is a string and y is an object.
+
+ // Bad
+ const num = new Number(10);
+ const str = new String("Hello");
+ const bool = new Boolean(true);
+
+ // Good
+ const num = 10;
+ const str = "Hello";
+ const bool = true;
+
+## Spacing
+
+- Indentation with tabs.
+- No whitespace at the end of line or on blank lines.
+- Lines should usually be no longer than 80 characters, and should not exceed 120 (counting tabs as 4 spaces).
+- No filler spaces in empty constructs (e.g., {}, [], fn()).
+- There should be a new line at the end of each file.
+- All function bodies are indented by one tab, even if the entire file is wrapped in a closure.
+
+## Ordering
+
+Ensuring that each function is defined before it is used is a good practice for code readability and maintainability.
+
+ // Define functions before they are used
+ function validateUserData(userData) {
+ // Logic to validate user data
+ }
+
+ function sanitizeUserData(userData) {
+ validateUserData()
+ }
+
+ function saveUserData(userData) {
+ sanitizeUserData()
+ }
+
+### Imports order
+
+1. React import
+2. Library imports (Alphabetical order)
+3. Absolute imports from the project (Alphabetical order)
+4. Relative imports (Alphabetical order)
+5. Import \* as
+6. Import \.\
+
+### Array and Object Declarations
+
+ // Preferred
+ var obj = {
+ ready: 9,
+ when: 4,
+ 'you are': 15,
+ };
+
+ var arr = [
+ 9,
+ 4,
+ 15,
+ ];
+
+ // Acceptable for small objects and arrays
+ var obj = { ready: 9, when: 4, 'you are': 15 };
+ var arr = [ 9, 4, 15 ];
+
+## Semicolons
+
+Use them. Never rely on Automatic Semicolon Insertion (ASI).
+
+## Equality
+
+### Use === Comparison
+
+ 0 == ""; // true
+ 1 == "1"; // true
+ 1 == true; // true
+
+ 0 === ""; // false
+ 1 === "1"; // false
+ 1 === true; // false
+
+## React
+
+### Breakdown Components
+
+Breaking down components refers to decomposing complex systems or functionalities into smaller, more manageable parts or components. This practice helps improve code organization, readability, and maintainability.
+
+ // Bad
+ function processUserData(userData) {
+ // Complex logic to process user data
+ }
+
+ // Good
+ function validateUserData(userData) {
+ // Logic to validate user data
+ }
+
+ function sanitizeUserData(userData) {
+ // Logic to sanitize user data
+ }
+
+ function saveUserData(userData) {
+ // Logic to save user data
+ }
+
+### Use Functional Components
+
+Using functional components instead of class components whenever possible is wise because functional components are easier to read and write. Functional components are generally faster and more efficient than class components because they don't require a constructor or lifecycle methods.
+
+ // Good:
+ const MyComponent = () => {
+ return (
+
+ {/* JSX */}
+
+ );
+ };
+
+### Avoid Using Inline Styles
+
+Avoiding inline styles is a best practice in web development because it promotes separation of concerns, improves maintainability, and makes it easier to manage styles across an application. Instead of applying styles directly in HTML elements, it's recommended to use external stylesheets or CSS-in-JS solutions.
+
+ // Bad:
+ const MyComponent = () => {
+ return (
+
+ );
+ };
+
+### Passing Objects Instead of Multiple Props
+
+Especially when there are more than **4 props**, can enhance code readability and maintainability.
+
+ //Bad
+ const updateTodo = (id, name, completed, date, user) => {
+ //...
+ }
+
+ // Good
+ const todoItem = {
+ id: 1,
+ name: "Morning Task",
+ completed: false,
+ date: new Date(),
+ user: "Optimus"
+ }
+
+ const updateTodo = (todoItem) => {
+ //...
+ }
+
+### Avoid default export
+
+Using named exports provides better **clarity** when importing components, making the codebase more organized and easier to navigate.
+
+- Named imports work well with tree shaking.
+- Refactoring becomes easier.
+- Easier to identify and understand the dependencies of a module.
+
+## Utils
+
+### Avoid Using eval()
+
+The `eval()` function is used to run text as code. In almost all cases, it should not be necessary to use it.
+
+Because it allows arbitrary code to be run, it also represents a security problem.
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000000..95f67a0d50
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,228 @@
+Contributing to PrimeReact: Terms and Conditions
+================================================
+
+------------------------------------------------------------------------------
+
+Do you want to contribute your work to PrimeReact? Well, then first and most important: **THANK YOU!**
+
+
+Now, in order to accept your contribution, there are some terms you must expressly agree with, so please
+read them carefully. They might look a bit cumbersome, but they are here just in order to protect
+you, your contribution, and especially the project's future.
+
+**Important**: submitting any contributions to the PrimeReact project implies your **full acceptance of these terms**,
+including the *"PrimeReact Individual Contributor License Agreement"* detailed at the end.
+
+Who can contribute?
+-------------------
+
+Anyone, with the unique condition that he/she must be a **private individual**, acting in
+his/her own name, and not being endorsed in their contributed work by any company or government.
+
+Note that this condition will not only refer to the ownership of the effort invested in contributing
+to the project, but also to the fact that *no private or public company will be mentioned as a a part
+of your contribution on the project's website or code*, including but not limited to web/email addresses
+or package names.
+
+
+What is the first step to be taken?
+-----------------------------------
+
+First of all, **Discuss with the [project members](https://github.com/orgs/primefaces/discussions)** (a new thread should do) about
+your ideas: new features, fixes, documentation... whatever you would like to contribute to the project. Let we
+discuss the possibilities with you so that we make sure your contribution goes in the right direction and aligns
+with the project's standards, intentions and roadmap.
+
+
+
+How will your relation with the PrimeReact project be?
+-----------------------------------------------------
+
+Your contributions will have the form of GitHub *pull requests*. Note that contributors do not
+have read+write (or *pull+push*) access to the project repositories, only project *members* do.
+
+Also, please understand that *not all pull requests will be accepted and merged into the project's
+repositories*. Talking about your planned contributions with the project members before creating pull requests
+will maximize the possibilities of your contributions being accepted.
+
+About the code you contribute
+-----------------------------
+
+### General guidelines:
+
+ - Obviously, **your code must both compile and work correctly**. Also, the addition of any new patches to the
+ codebase should not render it unstable in any way.
+ - All your code should be easy to read and understand by a human.
+ - There should be no compilation warnings at all.
+ - Checkstyle must pass without errors or warnings. Currently this is embedded into the maven build.
+
+### Detailed code quality standards:
+
+ - All your code should compile and run in **Node 16.x or higher**.
+ - All comments, names of classes and variables, log messages, etc. must be **in English**.
+
+
+
+About the documentation/articles you contribute
+-----------------------------------------------
+
+Note the following only applies to documentation/articles meant to be published at the PrimeReact website.
+
+ - All documentation artifacts, including articles, must be written **in correct English**.
+ - Your name and email will be displayed as *"author"* of any documentation artifacts you create.
+ - Topic and text structure must be first discussed and agreed upon with the project members.
+ - Project members may edit and make small changes to your texts --of which you will be informed-- before
+ publishing them.
+ - Format and visual styles must adhere to the PrimeReact website standards, of which you will be informed
+ by the project members.
+
+
+
+Pay special attention to this
+-----------------------------
+
+All PrimeReact software is distributed under the **MIT** open source license, and your contributions
+will be licensed in the same way.
+
+If you work for a company which, by the way or place in which your code was written, by your contract terms
+or by the laws in your country, could claim any rights (including but not limited to intellectual or industrial
+property) over your contributed code, you will have to send the project members (either by email from your
+authorised superiors or by signed fax), a statement indicating that your company agrees with the terms
+explained in this page, and that it both authorises your contribution to PrimeReact and states that will
+never claim any kind of rights over it.
+
+
+
+PrimeReact Individual Contributor License Agreement
+--------------------------------------------------
+
+This contributor agreement ("Agreement") documents the rights granted by contributors to the PrimeReact Project.
+
+This is a legally binding document, so please read it carefully before agreeing to it. The Agreement
+may cover more than one software project managed by PrimeReact.
+
+### 1. Definitions
+
+ * _"PrimeReact"_ means the "PrimeReact Project organization and members".
+ * _"You"_ means the individual who submits a Contribution to PrimeReact.
+ * _"Contribution"_ means any work of authorship that is submitted by you to PrimeReact in which you own
+ or assert ownership of the Copyright.
+ * _"Copyright"_ means all rights protecting works of authorship owned or controlled by you,
+ including copyright, moral and neighboring rights, as appropriate, for the full term of their
+ existence including any extensions by you.
+ * _"Material"_ means the work of authorship which is made available by PrimeReact to third parties. When
+ this Agreement covers more than one software project, the Material means the work of authorship
+ to which the Contribution was submitted. After you submit the Contribution, it may be included
+ in the Material.
+ * _"Submit"_ means any form of electronic, verbal, or written communication sent to PrimeReact or its
+ representatives, including but not limited to electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, PrimeReact for the purpose of discussing
+ and improving the Material, but excluding communication that is conspicuously marked or
+ otherwise designated in writing by you as _"Not a Contribution."
+ * _"Submission Date"_ means the date on which you submit a Contribution to PrimeReact.
+ * _"Effective Date"_ means the date you execute this agreement or the date You first submit a
+ Contribution to PrimeReact, whichever is earlier.
+
+### 2. Grant of Rights
+
+#### 2.1. Copyright License
+
+ (a) You retain ownership of the copyright in your Contribution and have the same rights to use or
+ license the Contribution which you would have had without entering into the agreement.
+ (b) To the maximum extent permitted by the relevant law, you grant to PrimeReact a perpetual, worldwide,
+ non-exclusive, transferable, royalty-free, irrevocable license under the copyright covering the
+ Contribution, with the right to sublicense such rights through multiple tiers of sublicensees, to
+ reproduce, modify, display, perform and distribute the Contribution as part of the Material; provided
+ that this license is conditioned upon compliance with Section 2.3.
+
+#### 2.2 Patent License
+
+For patent claims including, without limitation, method, process, and apparatus claims which you
+own, control or have the right to grant, now or in the future, you grant to PrimeReact a perpetual, worldwide,
+non-exclusive, transferable, royalty-free, irrevocable patent license, with the right to sublicense these
+rights to multiple tiers of sublicensees, to make, have made, use, sell, offer for sale, import and
+otherwise transfer the Contribution and the Contribution in combination with the Material (and
+portions of such combination). This license is granted only to the extent that the exercise of the
+licensed rights infringes such patent claims; and provided that this license is conditioned upon
+compliance with Section 2.3.
+
+
+#### 2.3 Outbound License
+
+As a condition on the grant of rights in Sections 2.1 and 2.2, PrimeReact agrees to license the Contribution only
+under the terms of the MIT License (including any right to adopt any future version of this license if
+permitted).
+
+
+#### 2.4 Moral Rights
+
+If moral rights apply to the Contribution, to the maximum extent permitted by law, you waive and agree not
+to assert such moral rights against PrimeReact or its successors in interest, or any of our licensees, either
+direct or indirect.
+
+
+#### 2.5 PrimeReact Rights
+
+You acknowledge that PrimeReact is not obligated to use your Contribution as part of the
+Material and may decide to include any Contributions PrimeReact considers appropriate.
+
+#### 2.6 Reservation of Rights
+
+Any rights not expressly assigned or licensed under this section are expressly reserved by you.
+
+
+
+### 3. Agreement
+
+You confirm that:
+
+ (a) You have the legal authority to enter into this Agreement.
+ (b) You own the Copyright and patent claims covering the Contribution which are required to grant
+ the rights under Section 2.
+ (c) The grant of rights under Section 2 does not violate any grant of rights which you have made to
+ third parties, including your employer. If you are an employee, you have had your employer approve
+ this Agreement. If you are less than eighteen years old, please have your parents or guardian
+ sign the Agreement.
+
+
+
+### 4. Disclaimer
+
+EXCEPT FOR THE EXPRESS WARRANTIES IN SECTION 3, THE CONTRIBUTION IS PROVIDED "AS IS". MORE PARTICULARLY,
+ALL EXPRESS OR IMPLIED WARRANTIES INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTY OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE EXPRESSLY DISCLAIMED BY YOU TO PrimeReact AND BY
+PrimeReact TO YOU. TO THE EXTENT THAT ANY SUCH WARRANTIES CANNOT BE DISCLAIMED, SUCH WARRANTY IS LIMITED IN
+DURATION TO THE MINIMUM PERIOD PERMITTED BY LAW.
+
+
+
+### 5. Consequential Damage Waiver
+
+TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL YOU OR PrimeReact BE LIABLE FOR ANY LOSS OF
+PROFITS, LOSS OF ANTICIPATED SAVINGS, LOSS OF DATA, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL AND EXEMPLARY
+DAMAGES ARISING OUT OF THIS AGREEMENT REGARDLESS OF THE LEGAL OR EQUITABLE THEORY (CONTRACT, TORT OR OTHERWISE)
+UPON WHICH THE CLAIM IS BASED.
+
+
+
+### 6. Miscellaneous
+
+ 6.1 This Agreement will be governed by and construed in accordance with the laws of Spain excluding its
+ conflicts of law provisions. Under certain circumstances, the governing law in this section might be
+ superseded by the United Nations Convention on Contracts for the International Sale of Goods ("UN
+ Convention") and the parties intend to avoid the application of the UN Convention to this Agreement
+ and, thus, exclude the application of the UN Convention in its entirety to this Agreement.
+ 6.2 This Agreement sets out the entire agreement between you and PrimeReact for your Contributions to
+ PrimeReact and overrides all other agreements or understandings.
+ 6.3 If You or PrimeReact assign the rights or obligations received through this Agreement to a third party,
+ as a condition of the assignment, that third party must agree in writing to abide by all the rights and
+ obligations in the Agreement.
+ 6.4 The failure of either party to require performance by the other party of any provision of this
+ Agreement in one situation shall not affect the right of a party to require such performance at any time
+ in the future. A waiver of performance under a provision in one situation shall not be considered a
+ waiver of the performance of the provision in the future or a waiver of the provision in its entirety.
+ 6.5 If any provision of this Agreement is found void and unenforceable, such provision will be
+ replaced to the extent possible with a provision that comes closest to the meaning of the original
+ provision and which is enforceable. The terms and conditions set forth in this Agreement shall apply
+ notwithstanding any failure of essential purpose of this Agreement or any limited remedy to the
+ maximum extent possible under law.
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
new file mode 100644
index 0000000000..023c156575
--- /dev/null
+++ b/DEVELOPMENT.md
@@ -0,0 +1,94 @@
+## Local Development
+
+This document intends to establish a series of steps to take in order to set up a local environment for developing on the primereact components with live reload, quick builds, and incremental builds.
+
+## Instructions
+
+You must have a local copy of this repository somewhere on your machine. From that repository. Before starting, make sure that the version for your `primereact/package.json` is a [valid semantic version](https://docs.npmjs.com/about-semantic-versioning) and does not contain a suffix such as `-SNAPSHOT`.
+
+Once that is done, you will run:
+
+**Unix/MacOS:**
+
+```shell
+~/primereact/ $ npm run dev:link
+```
+
+**Windows:**
+dev:link:windows
+
+```shell
+C:\primereact> npm run dev:link:windows
+```
+
+This will alter the bundler to only emit non-minified esm modules. The aliasing plugin has also been disabled for components. Once everything has been bundled (this can take a few minutes) you should keep this command running. It will allow for incremental builds as you develop in the `primereact/` directory.
+
+> Note: if you get "Error: JavaScript heap out of memory", it may help to set the following node variable: `export NODE_OPTIONS=--max-old-space-size=8192`.
+
+> Note: The build will be finished when the terminal displays: `[20xx-xx-xx 00:00:00] waiting for changes...`.
+
+This will create a local copy of the package that is used instead of the registry version.
+Unlike `npm link`, `yalc` does not use symlinks, which avoids common module resolution issues.
+
+### Open a new terminal and navigate to the `primereact/dist/` directory
+
+Run yalc publish
+
+```shell
+~/primereact/ $ cd dist
+~/primereact/dist/ $ npx yalc publish
+```
+
+### Now change your directory to your local project you are developing on!
+
+```shell
+~/primereact/dist/ $ cd ~/my-cool-project
+~/my-cool-project/ $
+```
+
+The goal now is to link your primereact dependency to the yalc package that we configured earlier:
+
+```shell
+~/my-cool-project/ $ npx yalc add primereact
+```
+
+As long at the dependencies version that you symlinked satisfies the version that is specified in `my-cool-project/package.json` then the link should have worked.
+
+You can validate that by running:
+
+```shell
+~/my-cool-project/ $ npx yalc check
+
+Yalc dependencies found: [ 'primereact' ]
+```
+
+After doing your changes in the `primereact/` directory, you can publish the changes to your local project by running:
+
+```shell
+~/primereact/dist/ $ npx yalc push
+```
+
+## Live Development
+If you want to push your changes automatically to your local project, you can use the following:
+
+```shell
+~/primereact $ npm run dev:link -- -- --watch.onEnd="cd dist && npx yalc push"
+```
+This command will watch for changes in the `primereact/` directory and automatically push updates to your local project whenever you save a file. (note the double -- before `watch.onEnd`)
+
+### Congratulations!
+
+You can now live develop in the `primereact/` directory and your changes should be represented in your `my-cool-project/` build. (Assuming you are running vite or another bundler for `my-cool-project`)
+
+### Cleanup
+
+Once done, you can clean up with:
+
+```shell
+~/my-cool-project/ $ yalc remove primereact
+~/my-cool-project/ $ rm -rf yalc.lock .yalc
+~/my-cool-project/ $ npm install primereact@latest
+```
+
+> Note: `yalc` stores the published package in `~/.yalc/primereact` and uses file references in your project.
+> This avoids typical pitfalls of `npm link`, such as duplicated React versions or broken module scopes.
diff --git a/LICENSE.md b/LICENSE.md
index 9020d76ba5..049848cd38 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2016-2019 PrimeTek
+Copyright (c) 2016-2025 PrimeTek
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
\ No newline at end of file
+THE SOFTWARE.
diff --git a/README.md b/README.md
index cb69e494f9..88bbb8795c 100644
--- a/README.md
+++ b/README.md
@@ -1,70 +1,67 @@
[](https://opensource.org/licenses/MIT)
[](https://badge.fury.io/js/primereact)
+[](https://snyk.io/advisor/npm-package/primereact)
+
+[](https://github.com/primefaces/primereact/actions/workflows/node.js.yml)
+[](https://discord.gg/gzKFYnpmCY)
+[](https://stackoverflow.com/questions/tagged/primereact)
+[](https://github.com/orgs/primefaces/discussions)
-[](https://www.primefaces.org/primereact)
+[](https://www.primereact.org)
# PrimeReact
-PrimeReact is a rich set of open source UI Components for React.
-
-[](https://www.primefaces.org/primereact)
-
-See [PrimeReact homepage](https://www.primefaces.org/react) for live showcase and documentation.
+PrimeReact is a rich set of open source UI Components for React. See [PrimeReact homepage](https://primereact.org/) for live showcase and documentation.
## Download
-PrimeReact is available at npm, if you have an existing application run the following command to download it to your project.
+PrimeReact is available at [npm](https://www.npmjs.com/package/primereact).
```
-npm install primereact --save
-npm install primeicons --save
-```
+# Using npm
+npm install primereact
-## Import
+# Using yarn
+yarn add primereact
-```javascript
-//import {ComponentName} from 'primereact/{componentname}';
-import {Dialog} from 'primereact/dialog';
-import {Accordion,AccordionTab} from 'primereact/accordion';
+# Using pnpm
+pnpm add primereact
```
-## Dependencies
+## Import
-Majority of PrimeReact components (95%) are native and there are some exceptions having 3rd party dependencies such as Google Maps for GMap.
+Each component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component.
-In addition, components require PrimeIcons for icons, classNames package to manage style classes and react-transition-group for animations.
+```javascript
+//import { ComponentName } from 'primereact/{componentname}';
+import { Button } from 'primereact/button';
-```json
-dependencies: {
- "react": "^16.0.0",
- "react-dom": "^16.0.0",
- "react-transition-group": "^2.2.1",
- "classnames": "^2.2.5",
- "primeicons": "^2.0.0"
+export default function MyComponent() {
+ return (
+
+ )
}
```
-## Styles
-The css dependencies are as follows, note that you may change the theme with another one of your choice.
+## Theming
-```
-primereact/resources/themes/nova-light/theme.css
-primereact/resources/primereact.min.css
-primeicons/primeicons.css
-```
+PrimeReact has two theming modes; styled or unstyled.
+
+**Styled Mode**
-If you are using a bundler such as webpack with a css loader you may also import them to your main application component, an example from create-react-app would be.
+Styled mode is based on pre-skinned components with opinionated themes like Material, Bootstrap or PrimeOne themes. Theme is the required css file to be imported, visit the [Themes](https://primereact.org/theming) section for the complete list of available themes to choose from.
```javascript
-import 'primereact/resources/themes/nova-light/theme.css';
-import 'primereact/resources/primereact.min.css';
-import 'primeicons/primeicons.css';
+// theme
+import 'primereact/resources/themes/lara-light-cyan/theme.css';
```
-## QuickStart
+**Unstyled Mode**
-An [example application](https://github.com/primefaces/primereact-quickstart) based on create-react-app is available at github.
+Unstyled mode is disabled by default for all components. Using the PrimeReact context, set `unstyled` as true to enable it globally. Visit the [Unstyled mode](https://primereact.org/unstyled) documentation for more information and examples.
-## TypeScript
+## Contributors
-Typescript is fully supported as type definition files are provided in the npm package of PrimeReact. A sample [typescript-primereact application](https://github.com/primefaces/primereact-typescript-quickstart) is available as well at github.
+
+
+
diff --git a/api-scripts/build-apidoc.js b/api-scripts/build-apidoc.js
new file mode 100644
index 0000000000..2ba9ce6aaa
--- /dev/null
+++ b/api-scripts/build-apidoc.js
@@ -0,0 +1,441 @@
+const TypeDoc = require('typedoc');
+const path = require('path');
+const fs = require('fs');
+
+const rootDir = path.resolve(__dirname, '../');
+const outputPath = path.resolve(rootDir, 'components/doc/common/apidoc');
+
+const staticMessages = {
+ methods: "Defines methods that can be accessed by the component's reference.",
+ callbacks: 'Defines callbacks that determine the behavior of the component based on a given condition or report the actions that the component takes.',
+ functions: 'Defines the custom functions used by the module.',
+ events: "Defines the custom events used by the component's callbacks.",
+ interfaces: 'Defines the custom interfaces used by the module.',
+ types: 'Defines the custom types used by the module.'
+};
+
+const app = new TypeDoc.Application();
+
+// If you want TypeDoc to load tsconfig.json / typedoc.json files
+app.options.addReader(new TypeDoc.TSConfigReader());
+app.options.addReader(new TypeDoc.TypeDocReader());
+
+app.bootstrap({
+ // typedoc options here
+ name: 'PrimeReact',
+ entryPoints: [`components/lib`],
+ entryPointStrategy: 'expand',
+ tsconfig: 'api-scripts/tsconfig.json',
+ hideGenerator: true,
+ excludeExternals: true,
+ includeVersion: true,
+ searchInComments: true,
+ disableSources: true,
+ logLevel: 'Error',
+ sort: ['source-order'],
+ exclude: ['node_modules', 'components/lib/**/*.js'],
+ externalSymbolLinkMappings: {
+ '@types/react': {
+ 'React.ReactNode': 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts',
+ 'React.CSSProperties': 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts'
+ }
+ }
+});
+
+const project = app.convert();
+
+if (project) {
+ const doc = {};
+
+ const parseText = (text) => {
+ return text.replace(/{/g, '{').replace(/}/g, '}');
+ };
+
+ project.children.forEach((module) => {
+ const { name, comment } = module;
+
+ // if (name !== 'datatable') return; // REMOVE
+
+ const description = comment && comment.summary.map((s) => s.text || '').join(' ');
+
+ doc[name] = {
+ description
+ };
+
+ const module_component_group = module.groups.find((g) => g.title === 'Component');
+ const module_properties_group = module.groups.find((g) => g.title === 'Properties');
+
+ module_component_group &&
+ module_component_group.children.forEach((component) => {
+ const description =
+ component.comment &&
+ component.comment.summary
+ .map((s) => {
+ const text = s.text || '';
+ const splittedText = text.split('_');
+
+ return splittedText[1] ? splittedText[1] : text;
+ })
+ .join(' ');
+
+ !doc[name]['components'] && (doc[name]['components'] = {});
+
+ const methods = {
+ description: staticMessages['methods'],
+ values: []
+ };
+ const component_method_group = component.groups && component.groups.find((g) => g.title === 'Methods');
+
+ component_method_group &&
+ component_method_group.children.forEach((method) => {
+ const signature = method.getAllSignatures()[0];
+
+ methods.values.push({
+ name: signature.name,
+ parameters: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => s.text || '').join(' ')
+ };
+ }),
+ returnType: signature.type.toString(),
+ description: signature.comment && signature.comment.summary.map((s) => s.text || '').join(' ')
+ });
+ });
+
+ const component_props_id = component.extendedTypes && component.extendedTypes[0].typeArguments && component.extendedTypes[0].typeArguments[0] && component.extendedTypes[0].typeArguments[0]._target;
+ const component_properties = module_properties_group && module_properties_group.children.find((c) => (component_props_id ? c.id === component_props_id : true));
+
+ const props = {
+ description: '',
+ values: []
+ };
+ const callbacks = {
+ description: staticMessages['callbacks'],
+ values: []
+ };
+
+ if (component_properties) {
+ let collected_properties = [component_properties];
+
+ // Calendar/DataTable have multiple subtypes for properties
+ if (component_properties.type && component_properties.type.types) {
+ component_properties.type.types.forEach((type) => {
+ const type_props = module_properties_group.children.find((c) => (type._target ? c.id === type._target : true));
+
+ if (type_props) {
+ collected_properties = [type_props];
+
+ return;
+ }
+ });
+ }
+
+ collected_properties.forEach((component_props) => {
+ props.description = component_props.comment ? component_props.comment.summary.map((s) => parseText(s.text || '')).join(' ') : '';
+
+ const component_props_group = component_props.groups && component_props.groups.find((g) => g.title === 'Properties');
+
+ component_props_group &&
+ component_props_group.children.forEach((prop) => {
+ if ((!prop.inheritedFrom || (prop.inheritedFrom && !prop.inheritedFrom.toString().startsWith('Omit.data-pr-'))) && !prop.name.startsWith('data-pr-')) {
+ props.values.push({
+ name: prop.name,
+ optional: prop.flags.isOptional,
+ readonly: prop.flags.isReadonly,
+ type: prop.type.toString(),
+ default: prop.comment && prop.comment.getTag('@defaultValue') ? parseText(prop.comment.getTag('@defaultValue').content[0].text) : '', // TODO: Check
+ description: prop.comment && prop.comment.summary.map((s) => parseText(s.text || '')).join(' '),
+ deprecated: prop.comment && prop.comment.getTag('@deprecated') ? parseText(prop.comment.getTag('@deprecated').content[0].text) : undefined
+ });
+ }
+ });
+
+ const component_props_methods_group = component_props.groups && component_props.groups.find((g) => g.title === 'Methods');
+
+ component_props_methods_group &&
+ component_props_methods_group.children.forEach((method) => {
+ const signature = method.getAllSignatures()[0];
+
+ callbacks.values.push({
+ name: signature.name,
+ parameters: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ optional: param.flags.isOptional,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ };
+ }),
+ returnType: signature.type.toString(),
+ description: signature.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ });
+ });
+ });
+ }
+
+ // sorts
+ props.values.sort((a, b) => a.name.localeCompare(b.name));
+ methods.values.sort((a, b) => a.name.localeCompare(b.name));
+ callbacks.values.sort((a, b) => a.name.localeCompare(b.name));
+
+ doc[name]['components'][component.name] = {
+ description,
+ methods,
+ props,
+ callbacks
+ };
+ });
+
+ const module_model_group = module.groups.find((g) => g.title === 'Model');
+
+ module_model_group &&
+ module_model_group.children.forEach((model) => {
+ const event_props_description = model.comment && model.comment.summary.map((s) => s.text || '').join(' ');
+
+ !doc[name]['model'] && (doc[name]['model'] = {});
+
+ const props = {
+ description: '',
+ values: []
+ };
+ const callbacks = {
+ description: staticMessages['callbacks'],
+ values: []
+ };
+ const model_props_group = model.groups.find((g) => g.title === 'Properties');
+
+ model_props_group &&
+ model_props_group.children.forEach((prop) => {
+ props.values.push({
+ name: prop.name,
+ optional: prop.flags.isOptional,
+ readonly: prop.flags.isReadonly,
+ type: prop.type.toString(),
+ default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0].text : '', // TODO: Check
+ description: prop.comment && prop.comment.summary.map((s) => s.text || '').join(' ')
+ });
+ });
+
+ const model_props_methods_group = model.groups && model.groups.find((g) => g.title === 'Methods');
+
+ model_props_methods_group &&
+ model_props_methods_group.children.forEach((method) => {
+ const signature = method.getAllSignatures()[0];
+
+ callbacks.values.push({
+ name: signature.name,
+ parameters: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ optional: param.flags.isOptional,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ };
+ }),
+ returnType: signature.type.toString(),
+ description: signature.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ });
+ });
+
+ doc[name]['model'][model.name] = {
+ description: event_props_description,
+ props,
+ callbacks
+ };
+ });
+
+ const module_functions_group = module.groups.find((g) => g.title === 'Functions');
+
+ module_functions_group &&
+ module_functions_group.children.forEach((method) => {
+ !doc[name]['functions'] &&
+ (doc[name]['functions'] = {
+ description: staticMessages['functions'],
+ values: {}
+ });
+
+ const signatures = method.getAllSignatures();
+
+ if (signatures && signatures.length > 0) {
+ const signature = signatures[0];
+
+ doc[name]['functions'].values[method.name] = {
+ name: signature.name,
+ parameters: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => s.text || '').join(' ')
+ };
+ }),
+ returnType: signature.type.toString(),
+ description: signature.comment && signature.comment.summary.map((s) => s.text || '').join(' ')
+ };
+ }
+ });
+
+ const module_events_group = module.groups.find((g) => g.title === 'Events');
+
+ module_events_group &&
+ module_events_group.children.forEach((event) => {
+ const event_props_description = event.comment && event.comment.summary.map((s) => s.text || '').join(' ');
+ const component_prop = event.comment && event.comment.getTag('@see') ? event.comment.getTag('@see').content[0].text : ''; // TODO: Check
+ const event_extendedBy = event.extendedBy && event.extendedBy.toString();
+
+ !doc[name]['events'] &&
+ (doc[name]['events'] = {
+ description: staticMessages['events'],
+ values: {}
+ });
+
+ const props = [];
+ const event_props_group = event.groups.find((g) => g.title === 'Properties');
+
+ event_props_group &&
+ event_props_group.children.forEach((prop) => {
+ props.push({
+ name: prop.name,
+ optional: prop.flags.isOptional,
+ readonly: prop.flags.isReadonly,
+ type: prop.type.toString(),
+ //default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0].text : '', // TODO: Check
+ description: prop.comment && prop.comment.summary.map((s) => s.text || '').join(' ')
+ });
+ });
+
+ doc[name]['events'].values[event.name] = {
+ description: event_props_description,
+ relatedProp: component_prop,
+ props,
+ extendedBy: event_extendedBy
+ };
+ });
+
+ const module_interfaces_group = module.groups.find((g) => g.title === 'Interfaces');
+
+ module_interfaces_group &&
+ module_interfaces_group.children.forEach((event) => {
+ const event_props_description = event.comment && event.comment.summary.map((s) => s.text || '').join(' ');
+ const component_prop = event.comment && event.comment.getTag('@see') ? event.comment.getTag('@see').content[0].text : ''; // TODO: Check
+ const event_extendedBy = event.extendedBy && event.extendedBy.toString();
+ const event_extendedTypes = event.extendedTypes && event.extendedTypes.toString();
+
+ !doc[name]['interfaces'] &&
+ (doc[name]['interfaces'] = {
+ description: staticMessages['interfaces'],
+ values: {}
+ });
+
+ const props = [];
+ const callbacks = [];
+
+ if (event.groups) {
+ const event_props_group = event.groups.find((g) => g.title === 'Properties');
+
+ event_props_group &&
+ event_props_group.children.forEach((prop) => {
+ props.push({
+ name: prop.name,
+ optional: prop.flags.isOptional,
+ readonly: prop.flags.isReadonly,
+ type: prop.type.toString(),
+ //default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0].text : '', // TODO: Check
+ description: prop.comment && prop.comment.summary.map((s) => s.text || '').join(' ')
+ });
+ });
+
+ const event_methods_group = event.groups.find((g) => g.title === 'Methods');
+
+ event_methods_group &&
+ event_methods_group.children.forEach((method) => {
+ const signature = method.getAllSignatures()[0];
+
+ callbacks.push({
+ name: signature.name,
+ parameters: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ optional: param.flags.isOptional,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ };
+ }),
+ returnType: signature.type.toString(),
+ description: signature.comment && signature.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ });
+ });
+ }
+
+ const signature = event.getAllSignatures();
+
+ if (signature && signature.length > 0) {
+ const parameter = signature[0].parameters[0];
+
+ props.push({
+ name: `[${parameter.name}: ${parameter.type.toString()}]`,
+ optional: parameter.flags.isOptional,
+ readonly: parameter.flags.isReadonly,
+ type: signature[0].type.toString(),
+ //default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0].text : '', // TODO: Check
+ description: signature[0].comment && signature[0].comment.summary.map((s) => s.text || '').join(' ')
+ });
+ }
+
+ doc[name]['interfaces'].values[event.name] = {
+ description: event_props_description,
+ relatedProp: component_prop,
+ props,
+ callbacks,
+ extendedBy: event_extendedBy,
+ extendedTypes: event_extendedTypes
+ };
+ });
+
+ const module_types_group = module.groups.find((g) => g.title === 'Type Aliases');
+
+ module_types_group &&
+ module_types_group.children.forEach((event) => {
+ const event_props_description = event.comment && event.comment.summary.map((s) => s.text || '').join(' ');
+
+ !doc[name]['types'] &&
+ (doc[name]['types'] = {
+ description: staticMessages['types'],
+ values: {}
+ });
+
+ let values = event.type.toString();
+ const declaration = event.type.declaration;
+
+ if (declaration) {
+ const groups = declaration.groups && declaration.groups.find((g) => g.title === 'Properties');
+
+ const map = {};
+
+ groups &&
+ groups.children.forEach((prop) => {
+ const description = prop.comment && prop.comment.summary.map((s) => s.text || '').join(' ');
+
+ map[`${prop.name}${prop.flags.isOptional ? '?' : ''}`] = `${prop.type.toString()}, ${description ? '// ' + description : ''}`;
+ });
+
+ values = JSON.stringify(map, null, 4);
+ }
+
+ doc[name]['types'].values[event.name] = {
+ values,
+ description: event_props_description
+ };
+ });
+
+ // app.generateJson(module, `./api-generator/module-typedoc.json`);
+ });
+
+ const typedocJSON = JSON.stringify(doc, null, 4);
+
+ !fs.existsSync(outputPath) && fs.mkdirSync(outputPath);
+ fs.writeFileSync(path.resolve(outputPath, 'index.json'), typedocJSON);
+
+ // app.generateJson(project, `./api-generator/typedoc.json`);
+}
diff --git a/api-scripts/build-webtypes.js b/api-scripts/build-webtypes.js
new file mode 100644
index 0000000000..7f5ebc065b
--- /dev/null
+++ b/api-scripts/build-webtypes.js
@@ -0,0 +1,435 @@
+const TypeDoc = require('typedoc');
+const path = require('path');
+const fs = require('fs');
+
+const rootDir = path.resolve(__dirname, '../');
+const distDir = path.resolve(rootDir, 'dist');
+const outputPath = path.resolve(rootDir, 'components/doc/common/apidoc');
+
+const staticMessages = {
+ methods: "Defines methods that can be accessed by the component's reference.",
+ callbacks: 'Defines callbacks that determine the behavior of the component based on a given condition or report the actions that the component takes.',
+ functions: 'Defines the custom functions used by the module.',
+ events: "Defines the custom events used by the component's callbacks.",
+ interfaces: 'Defines the custom interfaces used by the module.',
+ types: 'Defines the custom types used by the module.'
+};
+
+const app = new TypeDoc.Application();
+
+// If you want TypeDoc to load tsconfig.json / typedoc.json files
+app.options.addReader(new TypeDoc.TSConfigReader());
+app.options.addReader(new TypeDoc.TypeDocReader());
+
+const pkg = require(path.resolve(rootDir, 'package.json'));
+const library = {
+ name: 'PrimeReact',
+ version: pkg.version,
+ repository: pkg.repository,
+ license: pkg.license
+};
+
+const webTypes = {
+ $schema: 'https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json',
+ framework: 'react',
+ name: library.name,
+ version: library.version,
+ repository: library.repository,
+ license: library.license,
+ contributions: {
+ html: {
+ 'types-syntax': 'typescript',
+ 'description-markup': 'markdown',
+ tags: [],
+ attributes: []
+ }
+ }
+};
+
+app.bootstrap({
+ // typedoc options here
+ name: 'PrimeReact',
+ entryPoints: [`components/lib`],
+ entryPointStrategy: 'expand',
+ tsconfig: 'api-scripts/tsconfig.json',
+ hideGenerator: true,
+ excludeExternals: true,
+ includeVersion: true,
+ searchInComments: true,
+ disableSources: true,
+ logLevel: 'Error',
+ sort: ['source-order'],
+ exclude: ['node_modules', 'components/lib/**/*.js'],
+ externalSymbolLinkMappings: {
+ '@types/react': {
+ 'React.ReactNode': 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts',
+ 'React.CSSProperties': 'https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts'
+ }
+ }
+});
+
+const project = app.convert();
+
+if (project) {
+ const doc = {};
+
+ const parseText = (text) => {
+ return text.replace(/{/g, '{').replace(/}/g, '}');
+ };
+
+ project.children.forEach((module) => {
+ const { name, comment } = module;
+
+ const capitalizedName = name.charAt(0).toUpperCase() + name.slice(1);
+ const description = comment && comment.summary.map((s) => s.text || '').join(' ');
+ let url = '';
+
+ if (description) {
+ const urlRegex = /\[(Live Demo)\]\((https?:\/\/[^\s)]+)\)/;
+ const urlMatch = description.match(urlRegex);
+
+ if (urlMatch && urlMatch[2]) {
+ url = urlMatch[2];
+ }
+ }
+
+ const tag = {
+ name: capitalizedName,
+ source: {
+ module: library.name,
+ symbol: capitalizedName
+ },
+ description,
+ 'doc-url': url
+ };
+
+ webTypes.contributions.html.tags.push(tag);
+
+ doc[name] = {
+ description
+ };
+
+ const module_component_group = module.groups.find((g) => g.title === 'Component');
+
+ module_component_group &&
+ module_component_group.children.forEach((component) => {
+ const description =
+ component.comment &&
+ component.comment.summary
+ .map((s) => {
+ const text = s.text || '';
+ const splittedText = text.split('_');
+
+ return splittedText[1] ? splittedText[1] : text;
+ })
+ .join(' ');
+
+ !doc[name]['components'] && (doc[name]['components'] = {});
+
+ const methods = {
+ description: staticMessages['methods'],
+ values: []
+ };
+ const component_method_group = component.groups && component.groups.find((g) => g.title === 'Methods');
+
+ component_method_group &&
+ component_method_group.children.forEach((method) => {
+ const signature = method.getAllSignatures()[0];
+
+ methods.values.push({
+ name: signature.name,
+ parameters: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => s.text || '').join(' ')
+ };
+ }),
+ returnType: signature.type.toString(),
+ description: signature.comment && signature.comment.summary.map((s) => s.text || '').join(' ')
+ });
+ });
+
+ const component_props_id = component.extendedTypes && component.extendedTypes[0].typeArguments && component.extendedTypes[0].typeArguments[0] && component.extendedTypes[0].typeArguments[0]._target;
+ const module_properties_group = module.groups.find((g) => g.title === 'Properties');
+ const component_props = module_properties_group && module_properties_group.children.find((c) => (component_props_id ? c.id === component_props_id : true));
+
+ const props = [];
+ const callbacks = [];
+
+ if (component_props) {
+ //props.description = component_props.comment ? component_props.comment.summary.map((s) => parseText(s.text || '')).join(' ') : '';
+
+ const component_props_group = component_props.groups && component_props.groups.find((g) => g.title === 'Properties');
+
+ component_props_group &&
+ component_props_group.children.forEach((prop) => {
+ if (!prop.inheritedFrom || (prop.inheritedFrom && !prop.inheritedFrom.toString().startsWith('Omit.data-pr-'))) {
+ props.push({
+ name: prop.name,
+ default: prop.comment && prop.comment.getTag('@defaultValue') ? parseText(prop.comment.getTag('@defaultValue').content[0].text) : 'null', // TODO: Check
+ description: prop.comment && prop.comment.summary.map((s) => parseText(s.text || '')).join(' '),
+ value: {
+ kind: 'expression',
+ type: prop.type.toString()
+ }
+ //optional: prop.flags.isOptional,
+ //readonly: prop.flags.isReadonly,
+ //deprecated: prop.comment && prop.comment.getTag('@deprecated') ? parseText(prop.comment.getTag('@deprecated').content[0].text) : undefined
+ });
+ }
+ });
+
+ const component_props_methods_group = component_props.groups && component_props.groups.find((g) => g.title === 'Methods');
+
+ component_props_methods_group &&
+ component_props_methods_group.children.forEach((method) => {
+ const signature = method.getAllSignatures()[0];
+
+ callbacks.push({
+ name: signature.name,
+ description: signature.comment.summary.map((s) => parseText(s.text || '')).join(' '),
+ arguments: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ // optional: param.flags.isOptional,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ };
+ })
+ });
+ });
+ }
+
+ tag.attributes = props;
+ tag.events = callbacks;
+
+ doc[name]['components'][component.name] = {
+ description,
+ methods,
+ props,
+ callbacks
+ };
+ });
+
+ const module_model_group = module.groups.find((g) => g.title === 'Model');
+
+ module_model_group &&
+ module_model_group.children.forEach((model) => {
+ const event_props_description = model.comment && model.comment.summary.map((s) => s.text || '').join(' ');
+
+ !doc[name]['model'] && (doc[name]['model'] = {});
+
+ const props = {
+ description: '',
+ values: []
+ };
+ const model_props_group = model.groups.find((g) => g.title === 'Properties');
+
+ model_props_group &&
+ model_props_group.children.forEach((prop) => {
+ props.values.push({
+ name: prop.name,
+ optional: prop.flags.isOptional,
+ readonly: prop.flags.isReadonly,
+ type: prop.type.toString(),
+ default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0].text : '', // TODO: Check
+ description: prop.comment && prop.comment.summary.map((s) => s.text || '').join(' ')
+ });
+ });
+
+ doc[name]['model'][model.name] = {
+ description: event_props_description,
+ props
+ };
+ });
+
+ const module_functions_group = module.groups.find((g) => g.title === 'Functions');
+
+ module_functions_group &&
+ module_functions_group.children.forEach((method) => {
+ !doc[name]['functions'] &&
+ (doc[name]['functions'] = {
+ description: staticMessages['functions'],
+ values: {}
+ });
+
+ const signatures = method.getAllSignatures();
+
+ if (signatures && signatures.length > 0) {
+ const signature = signatures[0];
+
+ doc[name]['functions'].values[method.name] = {
+ name: signature.name,
+ parameters: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => s.text || '').join(' ')
+ };
+ }),
+ returnType: signature.type.toString(),
+ description: signature.comment && signature.comment.summary.map((s) => s.text || '').join(' ')
+ };
+ }
+ });
+
+ const module_events_group = module.groups.find((g) => g.title === 'Events');
+
+ module_events_group &&
+ module_events_group.children.forEach((event) => {
+ const event_props_description = event.comment && event.comment.summary.map((s) => s.text || '').join(' ');
+ const component_prop = event.comment && event.comment.getTag('@see') ? event.comment.getTag('@see').content[0].text : ''; // TODO: Check
+ const event_extendedBy = event.extendedBy && event.extendedBy.toString();
+
+ !doc[name]['events'] &&
+ (doc[name]['events'] = {
+ description: staticMessages['events'],
+ values: {}
+ });
+
+ const props = [];
+ const event_props_group = event.groups.find((g) => g.title === 'Properties');
+
+ event_props_group &&
+ event_props_group.children.forEach((prop) => {
+ props.push({
+ name: prop.name,
+ optional: prop.flags.isOptional,
+ readonly: prop.flags.isReadonly,
+ type: prop.type.toString(),
+ //default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0].text : '', // TODO: Check
+ description: prop.comment && prop.comment.summary.map((s) => s.text || '').join(' ')
+ });
+ });
+
+ doc[name]['events'].values[event.name] = {
+ description: event_props_description,
+ relatedProp: component_prop,
+ props,
+ extendedBy: event_extendedBy
+ };
+ });
+
+ const module_interfaces_group = module.groups.find((g) => g.title === 'Interfaces');
+
+ module_interfaces_group &&
+ module_interfaces_group.children.forEach((event) => {
+ const event_props_description = event.comment && event.comment.summary.map((s) => s.text || '').join(' ');
+ const component_prop = event.comment && event.comment.getTag('@see') ? event.comment.getTag('@see').content[0].text : ''; // TODO: Check
+ const event_extendedBy = event.extendedBy && event.extendedBy.toString();
+ const event_extendedTypes = event.extendedTypes && event.extendedTypes.toString();
+
+ !doc[name]['interfaces'] &&
+ (doc[name]['interfaces'] = {
+ description: staticMessages['interfaces'],
+ values: {}
+ });
+
+ const props = [];
+ const callbacks = [];
+
+ if (event.groups) {
+ const event_props_group = event.groups.find((g) => g.title === 'Properties');
+
+ event_props_group &&
+ event_props_group.children.forEach((prop) => {
+ props.push({
+ name: prop.name,
+ optional: prop.flags.isOptional,
+ readonly: prop.flags.isReadonly,
+ type: prop.type.toString(),
+ //default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0].text : '', // TODO: Check
+ description: prop.comment && prop.comment.summary.map((s) => s.text || '').join(' ')
+ });
+ });
+
+ const event_methods_group = event.groups.find((g) => g.title === 'Methods');
+
+ event_methods_group &&
+ event_methods_group.children.forEach((method) => {
+ const signature = method.getAllSignatures()[0];
+
+ callbacks.push({
+ name: signature.name,
+ parameters: signature.parameters.map((param) => {
+ return {
+ name: param.name,
+ optional: param.flags.isOptional,
+ type: param.type.toString(),
+ description: param.comment && param.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ };
+ }),
+ returnType: signature.type.toString(),
+ description: signature.comment && signature.comment.summary.map((s) => parseText(s.text || '')).join(' ')
+ });
+ });
+ }
+
+ const signature = event.getAllSignatures();
+
+ if (signature && signature.length > 0) {
+ const parameter = signature[0].parameters[0];
+
+ props.push({
+ name: `[${parameter.name}: ${parameter.type.toString()}]`,
+ optional: parameter.flags.isOptional,
+ readonly: parameter.flags.isReadonly,
+ type: signature[0].type.toString(),
+ //default: prop.comment && prop.comment.getTag('@defaultValue') ? prop.comment.getTag('@defaultValue').content[0].text : '', // TODO: Check
+ description: signature[0].comment && signature[0].comment.summary.map((s) => s.text || '').join(' ')
+ });
+ }
+
+ doc[name]['interfaces'].values[event.name] = {
+ description: event_props_description,
+ relatedProp: component_prop,
+ props,
+ callbacks,
+ extendedBy: event_extendedBy,
+ extendedTypes: event_extendedTypes
+ };
+ });
+
+ const module_types_group = module.groups.find((g) => g.title === 'Type Aliases');
+
+ module_types_group &&
+ module_types_group.children.forEach((event) => {
+ const event_props_description = event.comment && event.comment.summary.map((s) => s.text || '').join(' ');
+
+ !doc[name]['types'] &&
+ (doc[name]['types'] = {
+ description: staticMessages['types'],
+ values: {}
+ });
+
+ let values = event.type.toString();
+ const declaration = event.type.declaration;
+
+ if (declaration) {
+ const groups = declaration.groups && declaration.groups.find((g) => g.title === 'Properties');
+
+ const map = {};
+
+ groups &&
+ groups.children.forEach((prop) => {
+ const description = prop.comment && prop.comment.summary.map((s) => s.text || '').join(' ');
+
+ map[`${prop.name}${prop.flags.isOptional ? '?' : ''}`] = `${prop.type.toString()}, ${description ? '// ' + description : ''}`;
+ });
+
+ values = JSON.stringify(map, null, 4);
+ }
+
+ doc[name]['types'].values[event.name] = {
+ values,
+ description: event_props_description
+ };
+ });
+ });
+
+ const webTypesJson = JSON.stringify(webTypes, null, 4);
+
+ !fs.existsSync(distDir) && fs.mkdirSync(distDir);
+ fs.writeFileSync(path.resolve(distDir, 'web-types.json'), webTypesJson);
+}
diff --git a/api-scripts/tsconfig.json b/api-scripts/tsconfig.json
new file mode 100644
index 0000000000..80f5cf6051
--- /dev/null
+++ b/api-scripts/tsconfig.json
@@ -0,0 +1,20 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": false,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true
+ },
+ "include": ["../next-env.d.ts", "../**/*.ts", "../**/*.tsx"],
+ "exclude": ["../node_modules", "../dist"]
+}
diff --git a/components/analytics/analytics.js b/components/analytics/analytics.js
new file mode 100644
index 0000000000..650cc15945
--- /dev/null
+++ b/components/analytics/analytics.js
@@ -0,0 +1,44 @@
+import { useRouter } from 'next/router';
+import Script from 'next/script';
+import React, { useEffect } from 'react';
+
+export const GTagManager = () => {
+ const router = useRouter();
+
+ useEffect(() => {
+ const handleRouteChange = (url) => {
+ pageview(url);
+ };
+
+ router.events.on('routeChangeComplete', handleRouteChange);
+
+ return () => {
+ router.events.off('routeChangeComplete', handleRouteChange);
+ };
+ }, [router.events]);
+
+ useEffect(() => {
+ pageview(router.pathname);
+ }, [router.pathname]);
+
+ const pageview = (url) => {
+ window.gtag('config', 'G-FZJEC89ZVF', {
+ page_path: url
+ });
+ };
+
+ return (
+ <>
+
+
+ >
+ );
+};
diff --git a/components/demo/DeferredDemo.js b/components/demo/DeferredDemo.js
new file mode 100644
index 0000000000..bcf4979e9f
--- /dev/null
+++ b/components/demo/DeferredDemo.js
@@ -0,0 +1,50 @@
+import React, { useState, useEffect, useRef } from 'react';
+
+const DeferredDemo = ({ options, children, onLoad }) => {
+ const [visible, setVisible] = useState(false);
+
+ const timeoutRef = useRef(null);
+ const observerRef = useRef(null);
+ const elementRef = useRef(null);
+
+ useEffect(() => {
+ const handleIntersection = ([entry]) => {
+ clearTimeout(timeoutRef.current);
+
+ if (entry.isIntersecting) {
+ timeoutRef.current = setTimeout(() => {
+ setVisible(true);
+ observerRef.current.unobserve(elementRef.current);
+ onLoad();
+ }, 350);
+ }
+ };
+
+ observerRef.current = new IntersectionObserver(handleIntersection, options);
+
+ if (elementRef.current) {
+ observerRef.current.observe(elementRef.current);
+ }
+
+ return () => {
+ if (!visible && elementRef.current) {
+ observerRef.current.unobserve(elementRef.current); // eslint-disable-line react-hooks/exhaustive-deps
+ }
+
+ clearTimeout(timeoutRef.current);
+ };
+ }, [visible, onLoad, options]);
+
+ return (
+ <>
+ {!visible && (
+
+ Colors on a web page should aim a contrast ratio of at least 4.5:1 and consider a selection of colors that do not cause vibration.
+
+
+
Good Contrast
+
Color contrast between the background and the foreground content should be sufficient enough to ensure readability. Example below displays two cases with good and bad samples.
+
+
+
+ GOOD
+
+
+ BAD
+
+
+
+
Vibration
+
Color vibration is leads to an illusion of motion due to choosing colors that have low visibility against each other. Color combinations need to be picked with caution to avoid vibration.
+
+
+
+ VIBRATE
+
+
+
+
Dark Mode
+
Highly saturated colors should be avoided when used within a dark design scheme as they cause eye strain. Instead desaturated colors should be preferred.
+
+
+
+ Indigo 500
+
+
+
+ Indigo 200
+
+
+
+ >
+ );
+}
diff --git a/components/doc/accessibility/formcontrolsdoc.js b/components/doc/accessibility/formcontrolsdoc.js
new file mode 100644
index 0000000000..0facec92a9
--- /dev/null
+++ b/components/doc/accessibility/formcontrolsdoc.js
@@ -0,0 +1,47 @@
+import { CodeHighlight } from '@/components/doc/common/codehighlight';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+
+export function FormControlsDoc(props) {
+ return (
+ <>
+
+
+ Native form elements should be preferred instead of elements that are meant for other purposes like presentation. As an example, button below is rendered as a form control by the browser, can receive focus via tabbing and can be
+ used with space key as well to trigger.
+
+
+
+ {`
+
+`}
+
+
+
On the other hand, a fancy css based button using a div has no keyboard or screen reader support.
+
+ {`
+
console.log(e)}>Click
+`}
+
+
+
+ tabIndex is required to make a div element accessible in addition to use a keydown to bring the keyboard support back. To avoid the overload and implementing functionality that is already provided by the browser, native form
+ controls should be preferred.
+
+ Form components must be related to another element that describes what the form element is used for. This is usually achieved with the label element.
+
+ Accessibility is a major concern of the Prime UI libraries and PrimeReact is no exception. PrimeTek teams have initiated a significant process to review and enhance the accessibility features of the components. This guide
+ documents the foundation of the general guidelines that PrimeReact will follow and each component documentation will have a separate Accessibility section that states the keyboard support, screen reader compatibility, the
+ implementation details along with tips to achieve WCAG compliancy. This work has been completed for PrimeVue and PrimeNG and currently being ported to PrimeReact to be finalized in Q4 2023.
+
+
+ According to the World Health Organization, 15% of the world population has a disability to some degree. As a result, accessibility features in any context such as a ramp for wheelchair users or a multimedia with captions are
+ crucial to ensure content can be consumed by anyone.
+
+
Types of disabilities are diverse so you need to know your audience well and how they interact with the content created. There four main categories;
+
+
+
Visual Impairments
+
+ Blindness, low-level vision or color blindness are the common types of visual impairments. Screen magnifiers and the color blind mode are usually built-in features of the browsers whereas for people who rely on screen readers, page
+ developers are required to make sure content is readable by the readers. Popular readers are{' '}
+
+ NVDA
+
+ ,{' '}
+
+ JAWS
+ {' '}
+ and{' '}
+
+ ChromeVox
+
+ .
+
+
+
Hearing Impairments
+
+ Deafness or hearing loss refers to the inability to hear sounds totally or partially. People with hearing impairments use assistive devices however it may not be enough when interacting with a web page. Common implementation is
+ providing textual alternatives, transcripts and captions for content with audio.
+
+
+
Mobility Impairments
+
+ People with mobility impairments have disabilities related to movement due to loss of a limb, paralysis or other varying reasons. Assistive technologies like a head pointer is a device to interact with a screen whereas keyboard or a
+ trackpad remain as solutions for people who are not able to utilize a mouse.
+
+
+
Cognitive Impairments
+
+ Cognitive impairments have a wider range that includes people with learning disabilities, depression and dyslexia. A well designed content also leads to better user experience for people without disabilities so designing for cognitive
+ impairments result in better design for any user.
+
+ >
+ );
+}
diff --git a/components/doc/accessibility/semantichtmldoc.js b/components/doc/accessibility/semantichtmldoc.js
new file mode 100644
index 0000000000..f29e950c9d
--- /dev/null
+++ b/components/doc/accessibility/semantichtmldoc.js
@@ -0,0 +1,56 @@
+import { CodeHighlight } from '@/components/doc/common/codehighlight';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+
+export function SemanticHTMLDoc(props) {
+ return (
+ <>
+
+
+ HTML offers various element to organize content on a web page that screen readers are aware of. Preferring Semantic HTML for good semantics provide out of the box support for reader which is not possible when regular div{' '}
+ elements with classes are used. Consider the following example that do not mean too much for readers.
+
+
+
+
+ {`
+
+
Header
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`}
+
+
+
Same layout can be achieved using the semantic elements with screen reader support built-in.
+ ARIA refers to "Accessible Rich Internet Applications" is a suite to fill the gap where semantic HTML is inadequate. These cases are mainly related to rich UI components/widgets. Although browser support for rich UI components
+ such as a datepicker or colorpicker has been improved over the past years many web developers still utilize UI components derived from standard HTML elements created by them or by other projects like PrimeReact. These types of
+ components must provide keyboard and screen reader support, the latter case is where the WAI-ARIA is utilized.
+
+
+ ARIA consists of roles, properties and attributes. Roles define what the element is mainly used for e.g. checkbox, dialog, tablist whereas States and Properties define the metadata of the
+ element like aria-checked, aria-disabled.
+
+
+
Consider the following case of a native checkbox. It has built-in keyboard and screen reader support.
+
+
+ {`
+
+`}
+
+
+
+ A fancy checkbox with css animations might look more appealing but accessibility might be lacking. Checkbox below may display a checked font icon with animations however it is not tabbable, cannot be checked with space key and cannot
+ be read by a reader.
+
+
+ {`
+
+ {checked && }
+
+`}
+
+
+
+ One alternative is using ARIA roles for readers and use javascript for keyboard support. Notice the usage of aria-labelledby as a replacement of the label tag with htmlFor.
+
+
+ {`
+Remember Me
+
+ {checked && }
+
+`}
+
+
+
+ However the best practice is combining semantic HTML for accessibility while keeping the design for UX. This approach involves hiding a native checkbox for accessibility and using javascript events to update its state. Notice the
+ usage of p-hidden-accessible
+ that hides the elements from the user but not from the screen reader.
+
+
+ {`
+
+
+
+ {checked && }
+
+`}
+
+
+
A working sample is the PrimeReact checkbox that is tabbable, keyboard accessible and is compliant with a screen reader. Instead of ARIA roles it relies on a hidden native checkbox.
+ Correct page structure with the aid of assistive technologies are the core ingridients for an accessible web content. HTML is based on an accessible foundation, form controls can be used by keyboard by default and semantic HTML is
+ easier to be processed by a screen reader.
+
+
+
+ WCAG
+ {' '}
+ refers to Web Content Accessibility Guideline, a standard managed by the WAI (Web Accessibility Initiative) of W3C (World Wide Web Consortium). WCAG consists of recommendations for making the web content more
+ accessible. PrimeReact components aim high level of WCAG compliancy in the near future.
+
+
+
+ Various countries around the globe have governmental policies regarding web accessibility as well. Most well known of these are Section 508 in the US and{' '}
+ Web Accessibility Directive of the European Union.
+
+
+ >
+ );
+}
diff --git a/components/doc/accordion/accessibilitydoc.js b/components/doc/accordion/accessibilitydoc.js
new file mode 100644
index 0000000000..1c4ef9fa77
--- /dev/null
+++ b/components/doc/accordion/accessibilitydoc.js
@@ -0,0 +1,78 @@
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+
+export function AccessibilityDoc() {
+ return (
+
+
Screen Reader
+
+ Accordion header elements have a button role and use aria-controls to define the id of the content section along with aria-expanded for the visibility state. The value to read a header element defaults to the
+ value of the header property and can be customized by defining an aria-label or aria-labelledby via the headerProps property.
+
+
+ The content uses region role, defines an id that matches the aria-controls of the header and aria-labelledby referring to the id of the header.
+
+
+
Header Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ tab
+
+
Moves focus to the next the focusable element in the page tab sequence.
+
+
+
+ shift + tab
+
+
Moves focus to the previous the focusable element in the page tab sequence.
+
+
+
+ enter
+
+
Toggles the visibility of the content.
+
+
+
+ space
+
+
Toggles the visibility of the content.
+
+
+
+ down arrow
+
+
Moves focus to the next header.
+
+
+
+ up arrow
+
+
Moves focus to the previous header.
+
+
+
+ home
+
+
Moves focus to the first header.
+
+
+
+ end
+
+
Moves focus to the last header.
+
+
+
+
+
+ );
+}
diff --git a/components/doc/accordion/basicdoc.js b/components/doc/accordion/basicdoc.js
new file mode 100644
index 0000000000..fd1960aecd
--- /dev/null
+++ b/components/doc/accordion/basicdoc.js
@@ -0,0 +1,144 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Accordion, AccordionTab } from '@/components/lib/accordion/Accordion';
+
+export function BasicDoc(props) {
+ const code = {
+ basic: `
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Accordion, AccordionTab } from 'primereact/accordion';
+
+export default function BasicDemo() {
+ return (
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Accordion, AccordionTab } from 'primereact/accordion';
+
+export default function BasicDemo() {
+ return (
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Accordion consists of one or more AccordionTab elements which are collapsed by default. Tab to expand initially can be defined with the activeIndex property.
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo
+ enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in
+ culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/accordion/controlleddoc.js b/components/doc/accordion/controlleddoc.js
new file mode 100644
index 0000000000..0ffb23313c
--- /dev/null
+++ b/components/doc/accordion/controlleddoc.js
@@ -0,0 +1,177 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Accordion, AccordionTab } from '@/components/lib/accordion/Accordion';
+import { Button } from '@/components/lib/button/Button';
+import { useState } from 'react';
+
+export function ControlledDoc(props) {
+ const [activeIndex, setActiveIndex] = useState(null);
+
+ const code = {
+ basic: `
+
+
+ setActiveIndex(e.index)}>
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Accordion can be controlled programmatically using a binding to activeIndex along with onTabChange event to update the active index.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim
+ id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
+ Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt
+ in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo
+ minus.
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/accordion/disableddoc.js b/components/doc/accordion/disableddoc.js
new file mode 100644
index 0000000000..fe7bfb691c
--- /dev/null
+++ b/components/doc/accordion/disableddoc.js
@@ -0,0 +1,148 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Accordion, AccordionTab } from '@/components/lib/accordion/Accordion';
+
+export function DisabledDoc(props) {
+ const code = {
+ basic: `
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Accordion, AccordionTab } from 'primereact/accordion';
+
+export default function DisabledDemo() {
+ return (
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Accordion, AccordionTab } from 'primereact/accordion';
+
+export default function DisabledDemo() {
+ return (
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Enabling disabled property of an AccordionTab prevents user interaction.
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo
+ enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in
+ culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/accordion/dynamicdoc.js b/components/doc/accordion/dynamicdoc.js
new file mode 100644
index 0000000000..9845dc2b17
--- /dev/null
+++ b/components/doc/accordion/dynamicdoc.js
@@ -0,0 +1,123 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Accordion, AccordionTab } from '@/components/lib/accordion/Accordion';
+import { useState } from 'react';
+
+export function DynamicDoc(props) {
+ const [tabs] = useState([
+ {
+ header: 'Title I',
+ children:
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Accordion, AccordionTab } from 'primereact/accordion';
+
+export default function MultipleDemo() {
+ return (
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Accordion, AccordionTab } from 'primereact/accordion';
+
+export default function MultipleDemo() {
+ return (
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Only one tab at a time can be active by default, enabling multiple property changes this behavior to allow multiple tabs. In this case activeIndex needs to be an array.
+
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo
+ enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in
+ culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+ >
+ );
+};
diff --git a/components/doc/accordion/styledoc.js b/components/doc/accordion/styledoc.js
new file mode 100644
index 0000000000..ea59f382ae
--- /dev/null
+++ b/components/doc/accordion/styledoc.js
@@ -0,0 +1,38 @@
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import Link from 'next/link';
+
+export function StyleDoc() {
+ return (
+ <>
+
+
+ Following is the list of structural style classes, for theming classes visit theming page.
+
+
+
+
+
+
+
Name
+
Element
+
+
+
+
+
p-accordion
+
Container element.
+
+
+
p-accordion-header
+
Header of a tab.
+
+
+
p-accordion-content
+
Container of a tab.
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/accordion/templatedoc.js b/components/doc/accordion/templatedoc.js
new file mode 100644
index 0000000000..3fafc12938
--- /dev/null
+++ b/components/doc/accordion/templatedoc.js
@@ -0,0 +1,246 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Accordion, AccordionTab } from '@/components/lib/accordion/Accordion';
+import { Avatar } from '@/components/lib/avatar/Avatar';
+import { Badge } from '@/components/lib/badge/Badge';
+
+export function TemplateDoc(props) {
+ const code = {
+ basic: `
+
+
+
+ Amy Elsner
+
+
+ }
+ >
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Onyama Limba
+
+
+ }
+ >
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ Ioni Bowcher
+
+
+ }
+ >
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Accordion, AccordionTab } from 'primereact/accordion';
+import { Avatar } from 'primereact/avatar';
+import { Badge } from 'primereact/badge';
+
+export default function TemplateDemo() {
+ return (
+
+
+
+
+ Amy Elsner
+
+
+ }
+ >
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Onyama Limba
+
+
+ }
+ >
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ Ioni Bowcher
+
+
+ }
+ >
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Accordion, AccordionTab } from 'primereact/accordion';
+import { Avatar } from 'primereact/avatar';
+import { Badge } from 'primereact/badge';
+
+export default function TemplateDemo() {
+ return (
+
+
+
+
+ Amy Elsner
+
+
+ }
+ >
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Onyama Limba
+
+
+ }
+ >
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ Ioni Bowcher
+
+
+ }
+ >
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Title section of a tab is customized with the header property.
+
+
+
+
+
+
+ Amy Elsner
+
+
+ }
+ >
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+
+ Onyama Limba
+
+
+ }
+ >
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo
+ enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ Ioni Bowcher
+
+
+ }
+ >
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in
+ culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
+ Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
+ commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+ Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+
+
+
+
+ Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa
+ quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas
+ sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
+ Consectetur, adipisci velit, sed quia non numquam eius modi.
+
+
+
+
+ At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti
+ quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt
+ mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio.
+ Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus.
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+ Value to describe the component can either be provided via label tag combined with inputId prop or using aria-labelledby, aria-label props. The input element has combobox role in addition to{' '}
+ aria-autocomplete, aria-haspopup and aria-expanded attributes. The relation between the input and the popup is created with aria-controls and aria-activedescendant attribute is used to instruct
+ screen reader which option to read during keyboard navigation within the popup list.
+
+
+ In multiple mode, chip list uses listbox role with aria-orientation set to horizontal whereas each chip has the option role with aria-label set to the label of the chip.
+
+
+ The popup list has an id that refers to the aria-controls attribute of the input element and uses listbox as the role. Each list item has option role and an id to match the aria-activedescendant of the
+ input element.
+
+
+
+
+
Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ tab
+
+
Moves focus to the input element when popup is not visible. If the popup is open and an item is highlighted then popup gets closed, item gets selected and focus moves to the next focusable element.
+
+
+
+ up arrow
+
+
Highlights the previous item if popup is visible.
+
+
+
+ down arrow
+
+
Highlights the next item if popup is visible.
+
+
+
+ enter
+
+
Selects the highlighted item and closes the popup if popup is visible.
+
+
+
+ home
+
+
Highlights the first item if popup is visible.
+
+
+
+ end
+
+
Highlights the last item if popup is visible.
+
+
+
+ escape
+
+
Hides the popup.
+
+
+
+
+
+
Chips Input Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ backspace
+
+
Deletes the previous chip if the input field is empty.
+
+
+
+ left arrow
+
+
Moves focus to the previous chip if available and input field is empty.
+
+
+
+
+
+
Chip Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ left arrow
+
+
Moves focus to the previous chip if available.
+
+
+
+ right arrow
+
+
Moves focus to the next chip, if there is none then input field receives the focus.
+
+
+
+ backspace
+
+
Deletes the chips and adds focus to the input field.
+ AutoComplete is used as a controlled component with value and onChange properties. In addition, suggestions and a completeMethod are required to query the results.
+
+
+
+ setValue(e.value)} />
+
+
+ >
+ );
+}
diff --git a/components/doc/autocomplete/disableddoc.js b/components/doc/autocomplete/disableddoc.js
new file mode 100644
index 0000000000..feba885b54
--- /dev/null
+++ b/components/doc/autocomplete/disableddoc.js
@@ -0,0 +1,49 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { AutoComplete } from '@/components/lib/autocomplete/AutoComplete';
+
+export function DisabledDoc(props) {
+ const code = {
+ basic: `
+
+ `,
+ javascript: `
+import React from "react";
+import { AutoComplete } from "primereact/autocomplete";
+
+export default function DisabledDemo() {
+ return (
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from "react";
+import { AutoComplete } from "primereact/autocomplete";
+
+export default function DisabledDemo() {
+ return (
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ When disabled is present, the element cannot be edited and focused.
+
+ Enabling dropdown property displays a button next to the input field where click behavior of the button is defined using dropdownMode property that takes blank or current as possible
+ values. blank is the default mode to send a query with an empty string whereas current setting sends a query with the current value of the input.
+
+ ForceSelection mode validates the manual input to check whether it also exists in the suggestions list, if not the input value is cleared to make sure the value passed to the model is always one of the suggestions. Simply enable{' '}
+ forceSelection to enforce that input is always from the suggestion list.
+
+ Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.
+
+ Multiple mode is enabled using multiple property used to select more than one value from the autocomplete. In this case, value reference should be an array. The number of values selectable can be restricted using the{' '}
+ selectionLimit property.
+
+ AutoComplete can work with objects using the field property that defines the label to display as a suggestion. The value passed to the model would still be the object instance of a suggestion. Here is an example with a
+ Country object that has name and code fields such as {name: "United States", code:"USA"}.
+
+ Custom content can be displayed as an option using itemTemplate property that references a function with a suggestion option as a parameter and returns an element. Similarly selectedItemTemplate property is available
+ to customize the chips in multiple mode and the text in single mode using the same approach.
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+
+
+ >
+ );
+}
diff --git a/components/doc/autocomplete/virtualscrolldoc.js b/components/doc/autocomplete/virtualscrolldoc.js
new file mode 100644
index 0000000000..823b2cd866
--- /dev/null
+++ b/components/doc/autocomplete/virtualscrolldoc.js
@@ -0,0 +1,114 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { AutoComplete } from '@/components/lib/autocomplete/AutoComplete';
+import Link from 'next/link';
+import { useState } from 'react';
+
+export function VirtualScrollDoc(props) {
+ const [selectedItem, setSelectedItem] = useState(null);
+ const [filteredItems, setFilteredItems] = useState(null);
+ const items = Array.from({ length: 100000 }).map((_, i) => ({ label: `Item #${i}`, value: i }));
+
+ const searchItems = (event) => {
+ //in a real application, make a request to a remote url with the query and return filtered results, for demo purposes we filter at client side
+ let query = event.query;
+ let _filteredItems = [];
+
+ for (let i = 0; i < items.length; i++) {
+ let item = items[i];
+
+ if (item.label.toLowerCase().indexOf(query.toLowerCase()) === 0) {
+ _filteredItems.push(item);
+ }
+ }
+
+ setFilteredItems(_filteredItems);
+ };
+
+ const code = {
+ basic: `
+ setSelectedItem(e.value)} />
+ `,
+ javascript: `
+import React, { useState } from "react";
+import { AutoComplete } from "primereact/autocomplete";
+
+export default function VirtualScrollerDemo() {
+ const [selectedItem, setSelectedItem] = useState(null);
+ const [filteredItems, setFilteredItems] = useState(null);
+ const items = Array.from({ length: 100000 }).map((_, i) => ({ label: \`Item #\${i}\`, value: i }));
+
+ const searchItems = (event) => {
+ //in a real application, make a request to a remote url with the query and return filtered results, for demo purposes we filter at client side
+ let query = event.query;
+ let _filteredItems = [];
+
+ for(let i = 0; i < items.length; i++) {
+ let item = items[i];
+ if (item.label.toLowerCase().indexOf(query.toLowerCase()) === 0) {
+ _filteredItems.push(item);
+ }
+ }
+
+ setFilteredItems(_filteredItems);
+ }
+
+ return (
+ setSelectedItem(e.value)} />
+ )
+}
+ `,
+ typescript: `
+import React, { useState } from "react";
+import { AutoComplete, AutoCompleteCompleteEvent } from "primereact/autocomplete";
+
+interface Item {
+ label: string;
+ value: number;
+}
+
+export default function VirtualScrollerDemo() {
+ const [selectedItem, setSelectedItem] = useState(null);
+ const [filteredItems, setFilteredItems] = useState(null);
+ const items = Array.from({ length: 100000 }).map((_, i) => ({ label: \`Item #\${i}\`, value: i }));
+
+ const searchItems = (event: AutoCompleteCompleteEvent) => {
+ //in a real application, make a request to a remote url with the query and return filtered results, for demo purposes we filter at client side
+ let query = event.query;
+ let _filteredItems = [];
+
+ for(let i = 0; i < items.length; i++) {
+ let item = items[i];
+ if (item.label.toLowerCase().indexOf(query.toLowerCase()) === 0) {
+ _filteredItems.push(item);
+ }
+ }
+
+ setFilteredItems(_filteredItems);
+ }
+
+ return (
+ setSelectedItem(e.value)} />
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Virtual Scrolling is a performant way to render large lists. Configuration of the scroll behavior is defined with virtualScrollerOptions
+ that requires itemSize as the mandatory value to set the height of an item. Visit VirtualScroller documentation for more information about the configuration API.
+
+
+
+ setSelectedItem(e.value)} />
+
+
+ >
+ );
+}
diff --git a/components/doc/avatar/accessibilitydoc.js b/components/doc/avatar/accessibilitydoc.js
new file mode 100644
index 0000000000..9bbb016751
--- /dev/null
+++ b/components/doc/avatar/accessibilitydoc.js
@@ -0,0 +1,17 @@
+import { DevelopmentSection } from '@/components/doc/common/developmentsection';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+
+export function AccessibilityDoc() {
+ return (
+
+
Screen Reader
+
+ Avatar does not include any roles and attributes by default. Any attribute is passed to the root element so you may add a role like img along with aria-labelledby or aria-label to describe the component. In case
+ avatars need to be tabbable, tabIndex can be added as well to implement custom key handlers.
+
+
+
Keyboard Support
+
Component does not include any interactive elements.
+
+ );
+}
diff --git a/components/doc/avatar/groupdoc.js b/components/doc/avatar/groupdoc.js
new file mode 100644
index 0000000000..860941d3e4
--- /dev/null
+++ b/components/doc/avatar/groupdoc.js
@@ -0,0 +1,83 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Avatar } from '@/components/lib/avatar/Avatar';
+import { AvatarGroup } from '@/components/lib/avatargroup/AvatarGroup';
+
+export function GroupDoc(props) {
+ const code = {
+ basic: `
+
+
+
+
+
+
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Avatar } from 'primereact/avatar';
+import { AvatarGroup } from 'primereact/avatargroup';
+import { Badge } from 'primereact/badge';
+
+export default function GroupDemo() {
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Avatar } from 'primereact/avatar';
+import { AvatarGroup } from 'primereact/avatargroup';
+import { Badge } from 'primereact/badge';
+
+export default function GroupDemo() {
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
Grouping is available by wrapping multiple Avatar components inside an AvatarGroup.
+
+
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/avatar/icondoc.js b/components/doc/avatar/icondoc.js
new file mode 100644
index 0000000000..d9b6a1509e
--- /dev/null
+++ b/components/doc/avatar/icondoc.js
@@ -0,0 +1,125 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Avatar } from '@/components/lib/avatar/Avatar';
+import { Badge } from '@/components/lib/badge/Badge';
+
+export function IconDoc(props) {
+ const code = {
+ basic: `
+
+
+
+
+
+
+
+
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Avatar } from 'primereact/avatar';
+import { Badge } from 'primereact/badge';
+
+export default function IconDemo() {
+ return (
+
+
+
+
Icon
+
+
+
+
+
+
+
Circle
+
+
+
+
+
+
+
Badge
+
+
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Avatar } from 'primereact/avatar';
+import { Badge } from 'primereact/badge';
+
+export default function IconDemo() {
+ return (
+
+
+
+
Icon
+
+
+
+
+
+
+
Circle
+
+
+
+
+
+
+
Badge
+
+
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ A font icon is displayed as an Avatar with the icon property.
+
+
+
+
+
+
Icon
+
+
+
+
+
+
+
Circle
+
+
+
+
+
+
+
Badge
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/avatar/imagedoc.js b/components/doc/avatar/imagedoc.js
new file mode 100644
index 0000000000..0ebea6d2a6
--- /dev/null
+++ b/components/doc/avatar/imagedoc.js
@@ -0,0 +1,117 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Avatar } from '@/components/lib/avatar/Avatar';
+import { Badge } from '@/components/lib/badge/Badge';
+
+export function ImageDoc(props) {
+ const code = {
+ basic: `
+
+
+
+
+
+
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Avatar } from 'primereact/avatar';
+import { Badge } from 'primereact/badge';
+
+export default function ImageDemo() {
+ return (
+
+
+
+
Image
+
+
+
+
+
+
+
Badge
+
+
+
+
+
+
+
Gravatar
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Avatar } from 'primereact/avatar';
+import { Badge } from 'primereact/badge';
+
+export default function ImageDemo() {
+ return (
+
+
+
+
Image
+
+
+
+
+
+
+
Badge
+
+
+
+
+
+
+
Gravatar
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Use the image property to display an image as an Avatar.
+
+
+
+
+
+
Image
+
+
+
+
+
+
+
Badge
+
+
+
+
+
+
+
Gravatar
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/avatar/importdoc.js b/components/doc/avatar/importdoc.js
new file mode 100644
index 0000000000..1dfec4cc32
--- /dev/null
+++ b/components/doc/avatar/importdoc.js
@@ -0,0 +1,18 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+
+export function ImportDoc(props) {
+ const code = {
+ basic: `
+import { Avatar } from 'primereact/avatar';
+import { AvatarGroup } from 'primereact/avatargroup'; //Optional for grouping
+ `
+ };
+
+ return (
+ <>
+
+
+ >
+ );
+}
diff --git a/components/doc/avatar/labeldoc.js b/components/doc/avatar/labeldoc.js
new file mode 100644
index 0000000000..3ced00d542
--- /dev/null
+++ b/components/doc/avatar/labeldoc.js
@@ -0,0 +1,120 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Avatar } from '@/components/lib/avatar/Avatar';
+import { Badge } from '@/components/lib/badge/Badge';
+
+export function LabelDoc(props) {
+ const code = {
+ basic: `
+
+
+
+
+
+
+
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Avatar } from 'primereact/avatar';
+import { Badge } from 'primereact/badge';
+
+export default function LabelDemo() {
+ return (
+
+
+
Label
+
+
+
+
+
+
+
Circle
+
+
+
+
+
+
+
Badge
+
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Avatar } from 'primereact/avatar';
+import { Badge } from 'primereact/badge';
+
+export default function LabelDemo() {
+ return (
+
+
+
Label
+
+
+
+
+
+
+
Circle
+
+
+
+
+
+
+
Badge
+
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ A letter Avatar is defined with the label property.
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+ Badge does not include any roles and attributes by default, any attribute is passed to the root element so aria roles and attributes can be added if required. If the badges are dynamic,
+ aria-live may be utilized as well. In case badges need to be tabbable, tabIndex can be added to implement custom key handlers.
+
+
+
Keyboard Support
+
Component does not include any interactive elements.
+
+ );
+}
diff --git a/components/doc/badge/basicdoc.js b/components/doc/badge/basicdoc.js
new file mode 100644
index 0000000000..eaab7af004
--- /dev/null
+++ b/components/doc/badge/basicdoc.js
@@ -0,0 +1,49 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Badge } from '@/components/lib/badge/Badge';
+
+export function BasicDoc(props) {
+ const code = {
+ basic: `
+
+ `,
+ javascript: `
+import React from 'react';
+import { Badge } from 'primereact/badge';
+
+export default function BasicDemo() {
+ return (
+
+
+
+ );
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Badge } from 'primereact/badge';
+
+export default function BasicDemo() {
+ return (
+
+
+
+ );
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Text to display is defined with the value property.
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/badge/buttondoc.js b/components/doc/badge/buttondoc.js
new file mode 100644
index 0000000000..8bcadfc398
--- /dev/null
+++ b/components/doc/badge/buttondoc.js
@@ -0,0 +1,70 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Badge } from '@/components/lib/badge/Badge';
+import { Button } from '@/components/lib/button/Button';
+
+export function ButtonDoc(props) {
+ const code = {
+ basic: `
+
+
+
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+import { Badge } from 'primereact/badge';
+
+export default function ButtonDemo() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+import { Badge } from 'primereact/badge';
+
+export default function ButtonDemo() {
+ return (
+
+
+
+
+
+
+
+
+ );
+}
+ `
+ };
+
+ return (
+ <>
+
+
Buttons have built-in support for badges to display a badge inline.
+ );
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Badge } from 'primereact/badge';
+
+export default function PositionDemo() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ A Badge can be positioned at the top right corner of an element by adding p-overlay-badge style class to the element and embedding the badge inside.
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+
+
+ >
+ );
+}
diff --git a/components/doc/blockui/accessibilitydoc.js b/components/doc/blockui/accessibilitydoc.js
new file mode 100644
index 0000000000..d4fc4af696
--- /dev/null
+++ b/components/doc/blockui/accessibilitydoc.js
@@ -0,0 +1,17 @@
+import { DevelopmentSection } from '@/components/doc/common/developmentsection';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+
+export function AccessibilityDoc() {
+ return (
+
+
Screen Reader
+
+ BlockUI manages aria-busy state attribute when the UI gets blocked and unblocked. Any valid attribute is passed to the root element so additional attributes like role and aria-live can be used to define live
+ regions.
+
+
+
Keyboard Support
+
Component does not include any interactive elements.
+
+ );
+}
diff --git a/components/doc/blockui/basicdoc.js b/components/doc/blockui/basicdoc.js
new file mode 100644
index 0000000000..8825c1ae98
--- /dev/null
+++ b/components/doc/blockui/basicdoc.js
@@ -0,0 +1,110 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Button } from '@/components/lib/button/Button';
+import { useState } from 'react';
+import { BlockUI } from '../../../components/lib/blockui/BlockUI';
+import { Panel } from '../../../components/lib/panel/Panel';
+
+export function BasicDoc(props) {
+ const [blocked, setBlocked] = useState(false);
+
+ const code = {
+ basic: `
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+ `,
+ javascript: `
+import React, { useState } from 'react';
+import { BlockUI } from 'primereact/blockui';
+import { Panel } from 'primereact/panel';
+import { Button } from 'primereact/button';
+
+export default function BasicDemo() {
+ const [blocked, setBlocked] = useState(false);
+
+ return (
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+
+ );
+}
+ `,
+ typescript: `
+import React, { useState } from 'react';
+import { BlockUI } from 'primereact/blockui';
+import { Panel } from 'primereact/panel';
+import { Button } from 'primereact/button';
+
+export default function BasicDemo() {
+ const [blocked, setBlocked] = useState(false);
+
+ return (
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+
+ );
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ The element to block should be placed as a child of BlockUI and blocked property is required to control the state.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+
+
Continue reading?
+ setBlocked((oldState) => !oldState)}>
+
+
+ );
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Custom content can be placed inside the modal layer using the template property.
+
+
+
+ }>
+
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+ consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est
+ laborum.
+
+
+
+
+ );
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+ As an example, Modal and Button styles of Bootstrap are used to style PrimeReact Button and
+ Dialog.
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/bootstrap/setupdoc.js b/components/doc/bootstrap/setupdoc.js
new file mode 100644
index 0000000000..9b3db45d1f
--- /dev/null
+++ b/components/doc/bootstrap/setupdoc.js
@@ -0,0 +1,18 @@
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import Link from 'next/link';
+
+export function SetupDoc(props) {
+ return (
+ <>
+
+
+ This section assumes that Boostrap is already available in your application, if not visit the Bootstrap documentation for the installation.
+
+
+ Bootstrap integration with PrimeReact components is achieved with unstyled mode either using global setting or for a particular component only. Visit the unstyled mode documentation for getting
+ started.
+
+
+ >
+ );
+}
diff --git a/components/doc/breadcrumb/accessibilitydoc.js b/components/doc/breadcrumb/accessibilitydoc.js
new file mode 100644
index 0000000000..442edd036a
--- /dev/null
+++ b/components/doc/breadcrumb/accessibilitydoc.js
@@ -0,0 +1,17 @@
+import { DevelopmentSection } from '@/components/doc/common/developmentsection';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+
+export function AccessibilityDoc() {
+ return (
+
+
Screen Reader
+
+ Breadcrumb uses the nav element and since any attribute is passed to the root implicitly aria-labelledby or aria-label can be used to describe the component. Inside an ordered list is used where the list item
+ separators have aria-hidden to be able to ignored by the screen readers. If the last link represents the current route, aria-current is added with "page" as the value.
+
+
+
Keyboard Support
+
No special keyboard interaction is needed, all menuitems are focusable based on the page tab sequence.
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+ Bulma can either be used with a CDN or via NPM. Visit the official documentation for installation steps. PrimeReact does require an extra configuration other than using components as unstyled.
+
+ Button component renders a native button element that implicitly includes any passed prop. Text to describe the button is defined with the aria-label prop, if not present label prop is used as the value. If the button is
+ icon only or custom templating is used, it is recommended to use aria-label so that screen readers would be able to read the element properly.
+
+
+
+
+
Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ tab
+
+
Moves focus to the button.
+
+
+
+ enter
+
+
Activates the button.
+
+
+
+ space
+
+
Activates the button.
+
+
+
+
+
+ );
+}
diff --git a/components/doc/button/badgesdoc.js b/components/doc/button/badgesdoc.js
new file mode 100644
index 0000000000..7e89174a4c
--- /dev/null
+++ b/components/doc/button/badgesdoc.js
@@ -0,0 +1,53 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Button } from '@/components/lib/button/Button';
+
+export function BadgesDoc(props) {
+ const code = {
+ basic: `
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+
+export default function BadgesDemo() {
+ return (
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+
+export default function BadgesDemo() {
+ return (
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Buttons have built-in badge support with badge and badgeClassName properties.
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/button/basicdoc.js b/components/doc/button/basicdoc.js
new file mode 100644
index 0000000000..0f7eb599b3
--- /dev/null
+++ b/components/doc/button/basicdoc.js
@@ -0,0 +1,49 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Button } from '@/components/lib/button/Button';
+
+export function BasicDoc(props) {
+ const code = {
+ basic: `
+
+ `,
+ javascript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+
+export default function BasicDemo() {
+ return (
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+
+export default function BasicDemo() {
+ return (
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Text to display on a button is defined with the label property.
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/button/buttongroupdoc.js b/components/doc/button/buttongroupdoc.js
new file mode 100644
index 0000000000..e9a7b94e73
--- /dev/null
+++ b/components/doc/button/buttongroupdoc.js
@@ -0,0 +1,68 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Button } from '@/components/lib/button/Button';
+import { ButtonGroup } from '@/components/lib/buttongroup/ButtonGroup';
+
+export function ButtonGroupDoc(props) {
+ const code = {
+ basic: `
+
+
+
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+import { ButtonGroup } from 'primereact/buttongroup';
+
+export default function ButtonSetDemo() {
+ return (
+
+
+
+
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+import { ButtonGroup } from 'primereact/buttongroup';
+
+export default function ButtonSetDemo() {
+ return (
+
+
+
+
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Multiple buttons are grouped when wrapped inside an element with ButtonGroup component.
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/button/disableddoc.js b/components/doc/button/disableddoc.js
new file mode 100644
index 0000000000..5aaf8358ee
--- /dev/null
+++ b/components/doc/button/disableddoc.js
@@ -0,0 +1,49 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Button } from '@/components/lib/button/Button';
+
+export function DisabledDoc(props) {
+ const code = {
+ basic: `
+
+ `,
+ javascript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+
+export default function DisabledDemo() {
+ return (
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Button } from 'primereact/button';
+
+export default function DisabledDemo() {
+ return (
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ When disabled is present, the element cannot be edited and focused.
+
+ A button can be rendered as a link when the link property is present. On the other hand, adding .p-button class to an anchor element displays the link as a button.
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+ Value to describe the component can either be provided via label tag combined with inputId prop or using aria-labelledby, aria-label props. The input element has combobox role in addition to{' '}
+ aria-autocomplete as "none", aria-haspopup as "dialog" and aria-expanded attributes. The relation between the input and the popup is created with aria-controls attribute that refers to the id of the popup.
+
+
+ The optional calendar button requires includes aria-haspopup, aria-expanded for states along with aria-controls to define the relation between the popup and the button. The value to read is retrieved from the{' '}
+ chooseDate
+ key of the aria property from the locale API. This label is also used for the aria-label of the popup as well. When there is a value selected, it is formatted and appended to the label to be able to
+ notify users about the current value.
+
+
+
+ Popup has a dialog role along with aria-modal and aria-label. The navigation buttons at the header has an aria-label retrieved from the prevYear, nextYear, prevMonth, nextMonth,
+ prevDecade and nextDecade keys of the locale aria API. Similarly month picker button uses the chooseMonth and year picker button uses the chooseYear keys.
+
+
+
+ Main date table uses grid role that contains th elements with col as the scope along with abbr tag resolving to the full name of the month. Each date cell has an aria-label referring to the full date value.
+ Buttons at the footer utilize their readable labels as aria-label as well. Selected date also receives the aria-selected attribute.
+
+
+
+ Timepicker spinner buttons get their labels for aria-label from the aria locale API using the prevHour, nextHour, prevMinute, nextMinute, prevSecond, nextSecond, am and pm{' '}
+ keys.
+
+
+
+ Calendar also includes a hidden section that is only available to screen readers with aria-live as "polite". This element is updated when the selected date changes to instruct the user about the current date selected.
+
+
+
+
+
Choose Date Button Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ space
+
+
Opens popup and moves focus to the selected date, if there is none focuses on today.
+
+
+
+ enter
+
+
Opens popup and moves focus to the selected date, if there is none focuses on today.
+
+
+
+
+
+
Popup Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ escape
+
+
Closes the popup and moves focus to the input element.
+
+
+
+ tab
+
+
Moves focus to the next focusable element within the popup.
+
+
+
+ shift + tab
+
+
Moves focus to the next focusable element within the popup.
+
+
+
+
+
+
Header Buttons Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ enter
+
+
Triggers the button action.
+
+
+
+ space
+
+
Triggers the button action.
+
+
+
+
+
+
Date Grid Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ enter
+
+
Selects the date, closes the popup and moves focus to the input element.
+
+
+
+ space
+
+
Selects the date, closes the popup and moves focus to the input element.
+
+
+
+ up arrow
+
+
Moves focus to the same day of the previous week.
+
+
+
+ down arrow
+
+
Moves focus to the same day of the next week.
+
+
+
+ right arrow
+
+
Moves focus to the next day.
+
+
+
+ left arrow
+
+
Moves focus to the previous day.
+
+
+
+ home
+
+
Moves focus to the first day of the current week.
+
+
+
+ end
+
+
Moves focus to the last day of the current week.
+
+
+
+ page up
+
+
Changes the date to previous month in date picker mode. Moves to previous year in month picker mode and previous decade in year picker.
+
+
+
+ shift + page up
+
+
Changes the date to previous year in date picker mode. Has no effect in month or year picker
+
+
+
+ page down
+
+
Changes the date to next month in date picker mode. Moves to next year in month picker mode and next decade in year picker.
+
+
+
+ shift + page down
+
+
Changes the date to next year in date picker mode. Has no effect in month or year picker
+ Invalid state is displayed using the invalid prop to indicate a failed validation. You can use this style when integrating with form validation libraries.
+
+ Locale based settings such as labels, dateFormat and firstDayOfWeek are derived from the global Locale configuration. In case, a certain calendar needs to be customized, locale property can be
+ used to override the global setting.
+
+
+
+ setDate(e.value)} locale="es" />
+
+
+ >
+ );
+}
diff --git a/components/doc/calendar/minmaxdoc.js b/components/doc/calendar/minmaxdoc.js
new file mode 100644
index 0000000000..7a3a0151a5
--- /dev/null
+++ b/components/doc/calendar/minmaxdoc.js
@@ -0,0 +1,111 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Calendar } from '@/components/lib/calendar/Calendar';
+import { useState } from 'react';
+
+export function MinMaxDoc(props) {
+ let today = new Date();
+ let month = today.getMonth();
+ let year = today.getFullYear();
+ let prevMonth = month === 0 ? 11 : month - 1;
+ let prevYear = prevMonth === 11 ? year - 1 : year;
+ let nextMonth = month === 11 ? 0 : month + 1;
+ let nextYear = nextMonth === 0 ? year + 1 : year;
+
+ const [date, setDate] = useState(null);
+
+ let minDate = new Date();
+
+ minDate.setMonth(prevMonth);
+ minDate.setFullYear(prevYear);
+
+ let maxDate = new Date();
+
+ maxDate.setMonth(nextMonth);
+ maxDate.setFullYear(nextYear);
+
+ const code = {
+ basic: `
+ setDate(e.value)} minDate={minDate} maxDate={maxDate} readOnlyInput />
+ `,
+ javascript: `
+import React, { useState } from "react";
+import { Calendar } from 'primereact/calendar';
+
+export default function MinMaxDemo() {
+ let today = new Date();
+ let month = today.getMonth();
+ let year = today.getFullYear();
+ let prevMonth = month === 0 ? 11 : month - 1;
+ let prevYear = prevMonth === 11 ? year - 1 : year;
+ let nextMonth = month === 11 ? 0 : month + 1;
+ let nextYear = nextMonth === 0 ? year + 1 : year;
+
+ const [date, setDate] = useState(null);
+
+ let minDate = new Date();
+
+ minDate.setMonth(prevMonth);
+ minDate.setFullYear(prevYear);
+
+ let maxDate = new Date();
+
+ maxDate.setMonth(nextMonth);
+ maxDate.setFullYear(nextYear);
+
+ return (
+
+ A range of dates can be selected by defining selectionMode as range, in this case the bound value would be an array with two values where first date is the start of the range and second date is the end.
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+ A time picker is displayed when showTime is enabled where 12/24 hour format is configured with hourFormat property. In case, only time needs to be selected, add timeOnly to hide the date section.
+
+ A card can be utilized in many use cases as a result no role is enforced, in fact a role may not be necessary if the card is used for presentational purposes only. Any valid attribute is passed to the container element so if you
+ require to use one of the{' '}
+
+ landmark
+ {' '}
+ roles like region, you may use the role property.
+
+
+
+
+
Keyboard Support
+
Component does not include any interactive elements.
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae
+ numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque quas!
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae
+ numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque quas!
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae
+ numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque quas!
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ Card content can be customized further with subTitle, header and footer properties.
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque
+ quas!
+
+
+
+
+ >
+ );
+}
diff --git a/components/doc/card/basicdoc.js b/components/doc/card/basicdoc.js
new file mode 100644
index 0000000000..78397d5d6b
--- /dev/null
+++ b/components/doc/card/basicdoc.js
@@ -0,0 +1,69 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import { Card } from '@/components/lib/card/Card';
+
+export function BasicDoc(props) {
+ const code = {
+ basic: `
+
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae
+ numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque quas!
+
+
+ `,
+ javascript: `
+import React from 'react';
+import { Card } from 'primereact/card';
+
+export default function BasicDemo() {
+ return (
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae
+ numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque quas!
+
+
+
+ )
+}
+ `,
+ typescript: `
+import React from 'react';
+import { Card } from 'primereact/card';
+
+export default function BasicDemo() {
+ return (
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae
+ numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque quas!
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ A simple Card is created with a title property along with the content as children.
+
+
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque
+ quas!
+
+ >
+ );
+}
diff --git a/components/doc/card/theming/tailwinddoc.js b/components/doc/card/theming/tailwinddoc.js
new file mode 100644
index 0000000000..817e718761
--- /dev/null
+++ b/components/doc/card/theming/tailwinddoc.js
@@ -0,0 +1,75 @@
+import { DocSectionCode } from '@/components/doc/common/docsectioncode';
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import Link from 'next/link';
+
+export function TailwindDoc(props) {
+ const code = {
+ basic: `
+const Tailwind = {
+ card: {
+ root: {
+ className: classNames(
+ 'bg-white text-gray-700 shadow-md rounded-md', // Background, text color, box shadow, and border radius.
+ 'dark:bg-gray-900 dark:text-white ' //dark
+ )
+ },
+ body: 'p-5', // Padding.
+ title: 'text-2xl font-bold mb-2', // Font size, font weight, and margin bottom.
+ subtitle: {
+ className: classNames(
+ 'font-normal mb-2 text-gray-600', // Font weight, margin bottom, and text color.
+ 'dark:text-white/60 ' //dark
+ )
+ },
+ content: 'py-5', // Vertical padding.
+ footer: 'pt-5' // Top padding.
+ }
+}
+ `
+ };
+
+ const code2 = {
+ javascript: `
+import React from 'react';
+import { Card } from 'primereact/card';
+import { Button } from 'primereact/button';
+
+export default function UnstyledDemo() {
+ const header = (
+
+ );
+ const footer = (
+
+
+
+
+ );
+
+ return (
+
+
+
+ Lorem ipsum dolor sit amet, consectetur adipisicing elit. Inventore sed consequuntur error repudiandae
+ numquam deserunt quisquam repellat libero asperiores earum nam nobis, culpa ratione quam perferendis esse, cupiditate neque quas!
+
+
+
+ )
+}
+ `
+ };
+
+ return (
+ <>
+
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+
+
+ >
+ );
+}
diff --git a/components/doc/carousel/accessibilitydoc.js b/components/doc/carousel/accessibilitydoc.js
new file mode 100644
index 0000000000..d8bef5720a
--- /dev/null
+++ b/components/doc/carousel/accessibilitydoc.js
@@ -0,0 +1,116 @@
+import { DocSectionText } from '@/components/doc/common/docsectiontext';
+import Link from 'next/link';
+
+export function AccessibilityDoc() {
+ return (
+
+
Screen Reader
+
+ Carousel uses region role and since any attribute is passed to the main container element, attributes such as aria-label and aria-roledescription can be used as well. The slides container has aria-live{' '}
+ attribute set as "polite" if carousel is not in autoplay mode, otherwise "off" would be the value in autoplay.
+
+
+
+ A slide has a group role with an aria-label that refers to the aria.slideNumber property of the locale API. Similarly aria.slide is used as the aria-roledescription of the item.
+ Inactive slides are hidden from the readers with aria-hidden.
+
+
+
+ Next and Previous navigators are button elements with aria-label attributes referring to the aria.nextPageLabel and aria.firstPageLabel properties of the locale API by default
+ respectively, you may still use your own aria roles and attributes as any valid attribute is passed to the button elements implicitly by using nextButtonProps and prevButtonProps.
+
+
+
+ Quick navigation elements are button elements with an aria-label attribute referring to the aria.pageLabel of the locale API. Current page is marked with aria-current.
+
+
+
Next/Prev Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ tab
+
+
Moves focus through interactive elements in the carousel.
+ When autoplayInterval is defined in milliseconds, items are scrolled automatically. In addition, for infinite scrolling circular property needs to be added which is enabled automatically in auto play mode.
+
+ Carousel supports specific configuration per screen size with the responsiveOptions property that takes an array of objects where each object defines the max-width breakpoint, numVisible for the number of
+ items items per page and numScroll for number of items to scroll. When responsiveOptions is defined, the numScroll and numVisible properties of the Carousel are used as default when there is breakpoint
+ that applies.
+
+ PrimeReact offers a built-in Tailwind theme to get you started quickly. The default values related to the component are displayed below. The component can easily be styled with your own design based on Tailwind utilities, see the{' '}
+ Tailwind Customization section for an example.
+
+
+
A playground sample with the pre-built Tailwind theme.
+ Value to describe the component can either be provided with aria-labelledby or aria-label props. The cascadeselect element has a combobox role in addition to aria-haspopup and aria-expanded{' '}
+ attributes. The relation between the combobox and the popup is created with aria-controls that refers to the id of the popup.
+
+
+ The popup list has an id that refers to the aria-controls attribute of the combobox element and uses tree as the role. Each list item has a treeitem role along with aria-label, aria-selected{' '}
+ and aria-expanded attributes. The container element of a treenode has the group role. The aria-setsize, aria-posinset and aria-level attributes are calculated implicitly and added to each treeitem.
+
+
+
+ If filtering is enabled, filterInputProps can be defined to give aria-* props to the filter input element.
+
+
+
+
+
Closed State Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ tab
+
+
Moves focus to the cascadeselect element.
+
+
+
+ space
+
+
Opens the popup and moves visual focus to the selected option, if there is none then first option receives the focus.
+
+
+
+ down arrow
+
+
Opens the popup and moves visual focus to the selected option, if there is none then first option receives the focus.
+
+
+
+
+
+
Popup Keyboard Support
+
+
+
+
+
Key
+
Function
+
+
+
+
+
+ tab
+
+
Hides the popup and moves focus to the next tabbable element.
+
+
+
+ shift + tab
+
+
Hides the popup and moves focus to the previous tabbable element.
+
+
+
+ enter
+
+
Selects the focused option and closes the popup.
+
+
+
+ space
+
+
Selects the focused option and closes the popup.
+
+
+
+ escape
+
+
Closes the popup, moves focus to the cascadeselect element.
+
+
+
+ down arrow
+
+
Moves focus to the next option.
+
+
+
+ up arrow
+
+
Moves focus to the previous option.
+
+
+
+ right arrow
+
+
If option is closed, opens the option otherwise moves focus to the first child option.
+
+
+
+ left arrow
+
+
If option is open, closes the option otherwise moves focus to the parent option.