├── .github └── workflows │ ├── build.node.js.yml │ └── tagged-release.yml ├── .gitignore ├── .prettierrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── deploy_npm.sh ├── devops-integration.yml ├── examples ├── angular │ ├── config.js │ ├── index.html │ └── index.js ├── jquery │ ├── index.html │ └── index.js ├── knockout │ ├── index.html │ └── index.js ├── react │ ├── index.html │ └── index.js └── vue │ ├── index.html │ └── index.js ├── package.json ├── release-azure-pipeline.yml ├── src ├── bootstrap-slider.js ├── bootstrapdatepicker.js ├── ck-editor.js ├── easy-autocomplete.js ├── emotionsratings.js ├── icheck.js ├── images │ ├── barrating.svg │ ├── datepicker.svg │ ├── editor.svg │ ├── microphone.svg │ ├── nouislider.svg │ ├── sortablejs.svg │ └── tagbox.svg ├── inputmask.js ├── jquery-bar-rating.js ├── jquery-ui-datepicker.js ├── microphone.js ├── nouislider.js ├── pretty-checkbox.js ├── select2-tagbox.js ├── select2.js ├── sortablejs.js ├── surveyjs-widgets.js └── targetREADME.md ├── testcafe ├── all-widgets.ts ├── helper.js ├── nouislider.ts └── tagbox.ts └── webpack.config.js /.github/workflows/build.node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/.github/workflows/build.node.js.yml -------------------------------------------------------------------------------- /.github/workflows/tagged-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/.github/workflows/tagged-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/README.md -------------------------------------------------------------------------------- /deploy_npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/deploy_npm.sh -------------------------------------------------------------------------------- /devops-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/devops-integration.yml -------------------------------------------------------------------------------- /examples/angular/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/angular/config.js -------------------------------------------------------------------------------- /examples/angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/angular/index.html -------------------------------------------------------------------------------- /examples/angular/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/angular/index.js -------------------------------------------------------------------------------- /examples/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/jquery/index.html -------------------------------------------------------------------------------- /examples/jquery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/jquery/index.js -------------------------------------------------------------------------------- /examples/knockout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/knockout/index.html -------------------------------------------------------------------------------- /examples/knockout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/knockout/index.js -------------------------------------------------------------------------------- /examples/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/react/index.html -------------------------------------------------------------------------------- /examples/react/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/react/index.js -------------------------------------------------------------------------------- /examples/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/vue/index.html -------------------------------------------------------------------------------- /examples/vue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/examples/vue/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/package.json -------------------------------------------------------------------------------- /release-azure-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/release-azure-pipeline.yml -------------------------------------------------------------------------------- /src/bootstrap-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/bootstrap-slider.js -------------------------------------------------------------------------------- /src/bootstrapdatepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/bootstrapdatepicker.js -------------------------------------------------------------------------------- /src/ck-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/ck-editor.js -------------------------------------------------------------------------------- /src/easy-autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/easy-autocomplete.js -------------------------------------------------------------------------------- /src/emotionsratings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/emotionsratings.js -------------------------------------------------------------------------------- /src/icheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/icheck.js -------------------------------------------------------------------------------- /src/images/barrating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/images/barrating.svg -------------------------------------------------------------------------------- /src/images/datepicker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/images/datepicker.svg -------------------------------------------------------------------------------- /src/images/editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/images/editor.svg -------------------------------------------------------------------------------- /src/images/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/images/microphone.svg -------------------------------------------------------------------------------- /src/images/nouislider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/images/nouislider.svg -------------------------------------------------------------------------------- /src/images/sortablejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/images/sortablejs.svg -------------------------------------------------------------------------------- /src/images/tagbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/images/tagbox.svg -------------------------------------------------------------------------------- /src/inputmask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/inputmask.js -------------------------------------------------------------------------------- /src/jquery-bar-rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/jquery-bar-rating.js -------------------------------------------------------------------------------- /src/jquery-ui-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/jquery-ui-datepicker.js -------------------------------------------------------------------------------- /src/microphone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/microphone.js -------------------------------------------------------------------------------- /src/nouislider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/nouislider.js -------------------------------------------------------------------------------- /src/pretty-checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/pretty-checkbox.js -------------------------------------------------------------------------------- /src/select2-tagbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/select2-tagbox.js -------------------------------------------------------------------------------- /src/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/select2.js -------------------------------------------------------------------------------- /src/sortablejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/sortablejs.js -------------------------------------------------------------------------------- /src/surveyjs-widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/surveyjs-widgets.js -------------------------------------------------------------------------------- /src/targetREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/src/targetREADME.md -------------------------------------------------------------------------------- /testcafe/all-widgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/testcafe/all-widgets.ts -------------------------------------------------------------------------------- /testcafe/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/testcafe/helper.js -------------------------------------------------------------------------------- /testcafe/nouislider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/testcafe/nouislider.ts -------------------------------------------------------------------------------- /testcafe/tagbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/testcafe/tagbox.ts -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surveyjs/custom-widgets/HEAD/webpack.config.js --------------------------------------------------------------------------------