survey-creator-core 1.9.75 → 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.
@@ -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(obj: Base, prop: JsonObjectProperty, options: ISurveyCreatorOptions): any;
7553
- onMatrixCellCreated(obj: Base, options: any): void;
7554
- onCreated(obj: Base, question: Question, prop: JsonObjectProperty): void;
7555
- private getRows;
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";