jspsych 7.1.1 → 7.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.browser.js +8 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.min.js +1 -1
- package/dist/index.browser.min.js.map +1 -1
- package/dist/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/modules/plugins.d.ts +7 -0
- package/package.json +1 -1
- package/src/modules/plugins.ts +7 -0
package/dist/index.browser.js
CHANGED
|
@@ -68,7 +68,7 @@ var jsPsychModule = (function (exports) {
|
|
|
68
68
|
return self;
|
|
69
69
|
};
|
|
70
70
|
|
|
71
|
-
var version = "7.1.
|
|
71
|
+
var version = "7.1.2";
|
|
72
72
|
|
|
73
73
|
class MigrationError extends Error {
|
|
74
74
|
constructor(message = "The global `jsPsych` variable is no longer available in jsPsych v7.") {
|
|
@@ -809,6 +809,13 @@ var jsPsychModule = (function (exports) {
|
|
|
809
809
|
pretty_name: "Custom CSS classes",
|
|
810
810
|
default: null,
|
|
811
811
|
},
|
|
812
|
+
/**
|
|
813
|
+
* Options to control simulation mode for the trial.
|
|
814
|
+
*/
|
|
815
|
+
simulation_options: {
|
|
816
|
+
type: exports.ParameterType.COMPLEX,
|
|
817
|
+
default: null,
|
|
818
|
+
},
|
|
812
819
|
};
|
|
813
820
|
|
|
814
821
|
const preloadParameterTypes = [
|