survey-creator-core 1.9.62 → 1.9.64
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 +2 -2
- package/survey-creator-core.css +51 -50
- package/survey-creator-core.d.ts +3 -3
- package/survey-creator-core.fontless.css +3263 -215
- package/survey-creator-core.fontless.min.css +76 -2
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +34 -37
- package/survey-creator-core.min.css +13 -7
- package/survey-creator-core.min.js +3 -3
package/survey-creator-core.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="ace" />
|
|
2
1
|
declare module "localization/english" {
|
|
3
2
|
export var enStrings: {
|
|
4
3
|
survey: {
|
|
@@ -3300,7 +3299,7 @@ declare module "components/tabs/json-editor-ace" {
|
|
|
3300
3299
|
constructor(creator: CreatorBase);
|
|
3301
3300
|
protected getText(): string;
|
|
3302
3301
|
protected setText(value: string): void;
|
|
3303
|
-
init(aceEditor:
|
|
3302
|
+
init(aceEditor: any): void;
|
|
3304
3303
|
private updateUndoRedoState;
|
|
3305
3304
|
protected onTextChanged(): void;
|
|
3306
3305
|
private createAnnotations;
|
|
@@ -7691,4 +7690,5 @@ declare module "entries/index" {
|
|
|
7691
7690
|
export * from "plugins/undo-redo/undo-redo-manager";
|
|
7692
7691
|
export * from "pages-controller";
|
|
7693
7692
|
}
|
|
7694
|
-
|
|
7693
|
+
|
|
7694
|
+
declare module "survey-creator-core" { import main = require("entries/index"); export = main; }
|