diff --git a/.changeset/shy-cheetahs-grow.md b/.changeset/shy-cheetahs-grow.md deleted file mode 100644 index f733a855..00000000 --- a/.changeset/shy-cheetahs-grow.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@jspsych/config": patch -"@jspsych/plugin-survey": patch ---- - -This fixes the incorrect width for dropdown question options (#3286), adds the survey.css file to the dist archive (#3131), and cleans up code/comments. diff --git a/docs/plugins/survey.md b/docs/plugins/survey.md index 17b65c11..47faae97 100644 --- a/docs/plugins/survey.md +++ b/docs/plugins/survey.md @@ -1,6 +1,6 @@ # survey -Current version: 1.0.0. [See version history](https://github.com/jspsych/jsPsych/blob/main/packages/plugin-survey/CHANGELOG.md). +Current version: 1.0.1. [See version history](https://github.com/jspsych/jsPsych/blob/main/packages/plugin-survey/CHANGELOG.md). SurveyJS version: 1.9.138 @@ -205,7 +205,7 @@ This plugin does not yet support [simulation mode](../overview/simulation.md). This plugin requires an additional stylesheet called `survey.css`. You can load it via: ```html - + ``` If you are using a bundler such as [webpack](https://webpack.js.org/), you can also import it in JavaScript as follows, depending on your bundler configuration: @@ -218,8 +218,8 @@ import '@jspsych/plugin-survey/css/survey.css' Using the CDN-hosted JavaScript file: ```js - - + + ``` Using the JavaScript file downloaded from a GitHub release dist archive: diff --git a/package-lock.json b/package-lock.json index 408085bf..666fa8bc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17404,7 +17404,7 @@ }, "packages/config": { "name": "@jspsych/config", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "dependencies": { "@babel/cli": "7.23.0", @@ -18011,14 +18011,14 @@ }, "packages/plugin-survey": { "name": "@jspsych/plugin-survey", - "version": "1.0.0", + "version": "1.0.1", "license": "MIT", "dependencies": { "survey-core": "^1.9.138", "survey-knockout-ui": "^1.9.139" }, "devDependencies": { - "@jspsych/config": "^2.0.0", + "@jspsych/config": "^2.0.1", "@jspsych/test-utils": "^1.1.2", "npm-run-all": "^4.1.5", "sass": "^1.43.5" diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md index 1afa42f7..ff359004 100644 --- a/packages/config/CHANGELOG.md +++ b/packages/config/CHANGELOG.md @@ -1,5 +1,11 @@ # @jspsych/config +## 2.0.1 + +### Patch Changes + +- [#3287](https://github.com/jspsych/jsPsych/pull/3287) [`54e04dc9`](https://github.com/jspsych/jsPsych/commit/54e04dc93f54a7a019db1fee4961dcc5e02b6fc0) Thanks [@becky-gilbert](https://github.com/becky-gilbert)! - Adds the survey.css file to the dist archive (#3131). + ## 2.0.0 ### Major Changes diff --git a/packages/config/package.json b/packages/config/package.json index bb9293df..f024abfd 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@jspsych/config", - "version": "2.0.0", + "version": "2.0.1", "description": "Shared (build) configuration for jsPsych packages", "type": "module", "exports": { diff --git a/packages/plugin-survey/CHANGELOG.md b/packages/plugin-survey/CHANGELOG.md index 99f229db..ce1e42ee 100644 --- a/packages/plugin-survey/CHANGELOG.md +++ b/packages/plugin-survey/CHANGELOG.md @@ -1,5 +1,11 @@ # @jspsych/plugin-survey +## 1.0.1 + +### Patch Changes + +- [#3287](https://github.com/jspsych/jsPsych/pull/3287) [`54e04dc9`](https://github.com/jspsych/jsPsych/commit/54e04dc93f54a7a019db1fee4961dcc5e02b6fc0) Thanks [@becky-gilbert](https://github.com/becky-gilbert)! - This fixes the incorrect width for dropdown question options (#3286) and cleans up code/comments. + ## 1.0.0 ### Major Changes diff --git a/packages/plugin-survey/package.json b/packages/plugin-survey/package.json index 523d64cf..5571947a 100644 --- a/packages/plugin-survey/package.json +++ b/packages/plugin-survey/package.json @@ -1,6 +1,6 @@ { "name": "@jspsych/plugin-survey", - "version": "1.0.0", + "version": "1.0.1", "description": "A jsPsych plugin for complex surveys", "type": "module", "main": "dist/index.cjs", @@ -44,7 +44,7 @@ "jspsych": ">=7.0.0" }, "devDependencies": { - "@jspsych/config": "^2.0.0", + "@jspsych/config": "^2.0.1", "@jspsych/test-utils": "^1.1.2", "npm-run-all": "^4.1.5", "sass": "^1.43.5"