survey-creator-core 1.9.76 → 1.9.77
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 +28 -4
- package/survey-creator-core.d.ts +16 -6
- package/survey-creator-core.fontless.css +27 -3
- package/survey-creator-core.fontless.min.css +2 -2
- package/survey-creator-core.i18n.js +1 -1
- package/survey-creator-core.i18n.min.js +1 -1
- package/survey-creator-core.js +193 -151
- package/survey-creator-core.min.css +3 -3
- package/survey-creator-core.min.js +2 -2
package/survey-creator-core.d.ts
CHANGED
|
@@ -2808,6 +2808,9 @@ declare module "property-grid-theme/property-grid" {
|
|
|
2808
2808
|
controls: string;
|
|
2809
2809
|
clearButton: string;
|
|
2810
2810
|
};
|
|
2811
|
+
propertygrid_bindings: {
|
|
2812
|
+
content: string;
|
|
2813
|
+
};
|
|
2811
2814
|
propertygrid_restfull: {
|
|
2812
2815
|
content: string;
|
|
2813
2816
|
};
|
|
@@ -3048,9 +3051,10 @@ declare module "property-grid/index" {
|
|
|
3048
3051
|
private options;
|
|
3049
3052
|
private parentObj;
|
|
3050
3053
|
private parentProperty;
|
|
3054
|
+
private properties;
|
|
3051
3055
|
static isPropertyReadOnly(prop: JsonObjectProperty, options: ISurveyCreatorOptions, obj: Base, parentObj: Base, parentProperty: JsonObjectProperty): boolean;
|
|
3052
3056
|
static getClassNameProperty(obj: Base): string;
|
|
3053
|
-
constructor(obj: Base, options?: ISurveyCreatorOptions, parentObj?: Base, parentProperty?: JsonObjectProperty);
|
|
3057
|
+
constructor(obj: Base, options?: ISurveyCreatorOptions, parentObj?: Base, parentProperty?: JsonObjectProperty, properties?: Array<JsonObjectProperty>);
|
|
3054
3058
|
toJSON(isNested?: boolean, context?: string): any;
|
|
3055
3059
|
createColumnsJSON(className: string, names: Array<string>): any;
|
|
3056
3060
|
setupObjPanel(panel: PanelModelBase, isNestedObj?: boolean, context?: string): void;
|
|
@@ -5607,6 +5611,7 @@ declare module "components/item-value" {
|
|
|
5607
5611
|
private canTouchItems;
|
|
5608
5612
|
private focusCameFromDown;
|
|
5609
5613
|
private collectionProperty;
|
|
5614
|
+
get canBeDragged(): boolean;
|
|
5610
5615
|
private isBanStartDrag;
|
|
5611
5616
|
private updateNewItemValue;
|
|
5612
5617
|
private get collectionPropertyName();
|
|
@@ -7547,13 +7552,17 @@ declare module "property-grid/matrices" {
|
|
|
7547
7552
|
protected getAllowRowDragDrop(prop: JsonObjectProperty): boolean;
|
|
7548
7553
|
protected getChoices(obj: Base): Array<any>;
|
|
7549
7554
|
}
|
|
7555
|
+
}
|
|
7556
|
+
declare module "property-grid/bindings" {
|
|
7557
|
+
import { ISurveyCreatorOptions } from "creator-settings";
|
|
7558
|
+
import { JsonObjectProperty, Base, QuestionCompositeModel } from "survey-core";
|
|
7559
|
+
import { PropertyGridEditor } from "property-grid/index";
|
|
7550
7560
|
export class PropertyGridEditorBindings extends PropertyGridEditor {
|
|
7551
7561
|
fit(prop: JsonObjectProperty): boolean;
|
|
7552
|
-
getJSON(
|
|
7553
|
-
|
|
7554
|
-
|
|
7555
|
-
private
|
|
7556
|
-
private getColumns;
|
|
7562
|
+
getJSON(): any;
|
|
7563
|
+
onCreated(obj: Base, question: QuestionCompositeModel, prop: JsonObjectProperty, options: ISurveyCreatorOptions): void;
|
|
7564
|
+
private getQuestions;
|
|
7565
|
+
private getBindingJSON;
|
|
7557
7566
|
}
|
|
7558
7567
|
}
|
|
7559
7568
|
declare module "property-grid/restfull" {
|
|
@@ -7714,6 +7723,7 @@ declare module "entries/index" {
|
|
|
7714
7723
|
export * from "property-grid/index";
|
|
7715
7724
|
export * from "property-grid/condition";
|
|
7716
7725
|
export * from "property-grid/matrices";
|
|
7726
|
+
export * from "property-grid/bindings";
|
|
7717
7727
|
export * from "property-grid/property-grid-view-model";
|
|
7718
7728
|
export * from "property-grid/object-selector";
|
|
7719
7729
|
export * from "property-grid/restfull";
|