remove built dist and css files from plugin-survey directory

This commit is contained in:
Becky Gilbert 2024-04-30 16:24:49 -07:00
parent 02a76d1f65
commit 11be458d14
11 changed files with 0 additions and 389515 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -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;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long