mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-10 11:10:54 +00:00
remove built dist and css files from plugin-survey directory
This commit is contained in:
parent
02a76d1f65
commit
11be458d14
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
103011
packages/plugin-survey/dist/index.browser.js
vendored
103011
packages/plugin-survey/dist/index.browser.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
74287
packages/plugin-survey/dist/index.browser.min.js
vendored
74287
packages/plugin-survey/dist/index.browser.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
101984
packages/plugin-survey/dist/index.cjs
vendored
101984
packages/plugin-survey/dist/index.cjs
vendored
File diff suppressed because one or more lines are too long
1
packages/plugin-survey/dist/index.cjs.map
vendored
1
packages/plugin-survey/dist/index.cjs.map
vendored
File diff suppressed because one or more lines are too long
83
packages/plugin-survey/dist/index.d.ts
vendored
83
packages/plugin-survey/dist/index.d.ts
vendored
@ -1,83 +0,0 @@
|
||||
import { JsPsych, JsPsychPlugin, ParameterType, TrialType } from "jspsych";
|
||||
declare const info: {
|
||||
readonly name: "survey";
|
||||
readonly parameters: {
|
||||
/**
|
||||
* A SurveyJS survey model defined as a JavaScript object.
|
||||
* See: https://surveyjs.io/form-library/documentation/design-survey/create-a-simple-survey#define-a-static-survey-model-in-json
|
||||
*/
|
||||
readonly survey_json: {
|
||||
readonly type: ParameterType.OBJECT;
|
||||
readonly default: {};
|
||||
readonly pretty_name: "Survey JSON object";
|
||||
};
|
||||
/**
|
||||
* A SurveyJS survey model defined as a function. The function receives an empty SurveyJS survey object as an argument.
|
||||
* See: https://surveyjs.io/form-library/documentation/design-survey/create-a-simple-survey#create-or-change-a-survey-model-dynamically
|
||||
*/
|
||||
readonly survey_function: {
|
||||
readonly type: ParameterType.FUNCTION;
|
||||
readonly default: any;
|
||||
readonly pretty_name: "Survey function";
|
||||
};
|
||||
/**
|
||||
* A function that can be used to validate responses. This function is called whenever the SurveyJS onValidateQuestion event occurs.
|
||||
* See: https://surveyjs.io/form-library/documentation/data-validation#implement-custom-client-side-validation
|
||||
*/
|
||||
readonly validation_function: {
|
||||
readonly type: ParameterType.FUNCTION;
|
||||
readonly default: any;
|
||||
readonly pretty_name: "Validation function";
|
||||
};
|
||||
};
|
||||
};
|
||||
type Info = typeof info;
|
||||
/**
|
||||
* **survey**
|
||||
*
|
||||
* jsPsych plugin for presenting complex questionnaires using the SurveyJS library
|
||||
*
|
||||
* @author Becky Gilbert
|
||||
* @see {@link https://www.jspsych.org/plugins/survey/ survey plugin documentation on jspsych.org}
|
||||
*/
|
||||
declare class SurveyPlugin implements JsPsychPlugin<Info> {
|
||||
private jsPsych;
|
||||
static info: {
|
||||
readonly name: "survey";
|
||||
readonly parameters: {
|
||||
/**
|
||||
* A SurveyJS survey model defined as a JavaScript object.
|
||||
* See: https://surveyjs.io/form-library/documentation/design-survey/create-a-simple-survey#define-a-static-survey-model-in-json
|
||||
*/
|
||||
readonly survey_json: {
|
||||
readonly type: ParameterType.OBJECT;
|
||||
readonly default: {};
|
||||
readonly pretty_name: "Survey JSON object";
|
||||
};
|
||||
/**
|
||||
* A SurveyJS survey model defined as a function. The function receives an empty SurveyJS survey object as an argument.
|
||||
* See: https://surveyjs.io/form-library/documentation/design-survey/create-a-simple-survey#create-or-change-a-survey-model-dynamically
|
||||
*/
|
||||
readonly survey_function: {
|
||||
readonly type: ParameterType.FUNCTION;
|
||||
readonly default: any;
|
||||
readonly pretty_name: "Survey function";
|
||||
};
|
||||
/**
|
||||
* A function that can be used to validate responses. This function is called whenever the SurveyJS onValidateQuestion event occurs.
|
||||
* See: https://surveyjs.io/form-library/documentation/data-validation#implement-custom-client-side-validation
|
||||
*/
|
||||
readonly validation_function: {
|
||||
readonly type: ParameterType.FUNCTION;
|
||||
readonly default: any;
|
||||
readonly pretty_name: "Validation function";
|
||||
};
|
||||
};
|
||||
};
|
||||
private survey;
|
||||
private start_time;
|
||||
constructor(jsPsych: JsPsych);
|
||||
applyStyles(survey: any): void;
|
||||
trial(display_element: HTMLElement, trial: TrialType<Info>): void;
|
||||
}
|
||||
export default SurveyPlugin;
|
101982
packages/plugin-survey/dist/index.js
vendored
101982
packages/plugin-survey/dist/index.js
vendored
File diff suppressed because one or more lines are too long
1
packages/plugin-survey/dist/index.js.map
vendored
1
packages/plugin-survey/dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user