survey-angular-ui 3.0.0-beta.6 → 3.0.0-beta.8

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.
Files changed (27) hide show
  1. package/angular-ui.d.ts +1 -0
  2. package/angular-ui.module.d.ts +65 -64
  3. package/bundles/survey-angular-ui.umd.js +77 -77
  4. package/bundles/survey-angular-ui.umd.js.map +1 -1
  5. package/component-factory.d.ts +2 -2
  6. package/components/popup/popup.service.d.ts +2 -3
  7. package/components/progress/buttons/progress.component.d.ts +3 -17
  8. package/components/progress/default/progress.component.d.ts +5 -2
  9. package/components/renderAs/boolean-switch/boolean-switch.component.d.ts +7 -0
  10. package/esm2015/angular-ui.js +2 -1
  11. package/esm2015/angular-ui.module.js +6 -5
  12. package/esm2015/comment-choice.component.js +3 -2
  13. package/esm2015/component-factory.js +7 -2
  14. package/esm2015/components/paneldynamicplaceholder/paneldynamicplaceholder.component.js +2 -2
  15. package/esm2015/components/popup/popup.service.js +7 -6
  16. package/esm2015/components/progress/buttons/progress.component.js +3 -47
  17. package/esm2015/components/progress/default/progress.component.js +11 -5
  18. package/esm2015/components/renderAs/boolean-radio/boolean-radio-item.component.js +5 -3
  19. package/esm2015/components/renderAs/boolean-radio/boolean-radio.component.js +2 -2
  20. package/esm2015/components/renderAs/boolean-switch/boolean-switch.component.js +22 -0
  21. package/esm2015/survey-content.component.js +9 -3
  22. package/esm2015/utils/dynamic.directive.js +10 -11
  23. package/fesm2015/survey-angular-ui.js +68 -76
  24. package/fesm2015/survey-angular-ui.js.map +1 -1
  25. package/package.json +2 -2
  26. package/survey-content.component.d.ts +2 -0
  27. package/utils/dynamic.directive.d.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "survey-angular-ui",
3
- "version": "3.0.0-beta.6",
3
+ "version": "3.0.0-beta.8",
4
4
  "homepage": "https://surveyjs.io/",
5
5
  "author": "DevSoft Baltic OU <info@devsoftbaltic.com>",
6
6
  "license": "MIT",
@@ -42,7 +42,7 @@
42
42
  "@angular/cdk": "*",
43
43
  "@angular/core": "*",
44
44
  "@angular/forms": "*",
45
- "survey-core": "3.0.0-beta.6"
45
+ "survey-core": "3.0.0-beta.8"
46
46
  },
47
47
  "overrides": {
48
48
  "stylus": "github:stylus/stylus#0.54.8"
@@ -11,6 +11,8 @@ export declare class SurveyContentComponent extends BaseAngular<SurveyModel> imp
11
11
  ngOnDestroy(): void;
12
12
  ngAfterViewInit(): void;
13
13
  ngAfterViewChecked(): void;
14
+ get themeStyle(): string;
15
+ get resetVariablesStyle(): string;
14
16
  static ɵfac: i0.ɵɵFactoryDeclaration<SurveyContentComponent, never>;
15
17
  static ɵcmp: i0.ɵɵComponentDeclaration<SurveyContentComponent, "survey-content", never, { "model": "model"; }, {}, never, never>;
16
18
  }
@@ -1,4 +1,4 @@
1
- import { ComponentFactoryResolver, OnChanges, SimpleChanges, TemplateRef, ViewContainerRef } from "@angular/core";
1
+ import { OnChanges, SimpleChanges, TemplateRef, ViewContainerRef, Injector } from "@angular/core";
2
2
  import * as i0 from "@angular/core";
3
3
  interface IDynamicComponent {
4
4
  name: string;
@@ -8,8 +8,8 @@ interface IDynamicComponent {
8
8
  export declare class DynamicComponentDirective implements OnChanges {
9
9
  private containerRef;
10
10
  private templateRef;
11
- private resolver;
12
- constructor(containerRef: ViewContainerRef, templateRef: TemplateRef<unknown>, resolver: ComponentFactoryResolver);
11
+ private injector;
12
+ constructor(containerRef: ViewContainerRef, templateRef: TemplateRef<unknown>, injector: Injector);
13
13
  component: IDynamicComponent;
14
14
  private componentInstance;
15
15
  ngOnChanges(changes: SimpleChanges): void;