We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e54d2 commit a016bb6Copy full SHA for a016bb6
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "surveyjs-widgets",
3
- "version": "0.12.50",
+ "version": "0.12.52",
4
"scripts": {
5
"start": "npm run build && live-server",
6
"prebuild": "webpack --env.buildType dev",
src/nouislider.js
@@ -1,3 +1,5 @@
+import noUiSlider from 'nouislider';
+
function init(Survey) {
var widget = {
name: "nouislider",
webpack.config.js
@@ -114,6 +114,12 @@ module.exports = function(options) {
114
commonjs2: 'inputmask',
115
commonjs: 'inputmask',
116
amd: 'inputmask'
117
+ },
118
+ 'noUiSlider': {
119
+ root: 'noUiSlider',
120
+ commonjs2: 'nouislider',
121
+ commonjs: 'nouislider',
122
+ amd: 'nouislider'
123
}
124
},
125
plugins: [
0 commit comments