survey-creator-core 1.9.108 → 1.9.109

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.
@@ -538,45 +538,45 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
538
538
  *
539
539
  * Depending on the `options.type` value, the `options` object contains parameters listed below:
540
540
  *
541
- * `options.type`: `"ADDED_FROM_TOOLBOX"`\
541
+ * `options.type`: `"ADDED_FROM_TOOLBOX"`
542
542
  * - `options.question` - An added question.
543
543
  *
544
- * `options.type`: `"PAGE_ADDED"`\
544
+ * `options.type`: `"PAGE_ADDED"`
545
545
  * - `options.newValue` - An added page.
546
546
  *
547
- * `options.type`: `"PAGE_MOVED"`\
547
+ * `options.type`: `"PAGE_MOVED"`
548
548
  * - `options.page` - A moved page.
549
549
  * - `options.indexFrom` - A previous index.
550
550
  * - `options.indexTo` - A current index.
551
551
  *
552
- * `options.type`: `"QUESTION_CONVERTED"`\
552
+ * `options.type`: `"QUESTION_CONVERTED"`
553
553
  * - `options.className` - The name of a class to which a question has been converted.
554
554
  * - `options.oldValue` - An object of a previous class.
555
555
  * - `options.newValue` - An object of a class specified by `options.className`.
556
556
  *
557
- * `options.type`: `"QUESTION_CHANGED_BY_EDITOR"`\
557
+ * `options.type`: `"QUESTION_CHANGED_BY_EDITOR"`
558
558
  * - `options.question` - A question that has been edited in a pop-up editor.
559
559
  *
560
- * `options.type`: `"PROPERTY_CHANGED"`\
560
+ * `options.type`: `"PROPERTY_CHANGED"`
561
561
  * - `options.name` - The name of the changed property.
562
562
  * - `options.target` - An object that contains the changed property.
563
563
  * - `options.oldValue` - A previous value of the changed property.
564
564
  * - `options.newValue` - A new value of the changed property.
565
565
  *
566
- * `options.type`: `"ELEMENT_REORDERED"`\
566
+ * `options.type`: `"ELEMENT_REORDERED"`
567
567
  * - `options.arrayName` - The name of the changed array.
568
568
  * - `options.parent` - An object that contains the changed array.
569
569
  * - `options.element` - A reordered element.
570
570
  * - `options.indexFrom` - A previous index.
571
571
  * - `options.indexTo` - A current index.
572
572
  *
573
- * `options.type`: `"OBJECT_DELETED"`\
573
+ * `options.type`: `"OBJECT_DELETED"`
574
574
  * - `options.target` - A deleted object.
575
575
  *
576
- * `options.type`: `"VIEW_TYPE_CHANGED"`\
576
+ * `options.type`: `"VIEW_TYPE_CHANGED"`
577
577
  * - `options.newType` - A current view: `"editor"` or `"designer"`.
578
578
  *
579
- * `options.type`: `"DO_DROP"`\
579
+ * `options.type`: `"DO_DROP"`
580
580
  * - `options.page` - A parent page of the dragged element.
581
581
  * - `options.source` - A dragged element.
582
582
  * - `options.target` - A drop target.