survey-creator-core 1.8.79-beta.1 → 1.9.0-beta.1
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/package.json +1 -1
- package/survey-creator-core.css +40 -1863
- package/survey-creator-core.d.ts +13 -3
- package/survey-creator-core.js +118 -36
- package/survey-creator-core.min.css +7 -1854
- package/survey-creator-core.min.js +2 -2
package/survey-creator-core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*Type definitions for SurveyJS Creator JavaScript library v1.
|
|
1
|
+
/*Type definitions for SurveyJS Creator JavaScript library v1.9.0-beta.1
|
|
2
2
|
(c) 2015-2021 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
3
3
|
Github: https://github.com/surveyjs/survey-creator
|
|
4
4
|
License: https://surveyjs.io/Licenses#SurveyCreator
|
|
@@ -1786,6 +1786,9 @@ export declare var settings: {
|
|
|
1786
1786
|
showTabs: boolean;
|
|
1787
1787
|
showToolbar: boolean;
|
|
1788
1788
|
};
|
|
1789
|
+
jsonEditor: {
|
|
1790
|
+
indentation: number;
|
|
1791
|
+
};
|
|
1789
1792
|
};
|
|
1790
1793
|
export interface ICollectionItemAllowOperations {
|
|
1791
1794
|
allowDelete: boolean;
|
|
@@ -1887,6 +1890,10 @@ export declare class TabbedMenuItem extends Action implements ITabbedMenuItem {
|
|
|
1887
1890
|
export declare class TabbedMenuContainer extends AdaptiveActionContainer<TabbedMenuItem> {
|
|
1888
1891
|
constructor();
|
|
1889
1892
|
}
|
|
1893
|
+
export declare class ToolbarActionContainer extends ActionContainer {
|
|
1894
|
+
constructor(creator: CreatorBase);
|
|
1895
|
+
protected getRenderedActions(): Array<Action>;
|
|
1896
|
+
}
|
|
1890
1897
|
export declare type toolBoxLocationType = "left" | "right" | "insideSideBar" | "hidden";
|
|
1891
1898
|
/**
|
|
1892
1899
|
* Base class for Survey Creator.
|
|
@@ -4921,7 +4928,7 @@ export declare class QuestionConverter {
|
|
|
4921
4928
|
static convertObject(obj: Survey.Question, convertToClass: string): Survey.Question;
|
|
4922
4929
|
}
|
|
4923
4930
|
|
|
4924
|
-
export declare var
|
|
4931
|
+
export declare var svgBundle: string;
|
|
4925
4932
|
|
|
4926
4933
|
export declare class SurveyTextWorker {
|
|
4927
4934
|
text: string;
|
|
@@ -5140,6 +5147,8 @@ export declare class SideBarModel extends Base {
|
|
|
5140
5147
|
addTab(id: string, componentName?: string, model?: any, buildActions?: () => Array<Action>): SideBarTabModel;
|
|
5141
5148
|
updateHasVisibleTabs(): void;
|
|
5142
5149
|
dispose(): void;
|
|
5150
|
+
initResizeManager(container: HTMLDivElement): void;
|
|
5151
|
+
resetResizeManager(): void;
|
|
5143
5152
|
}
|
|
5144
5153
|
|
|
5145
5154
|
export declare class SideBarTabModel extends Base {
|
|
@@ -5244,7 +5253,8 @@ export declare class Notifier extends Base {
|
|
|
5244
5253
|
}
|
|
5245
5254
|
|
|
5246
5255
|
export declare class ResizeManager {
|
|
5247
|
-
constructor(container: HTMLElement);
|
|
5256
|
+
constructor(container: HTMLElement, handles: string);
|
|
5257
|
+
setHandles(newVal: string): void;
|
|
5248
5258
|
dispose(): void;
|
|
5249
5259
|
}
|
|
5250
5260
|
|