survey-creator-core 1.9.106 → 1.9.107

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.
@@ -15,5 +15,6 @@ export declare class QuestionImageAdornerViewModel extends QuestionAdornerViewMo
15
15
  get question(): QuestionImageModel;
16
16
  get placeholderText(): string;
17
17
  get chooseImageText(): string;
18
+ css(): string;
18
19
  dispose(): void;
19
20
  }
@@ -151,7 +151,9 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
151
151
  * - `"portrait"`
152
152
  */
153
153
  previewOrientation: "landscape" | "portrait";
154
- startEditTitleOnQuestionAdded: boolean;
154
+ set startEditTitleOnQuestionAdded(value: boolean);
155
+ get startEditTitleOnQuestionAdded(): boolean;
156
+ private startEditTitleOnQuestionAddedValue;
155
157
  private isRTLValue;
156
158
  private alwaySaveTextInPropertyEditorsValue;
157
159
  private toolbarValue;
@@ -31,7 +31,9 @@ export declare class DragDropSurveyElements extends DragDropCore<any> {
31
31
  private shouldRestricDragQuestionBetweenPages;
32
32
  private getPanelDropTarget;
33
33
  protected findDeepestDropTargetChild(parent: HTMLElement): HTMLElement;
34
+ private isAllowDragOver;
34
35
  dragOverCore(dropTarget: ISurveyElement, dragOverLocation: DragTypeOverMeEnum, isEdge?: boolean, isSide?: boolean): void;
36
+ private isSameElement;
35
37
  dragOver(event: PointerEvent): void;
36
38
  protected onStartDrag(): void;
37
39
  private getElementIndexInPanel;