Skip to content

Commit

Permalink
Update question names in class descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Tsukanov committed Aug 18, 2023
1 parent 67adc7c commit 3263622
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/question_baseselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { CssClassBuilder } from "./utils/cssClassBuilder";
import { mergeValues } from "./utils/utils";

/**
* A base class for multiple-choice question types ([Checkbox](https://surveyjs.io/form-library/documentation/questioncheckboxmodel), [Dropdown](https://surveyjs.io/form-library/documentation/questiondropdownmodel), [Radiogroup](https://surveyjs.io/form-library/documentation/questionradiogroupmodel), etc.).
* A base class for multiple-choice question types ([Checkboxes](https://surveyjs.io/form-library/documentation/questioncheckboxmodel), [Dropdown](https://surveyjs.io/form-library/documentation/questiondropdownmodel), [Radio Button Group](https://surveyjs.io/form-library/documentation/questionradiogroupmodel), etc.).
*/
export class QuestionSelectBase extends Question {
public visibleChoicesChangedCallback: () => void;
Expand Down
2 changes: 1 addition & 1 deletion src/question_boolean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { preventDefaults } from "./utils/utils";
import { ActionContainer } from "./actions/container";

/**
* A class that describes the Boolean question type.
* A class that describes the Yes/No (Boolean) question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-boolean/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_checkbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { SurveyError } from "./survey-error";
import { CustomError } from "./error";

/**
* A class that describes the Checkbox question type.
* A class that describes the Checkboxes question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-checkbox/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { increaseHeightByContent } from "./utils/utils";
import { settings } from "./settings";

/**
* A class that describes the Comment question type.
* A class that describes the Long Text question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-comment/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { Action } from "./actions/action";
import { Helpers } from "./helpers";

/**
* A class that describes the File question type.
* A class that describes the File Upload question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/file-upload/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { QuestionFactory } from "./questionfactory";
import { LocalizableString } from "./localizablestring";

/**
* A class that describes the Html question type. Unlike other question types, Html cannot have a title or value.
* A class that describes the HTML question type. Unlike other question types, HTML cannot have a title or value.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-html/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_matrix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export class MatrixCells {
}

/**
* A class that describes the Single-Choice Matrix question type.
* A class that describes the Single-Select Matrix question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/single-selection-matrix-table-question/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_matrixdropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class MatrixDropdownRowModel extends MatrixDropdownRowModelBase {
}
}
/**
* A class that describes the Multiple-Choice Matrix question type. Multiple-Choice Matrix allows you to use the [Dropdown](https://surveyjs.io/form-library/documentation/questiondropdownmodel), [Checkbox](https://surveyjs.io/form-library/documentation/questioncheckboxmodel), [Radiogroup](https://surveyjs.io/form-library/documentation/questionradiogroupmodel), [Text](https://surveyjs.io/form-library/documentation/questiontextmodel), and [Comment](https://surveyjs.io/form-library/documentation/questioncommentmodel) question types as cell editors.
* A class that describes the Multi-Select Matrix question type. Multi-Select Matrix allows you to use the [Dropdown](https://surveyjs.io/form-library/documentation/questiondropdownmodel), [Checkbox](https://surveyjs.io/form-library/documentation/questioncheckboxmodel), [Radiogroup](https://surveyjs.io/form-library/documentation/questionradiogroupmodel), [Text](https://surveyjs.io/form-library/documentation/questiontextmodel), and [Comment](https://surveyjs.io/form-library/documentation/questioncommentmodel) question types as cell editors.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-matrixdropdown/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_multipletext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class MultipleTextEditorModel extends QuestionTextModel {
}

/**
* A class that describes an item in a [Multiple Text](https://surveyjs.io/form-library/documentation/api-reference/multiple-text-entry-question-model) question.
* A class that describes an item in a [Multiple Textboxes](https://surveyjs.io/form-library/documentation/api-reference/multiple-text-entry-question-model) question.
*
* [View Demo](/form-library/examples/multiple-text-box-question/)
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_radiogroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Action } from "./actions/action";
import { ComputedUpdater } from "./base";

/**
* A class that describes the Radiogroup question type.
* A class that describes the Radio Button Group question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-radiogroup/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_signaturepad.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function resizeCanvas(canvas: HTMLCanvasElement) {
}

/**
* A class that describes the Signature Page question type.
* A class that describes the Signature question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/signature-pad-widget-javascript/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_tagbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { settings } from "./settings";
import { ItemValue } from "./itemvalue";

/**
* A Model for a tagbox question
* A class that describes the Multi-Select Dropdown (Tag Box) question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/how-to-create-multiselect-tag-box/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { ExpressionRunner } from "./conditions";
import { SurveyModel } from "./survey";

/**
* A class that describes the Text question type.
* A class that describes the Single-Line Input question type.
*
* [View Demo](https://surveyjs.io/form-library/examples/questiontype-text/ (linkStyle))
*/
Expand Down
2 changes: 1 addition & 1 deletion src/question_textbase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class CharacterCounter extends Base {
}

/**
* A base class for the [Text](https://surveyjs.io/form-library/documentation/questiontextmodel) and [Comment](https://surveyjs.io/form-library/documentation/questioncommentmodel) question types.
* A base class for the [Single-Line Input](https://surveyjs.io/form-library/documentation/questiontextmodel) and [Long Text](https://surveyjs.io/form-library/documentation/questioncommentmodel) question types.
*/
export class QuestionTextBase extends Question {
constructor(name: string) {
Expand Down
2 changes: 1 addition & 1 deletion src/survey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,7 @@ export class SurveyModel extends SurveyElementCore
*
* If you enable this property, the survey is also completed automatically. Set the [`allowCompleteSurveyAutomatic`](https://surveyjs.io/form-library/documentation/api-reference/survey-data-model#allowCompleteSurveyAutomatic) property to `false` if you want to disable this behavior.
*
* > If any of the following questions is answered last, the survey does not switch to the next page: Checkbox, Boolean (rendered as Checkbox), Comment, Signature Pad, Image Picker (with Multi Select), File, Single-Choice Matrix (not all rows are answered), Dynamic Matrix, Panel Dynamic.
* > If any of the following questions is answered last, the survey does not switch to the next page: Checkboxes, Yes/No (Boolean) (rendered as Checkbox), Long Text, Signature, Image Picker (with Multi Select), File Upload, Single-Select Matrix (not all rows are answered), Dynamic Matrix, Dynamic Panel.
*
* [View Demo](https://surveyjs.io/form-library/examples/automatically-move-to-next-page-if-answer-selected/ (linkStyle))
*/
Expand Down

0 comments on commit 3263622

Please sign in to comment.