survey-creator-angular 1.11.2 → 1.11.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-creator-angular",
3
- "version": "1.11.2",
3
+ "version": "1.11.4",
4
4
  "description": "Use SurveyJS Creator to create or edit JSON for SurveyJS Form Library.",
5
5
  "homepage": "https://surveyjs.io/Overview/Survey-Creator",
6
6
  "license": "https://surveyjs.io/Licenses#SurveyCreator",
@@ -22,9 +22,9 @@
22
22
  "@angular/cdk": "*",
23
23
  "@angular/core": "*",
24
24
  "@angular/forms": "*",
25
- "survey-angular-ui": "1.11.2",
26
- "survey-core": "1.11.2",
27
- "survey-creator-core": "1.11.2"
25
+ "survey-angular-ui": "1.11.4",
26
+ "survey-core": "1.11.4",
27
+ "survey-creator-core": "1.11.4"
28
28
  },
29
29
  "main": "bundles/survey-creator-angular.umd.js",
30
30
  "module": "fesm2015/survey-creator-angular.js",
@@ -0,0 +1,9 @@
1
+ import { BaseAngular } from "survey-angular-ui";
2
+ import { Action } from "survey-core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class TranslateFromAction extends BaseAngular<Action> {
5
+ model: Action;
6
+ protected getModel(): Action;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TranslateFromAction, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<TranslateFromAction, "svc-translate-from-action", never, { "model": "model"; }, {}, never, never>;
9
+ }
@@ -1,5 +1,6 @@
1
1
  import { AfterViewInit, ElementRef } from "@angular/core";
2
2
  import { SurveyCreatorModel, QuestionToolbox } from "survey-creator-core";
3
+ import { Action } from "survey-core";
3
4
  import { BaseAngular } from "survey-angular-ui";
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class AdaptiveToolboxComponent extends BaseAngular<QuestionToolbox> implements AfterViewInit {
@@ -7,6 +8,7 @@ export declare class AdaptiveToolboxComponent extends BaseAngular<QuestionToolbo
7
8
  container: ElementRef<HTMLElement>;
8
9
  private responsivityManager;
9
10
  get model(): QuestionToolbox;
11
+ get searchItem(): Action;
10
12
  ngAfterViewInit(): void;
11
13
  protected getModel(): QuestionToolbox;
12
14
  ngOnDestroy(): void;