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.
- package/fonts.fontless.css +1 -1
- package/fonts.fontless.min.css +1 -1
- package/package.json +2 -2
- package/survey-creator-core.css +91 -4
- package/survey-creator-core.fontless.css +90 -3
- package/survey-creator-core.fontless.css.map +1 -1
- package/survey-creator-core.fontless.min.css +7 -7
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +74 -12
- package/survey-creator-core.js.map +1 -1
- package/survey-creator-core.min.css +8 -8
- package/survey-creator-core.min.js +2 -2
- package/typings/components/question-image.d.ts +1 -0
- package/typings/creator-base.d.ts +3 -1
- package/typings/survey-elements.d.ts +2 -0
|
@@ -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;
|