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.cjs
CHANGED
|
@@ -69,7 +69,7 @@ var autoBind = (self, {include, exclude} = {}) => {
|
|
|
69
69
|
return self;
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
-
var version = "7.1.
|
|
72
|
+
var version = "7.1.2";
|
|
73
73
|
|
|
74
74
|
class MigrationError extends Error {
|
|
75
75
|
constructor(message = "The global `jsPsych` variable is no longer available in jsPsych v7.") {
|
|
@@ -810,6 +810,13 @@ const universalPluginParameters = {
|
|
|
810
810
|
pretty_name: "Custom CSS classes",
|
|
811
811
|
default: null,
|
|
812
812
|
},
|
|
813
|
+
/**
|
|
814
|
+
* Options to control simulation mode for the trial.
|
|
815
|
+
*/
|
|
816
|
+
simulation_options: {
|
|
817
|
+
type: exports.ParameterType.COMPLEX,
|
|
818
|
+
default: null,
|
|
819
|
+
},
|
|
813
820
|
};
|
|
814
821
|
|
|
815
822
|
const preloadParameterTypes = [
|