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.
@@ -113,6 +113,13 @@ export declare const universalPluginParameters: {
113
113
  readonly pretty_name: "Custom CSS classes";
114
114
  readonly default: any;
115
115
  };
116
+ /**
117
+ * Options to control simulation mode for the trial.
118
+ */
119
+ readonly simulation_options: {
120
+ readonly type: ParameterType.COMPLEX;
121
+ readonly default: any;
122
+ };
116
123
  };
117
124
  export declare type UniversalPluginParameters = InferredParameters<typeof universalPluginParameters>;
118
125
  export interface PluginInfo {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jspsych",
3
- "version": "7.1.1",
3
+ "version": "7.1.2",
4
4
  "description": "Behavioral experiments in a browser",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -133,6 +133,13 @@ export const universalPluginParameters = <const>{
133
133
  pretty_name: "Custom CSS classes",
134
134
  default: null,
135
135
  },
136
+ /**
137
+ * Options to control simulation mode for the trial.
138
+ */
139
+ simulation_options: {
140
+ type: ParameterType.COMPLEX,
141
+ default: null,
142
+ },
136
143
  };
137
144
 
138
145
  export type UniversalPluginParameters = InferredParameters<typeof universalPluginParameters>;