survey-creator-core 1.9.54 → 1.9.55
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 +13 -9
- package/survey-creator-core.d.ts +9 -5
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +104 -54
- package/survey-creator-core.min.css +4 -4
- package/survey-creator-core.min.js +2 -2
package/survey-creator-core.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Type definition for Survey Creatorlibrary. Platform independent (core) v1.9.
|
|
2
|
+
* Type definition for Survey Creatorlibrary. Platform independent (core) v1.9.55
|
|
3
3
|
* Copyright (c) 2015-2022 Devsoft Baltic OÜ - https://surveyjs.io/
|
|
4
4
|
* License: https://surveyjs.io/Licenses#SurveyCreator
|
|
5
5
|
*/
|
|
@@ -864,7 +864,6 @@ export declare class CreatorBase extends Base implements ISurveyCreatorOptions,
|
|
|
864
864
|
* - `options.propertyName` - The name of the property.
|
|
865
865
|
* - `options.value` - A property value entered by a user.
|
|
866
866
|
* - `options.newValue` - A corrected property value. Specify this field if you want to override the `options.value`.
|
|
867
|
-
* - `options.doValidation` - Enable this field to validate the property value while the user enters it.
|
|
868
867
|
*/
|
|
869
868
|
onPropertyValueChanging: Event<(sender: CreatorBase, options: any) => any, any>;
|
|
870
869
|
/*
|
|
@@ -1717,6 +1716,12 @@ export declare class LogoImageViewModel extends Base {
|
|
|
1717
1716
|
remove(model: LogoImageViewModel): void;
|
|
1718
1717
|
get chooseLogoPlaceholder(): string;
|
|
1719
1718
|
}
|
|
1719
|
+
export declare class MatrixCellWrapperEditSurvey {
|
|
1720
|
+
constructor(creator: CreatorBase, cellQuestion: Question);
|
|
1721
|
+
surveyValue: SurveyModel;
|
|
1722
|
+
get survey(): SurveyModel;
|
|
1723
|
+
apply(): void;
|
|
1724
|
+
}
|
|
1720
1725
|
export declare class MatrixCellWrapperViewModel extends Base {
|
|
1721
1726
|
constructor(creator: CreatorBase, templateData: any, question: Question, row: any, column: any);
|
|
1722
1727
|
creator: CreatorBase;
|
|
@@ -2586,12 +2591,12 @@ export declare class SurveyTextWorker {
|
|
|
2586
2591
|
}
|
|
2587
2592
|
export declare class TabDesignerViewModel extends Base {
|
|
2588
2593
|
constructor(creator: CreatorBase);
|
|
2589
|
-
|
|
2594
|
+
cssUpdater: any;
|
|
2590
2595
|
pagesControllerValue: PagesController;
|
|
2591
2596
|
newPage: PageModel;
|
|
2592
2597
|
showNewPage: boolean;
|
|
2593
2598
|
pageCount: number;
|
|
2594
|
-
|
|
2599
|
+
designerCss: string;
|
|
2595
2600
|
showPlaceholder: boolean;
|
|
2596
2601
|
creator: CreatorBase;
|
|
2597
2602
|
get survey(): SurveyModel;
|
|
@@ -2602,7 +2607,6 @@ export declare class TabDesignerViewModel extends Base {
|
|
|
2602
2607
|
onDesignerSurveyPropertyChanged(obj: Base, propName: string): void;
|
|
2603
2608
|
initSurvey(): void;
|
|
2604
2609
|
clickDesigner(): void;
|
|
2605
|
-
getDesignerCss(): string;
|
|
2606
2610
|
getRootCss(): string;
|
|
2607
2611
|
}
|
|
2608
2612
|
export declare class TabbedMenuContainer extends AdaptiveActionContainer<TabbedMenuItem> {
|