survey-creator-core 1.9.69 → 1.9.70

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.
@@ -5258,17 +5258,6 @@ declare module "components/tabs/logic-plugin" {
5258
5258
  private get showAllActionTypesText();
5259
5259
  }
5260
5260
  }
5261
- declare module "components/notifier" {
5262
- import { Base } from "survey-core";
5263
- export class Notifier extends Base {
5264
- active: any;
5265
- message: string;
5266
- css: string;
5267
- timeout: number;
5268
- timer: any;
5269
- notify(message: string, type?: "info" | "error"): void;
5270
- }
5271
- }
5272
5261
  declare module "plugins/undo-redo/undo-redo-manager" {
5273
5262
  import { ArrayChanges, Base } from "survey-core";
5274
5263
  export interface IUndoRedoChange {
@@ -5600,7 +5589,7 @@ declare module "components/item-value" {
5600
5589
  private focusCameFromDown;
5601
5590
  private isBanStartDrag;
5602
5591
  private updateNewItemValue;
5603
- onPointerDown(pointerDownEvent: PointerEvent): void;
5592
+ onPointerDown(pointerDownEvent: PointerEvent): boolean;
5604
5593
  startDragItemValue: (pointerDownEvent: PointerEvent, currentTarget: any) => void;
5605
5594
  private get dragDropHelper();
5606
5595
  dispose(): void;
@@ -5736,7 +5725,7 @@ declare module "components/string-editor" {
5736
5725
  private static createItemsNavigator;
5737
5726
  protected addNewItems(items: any, startIndex: number, itemsToAdd: string[]): void;
5738
5727
  private setEventsForItem;
5739
- static setQuestion(questionAdorner: QuestionAdornerViewModel): void;
5728
+ static setQuestion(questionAdorner: QuestionAdornerViewModel): boolean;
5740
5729
  }
5741
5730
  export class StringEditorConnector extends Base {
5742
5731
  private locString;
@@ -5799,7 +5788,6 @@ declare module "creator-base" {
5799
5788
  import { ICreatorSelectionOwner } from "selection-owner";
5800
5789
  import { SelectionHistory } from "selection-history";
5801
5790
  import { SurveyLogic } from "components/tabs/logic";
5802
- import { Notifier } from "components/notifier";
5803
5791
  import { UndoRedoManager } from "plugins/undo-redo/undo-redo-manager";
5804
5792
  import { UndoRedoController } from "plugins/undo-redo/undo-redo-controller";
5805
5793
  import { SidebarModel } from "components/side-bar/side-bar-model";
@@ -6881,7 +6869,7 @@ declare module "creator-base" {
6881
6869
  get state(): string;
6882
6870
  protected setState(value: string): void;
6883
6871
  onStateChanged: CreatorEvent;
6884
- notifier: Notifier;
6872
+ notifier: Survey.Notifier;
6885
6873
  setModified(options?: any): void;
6886
6874
  notifySurveyPropertyChanged(options: any): void;
6887
6875
  /**
@@ -7260,6 +7248,7 @@ declare module "components/image-item-value" {
7260
7248
  item: ImageItemValue;
7261
7249
  templateData: any;
7262
7250
  itemsRoot: HTMLElement;
7251
+ private isChoosingNewFile;
7263
7252
  isFileDragging: boolean;
7264
7253
  constructor(creator: CreatorBase, question: QuestionSelectBase, item: ImageItemValue, templateData: any, itemsRoot: HTMLElement);
7265
7254
  getRootCss(): string;
@@ -7710,7 +7699,6 @@ declare module "entries/index" {
7710
7699
  export * from "utils/utils";
7711
7700
  export * from "question-editor/definition";
7712
7701
  export * from "survey-helper";
7713
- export * from "components/notifier";
7714
7702
  export * from "utils/resizer";
7715
7703
  export * from "plugins/undo-redo/index";
7716
7704
  export * from "plugins/undo-redo/undo-redo-manager";