SurveyJS v2.5.23
Released: May 5, 2026
SurveyJS v2.5.23 introduces support for hybrid paper and digital form response collection, improving cross-channel data processing workflows.
Hybrid Paper and Digital Form Collection
SurveyJS v2.5.23 introduces AI Form Response Extractor, a new open-source MIT-licensed library that enables conversion of scanned documents into structured survey data using AI.
This feature provides a unified approach to form response collection across both digital and paper-based workflows. You design a survey once, collect responses online through web forms, and process paper submissions by converting scanned documents into the same structured data format. Printed forms can thus be treated as an extension of your digital system rather than a separate data entry channel.
All responses—whether submitted online or extracted from paper—are normalized into a single SurveyJS JSON data object. For more details, see the following article:
Hybrid Paper and Digital Form Data Collection
Bug Fixes and Minor Enhancements
Form Library
- Custom expression properties are re-evaluated even when they do not reference the changed value (#11233)
Survey Creator
- Page navigator is not scrollable when the survey contains many pages and
pageEditModeis"bypage"(#7670) - Deleting a question doesn't clear references to it in triggers'
setToNameproperty (#7661) - Dropdown preview in Android phone simulator landscape mode does not show Cancel and OK buttons (#7621)
Dashboard
- Table View displays
[object Object]in nested table cells when visualizing data from a Multi-Select Matrix nested inside a Dynamic Panel (#754) - Table View displays choice values instead of display texts in nested table cells when visualizing data from a Dynamic Panel (#755)
- Cross-filtering doesn't work for charts visualizing questions that reuse choices from another question (#750)
How to Update SurveyJS Libraries in Your Application
Angular
npm i survey-core@v2.5.23 survey-angular-ui@v2.5.23 --save
npm i survey-creator-core@v2.5.23 survey-creator-angular@v2.5.23 --save
npm i survey-analytics@v2.5.23 --save
npm i survey-pdf@v2.5.23 --save
React
npm i survey-core@v2.5.23 survey-react-ui@v2.5.23 --save
npm i survey-creator-core@v2.5.23 survey-creator-react@v2.5.23 --save
npm i survey-analytics@v2.5.23 --save
npm i survey-pdf@v2.5.23 --save
Vue.js
npm i survey-core@v2.5.23 survey-vue3-ui@v2.5.23 --save
npm i survey-creator-core@v2.5.23 survey-creator-vue@2.5.23 --save
npm i survey-analytics@2.5.23 --save
npm i survey-pdf@2.5.23 --save
HTML/CSS/JavaScript
<link href="https://unpkg.com/survey-core@2.5.23/survey-core.min.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/survey-core@2.5.23/survey.core.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/survey-js-ui@2.5.23/survey-js-ui.min.js"></script>
<script src="https://unpkg.com/survey-core@2.5.23/themes/index.min.js"></script>
<script src="https://unpkg.com/survey-creator-core@2.5.23/themes/index.min.js"></script>
<link href="https://unpkg.com/survey-creator-core@2.5.23/survey-creator-core.min.css" type="text/css" rel="stylesheet">
<script src="https://unpkg.com/survey-creator-core@2.5.23/survey-creator-core.min.js"></script>
<script src="https://unpkg.com/survey-creator-js@2.5.23/survey-creator-js.min.js"></script>
<link href="https://unpkg.com/survey-analytics@2.5.23/survey.analytics.min.css" rel="stylesheet">
<script src="https://unpkg.com/survey-analytics@2.5.23/survey.analytics.min.js"></script>
<script src="https://unpkg.com/survey-pdf@2.5.23/survey.pdf.min.js"></script>
<script src="https://unpkg.com/survey-pdf@2.5.23/pdf-form-filler.min.js"></script>