Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/rich-tomatoes-marry.md

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Plugin | Contributor | Description
[self-paced-reading](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-self-paced-reading/README.md) | [igmmgi](https://github.com/igmmgi) | Self-paced reading tasks with different display options.
[slide-to-continue](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-slide-to-continue/README.md) | [Vishnu Lakshman](https://github.com/lakshmanvishnu) | The plugin-slider is a jsPsych plugin that creates an interactive slider interface similar to the 'slide to unlock' functionality found on mobile devices. Users must drag a slider handle to complete the trial, making it useful for consent screens, engagement checks, or transition screens in psychological experiments.
[spatial-nback](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-spatial-nback/README.md) | [A. Hunter Farhat](https://github.com/farhat60) | A jsPsych plugin for presenting a spatial grid stimulus, designed for spatial n-back tasks. The plugin displays a customizable grid, highlights a cell as the stimulus, and collects participant responses with optional feedback and instructions.
[spr](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-spr/README.md) | [jade](https://github.com/jadeddelta) | Self-paced reading trials using the DOM.
[survey-number](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-survey-number/README.md) | [Josh de Leeuw](https://github.com/jodeleeuw) | This plugin displays a survey question and collects a numeric response.
[survey-slider](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-survey-slider/README.md) | [Dominique Makowski](https://github.com/DominiqueMakowski) | Add several analogue scales on the same page for use in questionnaires.
[survey-vas](https://github.com/jspsych/jspsych-contrib/blob/main/packages/plugin-survey-vas/README.md) | [Isaac Kinley](https://github.com/kinleyid) | This plugin displays a series of questions with point-and-click visual analogue scales.
Expand Down
14 changes: 1 addition & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/plugin-spr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @jspsych-contrib/plugin-spr

## 0.1.0

### Minor Changes

- [#145](https://github.com/jspsych/jspsych-contrib/pull/145) [`30769b412cad0055e29903df095ff00d8be28443`](https://github.com/jspsych/jspsych-contrib/commit/30769b412cad0055e29903df095ff00d8be28443) Thanks [@vzhang03](https://github.com/vzhang03)! - initial version of self-paced reading (DOM version) plugin
2 changes: 1 addition & 1 deletion packages/plugin-spr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This plugin primarily works within the context of the DOM- allowing for a much m
### In browser

```js
<script src="https://unpkg.com/@jspsych-contrib/plugin-spr@1.0.0"></script>
<script src="https://unpkg.com/@jspsych-contrib/plugin-spr@0.1.0"></script>
```

### Via NPM
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-spr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jspsych-contrib/plugin-spr",
"version": "0.0.1",
"version": "0.1.0",
"description": "Self-paced reading trials using the DOM.",
"type": "module",
"main": "dist/index.cjs",
Expand Down