survey-creator-angular 3.0.0-beta.9 → 3.0.1

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,33 +1,40 @@
1
1
  {
2
2
  "name": "survey-creator-angular",
3
- "version": "3.0.0-beta.9",
4
- "description": "A white-label drag-and-drop form builder for Angular that lets you design complex, interactive forms and surveys without writing code. It generates JSON schemas used by the SurveyJS Form Library to render dynamic forms in your Angular app.",
3
+ "version": "3.0.1",
4
+ "description": "Embeddable SurveyJS drag-and-drop form builder for JSON-based forms in Angular. Create dynamic surveys, polls, quizzes, and other forms, configure conditional logic and validation, and customize the editor UI.",
5
5
  "author": "DevSoft Baltic OU <info@devsoftbaltic.com>",
6
6
  "homepage": "https://surveyjs.io/",
7
7
  "license": "SEE LICENSE IN LICENSE",
8
8
  "licenseUrl": "https://surveyjs.io/licensing",
9
9
  "keywords": [
10
10
  "angular",
11
+ "angular-component",
12
+ "angular-form-builder",
11
13
  "survey",
12
14
  "form",
13
15
  "surveyjs",
14
- "survey-library",
15
- "angular-component",
16
+ "survey-creator",
17
+ "survey-builder",
18
+ "survey-editor",
16
19
  "form-builder",
17
- "dynamic-form-builder",
20
+ "form-editor",
21
+ "json-form-builder",
22
+ "json-form-editor",
23
+ "json-forms",
18
24
  "drag-and-drop-form-builder",
19
- "form-library",
20
- "form-management",
25
+ "visual-form-builder",
26
+ "no-code-form-builder",
27
+ "dynamic-form-builder",
28
+ "conditional-logic",
29
+ "embeddable",
21
30
  "questionnaire",
22
31
  "data-collection",
23
- "ui-component",
24
- "json",
25
- "json-schema",
26
- "angular-schema-form",
27
- "survey-creator",
28
- "survey-builder",
29
- "client-side",
30
- "frontend",
32
+ "bootstrap",
33
+ "bootswatch",
34
+ "mui",
35
+ "material-ui",
36
+ "shadcn",
37
+ "shadcn-ui",
31
38
  "javascript",
32
39
  "typescript"
33
40
  ],
@@ -40,9 +47,9 @@
40
47
  "@angular/cdk": "*",
41
48
  "@angular/core": "*",
42
49
  "@angular/forms": "*",
43
- "survey-angular-ui": "3.0.0-beta.9",
44
- "survey-core": "3.0.0-beta.9",
45
- "survey-creator-core": "3.0.0-beta.9"
50
+ "survey-angular-ui": "3.0.1",
51
+ "survey-core": "3.0.1",
52
+ "survey-creator-core": "3.0.1"
46
53
  },
47
54
  "overrides": {
48
55
  "stylus": "github:stylus/stylus#0.54.8"
@@ -0,0 +1,10 @@
1
+ import { BaseAngular } from "survey-angular-ui";
2
+ import { ItemValue } from "survey-core";
3
+ import * as i0 from "@angular/core";
4
+ export declare class TranslationLocaleItemComponent extends BaseAngular<ItemValue> {
5
+ model: ItemValue;
6
+ protected getModel(): ItemValue;
7
+ get progress(): string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TranslationLocaleItemComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<TranslationLocaleItemComponent, "svc-translation-locale-item", never, { "model": "model"; }, {}, never, never>;
10
+ }
@@ -1,9 +1,14 @@
1
+ import { ElementRef } from "@angular/core";
1
2
  import { BaseAngular } from "survey-angular-ui";
2
- import { Translation } from "survey-creator-core";
3
+ import { TranslationBase, TranslationSideBySide } from "survey-creator-core";
3
4
  import * as i0 from "@angular/core";
4
- export declare class TranslationTabComponent extends BaseAngular<Translation> {
5
- model: Translation;
6
- protected getModel(): Translation;
5
+ export declare class TranslationTabComponent extends BaseAngular<TranslationBase> {
6
+ model: TranslationBase;
7
+ protected getModel(): TranslationBase;
8
+ get sideBySideModel(): TranslationSideBySide | undefined;
9
+ set sourceScrollContainer(ref: ElementRef<HTMLElement> | undefined);
10
+ set targetScrollContainer(ref: ElementRef<HTMLElement> | undefined);
11
+ get stringsModel(): TranslationBase | undefined;
7
12
  trackStringsSurveyBy(_: number, survey: any): string;
8
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TranslationTabComponent, never>;
9
14
  static ɵcmp: i0.ɵɵComponentDeclaration<TranslationTabComponent, "svc-tab-translation", never, { "model": "model"; }, {}, never, never>;