SurveyJS v3.0.1
Released: August 18, 2026
SurveyJS v3.0.1 is the first maintenance release for SurveyJS v3.0. It includes bug fixes and minor enhancements for the new major version. For an overview of SurveyJS v3.0 platform capabilities, see:
Bug Fixes
Form Library
- Use Hand Cursor for Clickable UI elements - Radiogroup, Single-Select Matrix, Rating Scale, Checkboxes (#11634)
- Multi-Select Matrix, Dynamic Matrix - The default cell type doesn't work (#11708)
- Panel box-shadow is customized incorrectly (#11710)
- Theme adapters - bootstrap, shadcn - scrollbar in Creator checkbox (#11719)
- An async confirmation dialog (
settings.confirmActionAsync) appears incorrectly (#11724) - Boolean Switch - A long label appears outside a question's boundaries (#11727)
- Dynamic Matrix - A custom dropdown item template is not applied to a matrix column (#11728)
- Dropdown with lazy loading - A popup appears incorrectly on mobile (#11729)
Survey Creator
- Choices "Edit"/fast-entry button disabled when a non-default locale is active (since v2.5.x) (#7935)
- Designer: page content stays on the loading placeholder after the survey is re-created (#7952)
- Condition builder shows [object Object] when a choice has showCommentArea (#7955)
Dashboard
- Tabulator v3 - No matching export in "node_modules/tabulator-tables/dist/js/tabulator_esm.mjs" for import "default" (#826)
How to Update SurveyJS Libraries in Your Application
To migrate your application to the SurveyJS v3.0 line (v3.0.1), install the following npm packages or replace old source links with the new links:
Angular
npm i survey-core@3.0.1 survey-angular-ui@3.0.1
npm i survey-creator-core@3.0.1 survey-creator-angular@3.0.1
npm i survey-analytics@3.0.1
npm i survey-pdf@3.0.1
React
npm i survey-core@3.0.1 survey-react-ui@3.0.1
npm i survey-creator-core@3.0.1 survey-creator-react@3.0.1
npm i survey-analytics@3.0.1
npm i survey-pdf@3.0.1
Vue.js
npm i survey-core@3.0.1 survey-vue3-ui@3.0.1
npm i survey-creator-core@3.0.1 survey-creator-vue@3.0.1
npm i survey-analytics@3.0.1
npm i survey-pdf@3.0.1
HTML/CSS/JavaScript
<link href="https://unpkg.com/survey-core@3.0.1/survey-core.min.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/survey-core@3.0.1/survey.core.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/survey-js-ui@3.0.1/survey-js-ui.min.js"></script>
<script src="https://unpkg.com/survey-core@3.0.1/themes/index.min.js"></script>
<link href="https://unpkg.com/survey-creator-core@3.0.1/survey-creator-core.min.css" type="text/css" rel="stylesheet">
<script src="https://unpkg.com/survey-creator-core@3.0.1/survey-creator-core.min.js"></script>
<script src="https://unpkg.com/survey-creator-js@3.0.1/survey-creator-js.min.js"></script>
<link href="https://unpkg.com/survey-analytics@3.0.1/survey.analytics.min.css" rel="stylesheet">
<script src="https://unpkg.com/survey-analytics@3.0.1/survey.analytics.min.js"></script>
<link href="https://unpkg.com/survey-analytics@3.0.1/survey.analytics.tabulator.min.css" rel="stylesheet">
<script src="https://unpkg.com/survey-analytics@3.0.1/survey.analytics.tabulator.min.js"></script>
<script src="https://unpkg.com/survey-pdf@3.0.1/survey.pdf.min.js"></script>
<script src="https://unpkg.com/survey-pdf@3.0.1/pdf-form-filler.min.js"></script>
After that, you need to get acquainted with breaking changes introduced in SurveyJS v3.0 and update your code as described.