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
|
@@ -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
package/src/modules/plugins.ts
CHANGED
|
@@ -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>;
|