Skip to content

Commit 233e8a9

Browse files
committed
Update some doccomments
1 parent 0565f7d commit 233e8a9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/survey-creator-core/src/creator-base.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ export class SurveyCreatorModel extends Base
572572
public onGetPropertyReadOnly: EventBase<SurveyCreatorModel, GetPropertyReadOnlyEvent> = this.onPropertyGetReadOnly;
573573

574574
/**
575-
* An event that is raised when Survey Creator [instantiates a survey to display a UI element](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys). Handle this event to customize the UI element by modifying the survey.
575+
* An event that is raised when Survey Creator [instantiates a survey to display a UI element](https://surveyjs.io/survey-creator/documentation/property-grid-customization#add-custom-properties-to-the-property-grid). Handle this event to customize the UI element by modifying the survey.
576576
*
577577
* For information on event handler parameters, refer to descriptions within the interface.
578578
*
@@ -986,7 +986,7 @@ export class SurveyCreatorModel extends Base
986986
* }
987987
* });
988988
*
989-
* const creator = new SurveyCreatorModel({});
989+
* const creator = new SurveyCreatorModel();
990990
*
991991
* creator.onCreateCustomMessagePanel.add((_, options) => {
992992
* options.messageText = "Choices for this question are loaded from a predefined data source. ";

packages/survey-creator-core/src/creator-events-api.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ export interface PropertyGridSurveyCreatedEvent {
243243

244244
export interface PropertyEditorCreatedEvent {
245245
/**
246-
* A property editor. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys).
246+
* A property editor. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/property-grid-customization#add-custom-properties-to-the-property-grid).
247247
*/
248248
editor: Question;
249249
/**
@@ -270,7 +270,7 @@ export interface PropertyEditorUpdateTitleActionsEvent {
270270
*/
271271
element: Base;
272272
/**
273-
* A property editor that contains the title actions. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys).
273+
* A property editor that contains the title actions. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/property-grid-customization#add-custom-properties-to-the-property-grid).
274274
*/
275275
editor: Question;
276276
/**
@@ -297,7 +297,7 @@ export interface PropertyGridShowPopupEvent {
297297
*/
298298
property: JsonObjectProperty;
299299
/**
300-
* A property editor. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/creator-v2-whats-new#survey-creator-ui-elements-are-surveys).
300+
* A property editor. It is an object of the [`Question`](https://surveyjs.io/form-library/documentation/question) type because the Property Grid is [built upon a regular survey](https://surveyjs.io/survey-creator/documentation/property-grid-customization#add-custom-properties-to-the-property-grid).
301301
*/
302302
editor: Question;
303303
/**

packages/survey-creator-core/src/creator-options.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export interface ICreatorOptions {
101101
*/
102102
logicAllowTextEditExpressions?: boolean;
103103
/**
104-
* @deprecated Use the[`logicAllowTextEditExpressions`](https://surveyjs.io/survey-creator/documentation/api-reference/icreatoroptions#logicAllowTextEditExpressions) property instead.
104+
* @deprecated Use the [`logicAllowTextEditExpressions`](https://surveyjs.io/survey-creator/documentation/api-reference/icreatoroptions#logicAllowTextEditExpressions) property instead.
105105
*/
106106
allowEditExpressionsInTextEditor?: boolean;
107107
/**

0 commit comments

Comments
 (0)